sailpoint-api-client 1.8.58 → 1.8.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +36 -0
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +36 -0
  6. package/dist/beta/api.js.map +1 -1
  7. package/dist/beta/common.js +2 -2
  8. package/dist/nerm/common.js +2 -2
  9. package/dist/nermv2025/common.js +2 -2
  10. package/dist/v2024/api.d.ts +36 -0
  11. package/dist/v2024/api.js.map +1 -1
  12. package/dist/v2024/common.js +2 -2
  13. package/dist/v2025/api.d.ts +60 -0
  14. package/dist/v2025/api.js +24 -0
  15. package/dist/v2025/api.js.map +1 -1
  16. package/dist/v2025/common.js +2 -2
  17. package/dist/v2026/api.d.ts +443 -176
  18. package/dist/v2026/api.js +694 -391
  19. package/dist/v2026/api.js.map +1 -1
  20. package/dist/v2026/common.js +2 -2
  21. package/dist/v3/api.d.ts +36 -0
  22. package/dist/v3/api.js.map +1 -1
  23. package/dist/v3/common.js +2 -2
  24. package/nerm/README.md +2 -2
  25. package/nerm/common.ts +2 -2
  26. package/nerm/package.json +1 -1
  27. package/nermv2025/README.md +2 -2
  28. package/nermv2025/common.ts +2 -2
  29. package/nermv2025/package.json +1 -1
  30. package/package.json +1 -1
  31. package/v2024/README.md +2 -2
  32. package/v2024/api.ts +36 -0
  33. package/v2024/common.ts +2 -2
  34. package/v2024/package.json +1 -1
  35. package/v2025/README.md +2 -2
  36. package/v2025/api.ts +60 -0
  37. package/v2025/common.ts +2 -2
  38. package/v2025/package.json +1 -1
  39. package/v2026/README.md +2 -2
  40. package/v2026/api.ts +790 -362
  41. package/v2026/common.ts +2 -2
  42. package/v2026/package.json +1 -1
  43. package/v3/README.md +2 -2
  44. package/v3/api.ts +36 -0
  45. package/v3/common.ts +2 -2
  46. package/v3/package.json +1 -1
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
250
250
  if (axios === void 0) { axios = globalAxios; }
251
251
  if (basePath === void 0) { basePath = BASE_PATH; }
252
252
  (0, axios_retry_1.default)(axios, configuration.retriesConfig);
253
- var userAgent = "SailPoint-SDK-TypeScript/1.8.58";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.60";
254
254
  if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
255
255
  userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
256
256
  }
257
257
  userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
258
- var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.58' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.60' }), { 'User-Agent': userAgent });
259
259
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
260
260
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
261
261
  }
@@ -13461,6 +13461,24 @@ export interface CompletedApprovalV2025 {
13461
13461
  * @memberof CompletedApprovalV2025
13462
13462
  */
13463
13463
  'currentRemoveDate'?: string | null;
13464
+ /**
13465
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
13466
+ * @type {string}
13467
+ * @memberof CompletedApprovalV2025
13468
+ */
13469
+ 'startDate'?: string;
13470
+ /**
13471
+ * If true, then the request is to change the start date or sunrise date.
13472
+ * @type {boolean}
13473
+ * @memberof CompletedApprovalV2025
13474
+ */
13475
+ 'startUpdateRequested'?: boolean;
13476
+ /**
13477
+ * The start date or sunrise date that was assigned at the time of the request.
13478
+ * @type {string}
13479
+ * @memberof CompletedApprovalV2025
13480
+ */
13481
+ 'currentStartDate'?: string;
13464
13482
  /**
13465
13483
  *
13466
13484
  * @type {SodViolationContextCheckCompletedV2025}
@@ -33349,6 +33367,24 @@ export interface PendingApprovalV2025 {
33349
33367
  * @memberof PendingApprovalV2025
33350
33368
  */
33351
33369
  'currentRemoveDate'?: string;
33370
+ /**
33371
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
33372
+ * @type {string}
33373
+ * @memberof PendingApprovalV2025
33374
+ */
33375
+ 'startDate'?: string;
33376
+ /**
33377
+ * If true, then the request is to change the start date or sunrise date.
33378
+ * @type {boolean}
33379
+ * @memberof PendingApprovalV2025
33380
+ */
33381
+ 'startUpdateRequested'?: boolean;
33382
+ /**
33383
+ * The start date or sunrise date that was assigned at the time of the request.
33384
+ * @type {string}
33385
+ * @memberof PendingApprovalV2025
33386
+ */
33387
+ 'currentStartDate'?: string;
33352
33388
  /**
33353
33389
  *
33354
33390
  * @type {SodViolationContextCheckCompletedV2025}
@@ -77327,6 +77363,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77327
77363
  * @param {CreateMachineAccountSubtypeRequestV2025} createMachineAccountSubtypeRequestV2025
77328
77364
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77329
77365
  * @param {*} [axiosOptions] Override http request option.
77366
+ * @deprecated
77330
77367
  * @throws {RequiredError}
77331
77368
  */
77332
77369
  createMachineAccountSubtype: (sourceId: string, createMachineAccountSubtypeRequestV2025: CreateMachineAccountSubtypeRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77337,6 +77374,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77337
77374
  * @param {string} technicalName The technical name of the subtype.
77338
77375
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77339
77376
  * @param {*} [axiosOptions] Override http request option.
77377
+ * @deprecated
77340
77378
  * @throws {RequiredError}
77341
77379
  */
77342
77380
  deleteMachineAccountSubtype: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77354,6 +77392,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77354
77392
  * @param {string} subtypeId The ID of the machine account subtype.
77355
77393
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77356
77394
  * @param {*} [axiosOptions] Override http request option.
77395
+ * @deprecated
77357
77396
  * @throws {RequiredError}
77358
77397
  */
77359
77398
  getMachineAccountSubtypeById: (subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77364,6 +77403,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77364
77403
  * @param {string} technicalName The technical name of the subtype.
77365
77404
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77366
77405
  * @param {*} [axiosOptions] Override http request option.
77406
+ * @deprecated
77367
77407
  * @throws {RequiredError}
77368
77408
  */
77369
77409
  getMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77378,6 +77418,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77378
77418
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
77379
77419
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
77380
77420
  * @param {*} [axiosOptions] Override http request option.
77421
+ * @deprecated
77381
77422
  * @throws {RequiredError}
77382
77423
  */
77383
77424
  listMachineAccountSubtypes: (sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77401,6 +77442,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77401
77442
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
77402
77443
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77403
77444
  * @param {*} [axiosOptions] Override http request option.
77445
+ * @deprecated
77404
77446
  * @throws {RequiredError}
77405
77447
  */
77406
77448
  patchMachineAccountSubtype: (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77426,6 +77468,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77426
77468
  * @param {CreateMachineAccountSubtypeRequestV2025} createMachineAccountSubtypeRequestV2025
77427
77469
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77428
77470
  * @param {*} [axiosOptions] Override http request option.
77471
+ * @deprecated
77429
77472
  * @throws {RequiredError}
77430
77473
  */
77431
77474
  createMachineAccountSubtype(sourceId: string, createMachineAccountSubtypeRequestV2025: CreateMachineAccountSubtypeRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>>;
@@ -77436,6 +77479,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77436
77479
  * @param {string} technicalName The technical name of the subtype.
77437
77480
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77438
77481
  * @param {*} [axiosOptions] Override http request option.
77482
+ * @deprecated
77439
77483
  * @throws {RequiredError}
77440
77484
  */
77441
77485
  deleteMachineAccountSubtype(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
@@ -77453,6 +77497,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77453
77497
  * @param {string} subtypeId The ID of the machine account subtype.
77454
77498
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77455
77499
  * @param {*} [axiosOptions] Override http request option.
77500
+ * @deprecated
77456
77501
  * @throws {RequiredError}
77457
77502
  */
77458
77503
  getMachineAccountSubtypeById(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>>;
@@ -77463,6 +77508,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77463
77508
  * @param {string} technicalName The technical name of the subtype.
77464
77509
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77465
77510
  * @param {*} [axiosOptions] Override http request option.
77511
+ * @deprecated
77466
77512
  * @throws {RequiredError}
77467
77513
  */
77468
77514
  getMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>>;
@@ -77477,6 +77523,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77477
77523
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
77478
77524
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
77479
77525
  * @param {*} [axiosOptions] Override http request option.
77526
+ * @deprecated
77480
77527
  * @throws {RequiredError}
77481
77528
  */
77482
77529
  listMachineAccountSubtypes(sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeV2025>>>;
@@ -77500,6 +77547,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77500
77547
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
77501
77548
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77502
77549
  * @param {*} [axiosOptions] Override http request option.
77550
+ * @deprecated
77503
77551
  * @throws {RequiredError}
77504
77552
  */
77505
77553
  patchMachineAccountSubtype(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>>;
@@ -77523,6 +77571,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77523
77571
  * @summary Create subtype
77524
77572
  * @param {MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
77525
77573
  * @param {*} [axiosOptions] Override http request option.
77574
+ * @deprecated
77526
77575
  * @throws {RequiredError}
77527
77576
  */
77528
77577
  createMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025>;
@@ -77531,6 +77580,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77531
77580
  * @summary Delete subtype
77532
77581
  * @param {MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
77533
77582
  * @param {*} [axiosOptions] Override http request option.
77583
+ * @deprecated
77534
77584
  * @throws {RequiredError}
77535
77585
  */
77536
77586
  deleteMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
@@ -77547,6 +77597,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77547
77597
  * @summary Retrieve subtype by subtype id
77548
77598
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
77549
77599
  * @param {*} [axiosOptions] Override http request option.
77600
+ * @deprecated
77550
77601
  * @throws {RequiredError}
77551
77602
  */
77552
77603
  getMachineAccountSubtypeById(requestParameters: MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025>;
@@ -77555,6 +77606,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77555
77606
  * @summary Retrieve subtype by source and technicalName
77556
77607
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
77557
77608
  * @param {*} [axiosOptions] Override http request option.
77609
+ * @deprecated
77558
77610
  * @throws {RequiredError}
77559
77611
  */
77560
77612
  getMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025>;
@@ -77563,6 +77615,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77563
77615
  * @summary Retrieve all subtypes by source
77564
77616
  * @param {MachineAccountsV2025ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
77565
77617
  * @param {*} [axiosOptions] Override http request option.
77618
+ * @deprecated
77566
77619
  * @throws {RequiredError}
77567
77620
  */
77568
77621
  listMachineAccountSubtypes(requestParameters: MachineAccountsV2025ApiListMachineAccountSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeV2025>>;
@@ -77579,6 +77632,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77579
77632
  * @summary Patch subtype
77580
77633
  * @param {MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
77581
77634
  * @param {*} [axiosOptions] Override http request option.
77635
+ * @deprecated
77582
77636
  * @throws {RequiredError}
77583
77637
  */
77584
77638
  patchMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025>;
@@ -77846,6 +77900,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77846
77900
  * @summary Create subtype
77847
77901
  * @param {MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
77848
77902
  * @param {*} [axiosOptions] Override http request option.
77903
+ * @deprecated
77849
77904
  * @throws {RequiredError}
77850
77905
  * @memberof MachineAccountsV2025Api
77851
77906
  */
@@ -77855,6 +77910,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77855
77910
  * @summary Delete subtype
77856
77911
  * @param {MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
77857
77912
  * @param {*} [axiosOptions] Override http request option.
77913
+ * @deprecated
77858
77914
  * @throws {RequiredError}
77859
77915
  * @memberof MachineAccountsV2025Api
77860
77916
  */
@@ -77873,6 +77929,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77873
77929
  * @summary Retrieve subtype by subtype id
77874
77930
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
77875
77931
  * @param {*} [axiosOptions] Override http request option.
77932
+ * @deprecated
77876
77933
  * @throws {RequiredError}
77877
77934
  * @memberof MachineAccountsV2025Api
77878
77935
  */
@@ -77882,6 +77939,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77882
77939
  * @summary Retrieve subtype by source and technicalName
77883
77940
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
77884
77941
  * @param {*} [axiosOptions] Override http request option.
77942
+ * @deprecated
77885
77943
  * @throws {RequiredError}
77886
77944
  * @memberof MachineAccountsV2025Api
77887
77945
  */
@@ -77891,6 +77949,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77891
77949
  * @summary Retrieve all subtypes by source
77892
77950
  * @param {MachineAccountsV2025ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
77893
77951
  * @param {*} [axiosOptions] Override http request option.
77952
+ * @deprecated
77894
77953
  * @throws {RequiredError}
77895
77954
  * @memberof MachineAccountsV2025Api
77896
77955
  */
@@ -77909,6 +77968,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77909
77968
  * @summary Patch subtype
77910
77969
  * @param {MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
77911
77970
  * @param {*} [axiosOptions] Override http request option.
77971
+ * @deprecated
77912
77972
  * @throws {RequiredError}
77913
77973
  * @memberof MachineAccountsV2025Api
77914
77974
  */
package/dist/v2025/api.js CHANGED
@@ -52296,6 +52296,7 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
52296
52296
  * @param {CreateMachineAccountSubtypeRequestV2025} createMachineAccountSubtypeRequestV2025
52297
52297
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
52298
52298
  * @param {*} [axiosOptions] Override http request option.
52299
+ * @deprecated
52299
52300
  * @throws {RequiredError}
52300
52301
  */
52301
52302
  createMachineAccountSubtype: function (sourceId, createMachineAccountSubtypeRequestV2025, xSailPointExperimental, axiosOptions) {
@@ -52371,6 +52372,7 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
52371
52372
  * @param {string} technicalName The technical name of the subtype.
52372
52373
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
52373
52374
  * @param {*} [axiosOptions] Override http request option.
52375
+ * @deprecated
52374
52376
  * @throws {RequiredError}
52375
52377
  */
52376
52378
  deleteMachineAccountSubtype: function (sourceId, technicalName, xSailPointExperimental, axiosOptions) {
@@ -52497,6 +52499,7 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
52497
52499
  * @param {string} subtypeId The ID of the machine account subtype.
52498
52500
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
52499
52501
  * @param {*} [axiosOptions] Override http request option.
52502
+ * @deprecated
52500
52503
  * @throws {RequiredError}
52501
52504
  */
52502
52505
  getMachineAccountSubtypeById: function (subtypeId, xSailPointExperimental, axiosOptions) {
@@ -52568,6 +52571,7 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
52568
52571
  * @param {string} technicalName The technical name of the subtype.
52569
52572
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
52570
52573
  * @param {*} [axiosOptions] Override http request option.
52574
+ * @deprecated
52571
52575
  * @throws {RequiredError}
52572
52576
  */
52573
52577
  getMachineAccountSubtypeByTechnicalName: function (sourceId, technicalName, xSailPointExperimental, axiosOptions) {
@@ -52646,6 +52650,7 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
52646
52650
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
52647
52651
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
52648
52652
  * @param {*} [axiosOptions] Override http request option.
52653
+ * @deprecated
52649
52654
  * @throws {RequiredError}
52650
52655
  */
52651
52656
  listMachineAccountSubtypes: function (sourceId, filters, sorters, xSailPointExperimental, count, limit, offset, axiosOptions) {
@@ -52802,6 +52807,7 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
52802
52807
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
52803
52808
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
52804
52809
  * @param {*} [axiosOptions] Override http request option.
52810
+ * @deprecated
52805
52811
  * @throws {RequiredError}
52806
52812
  */
52807
52813
  patchMachineAccountSubtype: function (sourceId, technicalName, requestBody, xSailPointExperimental, axiosOptions) {
@@ -52958,6 +52964,7 @@ var MachineAccountsV2025ApiFp = function (configuration) {
52958
52964
  * @param {CreateMachineAccountSubtypeRequestV2025} createMachineAccountSubtypeRequestV2025
52959
52965
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
52960
52966
  * @param {*} [axiosOptions] Override http request option.
52967
+ * @deprecated
52961
52968
  * @throws {RequiredError}
52962
52969
  */
52963
52970
  createMachineAccountSubtype: function (sourceId, createMachineAccountSubtypeRequestV2025, xSailPointExperimental, axiosOptions) {
@@ -52983,6 +52990,7 @@ var MachineAccountsV2025ApiFp = function (configuration) {
52983
52990
  * @param {string} technicalName The technical name of the subtype.
52984
52991
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
52985
52992
  * @param {*} [axiosOptions] Override http request option.
52993
+ * @deprecated
52986
52994
  * @throws {RequiredError}
52987
52995
  */
52988
52996
  deleteMachineAccountSubtype: function (sourceId, technicalName, xSailPointExperimental, axiosOptions) {
@@ -53030,6 +53038,7 @@ var MachineAccountsV2025ApiFp = function (configuration) {
53030
53038
  * @param {string} subtypeId The ID of the machine account subtype.
53031
53039
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
53032
53040
  * @param {*} [axiosOptions] Override http request option.
53041
+ * @deprecated
53033
53042
  * @throws {RequiredError}
53034
53043
  */
53035
53044
  getMachineAccountSubtypeById: function (subtypeId, xSailPointExperimental, axiosOptions) {
@@ -53055,6 +53064,7 @@ var MachineAccountsV2025ApiFp = function (configuration) {
53055
53064
  * @param {string} technicalName The technical name of the subtype.
53056
53065
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
53057
53066
  * @param {*} [axiosOptions] Override http request option.
53067
+ * @deprecated
53058
53068
  * @throws {RequiredError}
53059
53069
  */
53060
53070
  getMachineAccountSubtypeByTechnicalName: function (sourceId, technicalName, xSailPointExperimental, axiosOptions) {
@@ -53084,6 +53094,7 @@ var MachineAccountsV2025ApiFp = function (configuration) {
53084
53094
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
53085
53095
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
53086
53096
  * @param {*} [axiosOptions] Override http request option.
53097
+ * @deprecated
53087
53098
  * @throws {RequiredError}
53088
53099
  */
53089
53100
  listMachineAccountSubtypes: function (sourceId, filters, sorters, xSailPointExperimental, count, limit, offset, axiosOptions) {
@@ -53137,6 +53148,7 @@ var MachineAccountsV2025ApiFp = function (configuration) {
53137
53148
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
53138
53149
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
53139
53150
  * @param {*} [axiosOptions] Override http request option.
53151
+ * @deprecated
53140
53152
  * @throws {RequiredError}
53141
53153
  */
53142
53154
  patchMachineAccountSubtype: function (sourceId, technicalName, requestBody, xSailPointExperimental, axiosOptions) {
@@ -53194,6 +53206,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
53194
53206
  * @summary Create subtype
53195
53207
  * @param {MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
53196
53208
  * @param {*} [axiosOptions] Override http request option.
53209
+ * @deprecated
53197
53210
  * @throws {RequiredError}
53198
53211
  */
53199
53212
  createMachineAccountSubtype: function (requestParameters, axiosOptions) {
@@ -53204,6 +53217,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
53204
53217
  * @summary Delete subtype
53205
53218
  * @param {MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
53206
53219
  * @param {*} [axiosOptions] Override http request option.
53220
+ * @deprecated
53207
53221
  * @throws {RequiredError}
53208
53222
  */
53209
53223
  deleteMachineAccountSubtype: function (requestParameters, axiosOptions) {
@@ -53224,6 +53238,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
53224
53238
  * @summary Retrieve subtype by subtype id
53225
53239
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
53226
53240
  * @param {*} [axiosOptions] Override http request option.
53241
+ * @deprecated
53227
53242
  * @throws {RequiredError}
53228
53243
  */
53229
53244
  getMachineAccountSubtypeById: function (requestParameters, axiosOptions) {
@@ -53234,6 +53249,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
53234
53249
  * @summary Retrieve subtype by source and technicalName
53235
53250
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
53236
53251
  * @param {*} [axiosOptions] Override http request option.
53252
+ * @deprecated
53237
53253
  * @throws {RequiredError}
53238
53254
  */
53239
53255
  getMachineAccountSubtypeByTechnicalName: function (requestParameters, axiosOptions) {
@@ -53244,6 +53260,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
53244
53260
  * @summary Retrieve all subtypes by source
53245
53261
  * @param {MachineAccountsV2025ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
53246
53262
  * @param {*} [axiosOptions] Override http request option.
53263
+ * @deprecated
53247
53264
  * @throws {RequiredError}
53248
53265
  */
53249
53266
  listMachineAccountSubtypes: function (requestParameters, axiosOptions) {
@@ -53265,6 +53282,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
53265
53282
  * @summary Patch subtype
53266
53283
  * @param {MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
53267
53284
  * @param {*} [axiosOptions] Override http request option.
53285
+ * @deprecated
53268
53286
  * @throws {RequiredError}
53269
53287
  */
53270
53288
  patchMachineAccountSubtype: function (requestParameters, axiosOptions) {
@@ -53299,6 +53317,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
53299
53317
  * @summary Create subtype
53300
53318
  * @param {MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
53301
53319
  * @param {*} [axiosOptions] Override http request option.
53320
+ * @deprecated
53302
53321
  * @throws {RequiredError}
53303
53322
  * @memberof MachineAccountsV2025Api
53304
53323
  */
@@ -53311,6 +53330,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
53311
53330
  * @summary Delete subtype
53312
53331
  * @param {MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
53313
53332
  * @param {*} [axiosOptions] Override http request option.
53333
+ * @deprecated
53314
53334
  * @throws {RequiredError}
53315
53335
  * @memberof MachineAccountsV2025Api
53316
53336
  */
@@ -53335,6 +53355,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
53335
53355
  * @summary Retrieve subtype by subtype id
53336
53356
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
53337
53357
  * @param {*} [axiosOptions] Override http request option.
53358
+ * @deprecated
53338
53359
  * @throws {RequiredError}
53339
53360
  * @memberof MachineAccountsV2025Api
53340
53361
  */
@@ -53347,6 +53368,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
53347
53368
  * @summary Retrieve subtype by source and technicalName
53348
53369
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
53349
53370
  * @param {*} [axiosOptions] Override http request option.
53371
+ * @deprecated
53350
53372
  * @throws {RequiredError}
53351
53373
  * @memberof MachineAccountsV2025Api
53352
53374
  */
@@ -53359,6 +53381,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
53359
53381
  * @summary Retrieve all subtypes by source
53360
53382
  * @param {MachineAccountsV2025ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
53361
53383
  * @param {*} [axiosOptions] Override http request option.
53384
+ * @deprecated
53362
53385
  * @throws {RequiredError}
53363
53386
  * @memberof MachineAccountsV2025Api
53364
53387
  */
@@ -53384,6 +53407,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
53384
53407
  * @summary Patch subtype
53385
53408
  * @param {MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
53386
53409
  * @param {*} [axiosOptions] Override http request option.
53410
+ * @deprecated
53387
53411
  * @throws {RequiredError}
53388
53412
  * @memberof MachineAccountsV2025Api
53389
53413
  */