add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
---
id: v2025-auth-user
title: AuthUser
pagination_label: AuthUser
sidebar_label: AuthUser
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AuthUser', 'V2025AuthUser']
slug: /tools/sdk/powershell/v2025/models/auth-user
tags: ['SDK', 'Software Development Kit', 'AuthUser', 'V2025AuthUser']
---
# AuthUser
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Tenant** | **String** | Tenant name. | [optional]
**Id** | **String** | Identity ID. | [optional]
**Uid** | **String** | Identity's unique identitifier. | [optional]
**VarProfile** | **String** | ID of the auth profile associated with the auth user. | [optional]
**IdentificationNumber** | **String** | Auth user's employee number. | [optional]
**Email** | **String** | Auth user's email. | [optional]
**Phone** | **String** | Auth user's phone number. | [optional]
**WorkPhone** | **String** | Auth user's work phone number. | [optional]
**PersonalEmail** | **String** | Auth user's personal email. | [optional]
**Firstname** | **String** | Auth user's first name. | [optional]
**Lastname** | **String** | Auth user's last name. | [optional]
**DisplayName** | **String** | Auth user's name in displayed format. | [optional]
**Alias** | **String** | Auth user's alias. | [optional]
**LastPasswordChangeDate** | **System.DateTime** | Date of last password change. | [optional]
**LastLoginTimestamp** | **Int64** | Timestamp of the last login (long type value). | [optional]
**CurrentLoginTimestamp** | **Int64** | Timestamp of the current login (long type value). | [optional]
**LastUnlockTimestamp** | **System.DateTime** | The date and time when the user was last unlocked. | [optional]
**Capabilities** | **[]String** | Array of the auth user's capabilities. | [optional]
## Examples
- Prepare the resource
```powershell
$AuthUser = Initialize-PSSailpoint.V2025AuthUser -Tenant test-tenant `
-Id 2c91808458ae7a4f0158b1bbf8af0628 `
-Uid will.smith `
-VarProfile 2c91808458ae7a4f0158b1bbf8af0756 `
-IdentificationNumber 19-5588452 `
-Email william.smith@example.com `
-Phone 5555555555 `
-WorkPhone 5555555555 `
-PersonalEmail william.smith@example.com `
-Firstname Will `
-Lastname Smith `
-DisplayName Will Smith `
-Alias will.smith `
-LastPasswordChangeDate 2021-03-08T22:37:33.901Z `
-LastLoginTimestamp 1656327185832 `
-CurrentLoginTimestamp 1656327185832 `
-LastUnlockTimestamp 2021-03-08T22:37:33.901Z `
-Capabilities null
```
- Convert the resource to JSON
```powershell
$AuthUser | ConvertTo-JSON
```
[[Back to top]](#)