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

@@ -20,6 +20,7 @@ Name | Type | Description | Notes
**object_type** | **str** | The object type this configuration is for. | [optional]
**reference_extractors** | **[]str** | List of json paths within an exported object of this type that represent references that need to be resolved. | [optional]
**signature_required** | **bool** | If true, this type of object will be JWS signed and cannot be modified before import. | [optional] [default to False]
**always_resolve_by_id** | **bool** | Whether this object type has to be resolved always by ID | [optional] [default to False]
**legacy_object** | **bool** | Whether this is a legacy object | [optional] [default to False]
**one_per_tenant** | **bool** | Whether there is only one object of this type | [optional] [default to False]
**exportable** | **bool** | Whether this object can be exported or it is just a reference object | [optional] [default to False]
@@ -35,6 +36,7 @@ sp_config_object = SpConfigObject(
object_type='TRIGGER_SUBSCRIPTION',
reference_extractors=[$.owner],
signature_required=False,
always_resolve_by_id=True,
legacy_object=False,
one_per_tenant=False,
exportable=True,
@@ -42,14 +44,13 @@ rules=sailpoint.beta.models.config_object_rules.Config Object Rules(
take_from_target_rules = [
sailpoint.beta.models.config_object_rule.Config Object Rule(
path = '$.enabled',
value = sailpoint.beta.models.value.value(),
mode = [RESTORE, PROMOTE], )
value = null,
modes = [RESTORE, PROMOTE], )
],
default_rules = [
sailpoint.beta.models.config_object_rule.Config Object Rule(
path = '$.enabled',
value = sailpoint.beta.models.value.value(),
mode = [RESTORE, PROMOTE], )
modes = [RESTORE, PROMOTE], )
],
editable = True, )
)