sailpoint-api-client 1.5.0 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/beta/api.ts CHANGED
@@ -817,13 +817,13 @@ export interface AccessItemRoleResponseBeta {
817
817
  */
818
818
  export interface AccessProfileApprovalSchemeBeta {
819
819
  /**
820
- * Describes the individual or group that is responsible for an approval step. Values are as follows. **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
820
+ * 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
821
821
  * @type {string}
822
822
  * @memberof AccessProfileApprovalSchemeBeta
823
823
  */
824
824
  'approverType'?: AccessProfileApprovalSchemeBetaApproverTypeBeta;
825
825
  /**
826
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
826
+ * Specific approver ID. Only use this when the `approverType` is `GOVERNANCE_GROUP`.
827
827
  * @type {string}
828
828
  * @memberof AccessProfileApprovalSchemeBeta
829
829
  */
@@ -841,43 +841,43 @@ export const AccessProfileApprovalSchemeBetaApproverTypeBeta = {
841
841
  export type AccessProfileApprovalSchemeBetaApproverTypeBeta = typeof AccessProfileApprovalSchemeBetaApproverTypeBeta[keyof typeof AccessProfileApprovalSchemeBetaApproverTypeBeta];
842
842
 
843
843
  /**
844
- * Access Profile
844
+ * Access profile.
845
845
  * @export
846
846
  * @interface AccessProfileBeta
847
847
  */
848
848
  export interface AccessProfileBeta {
849
849
  /**
850
- * The ID of the Access Profile
850
+ * Access profile ID.
851
851
  * @type {string}
852
852
  * @memberof AccessProfileBeta
853
853
  */
854
854
  'id'?: string;
855
855
  /**
856
- * Name of the Access Profile
856
+ * Access profile name.
857
857
  * @type {string}
858
858
  * @memberof AccessProfileBeta
859
859
  */
860
860
  'name': string;
861
861
  /**
862
- * Information about the Access Profile
862
+ * Access profile description.
863
863
  * @type {string}
864
864
  * @memberof AccessProfileBeta
865
865
  */
866
866
  'description'?: string | null;
867
867
  /**
868
- * Date the Access Profile was created
868
+ * Date and time when the access profile was created.
869
869
  * @type {string}
870
870
  * @memberof AccessProfileBeta
871
871
  */
872
872
  'created'?: string;
873
873
  /**
874
- * Date the Access Profile was last modified.
874
+ * Date and time when the access profile was last modified.
875
875
  * @type {string}
876
876
  * @memberof AccessProfileBeta
877
877
  */
878
878
  'modified'?: string;
879
879
  /**
880
- * Whether the Access Profile is enabled. If the Access Profile is enabled then you must include at least one Entitlement.
880
+ * Indicates whether the access profile is enabled. If it\'s enabled, you must include at least one entitlement.
881
881
  * @type {boolean}
882
882
  * @memberof AccessProfileBeta
883
883
  */
@@ -895,13 +895,13 @@ export interface AccessProfileBeta {
895
895
  */
896
896
  'source': AccessProfileSourceRefBeta;
897
897
  /**
898
- * A list of entitlements associated with the Access Profile. If enabled is false this is allowed to be empty otherwise it needs to contain at least one Entitlement.
898
+ * List of entitlements associated with the access profile. If `enabled` is false, this can be empty. Otherwise, it must contain at least one entitlement.
899
899
  * @type {Array<EntitlementRefBeta>}
900
900
  * @memberof AccessProfileBeta
901
901
  */
902
902
  'entitlements'?: Array<EntitlementRefBeta> | null;
903
903
  /**
904
- * Whether the Access Profile is requestable via access request. Currently, making an Access Profile non-requestable is only supported for customers enabled with the new Request Center. Otherwise, attempting to create an Access Profile with a value **false** in this field results in a 400 error.
904
+ * Indicates whether the access profile is requestable by access request. Currently, making an access profile non-requestable is only supported for customers enabled with the new Request Center. Otherwise, attempting to create an access profile with a value **false** in this field results in a 400 error.
905
905
  * @type {boolean}
906
906
  * @memberof AccessProfileBeta
907
907
  */
@@ -919,7 +919,7 @@ export interface AccessProfileBeta {
919
919
  */
920
920
  'revocationRequestConfig'?: RevocabilityBeta | null;
921
921
  /**
922
- * List of IDs of segments, if any, to which this Access Profile is assigned.
922
+ * List of segment IDs, if any, that the access profile is assigned to.
923
923
  * @type {Array<string>}
924
924
  * @memberof AccessProfileBeta
925
925
  */
@@ -1191,19 +1191,19 @@ export type AccessProfileRefBetaTypeBeta = typeof AccessProfileRefBetaTypeBeta[k
1191
1191
  */
1192
1192
  export interface AccessProfileSourceRefBeta {
1193
1193
  /**
1194
- * The ID of the Source with with which the Access Profile is associated
1194
+ * ID of the source the access profile is associated with.
1195
1195
  * @type {string}
1196
1196
  * @memberof AccessProfileSourceRefBeta
1197
1197
  */
1198
1198
  'id'?: string;
1199
1199
  /**
1200
- * The type of the Source, will always be SOURCE
1200
+ * Source\'s DTO type.
1201
1201
  * @type {string}
1202
1202
  * @memberof AccessProfileSourceRefBeta
1203
1203
  */
1204
1204
  'type'?: AccessProfileSourceRefBetaTypeBeta;
1205
1205
  /**
1206
- * The display name of the associated Source
1206
+ * Source name.
1207
1207
  * @type {string}
1208
1208
  * @memberof AccessProfileSourceRefBeta
1209
1209
  */
@@ -1341,6 +1341,12 @@ export interface AccessRequestBeta {
1341
1341
  * @memberof AccessRequestBeta
1342
1342
  */
1343
1343
  'clientMetadata'?: { [key: string]: string; };
1344
+ /**
1345
+ * Additional submit data structure with requestedFor containing requestedItems allowing distinction for each request item and Identity. * Can only be used when \'requestedFor\' and \'requestedItems\' are not separately provided * Adds ability to specify which account the user wants the access on, in case they have multiple accounts on a source * Allows the ability to request items with different remove dates * Also allows different combinations of request items and identities in the same request
1346
+ * @type {Array<RequestedForDtoRefBeta>}
1347
+ * @memberof AccessRequestBeta
1348
+ */
1349
+ 'requestedForWithRequestedItems'?: Array<RequestedForDtoRefBeta> | null;
1344
1350
  }
1345
1351
 
1346
1352
 
@@ -1558,6 +1564,18 @@ export interface AccessRequestItemBeta {
1558
1564
  * @memberof AccessRequestItemBeta
1559
1565
  */
1560
1566
  'removeDate'?: string;
1567
+ /**
1568
+ * The assignmentId for a specific role assignment on the identity. This id is used to revoke that specific roleAssignment on that identity. * For use with REVOKE_ACCESS requests for roles for identities with multiple accounts on a single source.
1569
+ * @type {string}
1570
+ * @memberof AccessRequestItemBeta
1571
+ */
1572
+ 'assignmentId'?: string | null;
1573
+ /**
1574
+ * The \'distinguishedName\' field for an account on the identity, also called nativeIdentity. This nativeIdentity is used to revoke a specific attributeAssignment on the identity. * For use with REVOKE_ACCESS requests for entitlements for identities with multiple accounts on a single source.
1575
+ * @type {string}
1576
+ * @memberof AccessRequestItemBeta
1577
+ */
1578
+ 'nativeIdentity'?: string | null;
1561
1579
  }
1562
1580
 
1563
1581
  export const AccessRequestItemBetaTypeBeta = {
@@ -3258,6 +3276,25 @@ export interface AccountInfoDtoBeta {
3258
3276
  */
3259
3277
  'uuid'?: string;
3260
3278
  }
3279
+ /**
3280
+ *
3281
+ * @export
3282
+ * @interface AccountItemRefBeta
3283
+ */
3284
+ export interface AccountItemRefBeta {
3285
+ /**
3286
+ * The uuid for the account, available under the \'objectguid\' attribute
3287
+ * @type {string}
3288
+ * @memberof AccountItemRefBeta
3289
+ */
3290
+ 'accountUuid'?: string | null;
3291
+ /**
3292
+ * The \'distinguishedName\' attribute for the account
3293
+ * @type {string}
3294
+ * @memberof AccountItemRefBeta
3295
+ */
3296
+ 'nativeIdentity'?: string;
3297
+ }
3261
3298
  /**
3262
3299
  * If an account activity item is associated with an access request, captures details of that request.
3263
3300
  * @export
@@ -4830,7 +4867,7 @@ export interface AttributeDefinitionBeta {
4830
4867
  * @type {AttributeDefinitionSchemaBeta}
4831
4868
  * @memberof AttributeDefinitionBeta
4832
4869
  */
4833
- 'schema'?: AttributeDefinitionSchemaBeta;
4870
+ 'schema'?: AttributeDefinitionSchemaBeta | null;
4834
4871
  /**
4835
4872
  * A human-readable description of the attribute.
4836
4873
  * @type {string}
@@ -4900,7 +4937,8 @@ export const AttributeDefinitionTypeBeta = {
4900
4937
  String: 'STRING',
4901
4938
  Long: 'LONG',
4902
4939
  Int: 'INT',
4903
- Boolean: 'BOOLEAN'
4940
+ Boolean: 'BOOLEAN',
4941
+ Date: 'DATE'
4904
4942
  } as const;
4905
4943
 
4906
4944
  export type AttributeDefinitionTypeBeta = typeof AttributeDefinitionTypeBeta[keyof typeof AttributeDefinitionTypeBeta];
@@ -12090,10 +12128,186 @@ export interface GenerateRandomStringBeta {
12090
12128
  'requiresPeriodicRefresh'?: boolean;
12091
12129
  }
12092
12130
  /**
12093
- * @type GetActiveCampaigns200ResponseInnerBeta
12131
+ *
12094
12132
  * @export
12133
+ * @interface GetActiveCampaigns200ResponseInnerBeta
12095
12134
  */
12096
- export type GetActiveCampaigns200ResponseInnerBeta = CampaignBeta | SlimcampaignBeta;
12135
+ export interface GetActiveCampaigns200ResponseInnerBeta {
12136
+ /**
12137
+ * Id of the campaign
12138
+ * @type {string}
12139
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12140
+ */
12141
+ 'id'?: string;
12142
+ /**
12143
+ * The campaign name. If this object is part of a template, special formatting applies; see the `/campaign-templates/{id}/generate` endpoint documentation for details.
12144
+ * @type {string}
12145
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12146
+ */
12147
+ 'name': string;
12148
+ /**
12149
+ * The campaign description. If this object is part of a template, special formatting applies; see the `/campaign-templates/{id}/generate` endpoint documentation for details.
12150
+ * @type {string}
12151
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12152
+ */
12153
+ 'description': string;
12154
+ /**
12155
+ * The campaign\'s completion deadline. This date must be in the future in order to activate the campaign. If you try to activate a campaign with a deadline of today or in the past, you will receive a 400 error response.
12156
+ * @type {string}
12157
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12158
+ */
12159
+ 'deadline'?: string;
12160
+ /**
12161
+ * The type of campaign. Could be extended in the future.
12162
+ * @type {string}
12163
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12164
+ */
12165
+ 'type': GetActiveCampaigns200ResponseInnerBetaTypeBeta;
12166
+ /**
12167
+ * Enables email notification for this campaign
12168
+ * @type {boolean}
12169
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12170
+ */
12171
+ 'emailNotificationEnabled'?: boolean;
12172
+ /**
12173
+ * Allows auto revoke for this campaign
12174
+ * @type {boolean}
12175
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12176
+ */
12177
+ 'autoRevokeAllowed'?: boolean;
12178
+ /**
12179
+ * Enables IAI for this campaign. Accepts true even if the IAI product feature is off. If IAI is turned off then campaigns generated from this template will indicate false. The real value will then be returned if IAI is ever enabled for the org in the future.
12180
+ * @type {boolean}
12181
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12182
+ */
12183
+ 'recommendationsEnabled'?: boolean;
12184
+ /**
12185
+ * The campaign\'s current status.
12186
+ * @type {string}
12187
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12188
+ */
12189
+ 'status'?: GetActiveCampaigns200ResponseInnerBetaStatusBeta;
12190
+ /**
12191
+ * The correlatedStatus of the campaign. Only SOURCE_OWNER campaigns can be Uncorrelated. An Uncorrelated certification campaign only includes Uncorrelated identities (An identity is uncorrelated if it has no accounts on an authoritative source).
12192
+ * @type {string}
12193
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12194
+ */
12195
+ 'correlatedStatus'?: GetActiveCampaigns200ResponseInnerBetaCorrelatedStatusBeta;
12196
+ /**
12197
+ * Created time of the campaign
12198
+ * @type {string}
12199
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12200
+ */
12201
+ 'created'?: string;
12202
+ /**
12203
+ * The total number of certifications in this campaign.
12204
+ * @type {number}
12205
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12206
+ */
12207
+ 'totalCertifications'?: number;
12208
+ /**
12209
+ * The number of completed certifications in this campaign.
12210
+ * @type {number}
12211
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12212
+ */
12213
+ 'completedCertifications'?: number;
12214
+ /**
12215
+ * A list of errors and warnings that have accumulated.
12216
+ * @type {Array<CampaignAlertBeta>}
12217
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12218
+ */
12219
+ 'alerts'?: Array<CampaignAlertBeta>;
12220
+ /**
12221
+ * Modified time of the campaign
12222
+ * @type {string}
12223
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12224
+ */
12225
+ 'modified'?: string;
12226
+ /**
12227
+ *
12228
+ * @type {FullcampaignAllOfFilterBeta}
12229
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12230
+ */
12231
+ 'filter'?: FullcampaignAllOfFilterBeta;
12232
+ /**
12233
+ * Determines if comments on sunset date changes are required.
12234
+ * @type {boolean}
12235
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12236
+ */
12237
+ 'sunsetCommentsRequired'?: boolean;
12238
+ /**
12239
+ *
12240
+ * @type {FullcampaignAllOfSourceOwnerCampaignInfoBeta}
12241
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12242
+ */
12243
+ 'sourceOwnerCampaignInfo'?: FullcampaignAllOfSourceOwnerCampaignInfoBeta;
12244
+ /**
12245
+ *
12246
+ * @type {FullcampaignAllOfSearchCampaignInfoBeta}
12247
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12248
+ */
12249
+ 'searchCampaignInfo'?: FullcampaignAllOfSearchCampaignInfoBeta;
12250
+ /**
12251
+ *
12252
+ * @type {FullcampaignAllOfRoleCompositionCampaignInfoBeta}
12253
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12254
+ */
12255
+ 'roleCompositionCampaignInfo'?: FullcampaignAllOfRoleCompositionCampaignInfoBeta;
12256
+ /**
12257
+ *
12258
+ * @type {FullcampaignAllOfMachineAccountCampaignInfoBeta}
12259
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12260
+ */
12261
+ 'machineAccountCampaignInfo'?: FullcampaignAllOfMachineAccountCampaignInfoBeta;
12262
+ /**
12263
+ * A list of sources in the campaign that contain \\\"orphan entitlements\\\" (entitlements without a corresponding Managed Attribute). An empty list indicates the campaign has no orphan entitlements. Null indicates there may be unknown orphan entitlements in the campaign (the campaign was created before this feature was implemented).
12264
+ * @type {Array<FullcampaignAllOfSourcesWithOrphanEntitlementsBeta>}
12265
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12266
+ */
12267
+ 'sourcesWithOrphanEntitlements'?: Array<FullcampaignAllOfSourcesWithOrphanEntitlementsBeta>;
12268
+ /**
12269
+ * Determines whether comments are required for decisions during certification reviews. You can require comments for all decisions, revoke-only decisions, or no decisions. By default, comments are not required for decisions.
12270
+ * @type {string}
12271
+ * @memberof GetActiveCampaigns200ResponseInnerBeta
12272
+ */
12273
+ 'mandatoryCommentRequirement'?: GetActiveCampaigns200ResponseInnerBetaMandatoryCommentRequirementBeta;
12274
+ }
12275
+
12276
+ export const GetActiveCampaigns200ResponseInnerBetaTypeBeta = {
12277
+ Manager: 'MANAGER',
12278
+ SourceOwner: 'SOURCE_OWNER',
12279
+ Search: 'SEARCH',
12280
+ RoleComposition: 'ROLE_COMPOSITION',
12281
+ MachineAccount: 'MACHINE_ACCOUNT'
12282
+ } as const;
12283
+
12284
+ export type GetActiveCampaigns200ResponseInnerBetaTypeBeta = typeof GetActiveCampaigns200ResponseInnerBetaTypeBeta[keyof typeof GetActiveCampaigns200ResponseInnerBetaTypeBeta];
12285
+ export const GetActiveCampaigns200ResponseInnerBetaStatusBeta = {
12286
+ Pending: 'PENDING',
12287
+ Staged: 'STAGED',
12288
+ Canceling: 'CANCELING',
12289
+ Activating: 'ACTIVATING',
12290
+ Active: 'ACTIVE',
12291
+ Completing: 'COMPLETING',
12292
+ Completed: 'COMPLETED',
12293
+ Error: 'ERROR',
12294
+ Archived: 'ARCHIVED'
12295
+ } as const;
12296
+
12297
+ export type GetActiveCampaigns200ResponseInnerBetaStatusBeta = typeof GetActiveCampaigns200ResponseInnerBetaStatusBeta[keyof typeof GetActiveCampaigns200ResponseInnerBetaStatusBeta];
12298
+ export const GetActiveCampaigns200ResponseInnerBetaCorrelatedStatusBeta = {
12299
+ Correlated: 'CORRELATED',
12300
+ Uncorrelated: 'UNCORRELATED'
12301
+ } as const;
12302
+
12303
+ export type GetActiveCampaigns200ResponseInnerBetaCorrelatedStatusBeta = typeof GetActiveCampaigns200ResponseInnerBetaCorrelatedStatusBeta[keyof typeof GetActiveCampaigns200ResponseInnerBetaCorrelatedStatusBeta];
12304
+ export const GetActiveCampaigns200ResponseInnerBetaMandatoryCommentRequirementBeta = {
12305
+ AllDecisions: 'ALL_DECISIONS',
12306
+ RevokeOnlyDecisions: 'REVOKE_ONLY_DECISIONS',
12307
+ NoDecisions: 'NO_DECISIONS'
12308
+ } as const;
12309
+
12310
+ export type GetActiveCampaigns200ResponseInnerBetaMandatoryCommentRequirementBeta = typeof GetActiveCampaigns200ResponseInnerBetaMandatoryCommentRequirementBeta[keyof typeof GetActiveCampaigns200ResponseInnerBetaMandatoryCommentRequirementBeta];
12097
12311
 
12098
12312
  /**
12099
12313
  * @type GetDiscoveredApplications200ResponseInnerBeta
@@ -19734,7 +19948,7 @@ export const OwnerDtoBetaTypeBeta = {
19734
19948
  export type OwnerDtoBetaTypeBeta = typeof OwnerDtoBetaTypeBeta[keyof typeof OwnerDtoBetaTypeBeta];
19735
19949
 
19736
19950
  /**
19737
- * The owner of this object.
19951
+ * Owner of the object.
19738
19952
  * @export
19739
19953
  * @interface OwnerReferenceBeta
19740
19954
  */
@@ -19746,13 +19960,13 @@ export interface OwnerReferenceBeta {
19746
19960
  */
19747
19961
  'type'?: OwnerReferenceBetaTypeBeta;
19748
19962
  /**
19749
- * Identity id
19963
+ * Owner\'s identity ID.
19750
19964
  * @type {string}
19751
19965
  * @memberof OwnerReferenceBeta
19752
19966
  */
19753
19967
  'id'?: string;
19754
19968
  /**
19755
- * Human-readable display name of the owner. It may be left null or omitted in a POST or PATCH. If set, it must match the current value of the owner\'s display name, otherwise a 400 Bad Request error will result.
19969
+ * Owner\'s name. It may be left null or omitted in a POST or PATCH. If set, it must match the current value of the owner\'s display name, otherwise a 400 Bad Request error will result.
19756
19970
  * @type {string}
19757
19971
  * @memberof OwnerReferenceBeta
19758
19972
  */
@@ -20391,19 +20605,6 @@ export const PatchPotentialRoleRequestInnerBetaOpBeta = {
20391
20605
 
20392
20606
  export type PatchPotentialRoleRequestInnerBetaOpBeta = typeof PatchPotentialRoleRequestInnerBetaOpBeta[keyof typeof PatchPotentialRoleRequestInnerBetaOpBeta];
20393
20607
 
20394
- /**
20395
- * A JSONPatch document as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902). Only `replace` operations are accepted by this endpoint.
20396
- * @export
20397
- * @interface PatchServiceDeskIntegrationRequestBeta
20398
- */
20399
- export interface PatchServiceDeskIntegrationRequestBeta {
20400
- /**
20401
- * Operations to be applied
20402
- * @type {Array<JsonPatchOperationBeta>}
20403
- * @memberof PatchServiceDeskIntegrationRequestBeta
20404
- */
20405
- 'operations'?: Array<JsonPatchOperationBeta>;
20406
- }
20407
20608
  /**
20408
20609
  *
20409
20610
  * @export
@@ -21173,7 +21374,7 @@ export interface ProvisioningConfigPlanInitializerScriptBeta {
21173
21374
  'source'?: string;
21174
21375
  }
21175
21376
  /**
21176
- * Defines matching criteria for an Account to be provisioned with a specific Access Profile
21377
+ * Defines matching criteria for an account to be provisioned with a specific access profile.
21177
21378
  * @export
21178
21379
  * @interface ProvisioningCriteriaLevel1Beta
21179
21380
  */
@@ -21185,19 +21386,19 @@ export interface ProvisioningCriteriaLevel1Beta {
21185
21386
  */
21186
21387
  'operation'?: ProvisioningCriteriaOperationBeta;
21187
21388
  /**
21188
- * Name of the Account attribute to be tested. If **operation** is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS, this field is required. Otherwise, specifying it is an error.
21389
+ * Name of the account attribute to be tested. If **operation** is one of `EQUALS`, `NOT_EQUALS`, `CONTAINS`, or `HAS`, this field is required. Otherwise, specifying it results in an error.
21189
21390
  * @type {string}
21190
21391
  * @memberof ProvisioningCriteriaLevel1Beta
21191
21392
  */
21192
21393
  'attribute'?: string | null;
21193
21394
  /**
21194
- * String value to test the Account attribute w/r/t the specified operation. If the operation is one of EQUALS, NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it is an error. If the Attribute is not String-typed, it will be converted to the appropriate type.
21395
+ * String value to test the account attribute w/r/t the specified operation. If the operation is one of `EQUALS`, `NOT_EQUALS`, or `CONTAINS`, this field is required. Otherwise, specifying it results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type.
21195
21396
  * @type {string}
21196
21397
  * @memberof ProvisioningCriteriaLevel1Beta
21197
21398
  */
21198
21399
  'value'?: string | null;
21199
21400
  /**
21200
- * Array of child criteria. Required if the operation is AND or OR, otherwise it must be left null. A maximum of three levels of criteria are supported, including leaf nodes.
21401
+ * Array of child criteria. This field is required if the operation is `AND` or `OR`. Otherwise, it must be left null. A maximum of three levels of criteria are supported, including leaf nodes.
21201
21402
  * @type {Array<ProvisioningCriteriaLevel2Beta>}
21202
21403
  * @memberof ProvisioningCriteriaLevel1Beta
21203
21404
  */
@@ -21206,7 +21407,7 @@ export interface ProvisioningCriteriaLevel1Beta {
21206
21407
 
21207
21408
 
21208
21409
  /**
21209
- * Defines matching criteria for an Account to be provisioned with a specific Access Profile
21410
+ * Defines matching criteria for an account to be provisioned with a specific access profile.
21210
21411
  * @export
21211
21412
  * @interface ProvisioningCriteriaLevel2Beta
21212
21413
  */
@@ -21218,19 +21419,19 @@ export interface ProvisioningCriteriaLevel2Beta {
21218
21419
  */
21219
21420
  'operation'?: ProvisioningCriteriaOperationBeta;
21220
21421
  /**
21221
- * Name of the Account attribute to be tested. If **operation** is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS, this field is required. Otherwise, specifying it is an error.
21422
+ * Name of the account attribute to be tested. If **operation** is one of `EQUALS`, `NOT_EQUALS`, `CONTAINS`, or `HAS`, this field is required. Otherwise, specifying it results in an error.
21222
21423
  * @type {string}
21223
21424
  * @memberof ProvisioningCriteriaLevel2Beta
21224
21425
  */
21225
21426
  'attribute'?: string | null;
21226
21427
  /**
21227
- * String value to test the Account attribute w/r/t the specified operation. If the operation is one of EQUALS, NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it is an error. If the Attribute is not String-typed, it will be converted to the appropriate type.
21428
+ * String value to test the account attribute w/r/t the specified operation. If the operation is one of `EQUALS`, `NOT_EQUALS`, or `CONTAINS`, this field is required. Otherwise, specifying it results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type.
21228
21429
  * @type {string}
21229
21430
  * @memberof ProvisioningCriteriaLevel2Beta
21230
21431
  */
21231
21432
  'value'?: string | null;
21232
21433
  /**
21233
- * Array of child criteria. Required if the operation is AND or OR, otherwise it must be left null. A maximum of three levels of criteria are supported, including leaf nodes.
21434
+ * Array of child criteria. This field is required if the operation is `AND` or `OR`. Otherwise, it must be left null. A maximum of three levels of criteria are supported, including leaf nodes.
21234
21435
  * @type {Array<ProvisioningCriteriaLevel3Beta>}
21235
21436
  * @memberof ProvisioningCriteriaLevel2Beta
21236
21437
  */
@@ -21239,7 +21440,7 @@ export interface ProvisioningCriteriaLevel2Beta {
21239
21440
 
21240
21441
 
21241
21442
  /**
21242
- * Defines matching criteria for an Account to be provisioned with a specific Access Profile
21443
+ * Defines matching criteria for an account to be provisioned with a specific access profile.
21243
21444
  * @export
21244
21445
  * @interface ProvisioningCriteriaLevel3Beta
21245
21446
  */
@@ -21251,19 +21452,19 @@ export interface ProvisioningCriteriaLevel3Beta {
21251
21452
  */
21252
21453
  'operation'?: ProvisioningCriteriaOperationBeta;
21253
21454
  /**
21254
- * Name of the Account attribute to be tested. If **operation** is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS, this field is required. Otherwise, specifying it is an error.
21455
+ * Name of the account attribute to be tested. If **operation** is one of `EQUALS`, `NOT_EQUALS`, `CONTAINS`, or `HAS`, this field is required. Otherwise, specifying it results in an error.
21255
21456
  * @type {string}
21256
21457
  * @memberof ProvisioningCriteriaLevel3Beta
21257
21458
  */
21258
21459
  'attribute'?: string | null;
21259
21460
  /**
21260
- * String value to test the Account attribute w/r/t the specified operation. If the operation is one of EQUALS, NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it is an error. If the Attribute is not String-typed, it will be converted to the appropriate type.
21461
+ * String value to test the account attribute w/r/t the specified operation. If the operation is one of `EQUALS`, `NOT_EQUALS`, or `CONTAINS`, this field is required. Otherwise, specifying it results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type.
21261
21462
  * @type {string}
21262
21463
  * @memberof ProvisioningCriteriaLevel3Beta
21263
21464
  */
21264
- 'value'?: string;
21465
+ 'value'?: string | null;
21265
21466
  /**
21266
- * Array of child criteria. Required if the operation is AND or OR, otherwise it must be left null. A maximum of three levels of criteria are supported, including leaf nodes.
21467
+ * Array of child criteria. This field is required if the operation is `AND` or `OR`. Otherwise, it must be left null. A maximum of three levels of criteria are supported, including leaf nodes.
21267
21468
  * @type {string}
21268
21469
  * @memberof ProvisioningCriteriaLevel3Beta
21269
21470
  */
@@ -21272,7 +21473,7 @@ export interface ProvisioningCriteriaLevel3Beta {
21272
21473
 
21273
21474
 
21274
21475
  /**
21275
- * Supported operations on ProvisioningCriteria
21476
+ * Supported operations on `ProvisioningCriteria`.
21276
21477
  * @export
21277
21478
  * @enum {string}
21278
21479
  */
@@ -21313,7 +21514,7 @@ export interface ProvisioningPolicyDtoBeta {
21313
21514
  * @type {string}
21314
21515
  * @memberof ProvisioningPolicyDtoBeta
21315
21516
  */
21316
- 'name': string;
21517
+ 'name': string | null;
21317
21518
  /**
21318
21519
  * the description of the provisioning policy
21319
21520
  * @type {string}
@@ -22131,19 +22332,25 @@ export interface RequestOnBehalfOfConfigBeta {
22131
22332
  */
22132
22333
  export interface RequestabilityBeta {
22133
22334
  /**
22134
- * Whether the requester of the containing object must provide comments justifying the request
22335
+ * Indicates whether the requester of the containing object must provide comments justifying the request.
22135
22336
  * @type {boolean}
22136
22337
  * @memberof RequestabilityBeta
22137
22338
  */
22138
22339
  'commentsRequired'?: boolean | null;
22139
22340
  /**
22140
- * Whether an approver must provide comments when denying the request
22341
+ * Indicates whether an approver must provide comments when denying the request.
22141
22342
  * @type {boolean}
22142
22343
  * @memberof RequestabilityBeta
22143
22344
  */
22144
22345
  'denialCommentsRequired'?: boolean | null;
22145
22346
  /**
22146
- * List describing the steps in approving the request
22347
+ * Indicates whether reauthorization is required for the request.
22348
+ * @type {boolean}
22349
+ * @memberof RequestabilityBeta
22350
+ */
22351
+ 'reauthorizationRequired'?: boolean | null;
22352
+ /**
22353
+ * List describing the steps involved in approving the request.
22147
22354
  * @type {Array<AccessProfileApprovalSchemeBeta>}
22148
22355
  * @memberof RequestabilityBeta
22149
22356
  */
@@ -22167,6 +22374,12 @@ export interface RequestabilityForRoleBeta {
22167
22374
  * @memberof RequestabilityForRoleBeta
22168
22375
  */
22169
22376
  'denialCommentsRequired'?: boolean | null;
22377
+ /**
22378
+ * Indicates whether reauthorization is required for the request.
22379
+ * @type {boolean}
22380
+ * @memberof RequestabilityForRoleBeta
22381
+ */
22382
+ 'reauthorizationRequired'?: boolean | null;
22170
22383
  /**
22171
22384
  * List describing the steps in approving the request
22172
22385
  * @type {Array<ApprovalSchemeForRoleBeta>}
@@ -22352,6 +22565,25 @@ export interface RequestedAccountRefBeta {
22352
22565
  }
22353
22566
 
22354
22567
 
22568
+ /**
22569
+ *
22570
+ * @export
22571
+ * @interface RequestedForDtoRefBeta
22572
+ */
22573
+ export interface RequestedForDtoRefBeta {
22574
+ /**
22575
+ * The identity id for which the access is requested
22576
+ * @type {string}
22577
+ * @memberof RequestedForDtoRefBeta
22578
+ */
22579
+ 'identityId': string;
22580
+ /**
22581
+ * the details for the access items that are requested for the identity
22582
+ * @type {Array<RequestedItemDtoRefBeta>}
22583
+ * @memberof RequestedForDtoRefBeta
22584
+ */
22585
+ 'requestedItems': Array<RequestedItemDtoRefBeta>;
22586
+ }
22355
22587
  /**
22356
22588
  *
22357
22589
  * @export
@@ -22380,6 +22612,70 @@ export const RequestedItemDetailsBetaTypeBeta = {
22380
22612
 
22381
22613
  export type RequestedItemDetailsBetaTypeBeta = typeof RequestedItemDetailsBetaTypeBeta[keyof typeof RequestedItemDetailsBetaTypeBeta];
22382
22614
 
22615
+ /**
22616
+ *
22617
+ * @export
22618
+ * @interface RequestedItemDtoRefBeta
22619
+ */
22620
+ export interface RequestedItemDtoRefBeta {
22621
+ /**
22622
+ * The type of the item being requested.
22623
+ * @type {string}
22624
+ * @memberof RequestedItemDtoRefBeta
22625
+ */
22626
+ 'type': RequestedItemDtoRefBetaTypeBeta;
22627
+ /**
22628
+ * ID of Role, Access Profile or Entitlement being requested.
22629
+ * @type {string}
22630
+ * @memberof RequestedItemDtoRefBeta
22631
+ */
22632
+ 'id': string;
22633
+ /**
22634
+ * Comment provided by requester. * Comment is required when the request is of type Revoke Access.
22635
+ * @type {string}
22636
+ * @memberof RequestedItemDtoRefBeta
22637
+ */
22638
+ 'comment'?: string;
22639
+ /**
22640
+ * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on associated APIs such as /account-activities and /access-request-status.
22641
+ * @type {{ [key: string]: string; }}
22642
+ * @memberof RequestedItemDtoRefBeta
22643
+ */
22644
+ 'clientMetadata'?: { [key: string]: string; };
22645
+ /**
22646
+ * The date the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date in the future. * The current SLA for the deprovisioning is 24 hours. * This date can be modified to either extend or decrease the duration of access item assignments for the specified identity. You can change the expiration date for requests for yourself or direct reports, but you cannot remove an expiration date on an already approved item. If the access request has not been approved, you can cancel it and submit a new one without the expiration. If it has already been approved, then you have to revoke the access and then re-request without the expiration.
22647
+ * @type {string}
22648
+ * @memberof RequestedItemDtoRefBeta
22649
+ */
22650
+ 'removeDate'?: string;
22651
+ /**
22652
+ * The assignmentId for a specific role assignment on the identity. This id is used to revoke that specific roleAssignment on that identity. * For use with REVOKE_ACCESS requests for roles for identities with multiple accounts on a single source.
22653
+ * @type {string}
22654
+ * @memberof RequestedItemDtoRefBeta
22655
+ */
22656
+ 'assignmentId'?: string | null;
22657
+ /**
22658
+ * The \'distinguishedName\' field for an account on the identity, also called nativeIdentity. This nativeIdentity is used to revoke a specific attributeAssignment on the identity. * For use with REVOKE_ACCESS requests for entitlements for identities with multiple accounts on a single source.
22659
+ * @type {string}
22660
+ * @memberof RequestedItemDtoRefBeta
22661
+ */
22662
+ 'nativeIdentity'?: string | null;
22663
+ /**
22664
+ * The accounts where the access item will be provisioned to * Includes selections performed by the user in the event of multiple accounts existing on the same source * Also includes details for sources where user only has one account
22665
+ * @type {Array<SourceItemRefBeta>}
22666
+ * @memberof RequestedItemDtoRefBeta
22667
+ */
22668
+ 'accountSelection'?: Array<SourceItemRefBeta> | null;
22669
+ }
22670
+
22671
+ export const RequestedItemDtoRefBetaTypeBeta = {
22672
+ AccessProfile: 'ACCESS_PROFILE',
22673
+ Role: 'ROLE',
22674
+ Entitlement: 'ENTITLEMENT'
22675
+ } as const;
22676
+
22677
+ export type RequestedItemDtoRefBetaTypeBeta = typeof RequestedItemDtoRefBetaTypeBeta[keyof typeof RequestedItemDtoRefBetaTypeBeta];
22678
+
22383
22679
  /**
22384
22680
  *
22385
22681
  * @export
@@ -22965,7 +23261,7 @@ export type ReviewerBetaTypeBeta = typeof ReviewerBetaTypeBeta[keyof typeof Revi
22965
23261
  */
22966
23262
  export interface RevocabilityBeta {
22967
23263
  /**
22968
- * List describing the steps in approving the revocation request
23264
+ * List describing the steps involved in approving the revocation request.
22969
23265
  * @type {Array<AccessProfileApprovalSchemeBeta>}
22970
23266
  * @memberof RevocabilityBeta
22971
23267
  */
@@ -25433,7 +25729,7 @@ export interface SchemaBeta {
25433
25729
  * @type {string}
25434
25730
  * @memberof SchemaBeta
25435
25731
  */
25436
- 'hierarchyAttribute'?: string;
25732
+ 'hierarchyAttribute'?: string | null;
25437
25733
  /**
25438
25734
  * Flag indicating whether or not the include permissions with the object data when aggregating the schema.
25439
25735
  * @type {boolean}
@@ -25469,7 +25765,7 @@ export interface SchemaBeta {
25469
25765
  * @type {string}
25470
25766
  * @memberof SchemaBeta
25471
25767
  */
25472
- 'modified'?: string;
25768
+ 'modified'?: string | null;
25473
25769
  }
25474
25770
 
25475
25771
  export const SchemaBetaFeaturesBeta = {
@@ -28287,6 +28583,25 @@ export interface SourceEntitlementRequestConfigBeta {
28287
28583
  */
28288
28584
  'accessRequestConfig'?: EntitlementAccessRequestConfigBeta;
28289
28585
  }
28586
+ /**
28587
+ *
28588
+ * @export
28589
+ * @interface SourceItemRefBeta
28590
+ */
28591
+ export interface SourceItemRefBeta {
28592
+ /**
28593
+ * The id for the source on which account selections are made
28594
+ * @type {string}
28595
+ * @memberof SourceItemRefBeta
28596
+ */
28597
+ 'sourceId'?: string | null;
28598
+ /**
28599
+ * A list of account selections on the source. Currently, only one selection per source is supported.
28600
+ * @type {Array<AccountItemRefBeta>}
28601
+ * @memberof SourceItemRefBeta
28602
+ */
28603
+ 'accounts'?: Array<AccountItemRefBeta> | null;
28604
+ }
28290
28605
  /**
28291
28606
  *
28292
28607
  * @export
@@ -33629,7 +33944,7 @@ export class AccessModelMetadataBetaApi extends BaseAPI {
33629
33944
  export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
33630
33945
  return {
33631
33946
  /**
33632
- * Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
33947
+ * Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters. >**Note:** To use this endpoint, you need all the listed scopes.
33633
33948
  * @summary Create Access Profile
33634
33949
  * @param {AccessProfileBeta} accessProfileBeta
33635
33950
  * @param {*} [axiosOptions] Override http request option.
@@ -34072,7 +34387,7 @@ export const AccessProfilesBetaApiFp = function(configuration?: Configuration) {
34072
34387
  const localVarAxiosParamCreator = AccessProfilesBetaApiAxiosParamCreator(configuration)
34073
34388
  return {
34074
34389
  /**
34075
- * Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
34390
+ * Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters. >**Note:** To use this endpoint, you need all the listed scopes.
34076
34391
  * @summary Create Access Profile
34077
34392
  * @param {AccessProfileBeta} accessProfileBeta
34078
34393
  * @param {*} [axiosOptions] Override http request option.
@@ -34199,7 +34514,7 @@ export const AccessProfilesBetaApiFactory = function (configuration?: Configurat
34199
34514
  const localVarFp = AccessProfilesBetaApiFp(configuration)
34200
34515
  return {
34201
34516
  /**
34202
- * Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
34517
+ * Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters. >**Note:** To use this endpoint, you need all the listed scopes.
34203
34518
  * @summary Create Access Profile
34204
34519
  * @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
34205
34520
  * @param {*} [axiosOptions] Override http request option.
@@ -34492,7 +34807,7 @@ export interface AccessProfilesBetaApiUpdateAccessProfilesInBulkRequest {
34492
34807
  */
34493
34808
  export class AccessProfilesBetaApi extends BaseAPI {
34494
34809
  /**
34495
- * Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
34810
+ * Create an access profile. A user with `ROLE_SUBADMIN` or `SOURCE_SUBADMIN` authority must be associated with the access profile\'s source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters. >**Note:** To use this endpoint, you need all the listed scopes.
34496
34811
  * @summary Create Access Profile
34497
34812
  * @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
34498
34813
  * @param {*} [axiosOptions] Override http request option.
@@ -35621,7 +35936,7 @@ export const AccessRequestsBetaApiAxiosParamCreator = function (configuration?:
35621
35936
  };
35622
35937
  },
35623
35938
  /**
35624
- * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the API will ignore the request. These ignored requests do not display when you use the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) API. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles, access profiles and entitlements. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone.
35939
+ * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the API will ignore the request. These ignored requests do not display when you use the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) API. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles, access profiles and entitlements. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields.
35625
35940
  * @summary Submit Access Request
35626
35941
  * @param {AccessRequestBeta} accessRequestBeta
35627
35942
  * @param {*} [axiosOptions] Override http request option.
@@ -35871,7 +36186,7 @@ export const AccessRequestsBetaApiFp = function(configuration?: Configuration) {
35871
36186
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
35872
36187
  },
35873
36188
  /**
35874
- * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the API will ignore the request. These ignored requests do not display when you use the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) API. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles, access profiles and entitlements. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone.
36189
+ * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the API will ignore the request. These ignored requests do not display when you use the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) API. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles, access profiles and entitlements. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields.
35875
36190
  * @summary Submit Access Request
35876
36191
  * @param {AccessRequestBeta} accessRequestBeta
35877
36192
  * @param {*} [axiosOptions] Override http request option.
@@ -35961,7 +36276,7 @@ export const AccessRequestsBetaApiFactory = function (configuration?: Configurat
35961
36276
  return localVarFp.closeAccessRequest(requestParameters.closeAccessRequestBeta, axiosOptions).then((request) => request(axios, basePath));
35962
36277
  },
35963
36278
  /**
35964
- * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the API will ignore the request. These ignored requests do not display when you use the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) API. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles, access profiles and entitlements. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone.
36279
+ * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the API will ignore the request. These ignored requests do not display when you use the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) API. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles, access profiles and entitlements. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields.
35965
36280
  * @summary Submit Access Request
35966
36281
  * @param {AccessRequestsBetaApiCreateAccessRequestRequest} requestParameters Request parameters.
35967
36282
  * @param {*} [axiosOptions] Override http request option.
@@ -36167,7 +36482,7 @@ export class AccessRequestsBetaApi extends BaseAPI {
36167
36482
  }
36168
36483
 
36169
36484
  /**
36170
- * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the API will ignore the request. These ignored requests do not display when you use the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) API. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles, access profiles and entitlements. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone.
36485
+ * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, the API will ignore the request. These ignored requests do not display when you use the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) API. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * While requesting entitlements, maximum of 25 entitlements and 10 recipients are allowed in a request. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the access will be removed on that date and time only for roles, access profiles and entitlements. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` if the access doesn\'t already have a sunset date. The `removeDate` must be a future date, in the UTC timezone. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields.
36171
36486
  * @summary Submit Access Request
36172
36487
  * @param {AccessRequestsBetaApiCreateAccessRequestRequest} requestParameters Request parameters.
36173
36488
  * @param {*} [axiosOptions] Override http request option.
@@ -81016,15 +81331,15 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
81016
81331
  * Update an existing Service Desk integration by ID with a PATCH request.
81017
81332
  * @summary Patch a Service Desk Integration
81018
81333
  * @param {string} id ID of the Service Desk integration to update
81019
- * @param {PatchServiceDeskIntegrationRequestBeta} patchServiceDeskIntegrationRequestBeta A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Only &#x60;replace&#x60; operations are accepted by this endpoint. A 403 Forbidden Error indicates that a PATCH operation was attempted that is not allowed.
81334
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Only &#x60;replace&#x60; operations are accepted by this endpoint. A 403 Forbidden Error indicates that a PATCH operation was attempted that is not allowed.
81020
81335
  * @param {*} [axiosOptions] Override http request option.
81021
81336
  * @throws {RequiredError}
81022
81337
  */
81023
- patchServiceDeskIntegration: async (id: string, patchServiceDeskIntegrationRequestBeta: PatchServiceDeskIntegrationRequestBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
81338
+ patchServiceDeskIntegration: async (id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
81024
81339
  // verify required parameter 'id' is not null or undefined
81025
81340
  assertParamExists('patchServiceDeskIntegration', 'id', id)
81026
- // verify required parameter 'patchServiceDeskIntegrationRequestBeta' is not null or undefined
81027
- assertParamExists('patchServiceDeskIntegration', 'patchServiceDeskIntegrationRequestBeta', patchServiceDeskIntegrationRequestBeta)
81341
+ // verify required parameter 'jsonPatchOperationBeta' is not null or undefined
81342
+ assertParamExists('patchServiceDeskIntegration', 'jsonPatchOperationBeta', jsonPatchOperationBeta)
81028
81343
  const localVarPath = `/service-desk-integrations/{id}`
81029
81344
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
81030
81345
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -81053,7 +81368,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
81053
81368
  setSearchParams(localVarUrlObj, localVarQueryParameter);
81054
81369
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
81055
81370
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
81056
- localVarRequestOptions.data = serializeDataIfNeeded(patchServiceDeskIntegrationRequestBeta, localVarRequestOptions, configuration)
81371
+ localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationBeta, localVarRequestOptions, configuration)
81057
81372
 
81058
81373
  return {
81059
81374
  url: toPathString(localVarUrlObj),
@@ -81259,12 +81574,12 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
81259
81574
  * Update an existing Service Desk integration by ID with a PATCH request.
81260
81575
  * @summary Patch a Service Desk Integration
81261
81576
  * @param {string} id ID of the Service Desk integration to update
81262
- * @param {PatchServiceDeskIntegrationRequestBeta} patchServiceDeskIntegrationRequestBeta A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Only &#x60;replace&#x60; operations are accepted by this endpoint. A 403 Forbidden Error indicates that a PATCH operation was attempted that is not allowed.
81577
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Only &#x60;replace&#x60; operations are accepted by this endpoint. A 403 Forbidden Error indicates that a PATCH operation was attempted that is not allowed.
81263
81578
  * @param {*} [axiosOptions] Override http request option.
81264
81579
  * @throws {RequiredError}
81265
81580
  */
81266
- async patchServiceDeskIntegration(id: string, patchServiceDeskIntegrationRequestBeta: PatchServiceDeskIntegrationRequestBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoBeta>> {
81267
- const localVarAxiosArgs = await localVarAxiosParamCreator.patchServiceDeskIntegration(id, patchServiceDeskIntegrationRequestBeta, axiosOptions);
81581
+ async patchServiceDeskIntegration(id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoBeta>> {
81582
+ const localVarAxiosArgs = await localVarAxiosParamCreator.patchServiceDeskIntegration(id, jsonPatchOperationBeta, axiosOptions);
81268
81583
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
81269
81584
  const localVarOperationServerBasePath = operationServerMap['ServiceDeskIntegrationBetaApi.patchServiceDeskIntegration']?.[localVarOperationServerIndex]?.url;
81270
81585
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -81382,7 +81697,7 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
81382
81697
  * @throws {RequiredError}
81383
81698
  */
81384
81699
  patchServiceDeskIntegration(requestParameters: ServiceDeskIntegrationBetaApiPatchServiceDeskIntegrationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ServiceDeskIntegrationDtoBeta> {
81385
- return localVarFp.patchServiceDeskIntegration(requestParameters.id, requestParameters.patchServiceDeskIntegrationRequestBeta, axiosOptions).then((request) => request(axios, basePath));
81700
+ return localVarFp.patchServiceDeskIntegration(requestParameters.id, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
81386
81701
  },
81387
81702
  /**
81388
81703
  * Update an existing Service Desk integration by ID.
@@ -81520,10 +81835,10 @@ export interface ServiceDeskIntegrationBetaApiPatchServiceDeskIntegrationRequest
81520
81835
 
81521
81836
  /**
81522
81837
  * A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Only &#x60;replace&#x60; operations are accepted by this endpoint. A 403 Forbidden Error indicates that a PATCH operation was attempted that is not allowed.
81523
- * @type {PatchServiceDeskIntegrationRequestBeta}
81838
+ * @type {Array<JsonPatchOperationBeta>}
81524
81839
  * @memberof ServiceDeskIntegrationBetaApiPatchServiceDeskIntegration
81525
81840
  */
81526
- readonly patchServiceDeskIntegrationRequestBeta: PatchServiceDeskIntegrationRequestBeta
81841
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>
81527
81842
  }
81528
81843
 
81529
81844
  /**
@@ -81659,7 +81974,7 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
81659
81974
  * @memberof ServiceDeskIntegrationBetaApi
81660
81975
  */
81661
81976
  public patchServiceDeskIntegration(requestParameters: ServiceDeskIntegrationBetaApiPatchServiceDeskIntegrationRequest, axiosOptions?: RawAxiosRequestConfig) {
81662
- return ServiceDeskIntegrationBetaApiFp(this.configuration).patchServiceDeskIntegration(requestParameters.id, requestParameters.patchServiceDeskIntegrationRequestBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
81977
+ return ServiceDeskIntegrationBetaApiFp(this.configuration).patchServiceDeskIntegration(requestParameters.id, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
81663
81978
  }
81664
81979
 
81665
81980
  /**
@@ -94085,10 +94400,11 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94085
94400
  * Get a single workflow by id.
94086
94401
  * @summary Get Workflow By Id
94087
94402
  * @param {string} id Id of the workflow
94403
+ * @param {boolean} [workflowMetrics] disable workflow metrics
94088
94404
  * @param {*} [axiosOptions] Override http request option.
94089
94405
  * @throws {RequiredError}
94090
94406
  */
94091
- getWorkflow: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94407
+ getWorkflow: async (id: string, workflowMetrics?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94092
94408
  // verify required parameter 'id' is not null or undefined
94093
94409
  assertParamExists('getWorkflow', 'id', id)
94094
94410
  const localVarPath = `/workflows/{id}`
@@ -94112,6 +94428,10 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94112
94428
  // oauth required
94113
94429
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
94114
94430
 
94431
+ if (workflowMetrics !== undefined) {
94432
+ localVarQueryParameter['workflowMetrics'] = workflowMetrics;
94433
+ }
94434
+
94115
94435
 
94116
94436
 
94117
94437
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -94464,10 +94784,14 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94464
94784
  /**
94465
94785
  * List all workflows in the tenant.
94466
94786
  * @summary List Workflows
94787
+ * @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.
94788
+ * @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.
94789
+ * @param {string} [triggerId] Trigger ID
94790
+ * @param {string} [connectorInstanceId] Connector Instance ID
94467
94791
  * @param {*} [axiosOptions] Override http request option.
94468
94792
  * @throws {RequiredError}
94469
94793
  */
94470
- listWorkflows: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94794
+ listWorkflows: async (limit?: number, offset?: number, triggerId?: string, connectorInstanceId?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94471
94795
  const localVarPath = `/workflows`;
94472
94796
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
94473
94797
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -94488,6 +94812,22 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94488
94812
  // oauth required
94489
94813
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
94490
94814
 
94815
+ if (limit !== undefined) {
94816
+ localVarQueryParameter['limit'] = limit;
94817
+ }
94818
+
94819
+ if (offset !== undefined) {
94820
+ localVarQueryParameter['offset'] = offset;
94821
+ }
94822
+
94823
+ if (triggerId !== undefined) {
94824
+ localVarQueryParameter['triggerId'] = triggerId;
94825
+ }
94826
+
94827
+ if (connectorInstanceId !== undefined) {
94828
+ localVarQueryParameter['connectorInstanceId'] = connectorInstanceId;
94829
+ }
94830
+
94491
94831
 
94492
94832
 
94493
94833
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -94636,17 +94976,19 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94636
94976
  };
94637
94977
  },
94638
94978
  /**
94639
- * Validate a workflow with an \"External Trigger\" can receive input. The response includes the input that the workflow received, which can be used to validate that the input is intact when it reaches the workflow.
94640
- * @summary Test Workflow via External Trigger
94641
- * @param {string} id Id of the workflow
94642
- * @param {TestExternalExecuteWorkflowRequestBeta} [testExternalExecuteWorkflowRequestBeta]
94979
+ * Perform a full update of a workflow. The updated workflow object is returned in the response.
94980
+ * @summary Update Workflow
94981
+ * @param {string} id Id of the Workflow
94982
+ * @param {WorkflowBodyBeta} workflowBodyBeta
94643
94983
  * @param {*} [axiosOptions] Override http request option.
94644
94984
  * @throws {RequiredError}
94645
94985
  */
94646
- testExternalExecuteWorkflow: async (id: string, testExternalExecuteWorkflowRequestBeta?: TestExternalExecuteWorkflowRequestBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94986
+ putWorkflow: async (id: string, workflowBodyBeta: WorkflowBodyBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94647
94987
  // verify required parameter 'id' is not null or undefined
94648
- assertParamExists('testExternalExecuteWorkflow', 'id', id)
94649
- const localVarPath = `/workflows/execute/external/{id}/test`
94988
+ assertParamExists('putWorkflow', 'id', id)
94989
+ // verify required parameter 'workflowBodyBeta' is not null or undefined
94990
+ assertParamExists('putWorkflow', 'workflowBodyBeta', workflowBodyBeta)
94991
+ const localVarPath = `/workflows/{id}`
94650
94992
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
94651
94993
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
94652
94994
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -94655,7 +94997,7 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94655
94997
  baseOptions = configuration.baseOptions;
94656
94998
  }
94657
94999
 
94658
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
95000
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
94659
95001
  const localVarHeaderParameter = {} as any;
94660
95002
  const localVarQueryParameter = {} as any;
94661
95003
 
@@ -94674,7 +95016,7 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94674
95016
  setSearchParams(localVarUrlObj, localVarQueryParameter);
94675
95017
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
94676
95018
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
94677
- localVarRequestOptions.data = serializeDataIfNeeded(testExternalExecuteWorkflowRequestBeta, localVarRequestOptions, configuration)
95019
+ localVarRequestOptions.data = serializeDataIfNeeded(workflowBodyBeta, localVarRequestOptions, configuration)
94678
95020
 
94679
95021
  return {
94680
95022
  url: toPathString(localVarUrlObj),
@@ -94682,19 +95024,17 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94682
95024
  };
94683
95025
  },
94684
95026
  /**
94685
- * 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.**
94686
- * @summary Test Workflow By Id
95027
+ * Validate a workflow with an \"External Trigger\" can receive input. The response includes the input that the workflow received, which can be used to validate that the input is intact when it reaches the workflow.
95028
+ * @summary Test Workflow via External Trigger
94687
95029
  * @param {string} id Id of the workflow
94688
- * @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
95030
+ * @param {TestExternalExecuteWorkflowRequestBeta} [testExternalExecuteWorkflowRequestBeta]
94689
95031
  * @param {*} [axiosOptions] Override http request option.
94690
95032
  * @throws {RequiredError}
94691
95033
  */
94692
- testWorkflow: async (id: string, testWorkflowRequestBeta: TestWorkflowRequestBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
95034
+ testExternalExecuteWorkflow: async (id: string, testExternalExecuteWorkflowRequestBeta?: TestExternalExecuteWorkflowRequestBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94693
95035
  // verify required parameter 'id' is not null or undefined
94694
- assertParamExists('testWorkflow', 'id', id)
94695
- // verify required parameter 'testWorkflowRequestBeta' is not null or undefined
94696
- assertParamExists('testWorkflow', 'testWorkflowRequestBeta', testWorkflowRequestBeta)
94697
- const localVarPath = `/workflows/{id}/test`
95036
+ assertParamExists('testExternalExecuteWorkflow', 'id', id)
95037
+ const localVarPath = `/workflows/execute/external/{id}/test`
94698
95038
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
94699
95039
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
94700
95040
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -94722,7 +95062,7 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94722
95062
  setSearchParams(localVarUrlObj, localVarQueryParameter);
94723
95063
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
94724
95064
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
94725
- localVarRequestOptions.data = serializeDataIfNeeded(testWorkflowRequestBeta, localVarRequestOptions, configuration)
95065
+ localVarRequestOptions.data = serializeDataIfNeeded(testExternalExecuteWorkflowRequestBeta, localVarRequestOptions, configuration)
94726
95066
 
94727
95067
  return {
94728
95068
  url: toPathString(localVarUrlObj),
@@ -94730,19 +95070,19 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94730
95070
  };
94731
95071
  },
94732
95072
  /**
94733
- * Perform a full update of a workflow. The updated workflow object is returned in the response.
94734
- * @summary Update Workflow
94735
- * @param {string} id Id of the Workflow
94736
- * @param {WorkflowBodyBeta} workflowBodyBeta
95073
+ * 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.**
95074
+ * @summary Test Workflow By Id
95075
+ * @param {string} id Id of the workflow
95076
+ * @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
94737
95077
  * @param {*} [axiosOptions] Override http request option.
94738
95078
  * @throws {RequiredError}
94739
95079
  */
94740
- updateWorkflow: async (id: string, workflowBodyBeta: WorkflowBodyBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
95080
+ testWorkflow: async (id: string, testWorkflowRequestBeta: TestWorkflowRequestBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
94741
95081
  // verify required parameter 'id' is not null or undefined
94742
- assertParamExists('updateWorkflow', 'id', id)
94743
- // verify required parameter 'workflowBodyBeta' is not null or undefined
94744
- assertParamExists('updateWorkflow', 'workflowBodyBeta', workflowBodyBeta)
94745
- const localVarPath = `/workflows/{id}`
95082
+ assertParamExists('testWorkflow', 'id', id)
95083
+ // verify required parameter 'testWorkflowRequestBeta' is not null or undefined
95084
+ assertParamExists('testWorkflow', 'testWorkflowRequestBeta', testWorkflowRequestBeta)
95085
+ const localVarPath = `/workflows/{id}/test`
94746
95086
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
94747
95087
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
94748
95088
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -94751,7 +95091,7 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94751
95091
  baseOptions = configuration.baseOptions;
94752
95092
  }
94753
95093
 
94754
- const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
95094
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
94755
95095
  const localVarHeaderParameter = {} as any;
94756
95096
  const localVarQueryParameter = {} as any;
94757
95097
 
@@ -94770,7 +95110,7 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94770
95110
  setSearchParams(localVarUrlObj, localVarQueryParameter);
94771
95111
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
94772
95112
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
94773
- localVarRequestOptions.data = serializeDataIfNeeded(workflowBodyBeta, localVarRequestOptions, configuration)
95113
+ localVarRequestOptions.data = serializeDataIfNeeded(testWorkflowRequestBeta, localVarRequestOptions, configuration)
94774
95114
 
94775
95115
  return {
94776
95116
  url: toPathString(localVarUrlObj),
@@ -94830,11 +95170,12 @@ export const WorkflowsBetaApiFp = function(configuration?: Configuration) {
94830
95170
  * Get a single workflow by id.
94831
95171
  * @summary Get Workflow By Id
94832
95172
  * @param {string} id Id of the workflow
95173
+ * @param {boolean} [workflowMetrics] disable workflow metrics
94833
95174
  * @param {*} [axiosOptions] Override http request option.
94834
95175
  * @throws {RequiredError}
94835
95176
  */
94836
- async getWorkflow(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowBeta>> {
94837
- const localVarAxiosArgs = await localVarAxiosParamCreator.getWorkflow(id, axiosOptions);
95177
+ async getWorkflow(id: string, workflowMetrics?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowBeta>> {
95178
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getWorkflow(id, workflowMetrics, axiosOptions);
94838
95179
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94839
95180
  const localVarOperationServerBasePath = operationServerMap['WorkflowsBetaApi.getWorkflow']?.[localVarOperationServerIndex]?.url;
94840
95181
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -94941,11 +95282,15 @@ export const WorkflowsBetaApiFp = function(configuration?: Configuration) {
94941
95282
  /**
94942
95283
  * List all workflows in the tenant.
94943
95284
  * @summary List Workflows
95285
+ * @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.
95286
+ * @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.
95287
+ * @param {string} [triggerId] Trigger ID
95288
+ * @param {string} [connectorInstanceId] Connector Instance ID
94944
95289
  * @param {*} [axiosOptions] Override http request option.
94945
95290
  * @throws {RequiredError}
94946
95291
  */
94947
- async listWorkflows(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowBeta>>> {
94948
- const localVarAxiosArgs = await localVarAxiosParamCreator.listWorkflows(axiosOptions);
95292
+ async listWorkflows(limit?: number, offset?: number, triggerId?: string, connectorInstanceId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowBeta>>> {
95293
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listWorkflows(limit, offset, triggerId, connectorInstanceId, axiosOptions);
94949
95294
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
94950
95295
  const localVarOperationServerBasePath = operationServerMap['WorkflowsBetaApi.listWorkflows']?.[localVarOperationServerIndex]?.url;
94951
95296
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -94991,6 +95336,20 @@ export const WorkflowsBetaApiFp = function(configuration?: Configuration) {
94991
95336
  const localVarOperationServerBasePath = operationServerMap['WorkflowsBetaApi.postWorkflowExternalTrigger']?.[localVarOperationServerIndex]?.url;
94992
95337
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
94993
95338
  },
95339
+ /**
95340
+ * Perform a full update of a workflow. The updated workflow object is returned in the response.
95341
+ * @summary Update Workflow
95342
+ * @param {string} id Id of the Workflow
95343
+ * @param {WorkflowBodyBeta} workflowBodyBeta
95344
+ * @param {*} [axiosOptions] Override http request option.
95345
+ * @throws {RequiredError}
95346
+ */
95347
+ async putWorkflow(id: string, workflowBodyBeta: WorkflowBodyBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowBeta>> {
95348
+ const localVarAxiosArgs = await localVarAxiosParamCreator.putWorkflow(id, workflowBodyBeta, axiosOptions);
95349
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
95350
+ const localVarOperationServerBasePath = operationServerMap['WorkflowsBetaApi.putWorkflow']?.[localVarOperationServerIndex]?.url;
95351
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
95352
+ },
94994
95353
  /**
94995
95354
  * Validate a workflow with an \"External Trigger\" can receive input. The response includes the input that the workflow received, which can be used to validate that the input is intact when it reaches the workflow.
94996
95355
  * @summary Test Workflow via External Trigger
@@ -95019,20 +95378,6 @@ export const WorkflowsBetaApiFp = function(configuration?: Configuration) {
95019
95378
  const localVarOperationServerBasePath = operationServerMap['WorkflowsBetaApi.testWorkflow']?.[localVarOperationServerIndex]?.url;
95020
95379
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
95021
95380
  },
95022
- /**
95023
- * Perform a full update of a workflow. The updated workflow object is returned in the response.
95024
- * @summary Update Workflow
95025
- * @param {string} id Id of the Workflow
95026
- * @param {WorkflowBodyBeta} workflowBodyBeta
95027
- * @param {*} [axiosOptions] Override http request option.
95028
- * @throws {RequiredError}
95029
- */
95030
- async updateWorkflow(id: string, workflowBodyBeta: WorkflowBodyBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowBeta>> {
95031
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateWorkflow(id, workflowBodyBeta, axiosOptions);
95032
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
95033
- const localVarOperationServerBasePath = operationServerMap['WorkflowsBetaApi.updateWorkflow']?.[localVarOperationServerIndex]?.url;
95034
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
95035
- },
95036
95381
  }
95037
95382
  };
95038
95383
 
@@ -95081,7 +95426,7 @@ export const WorkflowsBetaApiFactory = function (configuration?: Configuration,
95081
95426
  * @throws {RequiredError}
95082
95427
  */
95083
95428
  getWorkflow(requestParameters: WorkflowsBetaApiGetWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkflowBeta> {
95084
- return localVarFp.getWorkflow(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
95429
+ return localVarFp.getWorkflow(requestParameters.id, requestParameters.workflowMetrics, axiosOptions).then((request) => request(axios, basePath));
95085
95430
  },
95086
95431
  /**
95087
95432
  * Get a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a \"404 Not Found\" response.
@@ -95155,11 +95500,12 @@ export const WorkflowsBetaApiFactory = function (configuration?: Configuration,
95155
95500
  /**
95156
95501
  * List all workflows in the tenant.
95157
95502
  * @summary List Workflows
95503
+ * @param {WorkflowsBetaApiListWorkflowsRequest} requestParameters Request parameters.
95158
95504
  * @param {*} [axiosOptions] Override http request option.
95159
95505
  * @throws {RequiredError}
95160
95506
  */
95161
- listWorkflows(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowBeta>> {
95162
- return localVarFp.listWorkflows(axiosOptions).then((request) => request(axios, basePath));
95507
+ listWorkflows(requestParameters: WorkflowsBetaApiListWorkflowsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowBeta>> {
95508
+ return localVarFp.listWorkflows(requestParameters.limit, requestParameters.offset, requestParameters.triggerId, requestParameters.connectorInstanceId, axiosOptions).then((request) => request(axios, basePath));
95163
95509
  },
95164
95510
  /**
95165
95511
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
@@ -95191,6 +95537,16 @@ export const WorkflowsBetaApiFactory = function (configuration?: Configuration,
95191
95537
  postWorkflowExternalTrigger(requestParameters: WorkflowsBetaApiPostWorkflowExternalTriggerRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkflowOAuthClientBeta> {
95192
95538
  return localVarFp.postWorkflowExternalTrigger(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
95193
95539
  },
95540
+ /**
95541
+ * Perform a full update of a workflow. The updated workflow object is returned in the response.
95542
+ * @summary Update Workflow
95543
+ * @param {WorkflowsBetaApiPutWorkflowRequest} requestParameters Request parameters.
95544
+ * @param {*} [axiosOptions] Override http request option.
95545
+ * @throws {RequiredError}
95546
+ */
95547
+ putWorkflow(requestParameters: WorkflowsBetaApiPutWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkflowBeta> {
95548
+ return localVarFp.putWorkflow(requestParameters.id, requestParameters.workflowBodyBeta, axiosOptions).then((request) => request(axios, basePath));
95549
+ },
95194
95550
  /**
95195
95551
  * Validate a workflow with an \"External Trigger\" can receive input. The response includes the input that the workflow received, which can be used to validate that the input is intact when it reaches the workflow.
95196
95552
  * @summary Test Workflow via External Trigger
@@ -95211,16 +95567,6 @@ export const WorkflowsBetaApiFactory = function (configuration?: Configuration,
95211
95567
  testWorkflow(requestParameters: WorkflowsBetaApiTestWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TestWorkflow200ResponseBeta> {
95212
95568
  return localVarFp.testWorkflow(requestParameters.id, requestParameters.testWorkflowRequestBeta, axiosOptions).then((request) => request(axios, basePath));
95213
95569
  },
95214
- /**
95215
- * Perform a full update of a workflow. The updated workflow object is returned in the response.
95216
- * @summary Update Workflow
95217
- * @param {WorkflowsBetaApiUpdateWorkflowRequest} requestParameters Request parameters.
95218
- * @param {*} [axiosOptions] Override http request option.
95219
- * @throws {RequiredError}
95220
- */
95221
- updateWorkflow(requestParameters: WorkflowsBetaApiUpdateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkflowBeta> {
95222
- return localVarFp.updateWorkflow(requestParameters.id, requestParameters.workflowBodyBeta, axiosOptions).then((request) => request(axios, basePath));
95223
- },
95224
95570
  };
95225
95571
  };
95226
95572
 
@@ -95278,6 +95624,13 @@ export interface WorkflowsBetaApiGetWorkflowRequest {
95278
95624
  * @memberof WorkflowsBetaApiGetWorkflow
95279
95625
  */
95280
95626
  readonly id: string
95627
+
95628
+ /**
95629
+ * disable workflow metrics
95630
+ * @type {boolean}
95631
+ * @memberof WorkflowsBetaApiGetWorkflow
95632
+ */
95633
+ readonly workflowMetrics?: boolean
95281
95634
  }
95282
95635
 
95283
95636
  /**
@@ -95427,6 +95780,41 @@ export interface WorkflowsBetaApiListWorkflowLibraryTriggersRequest {
95427
95780
  readonly filters?: string
95428
95781
  }
95429
95782
 
95783
+ /**
95784
+ * Request parameters for listWorkflows operation in WorkflowsBetaApi.
95785
+ * @export
95786
+ * @interface WorkflowsBetaApiListWorkflowsRequest
95787
+ */
95788
+ export interface WorkflowsBetaApiListWorkflowsRequest {
95789
+ /**
95790
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
95791
+ * @type {number}
95792
+ * @memberof WorkflowsBetaApiListWorkflows
95793
+ */
95794
+ readonly limit?: number
95795
+
95796
+ /**
95797
+ * 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.
95798
+ * @type {number}
95799
+ * @memberof WorkflowsBetaApiListWorkflows
95800
+ */
95801
+ readonly offset?: number
95802
+
95803
+ /**
95804
+ * Trigger ID
95805
+ * @type {string}
95806
+ * @memberof WorkflowsBetaApiListWorkflows
95807
+ */
95808
+ readonly triggerId?: string
95809
+
95810
+ /**
95811
+ * Connector Instance ID
95812
+ * @type {string}
95813
+ * @memberof WorkflowsBetaApiListWorkflows
95814
+ */
95815
+ readonly connectorInstanceId?: string
95816
+ }
95817
+
95430
95818
  /**
95431
95819
  * Request parameters for patchWorkflow operation in WorkflowsBetaApi.
95432
95820
  * @export
@@ -95483,6 +95871,27 @@ export interface WorkflowsBetaApiPostWorkflowExternalTriggerRequest {
95483
95871
  readonly id: string
95484
95872
  }
95485
95873
 
95874
+ /**
95875
+ * Request parameters for putWorkflow operation in WorkflowsBetaApi.
95876
+ * @export
95877
+ * @interface WorkflowsBetaApiPutWorkflowRequest
95878
+ */
95879
+ export interface WorkflowsBetaApiPutWorkflowRequest {
95880
+ /**
95881
+ * Id of the Workflow
95882
+ * @type {string}
95883
+ * @memberof WorkflowsBetaApiPutWorkflow
95884
+ */
95885
+ readonly id: string
95886
+
95887
+ /**
95888
+ *
95889
+ * @type {WorkflowBodyBeta}
95890
+ * @memberof WorkflowsBetaApiPutWorkflow
95891
+ */
95892
+ readonly workflowBodyBeta: WorkflowBodyBeta
95893
+ }
95894
+
95486
95895
  /**
95487
95896
  * Request parameters for testExternalExecuteWorkflow operation in WorkflowsBetaApi.
95488
95897
  * @export
@@ -95525,27 +95934,6 @@ export interface WorkflowsBetaApiTestWorkflowRequest {
95525
95934
  readonly testWorkflowRequestBeta: TestWorkflowRequestBeta
95526
95935
  }
95527
95936
 
95528
- /**
95529
- * Request parameters for updateWorkflow operation in WorkflowsBetaApi.
95530
- * @export
95531
- * @interface WorkflowsBetaApiUpdateWorkflowRequest
95532
- */
95533
- export interface WorkflowsBetaApiUpdateWorkflowRequest {
95534
- /**
95535
- * Id of the Workflow
95536
- * @type {string}
95537
- * @memberof WorkflowsBetaApiUpdateWorkflow
95538
- */
95539
- readonly id: string
95540
-
95541
- /**
95542
- *
95543
- * @type {WorkflowBodyBeta}
95544
- * @memberof WorkflowsBetaApiUpdateWorkflow
95545
- */
95546
- readonly workflowBodyBeta: WorkflowBodyBeta
95547
- }
95548
-
95549
95937
  /**
95550
95938
  * WorkflowsBetaApi - object-oriented interface
95551
95939
  * @export
@@ -95598,7 +95986,7 @@ export class WorkflowsBetaApi extends BaseAPI {
95598
95986
  * @memberof WorkflowsBetaApi
95599
95987
  */
95600
95988
  public getWorkflow(requestParameters: WorkflowsBetaApiGetWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) {
95601
- return WorkflowsBetaApiFp(this.configuration).getWorkflow(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
95989
+ return WorkflowsBetaApiFp(this.configuration).getWorkflow(requestParameters.id, requestParameters.workflowMetrics, axiosOptions).then((request) => request(this.axios, this.basePath));
95602
95990
  }
95603
95991
 
95604
95992
  /**
@@ -95687,12 +96075,13 @@ export class WorkflowsBetaApi extends BaseAPI {
95687
96075
  /**
95688
96076
  * List all workflows in the tenant.
95689
96077
  * @summary List Workflows
96078
+ * @param {WorkflowsBetaApiListWorkflowsRequest} requestParameters Request parameters.
95690
96079
  * @param {*} [axiosOptions] Override http request option.
95691
96080
  * @throws {RequiredError}
95692
96081
  * @memberof WorkflowsBetaApi
95693
96082
  */
95694
- public listWorkflows(axiosOptions?: RawAxiosRequestConfig) {
95695
- return WorkflowsBetaApiFp(this.configuration).listWorkflows(axiosOptions).then((request) => request(this.axios, this.basePath));
96083
+ public listWorkflows(requestParameters: WorkflowsBetaApiListWorkflowsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
96084
+ return WorkflowsBetaApiFp(this.configuration).listWorkflows(requestParameters.limit, requestParameters.offset, requestParameters.triggerId, requestParameters.connectorInstanceId, axiosOptions).then((request) => request(this.axios, this.basePath));
95696
96085
  }
95697
96086
 
95698
96087
  /**
@@ -95731,6 +96120,18 @@ export class WorkflowsBetaApi extends BaseAPI {
95731
96120
  return WorkflowsBetaApiFp(this.configuration).postWorkflowExternalTrigger(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
95732
96121
  }
95733
96122
 
96123
+ /**
96124
+ * Perform a full update of a workflow. The updated workflow object is returned in the response.
96125
+ * @summary Update Workflow
96126
+ * @param {WorkflowsBetaApiPutWorkflowRequest} requestParameters Request parameters.
96127
+ * @param {*} [axiosOptions] Override http request option.
96128
+ * @throws {RequiredError}
96129
+ * @memberof WorkflowsBetaApi
96130
+ */
96131
+ public putWorkflow(requestParameters: WorkflowsBetaApiPutWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) {
96132
+ return WorkflowsBetaApiFp(this.configuration).putWorkflow(requestParameters.id, requestParameters.workflowBodyBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
96133
+ }
96134
+
95734
96135
  /**
95735
96136
  * Validate a workflow with an \"External Trigger\" can receive input. The response includes the input that the workflow received, which can be used to validate that the input is intact when it reaches the workflow.
95736
96137
  * @summary Test Workflow via External Trigger
@@ -95754,18 +96155,6 @@ export class WorkflowsBetaApi extends BaseAPI {
95754
96155
  public testWorkflow(requestParameters: WorkflowsBetaApiTestWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) {
95755
96156
  return WorkflowsBetaApiFp(this.configuration).testWorkflow(requestParameters.id, requestParameters.testWorkflowRequestBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
95756
96157
  }
95757
-
95758
- /**
95759
- * Perform a full update of a workflow. The updated workflow object is returned in the response.
95760
- * @summary Update Workflow
95761
- * @param {WorkflowsBetaApiUpdateWorkflowRequest} requestParameters Request parameters.
95762
- * @param {*} [axiosOptions] Override http request option.
95763
- * @throws {RequiredError}
95764
- * @memberof WorkflowsBetaApi
95765
- */
95766
- public updateWorkflow(requestParameters: WorkflowsBetaApiUpdateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) {
95767
- return WorkflowsBetaApiFp(this.configuration).updateWorkflow(requestParameters.id, requestParameters.workflowBodyBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
95768
- }
95769
96158
  }
95770
96159
 
95771
96160