Update to python SDK docs: 13843465382

This commit is contained in:
developer-relations-sp
2025-03-13 19:55:38 +00:00
parent dec826c738
commit 4d26357dda
28 changed files with 1056 additions and 25 deletions

View File

@@ -840,7 +840,7 @@ Use this API to get all dependent Profiles, Attributes, Applications and Custom
Param Type | Name | Data Type | Required | Description
------------- | ------------- | ------------- | ------------- | -------------
Path | id | **str** | True | Source ID.
Path | source_id | **str** | True | Source ID.
### Return type
[**SourceConnectionsDto**](../models/source-connections-dto)
@@ -872,14 +872,14 @@ configuration = Configuration()
with ApiClient(configuration) as api_client:
id = '2c9180835d191a86015d28455b4a2329' # str | Source ID. # str | Source ID.
source_id = '2c9180835d191a86015d28455b4a2329' # str | Source ID. # str | Source ID.
try:
# Get Source Connections by ID
results = SourcesApi(api_client).get_source_connections(id=id)
results = SourcesApi(api_client).get_source_connections(source_id=source_id)
# Below is a request that includes all optional parameters
# results = SourcesApi(api_client).get_source_connections(id)
# results = SourcesApi(api_client).get_source_connections(source_id)
print("The response of SourcesApi->get_source_connections:\n")
pprint(results)
except Exception as e:

View File

@@ -32,7 +32,7 @@ Name | Type | Description | Notes
**pinned_config** | **bool** | boolean flag indiacting whether or not the cluster configuration is pinned | [optional] [default to False]
**log_configuration** | [**ClientLogConfiguration**](client-log-configuration) | | [optional]
**operational** | **bool** | Whether or not the cluster is operational or not | [optional] [default to False]
**status** | **str** | Cluster status | [optional]
**status** | **Enum** [ 'CONFIGURING', 'FAILED', 'NO_CLIENTS', 'NORMAL', 'WARNING' ] | Cluster status | [optional]
**public_key_certificate** | **str** | Public key certificate | [optional]
**public_key_thumbprint** | **str** | Public key thumbprint | [optional]
**public_key** | **str** | Public key | [optional]

View File

@@ -20,7 +20,7 @@ Name | Type | Description | Notes
**credential_profiles** | **[]str** | Name of the CredentialProfile attached to this source | [optional]
**source_attributes** | **[]str** | The attributes attached to this source | [optional]
**mapping_profiles** | **[]str** | The profiles attached to this source | [optional]
**dependent_custom_transforms** | [**[]Transform**](transform) | | [optional]
**dependent_custom_transforms** | [**[]TransformRead**](transform-read) | A list of custom transforms associated with this source. A transform will be considered associated with a source if any attributes of the transform specify the source as the sourceName. | [optional]
**dependent_apps** | [**[]DependantAppConnections**](dependant-app-connections) | | [optional]
**missing_dependents** | [**[]DependantConnectionsMissingDto**](dependant-connections-missing-dto) | | [optional]
}
@@ -44,12 +44,7 @@ source_attributes=[
'[sAMAccountName, mail, sn, givenName, displayName, employeeNumber, manager, telephoneNumber]'
],
mapping_profiles=[ODS-AD-Profile, ODS-Profile2],
dependent_custom_transforms=[
sailpoint.v3.models.transform.Transform(
name = 'Timestamp To Date',
type = 'dateFormat',
attributes = sailpoint.v3.models.attributes.attributes(), )
],
dependent_custom_transforms=[{id=61190eae-290b-4335-aeb8-7335f1fd99cb, name=Split Transform, type=split, attributes={delimiter=-, index=1, input={attributes={sourceName=Example CSV Source, attributeName=last_name}, type=accountAttribute}}, internal=false}],
dependent_apps=[
sailpoint.v3.models.dependant_app_connections.DependantAppConnections(
cloud_app_id = '9e3cdd80edf84f119327df8bbd5bb5ac',