sailpoint-api-client 1.8.14 → 1.8.16
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/api.d.ts +6 -0
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +864 -101
- package/dist/v2026/api.js +1110 -226
- 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/api.ts +6 -0
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +1512 -320
- 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
|
@@ -5056,19 +5056,6 @@ export interface AccountCreatedV2026 {
|
|
|
5056
5056
|
*/
|
|
5057
5057
|
'identity': IdentityReference1V2026;
|
|
5058
5058
|
}
|
|
5059
|
-
/**
|
|
5060
|
-
* Asynchronous response containing a unique tracking ID for the account deletion request
|
|
5061
|
-
* @export
|
|
5062
|
-
* @interface AccountDeleteAsyncResultV2026
|
|
5063
|
-
*/
|
|
5064
|
-
export interface AccountDeleteAsyncResultV2026 {
|
|
5065
|
-
/**
|
|
5066
|
-
* Id of the deletion request
|
|
5067
|
-
* @type {string}
|
|
5068
|
-
* @memberof AccountDeleteAsyncResultV2026
|
|
5069
|
-
*/
|
|
5070
|
-
'accountRequestId': string;
|
|
5071
|
-
}
|
|
5072
5059
|
/**
|
|
5073
5060
|
* detailed information about account delete approval config
|
|
5074
5061
|
* @export
|
|
@@ -5397,6 +5384,99 @@ export interface AccountItemRefV2026 {
|
|
|
5397
5384
|
*/
|
|
5398
5385
|
'nativeIdentity'?: string;
|
|
5399
5386
|
}
|
|
5387
|
+
/**
|
|
5388
|
+
* Asynchronous response containing a unique tracking ID for the account request
|
|
5389
|
+
* @export
|
|
5390
|
+
* @interface AccountRequestAsyncResultV2026
|
|
5391
|
+
*/
|
|
5392
|
+
export interface AccountRequestAsyncResultV2026 {
|
|
5393
|
+
/**
|
|
5394
|
+
* Id of the account request
|
|
5395
|
+
* @type {string}
|
|
5396
|
+
* @memberof AccountRequestAsyncResultV2026
|
|
5397
|
+
*/
|
|
5398
|
+
'accountRequestId': string;
|
|
5399
|
+
}
|
|
5400
|
+
/**
|
|
5401
|
+
*
|
|
5402
|
+
* @export
|
|
5403
|
+
* @interface AccountRequestDetailsDtoRequesterV2026
|
|
5404
|
+
*/
|
|
5405
|
+
export interface AccountRequestDetailsDtoRequesterV2026 {
|
|
5406
|
+
/**
|
|
5407
|
+
*
|
|
5408
|
+
* @type {DtoTypeV2026}
|
|
5409
|
+
* @memberof AccountRequestDetailsDtoRequesterV2026
|
|
5410
|
+
*/
|
|
5411
|
+
'type'?: DtoTypeV2026;
|
|
5412
|
+
/**
|
|
5413
|
+
* ID of the object to which this reference applies
|
|
5414
|
+
* @type {string}
|
|
5415
|
+
* @memberof AccountRequestDetailsDtoRequesterV2026
|
|
5416
|
+
*/
|
|
5417
|
+
'id'?: string;
|
|
5418
|
+
/**
|
|
5419
|
+
* Human-readable display name of the object to which this reference applies
|
|
5420
|
+
* @type {string}
|
|
5421
|
+
* @memberof AccountRequestDetailsDtoRequesterV2026
|
|
5422
|
+
*/
|
|
5423
|
+
'name'?: string;
|
|
5424
|
+
}
|
|
5425
|
+
/**
|
|
5426
|
+
* Represents a request to create a machine account.
|
|
5427
|
+
* @export
|
|
5428
|
+
* @interface AccountRequestDetailsDtoV2026
|
|
5429
|
+
*/
|
|
5430
|
+
export interface AccountRequestDetailsDtoV2026 {
|
|
5431
|
+
/**
|
|
5432
|
+
* Account request ID.
|
|
5433
|
+
* @type {string}
|
|
5434
|
+
* @memberof AccountRequestDetailsDtoV2026
|
|
5435
|
+
*/
|
|
5436
|
+
'accountRequestId'?: string;
|
|
5437
|
+
/**
|
|
5438
|
+
* Type of the account request.
|
|
5439
|
+
* @type {string}
|
|
5440
|
+
* @memberof AccountRequestDetailsDtoV2026
|
|
5441
|
+
*/
|
|
5442
|
+
'requestType'?: string;
|
|
5443
|
+
/**
|
|
5444
|
+
* Machine account creation request creation date and time.
|
|
5445
|
+
* @type {string}
|
|
5446
|
+
* @memberof AccountRequestDetailsDtoV2026
|
|
5447
|
+
*/
|
|
5448
|
+
'createdAt'?: string;
|
|
5449
|
+
/**
|
|
5450
|
+
* Machine account creation request completion date and time.
|
|
5451
|
+
* @type {string}
|
|
5452
|
+
* @memberof AccountRequestDetailsDtoV2026
|
|
5453
|
+
*/
|
|
5454
|
+
'completedAt'?: string | null;
|
|
5455
|
+
/**
|
|
5456
|
+
* Overall status of the creation request.
|
|
5457
|
+
* @type {string}
|
|
5458
|
+
* @memberof AccountRequestDetailsDtoV2026
|
|
5459
|
+
*/
|
|
5460
|
+
'overallStatus'?: string;
|
|
5461
|
+
/**
|
|
5462
|
+
*
|
|
5463
|
+
* @type {AccountRequestDetailsDtoRequesterV2026}
|
|
5464
|
+
* @memberof AccountRequestDetailsDtoV2026
|
|
5465
|
+
*/
|
|
5466
|
+
'requester'?: AccountRequestDetailsDtoRequesterV2026;
|
|
5467
|
+
/**
|
|
5468
|
+
* List of account request phases.
|
|
5469
|
+
* @type {Array<AccountRequestPhaseV2026>}
|
|
5470
|
+
* @memberof AccountRequestDetailsDtoV2026
|
|
5471
|
+
*/
|
|
5472
|
+
'accountRequestPhases'?: Array<AccountRequestPhaseV2026>;
|
|
5473
|
+
/**
|
|
5474
|
+
* Detailed error information.
|
|
5475
|
+
* @type {string}
|
|
5476
|
+
* @memberof AccountRequestDetailsDtoV2026
|
|
5477
|
+
*/
|
|
5478
|
+
'errorDetails'?: string | null;
|
|
5479
|
+
}
|
|
5400
5480
|
/**
|
|
5401
5481
|
* If an account activity item is associated with an access request, captures details of that request.
|
|
5402
5482
|
* @export
|
|
@@ -5434,6 +5514,7 @@ export declare const AccountRequestPhaseStateV2026: {
|
|
|
5434
5514
|
readonly Rejected: "REJECTED";
|
|
5435
5515
|
readonly Passed: "PASSED";
|
|
5436
5516
|
readonly Failed: "FAILED";
|
|
5517
|
+
readonly NotStarted: "NOT_STARTED";
|
|
5437
5518
|
};
|
|
5438
5519
|
export type AccountRequestPhaseStateV2026 = typeof AccountRequestPhaseStateV2026[keyof typeof AccountRequestPhaseStateV2026];
|
|
5439
5520
|
/**
|
|
@@ -26973,86 +27054,215 @@ export interface LowerV2026 {
|
|
|
26973
27054
|
[key: string]: any;
|
|
26974
27055
|
};
|
|
26975
27056
|
}
|
|
27057
|
+
/**
|
|
27058
|
+
*
|
|
27059
|
+
* @export
|
|
27060
|
+
* @interface MachineAccountCreateAccessDtoSubtypesInnerV2026
|
|
27061
|
+
*/
|
|
27062
|
+
export interface MachineAccountCreateAccessDtoSubtypesInnerV2026 {
|
|
27063
|
+
/**
|
|
27064
|
+
* Subtype ID.
|
|
27065
|
+
* @type {string}
|
|
27066
|
+
* @memberof MachineAccountCreateAccessDtoSubtypesInnerV2026
|
|
27067
|
+
*/
|
|
27068
|
+
'subtypeId'?: string;
|
|
27069
|
+
/**
|
|
27070
|
+
* Entitlement ID.
|
|
27071
|
+
* @type {string}
|
|
27072
|
+
* @memberof MachineAccountCreateAccessDtoSubtypesInnerV2026
|
|
27073
|
+
*/
|
|
27074
|
+
'entitlementId'?: string;
|
|
27075
|
+
/**
|
|
27076
|
+
* Subtype display name.
|
|
27077
|
+
* @type {string}
|
|
27078
|
+
* @memberof MachineAccountCreateAccessDtoSubtypesInnerV2026
|
|
27079
|
+
*/
|
|
27080
|
+
'subtypeDisplayName'?: string;
|
|
27081
|
+
/**
|
|
27082
|
+
* Subtype technical name.
|
|
27083
|
+
* @type {string}
|
|
27084
|
+
* @memberof MachineAccountCreateAccessDtoSubtypesInnerV2026
|
|
27085
|
+
*/
|
|
27086
|
+
'subtypeTechnicalName'?: string;
|
|
27087
|
+
}
|
|
27088
|
+
/**
|
|
27089
|
+
* A summary endpoint which returns list of sources and subtypes for which user has an entitlement to request machine accounts.
|
|
27090
|
+
* @export
|
|
27091
|
+
* @interface MachineAccountCreateAccessDtoV2026
|
|
27092
|
+
*/
|
|
27093
|
+
export interface MachineAccountCreateAccessDtoV2026 {
|
|
27094
|
+
/**
|
|
27095
|
+
* Source ID.
|
|
27096
|
+
* @type {string}
|
|
27097
|
+
* @memberof MachineAccountCreateAccessDtoV2026
|
|
27098
|
+
*/
|
|
27099
|
+
'sourceId'?: string;
|
|
27100
|
+
/**
|
|
27101
|
+
* Source name.
|
|
27102
|
+
* @type {string}
|
|
27103
|
+
* @memberof MachineAccountCreateAccessDtoV2026
|
|
27104
|
+
*/
|
|
27105
|
+
'sourceName'?: string;
|
|
27106
|
+
/**
|
|
27107
|
+
* List of subtypes for which the user has an entitlement to request machine accounts.
|
|
27108
|
+
* @type {Array<MachineAccountCreateAccessDtoSubtypesInnerV2026>}
|
|
27109
|
+
* @memberof MachineAccountCreateAccessDtoV2026
|
|
27110
|
+
*/
|
|
27111
|
+
'subtypes'?: Array<MachineAccountCreateAccessDtoSubtypesInnerV2026>;
|
|
27112
|
+
}
|
|
27113
|
+
/**
|
|
27114
|
+
* Contains the required information for processing a user-initiated machine account creation request.
|
|
27115
|
+
* @export
|
|
27116
|
+
* @interface MachineAccountCreateRequestInputV2026
|
|
27117
|
+
*/
|
|
27118
|
+
export interface MachineAccountCreateRequestInputV2026 {
|
|
27119
|
+
/**
|
|
27120
|
+
* Subtype ID for which machine account create is enabled and user have the entitlement to create the machine account.
|
|
27121
|
+
* @type {string}
|
|
27122
|
+
* @memberof MachineAccountCreateRequestInputV2026
|
|
27123
|
+
*/
|
|
27124
|
+
'subtypeId': string;
|
|
27125
|
+
/**
|
|
27126
|
+
* Form ID selected by user for the machine account create request.
|
|
27127
|
+
* @type {string}
|
|
27128
|
+
* @memberof MachineAccountCreateRequestInputV2026
|
|
27129
|
+
*/
|
|
27130
|
+
'formId'?: string;
|
|
27131
|
+
/**
|
|
27132
|
+
* Owner Identity ID. This identity will be assigned as an owner of the created machine account.
|
|
27133
|
+
* @type {string}
|
|
27134
|
+
* @memberof MachineAccountCreateRequestInputV2026
|
|
27135
|
+
*/
|
|
27136
|
+
'ownerIdentityId': string;
|
|
27137
|
+
/**
|
|
27138
|
+
* Machine identity to correlate with the created machine account. If not provided, a new machine identity will be created.
|
|
27139
|
+
* @type {string}
|
|
27140
|
+
* @memberof MachineAccountCreateRequestInputV2026
|
|
27141
|
+
*/
|
|
27142
|
+
'machineIdentityId'?: string | null;
|
|
27143
|
+
/**
|
|
27144
|
+
* Environment type to use for the machine account.
|
|
27145
|
+
* @type {string}
|
|
27146
|
+
* @memberof MachineAccountCreateRequestInputV2026
|
|
27147
|
+
*/
|
|
27148
|
+
'environment'?: string;
|
|
27149
|
+
/**
|
|
27150
|
+
* Description for the machine account.
|
|
27151
|
+
* @type {string}
|
|
27152
|
+
* @memberof MachineAccountCreateRequestInputV2026
|
|
27153
|
+
*/
|
|
27154
|
+
'description'?: string;
|
|
27155
|
+
/**
|
|
27156
|
+
* Fields of the form linked to the subtype in approval settings.
|
|
27157
|
+
* @type {object}
|
|
27158
|
+
* @memberof MachineAccountCreateRequestInputV2026
|
|
27159
|
+
*/
|
|
27160
|
+
'userInput'?: object;
|
|
27161
|
+
/**
|
|
27162
|
+
* List of entitlement IDs to provision for created machine account.
|
|
27163
|
+
* @type {Array<string>}
|
|
27164
|
+
* @memberof MachineAccountCreateRequestInputV2026
|
|
27165
|
+
*/
|
|
27166
|
+
'entitlementIds'?: Array<string>;
|
|
27167
|
+
}
|
|
26976
27168
|
/**
|
|
26977
27169
|
* Configuration options for machine account creation, including whether creation is enabled, if approval is required, associated form and entitlement IDs, and detailed approval settings such as approvers and allowed comment types.
|
|
26978
27170
|
* @export
|
|
26979
|
-
* @interface
|
|
27171
|
+
* @interface MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
|
|
26980
27172
|
*/
|
|
26981
|
-
export interface
|
|
27173
|
+
export interface MachineAccountSubtypeConfigDtoMachineAccountCreateV2026 {
|
|
26982
27174
|
/**
|
|
26983
27175
|
* Specifies if the creation of machine accounts is allowed for this subtype.
|
|
26984
27176
|
* @type {boolean}
|
|
26985
|
-
* @memberof
|
|
27177
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
|
|
26986
27178
|
*/
|
|
26987
27179
|
'accountCreateEnabled'?: boolean;
|
|
26988
27180
|
/**
|
|
26989
|
-
* Specifies if approval is
|
|
27181
|
+
* Specifies if approval is required for machine account creation requests for this subtype.
|
|
26990
27182
|
* @type {boolean}
|
|
26991
|
-
* @memberof
|
|
27183
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
|
|
26992
27184
|
*/
|
|
26993
27185
|
'approvalRequired'?: boolean;
|
|
26994
27186
|
/**
|
|
26995
|
-
*
|
|
27187
|
+
* Id of the form linked to subtype.
|
|
26996
27188
|
* @type {string}
|
|
26997
|
-
* @memberof
|
|
27189
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
|
|
26998
27190
|
*/
|
|
26999
27191
|
'formId'?: string;
|
|
27000
27192
|
/**
|
|
27001
|
-
*
|
|
27193
|
+
* Id of the system created entitlement entitlement upon enabling account creation for this subtype.
|
|
27002
27194
|
* @type {string}
|
|
27003
|
-
* @memberof
|
|
27195
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
|
|
27004
27196
|
*/
|
|
27005
27197
|
'entitlementId'?: string;
|
|
27198
|
+
/**
|
|
27199
|
+
* This is required before enabling the account creation to true. Default value will be null.
|
|
27200
|
+
* @type {string}
|
|
27201
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
|
|
27202
|
+
*/
|
|
27203
|
+
'passwordSetting'?: MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026;
|
|
27204
|
+
/**
|
|
27205
|
+
* Name of the account attribute from the source\'s schema or new custom attribute to use when password settings is enabled.
|
|
27206
|
+
* @type {string}
|
|
27207
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
|
|
27208
|
+
*/
|
|
27209
|
+
'passwordAttribute'?: string;
|
|
27006
27210
|
/**
|
|
27007
27211
|
*
|
|
27008
|
-
* @type {
|
|
27009
|
-
* @memberof
|
|
27212
|
+
* @type {MachineSubtypeApprovalConfigV2026}
|
|
27213
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026
|
|
27010
27214
|
*/
|
|
27011
|
-
'approvalConfig'?:
|
|
27215
|
+
'approvalConfig'?: MachineSubtypeApprovalConfigV2026;
|
|
27012
27216
|
}
|
|
27217
|
+
export declare const MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026: {
|
|
27218
|
+
readonly DoNotSetPassword: "DO_NOT_SET_PASSWORD";
|
|
27219
|
+
readonly SetToExistingAttribute: "SET_TO_EXISTING_ATTRIBUTE";
|
|
27220
|
+
readonly SetToNewAttribute: "SET_TO_NEW_ATTRIBUTE";
|
|
27221
|
+
};
|
|
27222
|
+
export type MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026 = typeof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026[keyof typeof MachineAccountSubtypeConfigDtoMachineAccountCreateV2026PasswordSettingV2026];
|
|
27013
27223
|
/**
|
|
27014
27224
|
* Configuration options for machine account deletion, including whether approval is required, the list of authorized approvers, and the types of comments permitted during the approval workflow.
|
|
27015
27225
|
* @export
|
|
27016
|
-
* @interface
|
|
27226
|
+
* @interface MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026
|
|
27017
27227
|
*/
|
|
27018
|
-
export interface
|
|
27228
|
+
export interface MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026 {
|
|
27019
27229
|
/**
|
|
27020
27230
|
* Indicates whether approval is required for an account deletion request.
|
|
27021
27231
|
* @type {boolean}
|
|
27022
|
-
* @memberof
|
|
27232
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026
|
|
27023
27233
|
*/
|
|
27024
27234
|
'approvalRequired'?: boolean;
|
|
27025
27235
|
/**
|
|
27026
27236
|
*
|
|
27027
|
-
* @type {
|
|
27028
|
-
* @memberof
|
|
27237
|
+
* @type {MachineSubtypeApprovalConfigV2026}
|
|
27238
|
+
* @memberof MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026
|
|
27029
27239
|
*/
|
|
27030
|
-
'approvalConfig'?:
|
|
27240
|
+
'approvalConfig'?: MachineSubtypeApprovalConfigV2026;
|
|
27031
27241
|
}
|
|
27032
27242
|
/**
|
|
27033
27243
|
* Contains comprehensive configuration details for machine account subtype approval, including creation and deletion approval requirements, approver lists, form and entitlement references, and approval status options.
|
|
27034
27244
|
* @export
|
|
27035
|
-
* @interface
|
|
27245
|
+
* @interface MachineAccountSubtypeConfigDtoV2026
|
|
27036
27246
|
*/
|
|
27037
|
-
export interface
|
|
27247
|
+
export interface MachineAccountSubtypeConfigDtoV2026 {
|
|
27038
27248
|
/**
|
|
27039
27249
|
* Unique identifier representing the specific subtype of the machine account, used to distinguish between different machine account categories.
|
|
27040
27250
|
* @type {string}
|
|
27041
|
-
* @memberof
|
|
27251
|
+
* @memberof MachineAccountSubtypeConfigDtoV2026
|
|
27042
27252
|
*/
|
|
27043
27253
|
'subtypeId'?: string;
|
|
27044
27254
|
/**
|
|
27045
27255
|
*
|
|
27046
|
-
* @type {
|
|
27047
|
-
* @memberof
|
|
27256
|
+
* @type {MachineAccountSubtypeConfigDtoMachineAccountCreateV2026}
|
|
27257
|
+
* @memberof MachineAccountSubtypeConfigDtoV2026
|
|
27048
27258
|
*/
|
|
27049
|
-
'machineAccountCreate'?:
|
|
27259
|
+
'machineAccountCreate'?: MachineAccountSubtypeConfigDtoMachineAccountCreateV2026;
|
|
27050
27260
|
/**
|
|
27051
27261
|
*
|
|
27052
|
-
* @type {
|
|
27053
|
-
* @memberof
|
|
27262
|
+
* @type {MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026}
|
|
27263
|
+
* @memberof MachineAccountSubtypeConfigDtoV2026
|
|
27054
27264
|
*/
|
|
27055
|
-
'machineAccountDelete'?:
|
|
27265
|
+
'machineAccountDelete'?: MachineAccountSubtypeConfigDtoMachineAccountDeleteV2026;
|
|
27056
27266
|
}
|
|
27057
27267
|
/**
|
|
27058
27268
|
*
|
|
@@ -27396,6 +27606,12 @@ export interface MachineIdentityAggregationRequestV2026 {
|
|
|
27396
27606
|
* @memberof MachineIdentityAggregationRequestV2026
|
|
27397
27607
|
*/
|
|
27398
27608
|
'datasetIds': Array<string>;
|
|
27609
|
+
/**
|
|
27610
|
+
* Flag to disable optimization for the aggregation. Defaults to false when not provided. When set to true, it disables aggregation optimizations and may increase processing time.
|
|
27611
|
+
* @type {boolean}
|
|
27612
|
+
* @memberof MachineIdentityAggregationRequestV2026
|
|
27613
|
+
*/
|
|
27614
|
+
'disableOptimization'?: boolean;
|
|
27399
27615
|
}
|
|
27400
27616
|
/**
|
|
27401
27617
|
* The target(source) of the aggregation
|
|
@@ -28602,6 +28818,25 @@ export interface MachineIdentityV2026 {
|
|
|
28602
28818
|
*/
|
|
28603
28819
|
'uuid'?: string;
|
|
28604
28820
|
}
|
|
28821
|
+
/**
|
|
28822
|
+
*
|
|
28823
|
+
* @export
|
|
28824
|
+
* @interface MachineSubtypeApprovalConfigV2026
|
|
28825
|
+
*/
|
|
28826
|
+
export interface MachineSubtypeApprovalConfigV2026 {
|
|
28827
|
+
/**
|
|
28828
|
+
* Comma separated string of approvers. Following are the options for approver types: manager, sourceOwner, accountOwner, workgroup:{workgroupId} (Governance group). Approval request will be assigned based on the order of the approvers passed. Multiple workgroups(governance groups) can be selected as an approver. >**Note:** accountOwner approver type is only for machine account delete approval settings.
|
|
28829
|
+
* @type {string}
|
|
28830
|
+
* @memberof MachineSubtypeApprovalConfigV2026
|
|
28831
|
+
*/
|
|
28832
|
+
'approvers'?: string;
|
|
28833
|
+
/**
|
|
28834
|
+
* Comment configurations for the approval request. Following are the options for comments: ALL, OFF, APPROVAL, REJECT.
|
|
28835
|
+
* @type {string}
|
|
28836
|
+
* @memberof MachineSubtypeApprovalConfigV2026
|
|
28837
|
+
*/
|
|
28838
|
+
'comments'?: string;
|
|
28839
|
+
}
|
|
28605
28840
|
/**
|
|
28606
28841
|
* MAIL FROM attributes for a domain / identity
|
|
28607
28842
|
* @export
|
|
@@ -46271,6 +46506,96 @@ export interface SourceSubtypeV2026 {
|
|
|
46271
46506
|
*/
|
|
46272
46507
|
'type'?: string;
|
|
46273
46508
|
}
|
|
46509
|
+
/**
|
|
46510
|
+
* Source reference of the subtype.
|
|
46511
|
+
* @export
|
|
46512
|
+
* @interface SourceSubtypeWithSourceSourceV2026
|
|
46513
|
+
*/
|
|
46514
|
+
export interface SourceSubtypeWithSourceSourceV2026 {
|
|
46515
|
+
/**
|
|
46516
|
+
* Type of the reference object.
|
|
46517
|
+
* @type {string}
|
|
46518
|
+
* @memberof SourceSubtypeWithSourceSourceV2026
|
|
46519
|
+
*/
|
|
46520
|
+
'type'?: SourceSubtypeWithSourceSourceV2026TypeV2026;
|
|
46521
|
+
/**
|
|
46522
|
+
* Unique identifier for the source.
|
|
46523
|
+
* @type {string}
|
|
46524
|
+
* @memberof SourceSubtypeWithSourceSourceV2026
|
|
46525
|
+
*/
|
|
46526
|
+
'id'?: string;
|
|
46527
|
+
/**
|
|
46528
|
+
* Name of the source.
|
|
46529
|
+
* @type {string}
|
|
46530
|
+
* @memberof SourceSubtypeWithSourceSourceV2026
|
|
46531
|
+
*/
|
|
46532
|
+
'name'?: string;
|
|
46533
|
+
}
|
|
46534
|
+
export declare const SourceSubtypeWithSourceSourceV2026TypeV2026: {
|
|
46535
|
+
readonly Source: "SOURCE";
|
|
46536
|
+
};
|
|
46537
|
+
export type SourceSubtypeWithSourceSourceV2026TypeV2026 = typeof SourceSubtypeWithSourceSourceV2026TypeV2026[keyof typeof SourceSubtypeWithSourceSourceV2026TypeV2026];
|
|
46538
|
+
/**
|
|
46539
|
+
*
|
|
46540
|
+
* @export
|
|
46541
|
+
* @interface SourceSubtypeWithSourceV2026
|
|
46542
|
+
*/
|
|
46543
|
+
export interface SourceSubtypeWithSourceV2026 {
|
|
46544
|
+
/**
|
|
46545
|
+
* Unique identifier for the subtype.
|
|
46546
|
+
* @type {string}
|
|
46547
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46548
|
+
*/
|
|
46549
|
+
'id'?: string;
|
|
46550
|
+
/**
|
|
46551
|
+
* The ID of the source.
|
|
46552
|
+
* @type {string}
|
|
46553
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46554
|
+
*/
|
|
46555
|
+
'sourceId'?: string;
|
|
46556
|
+
/**
|
|
46557
|
+
* Technical name of the subtype.
|
|
46558
|
+
* @type {string}
|
|
46559
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46560
|
+
*/
|
|
46561
|
+
'technicalName'?: string;
|
|
46562
|
+
/**
|
|
46563
|
+
* Display name of the subtype.
|
|
46564
|
+
* @type {string}
|
|
46565
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46566
|
+
*/
|
|
46567
|
+
'displayName'?: string;
|
|
46568
|
+
/**
|
|
46569
|
+
* Description of the subtype.
|
|
46570
|
+
* @type {string}
|
|
46571
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46572
|
+
*/
|
|
46573
|
+
'description'?: string;
|
|
46574
|
+
/**
|
|
46575
|
+
* Creation timestamp.
|
|
46576
|
+
* @type {string}
|
|
46577
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46578
|
+
*/
|
|
46579
|
+
'created'?: string;
|
|
46580
|
+
/**
|
|
46581
|
+
* Last modified timestamp.
|
|
46582
|
+
* @type {string}
|
|
46583
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46584
|
+
*/
|
|
46585
|
+
'modified'?: string;
|
|
46586
|
+
/**
|
|
46587
|
+
* Type of the subtype. Either MACHINE OR null.
|
|
46588
|
+
* @type {string}
|
|
46589
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46590
|
+
*/
|
|
46591
|
+
'type'?: string;
|
|
46592
|
+
/**
|
|
46593
|
+
*
|
|
46594
|
+
* @type {SourceSubtypeWithSourceSourceV2026}
|
|
46595
|
+
* @memberof SourceSubtypeWithSourceV2026
|
|
46596
|
+
*/
|
|
46597
|
+
'source'?: SourceSubtypeWithSourceSourceV2026;
|
|
46598
|
+
}
|
|
46274
46599
|
/**
|
|
46275
46600
|
*
|
|
46276
46601
|
* @export
|
|
@@ -55146,7 +55471,7 @@ export declare const AccountDeletionRequestsV2026ApiFp: (configuration?: Configu
|
|
|
55146
55471
|
* @param {*} [axiosOptions] Override http request option.
|
|
55147
55472
|
* @throws {RequiredError}
|
|
55148
55473
|
*/
|
|
55149
|
-
deleteAccountRequest(accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
55474
|
+
deleteAccountRequest(accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>>;
|
|
55150
55475
|
/**
|
|
55151
55476
|
* 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.
|
|
55152
55477
|
* @summary List of Account Deletion Requests
|
|
@@ -55171,7 +55496,7 @@ export declare const AccountDeletionRequestsV2026ApiFactory: (configuration?: Co
|
|
|
55171
55496
|
* @param {*} [axiosOptions] Override http request option.
|
|
55172
55497
|
* @throws {RequiredError}
|
|
55173
55498
|
*/
|
|
55174
|
-
deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
55499
|
+
deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026>;
|
|
55175
55500
|
/**
|
|
55176
55501
|
* 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.
|
|
55177
55502
|
* @summary List of Account Deletion Requests
|
|
@@ -55246,7 +55571,7 @@ export declare class AccountDeletionRequestsV2026Api extends BaseAPI {
|
|
|
55246
55571
|
* @throws {RequiredError}
|
|
55247
55572
|
* @memberof AccountDeletionRequestsV2026Api
|
|
55248
55573
|
*/
|
|
55249
|
-
deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
55574
|
+
deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountRequestAsyncResultV2026, any>>;
|
|
55250
55575
|
/**
|
|
55251
55576
|
* 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.
|
|
55252
55577
|
* @summary List of Account Deletion Requests
|
|
@@ -78127,6 +78452,202 @@ export declare const SendClassifyMachineAccountClassificationModeV2026: {
|
|
|
78127
78452
|
readonly ForceHuman: "forceHuman";
|
|
78128
78453
|
};
|
|
78129
78454
|
export type SendClassifyMachineAccountClassificationModeV2026 = typeof SendClassifyMachineAccountClassificationModeV2026[keyof typeof SendClassifyMachineAccountClassificationModeV2026];
|
|
78455
|
+
/**
|
|
78456
|
+
* MachineAccountCreationRequestV2026Api - axios parameter creator
|
|
78457
|
+
* @export
|
|
78458
|
+
*/
|
|
78459
|
+
export declare const MachineAccountCreationRequestV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
78460
|
+
/**
|
|
78461
|
+
* Initiates machine account creation request for the specified subtype. This method validates the input data, processes the machine account creation request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only request a machine accounts on subtype for which you have a create machine account entitlement provisioned.**
|
|
78462
|
+
* @summary Submit Machine Account Creation Request
|
|
78463
|
+
* @param {MachineAccountCreateRequestInputV2026} machineAccountCreateRequestInputV2026
|
|
78464
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78465
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78466
|
+
* @throws {RequiredError}
|
|
78467
|
+
*/
|
|
78468
|
+
createMachineAccountRequest: (machineAccountCreateRequestInputV2026: MachineAccountCreateRequestInputV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78469
|
+
/**
|
|
78470
|
+
* Retrieves a account request details for machine account creation. This allows the user to view all details for given account request.
|
|
78471
|
+
* @summary Get Machine Account Creation Request
|
|
78472
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78473
|
+
* @param {string} accountRequestId Account Request ID
|
|
78474
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78475
|
+
* @throws {RequiredError}
|
|
78476
|
+
*/
|
|
78477
|
+
getCreateMachineAccountRequest: (xSailPointExperimental: string, accountRequestId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78478
|
+
/**
|
|
78479
|
+
* This endpoint retrieves the list of sources and subtypes for which logged in user has the entitlement to create a machine account. The response includes a list of object detailing the source, subtype and entitlement details which enables the clients to understand if they can submit the request to create a machine account for the given subtype.
|
|
78480
|
+
* @summary Machine Account Create Access
|
|
78481
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78482
|
+
* @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
78483
|
+
* @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
78484
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78485
|
+
* @throws {RequiredError}
|
|
78486
|
+
*/
|
|
78487
|
+
getMachineAccountCreateAccessInfo: (xSailPointExperimental: string, offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78488
|
+
};
|
|
78489
|
+
/**
|
|
78490
|
+
* MachineAccountCreationRequestV2026Api - functional programming interface
|
|
78491
|
+
* @export
|
|
78492
|
+
*/
|
|
78493
|
+
export declare const MachineAccountCreationRequestV2026ApiFp: (configuration?: Configuration) => {
|
|
78494
|
+
/**
|
|
78495
|
+
* Initiates machine account creation request for the specified subtype. This method validates the input data, processes the machine account creation request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only request a machine accounts on subtype for which you have a create machine account entitlement provisioned.**
|
|
78496
|
+
* @summary Submit Machine Account Creation Request
|
|
78497
|
+
* @param {MachineAccountCreateRequestInputV2026} machineAccountCreateRequestInputV2026
|
|
78498
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78499
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78500
|
+
* @throws {RequiredError}
|
|
78501
|
+
*/
|
|
78502
|
+
createMachineAccountRequest(machineAccountCreateRequestInputV2026: MachineAccountCreateRequestInputV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestAsyncResultV2026>>;
|
|
78503
|
+
/**
|
|
78504
|
+
* Retrieves a account request details for machine account creation. This allows the user to view all details for given account request.
|
|
78505
|
+
* @summary Get Machine Account Creation Request
|
|
78506
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78507
|
+
* @param {string} accountRequestId Account Request ID
|
|
78508
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78509
|
+
* @throws {RequiredError}
|
|
78510
|
+
*/
|
|
78511
|
+
getCreateMachineAccountRequest(xSailPointExperimental: string, accountRequestId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountRequestDetailsDtoV2026>>;
|
|
78512
|
+
/**
|
|
78513
|
+
* This endpoint retrieves the list of sources and subtypes for which logged in user has the entitlement to create a machine account. The response includes a list of object detailing the source, subtype and entitlement details which enables the clients to understand if they can submit the request to create a machine account for the given subtype.
|
|
78514
|
+
* @summary Machine Account Create Access
|
|
78515
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78516
|
+
* @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
78517
|
+
* @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
78518
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78519
|
+
* @throws {RequiredError}
|
|
78520
|
+
*/
|
|
78521
|
+
getMachineAccountCreateAccessInfo(xSailPointExperimental: string, offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineAccountCreateAccessDtoV2026>>>;
|
|
78522
|
+
};
|
|
78523
|
+
/**
|
|
78524
|
+
* MachineAccountCreationRequestV2026Api - factory interface
|
|
78525
|
+
* @export
|
|
78526
|
+
*/
|
|
78527
|
+
export declare const MachineAccountCreationRequestV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
78528
|
+
/**
|
|
78529
|
+
* Initiates machine account creation request for the specified subtype. This method validates the input data, processes the machine account creation request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only request a machine accounts on subtype for which you have a create machine account entitlement provisioned.**
|
|
78530
|
+
* @summary Submit Machine Account Creation Request
|
|
78531
|
+
* @param {MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest} requestParameters Request parameters.
|
|
78532
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78533
|
+
* @throws {RequiredError}
|
|
78534
|
+
*/
|
|
78535
|
+
createMachineAccountRequest(requestParameters: MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestAsyncResultV2026>;
|
|
78536
|
+
/**
|
|
78537
|
+
* Retrieves a account request details for machine account creation. This allows the user to view all details for given account request.
|
|
78538
|
+
* @summary Get Machine Account Creation Request
|
|
78539
|
+
* @param {MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest} requestParameters Request parameters.
|
|
78540
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78541
|
+
* @throws {RequiredError}
|
|
78542
|
+
*/
|
|
78543
|
+
getCreateMachineAccountRequest(requestParameters: MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountRequestDetailsDtoV2026>;
|
|
78544
|
+
/**
|
|
78545
|
+
* This endpoint retrieves the list of sources and subtypes for which logged in user has the entitlement to create a machine account. The response includes a list of object detailing the source, subtype and entitlement details which enables the clients to understand if they can submit the request to create a machine account for the given subtype.
|
|
78546
|
+
* @summary Machine Account Create Access
|
|
78547
|
+
* @param {MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest} requestParameters Request parameters.
|
|
78548
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78549
|
+
* @throws {RequiredError}
|
|
78550
|
+
*/
|
|
78551
|
+
getMachineAccountCreateAccessInfo(requestParameters: MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineAccountCreateAccessDtoV2026>>;
|
|
78552
|
+
};
|
|
78553
|
+
/**
|
|
78554
|
+
* Request parameters for createMachineAccountRequest operation in MachineAccountCreationRequestV2026Api.
|
|
78555
|
+
* @export
|
|
78556
|
+
* @interface MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest
|
|
78557
|
+
*/
|
|
78558
|
+
export interface MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest {
|
|
78559
|
+
/**
|
|
78560
|
+
*
|
|
78561
|
+
* @type {MachineAccountCreateRequestInputV2026}
|
|
78562
|
+
* @memberof MachineAccountCreationRequestV2026ApiCreateMachineAccountRequest
|
|
78563
|
+
*/
|
|
78564
|
+
readonly machineAccountCreateRequestInputV2026: MachineAccountCreateRequestInputV2026;
|
|
78565
|
+
/**
|
|
78566
|
+
* Use this header to enable this experimental API.
|
|
78567
|
+
* @type {string}
|
|
78568
|
+
* @memberof MachineAccountCreationRequestV2026ApiCreateMachineAccountRequest
|
|
78569
|
+
*/
|
|
78570
|
+
readonly xSailPointExperimental?: string;
|
|
78571
|
+
}
|
|
78572
|
+
/**
|
|
78573
|
+
* Request parameters for getCreateMachineAccountRequest operation in MachineAccountCreationRequestV2026Api.
|
|
78574
|
+
* @export
|
|
78575
|
+
* @interface MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest
|
|
78576
|
+
*/
|
|
78577
|
+
export interface MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest {
|
|
78578
|
+
/**
|
|
78579
|
+
* Use this header to enable this experimental API.
|
|
78580
|
+
* @type {string}
|
|
78581
|
+
* @memberof MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequest
|
|
78582
|
+
*/
|
|
78583
|
+
readonly xSailPointExperimental: string;
|
|
78584
|
+
/**
|
|
78585
|
+
* Account Request ID
|
|
78586
|
+
* @type {string}
|
|
78587
|
+
* @memberof MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequest
|
|
78588
|
+
*/
|
|
78589
|
+
readonly accountRequestId: string;
|
|
78590
|
+
}
|
|
78591
|
+
/**
|
|
78592
|
+
* Request parameters for getMachineAccountCreateAccessInfo operation in MachineAccountCreationRequestV2026Api.
|
|
78593
|
+
* @export
|
|
78594
|
+
* @interface MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest
|
|
78595
|
+
*/
|
|
78596
|
+
export interface MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest {
|
|
78597
|
+
/**
|
|
78598
|
+
* Use this header to enable this experimental API.
|
|
78599
|
+
* @type {string}
|
|
78600
|
+
* @memberof MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfo
|
|
78601
|
+
*/
|
|
78602
|
+
readonly xSailPointExperimental: string;
|
|
78603
|
+
/**
|
|
78604
|
+
* Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
78605
|
+
* @type {number}
|
|
78606
|
+
* @memberof MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfo
|
|
78607
|
+
*/
|
|
78608
|
+
readonly offset?: number;
|
|
78609
|
+
/**
|
|
78610
|
+
* Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
78611
|
+
* @type {number}
|
|
78612
|
+
* @memberof MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfo
|
|
78613
|
+
*/
|
|
78614
|
+
readonly limit?: number;
|
|
78615
|
+
}
|
|
78616
|
+
/**
|
|
78617
|
+
* MachineAccountCreationRequestV2026Api - object-oriented interface
|
|
78618
|
+
* @export
|
|
78619
|
+
* @class MachineAccountCreationRequestV2026Api
|
|
78620
|
+
* @extends {BaseAPI}
|
|
78621
|
+
*/
|
|
78622
|
+
export declare class MachineAccountCreationRequestV2026Api extends BaseAPI {
|
|
78623
|
+
/**
|
|
78624
|
+
* Initiates machine account creation request for the specified subtype. This method validates the input data, processes the machine account creation request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only request a machine accounts on subtype for which you have a create machine account entitlement provisioned.**
|
|
78625
|
+
* @summary Submit Machine Account Creation Request
|
|
78626
|
+
* @param {MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest} requestParameters Request parameters.
|
|
78627
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78628
|
+
* @throws {RequiredError}
|
|
78629
|
+
* @memberof MachineAccountCreationRequestV2026Api
|
|
78630
|
+
*/
|
|
78631
|
+
createMachineAccountRequest(requestParameters: MachineAccountCreationRequestV2026ApiCreateMachineAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountRequestAsyncResultV2026, any>>;
|
|
78632
|
+
/**
|
|
78633
|
+
* Retrieves a account request details for machine account creation. This allows the user to view all details for given account request.
|
|
78634
|
+
* @summary Get Machine Account Creation Request
|
|
78635
|
+
* @param {MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest} requestParameters Request parameters.
|
|
78636
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78637
|
+
* @throws {RequiredError}
|
|
78638
|
+
* @memberof MachineAccountCreationRequestV2026Api
|
|
78639
|
+
*/
|
|
78640
|
+
getCreateMachineAccountRequest(requestParameters: MachineAccountCreationRequestV2026ApiGetCreateMachineAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountRequestDetailsDtoV2026, any>>;
|
|
78641
|
+
/**
|
|
78642
|
+
* This endpoint retrieves the list of sources and subtypes for which logged in user has the entitlement to create a machine account. The response includes a list of object detailing the source, subtype and entitlement details which enables the clients to understand if they can submit the request to create a machine account for the given subtype.
|
|
78643
|
+
* @summary Machine Account Create Access
|
|
78644
|
+
* @param {MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest} requestParameters Request parameters.
|
|
78645
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78646
|
+
* @throws {RequiredError}
|
|
78647
|
+
* @memberof MachineAccountCreationRequestV2026Api
|
|
78648
|
+
*/
|
|
78649
|
+
getMachineAccountCreateAccessInfo(requestParameters: MachineAccountCreationRequestV2026ApiGetMachineAccountCreateAccessInfoRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountCreateAccessDtoV2026[], any>>;
|
|
78650
|
+
}
|
|
78130
78651
|
/**
|
|
78131
78652
|
* MachineAccountMappingsV2026Api - axios parameter creator
|
|
78132
78653
|
* @export
|
|
@@ -78369,6 +78890,178 @@ export declare class MachineAccountMappingsV2026Api extends BaseAPI {
|
|
|
78369
78890
|
*/
|
|
78370
78891
|
setMachineAccountMappings(requestParameters: MachineAccountMappingsV2026ApiSetMachineAccountMappingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeMappingsV2026[], any>>;
|
|
78371
78892
|
}
|
|
78893
|
+
/**
|
|
78894
|
+
* MachineAccountSubtypesV2026Api - axios parameter creator
|
|
78895
|
+
* @export
|
|
78896
|
+
*/
|
|
78897
|
+
export declare const MachineAccountSubtypesV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
78898
|
+
/**
|
|
78899
|
+
* Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
|
|
78900
|
+
* @summary Delete subtype by ID
|
|
78901
|
+
* @param {string} subtypeId The ID of the subtype.
|
|
78902
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78903
|
+
* @throws {RequiredError}
|
|
78904
|
+
*/
|
|
78905
|
+
deleteMachineAccountSubtype: (subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78906
|
+
/**
|
|
78907
|
+
* Get a machine account subtype by subtype ID.
|
|
78908
|
+
* @summary Get subtype by ID
|
|
78909
|
+
* @param {string} subtypeId The ID of the subtype.
|
|
78910
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78911
|
+
* @throws {RequiredError}
|
|
78912
|
+
*/
|
|
78913
|
+
getSourceSubtypeById: (subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78914
|
+
/**
|
|
78915
|
+
* Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
|
|
78916
|
+
* @summary Patch subtype by ID
|
|
78917
|
+
* @param {string} subtypeId The ID of the subtype.
|
|
78918
|
+
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
78919
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78920
|
+
* @throws {RequiredError}
|
|
78921
|
+
*/
|
|
78922
|
+
patchMachineAccountSubtype: (subtypeId: string, requestBody: Array<object>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78923
|
+
};
|
|
78924
|
+
/**
|
|
78925
|
+
* MachineAccountSubtypesV2026Api - functional programming interface
|
|
78926
|
+
* @export
|
|
78927
|
+
*/
|
|
78928
|
+
export declare const MachineAccountSubtypesV2026ApiFp: (configuration?: Configuration) => {
|
|
78929
|
+
/**
|
|
78930
|
+
* Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
|
|
78931
|
+
* @summary Delete subtype by ID
|
|
78932
|
+
* @param {string} subtypeId The ID of the subtype.
|
|
78933
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78934
|
+
* @throws {RequiredError}
|
|
78935
|
+
*/
|
|
78936
|
+
deleteMachineAccountSubtype(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
78937
|
+
/**
|
|
78938
|
+
* Get a machine account subtype by subtype ID.
|
|
78939
|
+
* @summary Get subtype by ID
|
|
78940
|
+
* @param {string} subtypeId The ID of the subtype.
|
|
78941
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78942
|
+
* @throws {RequiredError}
|
|
78943
|
+
*/
|
|
78944
|
+
getSourceSubtypeById(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>>;
|
|
78945
|
+
/**
|
|
78946
|
+
* Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
|
|
78947
|
+
* @summary Patch subtype by ID
|
|
78948
|
+
* @param {string} subtypeId The ID of the subtype.
|
|
78949
|
+
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
78950
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78951
|
+
* @throws {RequiredError}
|
|
78952
|
+
*/
|
|
78953
|
+
patchMachineAccountSubtype(subtypeId: string, requestBody: Array<object>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>>;
|
|
78954
|
+
};
|
|
78955
|
+
/**
|
|
78956
|
+
* MachineAccountSubtypesV2026Api - factory interface
|
|
78957
|
+
* @export
|
|
78958
|
+
*/
|
|
78959
|
+
export declare const MachineAccountSubtypesV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
78960
|
+
/**
|
|
78961
|
+
* Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
|
|
78962
|
+
* @summary Delete subtype by ID
|
|
78963
|
+
* @param {MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
78964
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78965
|
+
* @throws {RequiredError}
|
|
78966
|
+
*/
|
|
78967
|
+
deleteMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
78968
|
+
/**
|
|
78969
|
+
* Get a machine account subtype by subtype ID.
|
|
78970
|
+
* @summary Get subtype by ID
|
|
78971
|
+
* @param {MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest} requestParameters Request parameters.
|
|
78972
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78973
|
+
* @throws {RequiredError}
|
|
78974
|
+
*/
|
|
78975
|
+
getSourceSubtypeById(requestParameters: MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026>;
|
|
78976
|
+
/**
|
|
78977
|
+
* Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
|
|
78978
|
+
* @summary Patch subtype by ID
|
|
78979
|
+
* @param {MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
78980
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
78981
|
+
* @throws {RequiredError}
|
|
78982
|
+
*/
|
|
78983
|
+
patchMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026>;
|
|
78984
|
+
};
|
|
78985
|
+
/**
|
|
78986
|
+
* Request parameters for deleteMachineAccountSubtype operation in MachineAccountSubtypesV2026Api.
|
|
78987
|
+
* @export
|
|
78988
|
+
* @interface MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest
|
|
78989
|
+
*/
|
|
78990
|
+
export interface MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest {
|
|
78991
|
+
/**
|
|
78992
|
+
* The ID of the subtype.
|
|
78993
|
+
* @type {string}
|
|
78994
|
+
* @memberof MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtype
|
|
78995
|
+
*/
|
|
78996
|
+
readonly subtypeId: string;
|
|
78997
|
+
}
|
|
78998
|
+
/**
|
|
78999
|
+
* Request parameters for getSourceSubtypeById operation in MachineAccountSubtypesV2026Api.
|
|
79000
|
+
* @export
|
|
79001
|
+
* @interface MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest
|
|
79002
|
+
*/
|
|
79003
|
+
export interface MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest {
|
|
79004
|
+
/**
|
|
79005
|
+
* The ID of the subtype.
|
|
79006
|
+
* @type {string}
|
|
79007
|
+
* @memberof MachineAccountSubtypesV2026ApiGetSourceSubtypeById
|
|
79008
|
+
*/
|
|
79009
|
+
readonly subtypeId: string;
|
|
79010
|
+
}
|
|
79011
|
+
/**
|
|
79012
|
+
* Request parameters for patchMachineAccountSubtype operation in MachineAccountSubtypesV2026Api.
|
|
79013
|
+
* @export
|
|
79014
|
+
* @interface MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest
|
|
79015
|
+
*/
|
|
79016
|
+
export interface MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest {
|
|
79017
|
+
/**
|
|
79018
|
+
* The ID of the subtype.
|
|
79019
|
+
* @type {string}
|
|
79020
|
+
* @memberof MachineAccountSubtypesV2026ApiPatchMachineAccountSubtype
|
|
79021
|
+
*/
|
|
79022
|
+
readonly subtypeId: string;
|
|
79023
|
+
/**
|
|
79024
|
+
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
79025
|
+
* @type {Array<object>}
|
|
79026
|
+
* @memberof MachineAccountSubtypesV2026ApiPatchMachineAccountSubtype
|
|
79027
|
+
*/
|
|
79028
|
+
readonly requestBody: Array<object>;
|
|
79029
|
+
}
|
|
79030
|
+
/**
|
|
79031
|
+
* MachineAccountSubtypesV2026Api - object-oriented interface
|
|
79032
|
+
* @export
|
|
79033
|
+
* @class MachineAccountSubtypesV2026Api
|
|
79034
|
+
* @extends {BaseAPI}
|
|
79035
|
+
*/
|
|
79036
|
+
export declare class MachineAccountSubtypesV2026Api extends BaseAPI {
|
|
79037
|
+
/**
|
|
79038
|
+
* Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
|
|
79039
|
+
* @summary Delete subtype by ID
|
|
79040
|
+
* @param {MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
79041
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79042
|
+
* @throws {RequiredError}
|
|
79043
|
+
* @memberof MachineAccountSubtypesV2026Api
|
|
79044
|
+
*/
|
|
79045
|
+
deleteMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
79046
|
+
/**
|
|
79047
|
+
* Get a machine account subtype by subtype ID.
|
|
79048
|
+
* @summary Get subtype by ID
|
|
79049
|
+
* @param {MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest} requestParameters Request parameters.
|
|
79050
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79051
|
+
* @throws {RequiredError}
|
|
79052
|
+
* @memberof MachineAccountSubtypesV2026Api
|
|
79053
|
+
*/
|
|
79054
|
+
getSourceSubtypeById(requestParameters: MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026, any>>;
|
|
79055
|
+
/**
|
|
79056
|
+
* Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
|
|
79057
|
+
* @summary Patch subtype by ID
|
|
79058
|
+
* @param {MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
|
|
79059
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79060
|
+
* @throws {RequiredError}
|
|
79061
|
+
* @memberof MachineAccountSubtypesV2026Api
|
|
79062
|
+
*/
|
|
79063
|
+
patchMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026, any>>;
|
|
79064
|
+
}
|
|
78372
79065
|
/**
|
|
78373
79066
|
* MachineAccountsV2026Api - axios parameter creator
|
|
78374
79067
|
* @export
|
|
@@ -78393,7 +79086,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78393
79086
|
* @param {*} [axiosOptions] Override http request option.
|
|
78394
79087
|
* @throws {RequiredError}
|
|
78395
79088
|
*/
|
|
78396
|
-
|
|
79089
|
+
deleteMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78397
79090
|
/**
|
|
78398
79091
|
* Use this API to return the details for a single machine account by its ID.
|
|
78399
79092
|
* @summary Get machine account details
|
|
@@ -78404,14 +79097,14 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78404
79097
|
*/
|
|
78405
79098
|
getMachineAccount: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78406
79099
|
/**
|
|
78407
|
-
* 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.
|
|
79100
|
+
* This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
|
|
78408
79101
|
* @summary Machine Subtype Approval Config
|
|
78409
79102
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78410
79103
|
* @param {string} subtypeId machine subtype id.
|
|
78411
79104
|
* @param {*} [axiosOptions] Override http request option.
|
|
78412
79105
|
* @throws {RequiredError}
|
|
78413
79106
|
*/
|
|
78414
|
-
|
|
79107
|
+
getMachineAccountSubtypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78415
79108
|
/**
|
|
78416
79109
|
* Get a machine account subtype by its unique ID.
|
|
78417
79110
|
* @summary Retrieve subtype by subtype id
|
|
@@ -78458,6 +79151,15 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78458
79151
|
* @throws {RequiredError}
|
|
78459
79152
|
*/
|
|
78460
79153
|
listMachineAccounts: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79154
|
+
/**
|
|
79155
|
+
* This endpoint retrieves the subtypes for given subtypeIds.
|
|
79156
|
+
* @summary Bulk Retrieve of Source Subtypes
|
|
79157
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79158
|
+
* @param {Array<string>} requestBody
|
|
79159
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79160
|
+
* @throws {RequiredError}
|
|
79161
|
+
*/
|
|
79162
|
+
loadBulkSourceSubtypes: (xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78461
79163
|
/**
|
|
78462
79164
|
* Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
|
|
78463
79165
|
* @summary Patch subtype
|
|
@@ -78468,7 +79170,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78468
79170
|
* @param {*} [axiosOptions] Override http request option.
|
|
78469
79171
|
* @throws {RequiredError}
|
|
78470
79172
|
*/
|
|
78471
|
-
|
|
79173
|
+
patchMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78472
79174
|
/**
|
|
78473
79175
|
* Use this API to update machine accounts details.
|
|
78474
79176
|
* @summary Update machine account details
|
|
@@ -78480,7 +79182,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78480
79182
|
*/
|
|
78481
79183
|
updateMachineAccount: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78482
79184
|
/**
|
|
78483
|
-
* 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.
|
|
79185
|
+
* Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
|
|
78484
79186
|
* @summary Machine Subtype Approval Config
|
|
78485
79187
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78486
79188
|
* @param {string} subtypeId machine account subtype ID.
|
|
@@ -78488,7 +79190,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78488
79190
|
* @param {*} [axiosOptions] Override http request option.
|
|
78489
79191
|
* @throws {RequiredError}
|
|
78490
79192
|
*/
|
|
78491
|
-
|
|
79193
|
+
updateMachineAccountSubtypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78492
79194
|
};
|
|
78493
79195
|
/**
|
|
78494
79196
|
* MachineAccountsV2026Api - functional programming interface
|
|
@@ -78514,7 +79216,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78514
79216
|
* @param {*} [axiosOptions] Override http request option.
|
|
78515
79217
|
* @throws {RequiredError}
|
|
78516
79218
|
*/
|
|
78517
|
-
|
|
79219
|
+
deleteMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
78518
79220
|
/**
|
|
78519
79221
|
* Use this API to return the details for a single machine account by its ID.
|
|
78520
79222
|
* @summary Get machine account details
|
|
@@ -78525,14 +79227,14 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78525
79227
|
*/
|
|
78526
79228
|
getMachineAccount(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2026>>;
|
|
78527
79229
|
/**
|
|
78528
|
-
* 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.
|
|
79230
|
+
* This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
|
|
78529
79231
|
* @summary Machine Subtype Approval Config
|
|
78530
79232
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78531
79233
|
* @param {string} subtypeId machine subtype id.
|
|
78532
79234
|
* @param {*} [axiosOptions] Override http request option.
|
|
78533
79235
|
* @throws {RequiredError}
|
|
78534
79236
|
*/
|
|
78535
|
-
|
|
79237
|
+
getMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>>;
|
|
78536
79238
|
/**
|
|
78537
79239
|
* Get a machine account subtype by its unique ID.
|
|
78538
79240
|
* @summary Retrieve subtype by subtype id
|
|
@@ -78579,6 +79281,15 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78579
79281
|
* @throws {RequiredError}
|
|
78580
79282
|
*/
|
|
78581
79283
|
listMachineAccounts(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineAccountV2026>>>;
|
|
79284
|
+
/**
|
|
79285
|
+
* This endpoint retrieves the subtypes for given subtypeIds.
|
|
79286
|
+
* @summary Bulk Retrieve of Source Subtypes
|
|
79287
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
79288
|
+
* @param {Array<string>} requestBody
|
|
79289
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79290
|
+
* @throws {RequiredError}
|
|
79291
|
+
*/
|
|
79292
|
+
loadBulkSourceSubtypes(xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeWithSourceV2026>>>;
|
|
78582
79293
|
/**
|
|
78583
79294
|
* Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
|
|
78584
79295
|
* @summary Patch subtype
|
|
@@ -78589,7 +79300,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78589
79300
|
* @param {*} [axiosOptions] Override http request option.
|
|
78590
79301
|
* @throws {RequiredError}
|
|
78591
79302
|
*/
|
|
78592
|
-
|
|
79303
|
+
patchMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>>;
|
|
78593
79304
|
/**
|
|
78594
79305
|
* Use this API to update machine accounts details.
|
|
78595
79306
|
* @summary Update machine account details
|
|
@@ -78601,7 +79312,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78601
79312
|
*/
|
|
78602
79313
|
updateMachineAccount(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2026>>;
|
|
78603
79314
|
/**
|
|
78604
|
-
* 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.
|
|
79315
|
+
* Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
|
|
78605
79316
|
* @summary Machine Subtype Approval Config
|
|
78606
79317
|
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78607
79318
|
* @param {string} subtypeId machine account subtype ID.
|
|
@@ -78609,7 +79320,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78609
79320
|
* @param {*} [axiosOptions] Override http request option.
|
|
78610
79321
|
* @throws {RequiredError}
|
|
78611
79322
|
*/
|
|
78612
|
-
|
|
79323
|
+
updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>>;
|
|
78613
79324
|
};
|
|
78614
79325
|
/**
|
|
78615
79326
|
* MachineAccountsV2026Api - factory interface
|
|
@@ -78627,11 +79338,11 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
78627
79338
|
/**
|
|
78628
79339
|
* Delete a machine account subtype by source ID and technical name.
|
|
78629
79340
|
* @summary Delete subtype
|
|
78630
|
-
* @param {
|
|
79341
|
+
* @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
|
|
78631
79342
|
* @param {*} [axiosOptions] Override http request option.
|
|
78632
79343
|
* @throws {RequiredError}
|
|
78633
79344
|
*/
|
|
78634
|
-
|
|
79345
|
+
deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
78635
79346
|
/**
|
|
78636
79347
|
* Use this API to return the details for a single machine account by its ID.
|
|
78637
79348
|
* @summary Get machine account details
|
|
@@ -78641,13 +79352,13 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
78641
79352
|
*/
|
|
78642
79353
|
getMachineAccount(requestParameters: MachineAccountsV2026ApiGetMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2026>;
|
|
78643
79354
|
/**
|
|
78644
|
-
* 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.
|
|
79355
|
+
* This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
|
|
78645
79356
|
* @summary Machine Subtype Approval Config
|
|
78646
|
-
* @param {
|
|
79357
|
+
* @param {MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
|
|
78647
79358
|
* @param {*} [axiosOptions] Override http request option.
|
|
78648
79359
|
* @throws {RequiredError}
|
|
78649
79360
|
*/
|
|
78650
|
-
|
|
79361
|
+
getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026>;
|
|
78651
79362
|
/**
|
|
78652
79363
|
* Get a machine account subtype by its unique ID.
|
|
78653
79364
|
* @summary Retrieve subtype by subtype id
|
|
@@ -78680,14 +79391,22 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
78680
79391
|
* @throws {RequiredError}
|
|
78681
79392
|
*/
|
|
78682
79393
|
listMachineAccounts(requestParameters?: MachineAccountsV2026ApiListMachineAccountsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineAccountV2026>>;
|
|
79394
|
+
/**
|
|
79395
|
+
* This endpoint retrieves the subtypes for given subtypeIds.
|
|
79396
|
+
* @summary Bulk Retrieve of Source Subtypes
|
|
79397
|
+
* @param {MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
|
|
79398
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79399
|
+
* @throws {RequiredError}
|
|
79400
|
+
*/
|
|
79401
|
+
loadBulkSourceSubtypes(requestParameters: MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeWithSourceV2026>>;
|
|
78683
79402
|
/**
|
|
78684
79403
|
* Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
|
|
78685
79404
|
* @summary Patch subtype
|
|
78686
|
-
* @param {
|
|
79405
|
+
* @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
|
|
78687
79406
|
* @param {*} [axiosOptions] Override http request option.
|
|
78688
79407
|
* @throws {RequiredError}
|
|
78689
79408
|
*/
|
|
78690
|
-
|
|
79409
|
+
patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026>;
|
|
78691
79410
|
/**
|
|
78692
79411
|
* Use this API to update machine accounts details.
|
|
78693
79412
|
* @summary Update machine account details
|
|
@@ -78697,13 +79416,13 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
|
|
|
78697
79416
|
*/
|
|
78698
79417
|
updateMachineAccount(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2026>;
|
|
78699
79418
|
/**
|
|
78700
|
-
* 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.
|
|
79419
|
+
* Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
|
|
78701
79420
|
* @summary Machine Subtype Approval Config
|
|
78702
|
-
* @param {
|
|
79421
|
+
* @param {MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
|
|
78703
79422
|
* @param {*} [axiosOptions] Override http request option.
|
|
78704
79423
|
* @throws {RequiredError}
|
|
78705
79424
|
*/
|
|
78706
|
-
|
|
79425
|
+
updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026>;
|
|
78707
79426
|
};
|
|
78708
79427
|
/**
|
|
78709
79428
|
* Request parameters for createMachineAccountSubtype operation in MachineAccountsV2026Api.
|
|
@@ -78731,27 +79450,27 @@ export interface MachineAccountsV2026ApiCreateMachineAccountSubtypeRequest {
|
|
|
78731
79450
|
readonly xSailPointExperimental?: string;
|
|
78732
79451
|
}
|
|
78733
79452
|
/**
|
|
78734
|
-
* Request parameters for
|
|
79453
|
+
* Request parameters for deleteMachineAccountSubtypeByTechnicalName operation in MachineAccountsV2026Api.
|
|
78735
79454
|
* @export
|
|
78736
|
-
* @interface
|
|
79455
|
+
* @interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest
|
|
78737
79456
|
*/
|
|
78738
|
-
export interface
|
|
79457
|
+
export interface MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest {
|
|
78739
79458
|
/**
|
|
78740
79459
|
* The ID of the source.
|
|
78741
79460
|
* @type {string}
|
|
78742
|
-
* @memberof
|
|
79461
|
+
* @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalName
|
|
78743
79462
|
*/
|
|
78744
79463
|
readonly sourceId: string;
|
|
78745
79464
|
/**
|
|
78746
79465
|
* The technical name of the subtype.
|
|
78747
79466
|
* @type {string}
|
|
78748
|
-
* @memberof
|
|
79467
|
+
* @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalName
|
|
78749
79468
|
*/
|
|
78750
79469
|
readonly technicalName: string;
|
|
78751
79470
|
/**
|
|
78752
79471
|
* Use this header to enable this experimental API.
|
|
78753
79472
|
* @type {string}
|
|
78754
|
-
* @memberof
|
|
79473
|
+
* @memberof MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalName
|
|
78755
79474
|
*/
|
|
78756
79475
|
readonly xSailPointExperimental?: string;
|
|
78757
79476
|
}
|
|
@@ -78775,21 +79494,21 @@ export interface MachineAccountsV2026ApiGetMachineAccountRequest {
|
|
|
78775
79494
|
readonly xSailPointExperimental?: string;
|
|
78776
79495
|
}
|
|
78777
79496
|
/**
|
|
78778
|
-
* Request parameters for
|
|
79497
|
+
* Request parameters for getMachineAccountSubtypeApprovalConfig operation in MachineAccountsV2026Api.
|
|
78779
79498
|
* @export
|
|
78780
|
-
* @interface
|
|
79499
|
+
* @interface MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest
|
|
78781
79500
|
*/
|
|
78782
|
-
export interface
|
|
79501
|
+
export interface MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest {
|
|
78783
79502
|
/**
|
|
78784
79503
|
* Use this header to enable this experimental API.
|
|
78785
79504
|
* @type {string}
|
|
78786
|
-
* @memberof
|
|
79505
|
+
* @memberof MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfig
|
|
78787
79506
|
*/
|
|
78788
79507
|
readonly xSailPointExperimental: string;
|
|
78789
79508
|
/**
|
|
78790
79509
|
* machine subtype id.
|
|
78791
79510
|
* @type {string}
|
|
78792
|
-
* @memberof
|
|
79511
|
+
* @memberof MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfig
|
|
78793
79512
|
*/
|
|
78794
79513
|
readonly subtypeId: string;
|
|
78795
79514
|
}
|
|
@@ -78930,33 +79649,52 @@ export interface MachineAccountsV2026ApiListMachineAccountsRequest {
|
|
|
78930
79649
|
readonly xSailPointExperimental?: string;
|
|
78931
79650
|
}
|
|
78932
79651
|
/**
|
|
78933
|
-
* Request parameters for
|
|
79652
|
+
* Request parameters for loadBulkSourceSubtypes operation in MachineAccountsV2026Api.
|
|
78934
79653
|
* @export
|
|
78935
|
-
* @interface
|
|
79654
|
+
* @interface MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest
|
|
78936
79655
|
*/
|
|
78937
|
-
export interface
|
|
79656
|
+
export interface MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest {
|
|
79657
|
+
/**
|
|
79658
|
+
* Use this header to enable this experimental API.
|
|
79659
|
+
* @type {string}
|
|
79660
|
+
* @memberof MachineAccountsV2026ApiLoadBulkSourceSubtypes
|
|
79661
|
+
*/
|
|
79662
|
+
readonly xSailPointExperimental: string;
|
|
79663
|
+
/**
|
|
79664
|
+
*
|
|
79665
|
+
* @type {Array<string>}
|
|
79666
|
+
* @memberof MachineAccountsV2026ApiLoadBulkSourceSubtypes
|
|
79667
|
+
*/
|
|
79668
|
+
readonly requestBody: Array<string>;
|
|
79669
|
+
}
|
|
79670
|
+
/**
|
|
79671
|
+
* Request parameters for patchMachineAccountSubtypeByTechnicalName operation in MachineAccountsV2026Api.
|
|
79672
|
+
* @export
|
|
79673
|
+
* @interface MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest
|
|
79674
|
+
*/
|
|
79675
|
+
export interface MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest {
|
|
78938
79676
|
/**
|
|
78939
79677
|
* The ID of the source.
|
|
78940
79678
|
* @type {string}
|
|
78941
|
-
* @memberof
|
|
79679
|
+
* @memberof MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalName
|
|
78942
79680
|
*/
|
|
78943
79681
|
readonly sourceId: string;
|
|
78944
79682
|
/**
|
|
78945
79683
|
* The technical name of the subtype.
|
|
78946
79684
|
* @type {string}
|
|
78947
|
-
* @memberof
|
|
79685
|
+
* @memberof MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalName
|
|
78948
79686
|
*/
|
|
78949
79687
|
readonly technicalName: string;
|
|
78950
79688
|
/**
|
|
78951
79689
|
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
78952
79690
|
* @type {Array<object>}
|
|
78953
|
-
* @memberof
|
|
79691
|
+
* @memberof MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalName
|
|
78954
79692
|
*/
|
|
78955
79693
|
readonly requestBody: Array<object>;
|
|
78956
79694
|
/**
|
|
78957
79695
|
* Use this header to enable this experimental API.
|
|
78958
79696
|
* @type {string}
|
|
78959
|
-
* @memberof
|
|
79697
|
+
* @memberof MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalName
|
|
78960
79698
|
*/
|
|
78961
79699
|
readonly xSailPointExperimental?: string;
|
|
78962
79700
|
}
|
|
@@ -78986,27 +79724,27 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountRequest {
|
|
|
78986
79724
|
readonly xSailPointExperimental?: string;
|
|
78987
79725
|
}
|
|
78988
79726
|
/**
|
|
78989
|
-
* Request parameters for
|
|
79727
|
+
* Request parameters for updateMachineAccountSubtypeApprovalConfig operation in MachineAccountsV2026Api.
|
|
78990
79728
|
* @export
|
|
78991
|
-
* @interface
|
|
79729
|
+
* @interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest
|
|
78992
79730
|
*/
|
|
78993
|
-
export interface
|
|
79731
|
+
export interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest {
|
|
78994
79732
|
/**
|
|
78995
79733
|
* Use this header to enable this experimental API.
|
|
78996
79734
|
* @type {string}
|
|
78997
|
-
* @memberof
|
|
79735
|
+
* @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
|
|
78998
79736
|
*/
|
|
78999
79737
|
readonly xSailPointExperimental: string;
|
|
79000
79738
|
/**
|
|
79001
79739
|
* machine account subtype ID.
|
|
79002
79740
|
* @type {string}
|
|
79003
|
-
* @memberof
|
|
79741
|
+
* @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
|
|
79004
79742
|
*/
|
|
79005
79743
|
readonly subtypeId: string;
|
|
79006
79744
|
/**
|
|
79007
79745
|
* The JSONPatch payload used to update the object.
|
|
79008
79746
|
* @type {Array<JsonPatchOperationV2026>}
|
|
79009
|
-
* @memberof
|
|
79747
|
+
* @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
|
|
79010
79748
|
*/
|
|
79011
79749
|
readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
|
|
79012
79750
|
}
|
|
@@ -79029,12 +79767,12 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
79029
79767
|
/**
|
|
79030
79768
|
* Delete a machine account subtype by source ID and technical name.
|
|
79031
79769
|
* @summary Delete subtype
|
|
79032
|
-
* @param {
|
|
79770
|
+
* @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
|
|
79033
79771
|
* @param {*} [axiosOptions] Override http request option.
|
|
79034
79772
|
* @throws {RequiredError}
|
|
79035
79773
|
* @memberof MachineAccountsV2026Api
|
|
79036
79774
|
*/
|
|
79037
|
-
|
|
79775
|
+
deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
79038
79776
|
/**
|
|
79039
79777
|
* Use this API to return the details for a single machine account by its ID.
|
|
79040
79778
|
* @summary Get machine account details
|
|
@@ -79045,14 +79783,14 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
79045
79783
|
*/
|
|
79046
79784
|
getMachineAccount(requestParameters: MachineAccountsV2026ApiGetMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2026, any>>;
|
|
79047
79785
|
/**
|
|
79048
|
-
* 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.
|
|
79786
|
+
* This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
|
|
79049
79787
|
* @summary Machine Subtype Approval Config
|
|
79050
|
-
* @param {
|
|
79788
|
+
* @param {MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
|
|
79051
79789
|
* @param {*} [axiosOptions] Override http request option.
|
|
79052
79790
|
* @throws {RequiredError}
|
|
79053
79791
|
* @memberof MachineAccountsV2026Api
|
|
79054
79792
|
*/
|
|
79055
|
-
|
|
79793
|
+
getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubtypeConfigDtoV2026, any>>;
|
|
79056
79794
|
/**
|
|
79057
79795
|
* Get a machine account subtype by its unique ID.
|
|
79058
79796
|
* @summary Retrieve subtype by subtype id
|
|
@@ -79089,15 +79827,24 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
79089
79827
|
* @memberof MachineAccountsV2026Api
|
|
79090
79828
|
*/
|
|
79091
79829
|
listMachineAccounts(requestParameters?: MachineAccountsV2026ApiListMachineAccountsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2026[], any>>;
|
|
79830
|
+
/**
|
|
79831
|
+
* This endpoint retrieves the subtypes for given subtypeIds.
|
|
79832
|
+
* @summary Bulk Retrieve of Source Subtypes
|
|
79833
|
+
* @param {MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
|
|
79834
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
79835
|
+
* @throws {RequiredError}
|
|
79836
|
+
* @memberof MachineAccountsV2026Api
|
|
79837
|
+
*/
|
|
79838
|
+
loadBulkSourceSubtypes(requestParameters: MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026[], any>>;
|
|
79092
79839
|
/**
|
|
79093
79840
|
* Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
|
|
79094
79841
|
* @summary Patch subtype
|
|
79095
|
-
* @param {
|
|
79842
|
+
* @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
|
|
79096
79843
|
* @param {*} [axiosOptions] Override http request option.
|
|
79097
79844
|
* @throws {RequiredError}
|
|
79098
79845
|
* @memberof MachineAccountsV2026Api
|
|
79099
79846
|
*/
|
|
79100
|
-
|
|
79847
|
+
patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeV2026, any>>;
|
|
79101
79848
|
/**
|
|
79102
79849
|
* Use this API to update machine accounts details.
|
|
79103
79850
|
* @summary Update machine account details
|
|
@@ -79108,14 +79855,14 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
|
|
|
79108
79855
|
*/
|
|
79109
79856
|
updateMachineAccount(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2026, any>>;
|
|
79110
79857
|
/**
|
|
79111
|
-
* 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.
|
|
79858
|
+
* Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
|
|
79112
79859
|
* @summary Machine Subtype Approval Config
|
|
79113
|
-
* @param {
|
|
79860
|
+
* @param {MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
|
|
79114
79861
|
* @param {*} [axiosOptions] Override http request option.
|
|
79115
79862
|
* @throws {RequiredError}
|
|
79116
79863
|
* @memberof MachineAccountsV2026Api
|
|
79117
79864
|
*/
|
|
79118
|
-
|
|
79865
|
+
updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubtypeConfigDtoV2026, any>>;
|
|
79119
79866
|
}
|
|
79120
79867
|
/**
|
|
79121
79868
|
* MachineClassificationConfigV2026Api - axios parameter creator
|
|
@@ -94041,10 +94788,12 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
94041
94788
|
* This end-point lists all the ProvisioningPolicies in IdentityNow.
|
|
94042
94789
|
* @summary Lists provisioningpolicies
|
|
94043
94790
|
* @param {string} sourceId The Source id
|
|
94791
|
+
* @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
94792
|
+
* @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
94044
94793
|
* @param {*} [axiosOptions] Override http request option.
|
|
94045
94794
|
* @throws {RequiredError}
|
|
94046
94795
|
*/
|
|
94047
|
-
listProvisioningPolicies: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94796
|
+
listProvisioningPolicies: (sourceId: string, offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94048
94797
|
/**
|
|
94049
94798
|
* This end-point lists all the sources in IdentityNow.
|
|
94050
94799
|
* @summary Lists all sources in identitynow.
|
|
@@ -94550,10 +95299,12 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
94550
95299
|
* This end-point lists all the ProvisioningPolicies in IdentityNow.
|
|
94551
95300
|
* @summary Lists provisioningpolicies
|
|
94552
95301
|
* @param {string} sourceId The Source id
|
|
95302
|
+
* @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
95303
|
+
* @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
94553
95304
|
* @param {*} [axiosOptions] Override http request option.
|
|
94554
95305
|
* @throws {RequiredError}
|
|
94555
95306
|
*/
|
|
94556
|
-
listProvisioningPolicies(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDtoV2026>>>;
|
|
95307
|
+
listProvisioningPolicies(sourceId: string, offset?: number, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDtoV2026>>>;
|
|
94557
95308
|
/**
|
|
94558
95309
|
* This end-point lists all the sources in IdentityNow.
|
|
94559
95310
|
* @summary Lists all sources in identitynow.
|
|
@@ -95816,6 +96567,18 @@ export interface SourcesV2026ApiListProvisioningPoliciesRequest {
|
|
|
95816
96567
|
* @memberof SourcesV2026ApiListProvisioningPolicies
|
|
95817
96568
|
*/
|
|
95818
96569
|
readonly sourceId: string;
|
|
96570
|
+
/**
|
|
96571
|
+
* Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
96572
|
+
* @type {number}
|
|
96573
|
+
* @memberof SourcesV2026ApiListProvisioningPolicies
|
|
96574
|
+
*/
|
|
96575
|
+
readonly offset?: number;
|
|
96576
|
+
/**
|
|
96577
|
+
* Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
96578
|
+
* @type {number}
|
|
96579
|
+
* @memberof SourcesV2026ApiListProvisioningPolicies
|
|
96580
|
+
*/
|
|
96581
|
+
readonly limit?: number;
|
|
95819
96582
|
}
|
|
95820
96583
|
/**
|
|
95821
96584
|
* Request parameters for listSources operation in SourcesV2026Api.
|