sailpoint-api-client 1.6.8 → 1.6.10
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/api.ts +343 -1123
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +321 -840
- package/dist/beta/api.js +113 -699
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/beta/common.js.map +1 -1
- package/dist/generic/api.d.ts +386 -0
- package/dist/generic/api.js +689 -0
- package/dist/generic/api.js.map +1 -0
- package/dist/generic/base.d.ts +66 -0
- package/dist/generic/base.js +89 -0
- package/dist/generic/base.js.map +1 -0
- package/dist/generic/common.d.ts +65 -0
- package/dist/generic/common.js +260 -0
- package/dist/generic/common.js.map +1 -0
- package/dist/generic/configuration.d.ts +91 -0
- package/dist/generic/configuration.js +46 -0
- package/dist/generic/configuration.js.map +1 -0
- package/dist/generic/index.d.ts +13 -0
- package/dist/generic/index.js +32 -0
- package/dist/generic/index.js.map +1 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/paginator.d.ts +3 -1
- package/dist/paginator.js +146 -0
- package/dist/paginator.js.map +1 -1
- package/dist/v2024/api.d.ts +1536 -511
- package/dist/v2024/api.js +5111 -4045
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2024/common.js.map +1 -1
- package/dist/v2025/api.d.ts +5099 -632
- package/dist/v2025/api.js +11068 -7033
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2025/common.js.map +1 -1
- package/dist/v3/api.d.ts +122 -444
- package/dist/v3/api.js +88 -407
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/dist/v3/common.js.map +1 -1
- package/generic/.openapi-generator/FILES +11 -0
- package/generic/.openapi-generator/VERSION +1 -0
- package/generic/.openapi-generator-ignore +23 -0
- package/generic/README.md +46 -0
- package/generic/api.ts +681 -0
- package/generic/base.ts +86 -0
- package/generic/common.ts +159 -0
- package/generic/configuration.ts +110 -0
- package/generic/git_push.sh +57 -0
- package/generic/index.ts +18 -0
- package/generic/package.json +34 -0
- package/generic/tsconfig.json +21 -0
- package/index.ts +9 -7
- package/package.json +1 -1
- package/paginator.ts +137 -11
- package/v2024/README.md +2 -2
- package/v2024/api.ts +2323 -771
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +7689 -1221
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +146 -611
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v2024/api.ts
CHANGED
|
@@ -1058,13 +1058,13 @@ export interface AccessModelMetadataValuesInnerV2024 {
|
|
|
1058
1058
|
*/
|
|
1059
1059
|
export interface AccessProfileApprovalSchemeV2024 {
|
|
1060
1060
|
/**
|
|
1061
|
-
* Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
|
|
1061
|
+
* Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
|
|
1062
1062
|
* @type {string}
|
|
1063
1063
|
* @memberof AccessProfileApprovalSchemeV2024
|
|
1064
1064
|
*/
|
|
1065
1065
|
'approverType'?: AccessProfileApprovalSchemeV2024ApproverTypeV2024;
|
|
1066
1066
|
/**
|
|
1067
|
-
*
|
|
1067
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
1068
1068
|
* @type {string}
|
|
1069
1069
|
* @memberof AccessProfileApprovalSchemeV2024
|
|
1070
1070
|
*/
|
|
@@ -1076,7 +1076,8 @@ export const AccessProfileApprovalSchemeV2024ApproverTypeV2024 = {
|
|
|
1076
1076
|
Owner: 'OWNER',
|
|
1077
1077
|
SourceOwner: 'SOURCE_OWNER',
|
|
1078
1078
|
Manager: 'MANAGER',
|
|
1079
|
-
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
1079
|
+
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
1080
|
+
Workflow: 'WORKFLOW'
|
|
1080
1081
|
} as const;
|
|
1081
1082
|
|
|
1082
1083
|
export type AccessProfileApprovalSchemeV2024ApproverTypeV2024 = typeof AccessProfileApprovalSchemeV2024ApproverTypeV2024[keyof typeof AccessProfileApprovalSchemeV2024ApproverTypeV2024];
|
|
@@ -3397,7 +3398,7 @@ export interface AccessV2024 {
|
|
|
3397
3398
|
*/
|
|
3398
3399
|
export interface AccountActionV2024 {
|
|
3399
3400
|
/**
|
|
3400
|
-
* Describes if action will be
|
|
3401
|
+
* Describes if action will be enable, disable or delete.
|
|
3401
3402
|
* @type {string}
|
|
3402
3403
|
* @memberof AccountActionV2024
|
|
3403
3404
|
*/
|
|
@@ -3412,7 +3413,8 @@ export interface AccountActionV2024 {
|
|
|
3412
3413
|
|
|
3413
3414
|
export const AccountActionV2024ActionV2024 = {
|
|
3414
3415
|
Enable: 'ENABLE',
|
|
3415
|
-
Disable: 'DISABLE'
|
|
3416
|
+
Disable: 'DISABLE',
|
|
3417
|
+
Delete: 'DELETE'
|
|
3416
3418
|
} as const;
|
|
3417
3419
|
|
|
3418
3420
|
export type AccountActionV2024ActionV2024 = typeof AccountActionV2024ActionV2024[keyof typeof AccountActionV2024ActionV2024];
|
|
@@ -6315,13 +6317,13 @@ export interface ApprovalReminderAndEscalationConfigV2024 {
|
|
|
6315
6317
|
*/
|
|
6316
6318
|
export interface ApprovalSchemeForRoleV2024 {
|
|
6317
6319
|
/**
|
|
6318
|
-
* Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
|
|
6320
|
+
* Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
|
|
6319
6321
|
* @type {string}
|
|
6320
6322
|
* @memberof ApprovalSchemeForRoleV2024
|
|
6321
6323
|
*/
|
|
6322
6324
|
'approverType'?: ApprovalSchemeForRoleV2024ApproverTypeV2024;
|
|
6323
6325
|
/**
|
|
6324
|
-
* Id of the specific approver, used
|
|
6326
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
6325
6327
|
* @type {string}
|
|
6326
6328
|
* @memberof ApprovalSchemeForRoleV2024
|
|
6327
6329
|
*/
|
|
@@ -6331,7 +6333,8 @@ export interface ApprovalSchemeForRoleV2024 {
|
|
|
6331
6333
|
export const ApprovalSchemeForRoleV2024ApproverTypeV2024 = {
|
|
6332
6334
|
Owner: 'OWNER',
|
|
6333
6335
|
Manager: 'MANAGER',
|
|
6334
|
-
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
6336
|
+
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
6337
|
+
Workflow: 'WORKFLOW'
|
|
6335
6338
|
} as const;
|
|
6336
6339
|
|
|
6337
6340
|
export type ApprovalSchemeForRoleV2024ApproverTypeV2024 = typeof ApprovalSchemeForRoleV2024ApproverTypeV2024[keyof typeof ApprovalSchemeForRoleV2024ApproverTypeV2024];
|
|
@@ -6953,6 +6956,12 @@ export interface AttributeDefinitionV2024 {
|
|
|
6953
6956
|
* @memberof AttributeDefinitionV2024
|
|
6954
6957
|
*/
|
|
6955
6958
|
'name'?: string;
|
|
6959
|
+
/**
|
|
6960
|
+
* Attribute name in the native system.
|
|
6961
|
+
* @type {string}
|
|
6962
|
+
* @memberof AttributeDefinitionV2024
|
|
6963
|
+
*/
|
|
6964
|
+
'nativeName'?: string | null;
|
|
6956
6965
|
/**
|
|
6957
6966
|
*
|
|
6958
6967
|
* @type {AttributeDefinitionTypeV2024}
|
|
@@ -11258,6 +11267,12 @@ export interface CompletedApprovalV2024 {
|
|
|
11258
11267
|
* @memberof CompletedApprovalV2024
|
|
11259
11268
|
*/
|
|
11260
11269
|
'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
|
|
11270
|
+
/**
|
|
11271
|
+
* The privilege level of the requested access item, if applicable.
|
|
11272
|
+
* @type {string}
|
|
11273
|
+
* @memberof CompletedApprovalV2024
|
|
11274
|
+
*/
|
|
11275
|
+
'privilegeLevel'?: string | null;
|
|
11261
11276
|
}
|
|
11262
11277
|
|
|
11263
11278
|
|
|
@@ -13633,19 +13648,6 @@ export const DeleteSource202ResponseV2024TypeV2024 = {
|
|
|
13633
13648
|
|
|
13634
13649
|
export type DeleteSource202ResponseV2024TypeV2024 = typeof DeleteSource202ResponseV2024TypeV2024[keyof typeof DeleteSource202ResponseV2024TypeV2024];
|
|
13635
13650
|
|
|
13636
|
-
/**
|
|
13637
|
-
*
|
|
13638
|
-
* @export
|
|
13639
|
-
* @interface DeleteVendorConnectorMapping200ResponseV2024
|
|
13640
|
-
*/
|
|
13641
|
-
export interface DeleteVendorConnectorMapping200ResponseV2024 {
|
|
13642
|
-
/**
|
|
13643
|
-
* The number of vendor connector mappings successfully deleted.
|
|
13644
|
-
* @type {number}
|
|
13645
|
-
* @memberof DeleteVendorConnectorMapping200ResponseV2024
|
|
13646
|
-
*/
|
|
13647
|
-
'count'?: number;
|
|
13648
|
-
}
|
|
13649
13651
|
/**
|
|
13650
13652
|
*
|
|
13651
13653
|
* @export
|
|
@@ -14676,13 +14678,13 @@ export interface EntitlementAccessRequestConfigV2024 {
|
|
|
14676
14678
|
*/
|
|
14677
14679
|
export interface EntitlementApprovalSchemeV2024 {
|
|
14678
14680
|
/**
|
|
14679
|
-
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
|
|
14681
|
+
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field, Workflows are exclusive to other types of approvals and License required.
|
|
14680
14682
|
* @type {string}
|
|
14681
14683
|
* @memberof EntitlementApprovalSchemeV2024
|
|
14682
14684
|
*/
|
|
14683
14685
|
'approverType'?: EntitlementApprovalSchemeV2024ApproverTypeV2024;
|
|
14684
14686
|
/**
|
|
14685
|
-
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
|
|
14687
|
+
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW
|
|
14686
14688
|
* @type {string}
|
|
14687
14689
|
* @memberof EntitlementApprovalSchemeV2024
|
|
14688
14690
|
*/
|
|
@@ -14693,7 +14695,8 @@ export const EntitlementApprovalSchemeV2024ApproverTypeV2024 = {
|
|
|
14693
14695
|
EntitlementOwner: 'ENTITLEMENT_OWNER',
|
|
14694
14696
|
SourceOwner: 'SOURCE_OWNER',
|
|
14695
14697
|
Manager: 'MANAGER',
|
|
14696
|
-
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
14698
|
+
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
14699
|
+
Workflow: 'WORKFLOW'
|
|
14697
14700
|
} as const;
|
|
14698
14701
|
|
|
14699
14702
|
export type EntitlementApprovalSchemeV2024ApproverTypeV2024 = typeof EntitlementApprovalSchemeV2024ApproverTypeV2024[keyof typeof EntitlementApprovalSchemeV2024ApproverTypeV2024];
|
|
@@ -15134,38 +15137,6 @@ export const EntitlementOwnerV2024TypeV2024 = {
|
|
|
15134
15137
|
|
|
15135
15138
|
export type EntitlementOwnerV2024TypeV2024 = typeof EntitlementOwnerV2024TypeV2024[keyof typeof EntitlementOwnerV2024TypeV2024];
|
|
15136
15139
|
|
|
15137
|
-
/**
|
|
15138
|
-
* Entitlement including a specific set of access.
|
|
15139
|
-
* @export
|
|
15140
|
-
* @interface EntitlementRef1V2024
|
|
15141
|
-
*/
|
|
15142
|
-
export interface EntitlementRef1V2024 {
|
|
15143
|
-
/**
|
|
15144
|
-
* Entitlement\'s DTO type.
|
|
15145
|
-
* @type {string}
|
|
15146
|
-
* @memberof EntitlementRef1V2024
|
|
15147
|
-
*/
|
|
15148
|
-
'type'?: EntitlementRef1V2024TypeV2024;
|
|
15149
|
-
/**
|
|
15150
|
-
* Entitlement\'s ID.
|
|
15151
|
-
* @type {string}
|
|
15152
|
-
* @memberof EntitlementRef1V2024
|
|
15153
|
-
*/
|
|
15154
|
-
'id'?: string;
|
|
15155
|
-
/**
|
|
15156
|
-
* Entitlement\'s display name.
|
|
15157
|
-
* @type {string}
|
|
15158
|
-
* @memberof EntitlementRef1V2024
|
|
15159
|
-
*/
|
|
15160
|
-
'name'?: string;
|
|
15161
|
-
}
|
|
15162
|
-
|
|
15163
|
-
export const EntitlementRef1V2024TypeV2024 = {
|
|
15164
|
-
Entitlement: 'ENTITLEMENT'
|
|
15165
|
-
} as const;
|
|
15166
|
-
|
|
15167
|
-
export type EntitlementRef1V2024TypeV2024 = typeof EntitlementRef1V2024TypeV2024[keyof typeof EntitlementRef1V2024TypeV2024];
|
|
15168
|
-
|
|
15169
15140
|
/**
|
|
15170
15141
|
* Entitlement including a specific set of access.
|
|
15171
15142
|
* @export
|
|
@@ -16702,11 +16673,11 @@ export interface FieldDetailsDtoV2024 {
|
|
|
16702
16673
|
*/
|
|
16703
16674
|
'isRequired'?: boolean;
|
|
16704
16675
|
/**
|
|
16705
|
-
* The type of the attribute.
|
|
16676
|
+
* The type of the attribute. string: For text-based data. int: For whole numbers. long: For larger whole numbers. date: For date and time values. boolean: For true/false values. secret: For sensitive data like passwords, which will be masked and encrypted.
|
|
16706
16677
|
* @type {string}
|
|
16707
16678
|
* @memberof FieldDetailsDtoV2024
|
|
16708
16679
|
*/
|
|
16709
|
-
'type'?:
|
|
16680
|
+
'type'?: FieldDetailsDtoV2024TypeV2024;
|
|
16710
16681
|
/**
|
|
16711
16682
|
* Flag indicating whether or not the attribute is multi-valued.
|
|
16712
16683
|
* @type {boolean}
|
|
@@ -16714,6 +16685,18 @@ export interface FieldDetailsDtoV2024 {
|
|
|
16714
16685
|
*/
|
|
16715
16686
|
'isMultiValued'?: boolean;
|
|
16716
16687
|
}
|
|
16688
|
+
|
|
16689
|
+
export const FieldDetailsDtoV2024TypeV2024 = {
|
|
16690
|
+
String: 'string',
|
|
16691
|
+
Int: 'int',
|
|
16692
|
+
Long: 'long',
|
|
16693
|
+
Date: 'date',
|
|
16694
|
+
Boolean: 'boolean',
|
|
16695
|
+
Secret: 'secret'
|
|
16696
|
+
} as const;
|
|
16697
|
+
|
|
16698
|
+
export type FieldDetailsDtoV2024TypeV2024 = typeof FieldDetailsDtoV2024TypeV2024[keyof typeof FieldDetailsDtoV2024TypeV2024];
|
|
16699
|
+
|
|
16717
16700
|
/**
|
|
16718
16701
|
* An additional filter to constrain the results of the search query.
|
|
16719
16702
|
* @export
|
|
@@ -17413,47 +17396,65 @@ export type FormInstanceRecipientV2024TypeV2024 = typeof FormInstanceRecipientV2
|
|
|
17413
17396
|
*/
|
|
17414
17397
|
export interface FormInstanceResponseV2024 {
|
|
17415
17398
|
/**
|
|
17416
|
-
*
|
|
17399
|
+
* Unique guid identifying this form instance
|
|
17417
17400
|
* @type {string}
|
|
17418
17401
|
* @memberof FormInstanceResponseV2024
|
|
17419
17402
|
*/
|
|
17420
|
-
'
|
|
17403
|
+
'id'?: string;
|
|
17421
17404
|
/**
|
|
17422
|
-
*
|
|
17423
|
-
* @type {
|
|
17405
|
+
* Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
|
|
17406
|
+
* @type {string}
|
|
17424
17407
|
* @memberof FormInstanceResponseV2024
|
|
17425
17408
|
*/
|
|
17426
|
-
'
|
|
17409
|
+
'expire'?: string;
|
|
17427
17410
|
/**
|
|
17428
|
-
*
|
|
17411
|
+
* State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
|
|
17429
17412
|
* @type {string}
|
|
17430
17413
|
* @memberof FormInstanceResponseV2024
|
|
17431
17414
|
*/
|
|
17432
|
-
'
|
|
17415
|
+
'state'?: FormInstanceResponseV2024StateV2024;
|
|
17433
17416
|
/**
|
|
17434
|
-
*
|
|
17435
|
-
* @type {
|
|
17417
|
+
* StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
|
|
17418
|
+
* @type {boolean}
|
|
17436
17419
|
* @memberof FormInstanceResponseV2024
|
|
17437
17420
|
*/
|
|
17438
|
-
'
|
|
17421
|
+
'standAloneForm'?: boolean;
|
|
17439
17422
|
/**
|
|
17440
|
-
*
|
|
17441
|
-
* @type {
|
|
17423
|
+
* StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
|
|
17424
|
+
* @type {string}
|
|
17442
17425
|
* @memberof FormInstanceResponseV2024
|
|
17443
17426
|
*/
|
|
17444
|
-
'
|
|
17427
|
+
'standAloneFormUrl'?: string;
|
|
17428
|
+
/**
|
|
17429
|
+
*
|
|
17430
|
+
* @type {FormInstanceCreatedByV2024}
|
|
17431
|
+
* @memberof FormInstanceResponseV2024
|
|
17432
|
+
*/
|
|
17433
|
+
'createdBy'?: FormInstanceCreatedByV2024;
|
|
17445
17434
|
/**
|
|
17446
17435
|
* FormDefinitionID is the id of the form definition that created this form
|
|
17447
17436
|
* @type {string}
|
|
17448
17437
|
* @memberof FormInstanceResponseV2024
|
|
17449
17438
|
*/
|
|
17450
17439
|
'formDefinitionId'?: string;
|
|
17440
|
+
/**
|
|
17441
|
+
* FormInput is an object of form input labels to value
|
|
17442
|
+
* @type {{ [key: string]: object; }}
|
|
17443
|
+
* @memberof FormInstanceResponseV2024
|
|
17444
|
+
*/
|
|
17445
|
+
'formInput'?: { [key: string]: object; } | null;
|
|
17451
17446
|
/**
|
|
17452
17447
|
* FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
|
|
17453
17448
|
* @type {Array<FormElementV2024>}
|
|
17454
17449
|
* @memberof FormInstanceResponseV2024
|
|
17455
17450
|
*/
|
|
17456
17451
|
'formElements'?: Array<FormElementV2024>;
|
|
17452
|
+
/**
|
|
17453
|
+
* FormData is the data provided by the form on submit. The data is in a key -> value map
|
|
17454
|
+
* @type {{ [key: string]: any; }}
|
|
17455
|
+
* @memberof FormInstanceResponseV2024
|
|
17456
|
+
*/
|
|
17457
|
+
'formData'?: { [key: string]: any; } | null;
|
|
17457
17458
|
/**
|
|
17458
17459
|
* FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
|
|
17459
17460
|
* @type {Array<FormErrorV2024>}
|
|
@@ -17461,17 +17462,17 @@ export interface FormInstanceResponseV2024 {
|
|
|
17461
17462
|
*/
|
|
17462
17463
|
'formErrors'?: Array<FormErrorV2024>;
|
|
17463
17464
|
/**
|
|
17464
|
-
*
|
|
17465
|
-
* @type {
|
|
17465
|
+
* FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
|
|
17466
|
+
* @type {Array<FormConditionV2024>}
|
|
17466
17467
|
* @memberof FormInstanceResponseV2024
|
|
17467
17468
|
*/
|
|
17468
|
-
'
|
|
17469
|
+
'formConditions'?: Array<FormConditionV2024>;
|
|
17469
17470
|
/**
|
|
17470
|
-
*
|
|
17471
|
+
* Created is the date the form instance was assigned
|
|
17471
17472
|
* @type {string}
|
|
17472
17473
|
* @memberof FormInstanceResponseV2024
|
|
17473
17474
|
*/
|
|
17474
|
-
'
|
|
17475
|
+
'created'?: string;
|
|
17475
17476
|
/**
|
|
17476
17477
|
* Modified is the last date the form instance was modified
|
|
17477
17478
|
* @type {string}
|
|
@@ -17484,24 +17485,6 @@ export interface FormInstanceResponseV2024 {
|
|
|
17484
17485
|
* @memberof FormInstanceResponseV2024
|
|
17485
17486
|
*/
|
|
17486
17487
|
'recipients'?: Array<FormInstanceRecipientV2024>;
|
|
17487
|
-
/**
|
|
17488
|
-
* StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
|
|
17489
|
-
* @type {boolean}
|
|
17490
|
-
* @memberof FormInstanceResponseV2024
|
|
17491
|
-
*/
|
|
17492
|
-
'standAloneForm'?: boolean;
|
|
17493
|
-
/**
|
|
17494
|
-
* StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
|
|
17495
|
-
* @type {string}
|
|
17496
|
-
* @memberof FormInstanceResponseV2024
|
|
17497
|
-
*/
|
|
17498
|
-
'standAloneFormUrl'?: string;
|
|
17499
|
-
/**
|
|
17500
|
-
* State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
|
|
17501
|
-
* @type {string}
|
|
17502
|
-
* @memberof FormInstanceResponseV2024
|
|
17503
|
-
*/
|
|
17504
|
-
'state'?: FormInstanceResponseV2024StateV2024;
|
|
17505
17488
|
}
|
|
17506
17489
|
|
|
17507
17490
|
export const FormInstanceResponseV2024StateV2024 = {
|
|
@@ -18200,6 +18183,25 @@ export const GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024
|
|
|
18200
18183
|
|
|
18201
18184
|
export type GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024 = typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024[keyof typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024];
|
|
18202
18185
|
|
|
18186
|
+
/**
|
|
18187
|
+
*
|
|
18188
|
+
* @export
|
|
18189
|
+
* @interface GetLaunchers200ResponseV2024
|
|
18190
|
+
*/
|
|
18191
|
+
export interface GetLaunchers200ResponseV2024 {
|
|
18192
|
+
/**
|
|
18193
|
+
* Pagination marker
|
|
18194
|
+
* @type {string}
|
|
18195
|
+
* @memberof GetLaunchers200ResponseV2024
|
|
18196
|
+
*/
|
|
18197
|
+
'next'?: string;
|
|
18198
|
+
/**
|
|
18199
|
+
*
|
|
18200
|
+
* @type {Array<LauncherV2024>}
|
|
18201
|
+
* @memberof GetLaunchers200ResponseV2024
|
|
18202
|
+
*/
|
|
18203
|
+
'items'?: Array<LauncherV2024>;
|
|
18204
|
+
}
|
|
18203
18205
|
/**
|
|
18204
18206
|
*
|
|
18205
18207
|
* @export
|
|
@@ -18445,6 +18447,12 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
|
|
|
18445
18447
|
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
18446
18448
|
*/
|
|
18447
18449
|
'role'?: BaseReferenceDtoV2024;
|
|
18450
|
+
/**
|
|
18451
|
+
* Date that the assignment was added
|
|
18452
|
+
* @type {string}
|
|
18453
|
+
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
18454
|
+
*/
|
|
18455
|
+
'addedDate'?: string;
|
|
18448
18456
|
/**
|
|
18449
18457
|
* Comments added by the user when the assignment was made
|
|
18450
18458
|
* @type {string}
|
|
@@ -20002,6 +20010,184 @@ export interface IdentityEntitiesV2024 {
|
|
|
20002
20010
|
*/
|
|
20003
20011
|
'identityEntity'?: IdentityEntitiesIdentityEntityV2024;
|
|
20004
20012
|
}
|
|
20013
|
+
/**
|
|
20014
|
+
*
|
|
20015
|
+
* @export
|
|
20016
|
+
* @interface IdentityEntitlementDetailsAccountTargetV2024
|
|
20017
|
+
*/
|
|
20018
|
+
export interface IdentityEntitlementDetailsAccountTargetV2024 {
|
|
20019
|
+
/**
|
|
20020
|
+
* The id of account
|
|
20021
|
+
* @type {string}
|
|
20022
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
20023
|
+
*/
|
|
20024
|
+
'accountId'?: string;
|
|
20025
|
+
/**
|
|
20026
|
+
* The name of account
|
|
20027
|
+
* @type {string}
|
|
20028
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
20029
|
+
*/
|
|
20030
|
+
'accountName'?: string;
|
|
20031
|
+
/**
|
|
20032
|
+
* The UUID representation of the account if available
|
|
20033
|
+
* @type {string}
|
|
20034
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
20035
|
+
*/
|
|
20036
|
+
'accountUUID'?: string | null;
|
|
20037
|
+
/**
|
|
20038
|
+
* The id of Source
|
|
20039
|
+
* @type {string}
|
|
20040
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
20041
|
+
*/
|
|
20042
|
+
'sourceId'?: string;
|
|
20043
|
+
/**
|
|
20044
|
+
* The name of Source
|
|
20045
|
+
* @type {string}
|
|
20046
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
20047
|
+
*/
|
|
20048
|
+
'sourceName'?: string;
|
|
20049
|
+
/**
|
|
20050
|
+
* The removal date scheduled for the entitlement on the Identity
|
|
20051
|
+
* @type {string}
|
|
20052
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
20053
|
+
*/
|
|
20054
|
+
'removeDate'?: string | null;
|
|
20055
|
+
/**
|
|
20056
|
+
* The assignmentId of the entitlement on the Identity
|
|
20057
|
+
* @type {string}
|
|
20058
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
20059
|
+
*/
|
|
20060
|
+
'assignmentId'?: string | null;
|
|
20061
|
+
/**
|
|
20062
|
+
* If the entitlement can be revoked
|
|
20063
|
+
* @type {boolean}
|
|
20064
|
+
* @memberof IdentityEntitlementDetailsAccountTargetV2024
|
|
20065
|
+
*/
|
|
20066
|
+
'revocable'?: boolean;
|
|
20067
|
+
}
|
|
20068
|
+
/**
|
|
20069
|
+
*
|
|
20070
|
+
* @export
|
|
20071
|
+
* @interface IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20072
|
+
*/
|
|
20073
|
+
export interface IdentityEntitlementDetailsEntitlementDtoV2024 {
|
|
20074
|
+
/**
|
|
20075
|
+
* The entitlement id
|
|
20076
|
+
* @type {string}
|
|
20077
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20078
|
+
*/
|
|
20079
|
+
'id'?: string;
|
|
20080
|
+
/**
|
|
20081
|
+
* The entitlement name
|
|
20082
|
+
* @type {string}
|
|
20083
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20084
|
+
*/
|
|
20085
|
+
'name'?: string;
|
|
20086
|
+
/**
|
|
20087
|
+
* Time when the entitlement was last modified
|
|
20088
|
+
* @type {string}
|
|
20089
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20090
|
+
*/
|
|
20091
|
+
'created'?: string;
|
|
20092
|
+
/**
|
|
20093
|
+
* Time when the entitlement was last modified
|
|
20094
|
+
* @type {string}
|
|
20095
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20096
|
+
*/
|
|
20097
|
+
'modified'?: string;
|
|
20098
|
+
/**
|
|
20099
|
+
* The description of the entitlement
|
|
20100
|
+
* @type {string}
|
|
20101
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20102
|
+
*/
|
|
20103
|
+
'description'?: string | null;
|
|
20104
|
+
/**
|
|
20105
|
+
* The type of the object, will always be \"ENTITLEMENT\"
|
|
20106
|
+
* @type {string}
|
|
20107
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20108
|
+
*/
|
|
20109
|
+
'type'?: string;
|
|
20110
|
+
/**
|
|
20111
|
+
* The source ID
|
|
20112
|
+
* @type {string}
|
|
20113
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20114
|
+
*/
|
|
20115
|
+
'sourceId'?: string;
|
|
20116
|
+
/**
|
|
20117
|
+
* The source name
|
|
20118
|
+
* @type {string}
|
|
20119
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20120
|
+
*/
|
|
20121
|
+
'sourceName'?: string;
|
|
20122
|
+
/**
|
|
20123
|
+
*
|
|
20124
|
+
* @type {OwnerDtoV2024}
|
|
20125
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20126
|
+
*/
|
|
20127
|
+
'owner'?: OwnerDtoV2024;
|
|
20128
|
+
/**
|
|
20129
|
+
* The value of the entitlement
|
|
20130
|
+
* @type {string}
|
|
20131
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20132
|
+
*/
|
|
20133
|
+
'value'?: string;
|
|
20134
|
+
/**
|
|
20135
|
+
* a list of properties informing the viewer about the entitlement
|
|
20136
|
+
* @type {Array<string>}
|
|
20137
|
+
* @memberof IdentityEntitlementDetailsEntitlementDtoV2024
|
|
20138
|
+
*/
|
|
20139
|
+
'flags'?: Array<string>;
|
|
20140
|
+
}
|
|
20141
|
+
/**
|
|
20142
|
+
*
|
|
20143
|
+
* @export
|
|
20144
|
+
* @interface IdentityEntitlementDetailsV2024
|
|
20145
|
+
*/
|
|
20146
|
+
export interface IdentityEntitlementDetailsV2024 {
|
|
20147
|
+
/**
|
|
20148
|
+
* Id of Identity
|
|
20149
|
+
* @type {string}
|
|
20150
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
20151
|
+
*/
|
|
20152
|
+
'identityId'?: string;
|
|
20153
|
+
/**
|
|
20154
|
+
*
|
|
20155
|
+
* @type {IdentityEntitlementDetailsEntitlementDtoV2024}
|
|
20156
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
20157
|
+
*/
|
|
20158
|
+
'entitlement'?: IdentityEntitlementDetailsEntitlementDtoV2024;
|
|
20159
|
+
/**
|
|
20160
|
+
* Id of Source
|
|
20161
|
+
* @type {string}
|
|
20162
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
20163
|
+
*/
|
|
20164
|
+
'sourceId'?: string;
|
|
20165
|
+
/**
|
|
20166
|
+
* A list of account targets on the identity provisioned with the requested entitlement.
|
|
20167
|
+
* @type {Array<IdentityEntitlementDetailsAccountTargetV2024>}
|
|
20168
|
+
* @memberof IdentityEntitlementDetailsV2024
|
|
20169
|
+
*/
|
|
20170
|
+
'accountTargets'?: Array<IdentityEntitlementDetailsAccountTargetV2024>;
|
|
20171
|
+
}
|
|
20172
|
+
/**
|
|
20173
|
+
*
|
|
20174
|
+
* @export
|
|
20175
|
+
* @interface IdentityEntitlementsV2024
|
|
20176
|
+
*/
|
|
20177
|
+
export interface IdentityEntitlementsV2024 {
|
|
20178
|
+
/**
|
|
20179
|
+
*
|
|
20180
|
+
* @type {TaggedObjectDtoV2024}
|
|
20181
|
+
* @memberof IdentityEntitlementsV2024
|
|
20182
|
+
*/
|
|
20183
|
+
'objectRef'?: TaggedObjectDtoV2024;
|
|
20184
|
+
/**
|
|
20185
|
+
* Labels to be applied to object.
|
|
20186
|
+
* @type {Array<string>}
|
|
20187
|
+
* @memberof IdentityEntitlementsV2024
|
|
20188
|
+
*/
|
|
20189
|
+
'tags'?: Array<string>;
|
|
20190
|
+
}
|
|
20005
20191
|
/**
|
|
20006
20192
|
*
|
|
20007
20193
|
* @export
|
|
@@ -20790,31 +20976,6 @@ export const IdentityV2024IdentityStatusV2024 = {
|
|
|
20790
20976
|
|
|
20791
20977
|
export type IdentityV2024IdentityStatusV2024 = typeof IdentityV2024IdentityStatusV2024[keyof typeof IdentityV2024IdentityStatusV2024];
|
|
20792
20978
|
|
|
20793
|
-
/**
|
|
20794
|
-
* An identity with a set of access to be added
|
|
20795
|
-
* @export
|
|
20796
|
-
* @interface IdentityWithNewAccess1V2024
|
|
20797
|
-
*/
|
|
20798
|
-
export interface IdentityWithNewAccess1V2024 {
|
|
20799
|
-
/**
|
|
20800
|
-
* Set of identity IDs to be checked.
|
|
20801
|
-
* @type {string}
|
|
20802
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20803
|
-
*/
|
|
20804
|
-
'identityId': string;
|
|
20805
|
-
/**
|
|
20806
|
-
* The bundle of access profiles to be added to the identities specified. All references must be ENTITLEMENT type.
|
|
20807
|
-
* @type {Array<EntitlementRef1V2024>}
|
|
20808
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20809
|
-
*/
|
|
20810
|
-
'accessRefs': Array<EntitlementRef1V2024>;
|
|
20811
|
-
/**
|
|
20812
|
-
* Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
|
|
20813
|
-
* @type {{ [key: string]: string; }}
|
|
20814
|
-
* @memberof IdentityWithNewAccess1V2024
|
|
20815
|
-
*/
|
|
20816
|
-
'clientMetadata'?: { [key: string]: string; };
|
|
20817
|
-
}
|
|
20818
20979
|
/**
|
|
20819
20980
|
* Entitlement including a specific set of access.
|
|
20820
20981
|
* @export
|
|
@@ -20833,12 +20994,6 @@ export interface IdentityWithNewAccessAccessRefsInnerV2024 {
|
|
|
20833
20994
|
* @memberof IdentityWithNewAccessAccessRefsInnerV2024
|
|
20834
20995
|
*/
|
|
20835
20996
|
'id'?: string;
|
|
20836
|
-
/**
|
|
20837
|
-
* Entitlement\'s display name.
|
|
20838
|
-
* @type {string}
|
|
20839
|
-
* @memberof IdentityWithNewAccessAccessRefsInnerV2024
|
|
20840
|
-
*/
|
|
20841
|
-
'name'?: string;
|
|
20842
20997
|
}
|
|
20843
20998
|
|
|
20844
20999
|
export const IdentityWithNewAccessAccessRefsInnerV2024TypeV2024 = {
|
|
@@ -21618,6 +21773,201 @@ export const LatestOutlierSummaryV2024TypeV2024 = {
|
|
|
21618
21773
|
|
|
21619
21774
|
export type LatestOutlierSummaryV2024TypeV2024 = typeof LatestOutlierSummaryV2024TypeV2024[keyof typeof LatestOutlierSummaryV2024TypeV2024];
|
|
21620
21775
|
|
|
21776
|
+
/**
|
|
21777
|
+
* Owner of the Launcher
|
|
21778
|
+
* @export
|
|
21779
|
+
* @interface LauncherOwnerV2024
|
|
21780
|
+
*/
|
|
21781
|
+
export interface LauncherOwnerV2024 {
|
|
21782
|
+
/**
|
|
21783
|
+
* Owner type
|
|
21784
|
+
* @type {string}
|
|
21785
|
+
* @memberof LauncherOwnerV2024
|
|
21786
|
+
*/
|
|
21787
|
+
'type': string;
|
|
21788
|
+
/**
|
|
21789
|
+
* Owner ID
|
|
21790
|
+
* @type {string}
|
|
21791
|
+
* @memberof LauncherOwnerV2024
|
|
21792
|
+
*/
|
|
21793
|
+
'id': string;
|
|
21794
|
+
}
|
|
21795
|
+
/**
|
|
21796
|
+
*
|
|
21797
|
+
* @export
|
|
21798
|
+
* @interface LauncherReferenceV2024
|
|
21799
|
+
*/
|
|
21800
|
+
export interface LauncherReferenceV2024 {
|
|
21801
|
+
/**
|
|
21802
|
+
* Type of Launcher reference
|
|
21803
|
+
* @type {string}
|
|
21804
|
+
* @memberof LauncherReferenceV2024
|
|
21805
|
+
*/
|
|
21806
|
+
'type'?: LauncherReferenceV2024TypeV2024;
|
|
21807
|
+
/**
|
|
21808
|
+
* ID of Launcher reference
|
|
21809
|
+
* @type {string}
|
|
21810
|
+
* @memberof LauncherReferenceV2024
|
|
21811
|
+
*/
|
|
21812
|
+
'id'?: string;
|
|
21813
|
+
}
|
|
21814
|
+
|
|
21815
|
+
export const LauncherReferenceV2024TypeV2024 = {
|
|
21816
|
+
Workflow: 'WORKFLOW'
|
|
21817
|
+
} as const;
|
|
21818
|
+
|
|
21819
|
+
export type LauncherReferenceV2024TypeV2024 = typeof LauncherReferenceV2024TypeV2024[keyof typeof LauncherReferenceV2024TypeV2024];
|
|
21820
|
+
|
|
21821
|
+
/**
|
|
21822
|
+
*
|
|
21823
|
+
* @export
|
|
21824
|
+
* @interface LauncherRequestReferenceV2024
|
|
21825
|
+
*/
|
|
21826
|
+
export interface LauncherRequestReferenceV2024 {
|
|
21827
|
+
/**
|
|
21828
|
+
* Type of Launcher reference
|
|
21829
|
+
* @type {string}
|
|
21830
|
+
* @memberof LauncherRequestReferenceV2024
|
|
21831
|
+
*/
|
|
21832
|
+
'type': LauncherRequestReferenceV2024TypeV2024;
|
|
21833
|
+
/**
|
|
21834
|
+
* ID of Launcher reference
|
|
21835
|
+
* @type {string}
|
|
21836
|
+
* @memberof LauncherRequestReferenceV2024
|
|
21837
|
+
*/
|
|
21838
|
+
'id': string;
|
|
21839
|
+
}
|
|
21840
|
+
|
|
21841
|
+
export const LauncherRequestReferenceV2024TypeV2024 = {
|
|
21842
|
+
Workflow: 'WORKFLOW'
|
|
21843
|
+
} as const;
|
|
21844
|
+
|
|
21845
|
+
export type LauncherRequestReferenceV2024TypeV2024 = typeof LauncherRequestReferenceV2024TypeV2024[keyof typeof LauncherRequestReferenceV2024TypeV2024];
|
|
21846
|
+
|
|
21847
|
+
/**
|
|
21848
|
+
*
|
|
21849
|
+
* @export
|
|
21850
|
+
* @interface LauncherRequestV2024
|
|
21851
|
+
*/
|
|
21852
|
+
export interface LauncherRequestV2024 {
|
|
21853
|
+
/**
|
|
21854
|
+
* Name of the Launcher, limited to 255 characters
|
|
21855
|
+
* @type {string}
|
|
21856
|
+
* @memberof LauncherRequestV2024
|
|
21857
|
+
*/
|
|
21858
|
+
'name': string;
|
|
21859
|
+
/**
|
|
21860
|
+
* Description of the Launcher, limited to 2000 characters
|
|
21861
|
+
* @type {string}
|
|
21862
|
+
* @memberof LauncherRequestV2024
|
|
21863
|
+
*/
|
|
21864
|
+
'description': string;
|
|
21865
|
+
/**
|
|
21866
|
+
* Launcher type
|
|
21867
|
+
* @type {string}
|
|
21868
|
+
* @memberof LauncherRequestV2024
|
|
21869
|
+
*/
|
|
21870
|
+
'type': LauncherRequestV2024TypeV2024;
|
|
21871
|
+
/**
|
|
21872
|
+
* State of the Launcher
|
|
21873
|
+
* @type {boolean}
|
|
21874
|
+
* @memberof LauncherRequestV2024
|
|
21875
|
+
*/
|
|
21876
|
+
'disabled': boolean;
|
|
21877
|
+
/**
|
|
21878
|
+
*
|
|
21879
|
+
* @type {LauncherRequestReferenceV2024}
|
|
21880
|
+
* @memberof LauncherRequestV2024
|
|
21881
|
+
*/
|
|
21882
|
+
'reference'?: LauncherRequestReferenceV2024;
|
|
21883
|
+
/**
|
|
21884
|
+
* JSON configuration associated with this Launcher, restricted to a max size of 4KB
|
|
21885
|
+
* @type {string}
|
|
21886
|
+
* @memberof LauncherRequestV2024
|
|
21887
|
+
*/
|
|
21888
|
+
'config': string;
|
|
21889
|
+
}
|
|
21890
|
+
|
|
21891
|
+
export const LauncherRequestV2024TypeV2024 = {
|
|
21892
|
+
InteractiveProcess: 'INTERACTIVE_PROCESS'
|
|
21893
|
+
} as const;
|
|
21894
|
+
|
|
21895
|
+
export type LauncherRequestV2024TypeV2024 = typeof LauncherRequestV2024TypeV2024[keyof typeof LauncherRequestV2024TypeV2024];
|
|
21896
|
+
|
|
21897
|
+
/**
|
|
21898
|
+
*
|
|
21899
|
+
* @export
|
|
21900
|
+
* @interface LauncherV2024
|
|
21901
|
+
*/
|
|
21902
|
+
export interface LauncherV2024 {
|
|
21903
|
+
/**
|
|
21904
|
+
* ID of the Launcher
|
|
21905
|
+
* @type {string}
|
|
21906
|
+
* @memberof LauncherV2024
|
|
21907
|
+
*/
|
|
21908
|
+
'id': string;
|
|
21909
|
+
/**
|
|
21910
|
+
* Date the Launcher was created
|
|
21911
|
+
* @type {string}
|
|
21912
|
+
* @memberof LauncherV2024
|
|
21913
|
+
*/
|
|
21914
|
+
'created': string;
|
|
21915
|
+
/**
|
|
21916
|
+
* Date the Launcher was last modified
|
|
21917
|
+
* @type {string}
|
|
21918
|
+
* @memberof LauncherV2024
|
|
21919
|
+
*/
|
|
21920
|
+
'modified': string;
|
|
21921
|
+
/**
|
|
21922
|
+
*
|
|
21923
|
+
* @type {LauncherOwnerV2024}
|
|
21924
|
+
* @memberof LauncherV2024
|
|
21925
|
+
*/
|
|
21926
|
+
'owner': LauncherOwnerV2024;
|
|
21927
|
+
/**
|
|
21928
|
+
* Name of the Launcher, limited to 255 characters
|
|
21929
|
+
* @type {string}
|
|
21930
|
+
* @memberof LauncherV2024
|
|
21931
|
+
*/
|
|
21932
|
+
'name': string;
|
|
21933
|
+
/**
|
|
21934
|
+
* Description of the Launcher, limited to 2000 characters
|
|
21935
|
+
* @type {string}
|
|
21936
|
+
* @memberof LauncherV2024
|
|
21937
|
+
*/
|
|
21938
|
+
'description': string;
|
|
21939
|
+
/**
|
|
21940
|
+
* Launcher type
|
|
21941
|
+
* @type {string}
|
|
21942
|
+
* @memberof LauncherV2024
|
|
21943
|
+
*/
|
|
21944
|
+
'type': LauncherV2024TypeV2024;
|
|
21945
|
+
/**
|
|
21946
|
+
* State of the Launcher
|
|
21947
|
+
* @type {boolean}
|
|
21948
|
+
* @memberof LauncherV2024
|
|
21949
|
+
*/
|
|
21950
|
+
'disabled': boolean;
|
|
21951
|
+
/**
|
|
21952
|
+
*
|
|
21953
|
+
* @type {LauncherReferenceV2024}
|
|
21954
|
+
* @memberof LauncherV2024
|
|
21955
|
+
*/
|
|
21956
|
+
'reference'?: LauncherReferenceV2024;
|
|
21957
|
+
/**
|
|
21958
|
+
* JSON configuration associated with this Launcher, restricted to a max size of 4KB
|
|
21959
|
+
* @type {string}
|
|
21960
|
+
* @memberof LauncherV2024
|
|
21961
|
+
*/
|
|
21962
|
+
'config': string;
|
|
21963
|
+
}
|
|
21964
|
+
|
|
21965
|
+
export const LauncherV2024TypeV2024 = {
|
|
21966
|
+
InteractiveProcess: 'INTERACTIVE_PROCESS'
|
|
21967
|
+
} as const;
|
|
21968
|
+
|
|
21969
|
+
export type LauncherV2024TypeV2024 = typeof LauncherV2024TypeV2024[keyof typeof LauncherV2024TypeV2024];
|
|
21970
|
+
|
|
21621
21971
|
/**
|
|
21622
21972
|
*
|
|
21623
21973
|
* @export
|
|
@@ -21975,24 +22325,113 @@ export interface ListFormElementDataByElementIDResponseV2024 {
|
|
|
21975
22325
|
'results'?: Array<FormElementDataSourceConfigOptionsV2024>;
|
|
21976
22326
|
}
|
|
21977
22327
|
/**
|
|
21978
|
-
*
|
|
22328
|
+
* List of FormInstanceResponse items
|
|
21979
22329
|
* @export
|
|
21980
22330
|
* @interface ListFormInstancesByTenantResponseV2024
|
|
21981
22331
|
*/
|
|
21982
22332
|
export interface ListFormInstancesByTenantResponseV2024 {
|
|
21983
22333
|
/**
|
|
21984
|
-
*
|
|
21985
|
-
* @type {
|
|
22334
|
+
* Unique guid identifying this form instance
|
|
22335
|
+
* @type {string}
|
|
21986
22336
|
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21987
22337
|
*/
|
|
21988
|
-
'
|
|
22338
|
+
'id'?: string;
|
|
22339
|
+
/**
|
|
22340
|
+
* Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record
|
|
22341
|
+
* @type {string}
|
|
22342
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22343
|
+
*/
|
|
22344
|
+
'expire'?: string;
|
|
22345
|
+
/**
|
|
22346
|
+
* State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
|
|
22347
|
+
* @type {string}
|
|
22348
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22349
|
+
*/
|
|
22350
|
+
'state'?: ListFormInstancesByTenantResponseV2024StateV2024;
|
|
22351
|
+
/**
|
|
22352
|
+
* StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form
|
|
22353
|
+
* @type {boolean}
|
|
22354
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22355
|
+
*/
|
|
22356
|
+
'standAloneForm'?: boolean;
|
|
22357
|
+
/**
|
|
22358
|
+
* StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
|
|
22359
|
+
* @type {string}
|
|
22360
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22361
|
+
*/
|
|
22362
|
+
'standAloneFormUrl'?: string;
|
|
22363
|
+
/**
|
|
22364
|
+
*
|
|
22365
|
+
* @type {FormInstanceCreatedByV2024}
|
|
22366
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22367
|
+
*/
|
|
22368
|
+
'createdBy'?: FormInstanceCreatedByV2024;
|
|
22369
|
+
/**
|
|
22370
|
+
* FormDefinitionID is the id of the form definition that created this form
|
|
22371
|
+
* @type {string}
|
|
22372
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22373
|
+
*/
|
|
22374
|
+
'formDefinitionId'?: string;
|
|
21989
22375
|
/**
|
|
21990
|
-
*
|
|
21991
|
-
* @type {
|
|
22376
|
+
* FormInput is an object of form input labels to value
|
|
22377
|
+
* @type {{ [key: string]: object; }}
|
|
22378
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22379
|
+
*/
|
|
22380
|
+
'formInput'?: { [key: string]: object; } | null;
|
|
22381
|
+
/**
|
|
22382
|
+
* FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
|
|
22383
|
+
* @type {Array<FormElementV2024>}
|
|
21992
22384
|
* @memberof ListFormInstancesByTenantResponseV2024
|
|
21993
22385
|
*/
|
|
21994
|
-
'
|
|
22386
|
+
'formElements'?: Array<FormElementV2024>;
|
|
22387
|
+
/**
|
|
22388
|
+
* FormData is the data provided by the form on submit. The data is in a key -> value map
|
|
22389
|
+
* @type {{ [key: string]: any; }}
|
|
22390
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22391
|
+
*/
|
|
22392
|
+
'formData'?: { [key: string]: any; } | null;
|
|
22393
|
+
/**
|
|
22394
|
+
* FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors
|
|
22395
|
+
* @type {Array<FormErrorV2024>}
|
|
22396
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22397
|
+
*/
|
|
22398
|
+
'formErrors'?: Array<FormErrorV2024>;
|
|
22399
|
+
/**
|
|
22400
|
+
* FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
|
|
22401
|
+
* @type {Array<FormConditionV2024>}
|
|
22402
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22403
|
+
*/
|
|
22404
|
+
'formConditions'?: Array<FormConditionV2024>;
|
|
22405
|
+
/**
|
|
22406
|
+
* Created is the date the form instance was assigned
|
|
22407
|
+
* @type {string}
|
|
22408
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22409
|
+
*/
|
|
22410
|
+
'created'?: string;
|
|
22411
|
+
/**
|
|
22412
|
+
* Modified is the last date the form instance was modified
|
|
22413
|
+
* @type {string}
|
|
22414
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22415
|
+
*/
|
|
22416
|
+
'modified'?: string;
|
|
22417
|
+
/**
|
|
22418
|
+
* Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it
|
|
22419
|
+
* @type {Array<FormInstanceRecipientV2024>}
|
|
22420
|
+
* @memberof ListFormInstancesByTenantResponseV2024
|
|
22421
|
+
*/
|
|
22422
|
+
'recipients'?: Array<FormInstanceRecipientV2024>;
|
|
21995
22423
|
}
|
|
22424
|
+
|
|
22425
|
+
export const ListFormInstancesByTenantResponseV2024StateV2024 = {
|
|
22426
|
+
Assigned: 'ASSIGNED',
|
|
22427
|
+
InProgress: 'IN_PROGRESS',
|
|
22428
|
+
Submitted: 'SUBMITTED',
|
|
22429
|
+
Completed: 'COMPLETED',
|
|
22430
|
+
Cancelled: 'CANCELLED'
|
|
22431
|
+
} as const;
|
|
22432
|
+
|
|
22433
|
+
export type ListFormInstancesByTenantResponseV2024StateV2024 = typeof ListFormInstancesByTenantResponseV2024StateV2024[keyof typeof ListFormInstancesByTenantResponseV2024StateV2024];
|
|
22434
|
+
|
|
21996
22435
|
/**
|
|
21997
22436
|
*
|
|
21998
22437
|
* @export
|
|
@@ -23504,6 +23943,27 @@ export interface ManagedClusterAttributesV2024 {
|
|
|
23504
23943
|
*/
|
|
23505
23944
|
'keystore'?: string | null;
|
|
23506
23945
|
}
|
|
23946
|
+
/**
|
|
23947
|
+
* Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
|
|
23948
|
+
* @export
|
|
23949
|
+
* @interface ManagedClusterEncryptionConfigV2024
|
|
23950
|
+
*/
|
|
23951
|
+
export interface ManagedClusterEncryptionConfigV2024 {
|
|
23952
|
+
/**
|
|
23953
|
+
* Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
|
|
23954
|
+
* @type {string}
|
|
23955
|
+
* @memberof ManagedClusterEncryptionConfigV2024
|
|
23956
|
+
*/
|
|
23957
|
+
'format'?: ManagedClusterEncryptionConfigV2024FormatV2024;
|
|
23958
|
+
}
|
|
23959
|
+
|
|
23960
|
+
export const ManagedClusterEncryptionConfigV2024FormatV2024 = {
|
|
23961
|
+
V2: 'V2',
|
|
23962
|
+
V3: 'V3'
|
|
23963
|
+
} as const;
|
|
23964
|
+
|
|
23965
|
+
export type ManagedClusterEncryptionConfigV2024FormatV2024 = typeof ManagedClusterEncryptionConfigV2024FormatV2024[keyof typeof ManagedClusterEncryptionConfigV2024FormatV2024];
|
|
23966
|
+
|
|
23507
23967
|
/**
|
|
23508
23968
|
* Managed Cluster key pair for Cluster
|
|
23509
23969
|
* @export
|
|
@@ -23763,7 +24223,7 @@ export interface ManagedClusterV2024 {
|
|
|
23763
24223
|
*/
|
|
23764
24224
|
'ccgVersion': string;
|
|
23765
24225
|
/**
|
|
23766
|
-
* boolean flag
|
|
24226
|
+
* boolean flag indicating whether or not the cluster configuration is pinned
|
|
23767
24227
|
* @type {boolean}
|
|
23768
24228
|
* @memberof ManagedClusterV2024
|
|
23769
24229
|
*/
|
|
@@ -23804,6 +24264,12 @@ export interface ManagedClusterV2024 {
|
|
|
23804
24264
|
* @memberof ManagedClusterV2024
|
|
23805
24265
|
*/
|
|
23806
24266
|
'publicKey'?: string | null;
|
|
24267
|
+
/**
|
|
24268
|
+
*
|
|
24269
|
+
* @type {ManagedClusterEncryptionConfigV2024}
|
|
24270
|
+
* @memberof ManagedClusterV2024
|
|
24271
|
+
*/
|
|
24272
|
+
'encryptionConfiguration'?: ManagedClusterEncryptionConfigV2024;
|
|
23807
24273
|
/**
|
|
23808
24274
|
* Key describing any immediate cluster alerts
|
|
23809
24275
|
* @type {string}
|
|
@@ -24625,10 +25091,10 @@ export interface MultiHostIntegrationsCreateV2024 {
|
|
|
24625
25091
|
'description': string;
|
|
24626
25092
|
/**
|
|
24627
25093
|
*
|
|
24628
|
-
* @type {
|
|
25094
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
24629
25095
|
* @memberof MultiHostIntegrationsCreateV2024
|
|
24630
25096
|
*/
|
|
24631
|
-
'owner':
|
|
25097
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
24632
25098
|
/**
|
|
24633
25099
|
*
|
|
24634
25100
|
* @type {SourceClusterV2024}
|
|
@@ -24666,6 +25132,38 @@ export interface MultiHostIntegrationsCreateV2024 {
|
|
|
24666
25132
|
*/
|
|
24667
25133
|
'modified'?: string;
|
|
24668
25134
|
}
|
|
25135
|
+
/**
|
|
25136
|
+
* Reference to identity object who owns the source.
|
|
25137
|
+
* @export
|
|
25138
|
+
* @interface MultiHostIntegrationsOwnerV2024
|
|
25139
|
+
*/
|
|
25140
|
+
export interface MultiHostIntegrationsOwnerV2024 {
|
|
25141
|
+
/**
|
|
25142
|
+
* Type of object being referenced.
|
|
25143
|
+
* @type {string}
|
|
25144
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
25145
|
+
*/
|
|
25146
|
+
'type'?: MultiHostIntegrationsOwnerV2024TypeV2024;
|
|
25147
|
+
/**
|
|
25148
|
+
* Owner identity\'s ID.
|
|
25149
|
+
* @type {string}
|
|
25150
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
25151
|
+
*/
|
|
25152
|
+
'id'?: string;
|
|
25153
|
+
/**
|
|
25154
|
+
* Owner identity\'s human-readable display name.
|
|
25155
|
+
* @type {string}
|
|
25156
|
+
* @memberof MultiHostIntegrationsOwnerV2024
|
|
25157
|
+
*/
|
|
25158
|
+
'name'?: string;
|
|
25159
|
+
}
|
|
25160
|
+
|
|
25161
|
+
export const MultiHostIntegrationsOwnerV2024TypeV2024 = {
|
|
25162
|
+
Identity: 'IDENTITY'
|
|
25163
|
+
} as const;
|
|
25164
|
+
|
|
25165
|
+
export type MultiHostIntegrationsOwnerV2024TypeV2024 = typeof MultiHostIntegrationsOwnerV2024TypeV2024[keyof typeof MultiHostIntegrationsOwnerV2024TypeV2024];
|
|
25166
|
+
|
|
24669
25167
|
/**
|
|
24670
25168
|
*
|
|
24671
25169
|
* @export
|
|
@@ -24692,10 +25190,10 @@ export interface MultiHostIntegrationsV2024 {
|
|
|
24692
25190
|
'description': string;
|
|
24693
25191
|
/**
|
|
24694
25192
|
*
|
|
24695
|
-
* @type {
|
|
25193
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
24696
25194
|
* @memberof MultiHostIntegrationsV2024
|
|
24697
25195
|
*/
|
|
24698
|
-
'owner':
|
|
25196
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
24699
25197
|
/**
|
|
24700
25198
|
*
|
|
24701
25199
|
* @type {SourceClusterV2024}
|
|
@@ -24898,7 +25396,8 @@ export const MultiHostIntegrationsV2024FeaturesV2024 = {
|
|
|
24898
25396
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
24899
25397
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
24900
25398
|
UsesUuid: 'USES_UUID',
|
|
24901
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
25399
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
25400
|
+
Delete: 'DELETE'
|
|
24902
25401
|
} as const;
|
|
24903
25402
|
|
|
24904
25403
|
export type MultiHostIntegrationsV2024FeaturesV2024 = typeof MultiHostIntegrationsV2024FeaturesV2024[keyof typeof MultiHostIntegrationsV2024FeaturesV2024];
|
|
@@ -24950,10 +25449,10 @@ export interface MultiHostSourcesV2024 {
|
|
|
24950
25449
|
'description'?: string;
|
|
24951
25450
|
/**
|
|
24952
25451
|
*
|
|
24953
|
-
* @type {
|
|
25452
|
+
* @type {MultiHostIntegrationsOwnerV2024}
|
|
24954
25453
|
* @memberof MultiHostSourcesV2024
|
|
24955
25454
|
*/
|
|
24956
|
-
'owner':
|
|
25455
|
+
'owner': MultiHostIntegrationsOwnerV2024;
|
|
24957
25456
|
/**
|
|
24958
25457
|
*
|
|
24959
25458
|
* @type {SourceClusterV2024}
|
|
@@ -25150,7 +25649,8 @@ export const MultiHostSourcesV2024FeaturesV2024 = {
|
|
|
25150
25649
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
25151
25650
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
25152
25651
|
UsesUuid: 'USES_UUID',
|
|
25153
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
25652
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
25653
|
+
Delete: 'DELETE'
|
|
25154
25654
|
} as const;
|
|
25155
25655
|
|
|
25156
25656
|
export type MultiHostSourcesV2024FeaturesV2024 = typeof MultiHostSourcesV2024FeaturesV2024[keyof typeof MultiHostSourcesV2024FeaturesV2024];
|
|
@@ -28340,6 +28840,12 @@ export interface PendingApprovalV2024 {
|
|
|
28340
28840
|
* @memberof PendingApprovalV2024
|
|
28341
28841
|
*/
|
|
28342
28842
|
'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
|
|
28843
|
+
/**
|
|
28844
|
+
* The privilege level of the requested access item, if applicable.
|
|
28845
|
+
* @type {string}
|
|
28846
|
+
* @memberof PendingApprovalV2024
|
|
28847
|
+
*/
|
|
28848
|
+
'privilegeLevel'?: string | null;
|
|
28343
28849
|
}
|
|
28344
28850
|
|
|
28345
28851
|
|
|
@@ -31114,6 +31620,12 @@ export interface RequestedItemStatusV2024 {
|
|
|
31114
31620
|
* @memberof RequestedItemStatusV2024
|
|
31115
31621
|
*/
|
|
31116
31622
|
'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
|
|
31623
|
+
/**
|
|
31624
|
+
* The privilege level of the requested access item, if applicable.
|
|
31625
|
+
* @type {string}
|
|
31626
|
+
* @memberof RequestedItemStatusV2024
|
|
31627
|
+
*/
|
|
31628
|
+
'privilegeLevel'?: string | null;
|
|
31117
31629
|
}
|
|
31118
31630
|
|
|
31119
31631
|
export const RequestedItemStatusV2024TypeV2024 = {
|
|
@@ -31966,6 +32478,12 @@ export interface RoleAssignmentDtoV2024 {
|
|
|
31966
32478
|
* @memberof RoleAssignmentDtoV2024
|
|
31967
32479
|
*/
|
|
31968
32480
|
'removeDate'?: string | null;
|
|
32481
|
+
/**
|
|
32482
|
+
* Date that the assignment was added
|
|
32483
|
+
* @type {string}
|
|
32484
|
+
* @memberof RoleAssignmentDtoV2024
|
|
32485
|
+
*/
|
|
32486
|
+
'addedDate'?: string;
|
|
31969
32487
|
}
|
|
31970
32488
|
/**
|
|
31971
32489
|
*
|
|
@@ -31985,6 +32503,12 @@ export interface RoleAssignmentRefV2024 {
|
|
|
31985
32503
|
* @memberof RoleAssignmentRefV2024
|
|
31986
32504
|
*/
|
|
31987
32505
|
'role'?: BaseReferenceDtoV2024;
|
|
32506
|
+
/**
|
|
32507
|
+
* Date that the assignment was added
|
|
32508
|
+
* @type {string}
|
|
32509
|
+
* @memberof RoleAssignmentRefV2024
|
|
32510
|
+
*/
|
|
32511
|
+
'addedDate'?: string;
|
|
31988
32512
|
}
|
|
31989
32513
|
/**
|
|
31990
32514
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -35848,7 +36372,8 @@ export const SchemaV2024FeaturesV2024 = {
|
|
|
35848
36372
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
35849
36373
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
35850
36374
|
UsesUuid: 'USES_UUID',
|
|
35851
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
36375
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
36376
|
+
Delete: 'DELETE'
|
|
35852
36377
|
} as const;
|
|
35853
36378
|
|
|
35854
36379
|
export type SchemaV2024FeaturesV2024 = typeof SchemaV2024FeaturesV2024[keyof typeof SchemaV2024FeaturesV2024];
|
|
@@ -39763,7 +40288,7 @@ export interface SourceV2024 {
|
|
|
39763
40288
|
* @type {SourceOwnerV2024}
|
|
39764
40289
|
* @memberof SourceV2024
|
|
39765
40290
|
*/
|
|
39766
|
-
'owner': SourceOwnerV2024;
|
|
40291
|
+
'owner': SourceOwnerV2024 | null;
|
|
39767
40292
|
/**
|
|
39768
40293
|
*
|
|
39769
40294
|
* @type {SourceClusterV2024}
|
|
@@ -39960,7 +40485,8 @@ export const SourceV2024FeaturesV2024 = {
|
|
|
39960
40485
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
39961
40486
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
39962
40487
|
UsesUuid: 'USES_UUID',
|
|
39963
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
40488
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
40489
|
+
Delete: 'DELETE'
|
|
39964
40490
|
} as const;
|
|
39965
40491
|
|
|
39966
40492
|
export type SourceV2024FeaturesV2024 = typeof SourceV2024FeaturesV2024[keyof typeof SourceV2024FeaturesV2024];
|
|
@@ -40609,6 +41135,19 @@ export interface StartInvocationInputV2024 {
|
|
|
40609
41135
|
*/
|
|
40610
41136
|
'contentJson'?: object;
|
|
40611
41137
|
}
|
|
41138
|
+
/**
|
|
41139
|
+
*
|
|
41140
|
+
* @export
|
|
41141
|
+
* @interface StartLauncher200ResponseV2024
|
|
41142
|
+
*/
|
|
41143
|
+
export interface StartLauncher200ResponseV2024 {
|
|
41144
|
+
/**
|
|
41145
|
+
* ID of the Interactive Process that was launched
|
|
41146
|
+
* @type {string}
|
|
41147
|
+
* @memberof StartLauncher200ResponseV2024
|
|
41148
|
+
*/
|
|
41149
|
+
'interactiveProcessId': string;
|
|
41150
|
+
}
|
|
40612
41151
|
/**
|
|
40613
41152
|
*
|
|
40614
41153
|
* @export
|
|
@@ -41015,6 +41554,82 @@ export interface SubstringV2024 {
|
|
|
41015
41554
|
*/
|
|
41016
41555
|
'input'?: { [key: string]: any; };
|
|
41017
41556
|
}
|
|
41557
|
+
/**
|
|
41558
|
+
* Tagged object\'s category.
|
|
41559
|
+
* @export
|
|
41560
|
+
* @interface TagTagCategoryRefsInnerV2024
|
|
41561
|
+
*/
|
|
41562
|
+
export interface TagTagCategoryRefsInnerV2024 {
|
|
41563
|
+
/**
|
|
41564
|
+
* DTO type of the tagged object\'s category.
|
|
41565
|
+
* @type {string}
|
|
41566
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
41567
|
+
*/
|
|
41568
|
+
'type'?: TagTagCategoryRefsInnerV2024TypeV2024;
|
|
41569
|
+
/**
|
|
41570
|
+
* Tagged object\'s ID.
|
|
41571
|
+
* @type {string}
|
|
41572
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
41573
|
+
*/
|
|
41574
|
+
'id'?: string;
|
|
41575
|
+
/**
|
|
41576
|
+
* Tagged object\'s display name.
|
|
41577
|
+
* @type {string}
|
|
41578
|
+
* @memberof TagTagCategoryRefsInnerV2024
|
|
41579
|
+
*/
|
|
41580
|
+
'name'?: string;
|
|
41581
|
+
}
|
|
41582
|
+
|
|
41583
|
+
export const TagTagCategoryRefsInnerV2024TypeV2024 = {
|
|
41584
|
+
AccessProfile: 'ACCESS_PROFILE',
|
|
41585
|
+
Application: 'APPLICATION',
|
|
41586
|
+
Campaign: 'CAMPAIGN',
|
|
41587
|
+
Entitlement: 'ENTITLEMENT',
|
|
41588
|
+
Identity: 'IDENTITY',
|
|
41589
|
+
Role: 'ROLE',
|
|
41590
|
+
SodPolicy: 'SOD_POLICY',
|
|
41591
|
+
Source: 'SOURCE'
|
|
41592
|
+
} as const;
|
|
41593
|
+
|
|
41594
|
+
export type TagTagCategoryRefsInnerV2024TypeV2024 = typeof TagTagCategoryRefsInnerV2024TypeV2024[keyof typeof TagTagCategoryRefsInnerV2024TypeV2024];
|
|
41595
|
+
|
|
41596
|
+
/**
|
|
41597
|
+
*
|
|
41598
|
+
* @export
|
|
41599
|
+
* @interface TagV2024
|
|
41600
|
+
*/
|
|
41601
|
+
export interface TagV2024 {
|
|
41602
|
+
/**
|
|
41603
|
+
* Tag id
|
|
41604
|
+
* @type {string}
|
|
41605
|
+
* @memberof TagV2024
|
|
41606
|
+
*/
|
|
41607
|
+
'id': string;
|
|
41608
|
+
/**
|
|
41609
|
+
* Name of the tag.
|
|
41610
|
+
* @type {string}
|
|
41611
|
+
* @memberof TagV2024
|
|
41612
|
+
*/
|
|
41613
|
+
'name': string;
|
|
41614
|
+
/**
|
|
41615
|
+
* Date the tag was created.
|
|
41616
|
+
* @type {string}
|
|
41617
|
+
* @memberof TagV2024
|
|
41618
|
+
*/
|
|
41619
|
+
'created': string;
|
|
41620
|
+
/**
|
|
41621
|
+
* Date the tag was last modified.
|
|
41622
|
+
* @type {string}
|
|
41623
|
+
* @memberof TagV2024
|
|
41624
|
+
*/
|
|
41625
|
+
'modified': string;
|
|
41626
|
+
/**
|
|
41627
|
+
*
|
|
41628
|
+
* @type {Array<TagTagCategoryRefsInnerV2024>}
|
|
41629
|
+
* @memberof TagV2024
|
|
41630
|
+
*/
|
|
41631
|
+
'tagCategoryRefs': Array<TagTagCategoryRefsInnerV2024>;
|
|
41632
|
+
}
|
|
41018
41633
|
/**
|
|
41019
41634
|
*
|
|
41020
41635
|
* @export
|
|
@@ -43471,143 +44086,6 @@ export interface ValueV2024 {
|
|
|
43471
44086
|
*/
|
|
43472
44087
|
'value'?: string;
|
|
43473
44088
|
}
|
|
43474
|
-
/**
|
|
43475
|
-
* An object representing the nullable timestamp of when the mapping was deleted.
|
|
43476
|
-
* @export
|
|
43477
|
-
* @interface VendorConnectorMappingDeletedAtV2024
|
|
43478
|
-
*/
|
|
43479
|
-
export interface VendorConnectorMappingDeletedAtV2024 {
|
|
43480
|
-
/**
|
|
43481
|
-
* The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
|
|
43482
|
-
* @type {string}
|
|
43483
|
-
* @memberof VendorConnectorMappingDeletedAtV2024
|
|
43484
|
-
*/
|
|
43485
|
-
'Time'?: string;
|
|
43486
|
-
/**
|
|
43487
|
-
* A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
|
|
43488
|
-
* @type {boolean}
|
|
43489
|
-
* @memberof VendorConnectorMappingDeletedAtV2024
|
|
43490
|
-
*/
|
|
43491
|
-
'Valid'?: boolean;
|
|
43492
|
-
}
|
|
43493
|
-
/**
|
|
43494
|
-
* An object representing the nullable identifier of the user who deleted the mapping.
|
|
43495
|
-
* @export
|
|
43496
|
-
* @interface VendorConnectorMappingDeletedByV2024
|
|
43497
|
-
*/
|
|
43498
|
-
export interface VendorConnectorMappingDeletedByV2024 {
|
|
43499
|
-
/**
|
|
43500
|
-
* The identifier of the user who deleted the mapping, if applicable.
|
|
43501
|
-
* @type {string}
|
|
43502
|
-
* @memberof VendorConnectorMappingDeletedByV2024
|
|
43503
|
-
*/
|
|
43504
|
-
'String'?: string;
|
|
43505
|
-
/**
|
|
43506
|
-
* A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
|
|
43507
|
-
* @type {boolean}
|
|
43508
|
-
* @memberof VendorConnectorMappingDeletedByV2024
|
|
43509
|
-
*/
|
|
43510
|
-
'Valid'?: boolean;
|
|
43511
|
-
}
|
|
43512
|
-
/**
|
|
43513
|
-
* An object representing the nullable timestamp of the last update.
|
|
43514
|
-
* @export
|
|
43515
|
-
* @interface VendorConnectorMappingUpdatedAtV2024
|
|
43516
|
-
*/
|
|
43517
|
-
export interface VendorConnectorMappingUpdatedAtV2024 {
|
|
43518
|
-
/**
|
|
43519
|
-
* The timestamp when the mapping was last updated, represented in ISO 8601 format.
|
|
43520
|
-
* @type {string}
|
|
43521
|
-
* @memberof VendorConnectorMappingUpdatedAtV2024
|
|
43522
|
-
*/
|
|
43523
|
-
'Time'?: string;
|
|
43524
|
-
/**
|
|
43525
|
-
* A flag indicating if the \'Time\' field is set and valid.
|
|
43526
|
-
* @type {boolean}
|
|
43527
|
-
* @memberof VendorConnectorMappingUpdatedAtV2024
|
|
43528
|
-
*/
|
|
43529
|
-
'Valid'?: boolean;
|
|
43530
|
-
}
|
|
43531
|
-
/**
|
|
43532
|
-
* An object representing the nullable identifier of the user who last updated the mapping.
|
|
43533
|
-
* @export
|
|
43534
|
-
* @interface VendorConnectorMappingUpdatedByV2024
|
|
43535
|
-
*/
|
|
43536
|
-
export interface VendorConnectorMappingUpdatedByV2024 {
|
|
43537
|
-
/**
|
|
43538
|
-
* The identifier of the user who last updated the mapping, if available.
|
|
43539
|
-
* @type {string}
|
|
43540
|
-
* @memberof VendorConnectorMappingUpdatedByV2024
|
|
43541
|
-
*/
|
|
43542
|
-
'String'?: string;
|
|
43543
|
-
/**
|
|
43544
|
-
* A flag indicating if the \'String\' field is set and valid.
|
|
43545
|
-
* @type {boolean}
|
|
43546
|
-
* @memberof VendorConnectorMappingUpdatedByV2024
|
|
43547
|
-
*/
|
|
43548
|
-
'Valid'?: boolean;
|
|
43549
|
-
}
|
|
43550
|
-
/**
|
|
43551
|
-
*
|
|
43552
|
-
* @export
|
|
43553
|
-
* @interface VendorConnectorMappingV2024
|
|
43554
|
-
*/
|
|
43555
|
-
export interface VendorConnectorMappingV2024 {
|
|
43556
|
-
/**
|
|
43557
|
-
* The unique identifier for the vendor-connector mapping.
|
|
43558
|
-
* @type {string}
|
|
43559
|
-
* @memberof VendorConnectorMappingV2024
|
|
43560
|
-
*/
|
|
43561
|
-
'id'?: string;
|
|
43562
|
-
/**
|
|
43563
|
-
* The name of the vendor.
|
|
43564
|
-
* @type {string}
|
|
43565
|
-
* @memberof VendorConnectorMappingV2024
|
|
43566
|
-
*/
|
|
43567
|
-
'vendor'?: string;
|
|
43568
|
-
/**
|
|
43569
|
-
* The name of the connector.
|
|
43570
|
-
* @type {string}
|
|
43571
|
-
* @memberof VendorConnectorMappingV2024
|
|
43572
|
-
*/
|
|
43573
|
-
'connector'?: string;
|
|
43574
|
-
/**
|
|
43575
|
-
* The creation timestamp of the mapping.
|
|
43576
|
-
* @type {string}
|
|
43577
|
-
* @memberof VendorConnectorMappingV2024
|
|
43578
|
-
*/
|
|
43579
|
-
'createdAt'?: string;
|
|
43580
|
-
/**
|
|
43581
|
-
* The identifier of the user who created the mapping.
|
|
43582
|
-
* @type {string}
|
|
43583
|
-
* @memberof VendorConnectorMappingV2024
|
|
43584
|
-
*/
|
|
43585
|
-
'createdBy'?: string;
|
|
43586
|
-
/**
|
|
43587
|
-
*
|
|
43588
|
-
* @type {VendorConnectorMappingUpdatedAtV2024}
|
|
43589
|
-
* @memberof VendorConnectorMappingV2024
|
|
43590
|
-
*/
|
|
43591
|
-
'updatedAt'?: VendorConnectorMappingUpdatedAtV2024 | null;
|
|
43592
|
-
/**
|
|
43593
|
-
*
|
|
43594
|
-
* @type {VendorConnectorMappingUpdatedByV2024}
|
|
43595
|
-
* @memberof VendorConnectorMappingV2024
|
|
43596
|
-
*/
|
|
43597
|
-
'updatedBy'?: VendorConnectorMappingUpdatedByV2024 | null;
|
|
43598
|
-
/**
|
|
43599
|
-
*
|
|
43600
|
-
* @type {VendorConnectorMappingDeletedAtV2024}
|
|
43601
|
-
* @memberof VendorConnectorMappingV2024
|
|
43602
|
-
*/
|
|
43603
|
-
'deletedAt'?: VendorConnectorMappingDeletedAtV2024 | null;
|
|
43604
|
-
/**
|
|
43605
|
-
*
|
|
43606
|
-
* @type {VendorConnectorMappingDeletedByV2024}
|
|
43607
|
-
* @memberof VendorConnectorMappingV2024
|
|
43608
|
-
*/
|
|
43609
|
-
'deletedBy'?: VendorConnectorMappingDeletedByV2024 | null;
|
|
43610
|
-
}
|
|
43611
44089
|
/**
|
|
43612
44090
|
* The types of objects supported for SOD violations
|
|
43613
44091
|
* @export
|
|
@@ -47778,7 +48256,7 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
47778
48256
|
};
|
|
47779
48257
|
},
|
|
47780
48258
|
/**
|
|
47781
|
-
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/
|
|
48259
|
+
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
|
|
47782
48260
|
* @summary Close access request
|
|
47783
48261
|
* @param {CloseAccessRequestV2024} closeAccessRequestV2024
|
|
47784
48262
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -47894,6 +48372,60 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
47894
48372
|
|
|
47895
48373
|
|
|
47896
48374
|
|
|
48375
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
48376
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
48377
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
48378
|
+
|
|
48379
|
+
return {
|
|
48380
|
+
url: toPathString(localVarUrlObj),
|
|
48381
|
+
axiosOptions: localVarRequestOptions,
|
|
48382
|
+
};
|
|
48383
|
+
},
|
|
48384
|
+
/**
|
|
48385
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
48386
|
+
* @summary Identity entitlement details
|
|
48387
|
+
* @param {string} identityId The identity ID.
|
|
48388
|
+
* @param {string} entitlementId The entitlement ID
|
|
48389
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48390
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
48391
|
+
* @throws {RequiredError}
|
|
48392
|
+
*/
|
|
48393
|
+
getEntitlementDetailsForIdentity: async (identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48394
|
+
// verify required parameter 'identityId' is not null or undefined
|
|
48395
|
+
assertParamExists('getEntitlementDetailsForIdentity', 'identityId', identityId)
|
|
48396
|
+
// verify required parameter 'entitlementId' is not null or undefined
|
|
48397
|
+
assertParamExists('getEntitlementDetailsForIdentity', 'entitlementId', entitlementId)
|
|
48398
|
+
if (xSailPointExperimental === undefined) {
|
|
48399
|
+
xSailPointExperimental = 'true';
|
|
48400
|
+
}
|
|
48401
|
+
|
|
48402
|
+
const localVarPath = `/revocable-objects`
|
|
48403
|
+
.replace(`{${"identityId"}}`, encodeURIComponent(String(identityId)))
|
|
48404
|
+
.replace(`{${"entitlementId"}}`, encodeURIComponent(String(entitlementId)));
|
|
48405
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
48406
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
48407
|
+
let baseOptions;
|
|
48408
|
+
if (configuration) {
|
|
48409
|
+
baseOptions = configuration.baseOptions;
|
|
48410
|
+
}
|
|
48411
|
+
|
|
48412
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
48413
|
+
const localVarHeaderParameter = {} as any;
|
|
48414
|
+
const localVarQueryParameter = {} as any;
|
|
48415
|
+
|
|
48416
|
+
// authentication userAuth required
|
|
48417
|
+
// oauth required
|
|
48418
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48419
|
+
|
|
48420
|
+
// authentication userAuth required
|
|
48421
|
+
// oauth required
|
|
48422
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
48423
|
+
|
|
48424
|
+
|
|
48425
|
+
|
|
48426
|
+
if (xSailPointExperimental != null) {
|
|
48427
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
48428
|
+
}
|
|
47897
48429
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
47898
48430
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
47899
48431
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -47994,6 +48526,7 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
47994
48526
|
/**
|
|
47995
48527
|
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
47996
48528
|
* @summary Access request status for administrators
|
|
48529
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
47997
48530
|
* @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
47998
48531
|
* @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
47999
48532
|
* @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
@@ -48007,7 +48540,13 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
48007
48540
|
* @param {*} [axiosOptions] Override http request option.
|
|
48008
48541
|
* @throws {RequiredError}
|
|
48009
48542
|
*/
|
|
48010
|
-
listAdministratorsAccessRequestStatus: async (requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48543
|
+
listAdministratorsAccessRequestStatus: async (xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48544
|
+
if (xSailPointExperimental === undefined) {
|
|
48545
|
+
xSailPointExperimental = 'true';
|
|
48546
|
+
}
|
|
48547
|
+
|
|
48548
|
+
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
48549
|
+
assertParamExists('listAdministratorsAccessRequestStatus', 'xSailPointExperimental', xSailPointExperimental)
|
|
48011
48550
|
const localVarPath = `/access-request-administration`;
|
|
48012
48551
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
48013
48552
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -48070,6 +48609,9 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
48070
48609
|
|
|
48071
48610
|
|
|
48072
48611
|
|
|
48612
|
+
if (xSailPointExperimental != null) {
|
|
48613
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
48614
|
+
}
|
|
48073
48615
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
48074
48616
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
48075
48617
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -48083,12 +48625,17 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
48083
48625
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
48084
48626
|
* @summary Get accounts selections for identity
|
|
48085
48627
|
* @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
|
|
48628
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48086
48629
|
* @param {*} [axiosOptions] Override http request option.
|
|
48087
48630
|
* @throws {RequiredError}
|
|
48088
48631
|
*/
|
|
48089
|
-
loadAccountSelections: async (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48632
|
+
loadAccountSelections: async (accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
48090
48633
|
// verify required parameter 'accountsSelectionRequestV2024' is not null or undefined
|
|
48091
48634
|
assertParamExists('loadAccountSelections', 'accountsSelectionRequestV2024', accountsSelectionRequestV2024)
|
|
48635
|
+
if (xSailPointExperimental === undefined) {
|
|
48636
|
+
xSailPointExperimental = 'true';
|
|
48637
|
+
}
|
|
48638
|
+
|
|
48092
48639
|
const localVarPath = `/access-requests/accounts-selection`;
|
|
48093
48640
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
48094
48641
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -48113,6 +48660,9 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
48113
48660
|
|
|
48114
48661
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
48115
48662
|
|
|
48663
|
+
if (xSailPointExperimental != null) {
|
|
48664
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
48665
|
+
}
|
|
48116
48666
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
48117
48667
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
48118
48668
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -48217,7 +48767,7 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
|
|
|
48217
48767
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48218
48768
|
},
|
|
48219
48769
|
/**
|
|
48220
|
-
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/
|
|
48770
|
+
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
|
|
48221
48771
|
* @summary Close access request
|
|
48222
48772
|
* @param {CloseAccessRequestV2024} closeAccessRequestV2024
|
|
48223
48773
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48254,6 +48804,21 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
|
|
|
48254
48804
|
const localVarOperationServerBasePath = operationServerMap['AccessRequestsV2024Api.getAccessRequestConfig']?.[localVarOperationServerIndex]?.url;
|
|
48255
48805
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48256
48806
|
},
|
|
48807
|
+
/**
|
|
48808
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
48809
|
+
* @summary Identity entitlement details
|
|
48810
|
+
* @param {string} identityId The identity ID.
|
|
48811
|
+
* @param {string} entitlementId The entitlement ID
|
|
48812
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48813
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
48814
|
+
* @throws {RequiredError}
|
|
48815
|
+
*/
|
|
48816
|
+
async getEntitlementDetailsForIdentity(identityId: string, entitlementId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityEntitlementDetailsV2024>> {
|
|
48817
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntitlementDetailsForIdentity(identityId, entitlementId, xSailPointExperimental, axiosOptions);
|
|
48818
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
48819
|
+
const localVarOperationServerBasePath = operationServerMap['AccessRequestsV2024Api.getEntitlementDetailsForIdentity']?.[localVarOperationServerIndex]?.url;
|
|
48820
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48821
|
+
},
|
|
48257
48822
|
/**
|
|
48258
48823
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
48259
48824
|
* @summary Access request status
|
|
@@ -48279,6 +48844,7 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
|
|
|
48279
48844
|
/**
|
|
48280
48845
|
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
48281
48846
|
* @summary Access request status for administrators
|
|
48847
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
48282
48848
|
* @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
48283
48849
|
* @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
48284
48850
|
* @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
@@ -48292,8 +48858,8 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
|
|
|
48292
48858
|
* @param {*} [axiosOptions] Override http request option.
|
|
48293
48859
|
* @throws {RequiredError}
|
|
48294
48860
|
*/
|
|
48295
|
-
async listAdministratorsAccessRequestStatus(requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>> {
|
|
48296
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listAdministratorsAccessRequestStatus(requestedFor, requestedBy, regardingIdentity, assignedTo, count, limit, offset, filters, sorters, requestState, axiosOptions);
|
|
48861
|
+
async listAdministratorsAccessRequestStatus(xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusV2024>>> {
|
|
48862
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAdministratorsAccessRequestStatus(xSailPointExperimental, requestedFor, requestedBy, regardingIdentity, assignedTo, count, limit, offset, filters, sorters, requestState, axiosOptions);
|
|
48297
48863
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
48298
48864
|
const localVarOperationServerBasePath = operationServerMap['AccessRequestsV2024Api.listAdministratorsAccessRequestStatus']?.[localVarOperationServerIndex]?.url;
|
|
48299
48865
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -48302,11 +48868,12 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
|
|
|
48302
48868
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
48303
48869
|
* @summary Get accounts selections for identity
|
|
48304
48870
|
* @param {AccountsSelectionRequestV2024} accountsSelectionRequestV2024
|
|
48871
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48305
48872
|
* @param {*} [axiosOptions] Override http request option.
|
|
48306
48873
|
* @throws {RequiredError}
|
|
48307
48874
|
*/
|
|
48308
|
-
async loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>> {
|
|
48309
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.loadAccountSelections(accountsSelectionRequestV2024, axiosOptions);
|
|
48875
|
+
async loadAccountSelections(accountsSelectionRequestV2024: AccountsSelectionRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsSelectionResponseV2024>> {
|
|
48876
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.loadAccountSelections(accountsSelectionRequestV2024, xSailPointExperimental, axiosOptions);
|
|
48310
48877
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
48311
48878
|
const localVarOperationServerBasePath = operationServerMap['AccessRequestsV2024Api.loadAccountSelections']?.[localVarOperationServerIndex]?.url;
|
|
48312
48879
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -48365,7 +48932,7 @@ export const AccessRequestsV2024ApiFactory = function (configuration?: Configura
|
|
|
48365
48932
|
return localVarFp.cancelAccessRequestInBulk(requestParameters.bulkCancelAccessRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
48366
48933
|
},
|
|
48367
48934
|
/**
|
|
48368
|
-
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/
|
|
48935
|
+
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
|
|
48369
48936
|
* @summary Close access request
|
|
48370
48937
|
* @param {AccessRequestsV2024ApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
48371
48938
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48393,6 +48960,16 @@ export const AccessRequestsV2024ApiFactory = function (configuration?: Configura
|
|
|
48393
48960
|
getAccessRequestConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestConfigV2024> {
|
|
48394
48961
|
return localVarFp.getAccessRequestConfig(axiosOptions).then((request) => request(axios, basePath));
|
|
48395
48962
|
},
|
|
48963
|
+
/**
|
|
48964
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
48965
|
+
* @summary Identity entitlement details
|
|
48966
|
+
* @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
|
|
48967
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
48968
|
+
* @throws {RequiredError}
|
|
48969
|
+
*/
|
|
48970
|
+
getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityEntitlementDetailsV2024> {
|
|
48971
|
+
return localVarFp.getEntitlementDetailsForIdentity(requestParameters.identityId, requestParameters.entitlementId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
48972
|
+
},
|
|
48396
48973
|
/**
|
|
48397
48974
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
48398
48975
|
* @summary Access request status
|
|
@@ -48410,8 +48987,8 @@ export const AccessRequestsV2024ApiFactory = function (configuration?: Configura
|
|
|
48410
48987
|
* @param {*} [axiosOptions] Override http request option.
|
|
48411
48988
|
* @throws {RequiredError}
|
|
48412
48989
|
*/
|
|
48413
|
-
listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest
|
|
48414
|
-
return localVarFp.listAdministratorsAccessRequestStatus(requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(axios, basePath));
|
|
48990
|
+
listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusV2024>> {
|
|
48991
|
+
return localVarFp.listAdministratorsAccessRequestStatus(requestParameters.xSailPointExperimental, requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(axios, basePath));
|
|
48415
48992
|
},
|
|
48416
48993
|
/**
|
|
48417
48994
|
* Use this API to fetch account information for an identity against the items in an access request. Used to fetch accountSelection for the AccessRequest prior to submitting for async processing.
|
|
@@ -48421,7 +48998,7 @@ export const AccessRequestsV2024ApiFactory = function (configuration?: Configura
|
|
|
48421
48998
|
* @throws {RequiredError}
|
|
48422
48999
|
*/
|
|
48423
49000
|
loadAccountSelections(requestParameters: AccessRequestsV2024ApiLoadAccountSelectionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountsSelectionResponseV2024> {
|
|
48424
|
-
return localVarFp.loadAccountSelections(requestParameters.accountsSelectionRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
49001
|
+
return localVarFp.loadAccountSelections(requestParameters.accountsSelectionRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
48425
49002
|
},
|
|
48426
49003
|
/**
|
|
48427
49004
|
* This endpoint replaces the current access-request configuration.
|
|
@@ -48506,6 +49083,34 @@ export interface AccessRequestsV2024ApiCreateAccessRequestRequest {
|
|
|
48506
49083
|
readonly accessRequestV2024: AccessRequestV2024
|
|
48507
49084
|
}
|
|
48508
49085
|
|
|
49086
|
+
/**
|
|
49087
|
+
* Request parameters for getEntitlementDetailsForIdentity operation in AccessRequestsV2024Api.
|
|
49088
|
+
* @export
|
|
49089
|
+
* @interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest
|
|
49090
|
+
*/
|
|
49091
|
+
export interface AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest {
|
|
49092
|
+
/**
|
|
49093
|
+
* The identity ID.
|
|
49094
|
+
* @type {string}
|
|
49095
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
49096
|
+
*/
|
|
49097
|
+
readonly identityId: string
|
|
49098
|
+
|
|
49099
|
+
/**
|
|
49100
|
+
* The entitlement ID
|
|
49101
|
+
* @type {string}
|
|
49102
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
49103
|
+
*/
|
|
49104
|
+
readonly entitlementId: string
|
|
49105
|
+
|
|
49106
|
+
/**
|
|
49107
|
+
* Use this header to enable this experimental API.
|
|
49108
|
+
* @type {string}
|
|
49109
|
+
* @memberof AccessRequestsV2024ApiGetEntitlementDetailsForIdentity
|
|
49110
|
+
*/
|
|
49111
|
+
readonly xSailPointExperimental?: string
|
|
49112
|
+
}
|
|
49113
|
+
|
|
48509
49114
|
/**
|
|
48510
49115
|
* Request parameters for listAccessRequestStatus operation in AccessRequestsV2024Api.
|
|
48511
49116
|
* @export
|
|
@@ -48589,6 +49194,13 @@ export interface AccessRequestsV2024ApiListAccessRequestStatusRequest {
|
|
|
48589
49194
|
* @interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest
|
|
48590
49195
|
*/
|
|
48591
49196
|
export interface AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest {
|
|
49197
|
+
/**
|
|
49198
|
+
* Use this header to enable this experimental API.
|
|
49199
|
+
* @type {string}
|
|
49200
|
+
* @memberof AccessRequestsV2024ApiListAdministratorsAccessRequestStatus
|
|
49201
|
+
*/
|
|
49202
|
+
readonly xSailPointExperimental: string
|
|
49203
|
+
|
|
48592
49204
|
/**
|
|
48593
49205
|
* Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
48594
49206
|
* @type {string}
|
|
@@ -48672,6 +49284,13 @@ export interface AccessRequestsV2024ApiLoadAccountSelectionsRequest {
|
|
|
48672
49284
|
* @memberof AccessRequestsV2024ApiLoadAccountSelections
|
|
48673
49285
|
*/
|
|
48674
49286
|
readonly accountsSelectionRequestV2024: AccountsSelectionRequestV2024
|
|
49287
|
+
|
|
49288
|
+
/**
|
|
49289
|
+
* Use this header to enable this experimental API.
|
|
49290
|
+
* @type {string}
|
|
49291
|
+
* @memberof AccessRequestsV2024ApiLoadAccountSelections
|
|
49292
|
+
*/
|
|
49293
|
+
readonly xSailPointExperimental?: string
|
|
48675
49294
|
}
|
|
48676
49295
|
|
|
48677
49296
|
/**
|
|
@@ -48732,7 +49351,7 @@ export class AccessRequestsV2024Api extends BaseAPI {
|
|
|
48732
49351
|
}
|
|
48733
49352
|
|
|
48734
49353
|
/**
|
|
48735
|
-
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/
|
|
49354
|
+
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
|
|
48736
49355
|
* @summary Close access request
|
|
48737
49356
|
* @param {AccessRequestsV2024ApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
48738
49357
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48766,6 +49385,18 @@ export class AccessRequestsV2024Api extends BaseAPI {
|
|
|
48766
49385
|
return AccessRequestsV2024ApiFp(this.configuration).getAccessRequestConfig(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
48767
49386
|
}
|
|
48768
49387
|
|
|
49388
|
+
/**
|
|
49389
|
+
* Use this API to return the details for a entitlement on an identity including specific data relating to remove date and the ability to revoke the identity.
|
|
49390
|
+
* @summary Identity entitlement details
|
|
49391
|
+
* @param {AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest} requestParameters Request parameters.
|
|
49392
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
49393
|
+
* @throws {RequiredError}
|
|
49394
|
+
* @memberof AccessRequestsV2024Api
|
|
49395
|
+
*/
|
|
49396
|
+
public getEntitlementDetailsForIdentity(requestParameters: AccessRequestsV2024ApiGetEntitlementDetailsForIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
49397
|
+
return AccessRequestsV2024ApiFp(this.configuration).getEntitlementDetailsForIdentity(requestParameters.identityId, requestParameters.entitlementId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
49398
|
+
}
|
|
49399
|
+
|
|
48769
49400
|
/**
|
|
48770
49401
|
* Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any user with any user level can get the status of their own access requests. A user with ORG_ADMIN is required to call this API to get a list of statuses for other users.
|
|
48771
49402
|
* @summary Access request status
|
|
@@ -48786,8 +49417,8 @@ export class AccessRequestsV2024Api extends BaseAPI {
|
|
|
48786
49417
|
* @throws {RequiredError}
|
|
48787
49418
|
* @memberof AccessRequestsV2024Api
|
|
48788
49419
|
*/
|
|
48789
|
-
public listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest
|
|
48790
|
-
return AccessRequestsV2024ApiFp(this.configuration).listAdministratorsAccessRequestStatus(requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
49420
|
+
public listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsV2024ApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
49421
|
+
return AccessRequestsV2024ApiFp(this.configuration).listAdministratorsAccessRequestStatus(requestParameters.xSailPointExperimental, requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
48791
49422
|
}
|
|
48792
49423
|
|
|
48793
49424
|
/**
|
|
@@ -48799,7 +49430,7 @@ export class AccessRequestsV2024Api extends BaseAPI {
|
|
|
48799
49430
|
* @memberof AccessRequestsV2024Api
|
|
48800
49431
|
*/
|
|
48801
49432
|
public loadAccountSelections(requestParameters: AccessRequestsV2024ApiLoadAccountSelectionsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
48802
|
-
return AccessRequestsV2024ApiFp(this.configuration).loadAccountSelections(requestParameters.accountsSelectionRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
49433
|
+
return AccessRequestsV2024ApiFp(this.configuration).loadAccountSelections(requestParameters.accountsSelectionRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
48803
49434
|
}
|
|
48804
49435
|
|
|
48805
49436
|
/**
|
|
@@ -59972,7 +60603,7 @@ export const ConfigurationHubV2024ApiAxiosParamCreator = function (configuration
|
|
|
59972
60603
|
};
|
|
59973
60604
|
},
|
|
59974
60605
|
/**
|
|
59975
|
-
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
60606
|
+
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
|
|
59976
60607
|
* @summary Upload a configuration
|
|
59977
60608
|
* @param {File} data JSON file containing the objects to be imported.
|
|
59978
60609
|
* @param {string} name Name that will be assigned to the uploaded configuration file.
|
|
@@ -60733,7 +61364,7 @@ export const ConfigurationHubV2024ApiFp = function(configuration?: Configuration
|
|
|
60733
61364
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
60734
61365
|
},
|
|
60735
61366
|
/**
|
|
60736
|
-
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
61367
|
+
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
|
|
60737
61368
|
* @summary Upload a configuration
|
|
60738
61369
|
* @param {File} data JSON file containing the objects to be imported.
|
|
60739
61370
|
* @param {string} name Name that will be assigned to the uploaded configuration file.
|
|
@@ -60993,7 +61624,7 @@ export const ConfigurationHubV2024ApiFactory = function (configuration?: Configu
|
|
|
60993
61624
|
return localVarFp.createScheduledAction(requestParameters.scheduledActionPayloadV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
60994
61625
|
},
|
|
60995
61626
|
/**
|
|
60996
|
-
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
61627
|
+
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
|
|
60997
61628
|
* @summary Upload a configuration
|
|
60998
61629
|
* @param {ConfigurationHubV2024ApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
|
|
60999
61630
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61503,7 +62134,7 @@ export class ConfigurationHubV2024Api extends BaseAPI {
|
|
|
61503
62134
|
}
|
|
61504
62135
|
|
|
61505
62136
|
/**
|
|
61506
|
-
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
62137
|
+
* This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
|
|
61507
62138
|
* @summary Upload a configuration
|
|
61508
62139
|
* @param {ConfigurationHubV2024ApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
|
|
61509
62140
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -69436,7 +70067,7 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69436
70067
|
};
|
|
69437
70068
|
},
|
|
69438
70069
|
/**
|
|
69439
|
-
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**`
|
|
70070
|
+
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
|
|
69440
70071
|
* @summary Bulk update an entitlement list
|
|
69441
70072
|
* @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
|
|
69442
70073
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -69659,7 +70290,7 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69659
70290
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
69660
70291
|
},
|
|
69661
70292
|
/**
|
|
69662
|
-
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**`
|
|
70293
|
+
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
|
|
69663
70294
|
* @summary Bulk update an entitlement list
|
|
69664
70295
|
* @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
|
|
69665
70296
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -69793,7 +70424,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69793
70424
|
return localVarFp.resetSourceEntitlements(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
69794
70425
|
},
|
|
69795
70426
|
/**
|
|
69796
|
-
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**`
|
|
70427
|
+
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
|
|
69797
70428
|
* @summary Bulk update an entitlement list
|
|
69798
70429
|
* @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
69799
70430
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -70289,7 +70920,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70289
70920
|
}
|
|
70290
70921
|
|
|
70291
70922
|
/**
|
|
70292
|
-
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**`
|
|
70923
|
+
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
|
|
70293
70924
|
* @summary Bulk update an entitlement list
|
|
70294
70925
|
* @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
70295
70926
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -71509,7 +72140,7 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
|
|
|
71509
72140
|
* This API returns list of Governance Groups
|
|
71510
72141
|
* @summary List governance groups
|
|
71511
72142
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
71512
|
-
* @param {number} [limit]
|
|
72143
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
71513
72144
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
71514
72145
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, sw, in* **memberships.identityId**: *eq, in*
|
|
71515
72146
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified, id, description**
|
|
@@ -71811,7 +72442,7 @@ export const GovernanceGroupsV2024ApiFp = function(configuration?: Configuration
|
|
|
71811
72442
|
* This API returns list of Governance Groups
|
|
71812
72443
|
* @summary List governance groups
|
|
71813
72444
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
71814
|
-
* @param {number} [limit]
|
|
72445
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
71815
72446
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
71816
72447
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, sw, in* **memberships.identityId**: *eq, in*
|
|
71817
72448
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified, id, description**
|
|
@@ -72192,7 +72823,7 @@ export interface GovernanceGroupsV2024ApiListWorkgroupsRequest {
|
|
|
72192
72823
|
readonly offset?: number
|
|
72193
72824
|
|
|
72194
72825
|
/**
|
|
72195
|
-
*
|
|
72826
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
72196
72827
|
* @type {number}
|
|
72197
72828
|
* @memberof GovernanceGroupsV2024ApiListWorkgroups
|
|
72198
72829
|
*/
|
|
@@ -80229,6 +80860,63 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80229
80860
|
|
|
80230
80861
|
|
|
80231
80862
|
|
|
80863
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80864
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80865
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
80866
|
+
|
|
80867
|
+
return {
|
|
80868
|
+
url: toPathString(localVarUrlObj),
|
|
80869
|
+
axiosOptions: localVarRequestOptions,
|
|
80870
|
+
};
|
|
80871
|
+
},
|
|
80872
|
+
/**
|
|
80873
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
80874
|
+
* @summary List of entitlements by identity.
|
|
80875
|
+
* @param {string} id Identity Id
|
|
80876
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
80877
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
80878
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
80879
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
80880
|
+
* @throws {RequiredError}
|
|
80881
|
+
*/
|
|
80882
|
+
listEntitlementsByIdentity: async (id: string, limit?: number, offset?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80883
|
+
// verify required parameter 'id' is not null or undefined
|
|
80884
|
+
assertParamExists('listEntitlementsByIdentity', 'id', id)
|
|
80885
|
+
const localVarPath = `/entitlements/identities/{id}/entitlements`
|
|
80886
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
80887
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
80888
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
80889
|
+
let baseOptions;
|
|
80890
|
+
if (configuration) {
|
|
80891
|
+
baseOptions = configuration.baseOptions;
|
|
80892
|
+
}
|
|
80893
|
+
|
|
80894
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
80895
|
+
const localVarHeaderParameter = {} as any;
|
|
80896
|
+
const localVarQueryParameter = {} as any;
|
|
80897
|
+
|
|
80898
|
+
// authentication userAuth required
|
|
80899
|
+
// oauth required
|
|
80900
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
80901
|
+
|
|
80902
|
+
// authentication userAuth required
|
|
80903
|
+
// oauth required
|
|
80904
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
80905
|
+
|
|
80906
|
+
if (limit !== undefined) {
|
|
80907
|
+
localVarQueryParameter['limit'] = limit;
|
|
80908
|
+
}
|
|
80909
|
+
|
|
80910
|
+
if (offset !== undefined) {
|
|
80911
|
+
localVarQueryParameter['offset'] = offset;
|
|
80912
|
+
}
|
|
80913
|
+
|
|
80914
|
+
if (count !== undefined) {
|
|
80915
|
+
localVarQueryParameter['count'] = count;
|
|
80916
|
+
}
|
|
80917
|
+
|
|
80918
|
+
|
|
80919
|
+
|
|
80232
80920
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80233
80921
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80234
80922
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80408,12 +81096,17 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80408
81096
|
* This API submits a task for inviting given identities via email to complete registration. The invitation email will include the link. After selecting the link an identity will be able to set up password and log in into the system. Invitations expire after 7 days. By default invitations send to the work identity email. It can be changed in Admin > Identities > Identity Profiles by selecting corresponding profile and editing Invitation Options. This task will send an invitation email only for unregistered identities. The executed task status can be checked by Task Management > [Get task status by ID](https://developer.sailpoint.com/docs/api/beta/get-task-status).
|
|
80409
81097
|
* @summary Invite identities to register
|
|
80410
81098
|
* @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
|
|
81099
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80411
81100
|
* @param {*} [axiosOptions] Override http request option.
|
|
80412
81101
|
* @throws {RequiredError}
|
|
80413
81102
|
*/
|
|
80414
|
-
startIdentitiesInvite: async (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81103
|
+
startIdentitiesInvite: async (inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
80415
81104
|
// verify required parameter 'inviteIdentitiesRequestV2024' is not null or undefined
|
|
80416
81105
|
assertParamExists('startIdentitiesInvite', 'inviteIdentitiesRequestV2024', inviteIdentitiesRequestV2024)
|
|
81106
|
+
if (xSailPointExperimental === undefined) {
|
|
81107
|
+
xSailPointExperimental = 'true';
|
|
81108
|
+
}
|
|
81109
|
+
|
|
80417
81110
|
const localVarPath = `/identities/invite`;
|
|
80418
81111
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
80419
81112
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -80428,16 +81121,19 @@ export const IdentitiesV2024ApiAxiosParamCreator = function (configuration?: Con
|
|
|
80428
81121
|
|
|
80429
81122
|
// authentication userAuth required
|
|
80430
81123
|
// oauth required
|
|
80431
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
81124
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
80432
81125
|
|
|
80433
81126
|
// authentication userAuth required
|
|
80434
81127
|
// oauth required
|
|
80435
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
81128
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
80436
81129
|
|
|
80437
81130
|
|
|
80438
81131
|
|
|
80439
81132
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
80440
81133
|
|
|
81134
|
+
if (xSailPointExperimental != null) {
|
|
81135
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
81136
|
+
}
|
|
80441
81137
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
80442
81138
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80443
81139
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -80632,6 +81328,22 @@ export const IdentitiesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
80632
81328
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2024Api.getRoleAssignments']?.[localVarOperationServerIndex]?.url;
|
|
80633
81329
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
80634
81330
|
},
|
|
81331
|
+
/**
|
|
81332
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
81333
|
+
* @summary List of entitlements by identity.
|
|
81334
|
+
* @param {string} id Identity Id
|
|
81335
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
81336
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
81337
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
81338
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
81339
|
+
* @throws {RequiredError}
|
|
81340
|
+
*/
|
|
81341
|
+
async listEntitlementsByIdentity(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityEntitlementsV2024>>> {
|
|
81342
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlementsByIdentity(id, limit, offset, count, axiosOptions);
|
|
81343
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
81344
|
+
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2024Api.listEntitlementsByIdentity']?.[localVarOperationServerIndex]?.url;
|
|
81345
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
81346
|
+
},
|
|
80635
81347
|
/**
|
|
80636
81348
|
* This API returns a list of identities.
|
|
80637
81349
|
* @summary List identities
|
|
@@ -80682,11 +81394,12 @@ export const IdentitiesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
80682
81394
|
* This API submits a task for inviting given identities via email to complete registration. The invitation email will include the link. After selecting the link an identity will be able to set up password and log in into the system. Invitations expire after 7 days. By default invitations send to the work identity email. It can be changed in Admin > Identities > Identity Profiles by selecting corresponding profile and editing Invitation Options. This task will send an invitation email only for unregistered identities. The executed task status can be checked by Task Management > [Get task status by ID](https://developer.sailpoint.com/docs/api/beta/get-task-status).
|
|
80683
81395
|
* @summary Invite identities to register
|
|
80684
81396
|
* @param {InviteIdentitiesRequestV2024} inviteIdentitiesRequestV2024
|
|
81397
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
80685
81398
|
* @param {*} [axiosOptions] Override http request option.
|
|
80686
81399
|
* @throws {RequiredError}
|
|
80687
81400
|
*/
|
|
80688
|
-
async startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>> {
|
|
80689
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.startIdentitiesInvite(inviteIdentitiesRequestV2024, axiosOptions);
|
|
81401
|
+
async startIdentitiesInvite(inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>> {
|
|
81402
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.startIdentitiesInvite(inviteIdentitiesRequestV2024, xSailPointExperimental, axiosOptions);
|
|
80690
81403
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
80691
81404
|
const localVarOperationServerBasePath = operationServerMap['IdentitiesV2024Api.startIdentitiesInvite']?.[localVarOperationServerIndex]?.url;
|
|
80692
81405
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -80779,6 +81492,16 @@ export const IdentitiesV2024ApiFactory = function (configuration?: Configuration
|
|
|
80779
81492
|
getRoleAssignments(requestParameters: IdentitiesV2024ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2024>> {
|
|
80780
81493
|
return localVarFp.getRoleAssignments(requestParameters.identityId, requestParameters.roleId, requestParameters.roleName, axiosOptions).then((request) => request(axios, basePath));
|
|
80781
81494
|
},
|
|
81495
|
+
/**
|
|
81496
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
81497
|
+
* @summary List of entitlements by identity.
|
|
81498
|
+
* @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
|
|
81499
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
81500
|
+
* @throws {RequiredError}
|
|
81501
|
+
*/
|
|
81502
|
+
listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityEntitlementsV2024>> {
|
|
81503
|
+
return localVarFp.listEntitlementsByIdentity(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
81504
|
+
},
|
|
80782
81505
|
/**
|
|
80783
81506
|
* This API returns a list of identities.
|
|
80784
81507
|
* @summary List identities
|
|
@@ -80817,7 +81540,7 @@ export const IdentitiesV2024ApiFactory = function (configuration?: Configuration
|
|
|
80817
81540
|
* @throws {RequiredError}
|
|
80818
81541
|
*/
|
|
80819
81542
|
startIdentitiesInvite(requestParameters: IdentitiesV2024ApiStartIdentitiesInviteRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaskStatusV2024> {
|
|
80820
|
-
return localVarFp.startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
81543
|
+
return localVarFp.startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
80821
81544
|
},
|
|
80822
81545
|
/**
|
|
80823
81546
|
* This operation should not be used to schedule your own identity processing or to perform system wide identity refreshes. The system will use a combination of [event-based processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#event-based-processing) and [scheduled processing](https://documentation.sailpoint.com/saas/help/setup/identity_processing.html?h=process#scheduled-processing) that runs every day at 8:00 AM and 8:00 PM in the tenant\'s timezone to keep your identities synchronized. This endpoint will perform the following tasks: 1. Calculate identity attributes, including applying or running any rules or transforms (e.g. calculate Lifecycle State at a point-in-time it\'s expected to change). 2. Evaluate role assignments, leading to assignment of new roles and removal of existing roles. 3. Enforce provisioning for any assigned accesses that haven\'t been fulfilled (e.g. failure due to source health). 4. Recalculate manager relationships. 5. Potentially clean-up identity processing errors, assuming the error has been resolved.
|
|
@@ -80933,6 +81656,41 @@ export interface IdentitiesV2024ApiGetRoleAssignmentsRequest {
|
|
|
80933
81656
|
readonly roleName?: string
|
|
80934
81657
|
}
|
|
80935
81658
|
|
|
81659
|
+
/**
|
|
81660
|
+
* Request parameters for listEntitlementsByIdentity operation in IdentitiesV2024Api.
|
|
81661
|
+
* @export
|
|
81662
|
+
* @interface IdentitiesV2024ApiListEntitlementsByIdentityRequest
|
|
81663
|
+
*/
|
|
81664
|
+
export interface IdentitiesV2024ApiListEntitlementsByIdentityRequest {
|
|
81665
|
+
/**
|
|
81666
|
+
* Identity Id
|
|
81667
|
+
* @type {string}
|
|
81668
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
81669
|
+
*/
|
|
81670
|
+
readonly id: string
|
|
81671
|
+
|
|
81672
|
+
/**
|
|
81673
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
81674
|
+
* @type {number}
|
|
81675
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
81676
|
+
*/
|
|
81677
|
+
readonly limit?: number
|
|
81678
|
+
|
|
81679
|
+
/**
|
|
81680
|
+
* Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
81681
|
+
* @type {number}
|
|
81682
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
81683
|
+
*/
|
|
81684
|
+
readonly offset?: number
|
|
81685
|
+
|
|
81686
|
+
/**
|
|
81687
|
+
* If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
81688
|
+
* @type {boolean}
|
|
81689
|
+
* @memberof IdentitiesV2024ApiListEntitlementsByIdentity
|
|
81690
|
+
*/
|
|
81691
|
+
readonly count?: boolean
|
|
81692
|
+
}
|
|
81693
|
+
|
|
80936
81694
|
/**
|
|
80937
81695
|
* Request parameters for listIdentities operation in IdentitiesV2024Api.
|
|
80938
81696
|
* @export
|
|
@@ -81036,6 +81794,13 @@ export interface IdentitiesV2024ApiStartIdentitiesInviteRequest {
|
|
|
81036
81794
|
* @memberof IdentitiesV2024ApiStartIdentitiesInvite
|
|
81037
81795
|
*/
|
|
81038
81796
|
readonly inviteIdentitiesRequestV2024: InviteIdentitiesRequestV2024
|
|
81797
|
+
|
|
81798
|
+
/**
|
|
81799
|
+
* Use this header to enable this experimental API.
|
|
81800
|
+
* @type {string}
|
|
81801
|
+
* @memberof IdentitiesV2024ApiStartIdentitiesInvite
|
|
81802
|
+
*/
|
|
81803
|
+
readonly xSailPointExperimental?: string
|
|
81039
81804
|
}
|
|
81040
81805
|
|
|
81041
81806
|
/**
|
|
@@ -81147,6 +81912,18 @@ export class IdentitiesV2024Api extends BaseAPI {
|
|
|
81147
81912
|
return IdentitiesV2024ApiFp(this.configuration).getRoleAssignments(requestParameters.identityId, requestParameters.roleId, requestParameters.roleName, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81148
81913
|
}
|
|
81149
81914
|
|
|
81915
|
+
/**
|
|
81916
|
+
* The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
|
|
81917
|
+
* @summary List of entitlements by identity.
|
|
81918
|
+
* @param {IdentitiesV2024ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
|
|
81919
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
81920
|
+
* @throws {RequiredError}
|
|
81921
|
+
* @memberof IdentitiesV2024Api
|
|
81922
|
+
*/
|
|
81923
|
+
public listEntitlementsByIdentity(requestParameters: IdentitiesV2024ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
81924
|
+
return IdentitiesV2024ApiFp(this.configuration).listEntitlementsByIdentity(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81925
|
+
}
|
|
81926
|
+
|
|
81150
81927
|
/**
|
|
81151
81928
|
* This API returns a list of identities.
|
|
81152
81929
|
* @summary List identities
|
|
@@ -81192,7 +81969,7 @@ export class IdentitiesV2024Api extends BaseAPI {
|
|
|
81192
81969
|
* @memberof IdentitiesV2024Api
|
|
81193
81970
|
*/
|
|
81194
81971
|
public startIdentitiesInvite(requestParameters: IdentitiesV2024ApiStartIdentitiesInviteRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
81195
|
-
return IdentitiesV2024ApiFp(this.configuration).startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81972
|
+
return IdentitiesV2024ApiFp(this.configuration).startIdentitiesInvite(requestParameters.inviteIdentitiesRequestV2024, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
81196
81973
|
}
|
|
81197
81974
|
|
|
81198
81975
|
/**
|
|
@@ -83861,17 +84638,12 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
83861
84638
|
* This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
|
|
83862
84639
|
* @summary Generate identity profile preview
|
|
83863
84640
|
* @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
|
|
83864
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83865
84641
|
* @param {*} [axiosOptions] Override http request option.
|
|
83866
84642
|
* @throws {RequiredError}
|
|
83867
84643
|
*/
|
|
83868
|
-
generateIdentityPreview: async (identityPreviewRequestV2024: IdentityPreviewRequestV2024,
|
|
84644
|
+
generateIdentityPreview: async (identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
83869
84645
|
// verify required parameter 'identityPreviewRequestV2024' is not null or undefined
|
|
83870
84646
|
assertParamExists('generateIdentityPreview', 'identityPreviewRequestV2024', identityPreviewRequestV2024)
|
|
83871
|
-
if (xSailPointExperimental === undefined) {
|
|
83872
|
-
xSailPointExperimental = 'true';
|
|
83873
|
-
}
|
|
83874
|
-
|
|
83875
84647
|
const localVarPath = `/identity-profiles/identity-preview`;
|
|
83876
84648
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
83877
84649
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -83896,9 +84668,6 @@ export const IdentityProfilesV2024ApiAxiosParamCreator = function (configuration
|
|
|
83896
84668
|
|
|
83897
84669
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
83898
84670
|
|
|
83899
|
-
if (xSailPointExperimental != null) {
|
|
83900
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
83901
|
-
}
|
|
83902
84671
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
83903
84672
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
83904
84673
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -84268,12 +85037,11 @@ export const IdentityProfilesV2024ApiFp = function(configuration?: Configuration
|
|
|
84268
85037
|
* This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy\'\'s attribute config is applied.
|
|
84269
85038
|
* @summary Generate identity profile preview
|
|
84270
85039
|
* @param {IdentityPreviewRequestV2024} identityPreviewRequestV2024 Identity Preview request body.
|
|
84271
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
84272
85040
|
* @param {*} [axiosOptions] Override http request option.
|
|
84273
85041
|
* @throws {RequiredError}
|
|
84274
85042
|
*/
|
|
84275
|
-
async generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024,
|
|
84276
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.generateIdentityPreview(identityPreviewRequestV2024,
|
|
85043
|
+
async generateIdentityPreview(identityPreviewRequestV2024: IdentityPreviewRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityPreviewResponseV2024>> {
|
|
85044
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.generateIdentityPreview(identityPreviewRequestV2024, axiosOptions);
|
|
84277
85045
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
84278
85046
|
const localVarOperationServerBasePath = operationServerMap['IdentityProfilesV2024Api.generateIdentityPreview']?.[localVarOperationServerIndex]?.url;
|
|
84279
85047
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -84419,7 +85187,7 @@ export const IdentityProfilesV2024ApiFactory = function (configuration?: Configu
|
|
|
84419
85187
|
* @throws {RequiredError}
|
|
84420
85188
|
*/
|
|
84421
85189
|
generateIdentityPreview(requestParameters: IdentityProfilesV2024ApiGenerateIdentityPreviewRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityPreviewResponseV2024> {
|
|
84422
|
-
return localVarFp.generateIdentityPreview(requestParameters.identityPreviewRequestV2024,
|
|
85190
|
+
return localVarFp.generateIdentityPreview(requestParameters.identityPreviewRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
84423
85191
|
},
|
|
84424
85192
|
/**
|
|
84425
85193
|
* This returns the default identity attribute config.
|
|
@@ -84580,13 +85348,6 @@ export interface IdentityProfilesV2024ApiGenerateIdentityPreviewRequest {
|
|
|
84580
85348
|
* @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
|
|
84581
85349
|
*/
|
|
84582
85350
|
readonly identityPreviewRequestV2024: IdentityPreviewRequestV2024
|
|
84583
|
-
|
|
84584
|
-
/**
|
|
84585
|
-
* Use this header to enable this experimental API.
|
|
84586
|
-
* @type {string}
|
|
84587
|
-
* @memberof IdentityProfilesV2024ApiGenerateIdentityPreview
|
|
84588
|
-
*/
|
|
84589
|
-
readonly xSailPointExperimental?: string
|
|
84590
85351
|
}
|
|
84591
85352
|
|
|
84592
85353
|
/**
|
|
@@ -84772,7 +85533,7 @@ export class IdentityProfilesV2024Api extends BaseAPI {
|
|
|
84772
85533
|
* @memberof IdentityProfilesV2024Api
|
|
84773
85534
|
*/
|
|
84774
85535
|
public generateIdentityPreview(requestParameters: IdentityProfilesV2024ApiGenerateIdentityPreviewRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
84775
|
-
return IdentityProfilesV2024ApiFp(this.configuration).generateIdentityPreview(requestParameters.identityPreviewRequestV2024,
|
|
85536
|
+
return IdentityProfilesV2024ApiFp(this.configuration).generateIdentityPreview(requestParameters.identityPreviewRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
84776
85537
|
}
|
|
84777
85538
|
|
|
84778
85539
|
/**
|
|
@@ -84851,26 +85612,22 @@ export class IdentityProfilesV2024Api extends BaseAPI {
|
|
|
84851
85612
|
|
|
84852
85613
|
|
|
84853
85614
|
/**
|
|
84854
|
-
*
|
|
85615
|
+
* LaunchersV2024Api - axios parameter creator
|
|
84855
85616
|
* @export
|
|
84856
85617
|
*/
|
|
84857
|
-
export const
|
|
85618
|
+
export const LaunchersV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
84858
85619
|
return {
|
|
84859
85620
|
/**
|
|
84860
|
-
*
|
|
84861
|
-
* @summary Create
|
|
84862
|
-
* @param {
|
|
84863
|
-
* @param {LifecycleStateV2024} lifecycleStateV2024 Lifecycle state to be created.
|
|
85621
|
+
* Create a Launcher with given information
|
|
85622
|
+
* @summary Create launcher
|
|
85623
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
|
|
84864
85624
|
* @param {*} [axiosOptions] Override http request option.
|
|
84865
85625
|
* @throws {RequiredError}
|
|
84866
85626
|
*/
|
|
84867
|
-
|
|
84868
|
-
// verify required parameter '
|
|
84869
|
-
assertParamExists('
|
|
84870
|
-
|
|
84871
|
-
assertParamExists('createLifecycleState', 'lifecycleStateV2024', lifecycleStateV2024)
|
|
84872
|
-
const localVarPath = `/identity-profiles/{identity-profile-id}/lifecycle-states`
|
|
84873
|
-
.replace(`{${"identity-profile-id"}}`, encodeURIComponent(String(identityProfileId)));
|
|
85627
|
+
createLauncher: async (launcherRequestV2024: LauncherRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
85628
|
+
// verify required parameter 'launcherRequestV2024' is not null or undefined
|
|
85629
|
+
assertParamExists('createLauncher', 'launcherRequestV2024', launcherRequestV2024)
|
|
85630
|
+
const localVarPath = `/launchers`;
|
|
84874
85631
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
84875
85632
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
84876
85633
|
let baseOptions;
|
|
@@ -84890,10 +85647,6 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
84890
85647
|
// oauth required
|
|
84891
85648
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
84892
85649
|
|
|
84893
|
-
// authentication applicationAuth required
|
|
84894
|
-
// oauth required
|
|
84895
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
84896
|
-
|
|
84897
85650
|
|
|
84898
85651
|
|
|
84899
85652
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -84901,7 +85654,7 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
84901
85654
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
84902
85655
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
84903
85656
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
84904
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
85657
|
+
localVarRequestOptions.data = serializeDataIfNeeded(launcherRequestV2024, localVarRequestOptions, configuration)
|
|
84905
85658
|
|
|
84906
85659
|
return {
|
|
84907
85660
|
url: toPathString(localVarUrlObj),
|
|
@@ -84909,21 +85662,17 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
84909
85662
|
};
|
|
84910
85663
|
},
|
|
84911
85664
|
/**
|
|
84912
|
-
*
|
|
84913
|
-
* @summary Delete
|
|
84914
|
-
* @param {string}
|
|
84915
|
-
* @param {string} lifecycleStateId Lifecycle state ID.
|
|
85665
|
+
* Delete the given Launcher ID
|
|
85666
|
+
* @summary Delete launcher
|
|
85667
|
+
* @param {string} launcherID ID of the Launcher to be deleted
|
|
84916
85668
|
* @param {*} [axiosOptions] Override http request option.
|
|
84917
85669
|
* @throws {RequiredError}
|
|
84918
85670
|
*/
|
|
84919
|
-
|
|
84920
|
-
// verify required parameter '
|
|
84921
|
-
assertParamExists('
|
|
84922
|
-
|
|
84923
|
-
|
|
84924
|
-
const localVarPath = `/identity-profiles/{identity-profile-id}/lifecycle-states/{lifecycle-state-id}`
|
|
84925
|
-
.replace(`{${"identity-profile-id"}}`, encodeURIComponent(String(identityProfileId)))
|
|
84926
|
-
.replace(`{${"lifecycle-state-id"}}`, encodeURIComponent(String(lifecycleStateId)));
|
|
85671
|
+
deleteLauncher: async (launcherID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
85672
|
+
// verify required parameter 'launcherID' is not null or undefined
|
|
85673
|
+
assertParamExists('deleteLauncher', 'launcherID', launcherID)
|
|
85674
|
+
const localVarPath = `/launchers/{launcherID}`
|
|
85675
|
+
.replace(`{${"launcherID"}}`, encodeURIComponent(String(launcherID)));
|
|
84927
85676
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
84928
85677
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
84929
85678
|
let baseOptions;
|
|
@@ -84943,10 +85692,6 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
84943
85692
|
// oauth required
|
|
84944
85693
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
84945
85694
|
|
|
84946
|
-
// authentication applicationAuth required
|
|
84947
|
-
// oauth required
|
|
84948
|
-
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
84949
|
-
|
|
84950
85695
|
|
|
84951
85696
|
|
|
84952
85697
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -84959,21 +85704,17 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
84959
85704
|
};
|
|
84960
85705
|
},
|
|
84961
85706
|
/**
|
|
84962
|
-
*
|
|
84963
|
-
* @summary Get
|
|
84964
|
-
* @param {string}
|
|
84965
|
-
* @param {string} lifecycleStateId Lifecycle state ID.
|
|
85707
|
+
* Get details for the given Launcher ID
|
|
85708
|
+
* @summary Get launcher by id
|
|
85709
|
+
* @param {string} launcherID ID of the Launcher to be retrieved
|
|
84966
85710
|
* @param {*} [axiosOptions] Override http request option.
|
|
84967
85711
|
* @throws {RequiredError}
|
|
84968
85712
|
*/
|
|
84969
|
-
|
|
84970
|
-
// verify required parameter '
|
|
84971
|
-
assertParamExists('
|
|
84972
|
-
|
|
84973
|
-
|
|
84974
|
-
const localVarPath = `/identity-profiles/{identity-profile-id}/lifecycle-states/{lifecycle-state-id}`
|
|
84975
|
-
.replace(`{${"identity-profile-id"}}`, encodeURIComponent(String(identityProfileId)))
|
|
84976
|
-
.replace(`{${"lifecycle-state-id"}}`, encodeURIComponent(String(lifecycleStateId)));
|
|
85713
|
+
getLauncher: async (launcherID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
85714
|
+
// verify required parameter 'launcherID' is not null or undefined
|
|
85715
|
+
assertParamExists('getLauncher', 'launcherID', launcherID)
|
|
85716
|
+
const localVarPath = `/launchers/{launcherID}`
|
|
85717
|
+
.replace(`{${"launcherID"}}`, encodeURIComponent(String(launcherID)));
|
|
84977
85718
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
84978
85719
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
84979
85720
|
let baseOptions;
|
|
@@ -85005,21 +85746,16 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
85005
85746
|
};
|
|
85006
85747
|
},
|
|
85007
85748
|
/**
|
|
85008
|
-
*
|
|
85009
|
-
* @summary
|
|
85010
|
-
* @param {string}
|
|
85011
|
-
* @param {
|
|
85012
|
-
* @param {number} [
|
|
85013
|
-
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
85014
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
85749
|
+
* Return a list of Launchers for the authenticated tenant
|
|
85750
|
+
* @summary List all launchers for tenant
|
|
85751
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
85752
|
+
* @param {string} [next] Pagination marker
|
|
85753
|
+
* @param {number} [limit] Number of Launchers to return
|
|
85015
85754
|
* @param {*} [axiosOptions] Override http request option.
|
|
85016
85755
|
* @throws {RequiredError}
|
|
85017
85756
|
*/
|
|
85018
|
-
|
|
85019
|
-
|
|
85020
|
-
assertParamExists('getLifecycleStates', 'identityProfileId', identityProfileId)
|
|
85021
|
-
const localVarPath = `/identity-profiles/{identity-profile-id}/lifecycle-states`
|
|
85022
|
-
.replace(`{${"identity-profile-id"}}`, encodeURIComponent(String(identityProfileId)));
|
|
85757
|
+
getLaunchers: async (filters?: string, next?: string, limit?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
85758
|
+
const localVarPath = `/launchers`;
|
|
85023
85759
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
85024
85760
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
85025
85761
|
let baseOptions;
|
|
@@ -85039,31 +85775,71 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
85039
85775
|
// oauth required
|
|
85040
85776
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85041
85777
|
|
|
85042
|
-
|
|
85043
|
-
|
|
85044
|
-
|
|
85778
|
+
if (filters !== undefined) {
|
|
85779
|
+
localVarQueryParameter['filters'] = filters;
|
|
85780
|
+
}
|
|
85781
|
+
|
|
85782
|
+
if (next !== undefined) {
|
|
85783
|
+
localVarQueryParameter['next'] = next;
|
|
85784
|
+
}
|
|
85045
85785
|
|
|
85046
85786
|
if (limit !== undefined) {
|
|
85047
85787
|
localVarQueryParameter['limit'] = limit;
|
|
85048
85788
|
}
|
|
85049
85789
|
|
|
85050
|
-
if (offset !== undefined) {
|
|
85051
|
-
localVarQueryParameter['offset'] = offset;
|
|
85052
|
-
}
|
|
85053
85790
|
|
|
85054
|
-
|
|
85055
|
-
|
|
85056
|
-
}
|
|
85791
|
+
|
|
85792
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
85793
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
85794
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
85057
85795
|
|
|
85058
|
-
|
|
85059
|
-
|
|
85796
|
+
return {
|
|
85797
|
+
url: toPathString(localVarUrlObj),
|
|
85798
|
+
axiosOptions: localVarRequestOptions,
|
|
85799
|
+
};
|
|
85800
|
+
},
|
|
85801
|
+
/**
|
|
85802
|
+
* Replace the given Launcher ID with given payload
|
|
85803
|
+
* @summary Replace launcher
|
|
85804
|
+
* @param {string} launcherID ID of the Launcher to be replaced
|
|
85805
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
|
|
85806
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85807
|
+
* @throws {RequiredError}
|
|
85808
|
+
*/
|
|
85809
|
+
putLauncher: async (launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
85810
|
+
// verify required parameter 'launcherID' is not null or undefined
|
|
85811
|
+
assertParamExists('putLauncher', 'launcherID', launcherID)
|
|
85812
|
+
// verify required parameter 'launcherRequestV2024' is not null or undefined
|
|
85813
|
+
assertParamExists('putLauncher', 'launcherRequestV2024', launcherRequestV2024)
|
|
85814
|
+
const localVarPath = `/launchers/{launcherID}`
|
|
85815
|
+
.replace(`{${"launcherID"}}`, encodeURIComponent(String(launcherID)));
|
|
85816
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
85817
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
85818
|
+
let baseOptions;
|
|
85819
|
+
if (configuration) {
|
|
85820
|
+
baseOptions = configuration.baseOptions;
|
|
85060
85821
|
}
|
|
85061
85822
|
|
|
85823
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
|
|
85824
|
+
const localVarHeaderParameter = {} as any;
|
|
85825
|
+
const localVarQueryParameter = {} as any;
|
|
85826
|
+
|
|
85827
|
+
// authentication userAuth required
|
|
85828
|
+
// oauth required
|
|
85829
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85830
|
+
|
|
85831
|
+
// authentication userAuth required
|
|
85832
|
+
// oauth required
|
|
85833
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85834
|
+
|
|
85062
85835
|
|
|
85063
85836
|
|
|
85837
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
85838
|
+
|
|
85064
85839
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
85065
85840
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
85066
85841
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
85842
|
+
localVarRequestOptions.data = serializeDataIfNeeded(launcherRequestV2024, localVarRequestOptions, configuration)
|
|
85067
85843
|
|
|
85068
85844
|
return {
|
|
85069
85845
|
url: toPathString(localVarUrlObj),
|
|
@@ -85071,20 +85847,633 @@ export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?
|
|
|
85071
85847
|
};
|
|
85072
85848
|
},
|
|
85073
85849
|
/**
|
|
85074
|
-
*
|
|
85075
|
-
* @summary
|
|
85076
|
-
* @param {string}
|
|
85077
|
-
* @param {SetLifecycleStateRequestV2024} setLifecycleStateRequestV2024
|
|
85850
|
+
* Launch the given Launcher ID
|
|
85851
|
+
* @summary Launch a launcher
|
|
85852
|
+
* @param {string} launcherID ID of the Launcher to be launched
|
|
85078
85853
|
* @param {*} [axiosOptions] Override http request option.
|
|
85079
85854
|
* @throws {RequiredError}
|
|
85080
85855
|
*/
|
|
85081
|
-
|
|
85082
|
-
// verify required parameter '
|
|
85083
|
-
assertParamExists('
|
|
85084
|
-
|
|
85085
|
-
|
|
85086
|
-
|
|
85087
|
-
|
|
85856
|
+
startLauncher: async (launcherID: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
85857
|
+
// verify required parameter 'launcherID' is not null or undefined
|
|
85858
|
+
assertParamExists('startLauncher', 'launcherID', launcherID)
|
|
85859
|
+
const localVarPath = `/launchers/{launcherID}/launch`
|
|
85860
|
+
.replace(`{${"launcherID"}}`, encodeURIComponent(String(launcherID)));
|
|
85861
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
85862
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
85863
|
+
let baseOptions;
|
|
85864
|
+
if (configuration) {
|
|
85865
|
+
baseOptions = configuration.baseOptions;
|
|
85866
|
+
}
|
|
85867
|
+
|
|
85868
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
85869
|
+
const localVarHeaderParameter = {} as any;
|
|
85870
|
+
const localVarQueryParameter = {} as any;
|
|
85871
|
+
|
|
85872
|
+
// authentication userAuth required
|
|
85873
|
+
// oauth required
|
|
85874
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85875
|
+
|
|
85876
|
+
// authentication userAuth required
|
|
85877
|
+
// oauth required
|
|
85878
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
85879
|
+
|
|
85880
|
+
|
|
85881
|
+
|
|
85882
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
85883
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
85884
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
85885
|
+
|
|
85886
|
+
return {
|
|
85887
|
+
url: toPathString(localVarUrlObj),
|
|
85888
|
+
axiosOptions: localVarRequestOptions,
|
|
85889
|
+
};
|
|
85890
|
+
},
|
|
85891
|
+
}
|
|
85892
|
+
};
|
|
85893
|
+
|
|
85894
|
+
/**
|
|
85895
|
+
* LaunchersV2024Api - functional programming interface
|
|
85896
|
+
* @export
|
|
85897
|
+
*/
|
|
85898
|
+
export const LaunchersV2024ApiFp = function(configuration?: Configuration) {
|
|
85899
|
+
const localVarAxiosParamCreator = LaunchersV2024ApiAxiosParamCreator(configuration)
|
|
85900
|
+
return {
|
|
85901
|
+
/**
|
|
85902
|
+
* Create a Launcher with given information
|
|
85903
|
+
* @summary Create launcher
|
|
85904
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to create a Launcher
|
|
85905
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85906
|
+
* @throws {RequiredError}
|
|
85907
|
+
*/
|
|
85908
|
+
async createLauncher(launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>> {
|
|
85909
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createLauncher(launcherRequestV2024, axiosOptions);
|
|
85910
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
85911
|
+
const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.createLauncher']?.[localVarOperationServerIndex]?.url;
|
|
85912
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
85913
|
+
},
|
|
85914
|
+
/**
|
|
85915
|
+
* Delete the given Launcher ID
|
|
85916
|
+
* @summary Delete launcher
|
|
85917
|
+
* @param {string} launcherID ID of the Launcher to be deleted
|
|
85918
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85919
|
+
* @throws {RequiredError}
|
|
85920
|
+
*/
|
|
85921
|
+
async deleteLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
85922
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteLauncher(launcherID, axiosOptions);
|
|
85923
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
85924
|
+
const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.deleteLauncher']?.[localVarOperationServerIndex]?.url;
|
|
85925
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
85926
|
+
},
|
|
85927
|
+
/**
|
|
85928
|
+
* Get details for the given Launcher ID
|
|
85929
|
+
* @summary Get launcher by id
|
|
85930
|
+
* @param {string} launcherID ID of the Launcher to be retrieved
|
|
85931
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85932
|
+
* @throws {RequiredError}
|
|
85933
|
+
*/
|
|
85934
|
+
async getLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>> {
|
|
85935
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getLauncher(launcherID, axiosOptions);
|
|
85936
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
85937
|
+
const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.getLauncher']?.[localVarOperationServerIndex]?.url;
|
|
85938
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
85939
|
+
},
|
|
85940
|
+
/**
|
|
85941
|
+
* Return a list of Launchers for the authenticated tenant
|
|
85942
|
+
* @summary List all launchers for tenant
|
|
85943
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
85944
|
+
* @param {string} [next] Pagination marker
|
|
85945
|
+
* @param {number} [limit] Number of Launchers to return
|
|
85946
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85947
|
+
* @throws {RequiredError}
|
|
85948
|
+
*/
|
|
85949
|
+
async getLaunchers(filters?: string, next?: string, limit?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetLaunchers200ResponseV2024>> {
|
|
85950
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getLaunchers(filters, next, limit, axiosOptions);
|
|
85951
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
85952
|
+
const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.getLaunchers']?.[localVarOperationServerIndex]?.url;
|
|
85953
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
85954
|
+
},
|
|
85955
|
+
/**
|
|
85956
|
+
* Replace the given Launcher ID with given payload
|
|
85957
|
+
* @summary Replace launcher
|
|
85958
|
+
* @param {string} launcherID ID of the Launcher to be replaced
|
|
85959
|
+
* @param {LauncherRequestV2024} launcherRequestV2024 Payload to replace Launcher
|
|
85960
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85961
|
+
* @throws {RequiredError}
|
|
85962
|
+
*/
|
|
85963
|
+
async putLauncher(launcherID: string, launcherRequestV2024: LauncherRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LauncherV2024>> {
|
|
85964
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putLauncher(launcherID, launcherRequestV2024, axiosOptions);
|
|
85965
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
85966
|
+
const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.putLauncher']?.[localVarOperationServerIndex]?.url;
|
|
85967
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
85968
|
+
},
|
|
85969
|
+
/**
|
|
85970
|
+
* Launch the given Launcher ID
|
|
85971
|
+
* @summary Launch a launcher
|
|
85972
|
+
* @param {string} launcherID ID of the Launcher to be launched
|
|
85973
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85974
|
+
* @throws {RequiredError}
|
|
85975
|
+
*/
|
|
85976
|
+
async startLauncher(launcherID: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StartLauncher200ResponseV2024>> {
|
|
85977
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.startLauncher(launcherID, axiosOptions);
|
|
85978
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
85979
|
+
const localVarOperationServerBasePath = operationServerMap['LaunchersV2024Api.startLauncher']?.[localVarOperationServerIndex]?.url;
|
|
85980
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
85981
|
+
},
|
|
85982
|
+
}
|
|
85983
|
+
};
|
|
85984
|
+
|
|
85985
|
+
/**
|
|
85986
|
+
* LaunchersV2024Api - factory interface
|
|
85987
|
+
* @export
|
|
85988
|
+
*/
|
|
85989
|
+
export const LaunchersV2024ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
85990
|
+
const localVarFp = LaunchersV2024ApiFp(configuration)
|
|
85991
|
+
return {
|
|
85992
|
+
/**
|
|
85993
|
+
* Create a Launcher with given information
|
|
85994
|
+
* @summary Create launcher
|
|
85995
|
+
* @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
|
|
85996
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
85997
|
+
* @throws {RequiredError}
|
|
85998
|
+
*/
|
|
85999
|
+
createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024> {
|
|
86000
|
+
return localVarFp.createLauncher(requestParameters.launcherRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
86001
|
+
},
|
|
86002
|
+
/**
|
|
86003
|
+
* Delete the given Launcher ID
|
|
86004
|
+
* @summary Delete launcher
|
|
86005
|
+
* @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
|
|
86006
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86007
|
+
* @throws {RequiredError}
|
|
86008
|
+
*/
|
|
86009
|
+
deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
86010
|
+
return localVarFp.deleteLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(axios, basePath));
|
|
86011
|
+
},
|
|
86012
|
+
/**
|
|
86013
|
+
* Get details for the given Launcher ID
|
|
86014
|
+
* @summary Get launcher by id
|
|
86015
|
+
* @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
|
|
86016
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86017
|
+
* @throws {RequiredError}
|
|
86018
|
+
*/
|
|
86019
|
+
getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024> {
|
|
86020
|
+
return localVarFp.getLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(axios, basePath));
|
|
86021
|
+
},
|
|
86022
|
+
/**
|
|
86023
|
+
* Return a list of Launchers for the authenticated tenant
|
|
86024
|
+
* @summary List all launchers for tenant
|
|
86025
|
+
* @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
|
|
86026
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86027
|
+
* @throws {RequiredError}
|
|
86028
|
+
*/
|
|
86029
|
+
getLaunchers(requestParameters: LaunchersV2024ApiGetLaunchersRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetLaunchers200ResponseV2024> {
|
|
86030
|
+
return localVarFp.getLaunchers(requestParameters.filters, requestParameters.next, requestParameters.limit, axiosOptions).then((request) => request(axios, basePath));
|
|
86031
|
+
},
|
|
86032
|
+
/**
|
|
86033
|
+
* Replace the given Launcher ID with given payload
|
|
86034
|
+
* @summary Replace launcher
|
|
86035
|
+
* @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
|
|
86036
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86037
|
+
* @throws {RequiredError}
|
|
86038
|
+
*/
|
|
86039
|
+
putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LauncherV2024> {
|
|
86040
|
+
return localVarFp.putLauncher(requestParameters.launcherID, requestParameters.launcherRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
86041
|
+
},
|
|
86042
|
+
/**
|
|
86043
|
+
* Launch the given Launcher ID
|
|
86044
|
+
* @summary Launch a launcher
|
|
86045
|
+
* @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
|
|
86046
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86047
|
+
* @throws {RequiredError}
|
|
86048
|
+
*/
|
|
86049
|
+
startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<StartLauncher200ResponseV2024> {
|
|
86050
|
+
return localVarFp.startLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(axios, basePath));
|
|
86051
|
+
},
|
|
86052
|
+
};
|
|
86053
|
+
};
|
|
86054
|
+
|
|
86055
|
+
/**
|
|
86056
|
+
* Request parameters for createLauncher operation in LaunchersV2024Api.
|
|
86057
|
+
* @export
|
|
86058
|
+
* @interface LaunchersV2024ApiCreateLauncherRequest
|
|
86059
|
+
*/
|
|
86060
|
+
export interface LaunchersV2024ApiCreateLauncherRequest {
|
|
86061
|
+
/**
|
|
86062
|
+
* Payload to create a Launcher
|
|
86063
|
+
* @type {LauncherRequestV2024}
|
|
86064
|
+
* @memberof LaunchersV2024ApiCreateLauncher
|
|
86065
|
+
*/
|
|
86066
|
+
readonly launcherRequestV2024: LauncherRequestV2024
|
|
86067
|
+
}
|
|
86068
|
+
|
|
86069
|
+
/**
|
|
86070
|
+
* Request parameters for deleteLauncher operation in LaunchersV2024Api.
|
|
86071
|
+
* @export
|
|
86072
|
+
* @interface LaunchersV2024ApiDeleteLauncherRequest
|
|
86073
|
+
*/
|
|
86074
|
+
export interface LaunchersV2024ApiDeleteLauncherRequest {
|
|
86075
|
+
/**
|
|
86076
|
+
* ID of the Launcher to be deleted
|
|
86077
|
+
* @type {string}
|
|
86078
|
+
* @memberof LaunchersV2024ApiDeleteLauncher
|
|
86079
|
+
*/
|
|
86080
|
+
readonly launcherID: string
|
|
86081
|
+
}
|
|
86082
|
+
|
|
86083
|
+
/**
|
|
86084
|
+
* Request parameters for getLauncher operation in LaunchersV2024Api.
|
|
86085
|
+
* @export
|
|
86086
|
+
* @interface LaunchersV2024ApiGetLauncherRequest
|
|
86087
|
+
*/
|
|
86088
|
+
export interface LaunchersV2024ApiGetLauncherRequest {
|
|
86089
|
+
/**
|
|
86090
|
+
* ID of the Launcher to be retrieved
|
|
86091
|
+
* @type {string}
|
|
86092
|
+
* @memberof LaunchersV2024ApiGetLauncher
|
|
86093
|
+
*/
|
|
86094
|
+
readonly launcherID: string
|
|
86095
|
+
}
|
|
86096
|
+
|
|
86097
|
+
/**
|
|
86098
|
+
* Request parameters for getLaunchers operation in LaunchersV2024Api.
|
|
86099
|
+
* @export
|
|
86100
|
+
* @interface LaunchersV2024ApiGetLaunchersRequest
|
|
86101
|
+
*/
|
|
86102
|
+
export interface LaunchersV2024ApiGetLaunchersRequest {
|
|
86103
|
+
/**
|
|
86104
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **description**: *sw* **disabled**: *eq* **name**: *sw*
|
|
86105
|
+
* @type {string}
|
|
86106
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
86107
|
+
*/
|
|
86108
|
+
readonly filters?: string
|
|
86109
|
+
|
|
86110
|
+
/**
|
|
86111
|
+
* Pagination marker
|
|
86112
|
+
* @type {string}
|
|
86113
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
86114
|
+
*/
|
|
86115
|
+
readonly next?: string
|
|
86116
|
+
|
|
86117
|
+
/**
|
|
86118
|
+
* Number of Launchers to return
|
|
86119
|
+
* @type {number}
|
|
86120
|
+
* @memberof LaunchersV2024ApiGetLaunchers
|
|
86121
|
+
*/
|
|
86122
|
+
readonly limit?: number
|
|
86123
|
+
}
|
|
86124
|
+
|
|
86125
|
+
/**
|
|
86126
|
+
* Request parameters for putLauncher operation in LaunchersV2024Api.
|
|
86127
|
+
* @export
|
|
86128
|
+
* @interface LaunchersV2024ApiPutLauncherRequest
|
|
86129
|
+
*/
|
|
86130
|
+
export interface LaunchersV2024ApiPutLauncherRequest {
|
|
86131
|
+
/**
|
|
86132
|
+
* ID of the Launcher to be replaced
|
|
86133
|
+
* @type {string}
|
|
86134
|
+
* @memberof LaunchersV2024ApiPutLauncher
|
|
86135
|
+
*/
|
|
86136
|
+
readonly launcherID: string
|
|
86137
|
+
|
|
86138
|
+
/**
|
|
86139
|
+
* Payload to replace Launcher
|
|
86140
|
+
* @type {LauncherRequestV2024}
|
|
86141
|
+
* @memberof LaunchersV2024ApiPutLauncher
|
|
86142
|
+
*/
|
|
86143
|
+
readonly launcherRequestV2024: LauncherRequestV2024
|
|
86144
|
+
}
|
|
86145
|
+
|
|
86146
|
+
/**
|
|
86147
|
+
* Request parameters for startLauncher operation in LaunchersV2024Api.
|
|
86148
|
+
* @export
|
|
86149
|
+
* @interface LaunchersV2024ApiStartLauncherRequest
|
|
86150
|
+
*/
|
|
86151
|
+
export interface LaunchersV2024ApiStartLauncherRequest {
|
|
86152
|
+
/**
|
|
86153
|
+
* ID of the Launcher to be launched
|
|
86154
|
+
* @type {string}
|
|
86155
|
+
* @memberof LaunchersV2024ApiStartLauncher
|
|
86156
|
+
*/
|
|
86157
|
+
readonly launcherID: string
|
|
86158
|
+
}
|
|
86159
|
+
|
|
86160
|
+
/**
|
|
86161
|
+
* LaunchersV2024Api - object-oriented interface
|
|
86162
|
+
* @export
|
|
86163
|
+
* @class LaunchersV2024Api
|
|
86164
|
+
* @extends {BaseAPI}
|
|
86165
|
+
*/
|
|
86166
|
+
export class LaunchersV2024Api extends BaseAPI {
|
|
86167
|
+
/**
|
|
86168
|
+
* Create a Launcher with given information
|
|
86169
|
+
* @summary Create launcher
|
|
86170
|
+
* @param {LaunchersV2024ApiCreateLauncherRequest} requestParameters Request parameters.
|
|
86171
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86172
|
+
* @throws {RequiredError}
|
|
86173
|
+
* @memberof LaunchersV2024Api
|
|
86174
|
+
*/
|
|
86175
|
+
public createLauncher(requestParameters: LaunchersV2024ApiCreateLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
86176
|
+
return LaunchersV2024ApiFp(this.configuration).createLauncher(requestParameters.launcherRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
86177
|
+
}
|
|
86178
|
+
|
|
86179
|
+
/**
|
|
86180
|
+
* Delete the given Launcher ID
|
|
86181
|
+
* @summary Delete launcher
|
|
86182
|
+
* @param {LaunchersV2024ApiDeleteLauncherRequest} requestParameters Request parameters.
|
|
86183
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86184
|
+
* @throws {RequiredError}
|
|
86185
|
+
* @memberof LaunchersV2024Api
|
|
86186
|
+
*/
|
|
86187
|
+
public deleteLauncher(requestParameters: LaunchersV2024ApiDeleteLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
86188
|
+
return LaunchersV2024ApiFp(this.configuration).deleteLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
86189
|
+
}
|
|
86190
|
+
|
|
86191
|
+
/**
|
|
86192
|
+
* Get details for the given Launcher ID
|
|
86193
|
+
* @summary Get launcher by id
|
|
86194
|
+
* @param {LaunchersV2024ApiGetLauncherRequest} requestParameters Request parameters.
|
|
86195
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86196
|
+
* @throws {RequiredError}
|
|
86197
|
+
* @memberof LaunchersV2024Api
|
|
86198
|
+
*/
|
|
86199
|
+
public getLauncher(requestParameters: LaunchersV2024ApiGetLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
86200
|
+
return LaunchersV2024ApiFp(this.configuration).getLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
86201
|
+
}
|
|
86202
|
+
|
|
86203
|
+
/**
|
|
86204
|
+
* Return a list of Launchers for the authenticated tenant
|
|
86205
|
+
* @summary List all launchers for tenant
|
|
86206
|
+
* @param {LaunchersV2024ApiGetLaunchersRequest} requestParameters Request parameters.
|
|
86207
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86208
|
+
* @throws {RequiredError}
|
|
86209
|
+
* @memberof LaunchersV2024Api
|
|
86210
|
+
*/
|
|
86211
|
+
public getLaunchers(requestParameters: LaunchersV2024ApiGetLaunchersRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
86212
|
+
return LaunchersV2024ApiFp(this.configuration).getLaunchers(requestParameters.filters, requestParameters.next, requestParameters.limit, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
86213
|
+
}
|
|
86214
|
+
|
|
86215
|
+
/**
|
|
86216
|
+
* Replace the given Launcher ID with given payload
|
|
86217
|
+
* @summary Replace launcher
|
|
86218
|
+
* @param {LaunchersV2024ApiPutLauncherRequest} requestParameters Request parameters.
|
|
86219
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86220
|
+
* @throws {RequiredError}
|
|
86221
|
+
* @memberof LaunchersV2024Api
|
|
86222
|
+
*/
|
|
86223
|
+
public putLauncher(requestParameters: LaunchersV2024ApiPutLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
86224
|
+
return LaunchersV2024ApiFp(this.configuration).putLauncher(requestParameters.launcherID, requestParameters.launcherRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
86225
|
+
}
|
|
86226
|
+
|
|
86227
|
+
/**
|
|
86228
|
+
* Launch the given Launcher ID
|
|
86229
|
+
* @summary Launch a launcher
|
|
86230
|
+
* @param {LaunchersV2024ApiStartLauncherRequest} requestParameters Request parameters.
|
|
86231
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86232
|
+
* @throws {RequiredError}
|
|
86233
|
+
* @memberof LaunchersV2024Api
|
|
86234
|
+
*/
|
|
86235
|
+
public startLauncher(requestParameters: LaunchersV2024ApiStartLauncherRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
86236
|
+
return LaunchersV2024ApiFp(this.configuration).startLauncher(requestParameters.launcherID, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
86237
|
+
}
|
|
86238
|
+
}
|
|
86239
|
+
|
|
86240
|
+
|
|
86241
|
+
|
|
86242
|
+
/**
|
|
86243
|
+
* LifecycleStatesV2024Api - axios parameter creator
|
|
86244
|
+
* @export
|
|
86245
|
+
*/
|
|
86246
|
+
export const LifecycleStatesV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
86247
|
+
return {
|
|
86248
|
+
/**
|
|
86249
|
+
* Use this endpoint to create a lifecycle state.
|
|
86250
|
+
* @summary Create lifecycle state
|
|
86251
|
+
* @param {string} identityProfileId Identity profile ID.
|
|
86252
|
+
* @param {LifecycleStateV2024} lifecycleStateV2024 Lifecycle state to be created.
|
|
86253
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86254
|
+
* @throws {RequiredError}
|
|
86255
|
+
*/
|
|
86256
|
+
createLifecycleState: async (identityProfileId: string, lifecycleStateV2024: LifecycleStateV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86257
|
+
// verify required parameter 'identityProfileId' is not null or undefined
|
|
86258
|
+
assertParamExists('createLifecycleState', 'identityProfileId', identityProfileId)
|
|
86259
|
+
// verify required parameter 'lifecycleStateV2024' is not null or undefined
|
|
86260
|
+
assertParamExists('createLifecycleState', 'lifecycleStateV2024', lifecycleStateV2024)
|
|
86261
|
+
const localVarPath = `/identity-profiles/{identity-profile-id}/lifecycle-states`
|
|
86262
|
+
.replace(`{${"identity-profile-id"}}`, encodeURIComponent(String(identityProfileId)));
|
|
86263
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
86264
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86265
|
+
let baseOptions;
|
|
86266
|
+
if (configuration) {
|
|
86267
|
+
baseOptions = configuration.baseOptions;
|
|
86268
|
+
}
|
|
86269
|
+
|
|
86270
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
86271
|
+
const localVarHeaderParameter = {} as any;
|
|
86272
|
+
const localVarQueryParameter = {} as any;
|
|
86273
|
+
|
|
86274
|
+
// authentication userAuth required
|
|
86275
|
+
// oauth required
|
|
86276
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86277
|
+
|
|
86278
|
+
// authentication userAuth required
|
|
86279
|
+
// oauth required
|
|
86280
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86281
|
+
|
|
86282
|
+
// authentication applicationAuth required
|
|
86283
|
+
// oauth required
|
|
86284
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
86285
|
+
|
|
86286
|
+
|
|
86287
|
+
|
|
86288
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
86289
|
+
|
|
86290
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
86291
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
86292
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
86293
|
+
localVarRequestOptions.data = serializeDataIfNeeded(lifecycleStateV2024, localVarRequestOptions, configuration)
|
|
86294
|
+
|
|
86295
|
+
return {
|
|
86296
|
+
url: toPathString(localVarUrlObj),
|
|
86297
|
+
axiosOptions: localVarRequestOptions,
|
|
86298
|
+
};
|
|
86299
|
+
},
|
|
86300
|
+
/**
|
|
86301
|
+
* Use this endpoint to delete the lifecycle state by its ID.
|
|
86302
|
+
* @summary Delete lifecycle state
|
|
86303
|
+
* @param {string} identityProfileId Identity profile ID.
|
|
86304
|
+
* @param {string} lifecycleStateId Lifecycle state ID.
|
|
86305
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86306
|
+
* @throws {RequiredError}
|
|
86307
|
+
*/
|
|
86308
|
+
deleteLifecycleState: async (identityProfileId: string, lifecycleStateId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86309
|
+
// verify required parameter 'identityProfileId' is not null or undefined
|
|
86310
|
+
assertParamExists('deleteLifecycleState', 'identityProfileId', identityProfileId)
|
|
86311
|
+
// verify required parameter 'lifecycleStateId' is not null or undefined
|
|
86312
|
+
assertParamExists('deleteLifecycleState', 'lifecycleStateId', lifecycleStateId)
|
|
86313
|
+
const localVarPath = `/identity-profiles/{identity-profile-id}/lifecycle-states/{lifecycle-state-id}`
|
|
86314
|
+
.replace(`{${"identity-profile-id"}}`, encodeURIComponent(String(identityProfileId)))
|
|
86315
|
+
.replace(`{${"lifecycle-state-id"}}`, encodeURIComponent(String(lifecycleStateId)));
|
|
86316
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
86317
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86318
|
+
let baseOptions;
|
|
86319
|
+
if (configuration) {
|
|
86320
|
+
baseOptions = configuration.baseOptions;
|
|
86321
|
+
}
|
|
86322
|
+
|
|
86323
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
86324
|
+
const localVarHeaderParameter = {} as any;
|
|
86325
|
+
const localVarQueryParameter = {} as any;
|
|
86326
|
+
|
|
86327
|
+
// authentication userAuth required
|
|
86328
|
+
// oauth required
|
|
86329
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86330
|
+
|
|
86331
|
+
// authentication userAuth required
|
|
86332
|
+
// oauth required
|
|
86333
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86334
|
+
|
|
86335
|
+
// authentication applicationAuth required
|
|
86336
|
+
// oauth required
|
|
86337
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
86338
|
+
|
|
86339
|
+
|
|
86340
|
+
|
|
86341
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
86342
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
86343
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
86344
|
+
|
|
86345
|
+
return {
|
|
86346
|
+
url: toPathString(localVarUrlObj),
|
|
86347
|
+
axiosOptions: localVarRequestOptions,
|
|
86348
|
+
};
|
|
86349
|
+
},
|
|
86350
|
+
/**
|
|
86351
|
+
* Use this endpoint to get a lifecycle state by its ID and its associated identity profile ID.
|
|
86352
|
+
* @summary Get lifecycle state
|
|
86353
|
+
* @param {string} identityProfileId Identity profile ID.
|
|
86354
|
+
* @param {string} lifecycleStateId Lifecycle state ID.
|
|
86355
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86356
|
+
* @throws {RequiredError}
|
|
86357
|
+
*/
|
|
86358
|
+
getLifecycleState: async (identityProfileId: string, lifecycleStateId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86359
|
+
// verify required parameter 'identityProfileId' is not null or undefined
|
|
86360
|
+
assertParamExists('getLifecycleState', 'identityProfileId', identityProfileId)
|
|
86361
|
+
// verify required parameter 'lifecycleStateId' is not null or undefined
|
|
86362
|
+
assertParamExists('getLifecycleState', 'lifecycleStateId', lifecycleStateId)
|
|
86363
|
+
const localVarPath = `/identity-profiles/{identity-profile-id}/lifecycle-states/{lifecycle-state-id}`
|
|
86364
|
+
.replace(`{${"identity-profile-id"}}`, encodeURIComponent(String(identityProfileId)))
|
|
86365
|
+
.replace(`{${"lifecycle-state-id"}}`, encodeURIComponent(String(lifecycleStateId)));
|
|
86366
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
86367
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86368
|
+
let baseOptions;
|
|
86369
|
+
if (configuration) {
|
|
86370
|
+
baseOptions = configuration.baseOptions;
|
|
86371
|
+
}
|
|
86372
|
+
|
|
86373
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
86374
|
+
const localVarHeaderParameter = {} as any;
|
|
86375
|
+
const localVarQueryParameter = {} as any;
|
|
86376
|
+
|
|
86377
|
+
// authentication userAuth required
|
|
86378
|
+
// oauth required
|
|
86379
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86380
|
+
|
|
86381
|
+
// authentication userAuth required
|
|
86382
|
+
// oauth required
|
|
86383
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86384
|
+
|
|
86385
|
+
|
|
86386
|
+
|
|
86387
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
86388
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
86389
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
86390
|
+
|
|
86391
|
+
return {
|
|
86392
|
+
url: toPathString(localVarUrlObj),
|
|
86393
|
+
axiosOptions: localVarRequestOptions,
|
|
86394
|
+
};
|
|
86395
|
+
},
|
|
86396
|
+
/**
|
|
86397
|
+
* Use this endpoint to list all lifecycle states by their associated identity profiles.
|
|
86398
|
+
* @summary Lists lifecyclestates
|
|
86399
|
+
* @param {string} identityProfileId Identity profile ID.
|
|
86400
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
86401
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
86402
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
86403
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
86404
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86405
|
+
* @throws {RequiredError}
|
|
86406
|
+
*/
|
|
86407
|
+
getLifecycleStates: async (identityProfileId: string, limit?: number, offset?: number, count?: boolean, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86408
|
+
// verify required parameter 'identityProfileId' is not null or undefined
|
|
86409
|
+
assertParamExists('getLifecycleStates', 'identityProfileId', identityProfileId)
|
|
86410
|
+
const localVarPath = `/identity-profiles/{identity-profile-id}/lifecycle-states`
|
|
86411
|
+
.replace(`{${"identity-profile-id"}}`, encodeURIComponent(String(identityProfileId)));
|
|
86412
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
86413
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86414
|
+
let baseOptions;
|
|
86415
|
+
if (configuration) {
|
|
86416
|
+
baseOptions = configuration.baseOptions;
|
|
86417
|
+
}
|
|
86418
|
+
|
|
86419
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
86420
|
+
const localVarHeaderParameter = {} as any;
|
|
86421
|
+
const localVarQueryParameter = {} as any;
|
|
86422
|
+
|
|
86423
|
+
// authentication userAuth required
|
|
86424
|
+
// oauth required
|
|
86425
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86426
|
+
|
|
86427
|
+
// authentication userAuth required
|
|
86428
|
+
// oauth required
|
|
86429
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
86430
|
+
|
|
86431
|
+
// authentication applicationAuth required
|
|
86432
|
+
// oauth required
|
|
86433
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
86434
|
+
|
|
86435
|
+
if (limit !== undefined) {
|
|
86436
|
+
localVarQueryParameter['limit'] = limit;
|
|
86437
|
+
}
|
|
86438
|
+
|
|
86439
|
+
if (offset !== undefined) {
|
|
86440
|
+
localVarQueryParameter['offset'] = offset;
|
|
86441
|
+
}
|
|
86442
|
+
|
|
86443
|
+
if (count !== undefined) {
|
|
86444
|
+
localVarQueryParameter['count'] = count;
|
|
86445
|
+
}
|
|
86446
|
+
|
|
86447
|
+
if (sorters !== undefined) {
|
|
86448
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
86449
|
+
}
|
|
86450
|
+
|
|
86451
|
+
|
|
86452
|
+
|
|
86453
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
86454
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
86455
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
86456
|
+
|
|
86457
|
+
return {
|
|
86458
|
+
url: toPathString(localVarUrlObj),
|
|
86459
|
+
axiosOptions: localVarRequestOptions,
|
|
86460
|
+
};
|
|
86461
|
+
},
|
|
86462
|
+
/**
|
|
86463
|
+
* Use this API to set/update an identity\'s lifecycle state to the one provided and update the corresponding identity profile.
|
|
86464
|
+
* @summary Set lifecycle state
|
|
86465
|
+
* @param {string} identityId ID of the identity to update.
|
|
86466
|
+
* @param {SetLifecycleStateRequestV2024} setLifecycleStateRequestV2024
|
|
86467
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
86468
|
+
* @throws {RequiredError}
|
|
86469
|
+
*/
|
|
86470
|
+
setLifecycleState: async (identityId: string, setLifecycleStateRequestV2024: SetLifecycleStateRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
86471
|
+
// verify required parameter 'identityId' is not null or undefined
|
|
86472
|
+
assertParamExists('setLifecycleState', 'identityId', identityId)
|
|
86473
|
+
// verify required parameter 'setLifecycleStateRequestV2024' is not null or undefined
|
|
86474
|
+
assertParamExists('setLifecycleState', 'setLifecycleStateRequestV2024', setLifecycleStateRequestV2024)
|
|
86475
|
+
const localVarPath = `/identities/{identity-id}/set-lifecycle-state`
|
|
86476
|
+
.replace(`{${"identity-id"}}`, encodeURIComponent(String(identityId)));
|
|
85088
86477
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
85089
86478
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
85090
86479
|
let baseOptions;
|
|
@@ -85233,7 +86622,7 @@ export const LifecycleStatesV2024ApiFp = function(configuration?: Configuration)
|
|
|
85233
86622
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
85234
86623
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
85235
86624
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
85236
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
86625
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
85237
86626
|
* @param {*} [axiosOptions] Override http request option.
|
|
85238
86627
|
* @throws {RequiredError}
|
|
85239
86628
|
*/
|
|
@@ -85443,7 +86832,7 @@ export interface LifecycleStatesV2024ApiGetLifecycleStatesRequest {
|
|
|
85443
86832
|
readonly count?: boolean
|
|
85444
86833
|
|
|
85445
86834
|
/**
|
|
85446
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
86835
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
|
|
85447
86836
|
* @type {string}
|
|
85448
86837
|
* @memberof LifecycleStatesV2024ApiGetLifecycleStates
|
|
85449
86838
|
*/
|
|
@@ -87754,8 +89143,8 @@ export const MachineIdentitiesV2024ApiAxiosParamCreator = function (configuratio
|
|
|
87754
89143
|
/**
|
|
87755
89144
|
* This API returns a list of machine identities.
|
|
87756
89145
|
* @summary List machine identities
|
|
87757
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **
|
|
87758
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
89146
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
89147
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
87759
89148
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87760
89149
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
87761
89150
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -87933,8 +89322,8 @@ export const MachineIdentitiesV2024ApiFp = function(configuration?: Configuratio
|
|
|
87933
89322
|
/**
|
|
87934
89323
|
* This API returns a list of machine identities.
|
|
87935
89324
|
* @summary List machine identities
|
|
87936
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **
|
|
87937
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
89325
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
89326
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
87938
89327
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
87939
89328
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
87940
89329
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -88096,14 +89485,14 @@ export interface MachineIdentitiesV2024ApiGetMachineIdentityRequest {
|
|
|
88096
89485
|
*/
|
|
88097
89486
|
export interface MachineIdentitiesV2024ApiListMachineIdentitiesRequest {
|
|
88098
89487
|
/**
|
|
88099
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **
|
|
89488
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, in, sw* **cisIdentityId**: *eq, in, sw* **businessApplication**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq*
|
|
88100
89489
|
* @type {string}
|
|
88101
89490
|
* @memberof MachineIdentitiesV2024ApiListMachineIdentities
|
|
88102
89491
|
*/
|
|
88103
89492
|
readonly filters?: string
|
|
88104
89493
|
|
|
88105
89494
|
/**
|
|
88106
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name**
|
|
89495
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **businessApplication, name, owners.primaryIdentity.name, source.name, created, modified**
|
|
88107
89496
|
* @type {string}
|
|
88108
89497
|
* @memberof MachineIdentitiesV2024ApiListMachineIdentities
|
|
88109
89498
|
*/
|
|
@@ -106925,13 +108314,13 @@ export const SODViolationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
106925
108314
|
/**
|
|
106926
108315
|
* This API initiates a SOD policy verification asynchronously.
|
|
106927
108316
|
* @summary Check sod violations
|
|
106928
|
-
* @param {
|
|
108317
|
+
* @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
|
|
106929
108318
|
* @param {*} [axiosOptions] Override http request option.
|
|
106930
108319
|
* @throws {RequiredError}
|
|
106931
108320
|
*/
|
|
106932
|
-
startViolationCheck: async (
|
|
106933
|
-
// verify required parameter '
|
|
106934
|
-
assertParamExists('startViolationCheck', '
|
|
108321
|
+
startViolationCheck: async (identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
108322
|
+
// verify required parameter 'identityWithNewAccessV2024' is not null or undefined
|
|
108323
|
+
assertParamExists('startViolationCheck', 'identityWithNewAccessV2024', identityWithNewAccessV2024)
|
|
106935
108324
|
const localVarPath = `/sod-violations/check`;
|
|
106936
108325
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
106937
108326
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -106959,7 +108348,7 @@ export const SODViolationsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
106959
108348
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
106960
108349
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
106961
108350
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
106962
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
108351
|
+
localVarRequestOptions.data = serializeDataIfNeeded(identityWithNewAccessV2024, localVarRequestOptions, configuration)
|
|
106963
108352
|
|
|
106964
108353
|
return {
|
|
106965
108354
|
url: toPathString(localVarUrlObj),
|
|
@@ -106992,12 +108381,12 @@ export const SODViolationsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
106992
108381
|
/**
|
|
106993
108382
|
* This API initiates a SOD policy verification asynchronously.
|
|
106994
108383
|
* @summary Check sod violations
|
|
106995
|
-
* @param {
|
|
108384
|
+
* @param {IdentityWithNewAccessV2024} identityWithNewAccessV2024
|
|
106996
108385
|
* @param {*} [axiosOptions] Override http request option.
|
|
106997
108386
|
* @throws {RequiredError}
|
|
106998
108387
|
*/
|
|
106999
|
-
async startViolationCheck(
|
|
107000
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.startViolationCheck(
|
|
108388
|
+
async startViolationCheck(identityWithNewAccessV2024: IdentityWithNewAccessV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheckV2024>> {
|
|
108389
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.startViolationCheck(identityWithNewAccessV2024, axiosOptions);
|
|
107001
108390
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
107002
108391
|
const localVarOperationServerBasePath = operationServerMap['SODViolationsV2024Api.startViolationCheck']?.[localVarOperationServerIndex]?.url;
|
|
107003
108392
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -107030,7 +108419,7 @@ export const SODViolationsV2024ApiFactory = function (configuration?: Configurat
|
|
|
107030
108419
|
* @throws {RequiredError}
|
|
107031
108420
|
*/
|
|
107032
108421
|
startViolationCheck(requestParameters: SODViolationsV2024ApiStartViolationCheckRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SodViolationCheckV2024> {
|
|
107033
|
-
return localVarFp.startViolationCheck(requestParameters.
|
|
108422
|
+
return localVarFp.startViolationCheck(requestParameters.identityWithNewAccessV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
107034
108423
|
},
|
|
107035
108424
|
};
|
|
107036
108425
|
};
|
|
@@ -107057,10 +108446,10 @@ export interface SODViolationsV2024ApiStartPredictSodViolationsRequest {
|
|
|
107057
108446
|
export interface SODViolationsV2024ApiStartViolationCheckRequest {
|
|
107058
108447
|
/**
|
|
107059
108448
|
*
|
|
107060
|
-
* @type {
|
|
108449
|
+
* @type {IdentityWithNewAccessV2024}
|
|
107061
108450
|
* @memberof SODViolationsV2024ApiStartViolationCheck
|
|
107062
108451
|
*/
|
|
107063
|
-
readonly
|
|
108452
|
+
readonly identityWithNewAccessV2024: IdentityWithNewAccessV2024
|
|
107064
108453
|
}
|
|
107065
108454
|
|
|
107066
108455
|
/**
|
|
@@ -107091,7 +108480,7 @@ export class SODViolationsV2024Api extends BaseAPI {
|
|
|
107091
108480
|
* @memberof SODViolationsV2024Api
|
|
107092
108481
|
*/
|
|
107093
108482
|
public startViolationCheck(requestParameters: SODViolationsV2024ApiStartViolationCheckRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
107094
|
-
return SODViolationsV2024ApiFp(this.configuration).startViolationCheck(requestParameters.
|
|
108483
|
+
return SODViolationsV2024ApiFp(this.configuration).startViolationCheck(requestParameters.identityWithNewAccessV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
107095
108484
|
}
|
|
107096
108485
|
}
|
|
107097
108486
|
|
|
@@ -107104,7 +108493,7 @@ export class SODViolationsV2024Api extends BaseAPI {
|
|
|
107104
108493
|
export const SPConfigV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
107105
108494
|
return {
|
|
107106
108495
|
/**
|
|
107107
|
-
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108496
|
+
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
107108
108497
|
* @summary Initiates configuration objects export job
|
|
107109
108498
|
* @param {ExportPayloadV2024} exportPayloadV2024 Export options control what will be included in the export.
|
|
107110
108499
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107274,7 +108663,7 @@ export const SPConfigV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
107274
108663
|
};
|
|
107275
108664
|
},
|
|
107276
108665
|
/**
|
|
107277
|
-
* \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108666
|
+
* \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).\'
|
|
107278
108667
|
* @summary Get import job status
|
|
107279
108668
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
107280
108669
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107316,7 +108705,7 @@ export const SPConfigV2024ApiAxiosParamCreator = function (configuration?: Confi
|
|
|
107316
108705
|
};
|
|
107317
108706
|
},
|
|
107318
108707
|
/**
|
|
107319
|
-
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108708
|
+
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
107320
108709
|
* @summary Initiates configuration objects import job
|
|
107321
108710
|
* @param {File} data JSON file containing the objects to be imported.
|
|
107322
108711
|
* @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any effect on the target tenant. If this parameter is \"true\", no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
|
|
@@ -107423,7 +108812,7 @@ export const SPConfigV2024ApiFp = function(configuration?: Configuration) {
|
|
|
107423
108812
|
const localVarAxiosParamCreator = SPConfigV2024ApiAxiosParamCreator(configuration)
|
|
107424
108813
|
return {
|
|
107425
108814
|
/**
|
|
107426
|
-
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108815
|
+
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
107427
108816
|
* @summary Initiates configuration objects export job
|
|
107428
108817
|
* @param {ExportPayloadV2024} exportPayloadV2024 Export options control what will be included in the export.
|
|
107429
108818
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107475,7 +108864,7 @@ export const SPConfigV2024ApiFp = function(configuration?: Configuration) {
|
|
|
107475
108864
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
107476
108865
|
},
|
|
107477
108866
|
/**
|
|
107478
|
-
* \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108867
|
+
* \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).\'
|
|
107479
108868
|
* @summary Get import job status
|
|
107480
108869
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
107481
108870
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107488,7 +108877,7 @@ export const SPConfigV2024ApiFp = function(configuration?: Configuration) {
|
|
|
107488
108877
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
107489
108878
|
},
|
|
107490
108879
|
/**
|
|
107491
|
-
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108880
|
+
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
107492
108881
|
* @summary Initiates configuration objects import job
|
|
107493
108882
|
* @param {File} data JSON file containing the objects to be imported.
|
|
107494
108883
|
* @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any effect on the target tenant. If this parameter is \"true\", no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
|
|
@@ -107525,7 +108914,7 @@ export const SPConfigV2024ApiFactory = function (configuration?: Configuration,
|
|
|
107525
108914
|
const localVarFp = SPConfigV2024ApiFp(configuration)
|
|
107526
108915
|
return {
|
|
107527
108916
|
/**
|
|
107528
|
-
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108917
|
+
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
107529
108918
|
* @summary Initiates configuration objects export job
|
|
107530
108919
|
* @param {SPConfigV2024ApiExportSpConfigRequest} requestParameters Request parameters.
|
|
107531
108920
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107565,7 +108954,7 @@ export const SPConfigV2024ApiFactory = function (configuration?: Configuration,
|
|
|
107565
108954
|
return localVarFp.getSpConfigImport(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
107566
108955
|
},
|
|
107567
108956
|
/**
|
|
107568
|
-
* \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108957
|
+
* \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).\'
|
|
107569
108958
|
* @summary Get import job status
|
|
107570
108959
|
* @param {SPConfigV2024ApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
107571
108960
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107575,7 +108964,7 @@ export const SPConfigV2024ApiFactory = function (configuration?: Configuration,
|
|
|
107575
108964
|
return localVarFp.getSpConfigImportStatus(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
107576
108965
|
},
|
|
107577
108966
|
/**
|
|
107578
|
-
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
108967
|
+
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
107579
108968
|
* @summary Initiates configuration objects import job
|
|
107580
108969
|
* @param {SPConfigV2024ApiImportSpConfigRequest} requestParameters Request parameters.
|
|
107581
108970
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107702,7 +109091,7 @@ export interface SPConfigV2024ApiImportSpConfigRequest {
|
|
|
107702
109091
|
*/
|
|
107703
109092
|
export class SPConfigV2024Api extends BaseAPI {
|
|
107704
109093
|
/**
|
|
107705
|
-
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
109094
|
+
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
107706
109095
|
* @summary Initiates configuration objects export job
|
|
107707
109096
|
* @param {SPConfigV2024ApiExportSpConfigRequest} requestParameters Request parameters.
|
|
107708
109097
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107750,7 +109139,7 @@ export class SPConfigV2024Api extends BaseAPI {
|
|
|
107750
109139
|
}
|
|
107751
109140
|
|
|
107752
109141
|
/**
|
|
107753
|
-
* \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
109142
|
+
* \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).\'
|
|
107754
109143
|
* @summary Get import job status
|
|
107755
109144
|
* @param {SPConfigV2024ApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
107756
109145
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -107762,7 +109151,7 @@ export class SPConfigV2024Api extends BaseAPI {
|
|
|
107762
109151
|
}
|
|
107763
109152
|
|
|
107764
109153
|
/**
|
|
107765
|
-
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
109154
|
+
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
107766
109155
|
* @summary Initiates configuration objects import job
|
|
107767
109156
|
* @param {SPConfigV2024ApiImportSpConfigRequest} requestParameters Request parameters.
|
|
107768
109157
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -112049,7 +113438,7 @@ export class SourceUsagesV2024Api extends BaseAPI {
|
|
|
112049
113438
|
export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
112050
113439
|
return {
|
|
112051
113440
|
/**
|
|
112052
|
-
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
113441
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
112053
113442
|
* @summary Create provisioning policy
|
|
112054
113443
|
* @param {string} sourceId The Source id
|
|
112055
113444
|
* @param {ProvisioningPolicyDtoV2024} provisioningPolicyDtoV2024
|
|
@@ -113769,7 +115158,7 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113769
115158
|
};
|
|
113770
115159
|
},
|
|
113771
115160
|
/**
|
|
113772
|
-
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
115161
|
+
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
113773
115162
|
* @summary Update provisioning policy by usagetype
|
|
113774
115163
|
* @param {string} sourceId The Source ID.
|
|
113775
115164
|
* @param {UsageTypeV2024} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
@@ -114263,7 +115652,7 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
114263
115652
|
};
|
|
114264
115653
|
},
|
|
114265
115654
|
/**
|
|
114266
|
-
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
115655
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
114267
115656
|
* @summary Partial update of provisioning policy
|
|
114268
115657
|
* @param {string} sourceId The Source id.
|
|
114269
115658
|
* @param {UsageTypeV2024} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
@@ -114533,7 +115922,7 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
114533
115922
|
const localVarAxiosParamCreator = SourcesV2024ApiAxiosParamCreator(configuration)
|
|
114534
115923
|
return {
|
|
114535
115924
|
/**
|
|
114536
|
-
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
115925
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
114537
115926
|
* @summary Create provisioning policy
|
|
114538
115927
|
* @param {string} sourceId The Source id
|
|
114539
115928
|
* @param {ProvisioningPolicyDtoV2024} provisioningPolicyDtoV2024
|
|
@@ -115032,7 +116421,7 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
115032
116421
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
115033
116422
|
},
|
|
115034
116423
|
/**
|
|
115035
|
-
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
116424
|
+
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
115036
116425
|
* @summary Update provisioning policy by usagetype
|
|
115037
116426
|
* @param {string} sourceId The Source ID.
|
|
115038
116427
|
* @param {UsageTypeV2024} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
@@ -115173,7 +116562,7 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
115173
116562
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
115174
116563
|
},
|
|
115175
116564
|
/**
|
|
115176
|
-
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
116565
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
115177
116566
|
* @summary Partial update of provisioning policy
|
|
115178
116567
|
* @param {string} sourceId The Source id.
|
|
115179
116568
|
* @param {UsageTypeV2024} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
@@ -115256,7 +116645,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
|
|
|
115256
116645
|
const localVarFp = SourcesV2024ApiFp(configuration)
|
|
115257
116646
|
return {
|
|
115258
116647
|
/**
|
|
115259
|
-
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
116648
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
115260
116649
|
* @summary Create provisioning policy
|
|
115261
116650
|
* @param {SourcesV2024ApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
115262
116651
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -115616,7 +117005,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
|
|
|
115616
117005
|
return localVarFp.putNativeChangeDetectionConfig(requestParameters.id, requestParameters.nativeChangeDetectionConfigV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
115617
117006
|
},
|
|
115618
117007
|
/**
|
|
115619
|
-
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
117008
|
+
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
115620
117009
|
* @summary Update provisioning policy by usagetype
|
|
115621
117010
|
* @param {SourcesV2024ApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
115622
117011
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -115716,7 +117105,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
|
|
|
115716
117105
|
return localVarFp.updateProvisioningPoliciesInBulk(requestParameters.sourceId, requestParameters.provisioningPolicyDtoV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
115717
117106
|
},
|
|
115718
117107
|
/**
|
|
115719
|
-
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
117108
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
115720
117109
|
* @summary Partial update of provisioning policy
|
|
115721
117110
|
* @param {SourcesV2024ApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
115722
117111
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -116840,7 +118229,7 @@ export interface SourcesV2024ApiUpdateSourceSchemaRequest {
|
|
|
116840
118229
|
*/
|
|
116841
118230
|
export class SourcesV2024Api extends BaseAPI {
|
|
116842
118231
|
/**
|
|
116843
|
-
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
118232
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
116844
118233
|
* @summary Create provisioning policy
|
|
116845
118234
|
* @param {SourcesV2024ApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
116846
118235
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -117272,7 +118661,7 @@ export class SourcesV2024Api extends BaseAPI {
|
|
|
117272
118661
|
}
|
|
117273
118662
|
|
|
117274
118663
|
/**
|
|
117275
|
-
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
118664
|
+
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
117276
118665
|
* @summary Update provisioning policy by usagetype
|
|
117277
118666
|
* @param {SourcesV2024ApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
117278
118667
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -117392,7 +118781,7 @@ export class SourcesV2024Api extends BaseAPI {
|
|
|
117392
118781
|
}
|
|
117393
118782
|
|
|
117394
118783
|
/**
|
|
117395
|
-
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/
|
|
118784
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
117396
118785
|
* @summary Partial update of provisioning policy
|
|
117397
118786
|
* @param {SourcesV2024ApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
117398
118787
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -118497,7 +119886,7 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
118497
119886
|
};
|
|
118498
119887
|
},
|
|
118499
119888
|
/**
|
|
118500
|
-
* This API returns a list of all tagged objects.
|
|
119889
|
+
* This API returns a list of all tagged objects.
|
|
118501
119890
|
* @summary List tagged objects
|
|
118502
119891
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
118503
119892
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -118555,7 +119944,7 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
118555
119944
|
};
|
|
118556
119945
|
},
|
|
118557
119946
|
/**
|
|
118558
|
-
* This API returns a list of all tagged objects by type.
|
|
119947
|
+
* This API returns a list of all tagged objects by type.
|
|
118559
119948
|
* @summary List tagged objects by type
|
|
118560
119949
|
* @param {ListTaggedObjectsByTypeTypeV2024} type The type of tagged object to retrieve.
|
|
118561
119950
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -118669,7 +120058,7 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
118669
120058
|
};
|
|
118670
120059
|
},
|
|
118671
120060
|
/**
|
|
118672
|
-
* This adds a tag to an object.
|
|
120061
|
+
* This adds a tag to an object.
|
|
118673
120062
|
* @summary Add tag to object
|
|
118674
120063
|
* @param {TaggedObjectV2024} taggedObjectV2024
|
|
118675
120064
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -118812,7 +120201,7 @@ export const TaggedObjectsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
118812
120201
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
118813
120202
|
},
|
|
118814
120203
|
/**
|
|
118815
|
-
* This API returns a list of all tagged objects.
|
|
120204
|
+
* This API returns a list of all tagged objects.
|
|
118816
120205
|
* @summary List tagged objects
|
|
118817
120206
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
118818
120207
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -118828,7 +120217,7 @@ export const TaggedObjectsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
118828
120217
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
118829
120218
|
},
|
|
118830
120219
|
/**
|
|
118831
|
-
* This API returns a list of all tagged objects by type.
|
|
120220
|
+
* This API returns a list of all tagged objects by type.
|
|
118832
120221
|
* @summary List tagged objects by type
|
|
118833
120222
|
* @param {ListTaggedObjectsByTypeTypeV2024} type The type of tagged object to retrieve.
|
|
118834
120223
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -118860,7 +120249,7 @@ export const TaggedObjectsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
118860
120249
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
118861
120250
|
},
|
|
118862
120251
|
/**
|
|
118863
|
-
* This adds a tag to an object.
|
|
120252
|
+
* This adds a tag to an object.
|
|
118864
120253
|
* @summary Add tag to object
|
|
118865
120254
|
* @param {TaggedObjectV2024} taggedObjectV2024
|
|
118866
120255
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -118926,7 +120315,7 @@ export const TaggedObjectsV2024ApiFactory = function (configuration?: Configurat
|
|
|
118926
120315
|
return localVarFp.getTaggedObject(requestParameters.type, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
118927
120316
|
},
|
|
118928
120317
|
/**
|
|
118929
|
-
* This API returns a list of all tagged objects.
|
|
120318
|
+
* This API returns a list of all tagged objects.
|
|
118930
120319
|
* @summary List tagged objects
|
|
118931
120320
|
* @param {TaggedObjectsV2024ApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
118932
120321
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -118936,7 +120325,7 @@ export const TaggedObjectsV2024ApiFactory = function (configuration?: Configurat
|
|
|
118936
120325
|
return localVarFp.listTaggedObjects(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
118937
120326
|
},
|
|
118938
120327
|
/**
|
|
118939
|
-
* This API returns a list of all tagged objects by type.
|
|
120328
|
+
* This API returns a list of all tagged objects by type.
|
|
118940
120329
|
* @summary List tagged objects by type
|
|
118941
120330
|
* @param {TaggedObjectsV2024ApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
118942
120331
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -118956,7 +120345,7 @@ export const TaggedObjectsV2024ApiFactory = function (configuration?: Configurat
|
|
|
118956
120345
|
return localVarFp.putTaggedObject(requestParameters.type, requestParameters.id, requestParameters.taggedObjectV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
118957
120346
|
},
|
|
118958
120347
|
/**
|
|
118959
|
-
* This adds a tag to an object.
|
|
120348
|
+
* This adds a tag to an object.
|
|
118960
120349
|
* @summary Add tag to object
|
|
118961
120350
|
* @param {TaggedObjectsV2024ApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
118962
120351
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -119211,7 +120600,7 @@ export class TaggedObjectsV2024Api extends BaseAPI {
|
|
|
119211
120600
|
}
|
|
119212
120601
|
|
|
119213
120602
|
/**
|
|
119214
|
-
* This API returns a list of all tagged objects.
|
|
120603
|
+
* This API returns a list of all tagged objects.
|
|
119215
120604
|
* @summary List tagged objects
|
|
119216
120605
|
* @param {TaggedObjectsV2024ApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
119217
120606
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -119223,7 +120612,7 @@ export class TaggedObjectsV2024Api extends BaseAPI {
|
|
|
119223
120612
|
}
|
|
119224
120613
|
|
|
119225
120614
|
/**
|
|
119226
|
-
* This API returns a list of all tagged objects by type.
|
|
120615
|
+
* This API returns a list of all tagged objects by type.
|
|
119227
120616
|
* @summary List tagged objects by type
|
|
119228
120617
|
* @param {TaggedObjectsV2024ApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
119229
120618
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -119247,7 +120636,7 @@ export class TaggedObjectsV2024Api extends BaseAPI {
|
|
|
119247
120636
|
}
|
|
119248
120637
|
|
|
119249
120638
|
/**
|
|
119250
|
-
* This adds a tag to an object.
|
|
120639
|
+
* This adds a tag to an object.
|
|
119251
120640
|
* @summary Add tag to object
|
|
119252
120641
|
* @param {TaggedObjectsV2024ApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
119253
120642
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -119329,6 +120718,464 @@ export const PutTaggedObjectTypeV2024 = {
|
|
|
119329
120718
|
export type PutTaggedObjectTypeV2024 = typeof PutTaggedObjectTypeV2024[keyof typeof PutTaggedObjectTypeV2024];
|
|
119330
120719
|
|
|
119331
120720
|
|
|
120721
|
+
/**
|
|
120722
|
+
* TagsV2024Api - axios parameter creator
|
|
120723
|
+
* @export
|
|
120724
|
+
*/
|
|
120725
|
+
export const TagsV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
120726
|
+
return {
|
|
120727
|
+
/**
|
|
120728
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120729
|
+
* @summary Create tag
|
|
120730
|
+
* @param {TagV2024} tagV2024
|
|
120731
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120732
|
+
* @throws {RequiredError}
|
|
120733
|
+
*/
|
|
120734
|
+
createTag: async (tagV2024: TagV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
120735
|
+
// verify required parameter 'tagV2024' is not null or undefined
|
|
120736
|
+
assertParamExists('createTag', 'tagV2024', tagV2024)
|
|
120737
|
+
const localVarPath = `/tags`;
|
|
120738
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
120739
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
120740
|
+
let baseOptions;
|
|
120741
|
+
if (configuration) {
|
|
120742
|
+
baseOptions = configuration.baseOptions;
|
|
120743
|
+
}
|
|
120744
|
+
|
|
120745
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
120746
|
+
const localVarHeaderParameter = {} as any;
|
|
120747
|
+
const localVarQueryParameter = {} as any;
|
|
120748
|
+
|
|
120749
|
+
// authentication userAuth required
|
|
120750
|
+
// oauth required
|
|
120751
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
120752
|
+
|
|
120753
|
+
// authentication userAuth required
|
|
120754
|
+
// oauth required
|
|
120755
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
120756
|
+
|
|
120757
|
+
|
|
120758
|
+
|
|
120759
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
120760
|
+
|
|
120761
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
120762
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
120763
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
120764
|
+
localVarRequestOptions.data = serializeDataIfNeeded(tagV2024, localVarRequestOptions, configuration)
|
|
120765
|
+
|
|
120766
|
+
return {
|
|
120767
|
+
url: toPathString(localVarUrlObj),
|
|
120768
|
+
axiosOptions: localVarRequestOptions,
|
|
120769
|
+
};
|
|
120770
|
+
},
|
|
120771
|
+
/**
|
|
120772
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120773
|
+
* @summary Delete tag
|
|
120774
|
+
* @param {string} id The ID of the object reference to delete.
|
|
120775
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120776
|
+
* @throws {RequiredError}
|
|
120777
|
+
*/
|
|
120778
|
+
deleteTagById: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
120779
|
+
// verify required parameter 'id' is not null or undefined
|
|
120780
|
+
assertParamExists('deleteTagById', 'id', id)
|
|
120781
|
+
const localVarPath = `/tags/{id}`
|
|
120782
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
120783
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
120784
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
120785
|
+
let baseOptions;
|
|
120786
|
+
if (configuration) {
|
|
120787
|
+
baseOptions = configuration.baseOptions;
|
|
120788
|
+
}
|
|
120789
|
+
|
|
120790
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
120791
|
+
const localVarHeaderParameter = {} as any;
|
|
120792
|
+
const localVarQueryParameter = {} as any;
|
|
120793
|
+
|
|
120794
|
+
// authentication userAuth required
|
|
120795
|
+
// oauth required
|
|
120796
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
120797
|
+
|
|
120798
|
+
// authentication userAuth required
|
|
120799
|
+
// oauth required
|
|
120800
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
120801
|
+
|
|
120802
|
+
|
|
120803
|
+
|
|
120804
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
120805
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
120806
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
120807
|
+
|
|
120808
|
+
return {
|
|
120809
|
+
url: toPathString(localVarUrlObj),
|
|
120810
|
+
axiosOptions: localVarRequestOptions,
|
|
120811
|
+
};
|
|
120812
|
+
},
|
|
120813
|
+
/**
|
|
120814
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120815
|
+
* @summary Get tag by id
|
|
120816
|
+
* @param {string} id The ID of the object reference to retrieve.
|
|
120817
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120818
|
+
* @throws {RequiredError}
|
|
120819
|
+
*/
|
|
120820
|
+
getTagById: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
120821
|
+
// verify required parameter 'id' is not null or undefined
|
|
120822
|
+
assertParamExists('getTagById', 'id', id)
|
|
120823
|
+
const localVarPath = `/tags/{id}`
|
|
120824
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
120825
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
120826
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
120827
|
+
let baseOptions;
|
|
120828
|
+
if (configuration) {
|
|
120829
|
+
baseOptions = configuration.baseOptions;
|
|
120830
|
+
}
|
|
120831
|
+
|
|
120832
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
120833
|
+
const localVarHeaderParameter = {} as any;
|
|
120834
|
+
const localVarQueryParameter = {} as any;
|
|
120835
|
+
|
|
120836
|
+
// authentication userAuth required
|
|
120837
|
+
// oauth required
|
|
120838
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
120839
|
+
|
|
120840
|
+
// authentication userAuth required
|
|
120841
|
+
// oauth required
|
|
120842
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
120843
|
+
|
|
120844
|
+
|
|
120845
|
+
|
|
120846
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
120847
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
120848
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
120849
|
+
|
|
120850
|
+
return {
|
|
120851
|
+
url: toPathString(localVarUrlObj),
|
|
120852
|
+
axiosOptions: localVarRequestOptions,
|
|
120853
|
+
};
|
|
120854
|
+
},
|
|
120855
|
+
/**
|
|
120856
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120857
|
+
* @summary List tags
|
|
120858
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
120859
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
120860
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
120861
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
120862
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
|
|
120863
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120864
|
+
* @throws {RequiredError}
|
|
120865
|
+
*/
|
|
120866
|
+
listTags: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
120867
|
+
const localVarPath = `/tags`;
|
|
120868
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
120869
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
120870
|
+
let baseOptions;
|
|
120871
|
+
if (configuration) {
|
|
120872
|
+
baseOptions = configuration.baseOptions;
|
|
120873
|
+
}
|
|
120874
|
+
|
|
120875
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
120876
|
+
const localVarHeaderParameter = {} as any;
|
|
120877
|
+
const localVarQueryParameter = {} as any;
|
|
120878
|
+
|
|
120879
|
+
// authentication userAuth required
|
|
120880
|
+
// oauth required
|
|
120881
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
120882
|
+
|
|
120883
|
+
// authentication userAuth required
|
|
120884
|
+
// oauth required
|
|
120885
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
|
|
120886
|
+
|
|
120887
|
+
if (limit !== undefined) {
|
|
120888
|
+
localVarQueryParameter['limit'] = limit;
|
|
120889
|
+
}
|
|
120890
|
+
|
|
120891
|
+
if (offset !== undefined) {
|
|
120892
|
+
localVarQueryParameter['offset'] = offset;
|
|
120893
|
+
}
|
|
120894
|
+
|
|
120895
|
+
if (count !== undefined) {
|
|
120896
|
+
localVarQueryParameter['count'] = count;
|
|
120897
|
+
}
|
|
120898
|
+
|
|
120899
|
+
if (filters !== undefined) {
|
|
120900
|
+
localVarQueryParameter['filters'] = filters;
|
|
120901
|
+
}
|
|
120902
|
+
|
|
120903
|
+
if (sorters !== undefined) {
|
|
120904
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
120905
|
+
}
|
|
120906
|
+
|
|
120907
|
+
|
|
120908
|
+
|
|
120909
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
120910
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
120911
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
120912
|
+
|
|
120913
|
+
return {
|
|
120914
|
+
url: toPathString(localVarUrlObj),
|
|
120915
|
+
axiosOptions: localVarRequestOptions,
|
|
120916
|
+
};
|
|
120917
|
+
},
|
|
120918
|
+
}
|
|
120919
|
+
};
|
|
120920
|
+
|
|
120921
|
+
/**
|
|
120922
|
+
* TagsV2024Api - functional programming interface
|
|
120923
|
+
* @export
|
|
120924
|
+
*/
|
|
120925
|
+
export const TagsV2024ApiFp = function(configuration?: Configuration) {
|
|
120926
|
+
const localVarAxiosParamCreator = TagsV2024ApiAxiosParamCreator(configuration)
|
|
120927
|
+
return {
|
|
120928
|
+
/**
|
|
120929
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120930
|
+
* @summary Create tag
|
|
120931
|
+
* @param {TagV2024} tagV2024
|
|
120932
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120933
|
+
* @throws {RequiredError}
|
|
120934
|
+
*/
|
|
120935
|
+
async createTag(tagV2024: TagV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>> {
|
|
120936
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createTag(tagV2024, axiosOptions);
|
|
120937
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
120938
|
+
const localVarOperationServerBasePath = operationServerMap['TagsV2024Api.createTag']?.[localVarOperationServerIndex]?.url;
|
|
120939
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
120940
|
+
},
|
|
120941
|
+
/**
|
|
120942
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120943
|
+
* @summary Delete tag
|
|
120944
|
+
* @param {string} id The ID of the object reference to delete.
|
|
120945
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120946
|
+
* @throws {RequiredError}
|
|
120947
|
+
*/
|
|
120948
|
+
async deleteTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
120949
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTagById(id, axiosOptions);
|
|
120950
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
120951
|
+
const localVarOperationServerBasePath = operationServerMap['TagsV2024Api.deleteTagById']?.[localVarOperationServerIndex]?.url;
|
|
120952
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
120953
|
+
},
|
|
120954
|
+
/**
|
|
120955
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120956
|
+
* @summary Get tag by id
|
|
120957
|
+
* @param {string} id The ID of the object reference to retrieve.
|
|
120958
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120959
|
+
* @throws {RequiredError}
|
|
120960
|
+
*/
|
|
120961
|
+
async getTagById(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TagV2024>> {
|
|
120962
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getTagById(id, axiosOptions);
|
|
120963
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
120964
|
+
const localVarOperationServerBasePath = operationServerMap['TagsV2024Api.getTagById']?.[localVarOperationServerIndex]?.url;
|
|
120965
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
120966
|
+
},
|
|
120967
|
+
/**
|
|
120968
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120969
|
+
* @summary List tags
|
|
120970
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
120971
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
120972
|
+
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
120973
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
120974
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
|
|
120975
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120976
|
+
* @throws {RequiredError}
|
|
120977
|
+
*/
|
|
120978
|
+
async listTags(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TagV2024>>> {
|
|
120979
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listTags(limit, offset, count, filters, sorters, axiosOptions);
|
|
120980
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
120981
|
+
const localVarOperationServerBasePath = operationServerMap['TagsV2024Api.listTags']?.[localVarOperationServerIndex]?.url;
|
|
120982
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
120983
|
+
},
|
|
120984
|
+
}
|
|
120985
|
+
};
|
|
120986
|
+
|
|
120987
|
+
/**
|
|
120988
|
+
* TagsV2024Api - factory interface
|
|
120989
|
+
* @export
|
|
120990
|
+
*/
|
|
120991
|
+
export const TagsV2024ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
120992
|
+
const localVarFp = TagsV2024ApiFp(configuration)
|
|
120993
|
+
return {
|
|
120994
|
+
/**
|
|
120995
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
120996
|
+
* @summary Create tag
|
|
120997
|
+
* @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
|
|
120998
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
120999
|
+
* @throws {RequiredError}
|
|
121000
|
+
*/
|
|
121001
|
+
createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024> {
|
|
121002
|
+
return localVarFp.createTag(requestParameters.tagV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
121003
|
+
},
|
|
121004
|
+
/**
|
|
121005
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
121006
|
+
* @summary Delete tag
|
|
121007
|
+
* @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
|
|
121008
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121009
|
+
* @throws {RequiredError}
|
|
121010
|
+
*/
|
|
121011
|
+
deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
121012
|
+
return localVarFp.deleteTagById(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
121013
|
+
},
|
|
121014
|
+
/**
|
|
121015
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
121016
|
+
* @summary Get tag by id
|
|
121017
|
+
* @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
|
|
121018
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121019
|
+
* @throws {RequiredError}
|
|
121020
|
+
*/
|
|
121021
|
+
getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TagV2024> {
|
|
121022
|
+
return localVarFp.getTagById(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
121023
|
+
},
|
|
121024
|
+
/**
|
|
121025
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
121026
|
+
* @summary List tags
|
|
121027
|
+
* @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
|
|
121028
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121029
|
+
* @throws {RequiredError}
|
|
121030
|
+
*/
|
|
121031
|
+
listTags(requestParameters: TagsV2024ApiListTagsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TagV2024>> {
|
|
121032
|
+
return localVarFp.listTags(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
121033
|
+
},
|
|
121034
|
+
};
|
|
121035
|
+
};
|
|
121036
|
+
|
|
121037
|
+
/**
|
|
121038
|
+
* Request parameters for createTag operation in TagsV2024Api.
|
|
121039
|
+
* @export
|
|
121040
|
+
* @interface TagsV2024ApiCreateTagRequest
|
|
121041
|
+
*/
|
|
121042
|
+
export interface TagsV2024ApiCreateTagRequest {
|
|
121043
|
+
/**
|
|
121044
|
+
*
|
|
121045
|
+
* @type {TagV2024}
|
|
121046
|
+
* @memberof TagsV2024ApiCreateTag
|
|
121047
|
+
*/
|
|
121048
|
+
readonly tagV2024: TagV2024
|
|
121049
|
+
}
|
|
121050
|
+
|
|
121051
|
+
/**
|
|
121052
|
+
* Request parameters for deleteTagById operation in TagsV2024Api.
|
|
121053
|
+
* @export
|
|
121054
|
+
* @interface TagsV2024ApiDeleteTagByIdRequest
|
|
121055
|
+
*/
|
|
121056
|
+
export interface TagsV2024ApiDeleteTagByIdRequest {
|
|
121057
|
+
/**
|
|
121058
|
+
* The ID of the object reference to delete.
|
|
121059
|
+
* @type {string}
|
|
121060
|
+
* @memberof TagsV2024ApiDeleteTagById
|
|
121061
|
+
*/
|
|
121062
|
+
readonly id: string
|
|
121063
|
+
}
|
|
121064
|
+
|
|
121065
|
+
/**
|
|
121066
|
+
* Request parameters for getTagById operation in TagsV2024Api.
|
|
121067
|
+
* @export
|
|
121068
|
+
* @interface TagsV2024ApiGetTagByIdRequest
|
|
121069
|
+
*/
|
|
121070
|
+
export interface TagsV2024ApiGetTagByIdRequest {
|
|
121071
|
+
/**
|
|
121072
|
+
* The ID of the object reference to retrieve.
|
|
121073
|
+
* @type {string}
|
|
121074
|
+
* @memberof TagsV2024ApiGetTagById
|
|
121075
|
+
*/
|
|
121076
|
+
readonly id: string
|
|
121077
|
+
}
|
|
121078
|
+
|
|
121079
|
+
/**
|
|
121080
|
+
* Request parameters for listTags operation in TagsV2024Api.
|
|
121081
|
+
* @export
|
|
121082
|
+
* @interface TagsV2024ApiListTagsRequest
|
|
121083
|
+
*/
|
|
121084
|
+
export interface TagsV2024ApiListTagsRequest {
|
|
121085
|
+
/**
|
|
121086
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
121087
|
+
* @type {number}
|
|
121088
|
+
* @memberof TagsV2024ApiListTags
|
|
121089
|
+
*/
|
|
121090
|
+
readonly limit?: number
|
|
121091
|
+
|
|
121092
|
+
/**
|
|
121093
|
+
* Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
121094
|
+
* @type {number}
|
|
121095
|
+
* @memberof TagsV2024ApiListTags
|
|
121096
|
+
*/
|
|
121097
|
+
readonly offset?: number
|
|
121098
|
+
|
|
121099
|
+
/**
|
|
121100
|
+
* If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
121101
|
+
* @type {boolean}
|
|
121102
|
+
* @memberof TagsV2024ApiListTags
|
|
121103
|
+
*/
|
|
121104
|
+
readonly count?: boolean
|
|
121105
|
+
|
|
121106
|
+
/**
|
|
121107
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw*
|
|
121108
|
+
* @type {string}
|
|
121109
|
+
* @memberof TagsV2024ApiListTags
|
|
121110
|
+
*/
|
|
121111
|
+
readonly filters?: string
|
|
121112
|
+
|
|
121113
|
+
/**
|
|
121114
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified**
|
|
121115
|
+
* @type {string}
|
|
121116
|
+
* @memberof TagsV2024ApiListTags
|
|
121117
|
+
*/
|
|
121118
|
+
readonly sorters?: string
|
|
121119
|
+
}
|
|
121120
|
+
|
|
121121
|
+
/**
|
|
121122
|
+
* TagsV2024Api - object-oriented interface
|
|
121123
|
+
* @export
|
|
121124
|
+
* @class TagsV2024Api
|
|
121125
|
+
* @extends {BaseAPI}
|
|
121126
|
+
*/
|
|
121127
|
+
export class TagsV2024Api extends BaseAPI {
|
|
121128
|
+
/**
|
|
121129
|
+
* This API creates new tag. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
121130
|
+
* @summary Create tag
|
|
121131
|
+
* @param {TagsV2024ApiCreateTagRequest} requestParameters Request parameters.
|
|
121132
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121133
|
+
* @throws {RequiredError}
|
|
121134
|
+
* @memberof TagsV2024Api
|
|
121135
|
+
*/
|
|
121136
|
+
public createTag(requestParameters: TagsV2024ApiCreateTagRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
121137
|
+
return TagsV2024ApiFp(this.configuration).createTag(requestParameters.tagV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
121138
|
+
}
|
|
121139
|
+
|
|
121140
|
+
/**
|
|
121141
|
+
* This API deletes a tag by specified id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
121142
|
+
* @summary Delete tag
|
|
121143
|
+
* @param {TagsV2024ApiDeleteTagByIdRequest} requestParameters Request parameters.
|
|
121144
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121145
|
+
* @throws {RequiredError}
|
|
121146
|
+
* @memberof TagsV2024Api
|
|
121147
|
+
*/
|
|
121148
|
+
public deleteTagById(requestParameters: TagsV2024ApiDeleteTagByIdRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
121149
|
+
return TagsV2024ApiFp(this.configuration).deleteTagById(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
121150
|
+
}
|
|
121151
|
+
|
|
121152
|
+
/**
|
|
121153
|
+
* Returns a tag by its id. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
121154
|
+
* @summary Get tag by id
|
|
121155
|
+
* @param {TagsV2024ApiGetTagByIdRequest} requestParameters Request parameters.
|
|
121156
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121157
|
+
* @throws {RequiredError}
|
|
121158
|
+
* @memberof TagsV2024Api
|
|
121159
|
+
*/
|
|
121160
|
+
public getTagById(requestParameters: TagsV2024ApiGetTagByIdRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
121161
|
+
return TagsV2024ApiFp(this.configuration).getTagById(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
121162
|
+
}
|
|
121163
|
+
|
|
121164
|
+
/**
|
|
121165
|
+
* This API returns a list of tags. A token with API, ORG_ADMIN, CERT_ADMIN, REPORT_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
121166
|
+
* @summary List tags
|
|
121167
|
+
* @param {TagsV2024ApiListTagsRequest} requestParameters Request parameters.
|
|
121168
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121169
|
+
* @throws {RequiredError}
|
|
121170
|
+
* @memberof TagsV2024Api
|
|
121171
|
+
*/
|
|
121172
|
+
public listTags(requestParameters: TagsV2024ApiListTagsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
121173
|
+
return TagsV2024ApiFp(this.configuration).listTags(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
121174
|
+
}
|
|
121175
|
+
}
|
|
121176
|
+
|
|
121177
|
+
|
|
121178
|
+
|
|
119332
121179
|
/**
|
|
119333
121180
|
* TaskManagementV2024Api - axios parameter creator
|
|
119334
121181
|
* @export
|
|
@@ -122432,301 +124279,6 @@ export class UIMetadataV2024Api extends BaseAPI {
|
|
|
122432
124279
|
|
|
122433
124280
|
|
|
122434
124281
|
|
|
122435
|
-
/**
|
|
122436
|
-
* VendorConnectorMappingsV2024Api - axios parameter creator
|
|
122437
|
-
* @export
|
|
122438
|
-
*/
|
|
122439
|
-
export const VendorConnectorMappingsV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
122440
|
-
return {
|
|
122441
|
-
/**
|
|
122442
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
122443
|
-
* @summary Create vendor connector mapping
|
|
122444
|
-
* @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
|
|
122445
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122446
|
-
* @throws {RequiredError}
|
|
122447
|
-
*/
|
|
122448
|
-
createVendorConnectorMapping: async (vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
122449
|
-
// verify required parameter 'vendorConnectorMappingV2024' is not null or undefined
|
|
122450
|
-
assertParamExists('createVendorConnectorMapping', 'vendorConnectorMappingV2024', vendorConnectorMappingV2024)
|
|
122451
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
122452
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
122453
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
122454
|
-
let baseOptions;
|
|
122455
|
-
if (configuration) {
|
|
122456
|
-
baseOptions = configuration.baseOptions;
|
|
122457
|
-
}
|
|
122458
|
-
|
|
122459
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
122460
|
-
const localVarHeaderParameter = {} as any;
|
|
122461
|
-
const localVarQueryParameter = {} as any;
|
|
122462
|
-
|
|
122463
|
-
// authentication userAuth required
|
|
122464
|
-
// oauth required
|
|
122465
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122466
|
-
|
|
122467
|
-
// authentication userAuth required
|
|
122468
|
-
// oauth required
|
|
122469
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122470
|
-
|
|
122471
|
-
|
|
122472
|
-
|
|
122473
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
122474
|
-
|
|
122475
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
122476
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
122477
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
122478
|
-
localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMappingV2024, localVarRequestOptions, configuration)
|
|
122479
|
-
|
|
122480
|
-
return {
|
|
122481
|
-
url: toPathString(localVarUrlObj),
|
|
122482
|
-
axiosOptions: localVarRequestOptions,
|
|
122483
|
-
};
|
|
122484
|
-
},
|
|
122485
|
-
/**
|
|
122486
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
122487
|
-
* @summary Delete vendor connector mapping
|
|
122488
|
-
* @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
|
|
122489
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122490
|
-
* @throws {RequiredError}
|
|
122491
|
-
*/
|
|
122492
|
-
deleteVendorConnectorMapping: async (vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
122493
|
-
// verify required parameter 'vendorConnectorMappingV2024' is not null or undefined
|
|
122494
|
-
assertParamExists('deleteVendorConnectorMapping', 'vendorConnectorMappingV2024', vendorConnectorMappingV2024)
|
|
122495
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
122496
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
122497
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
122498
|
-
let baseOptions;
|
|
122499
|
-
if (configuration) {
|
|
122500
|
-
baseOptions = configuration.baseOptions;
|
|
122501
|
-
}
|
|
122502
|
-
|
|
122503
|
-
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
122504
|
-
const localVarHeaderParameter = {} as any;
|
|
122505
|
-
const localVarQueryParameter = {} as any;
|
|
122506
|
-
|
|
122507
|
-
// authentication userAuth required
|
|
122508
|
-
// oauth required
|
|
122509
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122510
|
-
|
|
122511
|
-
// authentication userAuth required
|
|
122512
|
-
// oauth required
|
|
122513
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122514
|
-
|
|
122515
|
-
|
|
122516
|
-
|
|
122517
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
122518
|
-
|
|
122519
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
122520
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
122521
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
122522
|
-
localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMappingV2024, localVarRequestOptions, configuration)
|
|
122523
|
-
|
|
122524
|
-
return {
|
|
122525
|
-
url: toPathString(localVarUrlObj),
|
|
122526
|
-
axiosOptions: localVarRequestOptions,
|
|
122527
|
-
};
|
|
122528
|
-
},
|
|
122529
|
-
/**
|
|
122530
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
122531
|
-
* @summary List vendor connector mappings
|
|
122532
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122533
|
-
* @throws {RequiredError}
|
|
122534
|
-
*/
|
|
122535
|
-
getVendorConnectorMappings: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
122536
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
122537
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
122538
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
122539
|
-
let baseOptions;
|
|
122540
|
-
if (configuration) {
|
|
122541
|
-
baseOptions = configuration.baseOptions;
|
|
122542
|
-
}
|
|
122543
|
-
|
|
122544
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
122545
|
-
const localVarHeaderParameter = {} as any;
|
|
122546
|
-
const localVarQueryParameter = {} as any;
|
|
122547
|
-
|
|
122548
|
-
// authentication userAuth required
|
|
122549
|
-
// oauth required
|
|
122550
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122551
|
-
|
|
122552
|
-
// authentication userAuth required
|
|
122553
|
-
// oauth required
|
|
122554
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
122555
|
-
|
|
122556
|
-
|
|
122557
|
-
|
|
122558
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
122559
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
122560
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
122561
|
-
|
|
122562
|
-
return {
|
|
122563
|
-
url: toPathString(localVarUrlObj),
|
|
122564
|
-
axiosOptions: localVarRequestOptions,
|
|
122565
|
-
};
|
|
122566
|
-
},
|
|
122567
|
-
}
|
|
122568
|
-
};
|
|
122569
|
-
|
|
122570
|
-
/**
|
|
122571
|
-
* VendorConnectorMappingsV2024Api - functional programming interface
|
|
122572
|
-
* @export
|
|
122573
|
-
*/
|
|
122574
|
-
export const VendorConnectorMappingsV2024ApiFp = function(configuration?: Configuration) {
|
|
122575
|
-
const localVarAxiosParamCreator = VendorConnectorMappingsV2024ApiAxiosParamCreator(configuration)
|
|
122576
|
-
return {
|
|
122577
|
-
/**
|
|
122578
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
122579
|
-
* @summary Create vendor connector mapping
|
|
122580
|
-
* @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
|
|
122581
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122582
|
-
* @throws {RequiredError}
|
|
122583
|
-
*/
|
|
122584
|
-
async createVendorConnectorMapping(vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMappingV2024>> {
|
|
122585
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createVendorConnectorMapping(vendorConnectorMappingV2024, axiosOptions);
|
|
122586
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
122587
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsV2024Api.createVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
|
|
122588
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
122589
|
-
},
|
|
122590
|
-
/**
|
|
122591
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
122592
|
-
* @summary Delete vendor connector mapping
|
|
122593
|
-
* @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
|
|
122594
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122595
|
-
* @throws {RequiredError}
|
|
122596
|
-
*/
|
|
122597
|
-
async deleteVendorConnectorMapping(vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200ResponseV2024>> {
|
|
122598
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVendorConnectorMapping(vendorConnectorMappingV2024, axiosOptions);
|
|
122599
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
122600
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsV2024Api.deleteVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
|
|
122601
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
122602
|
-
},
|
|
122603
|
-
/**
|
|
122604
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
122605
|
-
* @summary List vendor connector mappings
|
|
122606
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122607
|
-
* @throws {RequiredError}
|
|
122608
|
-
*/
|
|
122609
|
-
async getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMappingV2024>>> {
|
|
122610
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getVendorConnectorMappings(axiosOptions);
|
|
122611
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
122612
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsV2024Api.getVendorConnectorMappings']?.[localVarOperationServerIndex]?.url;
|
|
122613
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
122614
|
-
},
|
|
122615
|
-
}
|
|
122616
|
-
};
|
|
122617
|
-
|
|
122618
|
-
/**
|
|
122619
|
-
* VendorConnectorMappingsV2024Api - factory interface
|
|
122620
|
-
* @export
|
|
122621
|
-
*/
|
|
122622
|
-
export const VendorConnectorMappingsV2024ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
122623
|
-
const localVarFp = VendorConnectorMappingsV2024ApiFp(configuration)
|
|
122624
|
-
return {
|
|
122625
|
-
/**
|
|
122626
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
122627
|
-
* @summary Create vendor connector mapping
|
|
122628
|
-
* @param {VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
122629
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122630
|
-
* @throws {RequiredError}
|
|
122631
|
-
*/
|
|
122632
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMappingV2024> {
|
|
122633
|
-
return localVarFp.createVendorConnectorMapping(requestParameters.vendorConnectorMappingV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
122634
|
-
},
|
|
122635
|
-
/**
|
|
122636
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
122637
|
-
* @summary Delete vendor connector mapping
|
|
122638
|
-
* @param {VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
122639
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122640
|
-
* @throws {RequiredError}
|
|
122641
|
-
*/
|
|
122642
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200ResponseV2024> {
|
|
122643
|
-
return localVarFp.deleteVendorConnectorMapping(requestParameters.vendorConnectorMappingV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
122644
|
-
},
|
|
122645
|
-
/**
|
|
122646
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
122647
|
-
* @summary List vendor connector mappings
|
|
122648
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122649
|
-
* @throws {RequiredError}
|
|
122650
|
-
*/
|
|
122651
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMappingV2024>> {
|
|
122652
|
-
return localVarFp.getVendorConnectorMappings(axiosOptions).then((request) => request(axios, basePath));
|
|
122653
|
-
},
|
|
122654
|
-
};
|
|
122655
|
-
};
|
|
122656
|
-
|
|
122657
|
-
/**
|
|
122658
|
-
* Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsV2024Api.
|
|
122659
|
-
* @export
|
|
122660
|
-
* @interface VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest
|
|
122661
|
-
*/
|
|
122662
|
-
export interface VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest {
|
|
122663
|
-
/**
|
|
122664
|
-
*
|
|
122665
|
-
* @type {VendorConnectorMappingV2024}
|
|
122666
|
-
* @memberof VendorConnectorMappingsV2024ApiCreateVendorConnectorMapping
|
|
122667
|
-
*/
|
|
122668
|
-
readonly vendorConnectorMappingV2024: VendorConnectorMappingV2024
|
|
122669
|
-
}
|
|
122670
|
-
|
|
122671
|
-
/**
|
|
122672
|
-
* Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsV2024Api.
|
|
122673
|
-
* @export
|
|
122674
|
-
* @interface VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest
|
|
122675
|
-
*/
|
|
122676
|
-
export interface VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest {
|
|
122677
|
-
/**
|
|
122678
|
-
*
|
|
122679
|
-
* @type {VendorConnectorMappingV2024}
|
|
122680
|
-
* @memberof VendorConnectorMappingsV2024ApiDeleteVendorConnectorMapping
|
|
122681
|
-
*/
|
|
122682
|
-
readonly vendorConnectorMappingV2024: VendorConnectorMappingV2024
|
|
122683
|
-
}
|
|
122684
|
-
|
|
122685
|
-
/**
|
|
122686
|
-
* VendorConnectorMappingsV2024Api - object-oriented interface
|
|
122687
|
-
* @export
|
|
122688
|
-
* @class VendorConnectorMappingsV2024Api
|
|
122689
|
-
* @extends {BaseAPI}
|
|
122690
|
-
*/
|
|
122691
|
-
export class VendorConnectorMappingsV2024Api extends BaseAPI {
|
|
122692
|
-
/**
|
|
122693
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
122694
|
-
* @summary Create vendor connector mapping
|
|
122695
|
-
* @param {VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
122696
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122697
|
-
* @throws {RequiredError}
|
|
122698
|
-
* @memberof VendorConnectorMappingsV2024Api
|
|
122699
|
-
*/
|
|
122700
|
-
public createVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
122701
|
-
return VendorConnectorMappingsV2024ApiFp(this.configuration).createVendorConnectorMapping(requestParameters.vendorConnectorMappingV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
122702
|
-
}
|
|
122703
|
-
|
|
122704
|
-
/**
|
|
122705
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
122706
|
-
* @summary Delete vendor connector mapping
|
|
122707
|
-
* @param {VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
122708
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122709
|
-
* @throws {RequiredError}
|
|
122710
|
-
* @memberof VendorConnectorMappingsV2024Api
|
|
122711
|
-
*/
|
|
122712
|
-
public deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
122713
|
-
return VendorConnectorMappingsV2024ApiFp(this.configuration).deleteVendorConnectorMapping(requestParameters.vendorConnectorMappingV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
122714
|
-
}
|
|
122715
|
-
|
|
122716
|
-
/**
|
|
122717
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
122718
|
-
* @summary List vendor connector mappings
|
|
122719
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
122720
|
-
* @throws {RequiredError}
|
|
122721
|
-
* @memberof VendorConnectorMappingsV2024Api
|
|
122722
|
-
*/
|
|
122723
|
-
public getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig) {
|
|
122724
|
-
return VendorConnectorMappingsV2024ApiFp(this.configuration).getVendorConnectorMappings(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
122725
|
-
}
|
|
122726
|
-
}
|
|
122727
|
-
|
|
122728
|
-
|
|
122729
|
-
|
|
122730
124282
|
/**
|
|
122731
124283
|
* WorkItemsV2024Api - axios parameter creator
|
|
122732
124284
|
* @export
|
|
@@ -125927,7 +127479,7 @@ export const WorkflowsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
125927
127479
|
};
|
|
125928
127480
|
},
|
|
125929
127481
|
/**
|
|
125930
|
-
* :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/
|
|
127482
|
+
* :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
|
|
125931
127483
|
* @summary Test workflow by id
|
|
125932
127484
|
* @param {string} id Id of the workflow
|
|
125933
127485
|
* @param {TestWorkflowRequestV2024} testWorkflowRequestV2024
|
|
@@ -126216,7 +127768,7 @@ export const WorkflowsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
126216
127768
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
126217
127769
|
},
|
|
126218
127770
|
/**
|
|
126219
|
-
* :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/
|
|
127771
|
+
* :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
|
|
126220
127772
|
* @summary Test workflow by id
|
|
126221
127773
|
* @param {string} id Id of the workflow
|
|
126222
127774
|
* @param {TestWorkflowRequestV2024} testWorkflowRequestV2024
|
|
@@ -126408,7 +127960,7 @@ export const WorkflowsV2024ApiFactory = function (configuration?: Configuration,
|
|
|
126408
127960
|
return localVarFp.testExternalExecuteWorkflow(requestParameters.id, requestParameters.testExternalExecuteWorkflowRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
126409
127961
|
},
|
|
126410
127962
|
/**
|
|
126411
|
-
* :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/
|
|
127963
|
+
* :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
|
|
126412
127964
|
* @summary Test workflow by id
|
|
126413
127965
|
* @param {WorkflowsV2024ApiTestWorkflowRequest} requestParameters Request parameters.
|
|
126414
127966
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -126945,7 +128497,7 @@ export class WorkflowsV2024Api extends BaseAPI {
|
|
|
126945
128497
|
}
|
|
126946
128498
|
|
|
126947
128499
|
/**
|
|
126948
|
-
* :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/
|
|
128500
|
+
* :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
|
|
126949
128501
|
* @summary Test workflow by id
|
|
126950
128502
|
* @param {WorkflowsV2024ApiTestWorkflowRequest} requestParameters Request parameters.
|
|
126951
128503
|
* @param {*} [axiosOptions] Override http request option.
|