Update to powershell SDK docs: 14052025706

This commit is contained in:
developer-relations-sp
2025-03-25 05:01:14 +00:00
parent 2be08e16e4
commit f43ed3bc87
12 changed files with 156 additions and 9 deletions

View File

@@ -39,6 +39,7 @@ Name | Type | Description | Notes
**SodViolationContext** | [**SodViolationContextCheckCompleted1**](sod-violation-context-check-completed1) | | [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.BetaCompletedApproval -Id 2c9380836
-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

View File

@@ -36,6 +36,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** | [**SodViolationContextCheckCompleted1**](sod-violation-context-check-completed1) | | [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
@@ -60,7 +61,8 @@ $PendingApproval = Initialize-PSSailpoint.BetaPendingApproval -Id 2c9180835d2e5
-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

View File

@@ -0,0 +1,43 @@
---
id: beta-requested-account-ref
title: RequestedAccountRef
pagination_label: RequestedAccountRef
sidebar_label: RequestedAccountRef
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestedAccountRef', 'BetaRequestedAccountRef']
slug: /tools/sdk/powershell/beta/models/requested-account-ref
tags: ['SDK', 'Software Development Kit', 'RequestedAccountRef', 'BetaRequestedAccountRef']
---
# 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.BetaRequestedAccountRef -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]](#)

View File

@@ -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.BetaRequestedItemStatus -Id 2c918
-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