Update to python SDK docs: 14650531569

This commit is contained in:
developer-relations-sp
2025-04-24 19:58:46 +00:00
parent deedbbd4ab
commit 7426a043d2
18 changed files with 23 additions and 19 deletions

View File

@@ -64,6 +64,7 @@ Create Access Profile
Create an access profile.
A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile's source.
The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
>**Note:** To use this endpoint, you need all the listed scopes.
[API Spec](https://developer.sailpoint.com/docs/api/v2025/create-access-profile)

View File

@@ -26,7 +26,7 @@ Name | Type | Description | Notes
from sailpoint.v2025.models.account_usage import AccountUsage
account_usage = AccountUsage(
var_date='Thu Apr 20 20:00:00 EDT 2023',
var_date='Fri Apr 21 00:00:00 UTC 2023',
count=10
)

View File

@@ -56,8 +56,8 @@ data={description=Auditing},
approval_status='APPROVED',
comment='approved',
completion_date='2020-03-24T11:11:41.139-05:00',
start_date='Mon Mar 23 20:00:00 EDT 2020',
end_date='Wed Mar 24 20:00:00 EDT 2021',
start_date='Tue Mar 24 00:00:00 UTC 2020',
end_date='Thu Mar 25 00:00:00 UTC 2021',
modified='2020-03-24T11:11:41.139-05:00',
created='2020-03-24T11:11:41.139-05:00'
)

View File

@@ -26,7 +26,7 @@ Name | Type | Description | Notes
from sailpoint.v2025.models.source_usage import SourceUsage
source_usage = SourceUsage(
var_date='Thu Apr 20 20:00:00 EDT 2023',
var_date='Fri Apr 21 00:00:00 UTC 2023',
count=10.45
)

View File

@@ -21,7 +21,7 @@ Name | Type | Description | Notes
**request_id** | **str** | Backend ID that tracks a workflow request in the system. Provide this ID in a customer support ticket for debugging purposes. | [optional]
**start_time** | **datetime** | Date/time when the workflow started. | [optional]
**close_time** | **datetime** | Date/time when the workflow ended. | [optional]
**status** | **Enum** [ 'Completed', 'Failed', 'Canceled', 'Running' ] | Workflow execution status. | [optional]
**status** | **Enum** [ 'Completed', 'Failed', 'Canceled', 'Running', 'Queued' ] | Workflow execution status. | [optional]
}
## Example