merge changes from main and pull the latest from python docs

This commit is contained in:
darrell-thobe-sp
2025-03-10 11:34:32 -04:00
3122 changed files with 95404 additions and 24060 deletions

View File

@@ -17,9 +17,6 @@ Role
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The unique ID of the referenced object. | [required]
**name** | **str** | The human readable name of the referenced object. | [required]
**type** | [**DocumentType**](document-type) | | [required]
**description** | **str** | Access item's description. | [optional]
**created** | **datetime** | ISO-8601 date-time referring to the time when the object was created. | [optional]
**modified** | **datetime** | ISO-8601 date-time referring to the time when the object was last modified. | [optional]
@@ -27,14 +24,20 @@ Name | Type | Description | Notes
**enabled** | **bool** | Indicates whether the access item is currently enabled. | [optional] [default to False]
**requestable** | **bool** | Indicates whether the access item can be requested. | [optional] [default to True]
**request_comments_required** | **bool** | Indicates whether comments are required for requests to access the item. | [optional] [default to False]
**owner** | [**BaseAccessAllOfOwner**](base-access-all-of-owner) | | [optional]
**owner** | [**BaseAccessOwner**](base-access-owner) | | [optional]
**id** | **str** | ID of the role. | [required]
**name** | **str** | Name of the role. | [required]
**access_profiles** | [**[]BaseAccessProfile**](base-access-profile) | Access profiles included with the role. | [optional]
**access_profile_count** | **int** | Number of access profiles included with the role. | [optional]
**tags** | **[]str** | Tags that have been applied to the object. | [optional]
**segments** | [**[]BaseSegment**](base-segment) | Segments with the role. | [optional]
**segment_count** | **int** | Number of segments with the role. | [optional]
**entitlements** | [**[]BaseEntitlement**](base-entitlement) | Entitlements included with the role. | [optional]
**entitlements** | [**[]RoleDocumentAllOfEntitlements**](role-document-all-of-entitlements) | Entitlements included with the role. | [optional]
**entitlement_count** | **int** | Number of entitlements included with the role. | [optional]
**dimensional** | **bool** | | [optional] [default to False]
**dimension_schema_attribute_count** | **int** | Number of dimension attributes included with the role. | [optional]
**dimension_schema_attributes** | [**[]RoleDocumentAllOfDimensionSchemaAttributes**](role-document-all-of-dimension-schema-attributes) | Dimension attributes included with the role. | [optional]
**dimensions** | [**[]RoleDocumentAllOfDimensions**](role-document-all-of-dimensions) | | [optional]
}
## Example
@@ -43,21 +46,20 @@ Name | Type | Description | Notes
from sailpoint.v3.models.role_document import RoleDocument
role_document = RoleDocument(
id='2c91808568c529c60168cca6f90c1313',
name='John Doe',
type='identity',
description='The admin role',
description='Admin access',
created='2018-06-25T20:22:28.104Z',
modified='2018-06-25T20:22:28.104Z',
synced='2018-06-25T20:22:33.104Z',
enabled=True,
requestable=True,
request_comments_required=False,
owner=sailpoint.v3.models.base_access_all_of_owner.BaseAccess_allOf_owner(
owner=sailpoint.v3.models.base_access_owner.BaseAccess_owner(
type = 'IDENTITY',
id = '2c9180a46faadee4016fb4e018c20639',
name = 'Support',
email = 'cloud-support@sailpoint.com', ),
id='2c91808375d8e80a0175e1f88a575222',
name='Branch Manager Access',
access_profiles=[
sailpoint.v3.models.base_access_profile.BaseAccessProfile(
id = '2c91809c6faade77016fb4f0b63407ae',
@@ -72,17 +74,31 @@ segments=[
],
segment_count=1,
entitlements=[
sailpoint.v3.models.base_entitlement.BaseEntitlement(
has_permissions = False,
description = 'Cloud engineering',
attribute = 'memberOf',
value = 'CN=Cloud Engineering,DC=sailpoint,DC=COM',
schema = 'group',
privileged = False,
id = '2c918084575812550157589064f33b89',
name = 'CN=Cloud Engineering,DC=sailpoint,DC=COM', )
null
],
entitlement_count=3
entitlement_count=3,
dimensional=False,
dimension_schema_attribute_count=3,
dimension_schema_attributes=[
sailpoint.v3.models.role_document_all_of_dimension_schema_attributes.RoleDocument_allOf_dimensionSchemaAttributes(
derived = True,
display_name = 'Department',
name = 'department', )
],
dimensions=[
sailpoint.v3.models.role_document_all_of_dimensions.RoleDocument_allOf_dimensions(
id = 'b3c28992ba964a40a7598978139d1ced',
name = 'Manager Austin Branch',
description = 'Managers located at the Austin branch',
entitlements = [
null
],
access_profiles = [
sailpoint.v3.models.base_access_profile.BaseAccessProfile(
id = '2c91809c6faade77016fb4f0b63407ae',
name = 'Admin Access', )
], )
]
)
```