Update python SDK docs: 16269863689

This commit is contained in:
developer-relations-sp
2025-07-14 14:39:17 +00:00
parent e415929308
commit b09e87e16d
28 changed files with 521 additions and 724 deletions

View File

@@ -32,6 +32,7 @@ id='2c9180835d191a86015d28455b4a2329',
name='Source [source] Account Correlation',
attribute_assignments=[
sailpoint.beta.models.correlation_config_attribute_assignments_inner.CorrelationConfig_attributeAssignments_inner(
sequence = 1,
property = 'first_name',
value = 'firstName',
operation = 'EQ',

View File

@@ -17,6 +17,7 @@ The attribute assignment of the correlation configuration.
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**sequence** | **int** | The sequence of the attribute assignment. | [optional]
**var_property** | **str** | The property of the attribute assignment. | [optional]
**value** | **str** | The value of the attribute assignment. | [optional]
**operation** | **Enum** [ 'EQ' ] | The operation of the attribute assignment. | [optional]
@@ -32,6 +33,7 @@ Name | Type | Description | Notes
from sailpoint.beta.models.correlation_config_attribute_assignments_inner import CorrelationConfigAttributeAssignmentsInner
correlation_config_attribute_assignments_inner = CorrelationConfigAttributeAssignmentsInner(
sequence=1,
var_property='first_name',
value='firstName',
operation='EQ',

View File

@@ -21,5 +21,9 @@ Enum representing the type of data a schema attribute accepts.
* `IDENTITY` (value: `'IDENTITY'`)
* `PHONE` (value: `'PHONE'`)
* `EMAIL` (value: `'EMAIL'`)
[[Back to top]](#)