sailpoint-api-client 1.6.8 → 1.6.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +343 -1123
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +321 -840
  6. package/dist/beta/api.js +113 -699
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/beta/common.js.map +1 -1
  10. package/dist/generic/api.d.ts +386 -0
  11. package/dist/generic/api.js +689 -0
  12. package/dist/generic/api.js.map +1 -0
  13. package/dist/generic/base.d.ts +66 -0
  14. package/dist/generic/base.js +89 -0
  15. package/dist/generic/base.js.map +1 -0
  16. package/dist/generic/common.d.ts +65 -0
  17. package/dist/generic/common.js +260 -0
  18. package/dist/generic/common.js.map +1 -0
  19. package/dist/generic/configuration.d.ts +91 -0
  20. package/dist/generic/configuration.js +46 -0
  21. package/dist/generic/configuration.js.map +1 -0
  22. package/dist/generic/index.d.ts +13 -0
  23. package/dist/generic/index.js +32 -0
  24. package/dist/generic/index.js.map +1 -0
  25. package/dist/index.d.ts +5 -4
  26. package/dist/index.js +1 -0
  27. package/dist/index.js.map +1 -1
  28. package/dist/paginator.d.ts +3 -1
  29. package/dist/paginator.js +146 -0
  30. package/dist/paginator.js.map +1 -1
  31. package/dist/v2024/api.d.ts +1536 -511
  32. package/dist/v2024/api.js +5111 -4045
  33. package/dist/v2024/api.js.map +1 -1
  34. package/dist/v2024/common.js +1 -1
  35. package/dist/v2024/common.js.map +1 -1
  36. package/dist/v2025/api.d.ts +5099 -632
  37. package/dist/v2025/api.js +11068 -7033
  38. package/dist/v2025/api.js.map +1 -1
  39. package/dist/v2025/common.js +1 -1
  40. package/dist/v2025/common.js.map +1 -1
  41. package/dist/v3/api.d.ts +122 -444
  42. package/dist/v3/api.js +88 -407
  43. package/dist/v3/api.js.map +1 -1
  44. package/dist/v3/common.js +1 -1
  45. package/dist/v3/common.js.map +1 -1
  46. package/generic/.openapi-generator/FILES +11 -0
  47. package/generic/.openapi-generator/VERSION +1 -0
  48. package/generic/.openapi-generator-ignore +23 -0
  49. package/generic/README.md +46 -0
  50. package/generic/api.ts +681 -0
  51. package/generic/base.ts +86 -0
  52. package/generic/common.ts +159 -0
  53. package/generic/configuration.ts +110 -0
  54. package/generic/git_push.sh +57 -0
  55. package/generic/index.ts +18 -0
  56. package/generic/package.json +34 -0
  57. package/generic/tsconfig.json +21 -0
  58. package/index.ts +9 -7
  59. package/package.json +1 -1
  60. package/paginator.ts +137 -11
  61. package/v2024/README.md +2 -2
  62. package/v2024/api.ts +2323 -771
  63. package/v2024/common.ts +2 -2
  64. package/v2024/package.json +1 -1
  65. package/v2025/README.md +2 -2
  66. package/v2025/api.ts +7689 -1221
  67. package/v2025/common.ts +2 -2
  68. package/v2025/package.json +1 -1
  69. package/v3/README.md +2 -2
  70. package/v3/api.ts +146 -611
  71. package/v3/common.ts +2 -2
  72. package/v3/package.json +1 -1
package/dist/v3/api.d.ts CHANGED
@@ -501,13 +501,13 @@ export interface AccessProfile {
501
501
  */
502
502
  export interface AccessProfileApprovalScheme {
503
503
  /**
504
- * 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
504
+ * Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
505
505
  * @type {string}
506
506
  * @memberof AccessProfileApprovalScheme
507
507
  */
508
508
  'approverType'?: AccessProfileApprovalSchemeApproverTypeV3;
509
509
  /**
510
- * Specific approver ID. Only use this when the `approverType` is `GOVERNANCE_GROUP`.
510
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
511
511
  * @type {string}
512
512
  * @memberof AccessProfileApprovalScheme
513
513
  */
@@ -519,6 +519,7 @@ export declare const AccessProfileApprovalSchemeApproverTypeV3: {
519
519
  readonly SourceOwner: "SOURCE_OWNER";
520
520
  readonly Manager: "MANAGER";
521
521
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
522
+ readonly Workflow: "WORKFLOW";
522
523
  };
523
524
  export type AccessProfileApprovalSchemeApproverTypeV3 = typeof AccessProfileApprovalSchemeApproverTypeV3[keyof typeof AccessProfileApprovalSchemeApproverTypeV3];
524
525
  /**
@@ -1699,7 +1700,7 @@ export type AccountOriginV3 = typeof AccountOriginV3[keyof typeof AccountOriginV
1699
1700
  */
1700
1701
  export interface AccountAction {
1701
1702
  /**
1702
- * Describes if action will be enabled or disabled
1703
+ * Describes if action will be enable, disable or delete.
1703
1704
  * @type {string}
1704
1705
  * @memberof AccountAction
1705
1706
  */
@@ -1714,6 +1715,7 @@ export interface AccountAction {
1714
1715
  export declare const AccountActionActionV3: {
1715
1716
  readonly Enable: "ENABLE";
1716
1717
  readonly Disable: "DISABLE";
1718
+ readonly Delete: "DELETE";
1717
1719
  };
1718
1720
  export type AccountActionActionV3 = typeof AccountActionActionV3[keyof typeof AccountActionActionV3];
1719
1721
  /**
@@ -3241,13 +3243,13 @@ export type ApprovalScheme = typeof ApprovalScheme[keyof typeof ApprovalScheme];
3241
3243
  */
3242
3244
  export interface ApprovalSchemeForRole {
3243
3245
  /**
3244
- * Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
3246
+ * Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
3245
3247
  * @type {string}
3246
3248
  * @memberof ApprovalSchemeForRole
3247
3249
  */
3248
3250
  'approverType'?: ApprovalSchemeForRoleApproverTypeV3;
3249
3251
  /**
3250
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
3252
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
3251
3253
  * @type {string}
3252
3254
  * @memberof ApprovalSchemeForRole
3253
3255
  */
@@ -3257,6 +3259,7 @@ export declare const ApprovalSchemeForRoleApproverTypeV3: {
3257
3259
  readonly Owner: "OWNER";
3258
3260
  readonly Manager: "MANAGER";
3259
3261
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
3262
+ readonly Workflow: "WORKFLOW";
3260
3263
  };
3261
3264
  export type ApprovalSchemeForRoleApproverTypeV3 = typeof ApprovalSchemeForRoleApproverTypeV3[keyof typeof ApprovalSchemeForRoleApproverTypeV3];
3262
3265
  /**
@@ -3510,6 +3513,12 @@ export interface AttributeDefinition {
3510
3513
  * @memberof AttributeDefinition
3511
3514
  */
3512
3515
  'name'?: string;
3516
+ /**
3517
+ * Attribute name in the native system.
3518
+ * @type {string}
3519
+ * @memberof AttributeDefinition
3520
+ */
3521
+ 'nativeName'?: string | null;
3513
3522
  /**
3514
3523
  *
3515
3524
  * @type {AttributeDefinitionType}
@@ -6146,6 +6155,12 @@ export interface CompletedApproval {
6146
6155
  * @memberof CompletedApproval
6147
6156
  */
6148
6157
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
6158
+ /**
6159
+ * The privilege level of the requested access item, if applicable.
6160
+ * @type {string}
6161
+ * @memberof CompletedApproval
6162
+ */
6163
+ 'privilegeLevel'?: string | null;
6149
6164
  }
6150
6165
  /**
6151
6166
  * If the access request submitted event trigger is configured and this access request was intercepted by it, then this is the result of the trigger\'s decision to either approve or deny the request.
@@ -7310,19 +7325,6 @@ export declare const DeleteSource202ResponseTypeV3: {
7310
7325
  readonly TaskResult: "TASK_RESULT";
7311
7326
  };
7312
7327
  export type DeleteSource202ResponseTypeV3 = typeof DeleteSource202ResponseTypeV3[keyof typeof DeleteSource202ResponseTypeV3];
7313
- /**
7314
- *
7315
- * @export
7316
- * @interface DeleteVendorConnectorMapping200Response
7317
- */
7318
- export interface DeleteVendorConnectorMapping200Response {
7319
- /**
7320
- * The number of vendor connector mappings successfully deleted.
7321
- * @type {number}
7322
- * @memberof DeleteVendorConnectorMapping200Response
7323
- */
7324
- 'count'?: number;
7325
- }
7326
7328
  /**
7327
7329
  *
7328
7330
  * @export
@@ -8252,35 +8254,6 @@ export declare const EntitlementRefTypeV3: {
8252
8254
  readonly Entitlement: "ENTITLEMENT";
8253
8255
  };
8254
8256
  export type EntitlementRefTypeV3 = typeof EntitlementRefTypeV3[keyof typeof EntitlementRefTypeV3];
8255
- /**
8256
- * Entitlement including a specific set of access.
8257
- * @export
8258
- * @interface EntitlementRef1
8259
- */
8260
- export interface EntitlementRef1 {
8261
- /**
8262
- * Entitlement\'s DTO type.
8263
- * @type {string}
8264
- * @memberof EntitlementRef1
8265
- */
8266
- 'type'?: EntitlementRef1TypeV3;
8267
- /**
8268
- * Entitlement\'s ID.
8269
- * @type {string}
8270
- * @memberof EntitlementRef1
8271
- */
8272
- 'id'?: string;
8273
- /**
8274
- * Entitlement\'s display name.
8275
- * @type {string}
8276
- * @memberof EntitlementRef1
8277
- */
8278
- 'name'?: string;
8279
- }
8280
- export declare const EntitlementRef1TypeV3: {
8281
- readonly Entitlement: "ENTITLEMENT";
8282
- };
8283
- export type EntitlementRef1TypeV3 = typeof EntitlementRef1TypeV3[keyof typeof EntitlementRef1TypeV3];
8284
8257
  /**
8285
8258
  *
8286
8259
  * @export
@@ -9197,11 +9170,11 @@ export interface FieldDetailsDto {
9197
9170
  */
9198
9171
  'isRequired'?: boolean;
9199
9172
  /**
9200
- * The type of the attribute.
9173
+ * The type of the attribute. string: For text-based data. int: For whole numbers. long: For larger whole numbers. date: For date and time values. boolean: For true/false values. secret: For sensitive data like passwords, which will be masked and encrypted.
9201
9174
  * @type {string}
9202
9175
  * @memberof FieldDetailsDto
9203
9176
  */
9204
- 'type'?: string;
9177
+ 'type'?: FieldDetailsDtoTypeV3;
9205
9178
  /**
9206
9179
  * Flag indicating whether or not the attribute is multi-valued.
9207
9180
  * @type {boolean}
@@ -9209,6 +9182,15 @@ export interface FieldDetailsDto {
9209
9182
  */
9210
9183
  'isMultiValued'?: boolean;
9211
9184
  }
9185
+ export declare const FieldDetailsDtoTypeV3: {
9186
+ readonly String: "string";
9187
+ readonly Int: "int";
9188
+ readonly Long: "long";
9189
+ readonly Date: "date";
9190
+ readonly Boolean: "boolean";
9191
+ readonly Secret: "secret";
9192
+ };
9193
+ export type FieldDetailsDtoTypeV3 = typeof FieldDetailsDtoTypeV3[keyof typeof FieldDetailsDtoTypeV3];
9212
9194
  /**
9213
9195
  *
9214
9196
  * @export
@@ -10074,31 +10056,6 @@ export interface GetReferenceIdentityAttribute {
10074
10056
  */
10075
10057
  'requiresPeriodicRefresh'?: boolean;
10076
10058
  }
10077
- /**
10078
- *
10079
- * @export
10080
- * @interface GetVendorConnectorMappings405Response
10081
- */
10082
- export interface GetVendorConnectorMappings405Response {
10083
- /**
10084
- * A message describing the error
10085
- * @type {object}
10086
- * @memberof GetVendorConnectorMappings405Response
10087
- */
10088
- 'errorName'?: object;
10089
- /**
10090
- * Description of the error
10091
- * @type {object}
10092
- * @memberof GetVendorConnectorMappings405Response
10093
- */
10094
- 'errorMessage'?: object;
10095
- /**
10096
- * Unique tracking id for the error.
10097
- * @type {string}
10098
- * @memberof GetVendorConnectorMappings405Response
10099
- */
10100
- 'trackingId'?: string;
10101
- }
10102
10059
  /**
10103
10060
  * OAuth2 Grant Type
10104
10061
  * @export
@@ -11499,33 +11456,6 @@ export interface IdentityWithNewAccess {
11499
11456
  */
11500
11457
  'accessRefs': Array<IdentityWithNewAccessAccessRefsInner>;
11501
11458
  }
11502
- /**
11503
- * An identity with a set of access to be added
11504
- * @export
11505
- * @interface IdentityWithNewAccess1
11506
- */
11507
- export interface IdentityWithNewAccess1 {
11508
- /**
11509
- * Set of identity IDs to be checked.
11510
- * @type {string}
11511
- * @memberof IdentityWithNewAccess1
11512
- */
11513
- 'identityId': string;
11514
- /**
11515
- * The bundle of access profiles to be added to the identities specified. All references must be ENTITLEMENT type.
11516
- * @type {Array<EntitlementRef1>}
11517
- * @memberof IdentityWithNewAccess1
11518
- */
11519
- 'accessRefs': Array<EntitlementRef1>;
11520
- /**
11521
- * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
11522
- * @type {{ [key: string]: string; }}
11523
- * @memberof IdentityWithNewAccess1
11524
- */
11525
- 'clientMetadata'?: {
11526
- [key: string]: string;
11527
- };
11528
- }
11529
11459
  /**
11530
11460
  * Entitlement including a specific set of access.
11531
11461
  * @export
@@ -11544,12 +11474,6 @@ export interface IdentityWithNewAccessAccessRefsInner {
11544
11474
  * @memberof IdentityWithNewAccessAccessRefsInner
11545
11475
  */
11546
11476
  'id'?: string;
11547
- /**
11548
- * Entitlement\'s display name.
11549
- * @type {string}
11550
- * @memberof IdentityWithNewAccessAccessRefsInner
11551
- */
11552
- 'name'?: string;
11553
11477
  }
11554
11478
  export declare const IdentityWithNewAccessAccessRefsInnerTypeV3: {
11555
11479
  readonly Entitlement: "ENTITLEMENT";
@@ -12633,7 +12557,7 @@ export interface ManagedCluster {
12633
12557
  */
12634
12558
  'ccgVersion': string;
12635
12559
  /**
12636
- * boolean flag indiacting whether or not the cluster configuration is pinned
12560
+ * boolean flag indicating whether or not the cluster configuration is pinned
12637
12561
  * @type {boolean}
12638
12562
  * @memberof ManagedCluster
12639
12563
  */
@@ -12674,6 +12598,12 @@ export interface ManagedCluster {
12674
12598
  * @memberof ManagedCluster
12675
12599
  */
12676
12600
  'publicKey'?: string | null;
12601
+ /**
12602
+ *
12603
+ * @type {ManagedClusterEncryptionConfig}
12604
+ * @memberof ManagedCluster
12605
+ */
12606
+ 'encryptionConfiguration'?: ManagedClusterEncryptionConfig;
12677
12607
  /**
12678
12608
  * Key describing any immediate cluster alerts
12679
12609
  * @type {string}
@@ -12738,6 +12668,24 @@ export interface ManagedClusterAttributes {
12738
12668
  */
12739
12669
  'keystore'?: string | null;
12740
12670
  }
12671
+ /**
12672
+ * Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
12673
+ * @export
12674
+ * @interface ManagedClusterEncryptionConfig
12675
+ */
12676
+ export interface ManagedClusterEncryptionConfig {
12677
+ /**
12678
+ * Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
12679
+ * @type {string}
12680
+ * @memberof ManagedClusterEncryptionConfig
12681
+ */
12682
+ 'format'?: ManagedClusterEncryptionConfigFormatV3;
12683
+ }
12684
+ export declare const ManagedClusterEncryptionConfigFormatV3: {
12685
+ readonly V2: "V2";
12686
+ readonly V3: "V3";
12687
+ };
12688
+ export type ManagedClusterEncryptionConfigFormatV3 = typeof ManagedClusterEncryptionConfigFormatV3[keyof typeof ManagedClusterEncryptionConfigFormatV3];
12741
12689
  /**
12742
12690
  * Managed Cluster key pair for Cluster
12743
12691
  * @export
@@ -15521,6 +15469,12 @@ export interface PendingApproval {
15521
15469
  * @memberof PendingApproval
15522
15470
  */
15523
15471
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
15472
+ /**
15473
+ * The privilege level of the requested access item, if applicable.
15474
+ * @type {string}
15475
+ * @memberof PendingApproval
15476
+ */
15477
+ 'privilegeLevel'?: string | null;
15524
15478
  }
15525
15479
  /**
15526
15480
  * Enum represents action that is being processed on an approval.
@@ -17319,6 +17273,12 @@ export interface RequestedItemStatus {
17319
17273
  * @memberof RequestedItemStatus
17320
17274
  */
17321
17275
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
17276
+ /**
17277
+ * The privilege level of the requested access item, if applicable.
17278
+ * @type {string}
17279
+ * @memberof RequestedItemStatus
17280
+ */
17281
+ 'privilegeLevel'?: string | null;
17322
17282
  }
17323
17283
  export declare const RequestedItemStatusTypeV3: {
17324
17284
  readonly AccessProfile: "ACCESS_PROFILE";
@@ -19781,6 +19741,7 @@ export declare const SchemaFeaturesV3: {
19781
19741
  readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
19782
19742
  readonly UsesUuid: "USES_UUID";
19783
19743
  readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
19744
+ readonly Delete: "DELETE";
19784
19745
  };
19785
19746
  export type SchemaFeaturesV3 = typeof SchemaFeaturesV3[keyof typeof SchemaFeaturesV3];
19786
19747
  /**
@@ -21663,7 +21624,7 @@ export interface Source {
21663
21624
  * @type {SourceOwner}
21664
21625
  * @memberof Source
21665
21626
  */
21666
- 'owner': SourceOwner;
21627
+ 'owner': SourceOwner | null;
21667
21628
  /**
21668
21629
  *
21669
21630
  * @type {SourceCluster}
@@ -21860,6 +21821,7 @@ export declare const SourceFeaturesV3: {
21860
21821
  readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
21861
21822
  readonly UsesUuid: "USES_UUID";
21862
21823
  readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
21824
+ readonly Delete: "DELETE";
21863
21825
  };
21864
21826
  export type SourceFeaturesV3 = typeof SourceFeaturesV3[keyof typeof SourceFeaturesV3];
21865
21827
  export declare const SourceStatusV3: {
@@ -23564,143 +23526,6 @@ export interface Value {
23564
23526
  */
23565
23527
  'value'?: string;
23566
23528
  }
23567
- /**
23568
- *
23569
- * @export
23570
- * @interface VendorConnectorMapping
23571
- */
23572
- export interface VendorConnectorMapping {
23573
- /**
23574
- * The unique identifier for the vendor-connector mapping.
23575
- * @type {string}
23576
- * @memberof VendorConnectorMapping
23577
- */
23578
- 'id'?: string;
23579
- /**
23580
- * The name of the vendor.
23581
- * @type {string}
23582
- * @memberof VendorConnectorMapping
23583
- */
23584
- 'vendor'?: string;
23585
- /**
23586
- * The name of the connector.
23587
- * @type {string}
23588
- * @memberof VendorConnectorMapping
23589
- */
23590
- 'connector'?: string;
23591
- /**
23592
- * The creation timestamp of the mapping.
23593
- * @type {string}
23594
- * @memberof VendorConnectorMapping
23595
- */
23596
- 'createdAt'?: string;
23597
- /**
23598
- * The identifier of the user who created the mapping.
23599
- * @type {string}
23600
- * @memberof VendorConnectorMapping
23601
- */
23602
- 'createdBy'?: string;
23603
- /**
23604
- *
23605
- * @type {VendorConnectorMappingUpdatedAt}
23606
- * @memberof VendorConnectorMapping
23607
- */
23608
- 'updatedAt'?: VendorConnectorMappingUpdatedAt | null;
23609
- /**
23610
- *
23611
- * @type {VendorConnectorMappingUpdatedBy}
23612
- * @memberof VendorConnectorMapping
23613
- */
23614
- 'updatedBy'?: VendorConnectorMappingUpdatedBy | null;
23615
- /**
23616
- *
23617
- * @type {VendorConnectorMappingDeletedAt}
23618
- * @memberof VendorConnectorMapping
23619
- */
23620
- 'deletedAt'?: VendorConnectorMappingDeletedAt | null;
23621
- /**
23622
- *
23623
- * @type {VendorConnectorMappingDeletedBy}
23624
- * @memberof VendorConnectorMapping
23625
- */
23626
- 'deletedBy'?: VendorConnectorMappingDeletedBy | null;
23627
- }
23628
- /**
23629
- * An object representing the nullable timestamp of when the mapping was deleted.
23630
- * @export
23631
- * @interface VendorConnectorMappingDeletedAt
23632
- */
23633
- export interface VendorConnectorMappingDeletedAt {
23634
- /**
23635
- * The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
23636
- * @type {string}
23637
- * @memberof VendorConnectorMappingDeletedAt
23638
- */
23639
- 'Time'?: string;
23640
- /**
23641
- * A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
23642
- * @type {boolean}
23643
- * @memberof VendorConnectorMappingDeletedAt
23644
- */
23645
- 'Valid'?: boolean;
23646
- }
23647
- /**
23648
- * An object representing the nullable identifier of the user who deleted the mapping.
23649
- * @export
23650
- * @interface VendorConnectorMappingDeletedBy
23651
- */
23652
- export interface VendorConnectorMappingDeletedBy {
23653
- /**
23654
- * The identifier of the user who deleted the mapping, if applicable.
23655
- * @type {string}
23656
- * @memberof VendorConnectorMappingDeletedBy
23657
- */
23658
- 'String'?: string;
23659
- /**
23660
- * A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
23661
- * @type {boolean}
23662
- * @memberof VendorConnectorMappingDeletedBy
23663
- */
23664
- 'Valid'?: boolean;
23665
- }
23666
- /**
23667
- * An object representing the nullable timestamp of the last update.
23668
- * @export
23669
- * @interface VendorConnectorMappingUpdatedAt
23670
- */
23671
- export interface VendorConnectorMappingUpdatedAt {
23672
- /**
23673
- * The timestamp when the mapping was last updated, represented in ISO 8601 format.
23674
- * @type {string}
23675
- * @memberof VendorConnectorMappingUpdatedAt
23676
- */
23677
- 'Time'?: string;
23678
- /**
23679
- * A flag indicating if the \'Time\' field is set and valid.
23680
- * @type {boolean}
23681
- * @memberof VendorConnectorMappingUpdatedAt
23682
- */
23683
- 'Valid'?: boolean;
23684
- }
23685
- /**
23686
- * An object representing the nullable identifier of the user who last updated the mapping.
23687
- * @export
23688
- * @interface VendorConnectorMappingUpdatedBy
23689
- */
23690
- export interface VendorConnectorMappingUpdatedBy {
23691
- /**
23692
- * The identifier of the user who last updated the mapping, if available.
23693
- * @type {string}
23694
- * @memberof VendorConnectorMappingUpdatedBy
23695
- */
23696
- 'String'?: string;
23697
- /**
23698
- * A flag indicating if the \'String\' field is set and valid.
23699
- * @type {boolean}
23700
- * @memberof VendorConnectorMappingUpdatedBy
23701
- */
23702
- 'Valid'?: boolean;
23703
- }
23704
23529
  /**
23705
23530
  *
23706
23531
  * @export
@@ -30266,7 +30091,7 @@ export declare const ConfigurationHubApiAxiosParamCreator: (configuration?: Conf
30266
30091
  */
30267
30092
  createObjectMappings: (sourceOrg: string, objectMappingBulkCreateRequest: ObjectMappingBulkCreateRequest, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30268
30093
  /**
30269
- * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
30094
+ * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
30270
30095
  * @summary Upload a configuration
30271
30096
  * @param {File} data JSON file containing the objects to be imported.
30272
30097
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -30349,7 +30174,7 @@ export declare const ConfigurationHubApiFp: (configuration?: Configuration) => {
30349
30174
  */
30350
30175
  createObjectMappings(sourceOrg: string, objectMappingBulkCreateRequest: ObjectMappingBulkCreateRequest, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectMappingBulkCreateResponse>>;
30351
30176
  /**
30352
- * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
30177
+ * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
30353
30178
  * @summary Upload a configuration
30354
30179
  * @param {File} data JSON file containing the objects to be imported.
30355
30180
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -30430,7 +30255,7 @@ export declare const ConfigurationHubApiFactory: (configuration?: Configuration,
30430
30255
  */
30431
30256
  createObjectMappings(requestParameters: ConfigurationHubApiCreateObjectMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ObjectMappingBulkCreateResponse>;
30432
30257
  /**
30433
- * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
30258
+ * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
30434
30259
  * @summary Upload a configuration
30435
30260
  * @param {ConfigurationHubApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
30436
30261
  * @param {*} [axiosOptions] Override http request option.
@@ -30659,7 +30484,7 @@ export declare class ConfigurationHubApi extends BaseAPI {
30659
30484
  */
30660
30485
  createObjectMappings(requestParameters: ConfigurationHubApiCreateObjectMappingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectMappingBulkCreateResponse, any>>;
30661
30486
  /**
30662
- * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
30487
+ * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
30663
30488
  * @summary Upload a configuration
30664
30489
  * @param {ConfigurationHubApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
30665
30490
  * @param {*} [axiosOptions] Override http request option.
@@ -32449,7 +32274,7 @@ export declare const LifecycleStatesApiAxiosParamCreator: (configuration?: Confi
32449
32274
  * @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.
32450
32275
  * @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.
32451
32276
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32452
- * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
32277
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
32453
32278
  * @param {*} [axiosOptions] Override http request option.
32454
32279
  * @throws {RequiredError}
32455
32280
  */
@@ -32513,7 +32338,7 @@ export declare const LifecycleStatesApiFp: (configuration?: Configuration) => {
32513
32338
  * @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.
32514
32339
  * @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.
32515
32340
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32516
- * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
32341
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
32517
32342
  * @param {*} [axiosOptions] Override http request option.
32518
32343
  * @throws {RequiredError}
32519
32344
  */
@@ -32680,7 +32505,7 @@ export interface LifecycleStatesApiGetLifecycleStatesRequest {
32680
32505
  */
32681
32506
  readonly count?: boolean;
32682
32507
  /**
32683
- * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
32508
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
32684
32509
  * @type {string}
32685
32510
  * @memberof LifecycleStatesApiGetLifecycleStates
32686
32511
  */
@@ -39373,11 +39198,11 @@ export declare const SODViolationsApiAxiosParamCreator: (configuration?: Configu
39373
39198
  /**
39374
39199
  * This API initiates a SOD policy verification asynchronously.
39375
39200
  * @summary Check sod violations
39376
- * @param {IdentityWithNewAccess1} identityWithNewAccess1
39201
+ * @param {IdentityWithNewAccess} identityWithNewAccess
39377
39202
  * @param {*} [axiosOptions] Override http request option.
39378
39203
  * @throws {RequiredError}
39379
39204
  */
39380
- startViolationCheck: (identityWithNewAccess1: IdentityWithNewAccess1, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
39205
+ startViolationCheck: (identityWithNewAccess: IdentityWithNewAccess, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
39381
39206
  };
39382
39207
  /**
39383
39208
  * SODViolationsApi - functional programming interface
@@ -39395,11 +39220,11 @@ export declare const SODViolationsApiFp: (configuration?: Configuration) => {
39395
39220
  /**
39396
39221
  * This API initiates a SOD policy verification asynchronously.
39397
39222
  * @summary Check sod violations
39398
- * @param {IdentityWithNewAccess1} identityWithNewAccess1
39223
+ * @param {IdentityWithNewAccess} identityWithNewAccess
39399
39224
  * @param {*} [axiosOptions] Override http request option.
39400
39225
  * @throws {RequiredError}
39401
39226
  */
39402
- startViolationCheck(identityWithNewAccess1: IdentityWithNewAccess1, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheck>>;
39227
+ startViolationCheck(identityWithNewAccess: IdentityWithNewAccess, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheck>>;
39403
39228
  };
39404
39229
  /**
39405
39230
  * SODViolationsApi - factory interface
@@ -39444,10 +39269,10 @@ export interface SODViolationsApiStartPredictSodViolationsRequest {
39444
39269
  export interface SODViolationsApiStartViolationCheckRequest {
39445
39270
  /**
39446
39271
  *
39447
- * @type {IdentityWithNewAccess1}
39272
+ * @type {IdentityWithNewAccess}
39448
39273
  * @memberof SODViolationsApiStartViolationCheck
39449
39274
  */
39450
- readonly identityWithNewAccess1: IdentityWithNewAccess1;
39275
+ readonly identityWithNewAccess: IdentityWithNewAccess;
39451
39276
  }
39452
39277
  /**
39453
39278
  * SODViolationsApi - object-oriented interface
@@ -41645,7 +41470,7 @@ export declare class SourceUsagesApi extends BaseAPI {
41645
41470
  */
41646
41471
  export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration) => {
41647
41472
  /**
41648
- * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
41473
+ * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
41649
41474
  * @summary Create provisioning policy
41650
41475
  * @param {string} sourceId The Source id
41651
41476
  * @param {ProvisioningPolicyDto} provisioningPolicyDto
@@ -41817,7 +41642,7 @@ export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration
41817
41642
  */
41818
41643
  listSources: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSubadmin?: string, includeIDNSource?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41819
41644
  /**
41820
- * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
41645
+ * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
41821
41646
  * @summary Update provisioning policy by usagetype
41822
41647
  * @param {string} sourceId The Source ID.
41823
41648
  * @param {UsageType} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -41855,7 +41680,7 @@ export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration
41855
41680
  */
41856
41681
  updateProvisioningPoliciesInBulk: (sourceId: string, provisioningPolicyDto: Array<ProvisioningPolicyDto>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41857
41682
  /**
41858
- * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
41683
+ * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
41859
41684
  * @summary Partial update of provisioning policy
41860
41685
  * @param {string} sourceId The Source id.
41861
41686
  * @param {UsageType} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -41890,7 +41715,7 @@ export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration
41890
41715
  */
41891
41716
  export declare const SourcesApiFp: (configuration?: Configuration) => {
41892
41717
  /**
41893
- * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
41718
+ * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
41894
41719
  * @summary Create provisioning policy
41895
41720
  * @param {string} sourceId The Source id
41896
41721
  * @param {ProvisioningPolicyDto} provisioningPolicyDto
@@ -42062,7 +41887,7 @@ export declare const SourcesApiFp: (configuration?: Configuration) => {
42062
41887
  */
42063
41888
  listSources(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSubadmin?: string, includeIDNSource?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Source>>>;
42064
41889
  /**
42065
- * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
41890
+ * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
42066
41891
  * @summary Update provisioning policy by usagetype
42067
41892
  * @param {string} sourceId The Source ID.
42068
41893
  * @param {UsageType} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -42100,7 +41925,7 @@ export declare const SourcesApiFp: (configuration?: Configuration) => {
42100
41925
  */
42101
41926
  updateProvisioningPoliciesInBulk(sourceId: string, provisioningPolicyDto: Array<ProvisioningPolicyDto>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDto>>>;
42102
41927
  /**
42103
- * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
41928
+ * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
42104
41929
  * @summary Partial update of provisioning policy
42105
41930
  * @param {string} sourceId The Source id.
42106
41931
  * @param {UsageType} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -42135,7 +41960,7 @@ export declare const SourcesApiFp: (configuration?: Configuration) => {
42135
41960
  */
42136
41961
  export declare const SourcesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
42137
41962
  /**
42138
- * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
41963
+ * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
42139
41964
  * @summary Create provisioning policy
42140
41965
  * @param {SourcesApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
42141
41966
  * @param {*} [axiosOptions] Override http request option.
@@ -42287,7 +42112,7 @@ export declare const SourcesApiFactory: (configuration?: Configuration, basePath
42287
42112
  */
42288
42113
  listSources(requestParameters?: SourcesApiListSourcesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Source>>;
42289
42114
  /**
42290
- * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
42115
+ * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
42291
42116
  * @summary Update provisioning policy by usagetype
42292
42117
  * @param {SourcesApiPutProvisioningPolicyRequest} requestParameters Request parameters.
42293
42118
  * @param {*} [axiosOptions] Override http request option.
@@ -42319,7 +42144,7 @@ export declare const SourcesApiFactory: (configuration?: Configuration, basePath
42319
42144
  */
42320
42145
  updateProvisioningPoliciesInBulk(requestParameters: SourcesApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningPolicyDto>>;
42321
42146
  /**
42322
- * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
42147
+ * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
42323
42148
  * @summary Partial update of provisioning policy
42324
42149
  * @param {SourcesApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
42325
42150
  * @param {*} [axiosOptions] Override http request option.
@@ -42875,7 +42700,7 @@ export interface SourcesApiUpdateSourceSchemaRequest {
42875
42700
  */
42876
42701
  export declare class SourcesApi extends BaseAPI {
42877
42702
  /**
42878
- * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
42703
+ * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
42879
42704
  * @summary Create provisioning policy
42880
42705
  * @param {SourcesApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
42881
42706
  * @param {*} [axiosOptions] Override http request option.
@@ -43046,7 +42871,7 @@ export declare class SourcesApi extends BaseAPI {
43046
42871
  */
43047
42872
  listSources(requestParameters?: SourcesApiListSourcesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Source[], any>>;
43048
42873
  /**
43049
- * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
42874
+ * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
43050
42875
  * @summary Update provisioning policy by usagetype
43051
42876
  * @param {SourcesApiPutProvisioningPolicyRequest} requestParameters Request parameters.
43052
42877
  * @param {*} [axiosOptions] Override http request option.
@@ -43082,7 +42907,7 @@ export declare class SourcesApi extends BaseAPI {
43082
42907
  */
43083
42908
  updateProvisioningPoliciesInBulk(requestParameters: SourcesApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningPolicyDto[], any>>;
43084
42909
  /**
43085
- * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
42910
+ * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
43086
42911
  * @summary Partial update of provisioning policy
43087
42912
  * @param {SourcesApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
43088
42913
  * @param {*} [axiosOptions] Override http request option.
@@ -43149,7 +42974,7 @@ export declare const TaggedObjectsApiAxiosParamCreator: (configuration?: Configu
43149
42974
  */
43150
42975
  getTaggedObject: (type: GetTaggedObjectTypeV3, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43151
42976
  /**
43152
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
42977
+ * This API returns a list of all tagged objects.
43153
42978
  * @summary List tagged objects
43154
42979
  * @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.
43155
42980
  * @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.
@@ -43160,7 +42985,7 @@ export declare const TaggedObjectsApiAxiosParamCreator: (configuration?: Configu
43160
42985
  */
43161
42986
  listTaggedObjects: (limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43162
42987
  /**
43163
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
42988
+ * This API returns a list of all tagged objects by type.
43164
42989
  * @summary List tagged objects by type
43165
42990
  * @param {ListTaggedObjectsByTypeTypeV3} type The type of tagged object to retrieve.
43166
42991
  * @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.
@@ -43182,7 +43007,7 @@ export declare const TaggedObjectsApiAxiosParamCreator: (configuration?: Configu
43182
43007
  */
43183
43008
  putTaggedObject: (type: PutTaggedObjectTypeV3, id: string, taggedObject: TaggedObject, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43184
43009
  /**
43185
- * This adds a tag to an object. Any authenticated token may be used to call this API.
43010
+ * This adds a tag to an object.
43186
43011
  * @summary Add tag to object
43187
43012
  * @param {TaggedObject} taggedObject
43188
43013
  * @param {*} [axiosOptions] Override http request option.
@@ -43230,7 +43055,7 @@ export declare const TaggedObjectsApiFp: (configuration?: Configuration) => {
43230
43055
  */
43231
43056
  getTaggedObject(type: GetTaggedObjectTypeV3, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObject>>;
43232
43057
  /**
43233
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
43058
+ * This API returns a list of all tagged objects.
43234
43059
  * @summary List tagged objects
43235
43060
  * @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.
43236
43061
  * @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.
@@ -43241,7 +43066,7 @@ export declare const TaggedObjectsApiFp: (configuration?: Configuration) => {
43241
43066
  */
43242
43067
  listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaggedObject>>>;
43243
43068
  /**
43244
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
43069
+ * This API returns a list of all tagged objects by type.
43245
43070
  * @summary List tagged objects by type
43246
43071
  * @param {ListTaggedObjectsByTypeTypeV3} type The type of tagged object to retrieve.
43247
43072
  * @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.
@@ -43263,7 +43088,7 @@ export declare const TaggedObjectsApiFp: (configuration?: Configuration) => {
43263
43088
  */
43264
43089
  putTaggedObject(type: PutTaggedObjectTypeV3, id: string, taggedObject: TaggedObject, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObject>>;
43265
43090
  /**
43266
- * This adds a tag to an object. Any authenticated token may be used to call this API.
43091
+ * This adds a tag to an object.
43267
43092
  * @summary Add tag to object
43268
43093
  * @param {TaggedObject} taggedObject
43269
43094
  * @param {*} [axiosOptions] Override http request option.
@@ -43309,7 +43134,7 @@ export declare const TaggedObjectsApiFactory: (configuration?: Configuration, ba
43309
43134
  */
43310
43135
  getTaggedObject(requestParameters: TaggedObjectsApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObject>;
43311
43136
  /**
43312
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
43137
+ * This API returns a list of all tagged objects.
43313
43138
  * @summary List tagged objects
43314
43139
  * @param {TaggedObjectsApiListTaggedObjectsRequest} requestParameters Request parameters.
43315
43140
  * @param {*} [axiosOptions] Override http request option.
@@ -43317,7 +43142,7 @@ export declare const TaggedObjectsApiFactory: (configuration?: Configuration, ba
43317
43142
  */
43318
43143
  listTaggedObjects(requestParameters?: TaggedObjectsApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaggedObject>>;
43319
43144
  /**
43320
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
43145
+ * This API returns a list of all tagged objects by type.
43321
43146
  * @summary List tagged objects by type
43322
43147
  * @param {TaggedObjectsApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
43323
43148
  * @param {*} [axiosOptions] Override http request option.
@@ -43333,7 +43158,7 @@ export declare const TaggedObjectsApiFactory: (configuration?: Configuration, ba
43333
43158
  */
43334
43159
  putTaggedObject(requestParameters: TaggedObjectsApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObject>;
43335
43160
  /**
43336
- * This adds a tag to an object. Any authenticated token may be used to call this API.
43161
+ * This adds a tag to an object.
43337
43162
  * @summary Add tag to object
43338
43163
  * @param {TaggedObjectsApiSetTagToObjectRequest} requestParameters Request parameters.
43339
43164
  * @param {*} [axiosOptions] Override http request option.
@@ -43554,7 +43379,7 @@ export declare class TaggedObjectsApi extends BaseAPI {
43554
43379
  */
43555
43380
  getTaggedObject(requestParameters: TaggedObjectsApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObject, any>>;
43556
43381
  /**
43557
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
43382
+ * This API returns a list of all tagged objects.
43558
43383
  * @summary List tagged objects
43559
43384
  * @param {TaggedObjectsApiListTaggedObjectsRequest} requestParameters Request parameters.
43560
43385
  * @param {*} [axiosOptions] Override http request option.
@@ -43563,7 +43388,7 @@ export declare class TaggedObjectsApi extends BaseAPI {
43563
43388
  */
43564
43389
  listTaggedObjects(requestParameters?: TaggedObjectsApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObject[], any>>;
43565
43390
  /**
43566
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
43391
+ * This API returns a list of all tagged objects by type.
43567
43392
  * @summary List tagged objects by type
43568
43393
  * @param {TaggedObjectsApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
43569
43394
  * @param {*} [axiosOptions] Override http request option.
@@ -43581,7 +43406,7 @@ export declare class TaggedObjectsApi extends BaseAPI {
43581
43406
  */
43582
43407
  putTaggedObject(requestParameters: TaggedObjectsApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObject, any>>;
43583
43408
  /**
43584
- * This adds a tag to an object. Any authenticated token may be used to call this API.
43409
+ * This adds a tag to an object.
43585
43410
  * @summary Add tag to object
43586
43411
  * @param {TaggedObjectsApiSetTagToObjectRequest} requestParameters Request parameters.
43587
43412
  * @param {*} [axiosOptions] Override http request option.
@@ -43951,153 +43776,6 @@ export declare class TransformsApi extends BaseAPI {
43951
43776
  */
43952
43777
  updateTransform(requestParameters: TransformsApiUpdateTransformRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransformRead, any>>;
43953
43778
  }
43954
- /**
43955
- * VendorConnectorMappingsApi - axios parameter creator
43956
- * @export
43957
- */
43958
- export declare const VendorConnectorMappingsApiAxiosParamCreator: (configuration?: Configuration) => {
43959
- /**
43960
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
43961
- * @summary Create vendor connector mapping
43962
- * @param {VendorConnectorMapping} vendorConnectorMapping
43963
- * @param {*} [axiosOptions] Override http request option.
43964
- * @throws {RequiredError}
43965
- */
43966
- createVendorConnectorMapping: (vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43967
- /**
43968
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
43969
- * @summary Delete vendor connector mapping
43970
- * @param {VendorConnectorMapping} vendorConnectorMapping
43971
- * @param {*} [axiosOptions] Override http request option.
43972
- * @throws {RequiredError}
43973
- */
43974
- deleteVendorConnectorMapping: (vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43975
- /**
43976
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
43977
- * @summary List vendor connector mappings
43978
- * @param {*} [axiosOptions] Override http request option.
43979
- * @throws {RequiredError}
43980
- */
43981
- getVendorConnectorMappings: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43982
- };
43983
- /**
43984
- * VendorConnectorMappingsApi - functional programming interface
43985
- * @export
43986
- */
43987
- export declare const VendorConnectorMappingsApiFp: (configuration?: Configuration) => {
43988
- /**
43989
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
43990
- * @summary Create vendor connector mapping
43991
- * @param {VendorConnectorMapping} vendorConnectorMapping
43992
- * @param {*} [axiosOptions] Override http request option.
43993
- * @throws {RequiredError}
43994
- */
43995
- createVendorConnectorMapping(vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMapping>>;
43996
- /**
43997
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
43998
- * @summary Delete vendor connector mapping
43999
- * @param {VendorConnectorMapping} vendorConnectorMapping
44000
- * @param {*} [axiosOptions] Override http request option.
44001
- * @throws {RequiredError}
44002
- */
44003
- deleteVendorConnectorMapping(vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200Response>>;
44004
- /**
44005
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
44006
- * @summary List vendor connector mappings
44007
- * @param {*} [axiosOptions] Override http request option.
44008
- * @throws {RequiredError}
44009
- */
44010
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMapping>>>;
44011
- };
44012
- /**
44013
- * VendorConnectorMappingsApi - factory interface
44014
- * @export
44015
- */
44016
- export declare const VendorConnectorMappingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
44017
- /**
44018
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
44019
- * @summary Create vendor connector mapping
44020
- * @param {VendorConnectorMappingsApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
44021
- * @param {*} [axiosOptions] Override http request option.
44022
- * @throws {RequiredError}
44023
- */
44024
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMapping>;
44025
- /**
44026
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
44027
- * @summary Delete vendor connector mapping
44028
- * @param {VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
44029
- * @param {*} [axiosOptions] Override http request option.
44030
- * @throws {RequiredError}
44031
- */
44032
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200Response>;
44033
- /**
44034
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
44035
- * @summary List vendor connector mappings
44036
- * @param {*} [axiosOptions] Override http request option.
44037
- * @throws {RequiredError}
44038
- */
44039
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMapping>>;
44040
- };
44041
- /**
44042
- * Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsApi.
44043
- * @export
44044
- * @interface VendorConnectorMappingsApiCreateVendorConnectorMappingRequest
44045
- */
44046
- export interface VendorConnectorMappingsApiCreateVendorConnectorMappingRequest {
44047
- /**
44048
- *
44049
- * @type {VendorConnectorMapping}
44050
- * @memberof VendorConnectorMappingsApiCreateVendorConnectorMapping
44051
- */
44052
- readonly vendorConnectorMapping: VendorConnectorMapping;
44053
- }
44054
- /**
44055
- * Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsApi.
44056
- * @export
44057
- * @interface VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest
44058
- */
44059
- export interface VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest {
44060
- /**
44061
- *
44062
- * @type {VendorConnectorMapping}
44063
- * @memberof VendorConnectorMappingsApiDeleteVendorConnectorMapping
44064
- */
44065
- readonly vendorConnectorMapping: VendorConnectorMapping;
44066
- }
44067
- /**
44068
- * VendorConnectorMappingsApi - object-oriented interface
44069
- * @export
44070
- * @class VendorConnectorMappingsApi
44071
- * @extends {BaseAPI}
44072
- */
44073
- export declare class VendorConnectorMappingsApi extends BaseAPI {
44074
- /**
44075
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
44076
- * @summary Create vendor connector mapping
44077
- * @param {VendorConnectorMappingsApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
44078
- * @param {*} [axiosOptions] Override http request option.
44079
- * @throws {RequiredError}
44080
- * @memberof VendorConnectorMappingsApi
44081
- */
44082
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMapping, any>>;
44083
- /**
44084
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
44085
- * @summary Delete vendor connector mapping
44086
- * @param {VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
44087
- * @param {*} [axiosOptions] Override http request option.
44088
- * @throws {RequiredError}
44089
- * @memberof VendorConnectorMappingsApi
44090
- */
44091
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteVendorConnectorMapping200Response, any>>;
44092
- /**
44093
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
44094
- * @summary List vendor connector mappings
44095
- * @param {*} [axiosOptions] Override http request option.
44096
- * @throws {RequiredError}
44097
- * @memberof VendorConnectorMappingsApi
44098
- */
44099
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMapping[], any>>;
44100
- }
44101
43779
  /**
44102
43780
  * WorkItemsApi - axios parameter creator
44103
43781
  * @export
@@ -44937,14 +44615,14 @@ export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configurati
44937
44615
  /**
44938
44616
  * List all workflows in the tenant.
44939
44617
  * @summary List workflows
44940
- * @param {string} [triggerId] Trigger ID
44941
- * @param {string} [connectorInstanceId] Connector Instance ID
44618
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
44619
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
44942
44620
  * @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.
44943
44621
  * @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.
44944
44622
  * @param {*} [axiosOptions] Override http request option.
44945
44623
  * @throws {RequiredError}
44946
44624
  */
44947
- listWorkflows: (triggerId?: string, connectorInstanceId?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44625
+ listWorkflows: (filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44948
44626
  /**
44949
44627
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
44950
44628
  * @summary Patch workflow
@@ -44973,7 +44651,7 @@ export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configurati
44973
44651
  */
44974
44652
  testExternalExecuteWorkflow: (id: string, testExternalExecuteWorkflowRequest?: TestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44975
44653
  /**
44976
- * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/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.**
44654
+ * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
44977
44655
  * @summary Test workflow by id
44978
44656
  * @param {string} id Id of the workflow
44979
44657
  * @param {TestWorkflowRequest} testWorkflowRequest
@@ -45103,14 +44781,14 @@ export declare const WorkflowsApiFp: (configuration?: Configuration) => {
45103
44781
  /**
45104
44782
  * List all workflows in the tenant.
45105
44783
  * @summary List workflows
45106
- * @param {string} [triggerId] Trigger ID
45107
- * @param {string} [connectorInstanceId] Connector Instance ID
44784
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
44785
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
45108
44786
  * @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.
45109
44787
  * @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.
45110
44788
  * @param {*} [axiosOptions] Override http request option.
45111
44789
  * @throws {RequiredError}
45112
44790
  */
45113
- listWorkflows(triggerId?: string, connectorInstanceId?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workflow>>>;
44791
+ listWorkflows(filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workflow>>>;
45114
44792
  /**
45115
44793
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
45116
44794
  * @summary Patch workflow
@@ -45139,7 +44817,7 @@ export declare const WorkflowsApiFp: (configuration?: Configuration) => {
45139
44817
  */
45140
44818
  testExternalExecuteWorkflow(id: string, testExternalExecuteWorkflowRequest?: TestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestExternalExecuteWorkflow200Response>>;
45141
44819
  /**
45142
- * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/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.**
44820
+ * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
45143
44821
  * @summary Test workflow by id
45144
44822
  * @param {string} id Id of the workflow
45145
44823
  * @param {TestWorkflowRequest} testWorkflowRequest
@@ -45289,7 +44967,7 @@ export declare const WorkflowsApiFactory: (configuration?: Configuration, basePa
45289
44967
  */
45290
44968
  testExternalExecuteWorkflow(requestParameters: WorkflowsApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TestExternalExecuteWorkflow200Response>;
45291
44969
  /**
45292
- * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/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.**
44970
+ * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
45293
44971
  * @summary Test workflow by id
45294
44972
  * @param {WorkflowsApiTestWorkflowRequest} requestParameters Request parameters.
45295
44973
  * @param {*} [axiosOptions] Override http request option.
@@ -45520,17 +45198,17 @@ export interface WorkflowsApiListWorkflowLibraryTriggersRequest {
45520
45198
  */
45521
45199
  export interface WorkflowsApiListWorkflowsRequest {
45522
45200
  /**
45523
- * Trigger ID
45201
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
45524
45202
  * @type {string}
45525
45203
  * @memberof WorkflowsApiListWorkflows
45526
45204
  */
45527
- readonly triggerId?: string;
45205
+ readonly filters?: string;
45528
45206
  /**
45529
- * Connector Instance ID
45207
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
45530
45208
  * @type {string}
45531
45209
  * @memberof WorkflowsApiListWorkflows
45532
45210
  */
45533
- readonly connectorInstanceId?: string;
45211
+ readonly sorters?: string;
45534
45212
  /**
45535
45213
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
45536
45214
  * @type {number}
@@ -45780,7 +45458,7 @@ export declare class WorkflowsApi extends BaseAPI {
45780
45458
  */
45781
45459
  testExternalExecuteWorkflow(requestParameters: WorkflowsApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestExternalExecuteWorkflow200Response, any>>;
45782
45460
  /**
45783
- * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/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.**
45461
+ * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
45784
45462
  * @summary Test workflow by id
45785
45463
  * @param {WorkflowsApiTestWorkflowRequest} requestParameters Request parameters.
45786
45464
  * @param {*} [axiosOptions] Override http request option.