Skip to content

Commit aa398ca

Browse files
Automated build 'Automated commit by github action: 21291270880
Original commit message: MIS-192 : Update API Doc - Account Mapping Custom attribute creation request and response (#2569)' python sdk: 21291283346
1 parent 14eb508 commit aa398ca

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

sailpoint/v2024/docs/Models/AttributeMappingsAllOfTarget.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Targeted Entity
1717

1818
Name | Type | Description | Notes
1919
------------ | ------------- | ------------- | -------------
20-
**type** | **Enum** [ 'IDENTITY' ] | The type of target entity | [optional]
20+
**type** | **Enum** [ 'ACCOUNT', 'IDENTITY', 'OWNER_ACCOUNT', 'OWNER_IDENTITY' ] | The type of target entity | [optional]
2121
**attribute_name** | **str** | Name of the targeted attribute | [optional]
2222
**source_id** | **str** | The ID of Source | [optional]
2323
}

sailpoint/v2024/models/attribute_mappings_all_of_target.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def type_validate_enum(cls, value):
3838
if value is None:
3939
return value
4040

41-
if value not in set(['IDENTITY']):
42-
warnings.warn(f"must be one of enum values ('IDENTITY') unknown value: {value}")
41+
if value not in set(['ACCOUNT', 'IDENTITY', 'OWNER_ACCOUNT', 'OWNER_IDENTITY']):
42+
warnings.warn(f"must be one of enum values ('ACCOUNT', 'IDENTITY', 'OWNER_ACCOUNT', 'OWNER_IDENTITY') unknown value: {value}")
4343
return value
4444

4545
model_config = ConfigDict(

sailpoint/v2025/docs/Models/AttributeMappingsAllOfTarget.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Targeted Entity
1717

1818
Name | Type | Description | Notes
1919
------------ | ------------- | ------------- | -------------
20-
**type** | **Enum** [ 'IDENTITY' ] | The type of target entity | [optional]
20+
**type** | **Enum** [ 'ACCOUNT', 'IDENTITY', 'OWNER_ACCOUNT', 'OWNER_IDENTITY' ] | The type of target entity | [optional]
2121
**attribute_name** | **str** | Name of the targeted attribute | [optional]
2222
**source_id** | **str** | The ID of Source | [optional]
2323
}

sailpoint/v2025/models/attribute_mappings_all_of_target.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def type_validate_enum(cls, value):
3838
if value is None:
3939
return value
4040

41-
if value not in set(['IDENTITY']):
42-
warnings.warn(f"must be one of enum values ('IDENTITY') unknown value: {value}")
41+
if value not in set(['ACCOUNT', 'IDENTITY', 'OWNER_ACCOUNT', 'OWNER_IDENTITY']):
42+
warnings.warn(f"must be one of enum values ('ACCOUNT', 'IDENTITY', 'OWNER_ACCOUNT', 'OWNER_IDENTITY') unknown value: {value}")
4343
return value
4444

4545
model_config = ConfigDict(

0 commit comments

Comments
 (0)