sailpoint-api-client 1.8.13 → 1.8.15

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.
package/v2026/api.ts CHANGED
@@ -5234,19 +5234,6 @@ export interface AccountCreatedV2026 {
5234
5234
  */
5235
5235
  'identity': IdentityReference1V2026;
5236
5236
  }
5237
- /**
5238
- * Asynchronous response containing a unique tracking ID for the account deletion request
5239
- * @export
5240
- * @interface AccountDeleteAsyncResultV2026
5241
- */
5242
- export interface AccountDeleteAsyncResultV2026 {
5243
- /**
5244
- * Id of the deletion request
5245
- * @type {string}
5246
- * @memberof AccountDeleteAsyncResultV2026
5247
- */
5248
- 'accountRequestId': string;
5249
- }
5250
5237
  /**
5251
5238
  * detailed information about account delete approval config
5252
5239
  * @export
@@ -5584,6 +5571,101 @@ export interface AccountItemRefV2026 {
5584
5571
  */
5585
5572
  'nativeIdentity'?: string;
5586
5573
  }
5574
+ /**
5575
+ * Asynchronous response containing a unique tracking ID for the account request
5576
+ * @export
5577
+ * @interface AccountRequestAsyncResultV2026
5578
+ */
5579
+ export interface AccountRequestAsyncResultV2026 {
5580
+ /**
5581
+ * Id of the account request
5582
+ * @type {string}
5583
+ * @memberof AccountRequestAsyncResultV2026
5584
+ */
5585
+ 'accountRequestId': string;
5586
+ }
5587
+ /**
5588
+ *
5589
+ * @export
5590
+ * @interface AccountRequestDetailsDtoRequesterV2026
5591
+ */
5592
+ export interface AccountRequestDetailsDtoRequesterV2026 {
5593
+ /**
5594
+ *
5595
+ * @type {DtoTypeV2026}
5596
+ * @memberof AccountRequestDetailsDtoRequesterV2026
5597
+ */
5598
+ 'type'?: DtoTypeV2026;
5599
+ /**
5600
+ * ID of the object to which this reference applies
5601
+ * @type {string}
5602
+ * @memberof AccountRequestDetailsDtoRequesterV2026
5603
+ */
5604
+ 'id'?: string;
5605
+ /**
5606
+ * Human-readable display name of the object to which this reference applies
5607
+ * @type {string}
5608
+ * @memberof AccountRequestDetailsDtoRequesterV2026
5609
+ */
5610
+ 'name'?: string;
5611
+ }
5612
+
5613
+
5614
+ /**
5615
+ * Represents a request to create a machine account.
5616
+ * @export
5617
+ * @interface AccountRequestDetailsDtoV2026
5618
+ */
5619
+ export interface AccountRequestDetailsDtoV2026 {
5620
+ /**
5621
+ * Account request ID.
5622
+ * @type {string}
5623
+ * @memberof AccountRequestDetailsDtoV2026
5624
+ */
5625
+ 'accountRequestId'?: string;
5626
+ /**
5627
+ * Type of the account request.
5628
+ * @type {string}
5629
+ * @memberof AccountRequestDetailsDtoV2026
5630
+ */
5631
+ 'requestType'?: string;
5632
+ /**
5633
+ * Machine account creation request creation date and time.
5634
+ * @type {string}
5635
+ * @memberof AccountRequestDetailsDtoV2026
5636
+ */
5637
+ 'createdAt'?: string;
5638
+ /**
5639
+ * Machine account creation request completion date and time.
5640
+ * @type {string}
5641
+ * @memberof AccountRequestDetailsDtoV2026
5642
+ */
5643
+ 'completedAt'?: string | null;
5644
+ /**
5645
+ * Overall status of the creation request.
5646
+ * @type {string}
5647
+ * @memberof AccountRequestDetailsDtoV2026
5648
+ */
5649
+ 'overallStatus'?: string;
5650
+ /**
5651
+ *
5652
+ * @type {AccountRequestDetailsDtoRequesterV2026}
5653
+ * @memberof AccountRequestDetailsDtoV2026
5654
+ */
5655
+ 'requester'?: AccountRequestDetailsDtoRequesterV2026;
5656
+ /**
5657
+ * List of account request phases.
5658
+ * @type {Array<AccountRequestPhaseV2026>}
5659
+ * @memberof AccountRequestDetailsDtoV2026
5660
+ */
5661
+ 'accountRequestPhases'?: Array<AccountRequestPhaseV2026>;
5662
+ /**
5663
+ * Detailed error information.
5664
+ * @type {string}
5665
+ * @memberof AccountRequestDetailsDtoV2026
5666
+ */
5667
+ 'errorDetails'?: string | null;
5668
+ }
5587
5669
  /**
5588
5670
  * If an account activity item is associated with an access request, captures details of that request.
5589
5671
  * @export
@@ -5623,7 +5705,8 @@ export const AccountRequestPhaseStateV2026 = {
5623
5705
  Approved: 'APPROVED',
5624
5706
  Rejected: 'REJECTED',
5625
5707
  Passed: 'PASSED',
5626
- Failed: 'FAILED'
5708
+ Failed: 'FAILED',
5709
+ NotStarted: 'NOT_STARTED'
5627
5710
  } as const;
5628
5711
 
5629
5712
  export type AccountRequestPhaseStateV2026 = typeof AccountRequestPhaseStateV2026[keyof typeof AccountRequestPhaseStateV2026];
@@ -27751,86 +27834,218 @@ export interface LowerV2026 {
27751
27834
  */
27752
27835
  'input'?: { [key: string]: any; };
27753
27836
  }
27837
+ /**
27838
+ *
27839
+ * @export
27840
+ * @interface MachineAccountCreateAccessDtoSubtypesInnerV2026
27841
+ */
27842
+ export interface MachineAccountCreateAccessDtoSubtypesInnerV2026 {
27843
+ /**
27844
+ * Subtype ID.
27845
+ * @type {string}
27846
+ * @memberof MachineAccountCreateAccessDtoSubtypesInnerV2026
27847
+ */
27848
+ 'subtypeId'?: string;
27849
+ /**
27850
+ * Entitlement ID.
27851
+ * @type {string}
27852
+ * @memberof MachineAccountCreateAccessDtoSubtypesInnerV2026
27853
+ */
27854
+ 'entitlementId'?: string;
27855
+ /**
27856
+ * Subtype display name.
27857
+ * @type {string}
27858
+ * @memberof MachineAccountCreateAccessDtoSubtypesInnerV2026
27859
+ */
27860
+ 'subtypeDisplayName'?: string;
27861
+ /**
27862
+ * Subtype technical name.
27863
+ * @type {string}
27864
+ * @memberof MachineAccountCreateAccessDtoSubtypesInnerV2026
27865
+ */
27866
+ 'subtypeTechnicalName'?: string;
27867
+ }
27868
+ /**
27869
+ * A summary endpoint which returns list of sources and subtypes for which user has an entitlement to request machine accounts.
27870
+ * @export
27871
+ * @interface MachineAccountCreateAccessDtoV2026
27872
+ */
27873
+ export interface MachineAccountCreateAccessDtoV2026 {
27874
+ /**
27875
+ * Source ID.
27876
+ * @type {string}
27877
+ * @memberof MachineAccountCreateAccessDtoV2026
27878
+ */
27879
+ 'sourceId'?: string;
27880
+ /**
27881
+ * Source name.
27882
+ * @type {string}
27883
+ * @memberof MachineAccountCreateAccessDtoV2026
27884
+ */
27885
+ 'sourceName'?: string;
27886
+ /**
27887
+ * List of subtypes for which the user has an entitlement to request machine accounts.
27888
+ * @type {Array<MachineAccountCreateAccessDtoSubtypesInnerV2026>}
27889
+ * @memberof MachineAccountCreateAccessDtoV2026
27890
+ */
27891
+ 'subtypes'?: Array<MachineAccountCreateAccessDtoSubtypesInnerV2026>;
27892
+ }
27893
+ /**
27894
+ * Contains the required information for processing a user-initiated machine account creation request.
27895
+ * @export
27896
+ * @interface MachineAccountCreateRequestInputV2026
27897
+ */
27898
+ export interface MachineAccountCreateRequestInputV2026 {
27899
+ /**
27900
+ * Subtype ID for which machine account create is enabled and user have the entitlement to create the machine account.
27901
+ * @type {string}
27902
+ * @memberof MachineAccountCreateRequestInputV2026
27903
+ */
27904
+ 'subtypeId': string;
27905
+ /**
27906
+ * Form ID selected by user for the machine account create request.
27907
+ * @type {string}
27908
+ * @memberof MachineAccountCreateRequestInputV2026
27909
+ */
27910
+ 'formId'?: string;
27911
+ /**
27912
+ * Owner Identity ID. This identity will be assigned as an owner of the created machine account.
27913
+ * @type {string}
27914
+ * @memberof MachineAccountCreateRequestInputV2026
27915
+ */
27916
+ 'ownerIdentityId': string;
27917
+ /**
27918
+ * Machine identity to correlate with the created machine account. If not provided, a new machine identity will be created.
27919
+ * @type {string}
27920
+ * @memberof MachineAccountCreateRequestInputV2026
27921
+ */
27922
+ 'machineIdentityId'?: string | null;
27923
+ /**
27924
+ * Environment type to use for the machine account.
27925
+ * @type {string}
27926
+ * @memberof MachineAccountCreateRequestInputV2026
27927
+ */
27928
+ 'environment'?: string;
27929
+ /**
27930
+ * Description for the machine account.
27931
+ * @type {string}
27932
+ * @memberof MachineAccountCreateRequestInputV2026
27933
+ */
27934
+ 'description'?: string;
27935
+ /**
27936
+ * Fields of the form linked to the subtype in approval settings.
27937
+ * @type {object}
27938
+ * @memberof MachineAccountCreateRequestInputV2026
27939
+ */
27940
+ 'userInput'?: object;
27941
+ /**
27942
+ * List of entitlement IDs to provision for created machine account.
27943
+ * @type {Array<string>}
27944
+ * @memberof MachineAccountCreateRequestInputV2026
27945
+ */
27946
+ 'entitlementIds'?: Array<string>;
27947
+ }
27754
27948
  /**
27755
27949
  * Configuration options for machine account creation, including whether creation is enabled, if approval is required, associated form and entitlement IDs, and detailed approval settings such as approvers and allowed comment types.
27756
27950
  * @export
27757
- * @interface MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
27951
+ * @interface MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
27758
27952
  */
27759
- export interface MachineAccountSubTypeConfigDtoMachineAccountCreateV2026 {
27953
+ export interface MachineAccountSubtypeConfigDtoMachineAccountCreateV2026 {
27760
27954
  /**
27761
27955
  * Specifies if the creation of machine accounts is allowed for this subtype.
27762
27956
  * @type {boolean}
27763
- * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
27957
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
27764
27958
  */
27765
27959
  'accountCreateEnabled'?: boolean;
27766
27960
  /**
27767
- * Specifies if approval is needed before a machine account can be created for this subtype.
27961
+ * Specifies if approval is required for machine account creation requests for this subtype.
27768
27962
  * @type {boolean}
27769
- * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
27963
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
27770
27964
  */
27771
27965
  'approvalRequired'?: boolean;
27772
27966
  /**
27773
- * formId
27967
+ * Id of the form linked to subtype.
27774
27968
  * @type {string}
27775
- * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
27969
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
27776
27970
  */
27777
27971
  'formId'?: string;
27778
27972
  /**
27779
- * Configuration details specifying who can approve machine account creation requests and the types of comments allowed during the approval process.
27973
+ * Id of the system created entitlement entitlement upon enabling account creation for this subtype.
27780
27974
  * @type {string}
27781
- * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
27975
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
27782
27976
  */
27783
27977
  'entitlementId'?: string;
27978
+ /**
27979
+ * This is required before enabling the account creation to true. Default value will be null.
27980
+ * @type {string}
27981
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
27982
+ */
27983
+ 'passwordSetting'?: MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026;
27984
+ /**
27985
+ * Name of the account attribute from the source\'s schema or new custom attribute to use when password settings is enabled.
27986
+ * @type {string}
27987
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
27988
+ */
27989
+ 'passwordAttribute'?: string;
27784
27990
  /**
27785
27991
  *
27786
- * @type {ApprovalConfigV2026}
27787
- * @memberof MachineAccountSubTypeConfigDtoMachineAccountCreateV2026
27992
+ * @type {MachineSubtypeApprovalConfigV2026}
27993
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
27788
27994
  */
27789
- 'approvalConfig'?: ApprovalConfigV2026;
27995
+ 'approvalConfig'?: MachineSubtypeApprovalConfigV2026;
27790
27996
  }
27997
+
27998
+ export const MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026 = {
27999
+ DoNotSetPassword: 'DO_NOT_SET_PASSWORD',
28000
+ SetToExistingAttribute: 'SET_TO_EXISTING_ATTRIBUTE',
28001
+ SetToNewAttribute: 'SET_TO_NEW_ATTRIBUTE'
28002
+ } as const;
28003
+
28004
+ export type MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026 = typeof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026[keyof typeof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026];
28005
+
27791
28006
  /**
27792
28007
  * Configuration options for machine account deletion, including whether approval is required, the list of authorized approvers, and the types of comments permitted during the approval workflow.
27793
28008
  * @export
27794
- * @interface MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026
28009
+ * @interface MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026
27795
28010
  */
27796
- export interface MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026 {
28011
+ export interface MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026 {
27797
28012
  /**
27798
28013
  * Indicates whether approval is required for an account deletion request.
27799
28014
  * @type {boolean}
27800
- * @memberof MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026
28015
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026
27801
28016
  */
27802
28017
  'approvalRequired'?: boolean;
27803
28018
  /**
27804
28019
  *
27805
- * @type {ApprovalConfigV2026}
27806
- * @memberof MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026
28020
+ * @type {MachineSubtypeApprovalConfigV2026}
28021
+ * @memberof MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026
27807
28022
  */
27808
- 'approvalConfig'?: ApprovalConfigV2026;
28023
+ 'approvalConfig'?: MachineSubtypeApprovalConfigV2026;
27809
28024
  }
27810
28025
  /**
27811
28026
  * Contains comprehensive configuration details for machine account subtype approval, including creation and deletion approval requirements, approver lists, form and entitlement references, and approval status options.
27812
28027
  * @export
27813
- * @interface MachineAccountSubTypeConfigDtoV2026
28028
+ * @interface MachineAccountSubtypeConfigDtoV2026
27814
28029
  */
27815
- export interface MachineAccountSubTypeConfigDtoV2026 {
28030
+ export interface MachineAccountSubtypeConfigDtoV2026 {
27816
28031
  /**
27817
28032
  * Unique identifier representing the specific subtype of the machine account, used to distinguish between different machine account categories.
27818
28033
  * @type {string}
27819
- * @memberof MachineAccountSubTypeConfigDtoV2026
28034
+ * @memberof MachineAccountSubtypeConfigDtoV2026
27820
28035
  */
27821
28036
  'subtypeId'?: string;
27822
28037
  /**
27823
28038
  *
27824
- * @type {MachineAccountSubTypeConfigDtoMachineAccountCreateV2026}
27825
- * @memberof MachineAccountSubTypeConfigDtoV2026
28039
+ * @type {MachineAccountSubtypeConfigDtoMachineAccountCreateV2026}
28040
+ * @memberof MachineAccountSubtypeConfigDtoV2026
27826
28041
  */
27827
- 'machineAccountCreate'?: MachineAccountSubTypeConfigDtoMachineAccountCreateV2026;
28042
+ 'machineAccountCreate'?: MachineAccountSubtypeConfigDtoMachineAccountCreateV2026;
27828
28043
  /**
27829
28044
  *
27830
- * @type {MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026}
27831
- * @memberof MachineAccountSubTypeConfigDtoV2026
28045
+ * @type {MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026}
28046
+ * @memberof MachineAccountSubtypeConfigDtoV2026
27832
28047
  */
27833
- 'machineAccountDelete'?: MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026;
28048
+ 'machineAccountDelete'?: MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026;
27834
28049
  }
27835
28050
  /**
27836
28051
  *
@@ -29418,6 +29633,25 @@ export interface MachineIdentityV2026 {
29418
29633
  */
29419
29634
  'uuid'?: string;
29420
29635
  }
29636
+ /**
29637
+ *
29638
+ * @export
29639
+ * @interface MachineSubtypeApprovalConfigV2026
29640
+ */
29641
+ export interface MachineSubtypeApprovalConfigV2026 {
29642
+ /**
29643
+ * Comma separated string of approvers. Following are the options for approver types: manager, sourceOwner, accountOwner, workgroup:{workgroupId} (Governance group). Approval request will be assigned based on the order of the approvers passed. Multiple workgroups(governance groups) can be selected as an approver. >**Note:** accountOwner approver type is only for machine account delete approval settings.
29644
+ * @type {string}
29645
+ * @memberof MachineSubtypeApprovalConfigV2026
29646
+ */
29647
+ 'approvers'?: string;
29648
+ /**
29649
+ * Comment configurations for the approval request. Following are the options for comments: ALL, OFF, APPROVAL, REJECT.
29650
+ * @type {string}
29651
+ * @memberof MachineSubtypeApprovalConfigV2026
29652
+ */
29653
+ 'comments'?: string;
29654
+ }
29421
29655
  /**
29422
29656
  * MAIL FROM attributes for a domain / identity
29423
29657
  * @export
@@ -47596,6 +47830,99 @@ export interface SourceSubtypeV2026 {
47596
47830
  */
47597
47831
  'type'?: string;
47598
47832
  }
47833
+ /**
47834
+ * Source reference of the subtype.
47835
+ * @export
47836
+ * @interface SourceSubtypeWithSourceSourceV2026
47837
+ */
47838
+ export interface SourceSubtypeWithSourceSourceV2026 {
47839
+ /**
47840
+ * Type of the reference object.
47841
+ * @type {string}
47842
+ * @memberof SourceSubtypeWithSourceSourceV2026
47843
+ */
47844
+ 'type'?: SourceSubtypeWithSourceSourceV2026TypeV2026;
47845
+ /**
47846
+ * Unique identifier for the source.
47847
+ * @type {string}
47848
+ * @memberof SourceSubtypeWithSourceSourceV2026
47849
+ */
47850
+ 'id'?: string;
47851
+ /**
47852
+ * Name of the source.
47853
+ * @type {string}
47854
+ * @memberof SourceSubtypeWithSourceSourceV2026
47855
+ */
47856
+ 'name'?: string;
47857
+ }
47858
+
47859
+ export const SourceSubtypeWithSourceSourceV2026TypeV2026 = {
47860
+ Source: 'SOURCE'
47861
+ } as const;
47862
+
47863
+ export type SourceSubtypeWithSourceSourceV2026TypeV2026 = typeof SourceSubtypeWithSourceSourceV2026TypeV2026[keyof typeof SourceSubtypeWithSourceSourceV2026TypeV2026];
47864
+
47865
+ /**
47866
+ *
47867
+ * @export
47868
+ * @interface SourceSubtypeWithSourceV2026
47869
+ */
47870
+ export interface SourceSubtypeWithSourceV2026 {
47871
+ /**
47872
+ * Unique identifier for the subtype.
47873
+ * @type {string}
47874
+ * @memberof SourceSubtypeWithSourceV2026
47875
+ */
47876
+ 'id'?: string;
47877
+ /**
47878
+ * The ID of the source.
47879
+ * @type {string}
47880
+ * @memberof SourceSubtypeWithSourceV2026
47881
+ */
47882
+ 'sourceId'?: string;
47883
+ /**
47884
+ * Technical name of the subtype.
47885
+ * @type {string}
47886
+ * @memberof SourceSubtypeWithSourceV2026
47887
+ */
47888
+ 'technicalName'?: string;
47889
+ /**
47890
+ * Display name of the subtype.
47891
+ * @type {string}
47892
+ * @memberof SourceSubtypeWithSourceV2026
47893
+ */
47894
+ 'displayName'?: string;
47895
+ /**
47896
+ * Description of the subtype.
47897
+ * @type {string}
47898
+ * @memberof SourceSubtypeWithSourceV2026
47899
+ */
47900
+ 'description'?: string;
47901
+ /**
47902
+ * Creation timestamp.
47903
+ * @type {string}
47904
+ * @memberof SourceSubtypeWithSourceV2026
47905
+ */
47906
+ 'created'?: string;
47907
+ /**
47908
+ * Last modified timestamp.
47909
+ * @type {string}
47910
+ * @memberof SourceSubtypeWithSourceV2026
47911
+ */
47912
+ 'modified'?: string;
47913
+ /**
47914
+ * Type of the subtype. Either MACHINE OR null.
47915
+ * @type {string}
47916
+ * @memberof SourceSubtypeWithSourceV2026
47917
+ */
47918
+ 'type'?: string;
47919
+ /**
47920
+ *
47921
+ * @type {SourceSubtypeWithSourceSourceV2026}
47922
+ * @memberof SourceSubtypeWithSourceV2026
47923
+ */
47924
+ 'source'?: SourceSubtypeWithSourceSourceV2026;
47925
+ }
47599
47926
  /**
47600
47927
  *
47601
47928
  * @export
@@ -59120,7 +59447,7 @@ export const AccountDeletionRequestsV2026ApiFp = function(configuration?: Config
59120
59447
  * @param {*} [axiosOptions] Override http request option.
59121
59448
  * @throws {RequiredError}
59122
59449
  */
59123
- async deleteAccountRequest(accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteAsyncResultV2026>> {
59450
+ async deleteAccountRequest(accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>> {
59124
59451
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAccountRequest(accountId, accountDeleteRequestInputV2026, axiosOptions);
59125
59452
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
59126
59453
  const localVarOperationServerBasePath = operationServerMap['AccountDeletionRequestsV2026Api.deleteAccountRequest']?.[localVarOperationServerIndex]?.url;
@@ -59159,7 +59486,7 @@ export const AccountDeletionRequestsV2026ApiFactory = function (configuration?:
59159
59486
  * @param {*} [axiosOptions] Override http request option.
59160
59487
  * @throws {RequiredError}
59161
59488
  */
59162
- deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteAsyncResultV2026> {
59489
+ deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026> {
59163
59490
  return localVarFp.deleteAccountRequest(requestParameters.accountId, requestParameters.accountDeleteRequestInputV2026, axiosOptions).then((request) => request(axios, basePath));
59164
59491
  },
59165
59492
  /**
@@ -103067,7 +103394,7 @@ export const MachineAccountClassifyV2026ApiAxiosParamCreator = function (configu
103067
103394
  return {
103068
103395
  /**
103069
103396
  * Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103070
- * @summary Classify a Single Machine Account
103397
+ * @summary Classify single machine account
103071
103398
  * @param {string} id Account ID.
103072
103399
  * @param {SendClassifyMachineAccountClassificationModeV2026} [classificationMode] Specifies how the accounts should be classified. default - uses criteria to classify account as machine or human, excludes accounts that were manually classified. ignoreManual - like default, but includes accounts that were manually classified. forceMachine - forces account to be classified as machine. forceHuman - forces account to be classified as human.
103073
103400
  * @param {*} [axiosOptions] Override http request option.
@@ -103128,7 +103455,7 @@ export const MachineAccountClassifyV2026ApiFp = function(configuration?: Configu
103128
103455
  return {
103129
103456
  /**
103130
103457
  * Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103131
- * @summary Classify a Single Machine Account
103458
+ * @summary Classify single machine account
103132
103459
  * @param {string} id Account ID.
103133
103460
  * @param {SendClassifyMachineAccountClassificationModeV2026} [classificationMode] Specifies how the accounts should be classified. default - uses criteria to classify account as machine or human, excludes accounts that were manually classified. ignoreManual - like default, but includes accounts that were manually classified. forceMachine - forces account to be classified as machine. forceHuman - forces account to be classified as human.
103134
103461
  * @param {*} [axiosOptions] Override http request option.
@@ -103152,7 +103479,7 @@ export const MachineAccountClassifyV2026ApiFactory = function (configuration?: C
103152
103479
  return {
103153
103480
  /**
103154
103481
  * Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103155
- * @summary Classify a Single Machine Account
103482
+ * @summary Classify single machine account
103156
103483
  * @param {MachineAccountClassifyV2026ApiSendClassifyMachineAccountRequest} requestParameters Request parameters.
103157
103484
  * @param {*} [axiosOptions] Override http request option.
103158
103485
  * @throws {RequiredError}
@@ -103193,7 +103520,7 @@ export interface MachineAccountClassifyV2026ApiSendClassifyMachineAccountRequest
103193
103520
  export class MachineAccountClassifyV2026Api extends BaseAPI {
103194
103521
  /**
103195
103522
  * Use this API to classify a single machine account. A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103196
- * @summary Classify a Single Machine Account
103523
+ * @summary Classify single machine account
103197
103524
  * @param {MachineAccountClassifyV2026ApiSendClassifyMachineAccountRequest} requestParameters Request parameters.
103198
103525
  * @param {*} [axiosOptions] Override http request option.
103199
103526
  * @throws {RequiredError}
@@ -103216,6 +103543,386 @@ export const SendClassifyMachineAccountClassificationModeV2026 = {
103216
103543
  export type SendClassifyMachineAccountClassificationModeV2026 = typeof SendClassifyMachineAccountClassificationModeV2026[keyof typeof SendClassifyMachineAccountClassificationModeV2026];
103217
103544
 
103218
103545
 
103546
+ /**
103547
+ * MachineAccountCreationRequestV2026Api - axios parameter creator
103548
+ * @export
103549
+ */
103550
+ export const MachineAccountCreationRequestV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
103551
+ return {
103552
+ /**
103553
+ * Initiates machine account creation request for the specified subtype. This method validates the input data, processes the machine account creation request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only request a machine accounts on subtype for which you have a create machine account entitlement provisioned.**
103554
+ * @summary Submit Machine Account Creation Request
103555
+ * @param {MachineAccountCreateRequestInputV2026} machineAccountCreateRequestInputV2026
103556
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
103557
+ * @param {*} [axiosOptions] Override http request option.
103558
+ * @throws {RequiredError}
103559
+ */
103560
+ createMachineAccountRequest: async (machineAccountCreateRequestInputV2026: MachineAccountCreateRequestInputV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103561
+ // verify required parameter 'machineAccountCreateRequestInputV2026' is not null or undefined
103562
+ assertParamExists('createMachineAccountRequest', 'machineAccountCreateRequestInputV2026', machineAccountCreateRequestInputV2026)
103563
+ if (xSailPointExperimental === undefined) {
103564
+ xSailPointExperimental = 'true';
103565
+ }
103566
+
103567
+ const localVarPath = `/account-requests/machine-account-create`;
103568
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
103569
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103570
+ let baseOptions;
103571
+ if (configuration) {
103572
+ baseOptions = configuration.baseOptions;
103573
+ }
103574
+
103575
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
103576
+ const localVarHeaderParameter = {} as any;
103577
+ const localVarQueryParameter = {} as any;
103578
+
103579
+ // authentication userAuth required
103580
+ // oauth required
103581
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103582
+
103583
+ // authentication userAuth required
103584
+ // oauth required
103585
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103586
+
103587
+
103588
+
103589
+ localVarHeaderParameter['Content-Type'] = 'application/json';
103590
+
103591
+ if (xSailPointExperimental != null) {
103592
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
103593
+ }
103594
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
103595
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103596
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103597
+ localVarRequestOptions.data = serializeDataIfNeeded(machineAccountCreateRequestInputV2026, localVarRequestOptions, configuration)
103598
+
103599
+ return {
103600
+ url: toPathString(localVarUrlObj),
103601
+ axiosOptions: localVarRequestOptions,
103602
+ };
103603
+ },
103604
+ /**
103605
+ * Retrieves a account request details for machine account creation. This allows the user to view all details for given account request.
103606
+ * @summary Get Machine Account Creation Request
103607
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
103608
+ * @param {string} accountRequestId Account Request ID
103609
+ * @param {*} [axiosOptions] Override http request option.
103610
+ * @throws {RequiredError}
103611
+ */
103612
+ getCreateMachineAccountRequest: async (xSailPointExperimental: string, accountRequestId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103613
+ if (xSailPointExperimental === undefined) {
103614
+ xSailPointExperimental = 'true';
103615
+ }
103616
+
103617
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
103618
+ assertParamExists('getCreateMachineAccountRequest', 'xSailPointExperimental', xSailPointExperimental)
103619
+ // verify required parameter 'accountRequestId' is not null or undefined
103620
+ assertParamExists('getCreateMachineAccountRequest', 'accountRequestId', accountRequestId)
103621
+ const localVarPath = `/account-requests/machine-account-create/{accountRequestId}`
103622
+ .replace(`{${"accountRequestId"}}`, encodeURIComponent(String(accountRequestId)));
103623
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
103624
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103625
+ let baseOptions;
103626
+ if (configuration) {
103627
+ baseOptions = configuration.baseOptions;
103628
+ }
103629
+
103630
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
103631
+ const localVarHeaderParameter = {} as any;
103632
+ const localVarQueryParameter = {} as any;
103633
+
103634
+ // authentication userAuth required
103635
+ // oauth required
103636
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103637
+
103638
+ // authentication userAuth required
103639
+ // oauth required
103640
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103641
+
103642
+
103643
+
103644
+ if (xSailPointExperimental != null) {
103645
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
103646
+ }
103647
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
103648
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103649
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103650
+
103651
+ return {
103652
+ url: toPathString(localVarUrlObj),
103653
+ axiosOptions: localVarRequestOptions,
103654
+ };
103655
+ },
103656
+ /**
103657
+ * This endpoint retrieves the list of sources and subtypes for which logged in user has the entitlement to create a machine account. The response includes a list of object detailing the source, subtype and entitlement details which enables the clients to understand if they can submit the request to create a machine account for the given subtype.
103658
+ * @summary Machine Account Create Access
103659
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
103660
+ * @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
103661
+ * @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
103662
+ * @param {*} [axiosOptions] Override http request option.
103663
+ * @throws {RequiredError}
103664
+ */
103665
+ getMachineAccountCreateAccessInfo: async (xSailPointExperimental: string, offset?: number, limit?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103666
+ if (xSailPointExperimental === undefined) {
103667
+ xSailPointExperimental = 'true';
103668
+ }
103669
+
103670
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
103671
+ assertParamExists('getMachineAccountCreateAccessInfo', 'xSailPointExperimental', xSailPointExperimental)
103672
+ const localVarPath = `/source-subtypes/machine-account-create-access`;
103673
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
103674
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103675
+ let baseOptions;
103676
+ if (configuration) {
103677
+ baseOptions = configuration.baseOptions;
103678
+ }
103679
+
103680
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
103681
+ const localVarHeaderParameter = {} as any;
103682
+ const localVarQueryParameter = {} as any;
103683
+
103684
+ // authentication userAuth required
103685
+ // oauth required
103686
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103687
+
103688
+ // authentication userAuth required
103689
+ // oauth required
103690
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
103691
+
103692
+ if (offset !== undefined) {
103693
+ localVarQueryParameter['offset'] = offset;
103694
+ }
103695
+
103696
+ if (limit !== undefined) {
103697
+ localVarQueryParameter['limit'] = limit;
103698
+ }
103699
+
103700
+
103701
+
103702
+ if (xSailPointExperimental != null) {
103703
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
103704
+ }
103705
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
103706
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103707
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103708
+
103709
+ return {
103710
+ url: toPathString(localVarUrlObj),
103711
+ axiosOptions: localVarRequestOptions,
103712
+ };
103713
+ },
103714
+ }
103715
+ };
103716
+
103717
+ /**
103718
+ * MachineAccountCreationRequestV2026Api - functional programming interface
103719
+ * @export
103720
+ */
103721
+ export const MachineAccountCreationRequestV2026ApiFp = function(configuration?: Configuration) {
103722
+ const localVarAxiosParamCreator = MachineAccountCreationRequestV2026ApiAxiosParamCreator(configuration)
103723
+ return {
103724
+ /**
103725
+ * Initiates machine account creation request for the specified subtype. This method validates the input data, processes the machine account creation request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only request a machine accounts on subtype for which you have a create machine account entitlement provisioned.**
103726
+ * @summary Submit Machine Account Creation Request
103727
+ * @param {MachineAccountCreateRequestInputV2026} machineAccountCreateRequestInputV2026
103728
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
103729
+ * @param {*} [axiosOptions] Override http request option.
103730
+ * @throws {RequiredError}
103731
+ */
103732
+ async createMachineAccountRequest(machineAccountCreateRequestInputV2026: MachineAccountCreateRequestInputV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>> {
103733
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineAccountRequest(machineAccountCreateRequestInputV2026, xSailPointExperimental, axiosOptions);
103734
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103735
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountCreationRequestV2026Api.createMachineAccountRequest']?.[localVarOperationServerIndex]?.url;
103736
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103737
+ },
103738
+ /**
103739
+ * Retrieves a account request details for machine account creation. This allows the user to view all details for given account request.
103740
+ * @summary Get Machine Account Creation Request
103741
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
103742
+ * @param {string} accountRequestId Account Request ID
103743
+ * @param {*} [axiosOptions] Override http request option.
103744
+ * @throws {RequiredError}
103745
+ */
103746
+ async getCreateMachineAccountRequest(xSailPointExperimental: string, accountRequestId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestDetailsDtoV2026>> {
103747
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getCreateMachineAccountRequest(xSailPointExperimental, accountRequestId, axiosOptions);
103748
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103749
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountCreationRequestV2026Api.getCreateMachineAccountRequest']?.[localVarOperationServerIndex]?.url;
103750
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103751
+ },
103752
+ /**
103753
+ * This endpoint retrieves the list of sources and subtypes for which logged in user has the entitlement to create a machine account. The response includes a list of object detailing the source, subtype and entitlement details which enables the clients to understand if they can submit the request to create a machine account for the given subtype.
103754
+ * @summary Machine Account Create Access
103755
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
103756
+ * @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
103757
+ * @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
103758
+ * @param {*} [axiosOptions] Override http request option.
103759
+ * @throws {RequiredError}
103760
+ */
103761
+ async getMachineAccountCreateAccessInfo(xSailPointExperimental: string, offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineAccountCreateAccessDtoV2026>>> {
103762
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountCreateAccessInfo(xSailPointExperimental, offset, limit, axiosOptions);
103763
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103764
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountCreationRequestV2026Api.getMachineAccountCreateAccessInfo']?.[localVarOperationServerIndex]?.url;
103765
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103766
+ },
103767
+ }
103768
+ };
103769
+
103770
+ /**
103771
+ * MachineAccountCreationRequestV2026Api - factory interface
103772
+ * @export
103773
+ */
103774
+ export const MachineAccountCreationRequestV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
103775
+ const localVarFp = MachineAccountCreationRequestV2026ApiFp(configuration)
103776
+ return {
103777
+ /**
103778
+ * Initiates machine account creation request for the specified subtype. This method validates the input data, processes the machine account creation request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only request a machine accounts on subtype for which you have a create machine account entitlement provisioned.**
103779
+ * @summary Submit Machine Account Creation Request
103780
+ * @param {MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest} requestParameters Request parameters.
103781
+ * @param {*} [axiosOptions] Override http request option.
103782
+ * @throws {RequiredError}
103783
+ */
103784
+ createMachineAccountRequest(requestParameters: MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026> {
103785
+ return localVarFp.createMachineAccountRequest(requestParameters.machineAccountCreateRequestInputV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
103786
+ },
103787
+ /**
103788
+ * Retrieves a account request details for machine account creation. This allows the user to view all details for given account request.
103789
+ * @summary Get Machine Account Creation Request
103790
+ * @param {MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest} requestParameters Request parameters.
103791
+ * @param {*} [axiosOptions] Override http request option.
103792
+ * @throws {RequiredError}
103793
+ */
103794
+ getCreateMachineAccountRequest(requestParameters: MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestDetailsDtoV2026> {
103795
+ return localVarFp.getCreateMachineAccountRequest(requestParameters.xSailPointExperimental, requestParameters.accountRequestId, axiosOptions).then((request) => request(axios, basePath));
103796
+ },
103797
+ /**
103798
+ * This endpoint retrieves the list of sources and subtypes for which logged in user has the entitlement to create a machine account. The response includes a list of object detailing the source, subtype and entitlement details which enables the clients to understand if they can submit the request to create a machine account for the given subtype.
103799
+ * @summary Machine Account Create Access
103800
+ * @param {MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest} requestParameters Request parameters.
103801
+ * @param {*} [axiosOptions] Override http request option.
103802
+ * @throws {RequiredError}
103803
+ */
103804
+ getMachineAccountCreateAccessInfo(requestParameters: MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineAccountCreateAccessDtoV2026>> {
103805
+ return localVarFp.getMachineAccountCreateAccessInfo(requestParameters.xSailPointExperimental, requestParameters.offset, requestParameters.limit, axiosOptions).then((request) => request(axios, basePath));
103806
+ },
103807
+ };
103808
+ };
103809
+
103810
+ /**
103811
+ * Request parameters for createMachineAccountRequest operation in MachineAccountCreationRequestV2026Api.
103812
+ * @export
103813
+ * @interface MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest
103814
+ */
103815
+ export interface MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest {
103816
+ /**
103817
+ *
103818
+ * @type {MachineAccountCreateRequestInputV2026}
103819
+ * @memberof MachineAccountCreationRequestV2026ApiCreateMachineAccountRequest
103820
+ */
103821
+ readonly machineAccountCreateRequestInputV2026: MachineAccountCreateRequestInputV2026
103822
+
103823
+ /**
103824
+ * Use this header to enable this experimental API.
103825
+ * @type {string}
103826
+ * @memberof MachineAccountCreationRequestV2026ApiCreateMachineAccountRequest
103827
+ */
103828
+ readonly xSailPointExperimental?: string
103829
+ }
103830
+
103831
+ /**
103832
+ * Request parameters for getCreateMachineAccountRequest operation in MachineAccountCreationRequestV2026Api.
103833
+ * @export
103834
+ * @interface MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest
103835
+ */
103836
+ export interface MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest {
103837
+ /**
103838
+ * Use this header to enable this experimental API.
103839
+ * @type {string}
103840
+ * @memberof MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequest
103841
+ */
103842
+ readonly xSailPointExperimental: string
103843
+
103844
+ /**
103845
+ * Account Request ID
103846
+ * @type {string}
103847
+ * @memberof MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequest
103848
+ */
103849
+ readonly accountRequestId: string
103850
+ }
103851
+
103852
+ /**
103853
+ * Request parameters for getMachineAccountCreateAccessInfo operation in MachineAccountCreationRequestV2026Api.
103854
+ * @export
103855
+ * @interface MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest
103856
+ */
103857
+ export interface MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest {
103858
+ /**
103859
+ * Use this header to enable this experimental API.
103860
+ * @type {string}
103861
+ * @memberof MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfo
103862
+ */
103863
+ readonly xSailPointExperimental: string
103864
+
103865
+ /**
103866
+ * Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
103867
+ * @type {number}
103868
+ * @memberof MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfo
103869
+ */
103870
+ readonly offset?: number
103871
+
103872
+ /**
103873
+ * Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
103874
+ * @type {number}
103875
+ * @memberof MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfo
103876
+ */
103877
+ readonly limit?: number
103878
+ }
103879
+
103880
+ /**
103881
+ * MachineAccountCreationRequestV2026Api - object-oriented interface
103882
+ * @export
103883
+ * @class MachineAccountCreationRequestV2026Api
103884
+ * @extends {BaseAPI}
103885
+ */
103886
+ export class MachineAccountCreationRequestV2026Api extends BaseAPI {
103887
+ /**
103888
+ * Initiates machine account creation request for the specified subtype. This method validates the input data, processes the machine account creation request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only request a machine accounts on subtype for which you have a create machine account entitlement provisioned.**
103889
+ * @summary Submit Machine Account Creation Request
103890
+ * @param {MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest} requestParameters Request parameters.
103891
+ * @param {*} [axiosOptions] Override http request option.
103892
+ * @throws {RequiredError}
103893
+ * @memberof MachineAccountCreationRequestV2026Api
103894
+ */
103895
+ public createMachineAccountRequest(requestParameters: MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig) {
103896
+ return MachineAccountCreationRequestV2026ApiFp(this.configuration).createMachineAccountRequest(requestParameters.machineAccountCreateRequestInputV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
103897
+ }
103898
+
103899
+ /**
103900
+ * Retrieves a account request details for machine account creation. This allows the user to view all details for given account request.
103901
+ * @summary Get Machine Account Creation Request
103902
+ * @param {MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest} requestParameters Request parameters.
103903
+ * @param {*} [axiosOptions] Override http request option.
103904
+ * @throws {RequiredError}
103905
+ * @memberof MachineAccountCreationRequestV2026Api
103906
+ */
103907
+ public getCreateMachineAccountRequest(requestParameters: MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig) {
103908
+ return MachineAccountCreationRequestV2026ApiFp(this.configuration).getCreateMachineAccountRequest(requestParameters.xSailPointExperimental, requestParameters.accountRequestId, axiosOptions).then((request) => request(this.axios, this.basePath));
103909
+ }
103910
+
103911
+ /**
103912
+ * This endpoint retrieves the list of sources and subtypes for which logged in user has the entitlement to create a machine account. The response includes a list of object detailing the source, subtype and entitlement details which enables the clients to understand if they can submit the request to create a machine account for the given subtype.
103913
+ * @summary Machine Account Create Access
103914
+ * @param {MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest} requestParameters Request parameters.
103915
+ * @param {*} [axiosOptions] Override http request option.
103916
+ * @throws {RequiredError}
103917
+ * @memberof MachineAccountCreationRequestV2026Api
103918
+ */
103919
+ public getMachineAccountCreateAccessInfo(requestParameters: MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest, axiosOptions?: RawAxiosRequestConfig) {
103920
+ return MachineAccountCreationRequestV2026ApiFp(this.configuration).getMachineAccountCreateAccessInfo(requestParameters.xSailPointExperimental, requestParameters.offset, requestParameters.limit, axiosOptions).then((request) => request(this.axios, this.basePath));
103921
+ }
103922
+ }
103923
+
103924
+
103925
+
103219
103926
  /**
103220
103927
  * MachineAccountMappingsV2026Api - axios parameter creator
103221
103928
  * @export
@@ -103357,14 +104064,425 @@ export const MachineAccountMappingsV2026ApiAxiosParamCreator = function (configu
103357
104064
  // oauth required
103358
104065
  await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
103359
104066
 
103360
- if (limit !== undefined) {
103361
- localVarQueryParameter['limit'] = limit;
103362
- }
103363
-
103364
- if (offset !== undefined) {
103365
- localVarQueryParameter['offset'] = offset;
103366
- }
103367
-
104067
+ if (limit !== undefined) {
104068
+ localVarQueryParameter['limit'] = limit;
104069
+ }
104070
+
104071
+ if (offset !== undefined) {
104072
+ localVarQueryParameter['offset'] = offset;
104073
+ }
104074
+
104075
+
104076
+
104077
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
104078
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
104079
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
104080
+
104081
+ return {
104082
+ url: toPathString(localVarUrlObj),
104083
+ axiosOptions: localVarRequestOptions,
104084
+ };
104085
+ },
104086
+ /**
104087
+ * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104088
+ * @summary Update source\'s machine account mappings
104089
+ * @param {string} id Source ID.
104090
+ * @param {AttributeMappingsV2026} attributeMappingsV2026
104091
+ * @param {*} [axiosOptions] Override http request option.
104092
+ * @throws {RequiredError}
104093
+ */
104094
+ setMachineAccountMappings: async (id: string, attributeMappingsV2026: AttributeMappingsV2026, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104095
+ // verify required parameter 'id' is not null or undefined
104096
+ assertParamExists('setMachineAccountMappings', 'id', id)
104097
+ // verify required parameter 'attributeMappingsV2026' is not null or undefined
104098
+ assertParamExists('setMachineAccountMappings', 'attributeMappingsV2026', attributeMappingsV2026)
104099
+ const localVarPath = `/sources/{sourceId}/machine-mappings`
104100
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
104101
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
104102
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
104103
+ let baseOptions;
104104
+ if (configuration) {
104105
+ baseOptions = configuration.baseOptions;
104106
+ }
104107
+
104108
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
104109
+ const localVarHeaderParameter = {} as any;
104110
+ const localVarQueryParameter = {} as any;
104111
+
104112
+ // authentication userAuth required
104113
+ // oauth required
104114
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
104115
+
104116
+ // authentication userAuth required
104117
+ // oauth required
104118
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
104119
+
104120
+ // authentication applicationAuth required
104121
+ // oauth required
104122
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
104123
+
104124
+
104125
+
104126
+ localVarHeaderParameter['Content-Type'] = 'application/json';
104127
+
104128
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
104129
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
104130
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
104131
+ localVarRequestOptions.data = serializeDataIfNeeded(attributeMappingsV2026, localVarRequestOptions, configuration)
104132
+
104133
+ return {
104134
+ url: toPathString(localVarUrlObj),
104135
+ axiosOptions: localVarRequestOptions,
104136
+ };
104137
+ },
104138
+ }
104139
+ };
104140
+
104141
+ /**
104142
+ * MachineAccountMappingsV2026Api - functional programming interface
104143
+ * @export
104144
+ */
104145
+ export const MachineAccountMappingsV2026ApiFp = function(configuration?: Configuration) {
104146
+ const localVarAxiosParamCreator = MachineAccountMappingsV2026ApiAxiosParamCreator(configuration)
104147
+ return {
104148
+ /**
104149
+ * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104150
+ * @summary Create machine account mappings
104151
+ * @param {string} id Source ID.
104152
+ * @param {AttributeMappingsV2026} attributeMappingsV2026
104153
+ * @param {*} [axiosOptions] Override http request option.
104154
+ * @throws {RequiredError}
104155
+ */
104156
+ async createMachineAccountMappings(id: string, attributeMappingsV2026: AttributeMappingsV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2026>>> {
104157
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineAccountMappings(id, attributeMappingsV2026, axiosOptions);
104158
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
104159
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2026Api.createMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
104160
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104161
+ },
104162
+ /**
104163
+ * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104164
+ * @summary Delete source\'s machine account mappings
104165
+ * @param {string} id source ID.
104166
+ * @param {*} [axiosOptions] Override http request option.
104167
+ * @throws {RequiredError}
104168
+ */
104169
+ async deleteMachineAccountMappings(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
104170
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountMappings(id, axiosOptions);
104171
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
104172
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2026Api.deleteMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
104173
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104174
+ },
104175
+ /**
104176
+ * Retrieves Machine account mappings for a specified source using Source ID.
104177
+ * @summary Machine account mapping for source
104178
+ * @param {string} id Source ID
104179
+ * @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.
104180
+ * @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.
104181
+ * @param {*} [axiosOptions] Override http request option.
104182
+ * @throws {RequiredError}
104183
+ */
104184
+ async listMachineAccountMappings(id: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2026>>> {
104185
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listMachineAccountMappings(id, limit, offset, axiosOptions);
104186
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
104187
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2026Api.listMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
104188
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104189
+ },
104190
+ /**
104191
+ * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104192
+ * @summary Update source\'s machine account mappings
104193
+ * @param {string} id Source ID.
104194
+ * @param {AttributeMappingsV2026} attributeMappingsV2026
104195
+ * @param {*} [axiosOptions] Override http request option.
104196
+ * @throws {RequiredError}
104197
+ */
104198
+ async setMachineAccountMappings(id: string, attributeMappingsV2026: AttributeMappingsV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2026>>> {
104199
+ const localVarAxiosArgs = await localVarAxiosParamCreator.setMachineAccountMappings(id, attributeMappingsV2026, axiosOptions);
104200
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
104201
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2026Api.setMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
104202
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104203
+ },
104204
+ }
104205
+ };
104206
+
104207
+ /**
104208
+ * MachineAccountMappingsV2026Api - factory interface
104209
+ * @export
104210
+ */
104211
+ export const MachineAccountMappingsV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
104212
+ const localVarFp = MachineAccountMappingsV2026ApiFp(configuration)
104213
+ return {
104214
+ /**
104215
+ * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104216
+ * @summary Create machine account mappings
104217
+ * @param {MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest} requestParameters Request parameters.
104218
+ * @param {*} [axiosOptions] Override http request option.
104219
+ * @throws {RequiredError}
104220
+ */
104221
+ createMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2026>> {
104222
+ return localVarFp.createMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2026, axiosOptions).then((request) => request(axios, basePath));
104223
+ },
104224
+ /**
104225
+ * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104226
+ * @summary Delete source\'s machine account mappings
104227
+ * @param {MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest} requestParameters Request parameters.
104228
+ * @param {*} [axiosOptions] Override http request option.
104229
+ * @throws {RequiredError}
104230
+ */
104231
+ deleteMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
104232
+ return localVarFp.deleteMachineAccountMappings(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
104233
+ },
104234
+ /**
104235
+ * Retrieves Machine account mappings for a specified source using Source ID.
104236
+ * @summary Machine account mapping for source
104237
+ * @param {MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest} requestParameters Request parameters.
104238
+ * @param {*} [axiosOptions] Override http request option.
104239
+ * @throws {RequiredError}
104240
+ */
104241
+ listMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2026>> {
104242
+ return localVarFp.listMachineAccountMappings(requestParameters.id, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
104243
+ },
104244
+ /**
104245
+ * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104246
+ * @summary Update source\'s machine account mappings
104247
+ * @param {MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
104248
+ * @param {*} [axiosOptions] Override http request option.
104249
+ * @throws {RequiredError}
104250
+ */
104251
+ setMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2026>> {
104252
+ return localVarFp.setMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2026, axiosOptions).then((request) => request(axios, basePath));
104253
+ },
104254
+ };
104255
+ };
104256
+
104257
+ /**
104258
+ * Request parameters for createMachineAccountMappings operation in MachineAccountMappingsV2026Api.
104259
+ * @export
104260
+ * @interface MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest
104261
+ */
104262
+ export interface MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest {
104263
+ /**
104264
+ * Source ID.
104265
+ * @type {string}
104266
+ * @memberof MachineAccountMappingsV2026ApiCreateMachineAccountMappings
104267
+ */
104268
+ readonly id: string
104269
+
104270
+ /**
104271
+ *
104272
+ * @type {AttributeMappingsV2026}
104273
+ * @memberof MachineAccountMappingsV2026ApiCreateMachineAccountMappings
104274
+ */
104275
+ readonly attributeMappingsV2026: AttributeMappingsV2026
104276
+ }
104277
+
104278
+ /**
104279
+ * Request parameters for deleteMachineAccountMappings operation in MachineAccountMappingsV2026Api.
104280
+ * @export
104281
+ * @interface MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest
104282
+ */
104283
+ export interface MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest {
104284
+ /**
104285
+ * source ID.
104286
+ * @type {string}
104287
+ * @memberof MachineAccountMappingsV2026ApiDeleteMachineAccountMappings
104288
+ */
104289
+ readonly id: string
104290
+ }
104291
+
104292
+ /**
104293
+ * Request parameters for listMachineAccountMappings operation in MachineAccountMappingsV2026Api.
104294
+ * @export
104295
+ * @interface MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest
104296
+ */
104297
+ export interface MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest {
104298
+ /**
104299
+ * Source ID
104300
+ * @type {string}
104301
+ * @memberof MachineAccountMappingsV2026ApiListMachineAccountMappings
104302
+ */
104303
+ readonly id: string
104304
+
104305
+ /**
104306
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
104307
+ * @type {number}
104308
+ * @memberof MachineAccountMappingsV2026ApiListMachineAccountMappings
104309
+ */
104310
+ readonly limit?: number
104311
+
104312
+ /**
104313
+ * 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.
104314
+ * @type {number}
104315
+ * @memberof MachineAccountMappingsV2026ApiListMachineAccountMappings
104316
+ */
104317
+ readonly offset?: number
104318
+ }
104319
+
104320
+ /**
104321
+ * Request parameters for setMachineAccountMappings operation in MachineAccountMappingsV2026Api.
104322
+ * @export
104323
+ * @interface MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest
104324
+ */
104325
+ export interface MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest {
104326
+ /**
104327
+ * Source ID.
104328
+ * @type {string}
104329
+ * @memberof MachineAccountMappingsV2026ApiSetMachineAccountMappings
104330
+ */
104331
+ readonly id: string
104332
+
104333
+ /**
104334
+ *
104335
+ * @type {AttributeMappingsV2026}
104336
+ * @memberof MachineAccountMappingsV2026ApiSetMachineAccountMappings
104337
+ */
104338
+ readonly attributeMappingsV2026: AttributeMappingsV2026
104339
+ }
104340
+
104341
+ /**
104342
+ * MachineAccountMappingsV2026Api - object-oriented interface
104343
+ * @export
104344
+ * @class MachineAccountMappingsV2026Api
104345
+ * @extends {BaseAPI}
104346
+ */
104347
+ export class MachineAccountMappingsV2026Api extends BaseAPI {
104348
+ /**
104349
+ * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104350
+ * @summary Create machine account mappings
104351
+ * @param {MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest} requestParameters Request parameters.
104352
+ * @param {*} [axiosOptions] Override http request option.
104353
+ * @throws {RequiredError}
104354
+ * @memberof MachineAccountMappingsV2026Api
104355
+ */
104356
+ public createMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
104357
+ return MachineAccountMappingsV2026ApiFp(this.configuration).createMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
104358
+ }
104359
+
104360
+ /**
104361
+ * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104362
+ * @summary Delete source\'s machine account mappings
104363
+ * @param {MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest} requestParameters Request parameters.
104364
+ * @param {*} [axiosOptions] Override http request option.
104365
+ * @throws {RequiredError}
104366
+ * @memberof MachineAccountMappingsV2026Api
104367
+ */
104368
+ public deleteMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
104369
+ return MachineAccountMappingsV2026ApiFp(this.configuration).deleteMachineAccountMappings(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
104370
+ }
104371
+
104372
+ /**
104373
+ * Retrieves Machine account mappings for a specified source using Source ID.
104374
+ * @summary Machine account mapping for source
104375
+ * @param {MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest} requestParameters Request parameters.
104376
+ * @param {*} [axiosOptions] Override http request option.
104377
+ * @throws {RequiredError}
104378
+ * @memberof MachineAccountMappingsV2026Api
104379
+ */
104380
+ public listMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
104381
+ return MachineAccountMappingsV2026ApiFp(this.configuration).listMachineAccountMappings(requestParameters.id, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
104382
+ }
104383
+
104384
+ /**
104385
+ * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
104386
+ * @summary Update source\'s machine account mappings
104387
+ * @param {MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
104388
+ * @param {*} [axiosOptions] Override http request option.
104389
+ * @throws {RequiredError}
104390
+ * @memberof MachineAccountMappingsV2026Api
104391
+ */
104392
+ public setMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
104393
+ return MachineAccountMappingsV2026ApiFp(this.configuration).setMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
104394
+ }
104395
+ }
104396
+
104397
+
104398
+
104399
+ /**
104400
+ * MachineAccountSubtypesV2026Api - axios parameter creator
104401
+ * @export
104402
+ */
104403
+ export const MachineAccountSubtypesV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
104404
+ return {
104405
+ /**
104406
+ * Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
104407
+ * @summary Delete subtype by ID
104408
+ * @param {string} subtypeId The ID of the subtype.
104409
+ * @param {*} [axiosOptions] Override http request option.
104410
+ * @throws {RequiredError}
104411
+ */
104412
+ deleteMachineAccountSubtype: async (subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104413
+ // verify required parameter 'subtypeId' is not null or undefined
104414
+ assertParamExists('deleteMachineAccountSubtype', 'subtypeId', subtypeId)
104415
+ const localVarPath = `/source-subtypes/{subtypeId}`
104416
+ .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
104417
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
104418
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
104419
+ let baseOptions;
104420
+ if (configuration) {
104421
+ baseOptions = configuration.baseOptions;
104422
+ }
104423
+
104424
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
104425
+ const localVarHeaderParameter = {} as any;
104426
+ const localVarQueryParameter = {} as any;
104427
+
104428
+ // authentication userAuth required
104429
+ // oauth required
104430
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
104431
+
104432
+ // authentication userAuth required
104433
+ // oauth required
104434
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
104435
+
104436
+ // authentication applicationAuth required
104437
+ // oauth required
104438
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
104439
+
104440
+
104441
+
104442
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
104443
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
104444
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
104445
+
104446
+ return {
104447
+ url: toPathString(localVarUrlObj),
104448
+ axiosOptions: localVarRequestOptions,
104449
+ };
104450
+ },
104451
+ /**
104452
+ * Get a machine account subtype by subtype ID.
104453
+ * @summary Get subtype by ID
104454
+ * @param {string} subtypeId The ID of the subtype.
104455
+ * @param {*} [axiosOptions] Override http request option.
104456
+ * @throws {RequiredError}
104457
+ */
104458
+ getSourceSubtypeById: async (subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104459
+ // verify required parameter 'subtypeId' is not null or undefined
104460
+ assertParamExists('getSourceSubtypeById', 'subtypeId', subtypeId)
104461
+ const localVarPath = `/source-subtypes/{subtypeId}`
104462
+ .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
104463
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
104464
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
104465
+ let baseOptions;
104466
+ if (configuration) {
104467
+ baseOptions = configuration.baseOptions;
104468
+ }
104469
+
104470
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
104471
+ const localVarHeaderParameter = {} as any;
104472
+ const localVarQueryParameter = {} as any;
104473
+
104474
+ // authentication userAuth required
104475
+ // oauth required
104476
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
104477
+
104478
+ // authentication userAuth required
104479
+ // oauth required
104480
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
104481
+
104482
+ // authentication applicationAuth required
104483
+ // oauth required
104484
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
104485
+
103368
104486
 
103369
104487
 
103370
104488
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -103377,20 +104495,20 @@ export const MachineAccountMappingsV2026ApiAxiosParamCreator = function (configu
103377
104495
  };
103378
104496
  },
103379
104497
  /**
103380
- * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103381
- * @summary Update Source\'s Machine Account Mappings
103382
- * @param {string} id Source ID.
103383
- * @param {AttributeMappingsV2026} attributeMappingsV2026
104498
+ * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
104499
+ * @summary Patch subtype by ID
104500
+ * @param {string} subtypeId The ID of the subtype.
104501
+ * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
103384
104502
  * @param {*} [axiosOptions] Override http request option.
103385
104503
  * @throws {RequiredError}
103386
104504
  */
103387
- setMachineAccountMappings: async (id: string, attributeMappingsV2026: AttributeMappingsV2026, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103388
- // verify required parameter 'id' is not null or undefined
103389
- assertParamExists('setMachineAccountMappings', 'id', id)
103390
- // verify required parameter 'attributeMappingsV2026' is not null or undefined
103391
- assertParamExists('setMachineAccountMappings', 'attributeMappingsV2026', attributeMappingsV2026)
103392
- const localVarPath = `/sources/{sourceId}/machine-mappings`
103393
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
104505
+ patchMachineAccountSubtype: async (subtypeId: string, requestBody: Array<object>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104506
+ // verify required parameter 'subtypeId' is not null or undefined
104507
+ assertParamExists('patchMachineAccountSubtype', 'subtypeId', subtypeId)
104508
+ // verify required parameter 'requestBody' is not null or undefined
104509
+ assertParamExists('patchMachineAccountSubtype', 'requestBody', requestBody)
104510
+ const localVarPath = `/source-subtypes/{subtypeId}`
104511
+ .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
103394
104512
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
103395
104513
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
103396
104514
  let baseOptions;
@@ -103398,7 +104516,7 @@ export const MachineAccountMappingsV2026ApiAxiosParamCreator = function (configu
103398
104516
  baseOptions = configuration.baseOptions;
103399
104517
  }
103400
104518
 
103401
- const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
104519
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
103402
104520
  const localVarHeaderParameter = {} as any;
103403
104521
  const localVarQueryParameter = {} as any;
103404
104522
 
@@ -103416,12 +104534,12 @@ export const MachineAccountMappingsV2026ApiAxiosParamCreator = function (configu
103416
104534
 
103417
104535
 
103418
104536
 
103419
- localVarHeaderParameter['Content-Type'] = 'application/json';
104537
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
103420
104538
 
103421
104539
  setSearchParams(localVarUrlObj, localVarQueryParameter);
103422
104540
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103423
104541
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
103424
- localVarRequestOptions.data = serializeDataIfNeeded(attributeMappingsV2026, localVarRequestOptions, configuration)
104542
+ localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
103425
104543
 
103426
104544
  return {
103427
104545
  url: toPathString(localVarUrlObj),
@@ -103432,258 +104550,185 @@ export const MachineAccountMappingsV2026ApiAxiosParamCreator = function (configu
103432
104550
  };
103433
104551
 
103434
104552
  /**
103435
- * MachineAccountMappingsV2026Api - functional programming interface
104553
+ * MachineAccountSubtypesV2026Api - functional programming interface
103436
104554
  * @export
103437
104555
  */
103438
- export const MachineAccountMappingsV2026ApiFp = function(configuration?: Configuration) {
103439
- const localVarAxiosParamCreator = MachineAccountMappingsV2026ApiAxiosParamCreator(configuration)
104556
+ export const MachineAccountSubtypesV2026ApiFp = function(configuration?: Configuration) {
104557
+ const localVarAxiosParamCreator = MachineAccountSubtypesV2026ApiAxiosParamCreator(configuration)
103440
104558
  return {
103441
104559
  /**
103442
- * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103443
- * @summary Create machine account mappings
103444
- * @param {string} id Source ID.
103445
- * @param {AttributeMappingsV2026} attributeMappingsV2026
103446
- * @param {*} [axiosOptions] Override http request option.
103447
- * @throws {RequiredError}
103448
- */
103449
- async createMachineAccountMappings(id: string, attributeMappingsV2026: AttributeMappingsV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2026>>> {
103450
- const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineAccountMappings(id, attributeMappingsV2026, axiosOptions);
103451
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103452
- const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2026Api.createMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
103453
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103454
- },
103455
- /**
103456
- * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103457
- * @summary Delete source\'s machine account mappings
103458
- * @param {string} id source ID.
104560
+ * Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
104561
+ * @summary Delete subtype by ID
104562
+ * @param {string} subtypeId The ID of the subtype.
103459
104563
  * @param {*} [axiosOptions] Override http request option.
103460
104564
  * @throws {RequiredError}
103461
104565
  */
103462
- async deleteMachineAccountMappings(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
103463
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountMappings(id, axiosOptions);
104566
+ async deleteMachineAccountSubtype(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
104567
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountSubtype(subtypeId, axiosOptions);
103464
104568
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103465
- const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2026Api.deleteMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
104569
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.deleteMachineAccountSubtype']?.[localVarOperationServerIndex]?.url;
103466
104570
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103467
104571
  },
103468
104572
  /**
103469
- * Retrieves Machine account mappings for a specified source using Source ID.
103470
- * @summary Machine account mapping for source
103471
- * @param {string} id Source ID
103472
- * @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.
103473
- * @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.
104573
+ * Get a machine account subtype by subtype ID.
104574
+ * @summary Get subtype by ID
104575
+ * @param {string} subtypeId The ID of the subtype.
103474
104576
  * @param {*} [axiosOptions] Override http request option.
103475
104577
  * @throws {RequiredError}
103476
104578
  */
103477
- async listMachineAccountMappings(id: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2026>>> {
103478
- const localVarAxiosArgs = await localVarAxiosParamCreator.listMachineAccountMappings(id, limit, offset, axiosOptions);
104579
+ async getSourceSubtypeById(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>> {
104580
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getSourceSubtypeById(subtypeId, axiosOptions);
103479
104581
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103480
- const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2026Api.listMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
104582
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.getSourceSubtypeById']?.[localVarOperationServerIndex]?.url;
103481
104583
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103482
104584
  },
103483
104585
  /**
103484
- * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103485
- * @summary Update Source\'s Machine Account Mappings
103486
- * @param {string} id Source ID.
103487
- * @param {AttributeMappingsV2026} attributeMappingsV2026
104586
+ * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
104587
+ * @summary Patch subtype by ID
104588
+ * @param {string} subtypeId The ID of the subtype.
104589
+ * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
103488
104590
  * @param {*} [axiosOptions] Override http request option.
103489
104591
  * @throws {RequiredError}
103490
104592
  */
103491
- async setMachineAccountMappings(id: string, attributeMappingsV2026: AttributeMappingsV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappingsV2026>>> {
103492
- const localVarAxiosArgs = await localVarAxiosParamCreator.setMachineAccountMappings(id, attributeMappingsV2026, axiosOptions);
104593
+ async patchMachineAccountSubtype(subtypeId: string, requestBody: Array<object>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>> {
104594
+ const localVarAxiosArgs = await localVarAxiosParamCreator.patchMachineAccountSubtype(subtypeId, requestBody, axiosOptions);
103493
104595
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
103494
- const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsV2026Api.setMachineAccountMappings']?.[localVarOperationServerIndex]?.url;
104596
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.patchMachineAccountSubtype']?.[localVarOperationServerIndex]?.url;
103495
104597
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
103496
104598
  },
103497
104599
  }
103498
104600
  };
103499
104601
 
103500
104602
  /**
103501
- * MachineAccountMappingsV2026Api - factory interface
104603
+ * MachineAccountSubtypesV2026Api - factory interface
103502
104604
  * @export
103503
104605
  */
103504
- export const MachineAccountMappingsV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
103505
- const localVarFp = MachineAccountMappingsV2026ApiFp(configuration)
104606
+ export const MachineAccountSubtypesV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
104607
+ const localVarFp = MachineAccountSubtypesV2026ApiFp(configuration)
103506
104608
  return {
103507
104609
  /**
103508
- * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103509
- * @summary Create machine account mappings
103510
- * @param {MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest} requestParameters Request parameters.
104610
+ * Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
104611
+ * @summary Delete subtype by ID
104612
+ * @param {MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
103511
104613
  * @param {*} [axiosOptions] Override http request option.
103512
104614
  * @throws {RequiredError}
103513
104615
  */
103514
- createMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2026>> {
103515
- return localVarFp.createMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2026, axiosOptions).then((request) => request(axios, basePath));
104616
+ deleteMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
104617
+ return localVarFp.deleteMachineAccountSubtype(requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
103516
104618
  },
103517
104619
  /**
103518
- * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103519
- * @summary Delete source\'s machine account mappings
103520
- * @param {MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest} requestParameters Request parameters.
104620
+ * Get a machine account subtype by subtype ID.
104621
+ * @summary Get subtype by ID
104622
+ * @param {MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest} requestParameters Request parameters.
103521
104623
  * @param {*} [axiosOptions] Override http request option.
103522
104624
  * @throws {RequiredError}
103523
104625
  */
103524
- deleteMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
103525
- return localVarFp.deleteMachineAccountMappings(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
104626
+ getSourceSubtypeById(requestParameters: MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026> {
104627
+ return localVarFp.getSourceSubtypeById(requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
103526
104628
  },
103527
104629
  /**
103528
- * Retrieves Machine account mappings for a specified source using Source ID.
103529
- * @summary Machine account mapping for source
103530
- * @param {MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest} requestParameters Request parameters.
104630
+ * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
104631
+ * @summary Patch subtype by ID
104632
+ * @param {MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
103531
104633
  * @param {*} [axiosOptions] Override http request option.
103532
104634
  * @throws {RequiredError}
103533
104635
  */
103534
- listMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2026>> {
103535
- return localVarFp.listMachineAccountMappings(requestParameters.id, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
103536
- },
103537
- /**
103538
- * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103539
- * @summary Update Source\'s Machine Account Mappings
103540
- * @param {MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
103541
- * @param {*} [axiosOptions] Override http request option.
103542
- * @throws {RequiredError}
103543
- */
103544
- setMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappingsV2026>> {
103545
- return localVarFp.setMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2026, axiosOptions).then((request) => request(axios, basePath));
104636
+ patchMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026> {
104637
+ return localVarFp.patchMachineAccountSubtype(requestParameters.subtypeId, requestParameters.requestBody, axiosOptions).then((request) => request(axios, basePath));
103546
104638
  },
103547
104639
  };
103548
104640
  };
103549
104641
 
103550
104642
  /**
103551
- * Request parameters for createMachineAccountMappings operation in MachineAccountMappingsV2026Api.
104643
+ * Request parameters for deleteMachineAccountSubtype operation in MachineAccountSubtypesV2026Api.
103552
104644
  * @export
103553
- * @interface MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest
104645
+ * @interface MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest
103554
104646
  */
103555
- export interface MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest {
104647
+ export interface MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest {
103556
104648
  /**
103557
- * Source ID.
104649
+ * The ID of the subtype.
103558
104650
  * @type {string}
103559
- * @memberof MachineAccountMappingsV2026ApiCreateMachineAccountMappings
103560
- */
103561
- readonly id: string
103562
-
103563
- /**
103564
- *
103565
- * @type {AttributeMappingsV2026}
103566
- * @memberof MachineAccountMappingsV2026ApiCreateMachineAccountMappings
104651
+ * @memberof MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtype
103567
104652
  */
103568
- readonly attributeMappingsV2026: AttributeMappingsV2026
104653
+ readonly subtypeId: string
103569
104654
  }
103570
104655
 
103571
104656
  /**
103572
- * Request parameters for deleteMachineAccountMappings operation in MachineAccountMappingsV2026Api.
104657
+ * Request parameters for getSourceSubtypeById operation in MachineAccountSubtypesV2026Api.
103573
104658
  * @export
103574
- * @interface MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest
104659
+ * @interface MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest
103575
104660
  */
103576
- export interface MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest {
104661
+ export interface MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest {
103577
104662
  /**
103578
- * source ID.
104663
+ * The ID of the subtype.
103579
104664
  * @type {string}
103580
- * @memberof MachineAccountMappingsV2026ApiDeleteMachineAccountMappings
104665
+ * @memberof MachineAccountSubtypesV2026ApiGetSourceSubtypeById
103581
104666
  */
103582
- readonly id: string
103583
- }
103584
-
103585
- /**
103586
- * Request parameters for listMachineAccountMappings operation in MachineAccountMappingsV2026Api.
103587
- * @export
103588
- * @interface MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest
103589
- */
103590
- export interface MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest {
103591
- /**
103592
- * Source ID
103593
- * @type {string}
103594
- * @memberof MachineAccountMappingsV2026ApiListMachineAccountMappings
103595
- */
103596
- readonly id: string
103597
-
103598
- /**
103599
- * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
103600
- * @type {number}
103601
- * @memberof MachineAccountMappingsV2026ApiListMachineAccountMappings
103602
- */
103603
- readonly limit?: number
103604
-
103605
- /**
103606
- * 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.
103607
- * @type {number}
103608
- * @memberof MachineAccountMappingsV2026ApiListMachineAccountMappings
103609
- */
103610
- readonly offset?: number
104667
+ readonly subtypeId: string
103611
104668
  }
103612
104669
 
103613
104670
  /**
103614
- * Request parameters for setMachineAccountMappings operation in MachineAccountMappingsV2026Api.
104671
+ * Request parameters for patchMachineAccountSubtype operation in MachineAccountSubtypesV2026Api.
103615
104672
  * @export
103616
- * @interface MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest
104673
+ * @interface MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest
103617
104674
  */
103618
- export interface MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest {
104675
+ export interface MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest {
103619
104676
  /**
103620
- * Source ID.
104677
+ * The ID of the subtype.
103621
104678
  * @type {string}
103622
- * @memberof MachineAccountMappingsV2026ApiSetMachineAccountMappings
104679
+ * @memberof MachineAccountSubtypesV2026ApiPatchMachineAccountSubtype
103623
104680
  */
103624
- readonly id: string
104681
+ readonly subtypeId: string
103625
104682
 
103626
104683
  /**
103627
- *
103628
- * @type {AttributeMappingsV2026}
103629
- * @memberof MachineAccountMappingsV2026ApiSetMachineAccountMappings
104684
+ * A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
104685
+ * @type {Array<object>}
104686
+ * @memberof MachineAccountSubtypesV2026ApiPatchMachineAccountSubtype
103630
104687
  */
103631
- readonly attributeMappingsV2026: AttributeMappingsV2026
104688
+ readonly requestBody: Array<object>
103632
104689
  }
103633
104690
 
103634
104691
  /**
103635
- * MachineAccountMappingsV2026Api - object-oriented interface
104692
+ * MachineAccountSubtypesV2026Api - object-oriented interface
103636
104693
  * @export
103637
- * @class MachineAccountMappingsV2026Api
104694
+ * @class MachineAccountSubtypesV2026Api
103638
104695
  * @extends {BaseAPI}
103639
104696
  */
103640
- export class MachineAccountMappingsV2026Api extends BaseAPI {
103641
- /**
103642
- * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103643
- * @summary Create machine account mappings
103644
- * @param {MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest} requestParameters Request parameters.
103645
- * @param {*} [axiosOptions] Override http request option.
103646
- * @throws {RequiredError}
103647
- * @memberof MachineAccountMappingsV2026Api
103648
- */
103649
- public createMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiCreateMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
103650
- return MachineAccountMappingsV2026ApiFp(this.configuration).createMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
103651
- }
103652
-
104697
+ export class MachineAccountSubtypesV2026Api extends BaseAPI {
103653
104698
  /**
103654
- * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103655
- * @summary Delete source\'s machine account mappings
103656
- * @param {MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest} requestParameters Request parameters.
104699
+ * Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
104700
+ * @summary Delete subtype by ID
104701
+ * @param {MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
103657
104702
  * @param {*} [axiosOptions] Override http request option.
103658
104703
  * @throws {RequiredError}
103659
- * @memberof MachineAccountMappingsV2026Api
104704
+ * @memberof MachineAccountSubtypesV2026Api
103660
104705
  */
103661
- public deleteMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiDeleteMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
103662
- return MachineAccountMappingsV2026ApiFp(this.configuration).deleteMachineAccountMappings(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
104706
+ public deleteMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig) {
104707
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).deleteMachineAccountSubtype(requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
103663
104708
  }
103664
104709
 
103665
104710
  /**
103666
- * Retrieves Machine account mappings for a specified source using Source ID.
103667
- * @summary Machine account mapping for source
103668
- * @param {MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest} requestParameters Request parameters.
104711
+ * Get a machine account subtype by subtype ID.
104712
+ * @summary Get subtype by ID
104713
+ * @param {MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest} requestParameters Request parameters.
103669
104714
  * @param {*} [axiosOptions] Override http request option.
103670
104715
  * @throws {RequiredError}
103671
- * @memberof MachineAccountMappingsV2026Api
104716
+ * @memberof MachineAccountSubtypesV2026Api
103672
104717
  */
103673
- public listMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiListMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
103674
- return MachineAccountMappingsV2026ApiFp(this.configuration).listMachineAccountMappings(requestParameters.id, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
104718
+ public getSourceSubtypeById(requestParameters: MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig) {
104719
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).getSourceSubtypeById(requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
103675
104720
  }
103676
104721
 
103677
104722
  /**
103678
- * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
103679
- * @summary Update Source\'s Machine Account Mappings
103680
- * @param {MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest} requestParameters Request parameters.
104723
+ * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
104724
+ * @summary Patch subtype by ID
104725
+ * @param {MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
103681
104726
  * @param {*} [axiosOptions] Override http request option.
103682
104727
  * @throws {RequiredError}
103683
- * @memberof MachineAccountMappingsV2026Api
104728
+ * @memberof MachineAccountSubtypesV2026Api
103684
104729
  */
103685
- public setMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig) {
103686
- return MachineAccountMappingsV2026ApiFp(this.configuration).setMachineAccountMappings(requestParameters.id, requestParameters.attributeMappingsV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
104730
+ public patchMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig) {
104731
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).patchMachineAccountSubtype(requestParameters.subtypeId, requestParameters.requestBody, axiosOptions).then((request) => request(this.axios, this.basePath));
103687
104732
  }
103688
104733
  }
103689
104734
 
@@ -103764,11 +104809,11 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
103764
104809
  * @param {*} [axiosOptions] Override http request option.
103765
104810
  * @throws {RequiredError}
103766
104811
  */
103767
- deleteMachineAccountSubtype: async (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104812
+ deleteMachineAccountSubtypeByTechnicalName: async (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
103768
104813
  // verify required parameter 'sourceId' is not null or undefined
103769
- assertParamExists('deleteMachineAccountSubtype', 'sourceId', sourceId)
104814
+ assertParamExists('deleteMachineAccountSubtypeByTechnicalName', 'sourceId', sourceId)
103770
104815
  // verify required parameter 'technicalName' is not null or undefined
103771
- assertParamExists('deleteMachineAccountSubtype', 'technicalName', technicalName)
104816
+ assertParamExists('deleteMachineAccountSubtypeByTechnicalName', 'technicalName', technicalName)
103772
104817
  if (xSailPointExperimental === undefined) {
103773
104818
  xSailPointExperimental = 'true';
103774
104819
  }
@@ -103815,7 +104860,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
103815
104860
  },
103816
104861
  /**
103817
104862
  * Use this API to return the details for a single machine account by its ID.
103818
- * @summary Machine account details
104863
+ * @summary Get machine account details
103819
104864
  * @param {string} id Machine Account ID.
103820
104865
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
103821
104866
  * @param {*} [axiosOptions] Override http request option.
@@ -103864,15 +104909,22 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
103864
104909
  };
103865
104910
  },
103866
104911
  /**
103867
- * This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
104912
+ * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
103868
104913
  * @summary Machine Subtype Approval Config
104914
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
103869
104915
  * @param {string} subtypeId machine subtype id.
103870
104916
  * @param {*} [axiosOptions] Override http request option.
103871
104917
  * @throws {RequiredError}
103872
104918
  */
103873
- getMachineAccountDeletionSubTypeApprovalConfig: async (subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104919
+ getMachineAccountSubtypeApprovalConfig: async (xSailPointExperimental: string, subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104920
+ if (xSailPointExperimental === undefined) {
104921
+ xSailPointExperimental = 'true';
104922
+ }
104923
+
104924
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
104925
+ assertParamExists('getMachineAccountSubtypeApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
103874
104926
  // verify required parameter 'subtypeId' is not null or undefined
103875
- assertParamExists('getMachineAccountDeletionSubTypeApprovalConfig', 'subtypeId', subtypeId)
104927
+ assertParamExists('getMachineAccountSubtypeApprovalConfig', 'subtypeId', subtypeId)
103876
104928
  const localVarPath = `/source-subtypes/{subtypeId}/machine-config`
103877
104929
  .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
103878
104930
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -103896,6 +104948,9 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
103896
104948
 
103897
104949
 
103898
104950
 
104951
+ if (xSailPointExperimental != null) {
104952
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
104953
+ }
103899
104954
  setSearchParams(localVarUrlObj, localVarQueryParameter);
103900
104955
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
103901
104956
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -104098,7 +105153,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
104098
105153
  },
104099
105154
  /**
104100
105155
  * This returns a list of machine accounts.
104101
- * @summary Machine accounts list
105156
+ * @summary List machine accounts
104102
105157
  * @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.
104103
105158
  * @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.
104104
105159
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
@@ -104167,6 +105222,64 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
104167
105222
  axiosOptions: localVarRequestOptions,
104168
105223
  };
104169
105224
  },
105225
+ /**
105226
+ * This endpoint retrieves the subtypes for given subtypeIds.
105227
+ * @summary Bulk Retrieve of Source Subtypes
105228
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
105229
+ * @param {Array<string>} requestBody
105230
+ * @param {*} [axiosOptions] Override http request option.
105231
+ * @throws {RequiredError}
105232
+ */
105233
+ loadBulkSourceSubtypes: async (xSailPointExperimental: string, requestBody: Array<string>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
105234
+ if (xSailPointExperimental === undefined) {
105235
+ xSailPointExperimental = 'true';
105236
+ }
105237
+
105238
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
105239
+ assertParamExists('loadBulkSourceSubtypes', 'xSailPointExperimental', xSailPointExperimental)
105240
+ // verify required parameter 'requestBody' is not null or undefined
105241
+ assertParamExists('loadBulkSourceSubtypes', 'requestBody', requestBody)
105242
+ const localVarPath = `/source-subtypes/bulk-retrieve`;
105243
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
105244
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
105245
+ let baseOptions;
105246
+ if (configuration) {
105247
+ baseOptions = configuration.baseOptions;
105248
+ }
105249
+
105250
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
105251
+ const localVarHeaderParameter = {} as any;
105252
+ const localVarQueryParameter = {} as any;
105253
+
105254
+ // authentication userAuth required
105255
+ // oauth required
105256
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
105257
+
105258
+ // authentication userAuth required
105259
+ // oauth required
105260
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
105261
+
105262
+ // authentication applicationAuth required
105263
+ // oauth required
105264
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
105265
+
105266
+
105267
+
105268
+ localVarHeaderParameter['Content-Type'] = 'application/json';
105269
+
105270
+ if (xSailPointExperimental != null) {
105271
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
105272
+ }
105273
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
105274
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
105275
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
105276
+ localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
105277
+
105278
+ return {
105279
+ url: toPathString(localVarUrlObj),
105280
+ axiosOptions: localVarRequestOptions,
105281
+ };
105282
+ },
104170
105283
  /**
104171
105284
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
104172
105285
  * @summary Patch subtype
@@ -104177,13 +105290,13 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
104177
105290
  * @param {*} [axiosOptions] Override http request option.
104178
105291
  * @throws {RequiredError}
104179
105292
  */
104180
- patchMachineAccountSubtype: async (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
105293
+ patchMachineAccountSubtypeByTechnicalName: async (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
104181
105294
  // verify required parameter 'sourceId' is not null or undefined
104182
- assertParamExists('patchMachineAccountSubtype', 'sourceId', sourceId)
105295
+ assertParamExists('patchMachineAccountSubtypeByTechnicalName', 'sourceId', sourceId)
104183
105296
  // verify required parameter 'technicalName' is not null or undefined
104184
- assertParamExists('patchMachineAccountSubtype', 'technicalName', technicalName)
105297
+ assertParamExists('patchMachineAccountSubtypeByTechnicalName', 'technicalName', technicalName)
104185
105298
  // verify required parameter 'requestBody' is not null or undefined
104186
- assertParamExists('patchMachineAccountSubtype', 'requestBody', requestBody)
105299
+ assertParamExists('patchMachineAccountSubtypeByTechnicalName', 'requestBody', requestBody)
104187
105300
  if (xSailPointExperimental === undefined) {
104188
105301
  xSailPointExperimental = 'true';
104189
105302
  }
@@ -104233,7 +105346,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
104233
105346
  },
104234
105347
  /**
104235
105348
  * Use this API to update machine accounts details.
104236
- * @summary Update a machine account
105349
+ * @summary Update machine account details
104237
105350
  * @param {string} id Machine Account ID.
104238
105351
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
104239
105352
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
@@ -104292,18 +105405,25 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
104292
105405
  };
104293
105406
  },
104294
105407
  /**
104295
- * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
105408
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
104296
105409
  * @summary Machine Subtype Approval Config
105410
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
104297
105411
  * @param {string} subtypeId machine account subtype ID.
104298
105412
  * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
104299
105413
  * @param {*} [axiosOptions] Override http request option.
104300
105414
  * @throws {RequiredError}
104301
105415
  */
104302
- updateMachineAccountDeletionBySubTypeApprovalConfig: async (subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
105416
+ updateMachineAccountSubtypeApprovalConfig: async (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
105417
+ if (xSailPointExperimental === undefined) {
105418
+ xSailPointExperimental = 'true';
105419
+ }
105420
+
105421
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
105422
+ assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
104303
105423
  // verify required parameter 'subtypeId' is not null or undefined
104304
- assertParamExists('updateMachineAccountDeletionBySubTypeApprovalConfig', 'subtypeId', subtypeId)
105424
+ assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'subtypeId', subtypeId)
104305
105425
  // verify required parameter 'jsonPatchOperationV2026' is not null or undefined
104306
- assertParamExists('updateMachineAccountDeletionBySubTypeApprovalConfig', 'jsonPatchOperationV2026', jsonPatchOperationV2026)
105426
+ assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'jsonPatchOperationV2026', jsonPatchOperationV2026)
104307
105427
  const localVarPath = `/source-subtypes/{subtypeId}/machine-config`
104308
105428
  .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
104309
105429
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -104329,6 +105449,9 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
104329
105449
 
104330
105450
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
104331
105451
 
105452
+ if (xSailPointExperimental != null) {
105453
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
105454
+ }
104332
105455
  setSearchParams(localVarUrlObj, localVarQueryParameter);
104333
105456
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
104334
105457
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -104373,15 +105496,15 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
104373
105496
  * @param {*} [axiosOptions] Override http request option.
104374
105497
  * @throws {RequiredError}
104375
105498
  */
104376
- async deleteMachineAccountSubtype(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
104377
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountSubtype(sourceId, technicalName, xSailPointExperimental, axiosOptions);
105499
+ async deleteMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
105500
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountSubtypeByTechnicalName(sourceId, technicalName, xSailPointExperimental, axiosOptions);
104378
105501
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
104379
- const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.deleteMachineAccountSubtype']?.[localVarOperationServerIndex]?.url;
105502
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.deleteMachineAccountSubtypeByTechnicalName']?.[localVarOperationServerIndex]?.url;
104380
105503
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104381
105504
  },
104382
105505
  /**
104383
105506
  * Use this API to return the details for a single machine account by its ID.
104384
- * @summary Machine account details
105507
+ * @summary Get machine account details
104385
105508
  * @param {string} id Machine Account ID.
104386
105509
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
104387
105510
  * @param {*} [axiosOptions] Override http request option.
@@ -104394,16 +105517,17 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
104394
105517
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104395
105518
  },
104396
105519
  /**
104397
- * This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
105520
+ * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
104398
105521
  * @summary Machine Subtype Approval Config
105522
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
104399
105523
  * @param {string} subtypeId machine subtype id.
104400
105524
  * @param {*} [axiosOptions] Override http request option.
104401
105525
  * @throws {RequiredError}
104402
105526
  */
104403
- async getMachineAccountDeletionSubTypeApprovalConfig(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>> {
104404
- const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountDeletionSubTypeApprovalConfig(subtypeId, axiosOptions);
105527
+ async getMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>> {
105528
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountSubtypeApprovalConfig(xSailPointExperimental, subtypeId, axiosOptions);
104405
105529
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
104406
- const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.getMachineAccountDeletionSubTypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
105530
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.getMachineAccountSubtypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
104407
105531
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104408
105532
  },
104409
105533
  /**
@@ -104456,7 +105580,7 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
104456
105580
  },
104457
105581
  /**
104458
105582
  * This returns a list of machine accounts.
104459
- * @summary Machine accounts list
105583
+ * @summary List machine accounts
104460
105584
  * @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.
104461
105585
  * @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.
104462
105586
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
@@ -104472,6 +105596,20 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
104472
105596
  const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.listMachineAccounts']?.[localVarOperationServerIndex]?.url;
104473
105597
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104474
105598
  },
105599
+ /**
105600
+ * This endpoint retrieves the subtypes for given subtypeIds.
105601
+ * @summary Bulk Retrieve of Source Subtypes
105602
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
105603
+ * @param {Array<string>} requestBody
105604
+ * @param {*} [axiosOptions] Override http request option.
105605
+ * @throws {RequiredError}
105606
+ */
105607
+ async loadBulkSourceSubtypes(xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeWithSourceV2026>>> {
105608
+ const localVarAxiosArgs = await localVarAxiosParamCreator.loadBulkSourceSubtypes(xSailPointExperimental, requestBody, axiosOptions);
105609
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
105610
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.loadBulkSourceSubtypes']?.[localVarOperationServerIndex]?.url;
105611
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
105612
+ },
104475
105613
  /**
104476
105614
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
104477
105615
  * @summary Patch subtype
@@ -104482,15 +105620,15 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
104482
105620
  * @param {*} [axiosOptions] Override http request option.
104483
105621
  * @throws {RequiredError}
104484
105622
  */
104485
- async patchMachineAccountSubtype(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>> {
104486
- const localVarAxiosArgs = await localVarAxiosParamCreator.patchMachineAccountSubtype(sourceId, technicalName, requestBody, xSailPointExperimental, axiosOptions);
105623
+ async patchMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>> {
105624
+ const localVarAxiosArgs = await localVarAxiosParamCreator.patchMachineAccountSubtypeByTechnicalName(sourceId, technicalName, requestBody, xSailPointExperimental, axiosOptions);
104487
105625
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
104488
- const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.patchMachineAccountSubtype']?.[localVarOperationServerIndex]?.url;
105626
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.patchMachineAccountSubtypeByTechnicalName']?.[localVarOperationServerIndex]?.url;
104489
105627
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104490
105628
  },
104491
105629
  /**
104492
105630
  * Use this API to update machine accounts details.
104493
- * @summary Update a machine account
105631
+ * @summary Update machine account details
104494
105632
  * @param {string} id Machine Account ID.
104495
105633
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
104496
105634
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
@@ -104504,17 +105642,18 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
104504
105642
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104505
105643
  },
104506
105644
  /**
104507
- * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
105645
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
104508
105646
  * @summary Machine Subtype Approval Config
105647
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
104509
105648
  * @param {string} subtypeId machine account subtype ID.
104510
105649
  * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
104511
105650
  * @param {*} [axiosOptions] Override http request option.
104512
105651
  * @throws {RequiredError}
104513
105652
  */
104514
- async updateMachineAccountDeletionBySubTypeApprovalConfig(subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>> {
104515
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountDeletionBySubTypeApprovalConfig(subtypeId, jsonPatchOperationV2026, axiosOptions);
105653
+ async updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>> {
105654
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental, subtypeId, jsonPatchOperationV2026, axiosOptions);
104516
105655
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
104517
- const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.updateMachineAccountDeletionBySubTypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
105656
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.updateMachineAccountSubtypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
104518
105657
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
104519
105658
  },
104520
105659
  }
@@ -104540,16 +105679,16 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
104540
105679
  /**
104541
105680
  * Delete a machine account subtype by source ID and technical name.
104542
105681
  * @summary Delete subtype
104543
- * @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
105682
+ * @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
104544
105683
  * @param {*} [axiosOptions] Override http request option.
104545
105684
  * @throws {RequiredError}
104546
105685
  */
104547
- deleteMachineAccountSubtype(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
104548
- return localVarFp.deleteMachineAccountSubtype(requestParameters.sourceId, requestParameters.technicalName, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
105686
+ deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
105687
+ return localVarFp.deleteMachineAccountSubtypeByTechnicalName(requestParameters.sourceId, requestParameters.technicalName, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
104549
105688
  },
104550
105689
  /**
104551
105690
  * Use this API to return the details for a single machine account by its ID.
104552
- * @summary Machine account details
105691
+ * @summary Get machine account details
104553
105692
  * @param {MachineAccountsV2026ApiGetMachineAccountRequest} requestParameters Request parameters.
104554
105693
  * @param {*} [axiosOptions] Override http request option.
104555
105694
  * @throws {RequiredError}
@@ -104558,14 +105697,14 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
104558
105697
  return localVarFp.getMachineAccount(requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
104559
105698
  },
104560
105699
  /**
104561
- * This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
105700
+ * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
104562
105701
  * @summary Machine Subtype Approval Config
104563
- * @param {MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest} requestParameters Request parameters.
105702
+ * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
104564
105703
  * @param {*} [axiosOptions] Override http request option.
104565
105704
  * @throws {RequiredError}
104566
105705
  */
104567
- getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026> {
104568
- return localVarFp.getMachineAccountDeletionSubTypeApprovalConfig(requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
105706
+ getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026> {
105707
+ return localVarFp.getMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
104569
105708
  },
104570
105709
  /**
104571
105710
  * Get a machine account subtype by its unique ID.
@@ -104599,7 +105738,7 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
104599
105738
  },
104600
105739
  /**
104601
105740
  * This returns a list of machine accounts.
104602
- * @summary Machine accounts list
105741
+ * @summary List machine accounts
104603
105742
  * @param {MachineAccountsV2026ApiListMachineAccountsRequest} requestParameters Request parameters.
104604
105743
  * @param {*} [axiosOptions] Override http request option.
104605
105744
  * @throws {RequiredError}
@@ -104607,19 +105746,29 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
104607
105746
  listMachineAccounts(requestParameters: MachineAccountsV2026ApiListMachineAccountsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineAccountV2026>> {
104608
105747
  return localVarFp.listMachineAccounts(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
104609
105748
  },
105749
+ /**
105750
+ * This endpoint retrieves the subtypes for given subtypeIds.
105751
+ * @summary Bulk Retrieve of Source Subtypes
105752
+ * @param {MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
105753
+ * @param {*} [axiosOptions] Override http request option.
105754
+ * @throws {RequiredError}
105755
+ */
105756
+ loadBulkSourceSubtypes(requestParameters: MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeWithSourceV2026>> {
105757
+ return localVarFp.loadBulkSourceSubtypes(requestParameters.xSailPointExperimental, requestParameters.requestBody, axiosOptions).then((request) => request(axios, basePath));
105758
+ },
104610
105759
  /**
104611
105760
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
104612
105761
  * @summary Patch subtype
104613
- * @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
105762
+ * @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
104614
105763
  * @param {*} [axiosOptions] Override http request option.
104615
105764
  * @throws {RequiredError}
104616
105765
  */
104617
- patchMachineAccountSubtype(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026> {
104618
- return localVarFp.patchMachineAccountSubtype(requestParameters.sourceId, requestParameters.technicalName, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
105766
+ patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026> {
105767
+ return localVarFp.patchMachineAccountSubtypeByTechnicalName(requestParameters.sourceId, requestParameters.technicalName, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
104619
105768
  },
104620
105769
  /**
104621
105770
  * Use this API to update machine accounts details.
104622
- * @summary Update a machine account
105771
+ * @summary Update machine account details
104623
105772
  * @param {MachineAccountsV2026ApiUpdateMachineAccountRequest} requestParameters Request parameters.
104624
105773
  * @param {*} [axiosOptions] Override http request option.
104625
105774
  * @throws {RequiredError}
@@ -104628,14 +105777,14 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
104628
105777
  return localVarFp.updateMachineAccount(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
104629
105778
  },
104630
105779
  /**
104631
- * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
105780
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
104632
105781
  * @summary Machine Subtype Approval Config
104633
- * @param {MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest} requestParameters Request parameters.
105782
+ * @param {MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
104634
105783
  * @param {*} [axiosOptions] Override http request option.
104635
105784
  * @throws {RequiredError}
104636
105785
  */
104637
- updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026> {
104638
- return localVarFp.updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
105786
+ updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026> {
105787
+ return localVarFp.updateMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
104639
105788
  },
104640
105789
  };
104641
105790
  };
@@ -104669,29 +105818,29 @@ export interface MachineAccountsV2026ApiCreateMachineAccountSubtypeRequest {
104669
105818
  }
104670
105819
 
104671
105820
  /**
104672
- * Request parameters for deleteMachineAccountSubtype operation in MachineAccountsV2026Api.
105821
+ * Request parameters for deleteMachineAccountSubtypeByTechnicalName operation in MachineAccountsV2026Api.
104673
105822
  * @export
104674
- * @interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeRequest
105823
+ * @interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest
104675
105824
  */
104676
- export interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeRequest {
105825
+ export interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest {
104677
105826
  /**
104678
105827
  * The ID of the source.
104679
105828
  * @type {string}
104680
- * @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtype
105829
+ * @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalName
104681
105830
  */
104682
105831
  readonly sourceId: string
104683
105832
 
104684
105833
  /**
104685
105834
  * The technical name of the subtype.
104686
105835
  * @type {string}
104687
- * @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtype
105836
+ * @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalName
104688
105837
  */
104689
105838
  readonly technicalName: string
104690
105839
 
104691
105840
  /**
104692
105841
  * Use this header to enable this experimental API.
104693
105842
  * @type {string}
104694
- * @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtype
105843
+ * @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalName
104695
105844
  */
104696
105845
  readonly xSailPointExperimental?: string
104697
105846
  }
@@ -104718,15 +105867,22 @@ export interface MachineAccountsV2026ApiGetMachineAccountRequest {
104718
105867
  }
104719
105868
 
104720
105869
  /**
104721
- * Request parameters for getMachineAccountDeletionSubTypeApprovalConfig operation in MachineAccountsV2026Api.
105870
+ * Request parameters for getMachineAccountSubtypeApprovalConfig operation in MachineAccountsV2026Api.
104722
105871
  * @export
104723
- * @interface MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest
105872
+ * @interface MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest
104724
105873
  */
104725
- export interface MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest {
105874
+ export interface MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest {
105875
+ /**
105876
+ * Use this header to enable this experimental API.
105877
+ * @type {string}
105878
+ * @memberof MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfig
105879
+ */
105880
+ readonly xSailPointExperimental: string
105881
+
104726
105882
  /**
104727
105883
  * machine subtype id.
104728
105884
  * @type {string}
104729
- * @memberof MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
105885
+ * @memberof MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfig
104730
105886
  */
104731
105887
  readonly subtypeId: string
104732
105888
  }
@@ -104886,36 +106042,57 @@ export interface MachineAccountsV2026ApiListMachineAccountsRequest {
104886
106042
  }
104887
106043
 
104888
106044
  /**
104889
- * Request parameters for patchMachineAccountSubtype operation in MachineAccountsV2026Api.
106045
+ * Request parameters for loadBulkSourceSubtypes operation in MachineAccountsV2026Api.
104890
106046
  * @export
104891
- * @interface MachineAccountsV2026ApiPatchMachineAccountSubtypeRequest
106047
+ * @interface MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest
104892
106048
  */
104893
- export interface MachineAccountsV2026ApiPatchMachineAccountSubtypeRequest {
106049
+ export interface MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest {
106050
+ /**
106051
+ * Use this header to enable this experimental API.
106052
+ * @type {string}
106053
+ * @memberof MachineAccountsV2026ApiLoadBulkSourceSubtypes
106054
+ */
106055
+ readonly xSailPointExperimental: string
106056
+
106057
+ /**
106058
+ *
106059
+ * @type {Array<string>}
106060
+ * @memberof MachineAccountsV2026ApiLoadBulkSourceSubtypes
106061
+ */
106062
+ readonly requestBody: Array<string>
106063
+ }
106064
+
106065
+ /**
106066
+ * Request parameters for patchMachineAccountSubtypeByTechnicalName operation in MachineAccountsV2026Api.
106067
+ * @export
106068
+ * @interface MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest
106069
+ */
106070
+ export interface MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest {
104894
106071
  /**
104895
106072
  * The ID of the source.
104896
106073
  * @type {string}
104897
- * @memberof MachineAccountsV2026ApiPatchMachineAccountSubtype
106074
+ * @memberof MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalName
104898
106075
  */
104899
106076
  readonly sourceId: string
104900
106077
 
104901
106078
  /**
104902
106079
  * The technical name of the subtype.
104903
106080
  * @type {string}
104904
- * @memberof MachineAccountsV2026ApiPatchMachineAccountSubtype
106081
+ * @memberof MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalName
104905
106082
  */
104906
106083
  readonly technicalName: string
104907
106084
 
104908
106085
  /**
104909
106086
  * A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
104910
106087
  * @type {Array<object>}
104911
- * @memberof MachineAccountsV2026ApiPatchMachineAccountSubtype
106088
+ * @memberof MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalName
104912
106089
  */
104913
106090
  readonly requestBody: Array<object>
104914
106091
 
104915
106092
  /**
104916
106093
  * Use this header to enable this experimental API.
104917
106094
  * @type {string}
104918
- * @memberof MachineAccountsV2026ApiPatchMachineAccountSubtype
106095
+ * @memberof MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalName
104919
106096
  */
104920
106097
  readonly xSailPointExperimental?: string
104921
106098
  }
@@ -104949,22 +106126,29 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountRequest {
104949
106126
  }
104950
106127
 
104951
106128
  /**
104952
- * Request parameters for updateMachineAccountDeletionBySubTypeApprovalConfig operation in MachineAccountsV2026Api.
106129
+ * Request parameters for updateMachineAccountSubtypeApprovalConfig operation in MachineAccountsV2026Api.
104953
106130
  * @export
104954
- * @interface MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest
106131
+ * @interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest
104955
106132
  */
104956
- export interface MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest {
106133
+ export interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest {
106134
+ /**
106135
+ * Use this header to enable this experimental API.
106136
+ * @type {string}
106137
+ * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
106138
+ */
106139
+ readonly xSailPointExperimental: string
106140
+
104957
106141
  /**
104958
106142
  * machine account subtype ID.
104959
106143
  * @type {string}
104960
- * @memberof MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
106144
+ * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
104961
106145
  */
104962
106146
  readonly subtypeId: string
104963
106147
 
104964
106148
  /**
104965
106149
  * The JSONPatch payload used to update the object.
104966
106150
  * @type {Array<JsonPatchOperationV2026>}
104967
- * @memberof MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
106151
+ * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
104968
106152
  */
104969
106153
  readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>
104970
106154
  }
@@ -104991,18 +106175,18 @@ export class MachineAccountsV2026Api extends BaseAPI {
104991
106175
  /**
104992
106176
  * Delete a machine account subtype by source ID and technical name.
104993
106177
  * @summary Delete subtype
104994
- * @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
106178
+ * @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
104995
106179
  * @param {*} [axiosOptions] Override http request option.
104996
106180
  * @throws {RequiredError}
104997
106181
  * @memberof MachineAccountsV2026Api
104998
106182
  */
104999
- public deleteMachineAccountSubtype(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig) {
105000
- return MachineAccountsV2026ApiFp(this.configuration).deleteMachineAccountSubtype(requestParameters.sourceId, requestParameters.technicalName, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
106183
+ public deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig) {
106184
+ return MachineAccountsV2026ApiFp(this.configuration).deleteMachineAccountSubtypeByTechnicalName(requestParameters.sourceId, requestParameters.technicalName, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
105001
106185
  }
105002
106186
 
105003
106187
  /**
105004
106188
  * Use this API to return the details for a single machine account by its ID.
105005
- * @summary Machine account details
106189
+ * @summary Get machine account details
105006
106190
  * @param {MachineAccountsV2026ApiGetMachineAccountRequest} requestParameters Request parameters.
105007
106191
  * @param {*} [axiosOptions] Override http request option.
105008
106192
  * @throws {RequiredError}
@@ -105013,15 +106197,15 @@ export class MachineAccountsV2026Api extends BaseAPI {
105013
106197
  }
105014
106198
 
105015
106199
  /**
105016
- * This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
106200
+ * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
105017
106201
  * @summary Machine Subtype Approval Config
105018
- * @param {MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest} requestParameters Request parameters.
106202
+ * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
105019
106203
  * @param {*} [axiosOptions] Override http request option.
105020
106204
  * @throws {RequiredError}
105021
106205
  * @memberof MachineAccountsV2026Api
105022
106206
  */
105023
- public getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
105024
- return MachineAccountsV2026ApiFp(this.configuration).getMachineAccountDeletionSubTypeApprovalConfig(requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
106207
+ public getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
106208
+ return MachineAccountsV2026ApiFp(this.configuration).getMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
105025
106209
  }
105026
106210
 
105027
106211
  /**
@@ -105062,7 +106246,7 @@ export class MachineAccountsV2026Api extends BaseAPI {
105062
106246
 
105063
106247
  /**
105064
106248
  * This returns a list of machine accounts.
105065
- * @summary Machine accounts list
106249
+ * @summary List machine accounts
105066
106250
  * @param {MachineAccountsV2026ApiListMachineAccountsRequest} requestParameters Request parameters.
105067
106251
  * @param {*} [axiosOptions] Override http request option.
105068
106252
  * @throws {RequiredError}
@@ -105072,21 +106256,33 @@ export class MachineAccountsV2026Api extends BaseAPI {
105072
106256
  return MachineAccountsV2026ApiFp(this.configuration).listMachineAccounts(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
105073
106257
  }
105074
106258
 
106259
+ /**
106260
+ * This endpoint retrieves the subtypes for given subtypeIds.
106261
+ * @summary Bulk Retrieve of Source Subtypes
106262
+ * @param {MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
106263
+ * @param {*} [axiosOptions] Override http request option.
106264
+ * @throws {RequiredError}
106265
+ * @memberof MachineAccountsV2026Api
106266
+ */
106267
+ public loadBulkSourceSubtypes(requestParameters: MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig) {
106268
+ return MachineAccountsV2026ApiFp(this.configuration).loadBulkSourceSubtypes(requestParameters.xSailPointExperimental, requestParameters.requestBody, axiosOptions).then((request) => request(this.axios, this.basePath));
106269
+ }
106270
+
105075
106271
  /**
105076
106272
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
105077
106273
  * @summary Patch subtype
105078
- * @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
106274
+ * @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
105079
106275
  * @param {*} [axiosOptions] Override http request option.
105080
106276
  * @throws {RequiredError}
105081
106277
  * @memberof MachineAccountsV2026Api
105082
106278
  */
105083
- public patchMachineAccountSubtype(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig) {
105084
- return MachineAccountsV2026ApiFp(this.configuration).patchMachineAccountSubtype(requestParameters.sourceId, requestParameters.technicalName, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
106279
+ public patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig) {
106280
+ return MachineAccountsV2026ApiFp(this.configuration).patchMachineAccountSubtypeByTechnicalName(requestParameters.sourceId, requestParameters.technicalName, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
105085
106281
  }
105086
106282
 
105087
106283
  /**
105088
106284
  * Use this API to update machine accounts details.
105089
- * @summary Update a machine account
106285
+ * @summary Update machine account details
105090
106286
  * @param {MachineAccountsV2026ApiUpdateMachineAccountRequest} requestParameters Request parameters.
105091
106287
  * @param {*} [axiosOptions] Override http request option.
105092
106288
  * @throws {RequiredError}
@@ -105097,15 +106293,15 @@ export class MachineAccountsV2026Api extends BaseAPI {
105097
106293
  }
105098
106294
 
105099
106295
  /**
105100
- * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
106296
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
105101
106297
  * @summary Machine Subtype Approval Config
105102
- * @param {MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest} requestParameters Request parameters.
106298
+ * @param {MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
105103
106299
  * @param {*} [axiosOptions] Override http request option.
105104
106300
  * @throws {RequiredError}
105105
106301
  * @memberof MachineAccountsV2026Api
105106
106302
  */
105107
- public updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
105108
- return MachineAccountsV2026ApiFp(this.configuration).updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
106303
+ public updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
106304
+ return MachineAccountsV2026ApiFp(this.configuration).updateMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
105109
106305
  }
105110
106306
  }
105111
106307
 
@@ -105457,7 +106653,7 @@ export const MachineIdentitiesV2026ApiAxiosParamCreator = function (configuratio
105457
106653
  return {
105458
106654
  /**
105459
106655
  * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
105460
- * @summary Create machine identities
106656
+ * @summary Create machine identity
105461
106657
  * @param {MachineIdentityRequestV2026} machineIdentityRequestV2026
105462
106658
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
105463
106659
  * @param {*} [axiosOptions] Override http request option.
@@ -105567,7 +106763,7 @@ export const MachineIdentitiesV2026ApiAxiosParamCreator = function (configuratio
105567
106763
  },
105568
106764
  /**
105569
106765
  * This API returns a single machine identity using the Machine Identity ID.
105570
- * @summary Machine identity details
106766
+ * @summary Get machine identity details
105571
106767
  * @param {string} id Machine Identity ID
105572
106768
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
105573
106769
  * @param {*} [axiosOptions] Override http request option.
@@ -105758,8 +106954,8 @@ export const MachineIdentitiesV2026ApiAxiosParamCreator = function (configuratio
105758
106954
  };
105759
106955
  },
105760
106956
  /**
105761
- * Use this API to aggregate machine identities (AI Agents).
105762
- * @summary Start Machine Identity (AI Agent) Aggregation
106957
+ * Starts a machine identity (AI Agents) aggregation on the specified source.
106958
+ * @summary Start machine identity aggregation
105763
106959
  * @param {MachineIdentityAggregationRequestV2026} machineIdentityAggregationRequestV2026
105764
106960
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
105765
106961
  * @param {*} [axiosOptions] Override http request option.
@@ -105811,7 +107007,7 @@ export const MachineIdentitiesV2026ApiAxiosParamCreator = function (configuratio
105811
107007
  },
105812
107008
  /**
105813
107009
  * Use this API to update machine identity details.
105814
- * @summary Update a machine identity
107010
+ * @summary Update machine identity details
105815
107011
  * @param {string} id Machine Identity ID.
105816
107012
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
105817
107013
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
@@ -105881,7 +107077,7 @@ export const MachineIdentitiesV2026ApiFp = function(configuration?: Configuratio
105881
107077
  return {
105882
107078
  /**
105883
107079
  * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
105884
- * @summary Create machine identities
107080
+ * @summary Create machine identity
105885
107081
  * @param {MachineIdentityRequestV2026} machineIdentityRequestV2026
105886
107082
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
105887
107083
  * @param {*} [axiosOptions] Override http request option.
@@ -105909,7 +107105,7 @@ export const MachineIdentitiesV2026ApiFp = function(configuration?: Configuratio
105909
107105
  },
105910
107106
  /**
105911
107107
  * This API returns a single machine identity using the Machine Identity ID.
105912
- * @summary Machine identity details
107108
+ * @summary Get machine identity details
105913
107109
  * @param {string} id Machine Identity ID
105914
107110
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
105915
107111
  * @param {*} [axiosOptions] Override http request option.
@@ -105958,8 +107154,8 @@ export const MachineIdentitiesV2026ApiFp = function(configuration?: Configuratio
105958
107154
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
105959
107155
  },
105960
107156
  /**
105961
- * Use this API to aggregate machine identities (AI Agents).
105962
- * @summary Start Machine Identity (AI Agent) Aggregation
107157
+ * Starts a machine identity (AI Agents) aggregation on the specified source.
107158
+ * @summary Start machine identity aggregation
105963
107159
  * @param {MachineIdentityAggregationRequestV2026} machineIdentityAggregationRequestV2026
105964
107160
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
105965
107161
  * @param {*} [axiosOptions] Override http request option.
@@ -105973,7 +107169,7 @@ export const MachineIdentitiesV2026ApiFp = function(configuration?: Configuratio
105973
107169
  },
105974
107170
  /**
105975
107171
  * Use this API to update machine identity details.
105976
- * @summary Update a machine identity
107172
+ * @summary Update machine identity details
105977
107173
  * @param {string} id Machine Identity ID.
105978
107174
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
105979
107175
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
@@ -105998,7 +107194,7 @@ export const MachineIdentitiesV2026ApiFactory = function (configuration?: Config
105998
107194
  return {
105999
107195
  /**
106000
107196
  * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
106001
- * @summary Create machine identities
107197
+ * @summary Create machine identity
106002
107198
  * @param {MachineIdentitiesV2026ApiCreateMachineIdentityRequest} requestParameters Request parameters.
106003
107199
  * @param {*} [axiosOptions] Override http request option.
106004
107200
  * @throws {RequiredError}
@@ -106018,7 +107214,7 @@ export const MachineIdentitiesV2026ApiFactory = function (configuration?: Config
106018
107214
  },
106019
107215
  /**
106020
107216
  * This API returns a single machine identity using the Machine Identity ID.
106021
- * @summary Machine identity details
107217
+ * @summary Get machine identity details
106022
107218
  * @param {MachineIdentitiesV2026ApiGetMachineIdentityRequest} requestParameters Request parameters.
106023
107219
  * @param {*} [axiosOptions] Override http request option.
106024
107220
  * @throws {RequiredError}
@@ -106047,8 +107243,8 @@ export const MachineIdentitiesV2026ApiFactory = function (configuration?: Config
106047
107243
  return localVarFp.listMachineIdentityUserEntitlements(requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
106048
107244
  },
106049
107245
  /**
106050
- * Use this API to aggregate machine identities (AI Agents).
106051
- * @summary Start Machine Identity (AI Agent) Aggregation
107246
+ * Starts a machine identity (AI Agents) aggregation on the specified source.
107247
+ * @summary Start machine identity aggregation
106052
107248
  * @param {MachineIdentitiesV2026ApiStartMachineIdentityAggregationRequest} requestParameters Request parameters.
106053
107249
  * @param {*} [axiosOptions] Override http request option.
106054
107250
  * @throws {RequiredError}
@@ -106058,7 +107254,7 @@ export const MachineIdentitiesV2026ApiFactory = function (configuration?: Config
106058
107254
  },
106059
107255
  /**
106060
107256
  * Use this API to update machine identity details.
106061
- * @summary Update a machine identity
107257
+ * @summary Update machine identity details
106062
107258
  * @param {MachineIdentitiesV2026ApiUpdateMachineIdentityRequest} requestParameters Request parameters.
106063
107259
  * @param {*} [axiosOptions] Override http request option.
106064
107260
  * @throws {RequiredError}
@@ -106288,7 +107484,7 @@ export interface MachineIdentitiesV2026ApiUpdateMachineIdentityRequest {
106288
107484
  export class MachineIdentitiesV2026Api extends BaseAPI {
106289
107485
  /**
106290
107486
  * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
106291
- * @summary Create machine identities
107487
+ * @summary Create machine identity
106292
107488
  * @param {MachineIdentitiesV2026ApiCreateMachineIdentityRequest} requestParameters Request parameters.
106293
107489
  * @param {*} [axiosOptions] Override http request option.
106294
107490
  * @throws {RequiredError}
@@ -106312,7 +107508,7 @@ export class MachineIdentitiesV2026Api extends BaseAPI {
106312
107508
 
106313
107509
  /**
106314
107510
  * This API returns a single machine identity using the Machine Identity ID.
106315
- * @summary Machine identity details
107511
+ * @summary Get machine identity details
106316
107512
  * @param {MachineIdentitiesV2026ApiGetMachineIdentityRequest} requestParameters Request parameters.
106317
107513
  * @param {*} [axiosOptions] Override http request option.
106318
107514
  * @throws {RequiredError}
@@ -106347,8 +107543,8 @@ export class MachineIdentitiesV2026Api extends BaseAPI {
106347
107543
  }
106348
107544
 
106349
107545
  /**
106350
- * Use this API to aggregate machine identities (AI Agents).
106351
- * @summary Start Machine Identity (AI Agent) Aggregation
107546
+ * Starts a machine identity (AI Agents) aggregation on the specified source.
107547
+ * @summary Start machine identity aggregation
106352
107548
  * @param {MachineIdentitiesV2026ApiStartMachineIdentityAggregationRequest} requestParameters Request parameters.
106353
107549
  * @param {*} [axiosOptions] Override http request option.
106354
107550
  * @throws {RequiredError}
@@ -106360,7 +107556,7 @@ export class MachineIdentitiesV2026Api extends BaseAPI {
106360
107556
 
106361
107557
  /**
106362
107558
  * Use this API to update machine identity details.
106363
- * @summary Update a machine identity
107559
+ * @summary Update machine identity details
106364
107560
  * @param {MachineIdentitiesV2026ApiUpdateMachineIdentityRequest} requestParameters Request parameters.
106365
107561
  * @param {*} [axiosOptions] Override http request option.
106366
107562
  * @throws {RequiredError}
@@ -134014,7 +135210,7 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
134014
135210
  * Deletes the provisioning policy with the specified usage on an application.
134015
135211
  * @summary Delete provisioning policy by usagetype
134016
135212
  * @param {string} sourceId The Source ID.
134017
- * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
135213
+ * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
134018
135214
  * @param {*} [axiosOptions] Override http request option.
134019
135215
  * @throws {RequiredError}
134020
135216
  */
@@ -134471,7 +135667,7 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
134471
135667
  * This end-point retrieves the ProvisioningPolicy with the specified usage on the specified Source in IdentityNow.
134472
135668
  * @summary Get provisioning policy by usagetype
134473
135669
  * @param {string} sourceId The Source ID.
134474
- * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
135670
+ * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
134475
135671
  * @param {*} [axiosOptions] Override http request option.
134476
135672
  * @throws {RequiredError}
134477
135673
  */
@@ -135381,10 +136577,12 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
135381
136577
  * This end-point lists all the ProvisioningPolicies in IdentityNow.
135382
136578
  * @summary Lists provisioningpolicies
135383
136579
  * @param {string} sourceId The Source id
136580
+ * @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
136581
+ * @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
135384
136582
  * @param {*} [axiosOptions] Override http request option.
135385
136583
  * @throws {RequiredError}
135386
136584
  */
135387
- listProvisioningPolicies: async (sourceId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
136585
+ listProvisioningPolicies: async (sourceId: string, offset?: number, limit?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
135388
136586
  // verify required parameter 'sourceId' is not null or undefined
135389
136587
  assertParamExists('listProvisioningPolicies', 'sourceId', sourceId)
135390
136588
  const localVarPath = `/sources/{sourceId}/provisioning-policies`
@@ -135412,6 +136610,14 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
135412
136610
  // oauth required
135413
136611
  await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
135414
136612
 
136613
+ if (offset !== undefined) {
136614
+ localVarQueryParameter['offset'] = offset;
136615
+ }
136616
+
136617
+ if (limit !== undefined) {
136618
+ localVarQueryParameter['limit'] = limit;
136619
+ }
136620
+
135415
136621
 
135416
136622
 
135417
136623
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -135654,7 +136860,7 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
135654
136860
  * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
135655
136861
  * @summary Update provisioning policy by usagetype
135656
136862
  * @param {string} sourceId The Source ID.
135657
- * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
136863
+ * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
135658
136864
  * @param {ProvisioningPolicyDtoV2026} provisioningPolicyDtoV2026
135659
136865
  * @param {*} [axiosOptions] Override http request option.
135660
136866
  * @throws {RequiredError}
@@ -136264,7 +137470,7 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
136264
137470
  * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
136265
137471
  * @summary Partial update of provisioning policy
136266
137472
  * @param {string} sourceId The Source id.
136267
- * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
137473
+ * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
136268
137474
  * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the schema.
136269
137475
  * @param {*} [axiosOptions] Override http request option.
136270
137476
  * @throws {RequiredError}
@@ -136628,7 +137834,7 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
136628
137834
  * Deletes the provisioning policy with the specified usage on an application.
136629
137835
  * @summary Delete provisioning policy by usagetype
136630
137836
  * @param {string} sourceId The Source ID.
136631
- * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
137837
+ * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
136632
137838
  * @param {*} [axiosOptions] Override http request option.
136633
137839
  * @throws {RequiredError}
136634
137840
  */
@@ -136762,7 +137968,7 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
136762
137968
  * This end-point retrieves the ProvisioningPolicy with the specified usage on the specified Source in IdentityNow.
136763
137969
  * @summary Get provisioning policy by usagetype
136764
137970
  * @param {string} sourceId The Source ID.
136765
- * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
137971
+ * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
136766
137972
  * @param {*} [axiosOptions] Override http request option.
136767
137973
  * @throws {RequiredError}
136768
137974
  */
@@ -137014,11 +138220,13 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
137014
138220
  * This end-point lists all the ProvisioningPolicies in IdentityNow.
137015
138221
  * @summary Lists provisioningpolicies
137016
138222
  * @param {string} sourceId The Source id
138223
+ * @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
138224
+ * @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
137017
138225
  * @param {*} [axiosOptions] Override http request option.
137018
138226
  * @throws {RequiredError}
137019
138227
  */
137020
- async listProvisioningPolicies(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDtoV2026>>> {
137021
- const localVarAxiosArgs = await localVarAxiosParamCreator.listProvisioningPolicies(sourceId, axiosOptions);
138228
+ async listProvisioningPolicies(sourceId: string, offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDtoV2026>>> {
138229
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listProvisioningPolicies(sourceId, offset, limit, axiosOptions);
137022
138230
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
137023
138231
  const localVarOperationServerBasePath = operationServerMap['SourcesV2026Api.listProvisioningPolicies']?.[localVarOperationServerIndex]?.url;
137024
138232
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -137087,7 +138295,7 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
137087
138295
  * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
137088
138296
  * @summary Update provisioning policy by usagetype
137089
138297
  * @param {string} sourceId The Source ID.
137090
- * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
138298
+ * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
137091
138299
  * @param {ProvisioningPolicyDtoV2026} provisioningPolicyDtoV2026
137092
138300
  * @param {*} [axiosOptions] Override http request option.
137093
138301
  * @throws {RequiredError}
@@ -137256,7 +138464,7 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
137256
138464
  * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
137257
138465
  * @summary Partial update of provisioning policy
137258
138466
  * @param {string} sourceId The Source id.
137259
- * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
138467
+ * @param {UsageTypeV2026} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
137260
138468
  * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the schema.
137261
138469
  * @param {*} [axiosOptions] Override http request option.
137262
138470
  * @throws {RequiredError}
@@ -137683,7 +138891,7 @@ export const SourcesV2026ApiFactory = function (configuration?: Configuration, b
137683
138891
  * @throws {RequiredError}
137684
138892
  */
137685
138893
  listProvisioningPolicies(requestParameters: SourcesV2026ApiListProvisioningPoliciesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningPolicyDtoV2026>> {
137686
- return localVarFp.listProvisioningPolicies(requestParameters.sourceId, axiosOptions).then((request) => request(axios, basePath));
138894
+ return localVarFp.listProvisioningPolicies(requestParameters.sourceId, requestParameters.offset, requestParameters.limit, axiosOptions).then((request) => request(axios, basePath));
137687
138895
  },
137688
138896
  /**
137689
138897
  * This end-point lists all the sources in IdentityNow.
@@ -138024,7 +139232,7 @@ export interface SourcesV2026ApiDeleteProvisioningPolicyRequest {
138024
139232
  readonly sourceId: string
138025
139233
 
138026
139234
  /**
138027
- * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
139235
+ * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
138028
139236
  * @type {UsageTypeV2026}
138029
139237
  * @memberof SourcesV2026ApiDeleteProvisioningPolicy
138030
139238
  */
@@ -138192,7 +139400,7 @@ export interface SourcesV2026ApiGetProvisioningPolicyRequest {
138192
139400
  readonly sourceId: string
138193
139401
 
138194
139402
  /**
138195
- * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
139403
+ * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
138196
139404
  * @type {UsageTypeV2026}
138197
139405
  * @memberof SourcesV2026ApiGetProvisioningPolicy
138198
139406
  */
@@ -138568,6 +139776,20 @@ export interface SourcesV2026ApiListProvisioningPoliciesRequest {
138568
139776
  * @memberof SourcesV2026ApiListProvisioningPolicies
138569
139777
  */
138570
139778
  readonly sourceId: string
139779
+
139780
+ /**
139781
+ * Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
139782
+ * @type {number}
139783
+ * @memberof SourcesV2026ApiListProvisioningPolicies
139784
+ */
139785
+ readonly offset?: number
139786
+
139787
+ /**
139788
+ * Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
139789
+ * @type {number}
139790
+ * @memberof SourcesV2026ApiListProvisioningPolicies
139791
+ */
139792
+ readonly limit?: number
138571
139793
  }
138572
139794
 
138573
139795
  /**
@@ -138696,7 +139918,7 @@ export interface SourcesV2026ApiPutProvisioningPolicyRequest {
138696
139918
  readonly sourceId: string
138697
139919
 
138698
139920
  /**
138699
- * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
139921
+ * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
138700
139922
  * @type {UsageTypeV2026}
138701
139923
  * @memberof SourcesV2026ApiPutProvisioningPolicy
138702
139924
  */
@@ -138955,7 +140177,7 @@ export interface SourcesV2026ApiUpdateProvisioningPolicyRequest {
138955
140177
  readonly sourceId: string
138956
140178
 
138957
140179
  /**
138958
- * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
140180
+ * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
138959
140181
  * @type {UsageTypeV2026}
138960
140182
  * @memberof SourcesV2026ApiUpdateProvisioningPolicy
138961
140183
  */
@@ -139491,7 +140713,7 @@ export class SourcesV2026Api extends BaseAPI {
139491
140713
  * @memberof SourcesV2026Api
139492
140714
  */
139493
140715
  public listProvisioningPolicies(requestParameters: SourcesV2026ApiListProvisioningPoliciesRequest, axiosOptions?: RawAxiosRequestConfig) {
139494
- return SourcesV2026ApiFp(this.configuration).listProvisioningPolicies(requestParameters.sourceId, axiosOptions).then((request) => request(this.axios, this.basePath));
140716
+ return SourcesV2026ApiFp(this.configuration).listProvisioningPolicies(requestParameters.sourceId, requestParameters.offset, requestParameters.limit, axiosOptions).then((request) => request(this.axios, this.basePath));
139495
140717
  }
139496
140718
 
139497
140719
  /**