sailpoint-api-client 1.8.6 → 1.8.7
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/beta/README.md +2 -2
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +410 -514
- package/dist/v2026/api.js +1053 -1230
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +1106 -1262
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2026/api.d.ts
CHANGED
|
@@ -55112,6 +55112,16 @@ export declare class AccountAggregationsV2026Api extends BaseAPI {
|
|
|
55112
55112
|
* @export
|
|
55113
55113
|
*/
|
|
55114
55114
|
export declare const AccountDeletionRequestsV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
55115
|
+
/**
|
|
55116
|
+
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
55117
|
+
* @summary Delete account
|
|
55118
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55119
|
+
* @param {string} accountId Account ID.
|
|
55120
|
+
* @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
|
|
55121
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
55122
|
+
* @throws {RequiredError}
|
|
55123
|
+
*/
|
|
55124
|
+
deleteAccountRequest: (xSailPointExperimental: string, accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55115
55125
|
/**
|
|
55116
55126
|
* Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
|
|
55117
55127
|
* @summary List of Account Deletion Requests
|
|
@@ -55130,6 +55140,16 @@ export declare const AccountDeletionRequestsV2026ApiAxiosParamCreator: (configur
|
|
|
55130
55140
|
* @export
|
|
55131
55141
|
*/
|
|
55132
55142
|
export declare const AccountDeletionRequestsV2026ApiFp: (configuration?: Configuration) => {
|
|
55143
|
+
/**
|
|
55144
|
+
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
55145
|
+
* @summary Delete account
|
|
55146
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55147
|
+
* @param {string} accountId Account ID.
|
|
55148
|
+
* @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
|
|
55149
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
55150
|
+
* @throws {RequiredError}
|
|
55151
|
+
*/
|
|
55152
|
+
deleteAccountRequest(xSailPointExperimental: string, accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteAsyncResultV2026>>;
|
|
55133
55153
|
/**
|
|
55134
55154
|
* Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
|
|
55135
55155
|
* @summary List of Account Deletion Requests
|
|
@@ -55148,6 +55168,14 @@ export declare const AccountDeletionRequestsV2026ApiFp: (configuration?: Configu
|
|
|
55148
55168
|
* @export
|
|
55149
55169
|
*/
|
|
55150
55170
|
export declare const AccountDeletionRequestsV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
55171
|
+
/**
|
|
55172
|
+
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
55173
|
+
* @summary Delete account
|
|
55174
|
+
* @param {AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest} requestParameters Request parameters.
|
|
55175
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
55176
|
+
* @throws {RequiredError}
|
|
55177
|
+
*/
|
|
55178
|
+
deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteAsyncResultV2026>;
|
|
55151
55179
|
/**
|
|
55152
55180
|
* Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
|
|
55153
55181
|
* @summary List of Account Deletion Requests
|
|
@@ -55157,6 +55185,31 @@ export declare const AccountDeletionRequestsV2026ApiFactory: (configuration?: Co
|
|
|
55157
55185
|
*/
|
|
55158
55186
|
getAccountDeletionRequests(requestParameters: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccountActionRequestDtoV2026>>;
|
|
55159
55187
|
};
|
|
55188
|
+
/**
|
|
55189
|
+
* Request parameters for deleteAccountRequest operation in AccountDeletionRequestsV2026Api.
|
|
55190
|
+
* @export
|
|
55191
|
+
* @interface AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest
|
|
55192
|
+
*/
|
|
55193
|
+
export interface AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest {
|
|
55194
|
+
/**
|
|
55195
|
+
* Use this header to enable this experimental API.
|
|
55196
|
+
* @type {string}
|
|
55197
|
+
* @memberof AccountDeletionRequestsV2026ApiDeleteAccountRequest
|
|
55198
|
+
*/
|
|
55199
|
+
readonly xSailPointExperimental: string;
|
|
55200
|
+
/**
|
|
55201
|
+
* Account ID.
|
|
55202
|
+
* @type {string}
|
|
55203
|
+
* @memberof AccountDeletionRequestsV2026ApiDeleteAccountRequest
|
|
55204
|
+
*/
|
|
55205
|
+
readonly accountId: string;
|
|
55206
|
+
/**
|
|
55207
|
+
*
|
|
55208
|
+
* @type {AccountDeleteRequestInputV2026}
|
|
55209
|
+
* @memberof AccountDeletionRequestsV2026ApiDeleteAccountRequest
|
|
55210
|
+
*/
|
|
55211
|
+
readonly accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026;
|
|
55212
|
+
}
|
|
55160
55213
|
/**
|
|
55161
55214
|
* Request parameters for getAccountDeletionRequests operation in AccountDeletionRequestsV2026Api.
|
|
55162
55215
|
* @export
|
|
@@ -55201,6 +55254,15 @@ export interface AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsReques
|
|
|
55201
55254
|
* @extends {BaseAPI}
|
|
55202
55255
|
*/
|
|
55203
55256
|
export declare class AccountDeletionRequestsV2026Api extends BaseAPI {
|
|
55257
|
+
/**
|
|
55258
|
+
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
55259
|
+
* @summary Delete account
|
|
55260
|
+
* @param {AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest} requestParameters Request parameters.
|
|
55261
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
55262
|
+
* @throws {RequiredError}
|
|
55263
|
+
* @memberof AccountDeletionRequestsV2026Api
|
|
55264
|
+
*/
|
|
55265
|
+
deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteAsyncResultV2026, any>>;
|
|
55204
55266
|
/**
|
|
55205
55267
|
* Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
|
|
55206
55268
|
* @summary List of Account Deletion Requests
|
|
@@ -67812,94 +67874,6 @@ export declare class DeclassifySourceV2026Api extends BaseAPI {
|
|
|
67812
67874
|
*/
|
|
67813
67875
|
sendDeclassifyMachineAccountFromSource(requestParameters: DeclassifySourceV2026ApiSendDeclassifyMachineAccountFromSourceRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
67814
67876
|
}
|
|
67815
|
-
/**
|
|
67816
|
-
* DeleteAccountV2026Api - axios parameter creator
|
|
67817
|
-
* @export
|
|
67818
|
-
*/
|
|
67819
|
-
export declare const DeleteAccountV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
67820
|
-
/**
|
|
67821
|
-
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
67822
|
-
* @summary Delete account
|
|
67823
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67824
|
-
* @param {string} accountId Account ID.
|
|
67825
|
-
* @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
|
|
67826
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
67827
|
-
* @throws {RequiredError}
|
|
67828
|
-
*/
|
|
67829
|
-
deleteAccountRequest: (xSailPointExperimental: string, accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67830
|
-
};
|
|
67831
|
-
/**
|
|
67832
|
-
* DeleteAccountV2026Api - functional programming interface
|
|
67833
|
-
* @export
|
|
67834
|
-
*/
|
|
67835
|
-
export declare const DeleteAccountV2026ApiFp: (configuration?: Configuration) => {
|
|
67836
|
-
/**
|
|
67837
|
-
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
67838
|
-
* @summary Delete account
|
|
67839
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
67840
|
-
* @param {string} accountId Account ID.
|
|
67841
|
-
* @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
|
|
67842
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
67843
|
-
* @throws {RequiredError}
|
|
67844
|
-
*/
|
|
67845
|
-
deleteAccountRequest(xSailPointExperimental: string, accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteAsyncResultV2026>>;
|
|
67846
|
-
};
|
|
67847
|
-
/**
|
|
67848
|
-
* DeleteAccountV2026Api - factory interface
|
|
67849
|
-
* @export
|
|
67850
|
-
*/
|
|
67851
|
-
export declare const DeleteAccountV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
67852
|
-
/**
|
|
67853
|
-
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
67854
|
-
* @summary Delete account
|
|
67855
|
-
* @param {DeleteAccountV2026ApiDeleteAccountRequestRequest} requestParameters Request parameters.
|
|
67856
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
67857
|
-
* @throws {RequiredError}
|
|
67858
|
-
*/
|
|
67859
|
-
deleteAccountRequest(requestParameters: DeleteAccountV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteAsyncResultV2026>;
|
|
67860
|
-
};
|
|
67861
|
-
/**
|
|
67862
|
-
* Request parameters for deleteAccountRequest operation in DeleteAccountV2026Api.
|
|
67863
|
-
* @export
|
|
67864
|
-
* @interface DeleteAccountV2026ApiDeleteAccountRequestRequest
|
|
67865
|
-
*/
|
|
67866
|
-
export interface DeleteAccountV2026ApiDeleteAccountRequestRequest {
|
|
67867
|
-
/**
|
|
67868
|
-
* Use this header to enable this experimental API.
|
|
67869
|
-
* @type {string}
|
|
67870
|
-
* @memberof DeleteAccountV2026ApiDeleteAccountRequest
|
|
67871
|
-
*/
|
|
67872
|
-
readonly xSailPointExperimental: string;
|
|
67873
|
-
/**
|
|
67874
|
-
* Account ID.
|
|
67875
|
-
* @type {string}
|
|
67876
|
-
* @memberof DeleteAccountV2026ApiDeleteAccountRequest
|
|
67877
|
-
*/
|
|
67878
|
-
readonly accountId: string;
|
|
67879
|
-
/**
|
|
67880
|
-
*
|
|
67881
|
-
* @type {AccountDeleteRequestInputV2026}
|
|
67882
|
-
* @memberof DeleteAccountV2026ApiDeleteAccountRequest
|
|
67883
|
-
*/
|
|
67884
|
-
readonly accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026;
|
|
67885
|
-
}
|
|
67886
|
-
/**
|
|
67887
|
-
* DeleteAccountV2026Api - object-oriented interface
|
|
67888
|
-
* @export
|
|
67889
|
-
* @class DeleteAccountV2026Api
|
|
67890
|
-
* @extends {BaseAPI}
|
|
67891
|
-
*/
|
|
67892
|
-
export declare class DeleteAccountV2026Api extends BaseAPI {
|
|
67893
|
-
/**
|
|
67894
|
-
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
67895
|
-
* @summary Delete account
|
|
67896
|
-
* @param {DeleteAccountV2026ApiDeleteAccountRequestRequest} requestParameters Request parameters.
|
|
67897
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
67898
|
-
* @throws {RequiredError}
|
|
67899
|
-
* @memberof DeleteAccountV2026Api
|
|
67900
|
-
*/
|
|
67901
|
-
deleteAccountRequest(requestParameters: DeleteAccountV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteAsyncResultV2026, any>>;
|
|
67902
|
-
}
|
|
67903
67877
|
/**
|
|
67904
67878
|
* DimensionsV2026Api - axios parameter creator
|
|
67905
67879
|
* @export
|
|
@@ -70294,148 +70268,6 @@ export declare class GovernanceGroupsV2026Api extends BaseAPI {
|
|
|
70294
70268
|
*/
|
|
70295
70269
|
updateWorkgroupMembers(requestParameters: GovernanceGroupsV2026ApiUpdateWorkgroupMembersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkgroupMemberAddItemV2026[], any>>;
|
|
70296
70270
|
}
|
|
70297
|
-
/**
|
|
70298
|
-
* HumanAccountDeletionApprovalConfigV2026Api - axios parameter creator
|
|
70299
|
-
* @export
|
|
70300
|
-
*/
|
|
70301
|
-
export declare const HumanAccountDeletionApprovalConfigV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
70302
|
-
/**
|
|
70303
|
-
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
70304
|
-
* @summary Human Account Deletion Approval Config
|
|
70305
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70306
|
-
* @param {string} sourceId The Source id
|
|
70307
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
70308
|
-
* @throws {RequiredError}
|
|
70309
|
-
*/
|
|
70310
|
-
getAccountDeleteApprovalConfig: (xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70311
|
-
/**
|
|
70312
|
-
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
70313
|
-
* @summary Human Account Deletion Approval Config
|
|
70314
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70315
|
-
* @param {string} sourceId Human account source ID.
|
|
70316
|
-
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
70317
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
70318
|
-
* @throws {RequiredError}
|
|
70319
|
-
*/
|
|
70320
|
-
updateAccountDeletionApprovalConfig: (xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70321
|
-
};
|
|
70322
|
-
/**
|
|
70323
|
-
* HumanAccountDeletionApprovalConfigV2026Api - functional programming interface
|
|
70324
|
-
* @export
|
|
70325
|
-
*/
|
|
70326
|
-
export declare const HumanAccountDeletionApprovalConfigV2026ApiFp: (configuration?: Configuration) => {
|
|
70327
|
-
/**
|
|
70328
|
-
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
70329
|
-
* @summary Human Account Deletion Approval Config
|
|
70330
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70331
|
-
* @param {string} sourceId The Source id
|
|
70332
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
70333
|
-
* @throws {RequiredError}
|
|
70334
|
-
*/
|
|
70335
|
-
getAccountDeleteApprovalConfig(xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
70336
|
-
/**
|
|
70337
|
-
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
70338
|
-
* @summary Human Account Deletion Approval Config
|
|
70339
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
70340
|
-
* @param {string} sourceId Human account source ID.
|
|
70341
|
-
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
70342
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
70343
|
-
* @throws {RequiredError}
|
|
70344
|
-
*/
|
|
70345
|
-
updateAccountDeletionApprovalConfig(xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
70346
|
-
};
|
|
70347
|
-
/**
|
|
70348
|
-
* HumanAccountDeletionApprovalConfigV2026Api - factory interface
|
|
70349
|
-
* @export
|
|
70350
|
-
*/
|
|
70351
|
-
export declare const HumanAccountDeletionApprovalConfigV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
70352
|
-
/**
|
|
70353
|
-
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
70354
|
-
* @summary Human Account Deletion Approval Config
|
|
70355
|
-
* @param {HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest} requestParameters Request parameters.
|
|
70356
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
70357
|
-
* @throws {RequiredError}
|
|
70358
|
-
*/
|
|
70359
|
-
getAccountDeleteApprovalConfig(requestParameters: HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
|
|
70360
|
-
/**
|
|
70361
|
-
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
70362
|
-
* @summary Human Account Deletion Approval Config
|
|
70363
|
-
* @param {HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
|
|
70364
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
70365
|
-
* @throws {RequiredError}
|
|
70366
|
-
*/
|
|
70367
|
-
updateAccountDeletionApprovalConfig(requestParameters: HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
|
|
70368
|
-
};
|
|
70369
|
-
/**
|
|
70370
|
-
* Request parameters for getAccountDeleteApprovalConfig operation in HumanAccountDeletionApprovalConfigV2026Api.
|
|
70371
|
-
* @export
|
|
70372
|
-
* @interface HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest
|
|
70373
|
-
*/
|
|
70374
|
-
export interface HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest {
|
|
70375
|
-
/**
|
|
70376
|
-
* Use this header to enable this experimental API.
|
|
70377
|
-
* @type {string}
|
|
70378
|
-
* @memberof HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfig
|
|
70379
|
-
*/
|
|
70380
|
-
readonly xSailPointExperimental: string;
|
|
70381
|
-
/**
|
|
70382
|
-
* The Source id
|
|
70383
|
-
* @type {string}
|
|
70384
|
-
* @memberof HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfig
|
|
70385
|
-
*/
|
|
70386
|
-
readonly sourceId: string;
|
|
70387
|
-
}
|
|
70388
|
-
/**
|
|
70389
|
-
* Request parameters for updateAccountDeletionApprovalConfig operation in HumanAccountDeletionApprovalConfigV2026Api.
|
|
70390
|
-
* @export
|
|
70391
|
-
* @interface HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest
|
|
70392
|
-
*/
|
|
70393
|
-
export interface HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest {
|
|
70394
|
-
/**
|
|
70395
|
-
* Use this header to enable this experimental API.
|
|
70396
|
-
* @type {string}
|
|
70397
|
-
* @memberof HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfig
|
|
70398
|
-
*/
|
|
70399
|
-
readonly xSailPointExperimental: string;
|
|
70400
|
-
/**
|
|
70401
|
-
* Human account source ID.
|
|
70402
|
-
* @type {string}
|
|
70403
|
-
* @memberof HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfig
|
|
70404
|
-
*/
|
|
70405
|
-
readonly sourceId: string;
|
|
70406
|
-
/**
|
|
70407
|
-
* The JSONPatch payload used to update the object.
|
|
70408
|
-
* @type {Array<JsonPatchOperationV2026>}
|
|
70409
|
-
* @memberof HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfig
|
|
70410
|
-
*/
|
|
70411
|
-
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
|
|
70412
|
-
}
|
|
70413
|
-
/**
|
|
70414
|
-
* HumanAccountDeletionApprovalConfigV2026Api - object-oriented interface
|
|
70415
|
-
* @export
|
|
70416
|
-
* @class HumanAccountDeletionApprovalConfigV2026Api
|
|
70417
|
-
* @extends {BaseAPI}
|
|
70418
|
-
*/
|
|
70419
|
-
export declare class HumanAccountDeletionApprovalConfigV2026Api extends BaseAPI {
|
|
70420
|
-
/**
|
|
70421
|
-
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
70422
|
-
* @summary Human Account Deletion Approval Config
|
|
70423
|
-
* @param {HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest} requestParameters Request parameters.
|
|
70424
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
70425
|
-
* @throws {RequiredError}
|
|
70426
|
-
* @memberof HumanAccountDeletionApprovalConfigV2026Api
|
|
70427
|
-
*/
|
|
70428
|
-
getAccountDeleteApprovalConfig(requestParameters: HumanAccountDeletionApprovalConfigV2026ApiGetAccountDeleteApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
70429
|
-
/**
|
|
70430
|
-
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
70431
|
-
* @summary Human Account Deletion Approval Config
|
|
70432
|
-
* @param {HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
|
|
70433
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
70434
|
-
* @throws {RequiredError}
|
|
70435
|
-
* @memberof HumanAccountDeletionApprovalConfigV2026Api
|
|
70436
|
-
*/
|
|
70437
|
-
updateAccountDeletionApprovalConfig(requestParameters: HumanAccountDeletionApprovalConfigV2026ApiUpdateAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
70438
|
-
}
|
|
70439
70271
|
/**
|
|
70440
70272
|
* IAIAccessRequestRecommendationsV2026Api - axios parameter creator
|
|
70441
70273
|
* @export
|
|
@@ -78257,148 +78089,6 @@ export declare const SendClassifyMachineAccountClassificationModeV2026: {
|
|
|
78257
78089
|
readonly ForceHuman: "forceHuman";
|
|
78258
78090
|
};
|
|
78259
78091
|
export type SendClassifyMachineAccountClassificationModeV2026 = typeof SendClassifyMachineAccountClassificationModeV2026[keyof typeof SendClassifyMachineAccountClassificationModeV2026];
|
|
78260
|
-
/**
|
|
78261
|
-
* MachineAccountDeletionApprovalConfigV2026Api - axios parameter creator
|
|
78262
|
-
* @export
|
|
78263
|
-
*/
|
|
78264
|
-
export declare const MachineAccountDeletionApprovalConfigV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
78265
|
-
/**
|
|
78266
|
-
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
78267
|
-
* @summary Machine Account Deletion Approval Config
|
|
78268
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78269
|
-
* @param {string} sourceId source id.
|
|
78270
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
78271
|
-
* @throws {RequiredError}
|
|
78272
|
-
*/
|
|
78273
|
-
getMachineAccountDeletionApprovalConfigBySource: (xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78274
|
-
/**
|
|
78275
|
-
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
78276
|
-
* @summary Machine Account Deletion Approval Config
|
|
78277
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78278
|
-
* @param {string} sourceId machine account source ID.
|
|
78279
|
-
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
78280
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
78281
|
-
* @throws {RequiredError}
|
|
78282
|
-
*/
|
|
78283
|
-
updateMachineAccountDeletionApprovalConfig: (xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78284
|
-
};
|
|
78285
|
-
/**
|
|
78286
|
-
* MachineAccountDeletionApprovalConfigV2026Api - functional programming interface
|
|
78287
|
-
* @export
|
|
78288
|
-
*/
|
|
78289
|
-
export declare const MachineAccountDeletionApprovalConfigV2026ApiFp: (configuration?: Configuration) => {
|
|
78290
|
-
/**
|
|
78291
|
-
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
78292
|
-
* @summary Machine Account Deletion Approval Config
|
|
78293
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78294
|
-
* @param {string} sourceId source id.
|
|
78295
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
78296
|
-
* @throws {RequiredError}
|
|
78297
|
-
*/
|
|
78298
|
-
getMachineAccountDeletionApprovalConfigBySource(xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
78299
|
-
/**
|
|
78300
|
-
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
78301
|
-
* @summary Machine Account Deletion Approval Config
|
|
78302
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78303
|
-
* @param {string} sourceId machine account source ID.
|
|
78304
|
-
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
78305
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
78306
|
-
* @throws {RequiredError}
|
|
78307
|
-
*/
|
|
78308
|
-
updateMachineAccountDeletionApprovalConfig(xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
78309
|
-
};
|
|
78310
|
-
/**
|
|
78311
|
-
* MachineAccountDeletionApprovalConfigV2026Api - factory interface
|
|
78312
|
-
* @export
|
|
78313
|
-
*/
|
|
78314
|
-
export declare const MachineAccountDeletionApprovalConfigV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
78315
|
-
/**
|
|
78316
|
-
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
78317
|
-
* @summary Machine Account Deletion Approval Config
|
|
78318
|
-
* @param {MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest} requestParameters Request parameters.
|
|
78319
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
78320
|
-
* @throws {RequiredError}
|
|
78321
|
-
*/
|
|
78322
|
-
getMachineAccountDeletionApprovalConfigBySource(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
|
|
78323
|
-
/**
|
|
78324
|
-
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
78325
|
-
* @summary Machine Account Deletion Approval Config
|
|
78326
|
-
* @param {MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
|
|
78327
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
78328
|
-
* @throws {RequiredError}
|
|
78329
|
-
*/
|
|
78330
|
-
updateMachineAccountDeletionApprovalConfig(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
|
|
78331
|
-
};
|
|
78332
|
-
/**
|
|
78333
|
-
* Request parameters for getMachineAccountDeletionApprovalConfigBySource operation in MachineAccountDeletionApprovalConfigV2026Api.
|
|
78334
|
-
* @export
|
|
78335
|
-
* @interface MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest
|
|
78336
|
-
*/
|
|
78337
|
-
export interface MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest {
|
|
78338
|
-
/**
|
|
78339
|
-
* Use this header to enable this experimental API.
|
|
78340
|
-
* @type {string}
|
|
78341
|
-
* @memberof MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySource
|
|
78342
|
-
*/
|
|
78343
|
-
readonly xSailPointExperimental: string;
|
|
78344
|
-
/**
|
|
78345
|
-
* source id.
|
|
78346
|
-
* @type {string}
|
|
78347
|
-
* @memberof MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySource
|
|
78348
|
-
*/
|
|
78349
|
-
readonly sourceId: string;
|
|
78350
|
-
}
|
|
78351
|
-
/**
|
|
78352
|
-
* Request parameters for updateMachineAccountDeletionApprovalConfig operation in MachineAccountDeletionApprovalConfigV2026Api.
|
|
78353
|
-
* @export
|
|
78354
|
-
* @interface MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest
|
|
78355
|
-
*/
|
|
78356
|
-
export interface MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest {
|
|
78357
|
-
/**
|
|
78358
|
-
* Use this header to enable this experimental API.
|
|
78359
|
-
* @type {string}
|
|
78360
|
-
* @memberof MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfig
|
|
78361
|
-
*/
|
|
78362
|
-
readonly xSailPointExperimental: string;
|
|
78363
|
-
/**
|
|
78364
|
-
* machine account source ID.
|
|
78365
|
-
* @type {string}
|
|
78366
|
-
* @memberof MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfig
|
|
78367
|
-
*/
|
|
78368
|
-
readonly sourceId: string;
|
|
78369
|
-
/**
|
|
78370
|
-
* The JSONPatch payload used to update the object.
|
|
78371
|
-
* @type {Array<JsonPatchOperationV2026>}
|
|
78372
|
-
* @memberof MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfig
|
|
78373
|
-
*/
|
|
78374
|
-
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
|
|
78375
|
-
}
|
|
78376
|
-
/**
|
|
78377
|
-
* MachineAccountDeletionApprovalConfigV2026Api - object-oriented interface
|
|
78378
|
-
* @export
|
|
78379
|
-
* @class MachineAccountDeletionApprovalConfigV2026Api
|
|
78380
|
-
* @extends {BaseAPI}
|
|
78381
|
-
*/
|
|
78382
|
-
export declare class MachineAccountDeletionApprovalConfigV2026Api extends BaseAPI {
|
|
78383
|
-
/**
|
|
78384
|
-
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
78385
|
-
* @summary Machine Account Deletion Approval Config
|
|
78386
|
-
* @param {MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest} requestParameters Request parameters.
|
|
78387
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
78388
|
-
* @throws {RequiredError}
|
|
78389
|
-
* @memberof MachineAccountDeletionApprovalConfigV2026Api
|
|
78390
|
-
*/
|
|
78391
|
-
getMachineAccountDeletionApprovalConfigBySource(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
78392
|
-
/**
|
|
78393
|
-
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
78394
|
-
* @summary Machine Account Deletion Approval Config
|
|
78395
|
-
* @param {MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
|
|
78396
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
78397
|
-
* @throws {RequiredError}
|
|
78398
|
-
* @memberof MachineAccountDeletionApprovalConfigV2026Api
|
|
78399
|
-
*/
|
|
78400
|
-
updateMachineAccountDeletionApprovalConfig(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
78401
|
-
}
|
|
78402
78092
|
/**
|
|
78403
78093
|
* MachineAccountMappingsV2026Api - axios parameter creator
|
|
78404
78094
|
* @export
|
|
@@ -78675,6 +78365,15 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78675
78365
|
* @throws {RequiredError}
|
|
78676
78366
|
*/
|
|
78677
78367
|
getMachineAccount: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78368
|
+
/**
|
|
78369
|
+
* 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.
|
|
78370
|
+
* @summary Machine Subtype Approval Config
|
|
78371
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78372
|
+
* @param {string} subtypeId machine subtype id.
|
|
78373
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78374
|
+
* @throws {RequiredError}
|
|
78375
|
+
*/
|
|
78376
|
+
getMachineAccountDeletionSubTypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78678
78377
|
/**
|
|
78679
78378
|
* Get a machine account subtype by its unique ID.
|
|
78680
78379
|
* @summary Retrieve subtype by subtype id
|
|
@@ -78742,6 +78441,16 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78742
78441
|
* @throws {RequiredError}
|
|
78743
78442
|
*/
|
|
78744
78443
|
updateMachineAccount: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78444
|
+
/**
|
|
78445
|
+
* 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.
|
|
78446
|
+
* @summary Machine Subtype Approval Config
|
|
78447
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78448
|
+
* @param {string} subtypeId machine account subtype ID.
|
|
78449
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
78450
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78451
|
+
* @throws {RequiredError}
|
|
78452
|
+
*/
|
|
78453
|
+
updateMachineAccountDeletionBySubTypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78745
78454
|
};
|
|
78746
78455
|
/**
|
|
78747
78456
|
* MachineAccountsV2026Api - functional programming interface
|
|
@@ -78777,6 +78486,15 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78777
78486
|
* @throws {RequiredError}
|
|
78778
78487
|
*/
|
|
78779
78488
|
getMachineAccount(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2026>>;
|
|
78489
|
+
/**
|
|
78490
|
+
* 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.
|
|
78491
|
+
* @summary Machine Subtype Approval Config
|
|
78492
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78493
|
+
* @param {string} subtypeId machine subtype id.
|
|
78494
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78495
|
+
* @throws {RequiredError}
|
|
78496
|
+
*/
|
|
78497
|
+
getMachineAccountDeletionSubTypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>>;
|
|
78780
78498
|
/**
|
|
78781
78499
|
* Get a machine account subtype by its unique ID.
|
|
78782
78500
|
* @summary Retrieve subtype by subtype id
|
|
@@ -78844,6 +78562,16 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78844
78562
|
* @throws {RequiredError}
|
|
78845
78563
|
*/
|
|
78846
78564
|
updateMachineAccount(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2026>>;
|
|
78565
|
+
/**
|
|
78566
|
+
* 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.
|
|
78567
|
+
* @summary Machine Subtype Approval Config
|
|
78568
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78569
|
+
* @param {string} subtypeId machine account subtype ID.
|
|
78570
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
78571
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78572
|
+
* @throws {RequiredError}
|
|
78573
|
+
*/
|
|
78574
|
+
updateMachineAccountDeletionBySubTypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>>;
|
|
78847
78575
|
};
|
|
78848
78576
|
/**
|
|
78849
78577
|
* MachineAccountsV2026Api - factory interface
|
|
@@ -78874,6 +78602,14 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
78874
78602
|
* @throws {RequiredError}
|
|
78875
78603
|
*/
|
|
78876
78604
|
getMachineAccount(requestParameters: MachineAccountsV2026ApiGetMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2026>;
|
|
78605
|
+
/**
|
|
78606
|
+
* 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.
|
|
78607
|
+
* @summary Machine Subtype Approval Config
|
|
78608
|
+
* @param {MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest} requestParameters Request parameters.
|
|
78609
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78610
|
+
* @throws {RequiredError}
|
|
78611
|
+
*/
|
|
78612
|
+
getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026>;
|
|
78877
78613
|
/**
|
|
78878
78614
|
* Get a machine account subtype by its unique ID.
|
|
78879
78615
|
* @summary Retrieve subtype by subtype id
|
|
@@ -78922,6 +78658,14 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
78922
78658
|
* @throws {RequiredError}
|
|
78923
78659
|
*/
|
|
78924
78660
|
updateMachineAccount(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2026>;
|
|
78661
|
+
/**
|
|
78662
|
+
* 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.
|
|
78663
|
+
* @summary Machine Subtype Approval Config
|
|
78664
|
+
* @param {MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest} requestParameters Request parameters.
|
|
78665
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78666
|
+
* @throws {RequiredError}
|
|
78667
|
+
*/
|
|
78668
|
+
updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026>;
|
|
78925
78669
|
};
|
|
78926
78670
|
/**
|
|
78927
78671
|
* Request parameters for createMachineAccountSubtype operation in MachineAccountsV2026Api.
|
|
@@ -78992,6 +78736,25 @@ export interface MachineAccountsV2026ApiGetMachineAccountRequest {
|
|
|
78992
78736
|
*/
|
|
78993
78737
|
readonly xSailPointExperimental?: string;
|
|
78994
78738
|
}
|
|
78739
|
+
/**
|
|
78740
|
+
* Request parameters for getMachineAccountDeletionSubTypeApprovalConfig operation in MachineAccountsV2026Api.
|
|
78741
|
+
* @export
|
|
78742
|
+
* @interface MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest
|
|
78743
|
+
*/
|
|
78744
|
+
export interface MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest {
|
|
78745
|
+
/**
|
|
78746
|
+
* Use this header to enable this experimental API.
|
|
78747
|
+
* @type {string}
|
|
78748
|
+
* @memberof MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
|
|
78749
|
+
*/
|
|
78750
|
+
readonly xSailPointExperimental: string;
|
|
78751
|
+
/**
|
|
78752
|
+
* machine subtype id.
|
|
78753
|
+
* @type {string}
|
|
78754
|
+
* @memberof MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
|
|
78755
|
+
*/
|
|
78756
|
+
readonly subtypeId: string;
|
|
78757
|
+
}
|
|
78995
78758
|
/**
|
|
78996
78759
|
* Request parameters for getMachineAccountSubtypeById operation in MachineAccountsV2026Api.
|
|
78997
78760
|
* @export
|
|
@@ -79184,6 +78947,31 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountRequest {
|
|
|
79184
78947
|
*/
|
|
79185
78948
|
readonly xSailPointExperimental?: string;
|
|
79186
78949
|
}
|
|
78950
|
+
/**
|
|
78951
|
+
* Request parameters for updateMachineAccountDeletionBySubTypeApprovalConfig operation in MachineAccountsV2026Api.
|
|
78952
|
+
* @export
|
|
78953
|
+
* @interface MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest
|
|
78954
|
+
*/
|
|
78955
|
+
export interface MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest {
|
|
78956
|
+
/**
|
|
78957
|
+
* Use this header to enable this experimental API.
|
|
78958
|
+
* @type {string}
|
|
78959
|
+
* @memberof MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
|
|
78960
|
+
*/
|
|
78961
|
+
readonly xSailPointExperimental: string;
|
|
78962
|
+
/**
|
|
78963
|
+
* machine account subtype ID.
|
|
78964
|
+
* @type {string}
|
|
78965
|
+
* @memberof MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
|
|
78966
|
+
*/
|
|
78967
|
+
readonly subtypeId: string;
|
|
78968
|
+
/**
|
|
78969
|
+
* The JSONPatch payload used to update the object.
|
|
78970
|
+
* @type {Array<JsonPatchOperationV2026>}
|
|
78971
|
+
* @memberof MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
|
|
78972
|
+
*/
|
|
78973
|
+
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
|
|
78974
|
+
}
|
|
79187
78975
|
/**
|
|
79188
78976
|
* MachineAccountsV2026Api - object-oriented interface
|
|
79189
78977
|
* @export
|
|
@@ -79218,6 +79006,15 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
79218
79006
|
* @memberof MachineAccountsV2026Api
|
|
79219
79007
|
*/
|
|
79220
79008
|
getMachineAccount(requestParameters: MachineAccountsV2026ApiGetMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2026, any>>;
|
|
79009
|
+
/**
|
|
79010
|
+
* 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.
|
|
79011
|
+
* @summary Machine Subtype Approval Config
|
|
79012
|
+
* @param {MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest} requestParameters Request parameters.
|
|
79013
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79014
|
+
* @throws {RequiredError}
|
|
79015
|
+
* @memberof MachineAccountsV2026Api
|
|
79016
|
+
*/
|
|
79017
|
+
getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubTypeConfigDtoV2026, any>>;
|
|
79221
79018
|
/**
|
|
79222
79019
|
* Get a machine account subtype by its unique ID.
|
|
79223
79020
|
* @summary Retrieve subtype by subtype id
|
|
@@ -79272,6 +79069,15 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
79272
79069
|
* @memberof MachineAccountsV2026Api
|
|
79273
79070
|
*/
|
|
79274
79071
|
updateMachineAccount(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2026, any>>;
|
|
79072
|
+
/**
|
|
79073
|
+
* 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.
|
|
79074
|
+
* @summary Machine Subtype Approval Config
|
|
79075
|
+
* @param {MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest} requestParameters Request parameters.
|
|
79076
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79077
|
+
* @throws {RequiredError}
|
|
79078
|
+
* @memberof MachineAccountsV2026Api
|
|
79079
|
+
*/
|
|
79080
|
+
updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubTypeConfigDtoV2026, any>>;
|
|
79275
79081
|
}
|
|
79276
79082
|
/**
|
|
79277
79083
|
* MachineClassificationConfigV2026Api - axios parameter creator
|
|
@@ -79921,148 +79727,6 @@ export declare class MachineIdentitiesV2026Api extends BaseAPI {
|
|
|
79921
79727
|
*/
|
|
79922
79728
|
updateMachineIdentity(requestParameters: MachineIdentitiesV2026ApiUpdateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineIdentityResponseV2026, any>>;
|
|
79923
79729
|
}
|
|
79924
|
-
/**
|
|
79925
|
-
* MachineSubtypeApprovalConfigV2026Api - axios parameter creator
|
|
79926
|
-
* @export
|
|
79927
|
-
*/
|
|
79928
|
-
export declare const MachineSubtypeApprovalConfigV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
79929
|
-
/**
|
|
79930
|
-
* 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.
|
|
79931
|
-
* @summary Machine Subtype Approval Config
|
|
79932
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79933
|
-
* @param {string} subtypeId machine subtype id.
|
|
79934
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
79935
|
-
* @throws {RequiredError}
|
|
79936
|
-
*/
|
|
79937
|
-
getMachineAccountDeletionSubTypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79938
|
-
/**
|
|
79939
|
-
* 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.
|
|
79940
|
-
* @summary Machine Subtype Approval Config
|
|
79941
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79942
|
-
* @param {string} subtypeId machine account subtype ID.
|
|
79943
|
-
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
79944
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
79945
|
-
* @throws {RequiredError}
|
|
79946
|
-
*/
|
|
79947
|
-
updateMachineAccountDeletionBySubTypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79948
|
-
};
|
|
79949
|
-
/**
|
|
79950
|
-
* MachineSubtypeApprovalConfigV2026Api - functional programming interface
|
|
79951
|
-
* @export
|
|
79952
|
-
*/
|
|
79953
|
-
export declare const MachineSubtypeApprovalConfigV2026ApiFp: (configuration?: Configuration) => {
|
|
79954
|
-
/**
|
|
79955
|
-
* 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.
|
|
79956
|
-
* @summary Machine Subtype Approval Config
|
|
79957
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79958
|
-
* @param {string} subtypeId machine subtype id.
|
|
79959
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
79960
|
-
* @throws {RequiredError}
|
|
79961
|
-
*/
|
|
79962
|
-
getMachineAccountDeletionSubTypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>>;
|
|
79963
|
-
/**
|
|
79964
|
-
* 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.
|
|
79965
|
-
* @summary Machine Subtype Approval Config
|
|
79966
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79967
|
-
* @param {string} subtypeId machine account subtype ID.
|
|
79968
|
-
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
79969
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
79970
|
-
* @throws {RequiredError}
|
|
79971
|
-
*/
|
|
79972
|
-
updateMachineAccountDeletionBySubTypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>>;
|
|
79973
|
-
};
|
|
79974
|
-
/**
|
|
79975
|
-
* MachineSubtypeApprovalConfigV2026Api - factory interface
|
|
79976
|
-
* @export
|
|
79977
|
-
*/
|
|
79978
|
-
export declare const MachineSubtypeApprovalConfigV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
79979
|
-
/**
|
|
79980
|
-
* 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.
|
|
79981
|
-
* @summary Machine Subtype Approval Config
|
|
79982
|
-
* @param {MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest} requestParameters Request parameters.
|
|
79983
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
79984
|
-
* @throws {RequiredError}
|
|
79985
|
-
*/
|
|
79986
|
-
getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026>;
|
|
79987
|
-
/**
|
|
79988
|
-
* 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.
|
|
79989
|
-
* @summary Machine Subtype Approval Config
|
|
79990
|
-
* @param {MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest} requestParameters Request parameters.
|
|
79991
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
79992
|
-
* @throws {RequiredError}
|
|
79993
|
-
*/
|
|
79994
|
-
updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026>;
|
|
79995
|
-
};
|
|
79996
|
-
/**
|
|
79997
|
-
* Request parameters for getMachineAccountDeletionSubTypeApprovalConfig operation in MachineSubtypeApprovalConfigV2026Api.
|
|
79998
|
-
* @export
|
|
79999
|
-
* @interface MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest
|
|
80000
|
-
*/
|
|
80001
|
-
export interface MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest {
|
|
80002
|
-
/**
|
|
80003
|
-
* Use this header to enable this experimental API.
|
|
80004
|
-
* @type {string}
|
|
80005
|
-
* @memberof MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
|
|
80006
|
-
*/
|
|
80007
|
-
readonly xSailPointExperimental: string;
|
|
80008
|
-
/**
|
|
80009
|
-
* machine subtype id.
|
|
80010
|
-
* @type {string}
|
|
80011
|
-
* @memberof MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
|
|
80012
|
-
*/
|
|
80013
|
-
readonly subtypeId: string;
|
|
80014
|
-
}
|
|
80015
|
-
/**
|
|
80016
|
-
* Request parameters for updateMachineAccountDeletionBySubTypeApprovalConfig operation in MachineSubtypeApprovalConfigV2026Api.
|
|
80017
|
-
* @export
|
|
80018
|
-
* @interface MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest
|
|
80019
|
-
*/
|
|
80020
|
-
export interface MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest {
|
|
80021
|
-
/**
|
|
80022
|
-
* Use this header to enable this experimental API.
|
|
80023
|
-
* @type {string}
|
|
80024
|
-
* @memberof MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
|
|
80025
|
-
*/
|
|
80026
|
-
readonly xSailPointExperimental: string;
|
|
80027
|
-
/**
|
|
80028
|
-
* machine account subtype ID.
|
|
80029
|
-
* @type {string}
|
|
80030
|
-
* @memberof MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
|
|
80031
|
-
*/
|
|
80032
|
-
readonly subtypeId: string;
|
|
80033
|
-
/**
|
|
80034
|
-
* The JSONPatch payload used to update the object.
|
|
80035
|
-
* @type {Array<JsonPatchOperationV2026>}
|
|
80036
|
-
* @memberof MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
|
|
80037
|
-
*/
|
|
80038
|
-
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
|
|
80039
|
-
}
|
|
80040
|
-
/**
|
|
80041
|
-
* MachineSubtypeApprovalConfigV2026Api - object-oriented interface
|
|
80042
|
-
* @export
|
|
80043
|
-
* @class MachineSubtypeApprovalConfigV2026Api
|
|
80044
|
-
* @extends {BaseAPI}
|
|
80045
|
-
*/
|
|
80046
|
-
export declare class MachineSubtypeApprovalConfigV2026Api extends BaseAPI {
|
|
80047
|
-
/**
|
|
80048
|
-
* 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.
|
|
80049
|
-
* @summary Machine Subtype Approval Config
|
|
80050
|
-
* @param {MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest} requestParameters Request parameters.
|
|
80051
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
80052
|
-
* @throws {RequiredError}
|
|
80053
|
-
* @memberof MachineSubtypeApprovalConfigV2026Api
|
|
80054
|
-
*/
|
|
80055
|
-
getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineSubtypeApprovalConfigV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubTypeConfigDtoV2026, any>>;
|
|
80056
|
-
/**
|
|
80057
|
-
* 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.
|
|
80058
|
-
* @summary Machine Subtype Approval Config
|
|
80059
|
-
* @param {MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest} requestParameters Request parameters.
|
|
80060
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
80061
|
-
* @throws {RequiredError}
|
|
80062
|
-
* @memberof MachineSubtypeApprovalConfigV2026Api
|
|
80063
|
-
*/
|
|
80064
|
-
updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineSubtypeApprovalConfigV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubTypeConfigDtoV2026, any>>;
|
|
80065
|
-
}
|
|
80066
79730
|
/**
|
|
80067
79731
|
* ManagedClientsV2026Api - axios parameter creator
|
|
80068
79732
|
* @export
|
|
@@ -94124,6 +93788,15 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
94124
93788
|
* @throws {RequiredError}
|
|
94125
93789
|
*/
|
|
94126
93790
|
deleteSourceSchema: (sourceId: string, schemaId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
93791
|
+
/**
|
|
93792
|
+
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
93793
|
+
* @summary Human Account Deletion Approval Config
|
|
93794
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
93795
|
+
* @param {string} sourceId The Source id
|
|
93796
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
93797
|
+
* @throws {RequiredError}
|
|
93798
|
+
*/
|
|
93799
|
+
getAccountDeleteApprovalConfig: (xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94127
93800
|
/**
|
|
94128
93801
|
* This API downloads the CSV schema that defines the account attributes on a source. >**NOTE: This API is designated only for Delimited File sources.**
|
|
94129
93802
|
* @summary Downloads source accounts schema template
|
|
@@ -94149,6 +93822,15 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
94149
93822
|
* @throws {RequiredError}
|
|
94150
93823
|
*/
|
|
94151
93824
|
getEntitlementsSchema: (id: string, schemaName?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
93825
|
+
/**
|
|
93826
|
+
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
93827
|
+
* @summary Machine Account Deletion Approval Config
|
|
93828
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
93829
|
+
* @param {string} sourceId source id.
|
|
93830
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
93831
|
+
* @throws {RequiredError}
|
|
93832
|
+
*/
|
|
93833
|
+
getMachineAccountDeletionApprovalConfigBySource: (xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94152
93834
|
/**
|
|
94153
93835
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
94154
93836
|
* @summary Native change detection configuration
|
|
@@ -94440,6 +94122,26 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
94440
94122
|
* @throws {RequiredError}
|
|
94441
94123
|
*/
|
|
94442
94124
|
testSourceConnection: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94125
|
+
/**
|
|
94126
|
+
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
94127
|
+
* @summary Human Account Deletion Approval Config
|
|
94128
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94129
|
+
* @param {string} sourceId Human account source ID.
|
|
94130
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
94131
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
94132
|
+
* @throws {RequiredError}
|
|
94133
|
+
*/
|
|
94134
|
+
updateAccountDeletionApprovalConfig: (xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94135
|
+
/**
|
|
94136
|
+
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
94137
|
+
* @summary Machine Account Deletion Approval Config
|
|
94138
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94139
|
+
* @param {string} sourceId machine account source ID.
|
|
94140
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
94141
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
94142
|
+
* @throws {RequiredError}
|
|
94143
|
+
*/
|
|
94144
|
+
updateMachineAccountDeletionApprovalConfig: (xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94443
94145
|
/**
|
|
94444
94146
|
* This API can be used to set up or update Password Policy in IdentityNow for the specified Source. Source must support PASSWORD feature.
|
|
94445
94147
|
* @summary Update password policy
|
|
@@ -94599,6 +94301,15 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
94599
94301
|
* @throws {RequiredError}
|
|
94600
94302
|
*/
|
|
94601
94303
|
deleteSourceSchema(sourceId: string, schemaId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
94304
|
+
/**
|
|
94305
|
+
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
94306
|
+
* @summary Human Account Deletion Approval Config
|
|
94307
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94308
|
+
* @param {string} sourceId The Source id
|
|
94309
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
94310
|
+
* @throws {RequiredError}
|
|
94311
|
+
*/
|
|
94312
|
+
getAccountDeleteApprovalConfig(xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
94602
94313
|
/**
|
|
94603
94314
|
* This API downloads the CSV schema that defines the account attributes on a source. >**NOTE: This API is designated only for Delimited File sources.**
|
|
94604
94315
|
* @summary Downloads source accounts schema template
|
|
@@ -94624,6 +94335,15 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
94624
94335
|
* @throws {RequiredError}
|
|
94625
94336
|
*/
|
|
94626
94337
|
getEntitlementsSchema(id: string, schemaName?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
94338
|
+
/**
|
|
94339
|
+
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
94340
|
+
* @summary Machine Account Deletion Approval Config
|
|
94341
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94342
|
+
* @param {string} sourceId source id.
|
|
94343
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
94344
|
+
* @throws {RequiredError}
|
|
94345
|
+
*/
|
|
94346
|
+
getMachineAccountDeletionApprovalConfigBySource(xSailPointExperimental: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
94627
94347
|
/**
|
|
94628
94348
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
94629
94349
|
* @summary Native change detection configuration
|
|
@@ -94915,6 +94635,26 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
94915
94635
|
* @throws {RequiredError}
|
|
94916
94636
|
*/
|
|
94917
94637
|
testSourceConnection(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatusResponseV2026>>;
|
|
94638
|
+
/**
|
|
94639
|
+
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
94640
|
+
* @summary Human Account Deletion Approval Config
|
|
94641
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94642
|
+
* @param {string} sourceId Human account source ID.
|
|
94643
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
94644
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
94645
|
+
* @throws {RequiredError}
|
|
94646
|
+
*/
|
|
94647
|
+
updateAccountDeletionApprovalConfig(xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
94648
|
+
/**
|
|
94649
|
+
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
94650
|
+
* @summary Machine Account Deletion Approval Config
|
|
94651
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94652
|
+
* @param {string} sourceId machine account source ID.
|
|
94653
|
+
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
94654
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
94655
|
+
* @throws {RequiredError}
|
|
94656
|
+
*/
|
|
94657
|
+
updateMachineAccountDeletionApprovalConfig(xSailPointExperimental: string, sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
94918
94658
|
/**
|
|
94919
94659
|
* This API can be used to set up or update Password Policy in IdentityNow for the specified Source. Source must support PASSWORD feature.
|
|
94920
94660
|
* @summary Update password policy
|
|
@@ -95067,6 +94807,14 @@ export declare const SourcesV2026ApiFactory: (configuration?: Configuration, bas
|
|
|
95067
94807
|
* @throws {RequiredError}
|
|
95068
94808
|
*/
|
|
95069
94809
|
deleteSourceSchema(requestParameters: SourcesV2026ApiDeleteSourceSchemaRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
94810
|
+
/**
|
|
94811
|
+
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
94812
|
+
* @summary Human Account Deletion Approval Config
|
|
94813
|
+
* @param {SourcesV2026ApiGetAccountDeleteApprovalConfigRequest} requestParameters Request parameters.
|
|
94814
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
94815
|
+
* @throws {RequiredError}
|
|
94816
|
+
*/
|
|
94817
|
+
getAccountDeleteApprovalConfig(requestParameters: SourcesV2026ApiGetAccountDeleteApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
|
|
95070
94818
|
/**
|
|
95071
94819
|
* This API downloads the CSV schema that defines the account attributes on a source. >**NOTE: This API is designated only for Delimited File sources.**
|
|
95072
94820
|
* @summary Downloads source accounts schema template
|
|
@@ -95091,6 +94839,14 @@ export declare const SourcesV2026ApiFactory: (configuration?: Configuration, bas
|
|
|
95091
94839
|
* @throws {RequiredError}
|
|
95092
94840
|
*/
|
|
95093
94841
|
getEntitlementsSchema(requestParameters: SourcesV2026ApiGetEntitlementsSchemaRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
94842
|
+
/**
|
|
94843
|
+
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
94844
|
+
* @summary Machine Account Deletion Approval Config
|
|
94845
|
+
* @param {SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest} requestParameters Request parameters.
|
|
94846
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
94847
|
+
* @throws {RequiredError}
|
|
94848
|
+
*/
|
|
94849
|
+
getMachineAccountDeletionApprovalConfigBySource(requestParameters: SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
|
|
95094
94850
|
/**
|
|
95095
94851
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
95096
94852
|
* @summary Native change detection configuration
|
|
@@ -95347,6 +95103,22 @@ export declare const SourcesV2026ApiFactory: (configuration?: Configuration, bas
|
|
|
95347
95103
|
* @throws {RequiredError}
|
|
95348
95104
|
*/
|
|
95349
95105
|
testSourceConnection(requestParameters: SourcesV2026ApiTestSourceConnectionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<StatusResponseV2026>;
|
|
95106
|
+
/**
|
|
95107
|
+
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
95108
|
+
* @summary Human Account Deletion Approval Config
|
|
95109
|
+
* @param {SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
|
|
95110
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
95111
|
+
* @throws {RequiredError}
|
|
95112
|
+
*/
|
|
95113
|
+
updateAccountDeletionApprovalConfig(requestParameters: SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
|
|
95114
|
+
/**
|
|
95115
|
+
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
95116
|
+
* @summary Machine Account Deletion Approval Config
|
|
95117
|
+
* @param {SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
|
|
95118
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
95119
|
+
* @throws {RequiredError}
|
|
95120
|
+
*/
|
|
95121
|
+
updateMachineAccountDeletionApprovalConfig(requestParameters: SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026>;
|
|
95350
95122
|
/**
|
|
95351
95123
|
* This API can be used to set up or update Password Policy in IdentityNow for the specified Source. Source must support PASSWORD feature.
|
|
95352
95124
|
* @summary Update password policy
|
|
@@ -95576,6 +95348,25 @@ export interface SourcesV2026ApiDeleteSourceSchemaRequest {
|
|
|
95576
95348
|
*/
|
|
95577
95349
|
readonly schemaId: string;
|
|
95578
95350
|
}
|
|
95351
|
+
/**
|
|
95352
|
+
* Request parameters for getAccountDeleteApprovalConfig operation in SourcesV2026Api.
|
|
95353
|
+
* @export
|
|
95354
|
+
* @interface SourcesV2026ApiGetAccountDeleteApprovalConfigRequest
|
|
95355
|
+
*/
|
|
95356
|
+
export interface SourcesV2026ApiGetAccountDeleteApprovalConfigRequest {
|
|
95357
|
+
/**
|
|
95358
|
+
* Use this header to enable this experimental API.
|
|
95359
|
+
* @type {string}
|
|
95360
|
+
* @memberof SourcesV2026ApiGetAccountDeleteApprovalConfig
|
|
95361
|
+
*/
|
|
95362
|
+
readonly xSailPointExperimental: string;
|
|
95363
|
+
/**
|
|
95364
|
+
* The Source id
|
|
95365
|
+
* @type {string}
|
|
95366
|
+
* @memberof SourcesV2026ApiGetAccountDeleteApprovalConfig
|
|
95367
|
+
*/
|
|
95368
|
+
readonly sourceId: string;
|
|
95369
|
+
}
|
|
95579
95370
|
/**
|
|
95580
95371
|
* Request parameters for getAccountsSchema operation in SourcesV2026Api.
|
|
95581
95372
|
* @export
|
|
@@ -95621,6 +95412,25 @@ export interface SourcesV2026ApiGetEntitlementsSchemaRequest {
|
|
|
95621
95412
|
*/
|
|
95622
95413
|
readonly schemaName?: string;
|
|
95623
95414
|
}
|
|
95415
|
+
/**
|
|
95416
|
+
* Request parameters for getMachineAccountDeletionApprovalConfigBySource operation in SourcesV2026Api.
|
|
95417
|
+
* @export
|
|
95418
|
+
* @interface SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest
|
|
95419
|
+
*/
|
|
95420
|
+
export interface SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest {
|
|
95421
|
+
/**
|
|
95422
|
+
* Use this header to enable this experimental API.
|
|
95423
|
+
* @type {string}
|
|
95424
|
+
* @memberof SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySource
|
|
95425
|
+
*/
|
|
95426
|
+
readonly xSailPointExperimental: string;
|
|
95427
|
+
/**
|
|
95428
|
+
* source id.
|
|
95429
|
+
* @type {string}
|
|
95430
|
+
* @memberof SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySource
|
|
95431
|
+
*/
|
|
95432
|
+
readonly sourceId: string;
|
|
95433
|
+
}
|
|
95624
95434
|
/**
|
|
95625
95435
|
* Request parameters for getNativeChangeDetectionConfig operation in SourcesV2026Api.
|
|
95626
95436
|
* @export
|
|
@@ -96247,6 +96057,56 @@ export interface SourcesV2026ApiTestSourceConnectionRequest {
|
|
|
96247
96057
|
*/
|
|
96248
96058
|
readonly sourceId: string;
|
|
96249
96059
|
}
|
|
96060
|
+
/**
|
|
96061
|
+
* Request parameters for updateAccountDeletionApprovalConfig operation in SourcesV2026Api.
|
|
96062
|
+
* @export
|
|
96063
|
+
* @interface SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest
|
|
96064
|
+
*/
|
|
96065
|
+
export interface SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest {
|
|
96066
|
+
/**
|
|
96067
|
+
* Use this header to enable this experimental API.
|
|
96068
|
+
* @type {string}
|
|
96069
|
+
* @memberof SourcesV2026ApiUpdateAccountDeletionApprovalConfig
|
|
96070
|
+
*/
|
|
96071
|
+
readonly xSailPointExperimental: string;
|
|
96072
|
+
/**
|
|
96073
|
+
* Human account source ID.
|
|
96074
|
+
* @type {string}
|
|
96075
|
+
* @memberof SourcesV2026ApiUpdateAccountDeletionApprovalConfig
|
|
96076
|
+
*/
|
|
96077
|
+
readonly sourceId: string;
|
|
96078
|
+
/**
|
|
96079
|
+
* The JSONPatch payload used to update the object.
|
|
96080
|
+
* @type {Array<JsonPatchOperationV2026>}
|
|
96081
|
+
* @memberof SourcesV2026ApiUpdateAccountDeletionApprovalConfig
|
|
96082
|
+
*/
|
|
96083
|
+
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
|
|
96084
|
+
}
|
|
96085
|
+
/**
|
|
96086
|
+
* Request parameters for updateMachineAccountDeletionApprovalConfig operation in SourcesV2026Api.
|
|
96087
|
+
* @export
|
|
96088
|
+
* @interface SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest
|
|
96089
|
+
*/
|
|
96090
|
+
export interface SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest {
|
|
96091
|
+
/**
|
|
96092
|
+
* Use this header to enable this experimental API.
|
|
96093
|
+
* @type {string}
|
|
96094
|
+
* @memberof SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfig
|
|
96095
|
+
*/
|
|
96096
|
+
readonly xSailPointExperimental: string;
|
|
96097
|
+
/**
|
|
96098
|
+
* machine account source ID.
|
|
96099
|
+
* @type {string}
|
|
96100
|
+
* @memberof SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfig
|
|
96101
|
+
*/
|
|
96102
|
+
readonly sourceId: string;
|
|
96103
|
+
/**
|
|
96104
|
+
* The JSONPatch payload used to update the object.
|
|
96105
|
+
* @type {Array<JsonPatchOperationV2026>}
|
|
96106
|
+
* @memberof SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfig
|
|
96107
|
+
*/
|
|
96108
|
+
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
|
|
96109
|
+
}
|
|
96250
96110
|
/**
|
|
96251
96111
|
* Request parameters for updatePasswordPolicyHolders operation in SourcesV2026Api.
|
|
96252
96112
|
* @export
|
|
@@ -96495,6 +96355,15 @@ export declare class SourcesV2026Api extends BaseAPI {
|
|
|
96495
96355
|
* @memberof SourcesV2026Api
|
|
96496
96356
|
*/
|
|
96497
96357
|
deleteSourceSchema(requestParameters: SourcesV2026ApiDeleteSourceSchemaRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
96358
|
+
/**
|
|
96359
|
+
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
96360
|
+
* @summary Human Account Deletion Approval Config
|
|
96361
|
+
* @param {SourcesV2026ApiGetAccountDeleteApprovalConfigRequest} requestParameters Request parameters.
|
|
96362
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
96363
|
+
* @throws {RequiredError}
|
|
96364
|
+
* @memberof SourcesV2026Api
|
|
96365
|
+
*/
|
|
96366
|
+
getAccountDeleteApprovalConfig(requestParameters: SourcesV2026ApiGetAccountDeleteApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
96498
96367
|
/**
|
|
96499
96368
|
* This API downloads the CSV schema that defines the account attributes on a source. >**NOTE: This API is designated only for Delimited File sources.**
|
|
96500
96369
|
* @summary Downloads source accounts schema template
|
|
@@ -96522,6 +96391,15 @@ export declare class SourcesV2026Api extends BaseAPI {
|
|
|
96522
96391
|
* @memberof SourcesV2026Api
|
|
96523
96392
|
*/
|
|
96524
96393
|
getEntitlementsSchema(requestParameters: SourcesV2026ApiGetEntitlementsSchemaRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
96394
|
+
/**
|
|
96395
|
+
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
96396
|
+
* @summary Machine Account Deletion Approval Config
|
|
96397
|
+
* @param {SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest} requestParameters Request parameters.
|
|
96398
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
96399
|
+
* @throws {RequiredError}
|
|
96400
|
+
* @memberof SourcesV2026Api
|
|
96401
|
+
*/
|
|
96402
|
+
getMachineAccountDeletionApprovalConfigBySource(requestParameters: SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
96525
96403
|
/**
|
|
96526
96404
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
96527
96405
|
* @summary Native change detection configuration
|
|
@@ -96810,6 +96688,24 @@ export declare class SourcesV2026Api extends BaseAPI {
|
|
|
96810
96688
|
* @memberof SourcesV2026Api
|
|
96811
96689
|
*/
|
|
96812
96690
|
testSourceConnection(requestParameters: SourcesV2026ApiTestSourceConnectionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatusResponseV2026, any>>;
|
|
96691
|
+
/**
|
|
96692
|
+
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
96693
|
+
* @summary Human Account Deletion Approval Config
|
|
96694
|
+
* @param {SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
|
|
96695
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
96696
|
+
* @throws {RequiredError}
|
|
96697
|
+
* @memberof SourcesV2026Api
|
|
96698
|
+
*/
|
|
96699
|
+
updateAccountDeletionApprovalConfig(requestParameters: SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
96700
|
+
/**
|
|
96701
|
+
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
96702
|
+
* @summary Machine Account Deletion Approval Config
|
|
96703
|
+
* @param {SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest} requestParameters Request parameters.
|
|
96704
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
96705
|
+
* @throws {RequiredError}
|
|
96706
|
+
* @memberof SourcesV2026Api
|
|
96707
|
+
*/
|
|
96708
|
+
updateMachineAccountDeletionApprovalConfig(requestParameters: SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
96813
96709
|
/**
|
|
96814
96710
|
* This API can be used to set up or update Password Policy in IdentityNow for the specified Source. Source must support PASSWORD feature.
|
|
96815
96711
|
* @summary Update password policy
|