Update python SDK docs: 16525292132

This commit is contained in:
developer-relations-sp
2025-07-25 15:10:03 +00:00
parent be23bab385
commit 993bfb3fea
101 changed files with 2689 additions and 1526 deletions

View File

@@ -16,11 +16,11 @@ tags: ['SDK', 'Software Development Kit', 'MachineClassificationConfig', 'V2025M
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**enabled** | **bool** | Indicates if the Classification is enabled for a Source | [optional] [default to False]
**classification_method** | **Enum** [ 'SOURCE' ] | Classification Method | [optional]
**criteria** | **str** | A classification criteria object | [optional]
**created** | **datetime** | Time when the config was created | [optional]
**modified** | **datetime** | Time when the config was last updated | [optional]
**enabled** | **bool** | Indicates whether Classification is enabled for a Source | [optional] [default to False]
**classification_method** | **Enum** [ 'SOURCE', 'CRITERIA' ] | Classification Method | [optional]
**criteria** | [**MachineClassificationCriteriaLevel1**](machine-classification-criteria-level1) | | [optional]
**created** | **datetime** | Date the config was created | [optional]
**modified** | **datetime** | Date the config was last updated | [optional]
}
## Example
@@ -31,7 +31,19 @@ from sailpoint.v2025.models.machine_classification_config import MachineClassifi
machine_classification_config = MachineClassificationConfig(
enabled=True,
classification_method='SOURCE',
criteria='',
criteria=sailpoint.v2025.models.machine_classification_criteria_level1.MachineClassificationCriteriaLevel1(
operation = 'EQUALS',
case_sensitive = False,
data_type = '',
attribute = 'distinguishedName',
value = 'OU=Service Accounts',
children = [
sailpoint.v2025.models.machine_classification_criteria_level2.MachineClassificationCriteriaLevel2(
case_sensitive = False,
data_type = '',
attribute = 'employeeType',
value = 'SERVICE', )
], ),
created='2017-07-11T18:45:37.098Z',
modified='2018-06-25T20:22:28.104Z'
)