mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
---
|
||||
id: beta-sp-config-object
|
||||
title: SpConfigObject
|
||||
pagination_label: SpConfigObject
|
||||
sidebar_label: SpConfigObject
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'SpConfigObject', 'BetaSpConfigObject']
|
||||
slug: /tools/sdk/python/beta/models/sp-config-object
|
||||
tags: ['SDK', 'Software Development Kit', 'SpConfigObject', 'BetaSpConfigObject']
|
||||
---
|
||||
|
||||
# SpConfigObject
|
||||
|
||||
Response model for get object configuration.
|
||||
|
||||
## Properties
|
||||
|
||||
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]
|
||||
**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]
|
||||
**rules** | [**SpConfigRules**](sp-config-rules) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.sp_config_object import SpConfigObject
|
||||
|
||||
sp_config_object = SpConfigObject(
|
||||
object_type='TRIGGER_SUBSCRIPTION',
|
||||
reference_extractors=[$.owner],
|
||||
signature_required=False,
|
||||
legacy_object=False,
|
||||
one_per_tenant=False,
|
||||
exportable=True,
|
||||
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], )
|
||||
],
|
||||
default_rules = [
|
||||
sailpoint.beta.models.config_object_rule.Config Object Rule(
|
||||
path = '$.enabled',
|
||||
value = sailpoint.beta.models.value.value(),
|
||||
mode = [RESTORE, PROMOTE], )
|
||||
],
|
||||
editable = True, )
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user