mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
Update to python SDK docs: 14052034222
This commit is contained in:
@@ -39,6 +39,7 @@ Name | Type | Description | Notes
|
||||
**sod_violation_context** | [**SodViolationContextCheckCompleted1**](sod-violation-context-check-completed1) | | [optional]
|
||||
**pre_approval_trigger_result** | [**CompletedApprovalPreApprovalTriggerResult**](completed-approval-pre-approval-trigger-result) | | [optional]
|
||||
**client_metadata** | **map[string]str** | Arbitrary key-value pairs provided during the request. | [optional]
|
||||
**requested_accounts** | [**[]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]
|
||||
}
|
||||
|
||||
## Example
|
||||
@@ -147,7 +148,15 @@ pre_approval_trigger_result=sailpoint.beta.models.completed_approval_pre_approva
|
||||
decision = 'APPROVED',
|
||||
reviewer = 'Automated AR Approval',
|
||||
date = '2022-06-07T19:18:40.748Z', ),
|
||||
client_metadata={requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1}
|
||||
client_metadata={requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1},
|
||||
requested_accounts=[
|
||||
sailpoint.beta.models.requested_account_ref.RequestedAccountRef(
|
||||
name = 'Glen.067da3248e914',
|
||||
type = 'IDENTITY',
|
||||
account_uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
|
||||
account_id = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local',
|
||||
source_name = 'Multi Account AD source name', )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
@@ -36,6 +36,7 @@ Name | Type | Description | Notes
|
||||
**current_remove_date** | **datetime** | The remove date or sunset date that was assigned at the time of the request. | [optional]
|
||||
**sod_violation_context** | [**SodViolationContextCheckCompleted1**](sod-violation-context-check-completed1) | | [optional]
|
||||
**client_metadata** | **map[string]str** | Arbitrary key-value pairs, if any were included in the corresponding access request item | [optional]
|
||||
**requested_accounts** | [**[]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]
|
||||
}
|
||||
|
||||
## Example
|
||||
@@ -128,7 +129,15 @@ sod_violation_context=sailpoint.beta.models.sod_violation_context_check_complete
|
||||
id = '0f11f2a4-7c94-4bf3-a2bd-742580fe3bde',
|
||||
name = 'Business SOD Policy', )
|
||||
], ), ),
|
||||
client_metadata={customKey1=custom value 1, customKey2=custom value 2}
|
||||
client_metadata={customKey1=custom value 1, customKey2=custom value 2},
|
||||
requested_accounts=[
|
||||
sailpoint.beta.models.requested_account_ref.RequestedAccountRef(
|
||||
name = 'Glen.067da3248e914',
|
||||
type = 'IDENTITY',
|
||||
account_uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
|
||||
account_id = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local',
|
||||
source_name = 'Multi Account AD source name', )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: beta-requested-account-ref
|
||||
title: RequestedAccountRef
|
||||
pagination_label: RequestedAccountRef
|
||||
sidebar_label: RequestedAccountRef
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'RequestedAccountRef', 'BetaRequestedAccountRef']
|
||||
slug: /tools/sdk/python/beta/models/requested-account-ref
|
||||
tags: ['SDK', 'Software Development Kit', 'RequestedAccountRef', 'BetaRequestedAccountRef']
|
||||
---
|
||||
|
||||
# RequestedAccountRef
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**name** | **str** | Display name of the account for the user | [optional]
|
||||
**type** | [**DtoType**](dto-type) | | [optional]
|
||||
**account_uuid** | **str** | The uuid for the account | [optional]
|
||||
**account_id** | **str** | The native identity for the account | [optional]
|
||||
**source_name** | **str** | Display name of the source for the account | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.requested_account_ref import RequestedAccountRef
|
||||
|
||||
requested_account_ref = RequestedAccountRef(
|
||||
name='Glen.067da3248e914',
|
||||
type='IDENTITY',
|
||||
account_uuid='{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
|
||||
account_id='CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local',
|
||||
source_name='Multi Account AD source name'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
@@ -41,6 +41,7 @@ Name | Type | Description | Notes
|
||||
**cancelable** | **bool** | True if the request can be canceled. | [optional] [default to False]
|
||||
**access_request_id** | **str** | This is the account activity id. | [optional]
|
||||
**client_metadata** | **map[string]str** | Arbitrary key-value pairs, if any were included in the corresponding access request | [optional]
|
||||
**requested_accounts** | [**[]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]
|
||||
}
|
||||
|
||||
## Example
|
||||
@@ -136,7 +137,15 @@ description='This is the Engineering role that engineers are granted.',
|
||||
remove_date='2019-10-23T00:00Z',
|
||||
cancelable=True,
|
||||
access_request_id='2b838de9-db9b-abcf-e646-d4f274ad4238',
|
||||
client_metadata={key1=value1, key2=value2}
|
||||
client_metadata={key1=value1, key2=value2},
|
||||
requested_accounts=[
|
||||
sailpoint.beta.models.requested_account_ref.RequestedAccountRef(
|
||||
name = 'Glen.067da3248e914',
|
||||
type = 'IDENTITY',
|
||||
account_uuid = '{fab7119e-004f-4822-9c33-b8d570d6c6a6}',
|
||||
account_id = 'CN=Glen 067da3248e914,OU=YOUROU,OU=org-data-service,DC=YOURDC,DC=local',
|
||||
source_name = 'Multi Account AD source name', )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user