Skip to content

Commit a1fa606

Browse files
Automated build 'Automated commit 'ISCAIM-25128 : Deprecate various beta endpoints (#2086)
* deprecated identities-accounts/** APIs * added user level * added deprecation details to some beta APIs * added nullable as true * reverted * marked beta/work-items as deprecated * marked beta/public-identities-config API deprecate * fixed lint failures * fixed validation * fixed lintings errors * fixed lintings errors * fixed lintings errors * reverted changes done to v3,v2024,v2025 doc' by github action: 14926917886' python sdk: 14926927550
1 parent 7a259d1 commit a1fa606

File tree

9 files changed

+885
-545
lines changed

9 files changed

+885
-545
lines changed

sailpoint/beta/api/accounts_api.py

Lines changed: 93 additions & 48 deletions
Large diffs are not rendered by default.

sailpoint/beta/api/public_identities_config_api.py

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_public_identity_config(
5252
_headers: Optional[Dict[StrictStr, Any]] = None,
5353
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5454
) -> PublicIdentityConfig:
55-
"""Get Public Identity Config
55+
"""(Deprecated) Get Public Identity Config
5656
5757
This gets details of public identity config.
5858
@@ -77,6 +77,7 @@ def get_public_identity_config(
7777
:type _host_index: int, optional
7878
:return: Returns the result object.
7979
""" # noqa: E501
80+
warnings.warn("GET /public-identities-config is deprecated.", DeprecationWarning)
8081

8182
_param = self._get_public_identity_config_serialize(
8283
_request_auth=_request_auth,
@@ -120,7 +121,7 @@ def get_public_identity_config_with_http_info(
120121
_headers: Optional[Dict[StrictStr, Any]] = None,
121122
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
122123
) -> ApiResponse[PublicIdentityConfig]:
123-
"""Get Public Identity Config
124+
"""(Deprecated) Get Public Identity Config
124125
125126
This gets details of public identity config.
126127
@@ -145,6 +146,7 @@ def get_public_identity_config_with_http_info(
145146
:type _host_index: int, optional
146147
:return: Returns the result object.
147148
""" # noqa: E501
149+
warnings.warn("GET /public-identities-config is deprecated.", DeprecationWarning)
148150

149151
_param = self._get_public_identity_config_serialize(
150152
_request_auth=_request_auth,
@@ -188,7 +190,7 @@ def get_public_identity_config_without_preload_content(
188190
_headers: Optional[Dict[StrictStr, Any]] = None,
189191
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
190192
) -> RESTResponseType:
191-
"""Get Public Identity Config
193+
"""(Deprecated) Get Public Identity Config
192194
193195
This gets details of public identity config.
194196
@@ -213,6 +215,7 @@ def get_public_identity_config_without_preload_content(
213215
:type _host_index: int, optional
214216
:return: Returns the result object.
215217
""" # noqa: E501
218+
warnings.warn("GET /public-identities-config is deprecated.", DeprecationWarning)
216219

217220
_param = self._get_public_identity_config_serialize(
218221
_request_auth=_request_auth,
@@ -315,7 +318,7 @@ def update_public_identity_config(
315318
_headers: Optional[Dict[StrictStr, Any]] = None,
316319
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
317320
) -> PublicIdentityConfig:
318-
"""Update Public Identity Config
321+
"""(Deprecated) Update Public Identity Config
319322
320323
This updates the details of public identity config.
321324
@@ -342,6 +345,7 @@ def update_public_identity_config(
342345
:type _host_index: int, optional
343346
:return: Returns the result object.
344347
""" # noqa: E501
348+
warnings.warn("PUT /public-identities-config is deprecated.", DeprecationWarning)
345349

346350
_param = self._update_public_identity_config_serialize(
347351
public_identity_config=public_identity_config,
@@ -387,7 +391,7 @@ def update_public_identity_config_with_http_info(
387391
_headers: Optional[Dict[StrictStr, Any]] = None,
388392
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
389393
) -> ApiResponse[PublicIdentityConfig]:
390-
"""Update Public Identity Config
394+
"""(Deprecated) Update Public Identity Config
391395
392396
This updates the details of public identity config.
393397
@@ -414,6 +418,7 @@ def update_public_identity_config_with_http_info(
414418
:type _host_index: int, optional
415419
:return: Returns the result object.
416420
""" # noqa: E501
421+
warnings.warn("PUT /public-identities-config is deprecated.", DeprecationWarning)
417422

418423
_param = self._update_public_identity_config_serialize(
419424
public_identity_config=public_identity_config,
@@ -459,7 +464,7 @@ def update_public_identity_config_without_preload_content(
459464
_headers: Optional[Dict[StrictStr, Any]] = None,
460465
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
461466
) -> RESTResponseType:
462-
"""Update Public Identity Config
467+
"""(Deprecated) Update Public Identity Config
463468
464469
This updates the details of public identity config.
465470
@@ -486,6 +491,7 @@ def update_public_identity_config_without_preload_content(
486491
:type _host_index: int, optional
487492
:return: Returns the result object.
488493
""" # noqa: E501
494+
warnings.warn("PUT /public-identities-config is deprecated.", DeprecationWarning)
489495

490496
_param = self._update_public_identity_config_serialize(
491497
public_identity_config=public_identity_config,

0 commit comments

Comments
 (0)