Skip to content

Commit

Permalink
Automated build 'Automated commit 'Merge pull request #1956 from sail…
Browse files Browse the repository at this point in the history
…point/PLTCONN-7159-v3sources-auth

PLTCONN-7159 v3 Sources Auth Update' by github action: 13271054809' python sdk: 13271064289
  • Loading branch information
developer-relations-sp committed Feb 11, 2025
1 parent 49142ce commit 164370b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion sailpoint/v2024/api/sources_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -9276,7 +9276,8 @@ def _list_sources_serialize(
# authentication setting
_auth_settings: List[str] = [
'userAuth',
'userAuth'
'userAuth',
'applicationAuth'
]

return self.api_client.param_serialize(
Expand Down
5 changes: 4 additions & 1 deletion sailpoint/v2024/docs/SourcesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -2623,6 +2623,7 @@ This end-point lists all the sources in IdentityNow.

* OAuth Authentication (userAuth):
* OAuth Authentication (userAuth):
* OAuth Authentication (applicationAuth):

```python
import sailpoint.v2024
Expand All @@ -2645,6 +2646,8 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]

configuration.access_token = os.environ["ACCESS_TOKEN"]

configuration.access_token = os.environ["ACCESS_TOKEN"]

# Enter a context with an instance of the API client
with sailpoint.v2024.ApiClient(configuration) as api_client:
# Create an instance of the API class
Expand Down Expand Up @@ -2687,7 +2690,7 @@ Name | Type | Description | Notes

### Authorization

[userAuth](../README.md#userAuth), [userAuth](../README.md#userAuth)
[userAuth](../README.md#userAuth), [userAuth](../README.md#userAuth), [applicationAuth](../README.md#applicationAuth)

### HTTP request headers

Expand Down
3 changes: 2 additions & 1 deletion sailpoint/v3/api/sources_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5696,7 +5696,8 @@ def _list_sources_serialize(
# authentication setting
_auth_settings: List[str] = [
'userAuth',
'userAuth'
'userAuth',
'applicationAuth'
]

return self.api_client.param_serialize(
Expand Down
5 changes: 4 additions & 1 deletion sailpoint/v3/docs/SourcesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1575,6 +1575,7 @@ This end-point lists all the sources in IdentityNow.

* OAuth Authentication (userAuth):
* OAuth Authentication (userAuth):
* OAuth Authentication (applicationAuth):

```python
import sailpoint.v3
Expand All @@ -1597,6 +1598,8 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]

configuration.access_token = os.environ["ACCESS_TOKEN"]

configuration.access_token = os.environ["ACCESS_TOKEN"]

# Enter a context with an instance of the API client
with sailpoint.v3.ApiClient(configuration) as api_client:
# Create an instance of the API class
Expand Down Expand Up @@ -1639,7 +1642,7 @@ Name | Type | Description | Notes

### Authorization

[userAuth](../README.md#userAuth), [userAuth](../README.md#userAuth)
[userAuth](../README.md#userAuth), [userAuth](../README.md#userAuth), [applicationAuth](../README.md#applicationAuth)

### HTTP request headers

Expand Down

0 comments on commit 164370b

Please sign in to comment.