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.
Files changed (72) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +343 -1123
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +321 -840
  6. package/dist/beta/api.js +113 -699
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/beta/common.js.map +1 -1
  10. package/dist/generic/api.d.ts +386 -0
  11. package/dist/generic/api.js +689 -0
  12. package/dist/generic/api.js.map +1 -0
  13. package/dist/generic/base.d.ts +66 -0
  14. package/dist/generic/base.js +89 -0
  15. package/dist/generic/base.js.map +1 -0
  16. package/dist/generic/common.d.ts +65 -0
  17. package/dist/generic/common.js +260 -0
  18. package/dist/generic/common.js.map +1 -0
  19. package/dist/generic/configuration.d.ts +91 -0
  20. package/dist/generic/configuration.js +46 -0
  21. package/dist/generic/configuration.js.map +1 -0
  22. package/dist/generic/index.d.ts +13 -0
  23. package/dist/generic/index.js +32 -0
  24. package/dist/generic/index.js.map +1 -0
  25. package/dist/index.d.ts +5 -4
  26. package/dist/index.js +1 -0
  27. package/dist/index.js.map +1 -1
  28. package/dist/paginator.d.ts +3 -1
  29. package/dist/paginator.js +146 -0
  30. package/dist/paginator.js.map +1 -1
  31. package/dist/v2024/api.d.ts +1536 -511
  32. package/dist/v2024/api.js +5111 -4045
  33. package/dist/v2024/api.js.map +1 -1
  34. package/dist/v2024/common.js +1 -1
  35. package/dist/v2024/common.js.map +1 -1
  36. package/dist/v2025/api.d.ts +5099 -632
  37. package/dist/v2025/api.js +11068 -7033
  38. package/dist/v2025/api.js.map +1 -1
  39. package/dist/v2025/common.js +1 -1
  40. package/dist/v2025/common.js.map +1 -1
  41. package/dist/v3/api.d.ts +122 -444
  42. package/dist/v3/api.js +88 -407
  43. package/dist/v3/api.js.map +1 -1
  44. package/dist/v3/common.js +1 -1
  45. package/dist/v3/common.js.map +1 -1
  46. package/generic/.openapi-generator/FILES +11 -0
  47. package/generic/.openapi-generator/VERSION +1 -0
  48. package/generic/.openapi-generator-ignore +23 -0
  49. package/generic/README.md +46 -0
  50. package/generic/api.ts +681 -0
  51. package/generic/base.ts +86 -0
  52. package/generic/common.ts +159 -0
  53. package/generic/configuration.ts +110 -0
  54. package/generic/git_push.sh +57 -0
  55. package/generic/index.ts +18 -0
  56. package/generic/package.json +34 -0
  57. package/generic/tsconfig.json +21 -0
  58. package/index.ts +9 -7
  59. package/package.json +1 -1
  60. package/paginator.ts +137 -11
  61. package/v2024/README.md +2 -2
  62. package/v2024/api.ts +2323 -771
  63. package/v2024/common.ts +2 -2
  64. package/v2024/package.json +1 -1
  65. package/v2025/README.md +2 -2
  66. package/v2025/api.ts +7689 -1221
  67. package/v2025/common.ts +2 -2
  68. package/v2025/package.json +1 -1
  69. package/v3/README.md +2 -2
  70. package/v3/api.ts +146 -611
  71. package/v3/common.ts +2 -2
  72. package/v3/package.json +1 -1
package/beta/api.ts CHANGED
@@ -973,13 +973,13 @@ export interface AccessItemRoleResponseBeta {
973
973
  */
974
974
  export interface AccessProfileApprovalSchemeBeta {
975
975
  /**
976
- * 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
976
+ * 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.
977
977
  * @type {string}
978
978
  * @memberof AccessProfileApprovalSchemeBeta
979
979
  */
980
980
  'approverType'?: AccessProfileApprovalSchemeBetaApproverTypeBeta;
981
981
  /**
982
- * Specific approver ID. Only use this when the `approverType` is `GOVERNANCE_GROUP`.
982
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
983
983
  * @type {string}
984
984
  * @memberof AccessProfileApprovalSchemeBeta
985
985
  */
@@ -991,7 +991,8 @@ export const AccessProfileApprovalSchemeBetaApproverTypeBeta = {
991
991
  Owner: 'OWNER',
992
992
  SourceOwner: 'SOURCE_OWNER',
993
993
  Manager: 'MANAGER',
994
- GovernanceGroup: 'GOVERNANCE_GROUP'
994
+ GovernanceGroup: 'GOVERNANCE_GROUP',
995
+ Workflow: 'WORKFLOW'
995
996
  } as const;
996
997
 
997
998
  export type AccessProfileApprovalSchemeBetaApproverTypeBeta = typeof AccessProfileApprovalSchemeBetaApproverTypeBeta[keyof typeof AccessProfileApprovalSchemeBetaApproverTypeBeta];
@@ -2415,23 +2416,35 @@ export type AccessTypeBeta = typeof AccessTypeBeta[keyof typeof AccessTypeBeta];
2415
2416
 
2416
2417
 
2417
2418
  /**
2418
- *
2419
+ * Object for specifying Actions to be performed on a specified list of sources\' account.
2419
2420
  * @export
2420
2421
  * @interface AccountActionBeta
2421
2422
  */
2422
2423
  export interface AccountActionBeta {
2423
2424
  /**
2424
- * Describes if action will be enabled or disabled
2425
+ * Describes if action will be enable, disable or delete.
2425
2426
  * @type {string}
2426
2427
  * @memberof AccountActionBeta
2427
2428
  */
2428
2429
  'action'?: AccountActionBetaActionBeta;
2429
2430
  /**
2430
- * List of source IDs. The sources must have the ENABLE feature or flat file source. See \"/sources\" endpoint for source features.
2431
- * @type {Array<string>}
2431
+ * A unique list of specific source IDs to apply the action to. The sources must have the ENABLE feature or flat file source. Required if allSources is not true. Must not be provided if allSources is true. Cannot be used together with excludeSourceIds See \"/sources\" endpoint for source features.
2432
+ * @type {Set<string>}
2432
2433
  * @memberof AccountActionBeta
2433
2434
  */
2434
- 'sourceIds'?: Array<string>;
2435
+ 'sourceIds'?: Set<string> | null;
2436
+ /**
2437
+ * A list of source IDs to exclude from the action. Cannot be used together with sourceIds.
2438
+ * @type {Set<string>}
2439
+ * @memberof AccountActionBeta
2440
+ */
2441
+ 'excludeSourceIds'?: Set<string> | null;
2442
+ /**
2443
+ * If true, the action applies to all available sources. If true, sourceIds must not be provided. If false or not set, sourceIds is required.
2444
+ * @type {boolean}
2445
+ * @memberof AccountActionBeta
2446
+ */
2447
+ 'allSources'?: boolean;
2435
2448
  }
2436
2449
 
2437
2450
  export const AccountActionBetaActionBeta = {
@@ -4067,204 +4080,6 @@ export interface AppAccountDetailsSourceAccountBeta {
4067
4080
  */
4068
4081
  'sourceDisplayName'?: string;
4069
4082
  }
4070
- /**
4071
- * Batch properties if an approval is sent via batching.
4072
- * @export
4073
- * @interface ApprovalBatchBeta
4074
- */
4075
- export interface ApprovalBatchBeta {
4076
- /**
4077
- * ID of the batch
4078
- * @type {string}
4079
- * @memberof ApprovalBatchBeta
4080
- */
4081
- 'batchId'?: string;
4082
- /**
4083
- * How many approvals are going to be in this batch. Defaults to 1 if not provided.
4084
- * @type {number}
4085
- * @memberof ApprovalBatchBeta
4086
- */
4087
- 'batchSize'?: number;
4088
- }
4089
- /**
4090
- * Approval Object
4091
- * @export
4092
- * @interface ApprovalBeta
4093
- */
4094
- export interface ApprovalBeta {
4095
- /**
4096
- * The Approval ID
4097
- * @type {string}
4098
- * @memberof ApprovalBeta
4099
- */
4100
- 'approvalId'?: string;
4101
- /**
4102
- * Object representation of an approver of an approval
4103
- * @type {Array<ApprovalIdentityBeta>}
4104
- * @memberof ApprovalBeta
4105
- */
4106
- 'approvers'?: Array<ApprovalIdentityBeta>;
4107
- /**
4108
- * Date the approval was created
4109
- * @type {string}
4110
- * @memberof ApprovalBeta
4111
- */
4112
- 'createdDate'?: string;
4113
- /**
4114
- * Type of approval
4115
- * @type {string}
4116
- * @memberof ApprovalBeta
4117
- */
4118
- 'type'?: string;
4119
- /**
4120
- * The name of the approval for a given locale
4121
- * @type {Array<ApprovalNameBeta>}
4122
- * @memberof ApprovalBeta
4123
- */
4124
- 'name'?: Array<ApprovalNameBeta>;
4125
- /**
4126
- * The name of the approval for a given locale
4127
- * @type {ApprovalBatchBeta}
4128
- * @memberof ApprovalBeta
4129
- */
4130
- 'batchRequest'?: ApprovalBatchBeta;
4131
- /**
4132
- * The description of the approval for a given locale
4133
- * @type {Array<ApprovalDescriptionBeta>}
4134
- * @memberof ApprovalBeta
4135
- */
4136
- 'description'?: Array<ApprovalDescriptionBeta>;
4137
- /**
4138
- * The priority of the approval
4139
- * @type {string}
4140
- * @memberof ApprovalBeta
4141
- */
4142
- 'priority'?: ApprovalBetaPriorityBeta;
4143
- /**
4144
- * Object representation of the requester of the approval
4145
- * @type {ApprovalIdentityBeta}
4146
- * @memberof ApprovalBeta
4147
- */
4148
- 'requester'?: ApprovalIdentityBeta;
4149
- /**
4150
- * Object representation of a comment on the approval
4151
- * @type {Array<ApprovalCommentBeta>}
4152
- * @memberof ApprovalBeta
4153
- */
4154
- 'comments'?: Array<ApprovalCommentBeta>;
4155
- /**
4156
- * Array of approvers who have approved the approval
4157
- * @type {Array<ApprovalIdentityBeta>}
4158
- * @memberof ApprovalBeta
4159
- */
4160
- 'approvedBy'?: Array<ApprovalIdentityBeta>;
4161
- /**
4162
- * Array of approvers who have rejected the approval
4163
- * @type {Array<ApprovalIdentityBeta>}
4164
- * @memberof ApprovalBeta
4165
- */
4166
- 'rejectedBy'?: Array<ApprovalIdentityBeta>;
4167
- /**
4168
- * Date the approval was completed
4169
- * @type {string}
4170
- * @memberof ApprovalBeta
4171
- */
4172
- 'completedDate'?: string;
4173
- /**
4174
- * Criteria that needs to be met for an approval to be marked as approved
4175
- * @type {string}
4176
- * @memberof ApprovalBeta
4177
- */
4178
- 'approvalCriteria'?: ApprovalBetaApprovalCriteriaBeta;
4179
- /**
4180
- * The current status of the approval
4181
- * @type {string}
4182
- * @memberof ApprovalBeta
4183
- */
4184
- 'status'?: ApprovalBetaStatusBeta;
4185
- /**
4186
- * Json string representing additional attributes known about the object to be approved.
4187
- * @type {string}
4188
- * @memberof ApprovalBeta
4189
- */
4190
- 'additionalAttributes'?: string;
4191
- /**
4192
- * Reference data related to the approval
4193
- * @type {Array<ApprovalReferenceBeta>}
4194
- * @memberof ApprovalBeta
4195
- */
4196
- 'referenceData'?: Array<ApprovalReferenceBeta>;
4197
- }
4198
-
4199
- export const ApprovalBetaPriorityBeta = {
4200
- High: 'HIGH',
4201
- Medium: 'MEDIUM',
4202
- Low: 'LOW'
4203
- } as const;
4204
-
4205
- export type ApprovalBetaPriorityBeta = typeof ApprovalBetaPriorityBeta[keyof typeof ApprovalBetaPriorityBeta];
4206
- export const ApprovalBetaApprovalCriteriaBeta = {
4207
- Single: 'SINGLE',
4208
- Double: 'DOUBLE',
4209
- Triple: 'TRIPLE',
4210
- Quarter: 'QUARTER',
4211
- Half: 'HALF',
4212
- All: 'ALL'
4213
- } as const;
4214
-
4215
- export type ApprovalBetaApprovalCriteriaBeta = typeof ApprovalBetaApprovalCriteriaBeta[keyof typeof ApprovalBetaApprovalCriteriaBeta];
4216
- export const ApprovalBetaStatusBeta = {
4217
- Pending: 'PENDING',
4218
- Approved: 'APPROVED',
4219
- Rejected: 'REJECTED'
4220
- } as const;
4221
-
4222
- export type ApprovalBetaStatusBeta = typeof ApprovalBetaStatusBeta[keyof typeof ApprovalBetaStatusBeta];
4223
-
4224
- /**
4225
- * Comments Object
4226
- * @export
4227
- * @interface ApprovalCommentBeta
4228
- */
4229
- export interface ApprovalCommentBeta {
4230
- /**
4231
- *
4232
- * @type {ApprovalIdentityBeta}
4233
- * @memberof ApprovalCommentBeta
4234
- */
4235
- 'author'?: ApprovalIdentityBeta;
4236
- /**
4237
- * Comment to be left on an approval
4238
- * @type {string}
4239
- * @memberof ApprovalCommentBeta
4240
- */
4241
- 'comment'?: string;
4242
- /**
4243
- * Date the comment was created
4244
- * @type {string}
4245
- * @memberof ApprovalCommentBeta
4246
- */
4247
- 'createdDate'?: string;
4248
- }
4249
- /**
4250
- * The description of what the approval is asking for
4251
- * @export
4252
- * @interface ApprovalDescriptionBeta
4253
- */
4254
- export interface ApprovalDescriptionBeta {
4255
- /**
4256
- * The description of what the approval is asking for
4257
- * @type {string}
4258
- * @memberof ApprovalDescriptionBeta
4259
- */
4260
- 'value'?: string;
4261
- /**
4262
- * What locale the description of the approval is using
4263
- * @type {string}
4264
- * @memberof ApprovalDescriptionBeta
4265
- */
4266
- 'locale'?: string;
4267
- }
4268
4083
  /**
4269
4084
  *
4270
4085
  * @export
@@ -4310,38 +4125,6 @@ export interface ApprovalForwardHistoryBeta {
4310
4125
  }
4311
4126
 
4312
4127
 
4313
- /**
4314
- * Identity Object
4315
- * @export
4316
- * @interface ApprovalIdentityBeta
4317
- */
4318
- export interface ApprovalIdentityBeta {
4319
- /**
4320
- * The identity ID
4321
- * @type {string}
4322
- * @memberof ApprovalIdentityBeta
4323
- */
4324
- 'id'?: string;
4325
- /**
4326
- * Indication of what group the identity belongs to. Ie, IDENTITY, GOVERNANCE_GROUP, etc
4327
- * @type {string}
4328
- * @memberof ApprovalIdentityBeta
4329
- */
4330
- 'type'?: ApprovalIdentityBetaTypeBeta;
4331
- /**
4332
- * Name of the identity
4333
- * @type {string}
4334
- * @memberof ApprovalIdentityBeta
4335
- */
4336
- 'name'?: string;
4337
- }
4338
-
4339
- export const ApprovalIdentityBetaTypeBeta = {
4340
- Identity: 'IDENTITY'
4341
- } as const;
4342
-
4343
- export type ApprovalIdentityBetaTypeBeta = typeof ApprovalIdentityBetaTypeBeta[keyof typeof ApprovalIdentityBetaTypeBeta];
4344
-
4345
4128
  /**
4346
4129
  *
4347
4130
  * @export
@@ -4469,44 +4252,6 @@ export interface ApprovalItemsBeta {
4469
4252
  }
4470
4253
 
4471
4254
 
4472
- /**
4473
- * Approval Name Object
4474
- * @export
4475
- * @interface ApprovalNameBeta
4476
- */
4477
- export interface ApprovalNameBeta {
4478
- /**
4479
- * Name of the approval
4480
- * @type {string}
4481
- * @memberof ApprovalNameBeta
4482
- */
4483
- 'value'?: string;
4484
- /**
4485
- * What locale the name of the approval is using
4486
- * @type {string}
4487
- * @memberof ApprovalNameBeta
4488
- */
4489
- 'locale'?: string;
4490
- }
4491
- /**
4492
- * Reference objects related to the approval
4493
- * @export
4494
- * @interface ApprovalReferenceBeta
4495
- */
4496
- export interface ApprovalReferenceBeta {
4497
- /**
4498
- * Id of the reference object
4499
- * @type {string}
4500
- * @memberof ApprovalReferenceBeta
4501
- */
4502
- 'id'?: string;
4503
- /**
4504
- * What reference object does this ID correspond to
4505
- * @type {string}
4506
- * @memberof ApprovalReferenceBeta
4507
- */
4508
- 'type'?: string;
4509
- }
4510
4255
  /**
4511
4256
  *
4512
4257
  * @export
@@ -4564,13 +4309,13 @@ export type ApprovalSchemeBeta = typeof ApprovalSchemeBeta[keyof typeof Approval
4564
4309
  */
4565
4310
  export interface ApprovalSchemeForRoleBeta {
4566
4311
  /**
4567
- * 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
4312
+ * 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.
4568
4313
  * @type {string}
4569
4314
  * @memberof ApprovalSchemeForRoleBeta
4570
4315
  */
4571
4316
  'approverType'?: ApprovalSchemeForRoleBetaApproverTypeBeta;
4572
4317
  /**
4573
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
4318
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
4574
4319
  * @type {string}
4575
4320
  * @memberof ApprovalSchemeForRoleBeta
4576
4321
  */
@@ -4580,7 +4325,8 @@ export interface ApprovalSchemeForRoleBeta {
4580
4325
  export const ApprovalSchemeForRoleBetaApproverTypeBeta = {
4581
4326
  Owner: 'OWNER',
4582
4327
  Manager: 'MANAGER',
4583
- GovernanceGroup: 'GOVERNANCE_GROUP'
4328
+ GovernanceGroup: 'GOVERNANCE_GROUP',
4329
+ Workflow: 'WORKFLOW'
4584
4330
  } as const;
4585
4331
 
4586
4332
  export type ApprovalSchemeForRoleBetaApproverTypeBeta = typeof ApprovalSchemeForRoleBetaApproverTypeBeta[keyof typeof ApprovalSchemeForRoleBetaApproverTypeBeta];
@@ -5012,6 +4758,12 @@ export interface AttributeDefinitionBeta {
5012
4758
  * @memberof AttributeDefinitionBeta
5013
4759
  */
5014
4760
  'name'?: string;
4761
+ /**
4762
+ * Attribute name in the native system.
4763
+ * @type {string}
4764
+ * @memberof AttributeDefinitionBeta
4765
+ */
4766
+ 'nativeName'?: string | null;
5015
4767
  /**
5016
4768
  *
5017
4769
  * @type {AttributeDefinitionTypeBeta}
@@ -5411,6 +5163,31 @@ export interface BaseReferenceDtoBeta {
5411
5163
  }
5412
5164
 
5413
5165
 
5166
+ /**
5167
+ *
5168
+ * @export
5169
+ * @interface BaseRoleReferenceDtoBeta
5170
+ */
5171
+ export interface BaseRoleReferenceDtoBeta {
5172
+ /**
5173
+ * DTO type
5174
+ * @type {string}
5175
+ * @memberof BaseRoleReferenceDtoBeta
5176
+ */
5177
+ 'type'?: string;
5178
+ /**
5179
+ * ID of the object to which this reference applies
5180
+ * @type {string}
5181
+ * @memberof BaseRoleReferenceDtoBeta
5182
+ */
5183
+ 'id'?: string;
5184
+ /**
5185
+ * Human-readable display name of the object to which this reference applies
5186
+ * @type {string}
5187
+ * @memberof BaseRoleReferenceDtoBeta
5188
+ */
5189
+ 'name'?: string;
5190
+ }
5414
5191
  /**
5415
5192
  * Config required if BASIC_AUTH is used.
5416
5193
  * @export
@@ -7592,6 +7369,12 @@ export interface CompletedApprovalBeta {
7592
7369
  * @memberof CompletedApprovalBeta
7593
7370
  */
7594
7371
  'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
7372
+ /**
7373
+ * The privilege level of the requested access item, if applicable.
7374
+ * @type {string}
7375
+ * @memberof CompletedApprovalBeta
7376
+ */
7377
+ 'privilegeLevel'?: string | null;
7595
7378
  }
7596
7379
 
7597
7380
 
@@ -9467,19 +9250,6 @@ export interface DeleteNonEmployeeRecordInBulkRequestBeta {
9467
9250
  */
9468
9251
  'ids': Array<string>;
9469
9252
  }
9470
- /**
9471
- *
9472
- * @export
9473
- * @interface DeleteVendorConnectorMapping200ResponseBeta
9474
- */
9475
- export interface DeleteVendorConnectorMapping200ResponseBeta {
9476
- /**
9477
- * The number of vendor connector mappings successfully deleted.
9478
- * @type {number}
9479
- * @memberof DeleteVendorConnectorMapping200ResponseBeta
9480
- */
9481
- 'count'?: number;
9482
- }
9483
9253
  /**
9484
9254
  *
9485
9255
  * @export
@@ -9806,13 +9576,13 @@ export interface EntitlementAccessRequestConfigBeta {
9806
9576
  */
9807
9577
  export interface EntitlementApprovalSchemeBeta {
9808
9578
  /**
9809
- * 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
9579
+ * 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.
9810
9580
  * @type {string}
9811
9581
  * @memberof EntitlementApprovalSchemeBeta
9812
9582
  */
9813
9583
  'approverType'?: EntitlementApprovalSchemeBetaApproverTypeBeta;
9814
9584
  /**
9815
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
9585
+ * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW
9816
9586
  * @type {string}
9817
9587
  * @memberof EntitlementApprovalSchemeBeta
9818
9588
  */
@@ -9823,7 +9593,8 @@ export const EntitlementApprovalSchemeBetaApproverTypeBeta = {
9823
9593
  EntitlementOwner: 'ENTITLEMENT_OWNER',
9824
9594
  SourceOwner: 'SOURCE_OWNER',
9825
9595
  Manager: 'MANAGER',
9826
- GovernanceGroup: 'GOVERNANCE_GROUP'
9596
+ GovernanceGroup: 'GOVERNANCE_GROUP',
9597
+ Workflow: 'WORKFLOW'
9827
9598
  } as const;
9828
9599
 
9829
9600
  export type EntitlementApprovalSchemeBetaApproverTypeBeta = typeof EntitlementApprovalSchemeBetaApproverTypeBeta[keyof typeof EntitlementApprovalSchemeBetaApproverTypeBeta];
@@ -10892,11 +10663,11 @@ export interface FieldDetailsDtoBeta {
10892
10663
  */
10893
10664
  'isRequired'?: boolean;
10894
10665
  /**
10895
- * The type of the attribute.
10666
+ * 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.
10896
10667
  * @type {string}
10897
10668
  * @memberof FieldDetailsDtoBeta
10898
10669
  */
10899
- 'type'?: string;
10670
+ 'type'?: FieldDetailsDtoBetaTypeBeta;
10900
10671
  /**
10901
10672
  * Flag indicating whether or not the attribute is multi-valued.
10902
10673
  * @type {boolean}
@@ -10904,6 +10675,18 @@ export interface FieldDetailsDtoBeta {
10904
10675
  */
10905
10676
  'isMultiValued'?: boolean;
10906
10677
  }
10678
+
10679
+ export const FieldDetailsDtoBetaTypeBeta = {
10680
+ String: 'string',
10681
+ Int: 'int',
10682
+ Long: 'long',
10683
+ Date: 'date',
10684
+ Boolean: 'boolean',
10685
+ Secret: 'secret'
10686
+ } as const;
10687
+
10688
+ export type FieldDetailsDtoBetaTypeBeta = typeof FieldDetailsDtoBetaTypeBeta[keyof typeof FieldDetailsDtoBetaTypeBeta];
10689
+
10907
10690
  /**
10908
10691
  *
10909
10692
  * @export
@@ -11565,47 +11348,65 @@ export type FormInstanceRecipientBetaTypeBeta = typeof FormInstanceRecipientBeta
11565
11348
  */
11566
11349
  export interface FormInstanceResponseBeta {
11567
11350
  /**
11568
- * Created is the date the form instance was assigned
11351
+ * Unique guid identifying this form instance
11569
11352
  * @type {string}
11570
11353
  * @memberof FormInstanceResponseBeta
11571
11354
  */
11572
- 'created'?: string;
11355
+ 'id'?: string;
11573
11356
  /**
11574
- *
11575
- * @type {FormInstanceCreatedByBeta}
11357
+ * 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
11358
+ * @type {string}
11576
11359
  * @memberof FormInstanceResponseBeta
11577
11360
  */
11578
- 'createdBy'?: FormInstanceCreatedByBeta;
11361
+ 'expire'?: string;
11579
11362
  /**
11580
- * 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
11363
+ * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
11581
11364
  * @type {string}
11582
11365
  * @memberof FormInstanceResponseBeta
11583
11366
  */
11584
- 'expire'?: string;
11367
+ 'state'?: FormInstanceResponseBetaStateBeta;
11585
11368
  /**
11586
- * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
11587
- * @type {Array<FormConditionBeta>}
11369
+ * 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
11370
+ * @type {boolean}
11588
11371
  * @memberof FormInstanceResponseBeta
11589
11372
  */
11590
- 'formConditions'?: Array<FormConditionBeta>;
11373
+ 'standAloneForm'?: boolean;
11591
11374
  /**
11592
- * FormData is the data provided by the form on submit. The data is in a key -> value map
11593
- * @type {{ [key: string]: any; }}
11375
+ * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
11376
+ * @type {string}
11594
11377
  * @memberof FormInstanceResponseBeta
11595
11378
  */
11596
- 'formData'?: { [key: string]: any; } | null;
11379
+ 'standAloneFormUrl'?: string;
11380
+ /**
11381
+ *
11382
+ * @type {FormInstanceCreatedByBeta}
11383
+ * @memberof FormInstanceResponseBeta
11384
+ */
11385
+ 'createdBy'?: FormInstanceCreatedByBeta;
11597
11386
  /**
11598
11387
  * FormDefinitionID is the id of the form definition that created this form
11599
11388
  * @type {string}
11600
11389
  * @memberof FormInstanceResponseBeta
11601
11390
  */
11602
11391
  'formDefinitionId'?: string;
11392
+ /**
11393
+ * FormInput is an object of form input labels to value
11394
+ * @type {{ [key: string]: object; }}
11395
+ * @memberof FormInstanceResponseBeta
11396
+ */
11397
+ 'formInput'?: { [key: string]: object; } | null;
11603
11398
  /**
11604
11399
  * FormElements is the configuration of the form, this would be a repeat of the fields from the form-config
11605
11400
  * @type {Array<FormElementBeta>}
11606
11401
  * @memberof FormInstanceResponseBeta
11607
11402
  */
11608
11403
  'formElements'?: Array<FormElementBeta>;
11404
+ /**
11405
+ * FormData is the data provided by the form on submit. The data is in a key -> value map
11406
+ * @type {{ [key: string]: any; }}
11407
+ * @memberof FormInstanceResponseBeta
11408
+ */
11409
+ 'formData'?: { [key: string]: any; } | null;
11609
11410
  /**
11610
11411
  * 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
11611
11412
  * @type {Array<FormErrorBeta>}
@@ -11613,17 +11414,17 @@ export interface FormInstanceResponseBeta {
11613
11414
  */
11614
11415
  'formErrors'?: Array<FormErrorBeta>;
11615
11416
  /**
11616
- * FormInput is an object of form input labels to value
11617
- * @type {{ [key: string]: object; }}
11417
+ * FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form
11418
+ * @type {Array<FormConditionBeta>}
11618
11419
  * @memberof FormInstanceResponseBeta
11619
11420
  */
11620
- 'formInput'?: { [key: string]: object; } | null;
11421
+ 'formConditions'?: Array<FormConditionBeta>;
11621
11422
  /**
11622
- * Unique guid identifying this form instance
11423
+ * Created is the date the form instance was assigned
11623
11424
  * @type {string}
11624
11425
  * @memberof FormInstanceResponseBeta
11625
11426
  */
11626
- 'id'?: string;
11427
+ 'created'?: string;
11627
11428
  /**
11628
11429
  * Modified is the last date the form instance was modified
11629
11430
  * @type {string}
@@ -11636,24 +11437,6 @@ export interface FormInstanceResponseBeta {
11636
11437
  * @memberof FormInstanceResponseBeta
11637
11438
  */
11638
11439
  'recipients'?: Array<FormInstanceRecipientBeta>;
11639
- /**
11640
- * 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
11641
- * @type {boolean}
11642
- * @memberof FormInstanceResponseBeta
11643
- */
11644
- 'standAloneForm'?: boolean;
11645
- /**
11646
- * StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI
11647
- * @type {string}
11648
- * @memberof FormInstanceResponseBeta
11649
- */
11650
- 'standAloneFormUrl'?: string;
11651
- /**
11652
- * State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled
11653
- * @type {string}
11654
- * @memberof FormInstanceResponseBeta
11655
- */
11656
- 'state'?: FormInstanceResponseBetaStateBeta;
11657
11440
  }
11658
11441
 
11659
11442
  export const FormInstanceResponseBetaStateBeta = {
@@ -12918,16 +12701,22 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12918
12701
  'id'?: string;
12919
12702
  /**
12920
12703
  *
12921
- * @type {BaseReferenceDto1Beta}
12704
+ * @type {BaseRoleReferenceDtoBeta}
12922
12705
  * @memberof GetRoleAssignments200ResponseInnerBeta
12923
12706
  */
12924
- 'role'?: BaseReferenceDto1Beta;
12707
+ 'role'?: BaseRoleReferenceDtoBeta;
12708
+ /**
12709
+ * Date that the assignment was added
12710
+ * @type {string}
12711
+ * @memberof GetRoleAssignments200ResponseInnerBeta
12712
+ */
12713
+ 'addedDate'?: string;
12925
12714
  /**
12926
12715
  * Comments added by the user when the assignment was made
12927
12716
  * @type {string}
12928
12717
  * @memberof GetRoleAssignments200ResponseInnerBeta
12929
12718
  */
12930
- 'comments'?: string;
12719
+ 'comments'?: string | null;
12931
12720
  /**
12932
12721
  * Source describing how this assignment was made
12933
12722
  * @type {string}
@@ -12936,10 +12725,10 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12936
12725
  'assignmentSource'?: string;
12937
12726
  /**
12938
12727
  *
12939
- * @type {BaseReferenceDto1Beta}
12728
+ * @type {RoleAssignmentDtoAssignerBeta}
12940
12729
  * @memberof GetRoleAssignments200ResponseInnerBeta
12941
12730
  */
12942
- 'assigner'?: BaseReferenceDto1Beta;
12731
+ 'assigner'?: RoleAssignmentDtoAssignerBeta;
12943
12732
  /**
12944
12733
  * Dimensions assigned related to this role
12945
12734
  * @type {Array<BaseReferenceDto1Beta>}
@@ -12948,10 +12737,10 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12948
12737
  'assignedDimensions'?: Array<BaseReferenceDto1Beta>;
12949
12738
  /**
12950
12739
  *
12951
- * @type {AssignmentContextDtoBeta}
12740
+ * @type {RoleAssignmentDtoAssignmentContextBeta}
12952
12741
  * @memberof GetRoleAssignments200ResponseInnerBeta
12953
12742
  */
12954
- 'assignmentContext'?: AssignmentContextDtoBeta;
12743
+ 'assignmentContext'?: RoleAssignmentDtoAssignmentContextBeta;
12955
12744
  /**
12956
12745
  *
12957
12746
  * @type {Array<RoleTargetDtoBeta>}
@@ -12963,7 +12752,7 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12963
12752
  * @type {string}
12964
12753
  * @memberof GetRoleAssignments200ResponseInnerBeta
12965
12754
  */
12966
- 'removeDate'?: string;
12755
+ 'removeDate'?: string | null;
12967
12756
  }
12968
12757
  /**
12969
12758
  * OAuth2 Grant Type
@@ -14570,12 +14359,6 @@ export interface IdentityWithNewAccessAccessRefsInnerBeta {
14570
14359
  * @memberof IdentityWithNewAccessAccessRefsInnerBeta
14571
14360
  */
14572
14361
  'id'?: string;
14573
- /**
14574
- * Entitlement\'s display name.
14575
- * @type {string}
14576
- * @memberof IdentityWithNewAccessAccessRefsInnerBeta
14577
- */
14578
- 'name'?: string;
14579
14362
  }
14580
14363
 
14581
14364
  export const IdentityWithNewAccessAccessRefsInnerBetaTypeBeta = {
@@ -18338,7 +18121,8 @@ export const MultiHostSourcesBetaFeaturesBeta = {
18338
18121
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
18339
18122
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
18340
18123
  UsesUuid: 'USES_UUID',
18341
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
18124
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
18125
+ Delete: 'DELETE'
18342
18126
  } as const;
18343
18127
 
18344
18128
  export type MultiHostSourcesBetaFeaturesBeta = typeof MultiHostSourcesBetaFeaturesBeta[keyof typeof MultiHostSourcesBetaFeaturesBeta];
@@ -21127,6 +20911,12 @@ export interface PendingApprovalBeta {
21127
20911
  * @memberof PendingApprovalBeta
21128
20912
  */
21129
20913
  'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
20914
+ /**
20915
+ * The privilege level of the requested access item, if applicable.
20916
+ * @type {string}
20917
+ * @memberof PendingApprovalBeta
20918
+ */
20919
+ 'privilegeLevel'?: string | null;
21130
20920
  }
21131
20921
 
21132
20922
 
@@ -23170,6 +22960,12 @@ export interface RequestedItemStatusBeta {
23170
22960
  * @memberof RequestedItemStatusBeta
23171
22961
  */
23172
22962
  'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
22963
+ /**
22964
+ * The privilege level of the requested access item, if applicable.
22965
+ * @type {string}
22966
+ * @memberof RequestedItemStatusBeta
22967
+ */
22968
+ 'privilegeLevel'?: string | null;
23173
22969
  }
23174
22970
 
23175
22971
  export const RequestedItemStatusBetaTypeBeta = {
@@ -23655,6 +23451,64 @@ export interface RightPadBeta {
23655
23451
  */
23656
23452
  'input'?: { [key: string]: any; };
23657
23453
  }
23454
+ /**
23455
+ * The identity that performed the assignment. This could be blank or system
23456
+ * @export
23457
+ * @interface RoleAssignmentDtoAssignerBeta
23458
+ */
23459
+ export interface RoleAssignmentDtoAssignerBeta {
23460
+ /**
23461
+ * Object type
23462
+ * @type {string}
23463
+ * @memberof RoleAssignmentDtoAssignerBeta
23464
+ */
23465
+ 'type'?: RoleAssignmentDtoAssignerBetaTypeBeta;
23466
+ /**
23467
+ * ID of the object to which this reference applies
23468
+ * @type {string}
23469
+ * @memberof RoleAssignmentDtoAssignerBeta
23470
+ */
23471
+ 'id'?: string;
23472
+ /**
23473
+ * Human-readable display name of the object to which this reference applies
23474
+ * @type {string}
23475
+ * @memberof RoleAssignmentDtoAssignerBeta
23476
+ */
23477
+ 'name'?: string | null;
23478
+ }
23479
+
23480
+ export const RoleAssignmentDtoAssignerBetaTypeBeta = {
23481
+ Identity: 'IDENTITY',
23482
+ Unknown: 'UNKNOWN'
23483
+ } as const;
23484
+
23485
+ export type RoleAssignmentDtoAssignerBetaTypeBeta = typeof RoleAssignmentDtoAssignerBetaTypeBeta[keyof typeof RoleAssignmentDtoAssignerBetaTypeBeta];
23486
+
23487
+ /**
23488
+ *
23489
+ * @export
23490
+ * @interface RoleAssignmentDtoAssignmentContextBeta
23491
+ */
23492
+ export interface RoleAssignmentDtoAssignmentContextBeta {
23493
+ /**
23494
+ *
23495
+ * @type {AccessRequestContextBeta}
23496
+ * @memberof RoleAssignmentDtoAssignmentContextBeta
23497
+ */
23498
+ 'requested'?: AccessRequestContextBeta;
23499
+ /**
23500
+ *
23501
+ * @type {Array<RoleMatchDtoBeta>}
23502
+ * @memberof RoleAssignmentDtoAssignmentContextBeta
23503
+ */
23504
+ 'matched'?: Array<RoleMatchDtoBeta>;
23505
+ /**
23506
+ * Date that the assignment will was evaluated
23507
+ * @type {string}
23508
+ * @memberof RoleAssignmentDtoAssignmentContextBeta
23509
+ */
23510
+ 'computedDate'?: string;
23511
+ }
23658
23512
  /**
23659
23513
  *
23660
23514
  * @export
@@ -23669,16 +23523,16 @@ export interface RoleAssignmentDtoBeta {
23669
23523
  'id'?: string;
23670
23524
  /**
23671
23525
  *
23672
- * @type {BaseReferenceDto1Beta}
23526
+ * @type {BaseRoleReferenceDtoBeta}
23673
23527
  * @memberof RoleAssignmentDtoBeta
23674
23528
  */
23675
- 'role'?: BaseReferenceDto1Beta;
23529
+ 'role'?: BaseRoleReferenceDtoBeta;
23676
23530
  /**
23677
23531
  * Comments added by the user when the assignment was made
23678
23532
  * @type {string}
23679
23533
  * @memberof RoleAssignmentDtoBeta
23680
23534
  */
23681
- 'comments'?: string;
23535
+ 'comments'?: string | null;
23682
23536
  /**
23683
23537
  * Source describing how this assignment was made
23684
23538
  * @type {string}
@@ -23687,10 +23541,10 @@ export interface RoleAssignmentDtoBeta {
23687
23541
  'assignmentSource'?: string;
23688
23542
  /**
23689
23543
  *
23690
- * @type {BaseReferenceDto1Beta}
23544
+ * @type {RoleAssignmentDtoAssignerBeta}
23691
23545
  * @memberof RoleAssignmentDtoBeta
23692
23546
  */
23693
- 'assigner'?: BaseReferenceDto1Beta;
23547
+ 'assigner'?: RoleAssignmentDtoAssignerBeta;
23694
23548
  /**
23695
23549
  * Dimensions assigned related to this role
23696
23550
  * @type {Array<BaseReferenceDto1Beta>}
@@ -23699,10 +23553,10 @@ export interface RoleAssignmentDtoBeta {
23699
23553
  'assignedDimensions'?: Array<BaseReferenceDto1Beta>;
23700
23554
  /**
23701
23555
  *
23702
- * @type {AssignmentContextDtoBeta}
23556
+ * @type {RoleAssignmentDtoAssignmentContextBeta}
23703
23557
  * @memberof RoleAssignmentDtoBeta
23704
23558
  */
23705
- 'assignmentContext'?: AssignmentContextDtoBeta;
23559
+ 'assignmentContext'?: RoleAssignmentDtoAssignmentContextBeta;
23706
23560
  /**
23707
23561
  *
23708
23562
  * @type {Array<RoleTargetDtoBeta>}
@@ -23714,7 +23568,13 @@ export interface RoleAssignmentDtoBeta {
23714
23568
  * @type {string}
23715
23569
  * @memberof RoleAssignmentDtoBeta
23716
23570
  */
23717
- 'removeDate'?: string;
23571
+ 'removeDate'?: string | null;
23572
+ /**
23573
+ * Date that the assignment was added
23574
+ * @type {string}
23575
+ * @memberof RoleAssignmentDtoBeta
23576
+ */
23577
+ 'addedDate'?: string;
23718
23578
  }
23719
23579
  /**
23720
23580
  *
@@ -23734,6 +23594,12 @@ export interface RoleAssignmentRefBeta {
23734
23594
  * @memberof RoleAssignmentRefBeta
23735
23595
  */
23736
23596
  'role'?: BaseReferenceDto1Beta;
23597
+ /**
23598
+ * Date that the assignment was added
23599
+ * @type {string}
23600
+ * @memberof RoleAssignmentRefBeta
23601
+ */
23602
+ 'addedDate'?: string;
23737
23603
  }
23738
23604
  /**
23739
23605
  * Type which indicates how a particular Identity obtained a particular Role
@@ -26132,7 +25998,8 @@ export const SchemaBetaFeaturesBeta = {
26132
25998
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
26133
25999
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
26134
26000
  UsesUuid: 'USES_UUID',
26135
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
26001
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
26002
+ Delete: 'DELETE'
26136
26003
  } as const;
26137
26004
 
26138
26005
  export type SchemaBetaFeaturesBeta = typeof SchemaBetaFeaturesBeta[keyof typeof SchemaBetaFeaturesBeta];
@@ -28638,10 +28505,10 @@ export interface SourceBeta {
28638
28505
  'description'?: string;
28639
28506
  /**
28640
28507
  *
28641
- * @type {MultiHostIntegrationsOwnerBeta}
28508
+ * @type {SourceOwnerBeta}
28642
28509
  * @memberof SourceBeta
28643
28510
  */
28644
- 'owner': MultiHostIntegrationsOwnerBeta;
28511
+ 'owner': SourceOwnerBeta | null;
28645
28512
  /**
28646
28513
  *
28647
28514
  * @type {MultiHostIntegrationsClusterBeta}
@@ -28838,7 +28705,8 @@ export const SourceBetaFeaturesBeta = {
28838
28705
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
28839
28706
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
28840
28707
  UsesUuid: 'USES_UUID',
28841
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
28708
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
28709
+ Delete: 'DELETE'
28842
28710
  } as const;
28843
28711
 
28844
28712
  export type SourceBetaFeaturesBeta = typeof SourceBetaFeaturesBeta[keyof typeof SourceBetaFeaturesBeta];
@@ -29140,6 +29008,38 @@ export interface SourceItemRefBeta {
29140
29008
  */
29141
29009
  'accounts'?: Array<AccountItemRefBeta> | null;
29142
29010
  }
29011
+ /**
29012
+ * Reference to identity object who owns the source.
29013
+ * @export
29014
+ * @interface SourceOwnerBeta
29015
+ */
29016
+ export interface SourceOwnerBeta {
29017
+ /**
29018
+ * Type of object being referenced.
29019
+ * @type {string}
29020
+ * @memberof SourceOwnerBeta
29021
+ */
29022
+ 'type'?: SourceOwnerBetaTypeBeta;
29023
+ /**
29024
+ * Owner identity\'s ID.
29025
+ * @type {string}
29026
+ * @memberof SourceOwnerBeta
29027
+ */
29028
+ 'id'?: string;
29029
+ /**
29030
+ * Owner identity\'s human-readable display name.
29031
+ * @type {string}
29032
+ * @memberof SourceOwnerBeta
29033
+ */
29034
+ 'name'?: string;
29035
+ }
29036
+
29037
+ export const SourceOwnerBetaTypeBeta = {
29038
+ Identity: 'IDENTITY'
29039
+ } as const;
29040
+
29041
+ export type SourceOwnerBetaTypeBeta = typeof SourceOwnerBetaTypeBeta[keyof typeof SourceOwnerBetaTypeBeta];
29042
+
29143
29043
  /**
29144
29044
  *
29145
29045
  * @export
@@ -32496,143 +32396,6 @@ export interface ValueBeta {
32496
32396
  */
32497
32397
  'value'?: string;
32498
32398
  }
32499
- /**
32500
- *
32501
- * @export
32502
- * @interface VendorConnectorMappingBeta
32503
- */
32504
- export interface VendorConnectorMappingBeta {
32505
- /**
32506
- * The unique identifier for the vendor-connector mapping.
32507
- * @type {string}
32508
- * @memberof VendorConnectorMappingBeta
32509
- */
32510
- 'id'?: string;
32511
- /**
32512
- * The name of the vendor.
32513
- * @type {string}
32514
- * @memberof VendorConnectorMappingBeta
32515
- */
32516
- 'vendor'?: string;
32517
- /**
32518
- * The name of the connector.
32519
- * @type {string}
32520
- * @memberof VendorConnectorMappingBeta
32521
- */
32522
- 'connector'?: string;
32523
- /**
32524
- * The creation timestamp of the mapping.
32525
- * @type {string}
32526
- * @memberof VendorConnectorMappingBeta
32527
- */
32528
- 'createdAt'?: string;
32529
- /**
32530
- * The identifier of the user who created the mapping.
32531
- * @type {string}
32532
- * @memberof VendorConnectorMappingBeta
32533
- */
32534
- 'createdBy'?: string;
32535
- /**
32536
- *
32537
- * @type {VendorConnectorMappingUpdatedAtBeta}
32538
- * @memberof VendorConnectorMappingBeta
32539
- */
32540
- 'updatedAt'?: VendorConnectorMappingUpdatedAtBeta | null;
32541
- /**
32542
- *
32543
- * @type {VendorConnectorMappingUpdatedByBeta}
32544
- * @memberof VendorConnectorMappingBeta
32545
- */
32546
- 'updatedBy'?: VendorConnectorMappingUpdatedByBeta | null;
32547
- /**
32548
- *
32549
- * @type {VendorConnectorMappingDeletedAtBeta}
32550
- * @memberof VendorConnectorMappingBeta
32551
- */
32552
- 'deletedAt'?: VendorConnectorMappingDeletedAtBeta | null;
32553
- /**
32554
- *
32555
- * @type {VendorConnectorMappingDeletedByBeta}
32556
- * @memberof VendorConnectorMappingBeta
32557
- */
32558
- 'deletedBy'?: VendorConnectorMappingDeletedByBeta | null;
32559
- }
32560
- /**
32561
- * An object representing the nullable timestamp of when the mapping was deleted.
32562
- * @export
32563
- * @interface VendorConnectorMappingDeletedAtBeta
32564
- */
32565
- export interface VendorConnectorMappingDeletedAtBeta {
32566
- /**
32567
- * The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
32568
- * @type {string}
32569
- * @memberof VendorConnectorMappingDeletedAtBeta
32570
- */
32571
- 'Time'?: string;
32572
- /**
32573
- * A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
32574
- * @type {boolean}
32575
- * @memberof VendorConnectorMappingDeletedAtBeta
32576
- */
32577
- 'Valid'?: boolean;
32578
- }
32579
- /**
32580
- * An object representing the nullable identifier of the user who deleted the mapping.
32581
- * @export
32582
- * @interface VendorConnectorMappingDeletedByBeta
32583
- */
32584
- export interface VendorConnectorMappingDeletedByBeta {
32585
- /**
32586
- * The identifier of the user who deleted the mapping, if applicable.
32587
- * @type {string}
32588
- * @memberof VendorConnectorMappingDeletedByBeta
32589
- */
32590
- 'String'?: string;
32591
- /**
32592
- * A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
32593
- * @type {boolean}
32594
- * @memberof VendorConnectorMappingDeletedByBeta
32595
- */
32596
- 'Valid'?: boolean;
32597
- }
32598
- /**
32599
- * An object representing the nullable timestamp of the last update.
32600
- * @export
32601
- * @interface VendorConnectorMappingUpdatedAtBeta
32602
- */
32603
- export interface VendorConnectorMappingUpdatedAtBeta {
32604
- /**
32605
- * The timestamp when the mapping was last updated, represented in ISO 8601 format.
32606
- * @type {string}
32607
- * @memberof VendorConnectorMappingUpdatedAtBeta
32608
- */
32609
- 'Time'?: string;
32610
- /**
32611
- * A flag indicating if the \'Time\' field is set and valid.
32612
- * @type {boolean}
32613
- * @memberof VendorConnectorMappingUpdatedAtBeta
32614
- */
32615
- 'Valid'?: boolean;
32616
- }
32617
- /**
32618
- * An object representing the nullable identifier of the user who last updated the mapping.
32619
- * @export
32620
- * @interface VendorConnectorMappingUpdatedByBeta
32621
- */
32622
- export interface VendorConnectorMappingUpdatedByBeta {
32623
- /**
32624
- * The identifier of the user who last updated the mapping, if available.
32625
- * @type {string}
32626
- * @memberof VendorConnectorMappingUpdatedByBeta
32627
- */
32628
- 'String'?: string;
32629
- /**
32630
- * A flag indicating if the \'String\' field is set and valid.
32631
- * @type {boolean}
32632
- * @memberof VendorConnectorMappingUpdatedByBeta
32633
- */
32634
- 'Valid'?: boolean;
32635
- }
32636
32399
  /**
32637
32400
  *
32638
32401
  * @export
@@ -36521,7 +36284,7 @@ export const AccessRequestsBetaApiAxiosParamCreator = function (configuration?:
36521
36284
  };
36522
36285
  },
36523
36286
  /**
36524
- * 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/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
36287
+ * 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.
36525
36288
  * @summary Close access request
36526
36289
  * @param {CloseAccessRequestBeta} closeAccessRequestBeta
36527
36290
  * @param {*} [axiosOptions] Override http request option.
@@ -36802,7 +36565,7 @@ export const AccessRequestsBetaApiFp = function(configuration?: Configuration) {
36802
36565
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
36803
36566
  },
36804
36567
  /**
36805
- * 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/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
36568
+ * 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.
36806
36569
  * @summary Close access request
36807
36570
  * @param {CloseAccessRequestBeta} closeAccessRequestBeta
36808
36571
  * @param {*} [axiosOptions] Override http request option.
@@ -36895,7 +36658,7 @@ export const AccessRequestsBetaApiFactory = function (configuration?: Configurat
36895
36658
  return localVarFp.cancelAccessRequest(requestParameters.cancelAccessRequestBeta, axiosOptions).then((request) => request(axios, basePath));
36896
36659
  },
36897
36660
  /**
36898
- * 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/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
36661
+ * 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.
36899
36662
  * @summary Close access request
36900
36663
  * @param {AccessRequestsBetaApiCloseAccessRequestRequest} requestParameters Request parameters.
36901
36664
  * @param {*} [axiosOptions] Override http request option.
@@ -37099,7 +36862,7 @@ export class AccessRequestsBetaApi extends BaseAPI {
37099
36862
  }
37100
36863
 
37101
36864
  /**
37102
- * 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/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
36865
+ * 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.
37103
36866
  * @summary Close access request
37104
36867
  * @param {AccessRequestsBetaApiCloseAccessRequestRequest} requestParameters Request parameters.
37105
36868
  * @param {*} [axiosOptions] Override http request option.
@@ -40095,254 +39858,6 @@ export const GetDiscoveredApplicationsDetailBeta = {
40095
39858
  export type GetDiscoveredApplicationsDetailBeta = typeof GetDiscoveredApplicationsDetailBeta[keyof typeof GetDiscoveredApplicationsDetailBeta];
40096
39859
 
40097
39860
 
40098
- /**
40099
- * ApprovalsBetaApi - axios parameter creator
40100
- * @export
40101
- */
40102
- export const ApprovalsBetaApiAxiosParamCreator = function (configuration?: Configuration) {
40103
- return {
40104
- /**
40105
- * Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
40106
- * @summary Get approval
40107
- * @param {string} id ID of the approval that to be returned.
40108
- * @param {*} [axiosOptions] Override http request option.
40109
- * @throws {RequiredError}
40110
- */
40111
- getApproval: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
40112
- // verify required parameter 'id' is not null or undefined
40113
- assertParamExists('getApproval', 'id', id)
40114
- const localVarPath = `/generic-approvals/{id}`
40115
- .replace(`{${"id"}}`, encodeURIComponent(String(id)));
40116
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
40117
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
40118
- let baseOptions;
40119
- if (configuration) {
40120
- baseOptions = configuration.baseOptions;
40121
- }
40122
-
40123
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
40124
- const localVarHeaderParameter = {} as any;
40125
- const localVarQueryParameter = {} as any;
40126
-
40127
- // authentication userAuth required
40128
- // oauth required
40129
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40130
-
40131
- // authentication userAuth required
40132
- // oauth required
40133
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40134
-
40135
-
40136
-
40137
- setSearchParams(localVarUrlObj, localVarQueryParameter);
40138
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40139
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
40140
-
40141
- return {
40142
- url: toPathString(localVarUrlObj),
40143
- axiosOptions: localVarRequestOptions,
40144
- };
40145
- },
40146
- /**
40147
- * Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
40148
- * @summary Get approvals
40149
- * @param {boolean} [mine] Returns the list of approvals for the current caller.
40150
- * @param {string} [requesterId] Returns the list of approvals for a given requester ID.
40151
- * @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: **status**: *eq* **referenceType**: *eq*
40152
- * @param {*} [axiosOptions] Override http request option.
40153
- * @throws {RequiredError}
40154
- */
40155
- getApprovals: async (mine?: boolean, requesterId?: string, filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
40156
- const localVarPath = `/generic-approvals`;
40157
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
40158
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
40159
- let baseOptions;
40160
- if (configuration) {
40161
- baseOptions = configuration.baseOptions;
40162
- }
40163
-
40164
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
40165
- const localVarHeaderParameter = {} as any;
40166
- const localVarQueryParameter = {} as any;
40167
-
40168
- // authentication userAuth required
40169
- // oauth required
40170
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40171
-
40172
- // authentication userAuth required
40173
- // oauth required
40174
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40175
-
40176
- if (mine !== undefined) {
40177
- localVarQueryParameter['mine'] = mine;
40178
- }
40179
-
40180
- if (requesterId !== undefined) {
40181
- localVarQueryParameter['requesterId'] = requesterId;
40182
- }
40183
-
40184
- if (filters !== undefined) {
40185
- localVarQueryParameter['filters'] = filters;
40186
- }
40187
-
40188
-
40189
-
40190
- setSearchParams(localVarUrlObj, localVarQueryParameter);
40191
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
40192
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
40193
-
40194
- return {
40195
- url: toPathString(localVarUrlObj),
40196
- axiosOptions: localVarRequestOptions,
40197
- };
40198
- },
40199
- }
40200
- };
40201
-
40202
- /**
40203
- * ApprovalsBetaApi - functional programming interface
40204
- * @export
40205
- */
40206
- export const ApprovalsBetaApiFp = function(configuration?: Configuration) {
40207
- const localVarAxiosParamCreator = ApprovalsBetaApiAxiosParamCreator(configuration)
40208
- return {
40209
- /**
40210
- * Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
40211
- * @summary Get approval
40212
- * @param {string} id ID of the approval that to be returned.
40213
- * @param {*} [axiosOptions] Override http request option.
40214
- * @throws {RequiredError}
40215
- */
40216
- async getApproval(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApprovalBeta>> {
40217
- const localVarAxiosArgs = await localVarAxiosParamCreator.getApproval(id, axiosOptions);
40218
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
40219
- const localVarOperationServerBasePath = operationServerMap['ApprovalsBetaApi.getApproval']?.[localVarOperationServerIndex]?.url;
40220
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
40221
- },
40222
- /**
40223
- * Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
40224
- * @summary Get approvals
40225
- * @param {boolean} [mine] Returns the list of approvals for the current caller.
40226
- * @param {string} [requesterId] Returns the list of approvals for a given requester ID.
40227
- * @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: **status**: *eq* **referenceType**: *eq*
40228
- * @param {*} [axiosOptions] Override http request option.
40229
- * @throws {RequiredError}
40230
- */
40231
- async getApprovals(mine?: boolean, requesterId?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ApprovalBeta>>> {
40232
- const localVarAxiosArgs = await localVarAxiosParamCreator.getApprovals(mine, requesterId, filters, axiosOptions);
40233
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
40234
- const localVarOperationServerBasePath = operationServerMap['ApprovalsBetaApi.getApprovals']?.[localVarOperationServerIndex]?.url;
40235
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
40236
- },
40237
- }
40238
- };
40239
-
40240
- /**
40241
- * ApprovalsBetaApi - factory interface
40242
- * @export
40243
- */
40244
- export const ApprovalsBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
40245
- const localVarFp = ApprovalsBetaApiFp(configuration)
40246
- return {
40247
- /**
40248
- * Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
40249
- * @summary Get approval
40250
- * @param {ApprovalsBetaApiGetApprovalRequest} requestParameters Request parameters.
40251
- * @param {*} [axiosOptions] Override http request option.
40252
- * @throws {RequiredError}
40253
- */
40254
- getApproval(requestParameters: ApprovalsBetaApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ApprovalBeta> {
40255
- return localVarFp.getApproval(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
40256
- },
40257
- /**
40258
- * Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
40259
- * @summary Get approvals
40260
- * @param {ApprovalsBetaApiGetApprovalsRequest} requestParameters Request parameters.
40261
- * @param {*} [axiosOptions] Override http request option.
40262
- * @throws {RequiredError}
40263
- */
40264
- getApprovals(requestParameters: ApprovalsBetaApiGetApprovalsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ApprovalBeta>> {
40265
- return localVarFp.getApprovals(requestParameters.mine, requestParameters.requesterId, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
40266
- },
40267
- };
40268
- };
40269
-
40270
- /**
40271
- * Request parameters for getApproval operation in ApprovalsBetaApi.
40272
- * @export
40273
- * @interface ApprovalsBetaApiGetApprovalRequest
40274
- */
40275
- export interface ApprovalsBetaApiGetApprovalRequest {
40276
- /**
40277
- * ID of the approval that to be returned.
40278
- * @type {string}
40279
- * @memberof ApprovalsBetaApiGetApproval
40280
- */
40281
- readonly id: string
40282
- }
40283
-
40284
- /**
40285
- * Request parameters for getApprovals operation in ApprovalsBetaApi.
40286
- * @export
40287
- * @interface ApprovalsBetaApiGetApprovalsRequest
40288
- */
40289
- export interface ApprovalsBetaApiGetApprovalsRequest {
40290
- /**
40291
- * Returns the list of approvals for the current caller.
40292
- * @type {boolean}
40293
- * @memberof ApprovalsBetaApiGetApprovals
40294
- */
40295
- readonly mine?: boolean
40296
-
40297
- /**
40298
- * Returns the list of approvals for a given requester ID.
40299
- * @type {string}
40300
- * @memberof ApprovalsBetaApiGetApprovals
40301
- */
40302
- readonly requesterId?: string
40303
-
40304
- /**
40305
- * 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: **status**: *eq* **referenceType**: *eq*
40306
- * @type {string}
40307
- * @memberof ApprovalsBetaApiGetApprovals
40308
- */
40309
- readonly filters?: string
40310
- }
40311
-
40312
- /**
40313
- * ApprovalsBetaApi - object-oriented interface
40314
- * @export
40315
- * @class ApprovalsBetaApi
40316
- * @extends {BaseAPI}
40317
- */
40318
- export class ApprovalsBetaApi extends BaseAPI {
40319
- /**
40320
- * Get a single approval for a given approval ID. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and doesn\'t include access-request-approvals.
40321
- * @summary Get approval
40322
- * @param {ApprovalsBetaApiGetApprovalRequest} requestParameters Request parameters.
40323
- * @param {*} [axiosOptions] Override http request option.
40324
- * @throws {RequiredError}
40325
- * @memberof ApprovalsBetaApi
40326
- */
40327
- public getApproval(requestParameters: ApprovalsBetaApiGetApprovalRequest, axiosOptions?: RawAxiosRequestConfig) {
40328
- return ApprovalsBetaApiFp(this.configuration).getApproval(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
40329
- }
40330
-
40331
- /**
40332
- * Get a list of approvals, which can be filtered by requester ID, status, or reference type. You can use the \"Mine\" query parameter to return all approvals for the current approver. This endpoint is for generic approvals, unlike the access-request-approval endpoint, and does not include access-request-approvals. Absence of all query parameters will will default to mine=true.
40333
- * @summary Get approvals
40334
- * @param {ApprovalsBetaApiGetApprovalsRequest} requestParameters Request parameters.
40335
- * @param {*} [axiosOptions] Override http request option.
40336
- * @throws {RequiredError}
40337
- * @memberof ApprovalsBetaApi
40338
- */
40339
- public getApprovals(requestParameters: ApprovalsBetaApiGetApprovalsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
40340
- return ApprovalsBetaApiFp(this.configuration).getApprovals(requestParameters.mine, requestParameters.requesterId, requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
40341
- }
40342
- }
40343
-
40344
-
40345
-
40346
39861
  /**
40347
39862
  * AppsBetaApi - axios parameter creator
40348
39863
  * @export
@@ -42888,7 +42403,7 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
42888
42403
  };
42889
42404
  },
42890
42405
  /**
42891
- * Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v3/list-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
42406
+ * Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
42892
42407
  * @summary List campaign templates
42893
42408
  * @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.
42894
42409
  * @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.
@@ -43554,7 +43069,7 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
43554
43069
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
43555
43070
  },
43556
43071
  /**
43557
- * Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v3/list-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
43072
+ * Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
43558
43073
  * @summary List campaign templates
43559
43074
  * @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.
43560
43075
  * @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.
@@ -43845,7 +43360,7 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
43845
43360
  return localVarFp.getCampaignTemplateSchedule(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
43846
43361
  },
43847
43362
  /**
43848
- * Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v3/list-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
43363
+ * Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
43849
43364
  * @summary List campaign templates
43850
43365
  * @param {CertificationCampaignsBetaApiGetCampaignTemplatesRequest} requestParameters Request parameters.
43851
43366
  * @param {*} [axiosOptions] Override http request option.
@@ -44526,7 +44041,7 @@ export class CertificationCampaignsBetaApi extends BaseAPI {
44526
44041
  }
44527
44042
 
44528
44043
  /**
44529
- * Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v3/list-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
44044
+ * Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
44530
44045
  * @summary List campaign templates
44531
44046
  * @param {CertificationCampaignsBetaApiGetCampaignTemplatesRequest} requestParameters Request parameters.
44532
44047
  * @param {*} [axiosOptions] Override http request option.
@@ -49002,7 +48517,7 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
49002
48517
  /**
49003
48518
  * This API returns a list of entitlements. This API can be used in one of the two following ways: either getting entitlements for a specific **account-id**, or getting via use of **filters** (those two options are exclusive). Any authenticated token can call this API.
49004
48519
  * @summary Gets a list of entitlements.
49005
- * @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/apis/beta/#operation/getAccountEntitlements) to get account entitlements.
48520
+ * @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
49006
48521
  * @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\&#39;s Identity.
49007
48522
  * @param {string} [forSegmentIds] If present and not empty, additionally filters Access Profiles to those which are assigned to the Segment(s) with the specified IDs. Cannot be specified with the **account-id** or **segmented-for-identity** param(s).
49008
48523
  * @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Entitlements. If **for-segment-ids** and **segmented-for-identity** are both absent or empty, specifying **include-unsegmented&#x3D;false** results in an error.
@@ -49083,7 +48598,7 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
49083
48598
  };
49084
48599
  },
49085
48600
  /**
49086
- * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description**, **privilegeOverride/overrideLevel** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
48601
+ * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
49087
48602
  * @summary Patch an entitlement
49088
48603
  * @param {string} id ID of the entitlement to patch
49089
48604
  * @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
@@ -49219,7 +48734,7 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
49219
48734
  };
49220
48735
  },
49221
48736
  /**
49222
- * 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 }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
48737
+ * 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.
49223
48738
  * @summary Bulk update an entitlement list
49224
48739
  * @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
49225
48740
  * @param {*} [axiosOptions] Override http request option.
@@ -49382,7 +48897,7 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
49382
48897
  /**
49383
48898
  * This API returns a list of entitlements. This API can be used in one of the two following ways: either getting entitlements for a specific **account-id**, or getting via use of **filters** (those two options are exclusive). Any authenticated token can call this API.
49384
48899
  * @summary Gets a list of entitlements.
49385
- * @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/apis/beta/#operation/getAccountEntitlements) to get account entitlements.
48900
+ * @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
49386
48901
  * @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\&#39;s Identity.
49387
48902
  * @param {string} [forSegmentIds] If present and not empty, additionally filters Access Profiles to those which are assigned to the Segment(s) with the specified IDs. Cannot be specified with the **account-id** or **segmented-for-identity** param(s).
49388
48903
  * @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Entitlements. If **for-segment-ids** and **segmented-for-identity** are both absent or empty, specifying **include-unsegmented&#x3D;false** results in an error.
@@ -49401,7 +48916,7 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
49401
48916
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
49402
48917
  },
49403
48918
  /**
49404
- * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description**, **privilegeOverride/overrideLevel** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
48919
+ * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
49405
48920
  * @summary Patch an entitlement
49406
48921
  * @param {string} id ID of the entitlement to patch
49407
48922
  * @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
@@ -49442,7 +48957,7 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
49442
48957
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
49443
48958
  },
49444
48959
  /**
49445
- * 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 }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
48960
+ * 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.
49446
48961
  * @summary Bulk update an entitlement list
49447
48962
  * @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
49448
48963
  * @param {*} [axiosOptions] Override http request option.
@@ -49546,7 +49061,7 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
49546
49061
  return localVarFp.listEntitlements(requestParameters.accountId, requestParameters.segmentedForIdentity, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.sorters, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
49547
49062
  },
49548
49063
  /**
49549
- * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description**, **privilegeOverride/overrideLevel** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
49064
+ * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
49550
49065
  * @summary Patch an entitlement
49551
49066
  * @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
49552
49067
  * @param {*} [axiosOptions] Override http request option.
@@ -49576,7 +49091,7 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
49576
49091
  return localVarFp.resetSourceEntitlements(requestParameters.sourceId, axiosOptions).then((request) => request(axios, basePath));
49577
49092
  },
49578
49093
  /**
49579
- * 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 }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
49094
+ * 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.
49580
49095
  * @summary Bulk update an entitlement list
49581
49096
  * @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
49582
49097
  * @param {*} [axiosOptions] Override http request option.
@@ -49798,7 +49313,7 @@ export interface EntitlementsBetaApiListEntitlementParentsRequest {
49798
49313
  */
49799
49314
  export interface EntitlementsBetaApiListEntitlementsRequest {
49800
49315
  /**
49801
- * The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/apis/beta/#operation/getAccountEntitlements) to get account entitlements.
49316
+ * The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
49802
49317
  * @type {string}
49803
49318
  * @memberof EntitlementsBetaApiListEntitlements
49804
49319
  */
@@ -50036,7 +49551,7 @@ export class EntitlementsBetaApi extends BaseAPI {
50036
49551
  }
50037
49552
 
50038
49553
  /**
50039
- * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description**, **privilegeOverride/overrideLevel** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
49554
+ * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
50040
49555
  * @summary Patch an entitlement
50041
49556
  * @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
50042
49557
  * @param {*} [axiosOptions] Override http request option.
@@ -50072,7 +49587,7 @@ export class EntitlementsBetaApi extends BaseAPI {
50072
49587
  }
50073
49588
 
50074
49589
  /**
50075
- * 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 }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
49590
+ * 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.
50076
49591
  * @summary Bulk update an entitlement list
50077
49592
  * @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
50078
49593
  * @param {*} [axiosOptions] Override http request option.
@@ -50440,7 +49955,7 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
50440
49955
  * This API returns list of Governance Groups
50441
49956
  * @summary List governance groups
50442
49957
  * @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.
50443
- * @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
49958
+ * @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.
50444
49959
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
50445
49960
  * @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*
50446
49961
  * @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**
@@ -50707,7 +50222,7 @@ export const GovernanceGroupsBetaApiFp = function(configuration?: Configuration)
50707
50222
  * This API returns list of Governance Groups
50708
50223
  * @summary List governance groups
50709
50224
  * @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.
50710
- * @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
50225
+ * @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.
50711
50226
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
50712
50227
  * @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*
50713
50228
  * @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**
@@ -51036,7 +50551,7 @@ export interface GovernanceGroupsBetaApiListWorkgroupsRequest {
51036
50551
  readonly offset?: number
51037
50552
 
51038
50553
  /**
51039
- * Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
50554
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
51040
50555
  * @type {number}
51041
50556
  * @memberof GovernanceGroupsBetaApiListWorkgroups
51042
50557
  */
@@ -67871,7 +67386,7 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67871
67386
  };
67872
67387
  },
67873
67388
  /**
67874
- * This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
67389
+ * This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
67875
67390
  * @summary List schema attributes non-employee source
67876
67391
  * @param {string} sourceId The Source id
67877
67392
  * @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.
@@ -68809,7 +68324,7 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
68809
68324
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
68810
68325
  },
68811
68326
  /**
68812
- * This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
68327
+ * This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
68813
68328
  * @summary List schema attributes non-employee source
68814
68329
  * @param {string} sourceId The Source id
68815
68330
  * @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.
@@ -69232,7 +68747,7 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
69232
68747
  return localVarFp.getNonEmployeeSource(requestParameters.sourceId, axiosOptions).then((request) => request(axios, basePath));
69233
68748
  },
69234
68749
  /**
69235
- * This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
68750
+ * This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
69236
68751
  * @summary List schema attributes non-employee source
69237
68752
  * @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
69238
68753
  * @param {*} [axiosOptions] Override http request option.
@@ -70315,7 +69830,7 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
70315
69830
  }
70316
69831
 
70317
69832
  /**
70318
- * This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
69833
+ * This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
70319
69834
  * @summary List schema attributes non-employee source
70320
69835
  * @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
70321
69836
  * @param {*} [axiosOptions] Override http request option.
@@ -80151,7 +79666,7 @@ export class SODViolationsBetaApi extends BaseAPI {
80151
79666
  export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Configuration) {
80152
79667
  return {
80153
79668
  /**
80154
- * 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/idn/docs/saas-configuration/#supported-objects).
79669
+ * 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).
80155
79670
  * @summary Initiates configuration objects export job
80156
79671
  * @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
80157
79672
  * @param {*} [axiosOptions] Override http request option.
@@ -80321,7 +79836,7 @@ export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Config
80321
79836
  };
80322
79837
  },
80323
79838
  /**
80324
- * 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/idn/docs/saas-configuration/#supported-objects).
79839
+ * 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).
80325
79840
  * @summary Get import job status
80326
79841
  * @param {string} id The ID of the import job whose status will be returned.
80327
79842
  * @param {*} [axiosOptions] Override http request option.
@@ -80363,7 +79878,7 @@ export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Config
80363
79878
  };
80364
79879
  },
80365
79880
  /**
80366
- * 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/idn/docs/saas-configuration/#supported-objects).
79881
+ * 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).
80367
79882
  * @summary Initiates configuration objects import job
80368
79883
  * @param {File} data JSON file containing the objects to be imported.
80369
79884
  * @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 \&quot;true\&quot;, 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.
@@ -80470,7 +79985,7 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
80470
79985
  const localVarAxiosParamCreator = SPConfigBetaApiAxiosParamCreator(configuration)
80471
79986
  return {
80472
79987
  /**
80473
- * 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/idn/docs/saas-configuration/#supported-objects).
79988
+ * 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).
80474
79989
  * @summary Initiates configuration objects export job
80475
79990
  * @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
80476
79991
  * @param {*} [axiosOptions] Override http request option.
@@ -80522,7 +80037,7 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
80522
80037
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
80523
80038
  },
80524
80039
  /**
80525
- * 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/idn/docs/saas-configuration/#supported-objects).
80040
+ * 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).
80526
80041
  * @summary Get import job status
80527
80042
  * @param {string} id The ID of the import job whose status will be returned.
80528
80043
  * @param {*} [axiosOptions] Override http request option.
@@ -80535,7 +80050,7 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
80535
80050
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
80536
80051
  },
80537
80052
  /**
80538
- * 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/idn/docs/saas-configuration/#supported-objects).
80053
+ * 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).
80539
80054
  * @summary Initiates configuration objects import job
80540
80055
  * @param {File} data JSON file containing the objects to be imported.
80541
80056
  * @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 \&quot;true\&quot;, 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.
@@ -80572,7 +80087,7 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
80572
80087
  const localVarFp = SPConfigBetaApiFp(configuration)
80573
80088
  return {
80574
80089
  /**
80575
- * 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/idn/docs/saas-configuration/#supported-objects).
80090
+ * 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).
80576
80091
  * @summary Initiates configuration objects export job
80577
80092
  * @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
80578
80093
  * @param {*} [axiosOptions] Override http request option.
@@ -80612,7 +80127,7 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
80612
80127
  return localVarFp.getSpConfigImport(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
80613
80128
  },
80614
80129
  /**
80615
- * 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/idn/docs/saas-configuration/#supported-objects).
80130
+ * 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).
80616
80131
  * @summary Get import job status
80617
80132
  * @param {SPConfigBetaApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
80618
80133
  * @param {*} [axiosOptions] Override http request option.
@@ -80622,7 +80137,7 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
80622
80137
  return localVarFp.getSpConfigImportStatus(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
80623
80138
  },
80624
80139
  /**
80625
- * 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/idn/docs/saas-configuration/#supported-objects).
80140
+ * 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).
80626
80141
  * @summary Initiates configuration objects import job
80627
80142
  * @param {SPConfigBetaApiImportSpConfigRequest} requestParameters Request parameters.
80628
80143
  * @param {*} [axiosOptions] Override http request option.
@@ -80749,7 +80264,7 @@ export interface SPConfigBetaApiImportSpConfigRequest {
80749
80264
  */
80750
80265
  export class SPConfigBetaApi extends BaseAPI {
80751
80266
  /**
80752
- * 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/idn/docs/saas-configuration/#supported-objects).
80267
+ * 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).
80753
80268
  * @summary Initiates configuration objects export job
80754
80269
  * @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
80755
80270
  * @param {*} [axiosOptions] Override http request option.
@@ -80797,7 +80312,7 @@ export class SPConfigBetaApi extends BaseAPI {
80797
80312
  }
80798
80313
 
80799
80314
  /**
80800
- * 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/idn/docs/saas-configuration/#supported-objects).
80315
+ * 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).
80801
80316
  * @summary Get import job status
80802
80317
  * @param {SPConfigBetaApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
80803
80318
  * @param {*} [axiosOptions] Override http request option.
@@ -80809,7 +80324,7 @@ export class SPConfigBetaApi extends BaseAPI {
80809
80324
  }
80810
80325
 
80811
80326
  /**
80812
- * 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/idn/docs/saas-configuration/#supported-objects).
80327
+ * 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).
80813
80328
  * @summary Initiates configuration objects import job
80814
80329
  * @param {SPConfigBetaApiImportSpConfigRequest} requestParameters Request parameters.
80815
80330
  * @param {*} [axiosOptions] Override http request option.
@@ -83209,7 +82724,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
83209
82724
  };
83210
82725
  },
83211
82726
  /**
83212
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
82727
+ * 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.
83213
82728
  * @summary Create provisioning policy
83214
82729
  * @param {string} sourceId The Source id
83215
82730
  * @param {ProvisioningPolicyDtoBeta} provisioningPolicyDtoBeta
@@ -84649,7 +84164,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84649
84164
  };
84650
84165
  },
84651
84166
  /**
84652
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
84167
+ * 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.
84653
84168
  * @summary Update provisioning policy by usagetype
84654
84169
  * @param {string} sourceId The Source ID.
84655
84170
  * @param {UsageTypeBeta} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -85031,7 +84546,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
85031
84546
  };
85032
84547
  },
85033
84548
  /**
85034
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
84549
+ * 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.
85035
84550
  * @summary Partial update of provisioning policy
85036
84551
  * @param {string} sourceId The Source id.
85037
84552
  * @param {UsageTypeBeta} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -85258,7 +84773,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
85258
84773
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
85259
84774
  },
85260
84775
  /**
85261
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
84776
+ * 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.
85262
84777
  * @summary Create provisioning policy
85263
84778
  * @param {string} sourceId The Source id
85264
84779
  * @param {ProvisioningPolicyDtoBeta} provisioningPolicyDtoBeta
@@ -85676,7 +85191,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
85676
85191
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
85677
85192
  },
85678
85193
  /**
85679
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
85194
+ * 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.
85680
85195
  * @summary Update provisioning policy by usagetype
85681
85196
  * @param {string} sourceId The Source ID.
85682
85197
  * @param {UsageTypeBeta} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -85787,7 +85302,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
85787
85302
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
85788
85303
  },
85789
85304
  /**
85790
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
85305
+ * 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.
85791
85306
  * @summary Partial update of provisioning policy
85792
85307
  * @param {string} sourceId The Source id.
85793
85308
  * @param {UsageTypeBeta} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -85865,7 +85380,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
85865
85380
  return localVarFp._delete(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
85866
85381
  },
85867
85382
  /**
85868
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
85383
+ * 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.
85869
85384
  * @summary Create provisioning policy
85870
85385
  * @param {SourcesBetaApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
85871
85386
  * @param {*} [axiosOptions] Override http request option.
@@ -86165,7 +85680,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
86165
85680
  return localVarFp.putNativeChangeDetectionConfig(requestParameters.sourceId, requestParameters.nativeChangeDetectionConfigBeta, axiosOptions).then((request) => request(axios, basePath));
86166
85681
  },
86167
85682
  /**
86168
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
85683
+ * 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.
86169
85684
  * @summary Update provisioning policy by usagetype
86170
85685
  * @param {SourcesBetaApiPutProvisioningPolicyRequest} requestParameters Request parameters.
86171
85686
  * @param {*} [axiosOptions] Override http request option.
@@ -86245,7 +85760,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
86245
85760
  return localVarFp.updateProvisioningPoliciesInBulk(requestParameters.sourceId, requestParameters.provisioningPolicyDtoBeta, axiosOptions).then((request) => request(axios, basePath));
86246
85761
  },
86247
85762
  /**
86248
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
85763
+ * 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.
86249
85764
  * @summary Partial update of provisioning policy
86250
85765
  * @param {SourcesBetaApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
86251
85766
  * @param {*} [axiosOptions] Override http request option.
@@ -87196,7 +86711,7 @@ export class SourcesBetaApi extends BaseAPI {
87196
86711
  }
87197
86712
 
87198
86713
  /**
87199
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
86714
+ * 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.
87200
86715
  * @summary Create provisioning policy
87201
86716
  * @param {SourcesBetaApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
87202
86717
  * @param {*} [axiosOptions] Override http request option.
@@ -87556,7 +87071,7 @@ export class SourcesBetaApi extends BaseAPI {
87556
87071
  }
87557
87072
 
87558
87073
  /**
87559
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
87074
+ * 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.
87560
87075
  * @summary Update provisioning policy by usagetype
87561
87076
  * @param {SourcesBetaApiPutProvisioningPolicyRequest} requestParameters Request parameters.
87562
87077
  * @param {*} [axiosOptions] Override http request option.
@@ -87652,7 +87167,7 @@ export class SourcesBetaApi extends BaseAPI {
87652
87167
  }
87653
87168
 
87654
87169
  /**
87655
- * 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/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
87170
+ * 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.
87656
87171
  * @summary Partial update of provisioning policy
87657
87172
  * @param {SourcesBetaApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
87658
87173
  * @param {*} [axiosOptions] Override http request option.
@@ -88712,7 +88227,7 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88712
88227
  };
88713
88228
  },
88714
88229
  /**
88715
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
88230
+ * This API returns a list of all tagged objects.
88716
88231
  * @summary List tagged objects
88717
88232
  * @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.
88718
88233
  * @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.
@@ -88770,7 +88285,7 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88770
88285
  };
88771
88286
  },
88772
88287
  /**
88773
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
88288
+ * This API returns a list of all tagged objects by type.
88774
88289
  * @summary List tagged objects by type
88775
88290
  * @param {ListTaggedObjectsByTypeTypeBeta} type The type of tagged object to retrieve.
88776
88291
  * @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.
@@ -88884,7 +88399,7 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88884
88399
  };
88885
88400
  },
88886
88401
  /**
88887
- * This adds a tag to an object. Any authenticated token may be used to call this API.
88402
+ * This adds a tag to an object.
88888
88403
  * @summary Add tag to object
88889
88404
  * @param {TaggedObjectBeta} taggedObjectBeta
88890
88405
  * @param {*} [axiosOptions] Override http request option.
@@ -89023,7 +88538,7 @@ export const TaggedObjectsBetaApiFp = function(configuration?: Configuration) {
89023
88538
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
89024
88539
  },
89025
88540
  /**
89026
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
88541
+ * This API returns a list of all tagged objects.
89027
88542
  * @summary List tagged objects
89028
88543
  * @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.
89029
88544
  * @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.
@@ -89039,7 +88554,7 @@ export const TaggedObjectsBetaApiFp = function(configuration?: Configuration) {
89039
88554
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
89040
88555
  },
89041
88556
  /**
89042
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
88557
+ * This API returns a list of all tagged objects by type.
89043
88558
  * @summary List tagged objects by type
89044
88559
  * @param {ListTaggedObjectsByTypeTypeBeta} type The type of tagged object to retrieve.
89045
88560
  * @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.
@@ -89071,7 +88586,7 @@ export const TaggedObjectsBetaApiFp = function(configuration?: Configuration) {
89071
88586
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
89072
88587
  },
89073
88588
  /**
89074
- * This adds a tag to an object. Any authenticated token may be used to call this API.
88589
+ * This adds a tag to an object.
89075
88590
  * @summary Add tag to object
89076
88591
  * @param {TaggedObjectBeta} taggedObjectBeta
89077
88592
  * @param {*} [axiosOptions] Override http request option.
@@ -89137,7 +88652,7 @@ export const TaggedObjectsBetaApiFactory = function (configuration?: Configurati
89137
88652
  return localVarFp.getTaggedObject(requestParameters.type, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
89138
88653
  },
89139
88654
  /**
89140
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
88655
+ * This API returns a list of all tagged objects.
89141
88656
  * @summary List tagged objects
89142
88657
  * @param {TaggedObjectsBetaApiListTaggedObjectsRequest} requestParameters Request parameters.
89143
88658
  * @param {*} [axiosOptions] Override http request option.
@@ -89147,7 +88662,7 @@ export const TaggedObjectsBetaApiFactory = function (configuration?: Configurati
89147
88662
  return localVarFp.listTaggedObjects(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
89148
88663
  },
89149
88664
  /**
89150
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
88665
+ * This API returns a list of all tagged objects by type.
89151
88666
  * @summary List tagged objects by type
89152
88667
  * @param {TaggedObjectsBetaApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
89153
88668
  * @param {*} [axiosOptions] Override http request option.
@@ -89167,7 +88682,7 @@ export const TaggedObjectsBetaApiFactory = function (configuration?: Configurati
89167
88682
  return localVarFp.putTaggedObject(requestParameters.type, requestParameters.id, requestParameters.taggedObjectBeta, axiosOptions).then((request) => request(axios, basePath));
89168
88683
  },
89169
88684
  /**
89170
- * This adds a tag to an object. Any authenticated token may be used to call this API.
88685
+ * This adds a tag to an object.
89171
88686
  * @summary Add tag to object
89172
88687
  * @param {TaggedObjectsBetaApiSetTagToObjectRequest} requestParameters Request parameters.
89173
88688
  * @param {*} [axiosOptions] Override http request option.
@@ -89422,7 +88937,7 @@ export class TaggedObjectsBetaApi extends BaseAPI {
89422
88937
  }
89423
88938
 
89424
88939
  /**
89425
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
88940
+ * This API returns a list of all tagged objects.
89426
88941
  * @summary List tagged objects
89427
88942
  * @param {TaggedObjectsBetaApiListTaggedObjectsRequest} requestParameters Request parameters.
89428
88943
  * @param {*} [axiosOptions] Override http request option.
@@ -89434,7 +88949,7 @@ export class TaggedObjectsBetaApi extends BaseAPI {
89434
88949
  }
89435
88950
 
89436
88951
  /**
89437
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
88952
+ * This API returns a list of all tagged objects by type.
89438
88953
  * @summary List tagged objects by type
89439
88954
  * @param {TaggedObjectsBetaApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
89440
88955
  * @param {*} [axiosOptions] Override http request option.
@@ -89458,7 +88973,7 @@ export class TaggedObjectsBetaApi extends BaseAPI {
89458
88973
  }
89459
88974
 
89460
88975
  /**
89461
- * This adds a tag to an object. Any authenticated token may be used to call this API.
88976
+ * This adds a tag to an object.
89462
88977
  * @summary Add tag to object
89463
88978
  * @param {TaggedObjectsBetaApiSetTagToObjectRequest} requestParameters Request parameters.
89464
88979
  * @param {*} [axiosOptions] Override http request option.
@@ -92657,301 +92172,6 @@ export class UIMetadataBetaApi extends BaseAPI {
92657
92172
 
92658
92173
 
92659
92174
 
92660
- /**
92661
- * VendorConnectorMappingsBetaApi - axios parameter creator
92662
- * @export
92663
- */
92664
- export const VendorConnectorMappingsBetaApiAxiosParamCreator = function (configuration?: Configuration) {
92665
- return {
92666
- /**
92667
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
92668
- * @summary Create vendor connector mapping
92669
- * @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
92670
- * @param {*} [axiosOptions] Override http request option.
92671
- * @throws {RequiredError}
92672
- */
92673
- createVendorConnectorMapping: async (vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
92674
- // verify required parameter 'vendorConnectorMappingBeta' is not null or undefined
92675
- assertParamExists('createVendorConnectorMapping', 'vendorConnectorMappingBeta', vendorConnectorMappingBeta)
92676
- const localVarPath = `/vendor-connector-mappings`;
92677
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
92678
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
92679
- let baseOptions;
92680
- if (configuration) {
92681
- baseOptions = configuration.baseOptions;
92682
- }
92683
-
92684
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
92685
- const localVarHeaderParameter = {} as any;
92686
- const localVarQueryParameter = {} as any;
92687
-
92688
- // authentication userAuth required
92689
- // oauth required
92690
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
92691
-
92692
- // authentication userAuth required
92693
- // oauth required
92694
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
92695
-
92696
-
92697
-
92698
- localVarHeaderParameter['Content-Type'] = 'application/json';
92699
-
92700
- setSearchParams(localVarUrlObj, localVarQueryParameter);
92701
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
92702
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
92703
- localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMappingBeta, localVarRequestOptions, configuration)
92704
-
92705
- return {
92706
- url: toPathString(localVarUrlObj),
92707
- axiosOptions: localVarRequestOptions,
92708
- };
92709
- },
92710
- /**
92711
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
92712
- * @summary Delete vendor connector mapping
92713
- * @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
92714
- * @param {*} [axiosOptions] Override http request option.
92715
- * @throws {RequiredError}
92716
- */
92717
- deleteVendorConnectorMapping: async (vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
92718
- // verify required parameter 'vendorConnectorMappingBeta' is not null or undefined
92719
- assertParamExists('deleteVendorConnectorMapping', 'vendorConnectorMappingBeta', vendorConnectorMappingBeta)
92720
- const localVarPath = `/vendor-connector-mappings`;
92721
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
92722
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
92723
- let baseOptions;
92724
- if (configuration) {
92725
- baseOptions = configuration.baseOptions;
92726
- }
92727
-
92728
- const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
92729
- const localVarHeaderParameter = {} as any;
92730
- const localVarQueryParameter = {} as any;
92731
-
92732
- // authentication userAuth required
92733
- // oauth required
92734
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
92735
-
92736
- // authentication userAuth required
92737
- // oauth required
92738
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
92739
-
92740
-
92741
-
92742
- localVarHeaderParameter['Content-Type'] = 'application/json';
92743
-
92744
- setSearchParams(localVarUrlObj, localVarQueryParameter);
92745
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
92746
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
92747
- localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMappingBeta, localVarRequestOptions, configuration)
92748
-
92749
- return {
92750
- url: toPathString(localVarUrlObj),
92751
- axiosOptions: localVarRequestOptions,
92752
- };
92753
- },
92754
- /**
92755
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
92756
- * @summary List vendor connector mappings
92757
- * @param {*} [axiosOptions] Override http request option.
92758
- * @throws {RequiredError}
92759
- */
92760
- getVendorConnectorMappings: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
92761
- const localVarPath = `/vendor-connector-mappings`;
92762
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
92763
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
92764
- let baseOptions;
92765
- if (configuration) {
92766
- baseOptions = configuration.baseOptions;
92767
- }
92768
-
92769
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
92770
- const localVarHeaderParameter = {} as any;
92771
- const localVarQueryParameter = {} as any;
92772
-
92773
- // authentication userAuth required
92774
- // oauth required
92775
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
92776
-
92777
- // authentication userAuth required
92778
- // oauth required
92779
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
92780
-
92781
-
92782
-
92783
- setSearchParams(localVarUrlObj, localVarQueryParameter);
92784
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
92785
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
92786
-
92787
- return {
92788
- url: toPathString(localVarUrlObj),
92789
- axiosOptions: localVarRequestOptions,
92790
- };
92791
- },
92792
- }
92793
- };
92794
-
92795
- /**
92796
- * VendorConnectorMappingsBetaApi - functional programming interface
92797
- * @export
92798
- */
92799
- export const VendorConnectorMappingsBetaApiFp = function(configuration?: Configuration) {
92800
- const localVarAxiosParamCreator = VendorConnectorMappingsBetaApiAxiosParamCreator(configuration)
92801
- return {
92802
- /**
92803
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
92804
- * @summary Create vendor connector mapping
92805
- * @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
92806
- * @param {*} [axiosOptions] Override http request option.
92807
- * @throws {RequiredError}
92808
- */
92809
- async createVendorConnectorMapping(vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMappingBeta>> {
92810
- const localVarAxiosArgs = await localVarAxiosParamCreator.createVendorConnectorMapping(vendorConnectorMappingBeta, axiosOptions);
92811
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
92812
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsBetaApi.createVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
92813
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
92814
- },
92815
- /**
92816
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
92817
- * @summary Delete vendor connector mapping
92818
- * @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
92819
- * @param {*} [axiosOptions] Override http request option.
92820
- * @throws {RequiredError}
92821
- */
92822
- async deleteVendorConnectorMapping(vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200ResponseBeta>> {
92823
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVendorConnectorMapping(vendorConnectorMappingBeta, axiosOptions);
92824
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
92825
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsBetaApi.deleteVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
92826
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
92827
- },
92828
- /**
92829
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
92830
- * @summary List vendor connector mappings
92831
- * @param {*} [axiosOptions] Override http request option.
92832
- * @throws {RequiredError}
92833
- */
92834
- async getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMappingBeta>>> {
92835
- const localVarAxiosArgs = await localVarAxiosParamCreator.getVendorConnectorMappings(axiosOptions);
92836
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
92837
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsBetaApi.getVendorConnectorMappings']?.[localVarOperationServerIndex]?.url;
92838
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
92839
- },
92840
- }
92841
- };
92842
-
92843
- /**
92844
- * VendorConnectorMappingsBetaApi - factory interface
92845
- * @export
92846
- */
92847
- export const VendorConnectorMappingsBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
92848
- const localVarFp = VendorConnectorMappingsBetaApiFp(configuration)
92849
- return {
92850
- /**
92851
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
92852
- * @summary Create vendor connector mapping
92853
- * @param {VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
92854
- * @param {*} [axiosOptions] Override http request option.
92855
- * @throws {RequiredError}
92856
- */
92857
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMappingBeta> {
92858
- return localVarFp.createVendorConnectorMapping(requestParameters.vendorConnectorMappingBeta, axiosOptions).then((request) => request(axios, basePath));
92859
- },
92860
- /**
92861
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
92862
- * @summary Delete vendor connector mapping
92863
- * @param {VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
92864
- * @param {*} [axiosOptions] Override http request option.
92865
- * @throws {RequiredError}
92866
- */
92867
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200ResponseBeta> {
92868
- return localVarFp.deleteVendorConnectorMapping(requestParameters.vendorConnectorMappingBeta, axiosOptions).then((request) => request(axios, basePath));
92869
- },
92870
- /**
92871
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
92872
- * @summary List vendor connector mappings
92873
- * @param {*} [axiosOptions] Override http request option.
92874
- * @throws {RequiredError}
92875
- */
92876
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMappingBeta>> {
92877
- return localVarFp.getVendorConnectorMappings(axiosOptions).then((request) => request(axios, basePath));
92878
- },
92879
- };
92880
- };
92881
-
92882
- /**
92883
- * Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsBetaApi.
92884
- * @export
92885
- * @interface VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest
92886
- */
92887
- export interface VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest {
92888
- /**
92889
- *
92890
- * @type {VendorConnectorMappingBeta}
92891
- * @memberof VendorConnectorMappingsBetaApiCreateVendorConnectorMapping
92892
- */
92893
- readonly vendorConnectorMappingBeta: VendorConnectorMappingBeta
92894
- }
92895
-
92896
- /**
92897
- * Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsBetaApi.
92898
- * @export
92899
- * @interface VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest
92900
- */
92901
- export interface VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest {
92902
- /**
92903
- *
92904
- * @type {VendorConnectorMappingBeta}
92905
- * @memberof VendorConnectorMappingsBetaApiDeleteVendorConnectorMapping
92906
- */
92907
- readonly vendorConnectorMappingBeta: VendorConnectorMappingBeta
92908
- }
92909
-
92910
- /**
92911
- * VendorConnectorMappingsBetaApi - object-oriented interface
92912
- * @export
92913
- * @class VendorConnectorMappingsBetaApi
92914
- * @extends {BaseAPI}
92915
- */
92916
- export class VendorConnectorMappingsBetaApi extends BaseAPI {
92917
- /**
92918
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
92919
- * @summary Create vendor connector mapping
92920
- * @param {VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
92921
- * @param {*} [axiosOptions] Override http request option.
92922
- * @throws {RequiredError}
92923
- * @memberof VendorConnectorMappingsBetaApi
92924
- */
92925
- public createVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
92926
- return VendorConnectorMappingsBetaApiFp(this.configuration).createVendorConnectorMapping(requestParameters.vendorConnectorMappingBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
92927
- }
92928
-
92929
- /**
92930
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
92931
- * @summary Delete vendor connector mapping
92932
- * @param {VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
92933
- * @param {*} [axiosOptions] Override http request option.
92934
- * @throws {RequiredError}
92935
- * @memberof VendorConnectorMappingsBetaApi
92936
- */
92937
- public deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
92938
- return VendorConnectorMappingsBetaApiFp(this.configuration).deleteVendorConnectorMapping(requestParameters.vendorConnectorMappingBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
92939
- }
92940
-
92941
- /**
92942
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
92943
- * @summary List vendor connector mappings
92944
- * @param {*} [axiosOptions] Override http request option.
92945
- * @throws {RequiredError}
92946
- * @memberof VendorConnectorMappingsBetaApi
92947
- */
92948
- public getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig) {
92949
- return VendorConnectorMappingsBetaApiFp(this.configuration).getVendorConnectorMappings(axiosOptions).then((request) => request(this.axios, this.basePath));
92950
- }
92951
- }
92952
-
92953
-
92954
-
92955
92175
  /**
92956
92176
  * WorkItemsBetaApi - axios parameter creator
92957
92177
  * @export
@@ -95816,12 +95036,12 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
95816
95036
  * @summary List workflows
95817
95037
  * @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.
95818
95038
  * @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.
95819
- * @param {string} [triggerId] Trigger ID
95820
- * @param {string} [connectorInstanceId] Connector Instance ID
95039
+ * @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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
95040
+ * @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: **modified, name**
95821
95041
  * @param {*} [axiosOptions] Override http request option.
95822
95042
  * @throws {RequiredError}
95823
95043
  */
95824
- listWorkflows: async (limit?: number, offset?: number, triggerId?: string, connectorInstanceId?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
95044
+ listWorkflows: async (limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
95825
95045
  const localVarPath = `/workflows`;
95826
95046
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
95827
95047
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -95850,12 +95070,12 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
95850
95070
  localVarQueryParameter['offset'] = offset;
95851
95071
  }
95852
95072
 
95853
- if (triggerId !== undefined) {
95854
- localVarQueryParameter['triggerId'] = triggerId;
95073
+ if (filters !== undefined) {
95074
+ localVarQueryParameter['filters'] = filters;
95855
95075
  }
95856
95076
 
95857
- if (connectorInstanceId !== undefined) {
95858
- localVarQueryParameter['connectorInstanceId'] = connectorInstanceId;
95077
+ if (sorters !== undefined) {
95078
+ localVarQueryParameter['sorters'] = sorters;
95859
95079
  }
95860
95080
 
95861
95081
 
@@ -96100,7 +95320,7 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
96100
95320
  };
96101
95321
  },
96102
95322
  /**
96103
- * 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/idn/docs/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.**
95323
+ * 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.**
96104
95324
  * @summary Test workflow by id
96105
95325
  * @param {string} id Id of the workflow
96106
95326
  * @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
@@ -96313,13 +95533,13 @@ export const WorkflowsBetaApiFp = function(configuration?: Configuration) {
96313
95533
  * @summary List workflows
96314
95534
  * @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.
96315
95535
  * @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.
96316
- * @param {string} [triggerId] Trigger ID
96317
- * @param {string} [connectorInstanceId] Connector Instance ID
95536
+ * @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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
95537
+ * @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: **modified, name**
96318
95538
  * @param {*} [axiosOptions] Override http request option.
96319
95539
  * @throws {RequiredError}
96320
95540
  */
96321
- async listWorkflows(limit?: number, offset?: number, triggerId?: string, connectorInstanceId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowBeta>>> {
96322
- const localVarAxiosArgs = await localVarAxiosParamCreator.listWorkflows(limit, offset, triggerId, connectorInstanceId, axiosOptions);
95541
+ async listWorkflows(limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowBeta>>> {
95542
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listWorkflows(limit, offset, filters, sorters, axiosOptions);
96323
95543
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
96324
95544
  const localVarOperationServerBasePath = operationServerMap['WorkflowsBetaApi.listWorkflows']?.[localVarOperationServerIndex]?.url;
96325
95545
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -96394,7 +95614,7 @@ export const WorkflowsBetaApiFp = function(configuration?: Configuration) {
96394
95614
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
96395
95615
  },
96396
95616
  /**
96397
- * 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/idn/docs/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.**
95617
+ * 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.**
96398
95618
  * @summary Test workflow by id
96399
95619
  * @param {string} id Id of the workflow
96400
95620
  * @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
@@ -96534,7 +95754,7 @@ export const WorkflowsBetaApiFactory = function (configuration?: Configuration,
96534
95754
  * @throws {RequiredError}
96535
95755
  */
96536
95756
  listWorkflows(requestParameters: WorkflowsBetaApiListWorkflowsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowBeta>> {
96537
- return localVarFp.listWorkflows(requestParameters.limit, requestParameters.offset, requestParameters.triggerId, requestParameters.connectorInstanceId, axiosOptions).then((request) => request(axios, basePath));
95757
+ return localVarFp.listWorkflows(requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
96538
95758
  },
96539
95759
  /**
96540
95760
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
@@ -96587,7 +95807,7 @@ export const WorkflowsBetaApiFactory = function (configuration?: Configuration,
96587
95807
  return localVarFp.testExternalExecuteWorkflow(requestParameters.id, requestParameters.testExternalExecuteWorkflowRequestBeta, axiosOptions).then((request) => request(axios, basePath));
96588
95808
  },
96589
95809
  /**
96590
- * 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/idn/docs/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.**
95810
+ * 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.**
96591
95811
  * @summary Test workflow by id
96592
95812
  * @param {WorkflowsBetaApiTestWorkflowRequest} requestParameters Request parameters.
96593
95813
  * @param {*} [axiosOptions] Override http request option.
@@ -96823,18 +96043,18 @@ export interface WorkflowsBetaApiListWorkflowsRequest {
96823
96043
  readonly offset?: number
96824
96044
 
96825
96045
  /**
96826
- * Trigger ID
96046
+ * 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: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
96827
96047
  * @type {string}
96828
96048
  * @memberof WorkflowsBetaApiListWorkflows
96829
96049
  */
96830
- readonly triggerId?: string
96050
+ readonly filters?: string
96831
96051
 
96832
96052
  /**
96833
- * Connector Instance ID
96053
+ * 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: **modified, name**
96834
96054
  * @type {string}
96835
96055
  * @memberof WorkflowsBetaApiListWorkflows
96836
96056
  */
96837
- readonly connectorInstanceId?: string
96057
+ readonly sorters?: string
96838
96058
  }
96839
96059
 
96840
96060
  /**
@@ -97103,7 +96323,7 @@ export class WorkflowsBetaApi extends BaseAPI {
97103
96323
  * @memberof WorkflowsBetaApi
97104
96324
  */
97105
96325
  public listWorkflows(requestParameters: WorkflowsBetaApiListWorkflowsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
97106
- return WorkflowsBetaApiFp(this.configuration).listWorkflows(requestParameters.limit, requestParameters.offset, requestParameters.triggerId, requestParameters.connectorInstanceId, axiosOptions).then((request) => request(this.axios, this.basePath));
96326
+ return WorkflowsBetaApiFp(this.configuration).listWorkflows(requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
97107
96327
  }
97108
96328
 
97109
96329
  /**
@@ -97167,7 +96387,7 @@ export class WorkflowsBetaApi extends BaseAPI {
97167
96387
  }
97168
96388
 
97169
96389
  /**
97170
- * 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/idn/docs/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.**
96390
+ * 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.**
97171
96391
  * @summary Test workflow by id
97172
96392
  * @param {WorkflowsBetaApiTestWorkflowRequest} requestParameters Request parameters.
97173
96393
  * @param {*} [axiosOptions] Override http request option.