mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
Update to powershell SDK docs: 14052025706
This commit is contained in:
@@ -39,6 +39,7 @@ Name | Type | Description | Notes
|
|||||||
**SodViolationContext** | [**SodViolationContextCheckCompleted1**](sod-violation-context-check-completed1) | | [optional]
|
**SodViolationContext** | [**SodViolationContextCheckCompleted1**](sod-violation-context-check-completed1) | | [optional]
|
||||||
**PreApprovalTriggerResult** | [**CompletedApprovalPreApprovalTriggerResult**](completed-approval-pre-approval-trigger-result) | | [optional]
|
**PreApprovalTriggerResult** | [**CompletedApprovalPreApprovalTriggerResult**](completed-approval-pre-approval-trigger-result) | | [optional]
|
||||||
**ClientMetadata** | **map[string]String** | Arbitrary key-value pairs provided during the request. | [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
|
## Examples
|
||||||
|
|
||||||
@@ -66,7 +67,8 @@ $CompletedApproval = Initialize-PSSailpoint.BetaCompletedApproval -Id 2c9380836
|
|||||||
-CurrentRemoveDate 2020-07-11T00:00Z `
|
-CurrentRemoveDate 2020-07-11T00:00Z `
|
||||||
-SodViolationContext null `
|
-SodViolationContext null `
|
||||||
-PreApprovalTriggerResult null `
|
-PreApprovalTriggerResult null `
|
||||||
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1}
|
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1} `
|
||||||
|
-RequestedAccounts null
|
||||||
```
|
```
|
||||||
|
|
||||||
- Convert the resource to JSON
|
- Convert the resource to JSON
|
||||||
|
|||||||
@@ -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]
|
**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]
|
**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]
|
**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
|
## Examples
|
||||||
|
|
||||||
@@ -60,7 +61,8 @@ $PendingApproval = Initialize-PSSailpoint.BetaPendingApproval -Id 2c9180835d2e5
|
|||||||
-RemoveDateUpdateRequested true `
|
-RemoveDateUpdateRequested true `
|
||||||
-CurrentRemoveDate 2020-07-11T00:00Z `
|
-CurrentRemoveDate 2020-07-11T00:00Z `
|
||||||
-SodViolationContext null `
|
-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
|
- Convert the resource to JSON
|
||||||
|
|||||||
@@ -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]](#)
|
||||||
|
|
||||||
@@ -41,6 +41,7 @@ Name | Type | Description | Notes
|
|||||||
**Cancelable** | **Boolean** | True if the request can be canceled. | [optional] [default to $false]
|
**Cancelable** | **Boolean** | True if the request can be canceled. | [optional] [default to $false]
|
||||||
**AccessRequestId** | **String** | This is the account activity id. | [optional]
|
**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]
|
**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
|
## Examples
|
||||||
|
|
||||||
@@ -70,7 +71,8 @@ $RequestedItemStatus = Initialize-PSSailpoint.BetaRequestedItemStatus -Id 2c918
|
|||||||
-RemoveDate 2019-10-23T00:00Z `
|
-RemoveDate 2019-10-23T00:00Z `
|
||||||
-Cancelable true `
|
-Cancelable true `
|
||||||
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
|
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
|
||||||
-ClientMetadata {key1=value1, key2=value2}
|
-ClientMetadata {key1=value1, key2=value2} `
|
||||||
|
-RequestedAccounts null
|
||||||
```
|
```
|
||||||
|
|
||||||
- Convert the resource to JSON
|
- Convert the resource to JSON
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ Name | Type | Description | Notes
|
|||||||
**SodViolationContext** | [**SodViolationContextCheckCompleted**](sod-violation-context-check-completed) | | [optional]
|
**SodViolationContext** | [**SodViolationContextCheckCompleted**](sod-violation-context-check-completed) | | [optional]
|
||||||
**PreApprovalTriggerResult** | [**CompletedApprovalPreApprovalTriggerResult**](completed-approval-pre-approval-trigger-result) | | [optional]
|
**PreApprovalTriggerResult** | [**CompletedApprovalPreApprovalTriggerResult**](completed-approval-pre-approval-trigger-result) | | [optional]
|
||||||
**ClientMetadata** | **map[string]String** | Arbitrary key-value pairs provided during the request. | [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
|
## Examples
|
||||||
|
|
||||||
@@ -66,7 +67,8 @@ $CompletedApproval = Initialize-PSSailpoint.V2024CompletedApproval -Id id12345
|
|||||||
-CurrentRemoveDate 2020-07-11T00:00Z `
|
-CurrentRemoveDate 2020-07-11T00:00Z `
|
||||||
-SodViolationContext null `
|
-SodViolationContext null `
|
||||||
-PreApprovalTriggerResult null `
|
-PreApprovalTriggerResult null `
|
||||||
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1}
|
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1} `
|
||||||
|
-RequestedAccounts null
|
||||||
```
|
```
|
||||||
|
|
||||||
- Convert the resource to JSON
|
- 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]
|
**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]
|
**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]
|
**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
|
## Examples
|
||||||
|
|
||||||
@@ -62,7 +63,8 @@ $PendingApproval = Initialize-PSSailpoint.V2024PendingApproval -Id id12345 `
|
|||||||
-RemoveDateUpdateRequested true `
|
-RemoveDateUpdateRequested true `
|
||||||
-CurrentRemoveDate 2020-07-11T00:00Z `
|
-CurrentRemoveDate 2020-07-11T00:00Z `
|
||||||
-SodViolationContext null `
|
-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
|
- 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]
|
**Cancelable** | **Boolean** | True if the request can be canceled. | [optional] [default to $false]
|
||||||
**AccessRequestId** | **String** | This is the account activity id. | [optional]
|
**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]
|
**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
|
## Examples
|
||||||
|
|
||||||
@@ -70,7 +71,8 @@ $RequestedItemStatus = Initialize-PSSailpoint.V2024RequestedItemStatus -Id 2c91
|
|||||||
-RemoveDate 2019-10-23T00:00Z `
|
-RemoveDate 2019-10-23T00:00Z `
|
||||||
-Cancelable true `
|
-Cancelable true `
|
||||||
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
|
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
|
||||||
-ClientMetadata {key1=value1, key2=value2}
|
-ClientMetadata {key1=value1, key2=value2} `
|
||||||
|
-RequestedAccounts null
|
||||||
```
|
```
|
||||||
|
|
||||||
- Convert the resource to JSON
|
- Convert the resource to JSON
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ Name | Type | Description | Notes
|
|||||||
**SodViolationContext** | [**SodViolationContextCheckCompleted**](sod-violation-context-check-completed) | | [optional]
|
**SodViolationContext** | [**SodViolationContextCheckCompleted**](sod-violation-context-check-completed) | | [optional]
|
||||||
**PreApprovalTriggerResult** | [**CompletedApprovalPreApprovalTriggerResult**](completed-approval-pre-approval-trigger-result) | | [optional]
|
**PreApprovalTriggerResult** | [**CompletedApprovalPreApprovalTriggerResult**](completed-approval-pre-approval-trigger-result) | | [optional]
|
||||||
**ClientMetadata** | **map[string]String** | Arbitrary key-value pairs provided during the request. | [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
|
## Examples
|
||||||
|
|
||||||
@@ -66,7 +67,8 @@ $CompletedApproval = Initialize-PSSailpoint.V3CompletedApproval -Id id12345 `
|
|||||||
-CurrentRemoveDate 2020-07-11T00:00Z `
|
-CurrentRemoveDate 2020-07-11T00:00Z `
|
||||||
-SodViolationContext null `
|
-SodViolationContext null `
|
||||||
-PreApprovalTriggerResult null `
|
-PreApprovalTriggerResult null `
|
||||||
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1}
|
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1} `
|
||||||
|
-RequestedAccounts null
|
||||||
```
|
```
|
||||||
|
|
||||||
- Convert the resource to JSON
|
- 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]
|
**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]
|
**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]
|
**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
|
## Examples
|
||||||
|
|
||||||
@@ -62,7 +63,8 @@ $PendingApproval = Initialize-PSSailpoint.V3PendingApproval -Id id12345 `
|
|||||||
-RemoveDateUpdateRequested true `
|
-RemoveDateUpdateRequested true `
|
||||||
-CurrentRemoveDate 2020-07-11T00:00Z `
|
-CurrentRemoveDate 2020-07-11T00:00Z `
|
||||||
-SodViolationContext null `
|
-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
|
- Convert the resource to JSON
|
||||||
|
|||||||
@@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
id: requested-account-ref
|
||||||
|
title: RequestedAccountRef
|
||||||
|
pagination_label: RequestedAccountRef
|
||||||
|
sidebar_label: RequestedAccountRef
|
||||||
|
sidebar_class_name: powershellsdk
|
||||||
|
keywords: ['powershell', 'PowerShell', 'sdk', 'RequestedAccountRef', 'RequestedAccountRef']
|
||||||
|
slug: /tools/sdk/powershell/v3/models/requested-account-ref
|
||||||
|
tags: ['SDK', 'Software Development Kit', 'RequestedAccountRef', 'RequestedAccountRef']
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
# 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.V3RequestedAccountRef -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]
|
**Cancelable** | **Boolean** | True if the request can be canceled. | [optional] [default to $false]
|
||||||
**AccessRequestId** | **String** | This is the account activity id. | [optional]
|
**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]
|
**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
|
## Examples
|
||||||
|
|
||||||
@@ -70,7 +71,8 @@ $RequestedItemStatus = Initialize-PSSailpoint.V3RequestedItemStatus -Id 2c91809
|
|||||||
-RemoveDate 2019-10-23T00:00Z `
|
-RemoveDate 2019-10-23T00:00Z `
|
||||||
-Cancelable true `
|
-Cancelable true `
|
||||||
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
|
-AccessRequestId 2b838de9-db9b-abcf-e646-d4f274ad4238 `
|
||||||
-ClientMetadata {key1=value1, key2=value2}
|
-ClientMetadata {key1=value1, key2=value2} `
|
||||||
|
-RequestedAccounts null
|
||||||
```
|
```
|
||||||
|
|
||||||
- Convert the resource to JSON
|
- Convert the resource to JSON
|
||||||
|
|||||||
Reference in New Issue
Block a user