Update python SDK docs: 15116515953

This commit is contained in:
developer-relations-sp
2025-05-19 15:05:01 +00:00
parent d73e77c393
commit c8938e0862
279 changed files with 7276 additions and 7276 deletions

View File

@@ -19,8 +19,8 @@ Method | HTTP request | Description
------------- | ------------- | -------------
[**create-source-app**](#create-source-app) | **POST** `/source-apps` | Create source app
[**delete-access-profiles-from-source-app-by-bulk**](#delete-access-profiles-from-source-app-by-bulk) | **POST** `/source-apps/{id}/access-profiles/bulk-remove` | Bulk remove access profiles from the specified source app
[**delete-source-app**](#delete-source-app) | **DELETE** `/source-apps/{id}` | Delete source app by ID
[**get-source-app**](#get-source-app) | **GET** `/source-apps/{id}` | Get source app by ID
[**delete-source-app**](#delete-source-app) | **DELETE** `/source-apps/{id}` | Delete source app by id
[**get-source-app**](#get-source-app) | **GET** `/source-apps/{id}` | Get source app by id
[**list-access-profiles-for-source-app**](#list-access-profiles-for-source-app) | **GET** `/source-apps/{id}/access-profiles` | List access profiles for the specified source app
[**list-all-source-app**](#list-all-source-app) | **GET** `/source-apps/all` | List all source apps
[**list-all-user-apps**](#list-all-user-apps) | **GET** `/user-apps/all` | List all user apps
@@ -28,8 +28,8 @@ Method | HTTP request | Description
[**list-available-accounts-for-user-app**](#list-available-accounts-for-user-app) | **GET** `/user-apps/{id}/available-accounts` | List available accounts for user app
[**list-available-source-apps**](#list-available-source-apps) | **GET** `/source-apps` | List available source apps
[**list-owned-user-apps**](#list-owned-user-apps) | **GET** `/user-apps` | List owned user apps
[**patch-source-app**](#patch-source-app) | **PATCH** `/source-apps/{id}` | Patch source app by ID
[**patch-user-app**](#patch-user-app) | **PATCH** `/user-apps/{id}` | Patch user app by ID
[**patch-source-app**](#patch-source-app) | **PATCH** `/source-apps/{id}` | Patch source app by id
[**patch-user-app**](#patch-user-app) | **PATCH** `/user-apps/{id}` | Patch user app by id
[**update-source-apps-in-bulk**](#update-source-apps-in-bulk) | **POST** `/source-apps/bulk-update` | Bulk update source apps
@@ -165,7 +165,7 @@ with ApiClient(configuration) as api_client:
[[Back to top]](#)
## delete-source-app
Delete source app by ID
Delete source app by id
Use this API to delete a specific source app
[API Spec](https://developer.sailpoint.com/docs/api/beta/delete-source-app)
@@ -207,7 +207,7 @@ with ApiClient(configuration) as api_client:
id = '2c9180835d191a86015d28455b4a2329' # str | source app ID. # str | source app ID.
try:
# Delete source app by ID
# Delete source app by id
results = AppsApi(api_client).delete_source_app(id=id)
# Below is a request that includes all optional parameters
@@ -223,7 +223,7 @@ with ApiClient(configuration) as api_client:
[[Back to top]](#)
## get-source-app
Get source app by ID
Get source app by id
This API returns a source app by its ID.
[API Spec](https://developer.sailpoint.com/docs/api/beta/get-source-app)
@@ -266,7 +266,7 @@ with ApiClient(configuration) as api_client:
id = '2c91808a7813090a017814121e121518' # str | ID of the source app # str | ID of the source app
try:
# Get source app by ID
# Get source app by id
results = AppsApi(api_client).get_source_app(id=id)
# Below is a request that includes all optional parameters
@@ -746,7 +746,7 @@ with ApiClient(configuration) as api_client:
[[Back to top]](#)
## patch-source-app
Patch source app by ID
Patch source app by id
This API updates an existing source app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
The following fields are patchable: **name**, **description**, **enabled**, **owner**, **provisionRequestEnabled**, **appCenterEnabled**, **accountSource**, **matchAllAccounts** and **accessProfiles**.
Name, description and owner can't be empty or null.
@@ -794,7 +794,7 @@ with ApiClient(configuration) as api_client:
json_patch_operation = '''[{op=replace, path=/enabled, value=true}, {op=replace, path=/matchAllAccounts, value=true}]''' # List[JsonPatchOperation] | (optional)
try:
# Patch source app by ID
# Patch source app by id
results = AppsApi(api_client).patch_source_app(id=id)
# Below is a request that includes all optional parameters
@@ -810,7 +810,7 @@ with ApiClient(configuration) as api_client:
[[Back to top]](#)
## patch-user-app
Patch user app by ID
Patch user app by id
This API updates an existing user app using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
The following fields are patchable: **account**
@@ -857,7 +857,7 @@ with ApiClient(configuration) as api_client:
json_patch_operation = '''[sailpoint.beta.JsonPatchOperation()]''' # List[JsonPatchOperation] | (optional)
try:
# Patch user app by ID
# Patch user app by id
results = AppsApi(api_client).patch_user_app(id=id)
# Below is a request that includes all optional parameters