mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
Update to powershell SDK docs: 14052025706
This commit is contained in:
@@ -39,6 +39,7 @@ Name | Type | Description | Notes
|
||||
**SodViolationContext** | [**SodViolationContextCheckCompleted**](sod-violation-context-check-completed) | | [optional]
|
||||
**PreApprovalTriggerResult** | [**CompletedApprovalPreApprovalTriggerResult**](completed-approval-pre-approval-trigger-result) | | [optional]
|
||||
**ClientMetadata** | **map[string]String** | Arbitrary key-value pairs provided during the request. | [optional]
|
||||
**RequestedAccounts** | [**[]RequestedAccountRef**](requested-account-ref) | The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -66,7 +67,8 @@ $CompletedApproval = Initialize-PSSailpoint.V2024CompletedApproval -Id id12345
|
||||
-CurrentRemoveDate 2020-07-11T00:00Z `
|
||||
-SodViolationContext null `
|
||||
-PreApprovalTriggerResult null `
|
||||
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1}
|
||||
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1} `
|
||||
-RequestedAccounts null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
|
||||
@@ -37,6 +37,7 @@ Name | Type | Description | Notes
|
||||
**CurrentRemoveDate** | **System.DateTime** | The remove date or sunset date that was assigned at the time of the request. | [optional]
|
||||
**SodViolationContext** | [**SodViolationContextCheckCompleted**](sod-violation-context-check-completed) | | [optional]
|
||||
**ClientMetadata** | **map[string]String** | Arbitrary key-value pairs, if any were included in the corresponding access request item | [optional]
|
||||
**RequestedAccounts** | [**[]RequestedAccountRef**](requested-account-ref) | The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -62,7 +63,8 @@ $PendingApproval = Initialize-PSSailpoint.V2024PendingApproval -Id id12345 `
|
||||
-RemoveDateUpdateRequested true `
|
||||
-CurrentRemoveDate 2020-07-11T00:00Z `
|
||||
-SodViolationContext null `
|
||||
-ClientMetadata {customKey1=custom value 1, customKey2=custom value 2}
|
||||
-ClientMetadata {customKey1=custom value 1, customKey2=custom value 2} `
|
||||
-RequestedAccounts null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
---
|
||||
id: v2024-requested-account-ref
|
||||
title: RequestedAccountRef
|
||||
pagination_label: RequestedAccountRef
|
||||
sidebar_label: RequestedAccountRef
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestedAccountRef', 'V2024RequestedAccountRef']
|
||||
slug: /tools/sdk/powershell/v2024/models/requested-account-ref
|
||||
tags: ['SDK', 'Software Development Kit', 'RequestedAccountRef', 'V2024RequestedAccountRef']
|
||||
---
|
||||
|
||||
|
||||
# RequestedAccountRef
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Name** | **String** | Display name of the account for the user | [optional]
|
||||
**Type** | [**DtoType**](dto-type) | | [optional]
|
||||
**AccountUuid** | **String** | The uuid for the account | [optional]
|
||||
**AccountId** | **String** | The native identity for the account | [optional]
|
||||
**SourceName** | **String** | Display name of the source for the account | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$RequestedAccountRef = Initialize-PSSailpoint.V2024RequestedAccountRef -Name Glen.067da3248e914 `
|
||||
-Type null `
|
||||
-AccountUuid {fab7119e-004f-4822-9c33-b8d570d6c6a6} `
|
||||
-AccountId CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local `
|
||||
-SourceName Multi Account AD source name
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$RequestedAccountRef | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
@@ -41,6 +41,7 @@ Name | Type | Description | Notes
|
||||
**Cancelable** | **Boolean** | True if the request can be canceled. | [optional] [default to $false]
|
||||
**AccessRequestId** | **String** | This is the account activity id. | [optional]
|
||||
**ClientMetadata** | **map[string]String** | Arbitrary key-value pairs, if any were included in the corresponding access request | [optional]
|
||||
**RequestedAccounts** | [**[]RequestedAccountRef**](requested-account-ref) | The accounts selected by the user for the access to be provisioned on, in case they have multiple accounts on one or more sources. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -70,7 +71,8 @@ $RequestedItemStatus = Initialize-PSSailpoint.V2024RequestedItemStatus -Id 2c91
|
||||
-RemoveDate 2019-10-23T00:00Z `
|
||||
-Cancelable true `
|
||||
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
|
||||
-ClientMetadata {key1=value1, key2=value2}
|
||||
-ClientMetadata {key1=value1, key2=value2} `
|
||||
-RequestedAccounts null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
|
||||
Reference in New Issue
Block a user