sailpoint-api-client 1.6.8 → 1.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +343 -1123
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +321 -840
- package/dist/beta/api.js +113 -699
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/beta/common.js.map +1 -1
- package/dist/generic/api.d.ts +386 -0
- package/dist/generic/api.js +689 -0
- package/dist/generic/api.js.map +1 -0
- package/dist/generic/base.d.ts +66 -0
- package/dist/generic/base.js +89 -0
- package/dist/generic/base.js.map +1 -0
- package/dist/generic/common.d.ts +65 -0
- package/dist/generic/common.js +260 -0
- package/dist/generic/common.js.map +1 -0
- package/dist/generic/configuration.d.ts +91 -0
- package/dist/generic/configuration.js +46 -0
- package/dist/generic/configuration.js.map +1 -0
- package/dist/generic/index.d.ts +13 -0
- package/dist/generic/index.js +32 -0
- package/dist/generic/index.js.map +1 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/paginator.d.ts +3 -1
- package/dist/paginator.js +146 -0
- package/dist/paginator.js.map +1 -1
- package/dist/v2024/api.d.ts +1536 -511
- package/dist/v2024/api.js +5111 -4045
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2024/common.js.map +1 -1
- package/dist/v2025/api.d.ts +5099 -632
- package/dist/v2025/api.js +11068 -7033
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2025/common.js.map +1 -1
- package/dist/v3/api.d.ts +122 -444
- package/dist/v3/api.js +88 -407
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/dist/v3/common.js.map +1 -1
- package/generic/.openapi-generator/FILES +11 -0
- package/generic/.openapi-generator/VERSION +1 -0
- package/generic/.openapi-generator-ignore +23 -0
- package/generic/README.md +46 -0
- package/generic/api.ts +681 -0
- package/generic/base.ts +86 -0
- package/generic/common.ts +159 -0
- package/generic/configuration.ts +110 -0
- package/generic/git_push.sh +57 -0
- package/generic/index.ts +18 -0
- package/generic/package.json +34 -0
- package/generic/tsconfig.json +21 -0
- package/index.ts +9 -7
- package/package.json +1 -1
- package/paginator.ts +137 -11
- package/v2024/README.md +2 -2
- package/v2024/api.ts +2323 -771
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +7689 -1221
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +146 -611
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v3/api.ts
CHANGED
|
@@ -533,13 +533,13 @@ export interface AccessProfile {
|
|
|
533
533
|
*/
|
|
534
534
|
export interface AccessProfileApprovalScheme {
|
|
535
535
|
/**
|
|
536
|
-
* 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
|
|
536
|
+
* 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.
|
|
537
537
|
* @type {string}
|
|
538
538
|
* @memberof AccessProfileApprovalScheme
|
|
539
539
|
*/
|
|
540
540
|
'approverType'?: AccessProfileApprovalSchemeApproverTypeV3;
|
|
541
541
|
/**
|
|
542
|
-
*
|
|
542
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
543
543
|
* @type {string}
|
|
544
544
|
* @memberof AccessProfileApprovalScheme
|
|
545
545
|
*/
|
|
@@ -551,7 +551,8 @@ export const AccessProfileApprovalSchemeApproverTypeV3 = {
|
|
|
551
551
|
Owner: 'OWNER',
|
|
552
552
|
SourceOwner: 'SOURCE_OWNER',
|
|
553
553
|
Manager: 'MANAGER',
|
|
554
|
-
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
554
|
+
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
555
|
+
Workflow: 'WORKFLOW'
|
|
555
556
|
} as const;
|
|
556
557
|
|
|
557
558
|
export type AccessProfileApprovalSchemeApproverTypeV3 = typeof AccessProfileApprovalSchemeApproverTypeV3[keyof typeof AccessProfileApprovalSchemeApproverTypeV3];
|
|
@@ -1763,7 +1764,7 @@ export type AccountOriginV3 = typeof AccountOriginV3[keyof typeof AccountOriginV
|
|
|
1763
1764
|
*/
|
|
1764
1765
|
export interface AccountAction {
|
|
1765
1766
|
/**
|
|
1766
|
-
* Describes if action will be
|
|
1767
|
+
* Describes if action will be enable, disable or delete.
|
|
1767
1768
|
* @type {string}
|
|
1768
1769
|
* @memberof AccountAction
|
|
1769
1770
|
*/
|
|
@@ -1778,7 +1779,8 @@ export interface AccountAction {
|
|
|
1778
1779
|
|
|
1779
1780
|
export const AccountActionActionV3 = {
|
|
1780
1781
|
Enable: 'ENABLE',
|
|
1781
|
-
Disable: 'DISABLE'
|
|
1782
|
+
Disable: 'DISABLE',
|
|
1783
|
+
Delete: 'DELETE'
|
|
1782
1784
|
} as const;
|
|
1783
1785
|
|
|
1784
1786
|
export type AccountActionActionV3 = typeof AccountActionActionV3[keyof typeof AccountActionActionV3];
|
|
@@ -3345,13 +3347,13 @@ export type ApprovalScheme = typeof ApprovalScheme[keyof typeof ApprovalScheme];
|
|
|
3345
3347
|
*/
|
|
3346
3348
|
export interface ApprovalSchemeForRole {
|
|
3347
3349
|
/**
|
|
3348
|
-
* 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
|
|
3350
|
+
* 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.
|
|
3349
3351
|
* @type {string}
|
|
3350
3352
|
* @memberof ApprovalSchemeForRole
|
|
3351
3353
|
*/
|
|
3352
3354
|
'approverType'?: ApprovalSchemeForRoleApproverTypeV3;
|
|
3353
3355
|
/**
|
|
3354
|
-
* Id of the specific approver, used
|
|
3356
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
3355
3357
|
* @type {string}
|
|
3356
3358
|
* @memberof ApprovalSchemeForRole
|
|
3357
3359
|
*/
|
|
@@ -3361,7 +3363,8 @@ export interface ApprovalSchemeForRole {
|
|
|
3361
3363
|
export const ApprovalSchemeForRoleApproverTypeV3 = {
|
|
3362
3364
|
Owner: 'OWNER',
|
|
3363
3365
|
Manager: 'MANAGER',
|
|
3364
|
-
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
3366
|
+
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
3367
|
+
Workflow: 'WORKFLOW'
|
|
3365
3368
|
} as const;
|
|
3366
3369
|
|
|
3367
3370
|
export type ApprovalSchemeForRoleApproverTypeV3 = typeof ApprovalSchemeForRoleApproverTypeV3[keyof typeof ApprovalSchemeForRoleApproverTypeV3];
|
|
@@ -3629,6 +3632,12 @@ export interface AttributeDefinition {
|
|
|
3629
3632
|
* @memberof AttributeDefinition
|
|
3630
3633
|
*/
|
|
3631
3634
|
'name'?: string;
|
|
3635
|
+
/**
|
|
3636
|
+
* Attribute name in the native system.
|
|
3637
|
+
* @type {string}
|
|
3638
|
+
* @memberof AttributeDefinition
|
|
3639
|
+
*/
|
|
3640
|
+
'nativeName'?: string | null;
|
|
3632
3641
|
/**
|
|
3633
3642
|
*
|
|
3634
3643
|
* @type {AttributeDefinitionType}
|
|
@@ -6366,6 +6375,12 @@ export interface CompletedApproval {
|
|
|
6366
6375
|
* @memberof CompletedApproval
|
|
6367
6376
|
*/
|
|
6368
6377
|
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
6378
|
+
/**
|
|
6379
|
+
* The privilege level of the requested access item, if applicable.
|
|
6380
|
+
* @type {string}
|
|
6381
|
+
* @memberof CompletedApproval
|
|
6382
|
+
*/
|
|
6383
|
+
'privilegeLevel'?: string | null;
|
|
6369
6384
|
}
|
|
6370
6385
|
|
|
6371
6386
|
|
|
@@ -7543,19 +7558,6 @@ export const DeleteSource202ResponseTypeV3 = {
|
|
|
7543
7558
|
|
|
7544
7559
|
export type DeleteSource202ResponseTypeV3 = typeof DeleteSource202ResponseTypeV3[keyof typeof DeleteSource202ResponseTypeV3];
|
|
7545
7560
|
|
|
7546
|
-
/**
|
|
7547
|
-
*
|
|
7548
|
-
* @export
|
|
7549
|
-
* @interface DeleteVendorConnectorMapping200Response
|
|
7550
|
-
*/
|
|
7551
|
-
export interface DeleteVendorConnectorMapping200Response {
|
|
7552
|
-
/**
|
|
7553
|
-
* The number of vendor connector mappings successfully deleted.
|
|
7554
|
-
* @type {number}
|
|
7555
|
-
* @memberof DeleteVendorConnectorMapping200Response
|
|
7556
|
-
*/
|
|
7557
|
-
'count'?: number;
|
|
7558
|
-
}
|
|
7559
7561
|
/**
|
|
7560
7562
|
*
|
|
7561
7563
|
* @export
|
|
@@ -8499,38 +8501,6 @@ export const EntitlementRefTypeV3 = {
|
|
|
8499
8501
|
|
|
8500
8502
|
export type EntitlementRefTypeV3 = typeof EntitlementRefTypeV3[keyof typeof EntitlementRefTypeV3];
|
|
8501
8503
|
|
|
8502
|
-
/**
|
|
8503
|
-
* Entitlement including a specific set of access.
|
|
8504
|
-
* @export
|
|
8505
|
-
* @interface EntitlementRef1
|
|
8506
|
-
*/
|
|
8507
|
-
export interface EntitlementRef1 {
|
|
8508
|
-
/**
|
|
8509
|
-
* Entitlement\'s DTO type.
|
|
8510
|
-
* @type {string}
|
|
8511
|
-
* @memberof EntitlementRef1
|
|
8512
|
-
*/
|
|
8513
|
-
'type'?: EntitlementRef1TypeV3;
|
|
8514
|
-
/**
|
|
8515
|
-
* Entitlement\'s ID.
|
|
8516
|
-
* @type {string}
|
|
8517
|
-
* @memberof EntitlementRef1
|
|
8518
|
-
*/
|
|
8519
|
-
'id'?: string;
|
|
8520
|
-
/**
|
|
8521
|
-
* Entitlement\'s display name.
|
|
8522
|
-
* @type {string}
|
|
8523
|
-
* @memberof EntitlementRef1
|
|
8524
|
-
*/
|
|
8525
|
-
'name'?: string;
|
|
8526
|
-
}
|
|
8527
|
-
|
|
8528
|
-
export const EntitlementRef1TypeV3 = {
|
|
8529
|
-
Entitlement: 'ENTITLEMENT'
|
|
8530
|
-
} as const;
|
|
8531
|
-
|
|
8532
|
-
export type EntitlementRef1TypeV3 = typeof EntitlementRef1TypeV3[keyof typeof EntitlementRef1TypeV3];
|
|
8533
|
-
|
|
8534
8504
|
/**
|
|
8535
8505
|
*
|
|
8536
8506
|
* @export
|
|
@@ -9463,11 +9433,11 @@ export interface FieldDetailsDto {
|
|
|
9463
9433
|
*/
|
|
9464
9434
|
'isRequired'?: boolean;
|
|
9465
9435
|
/**
|
|
9466
|
-
* The type of the attribute.
|
|
9436
|
+
* 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.
|
|
9467
9437
|
* @type {string}
|
|
9468
9438
|
* @memberof FieldDetailsDto
|
|
9469
9439
|
*/
|
|
9470
|
-
'type'?:
|
|
9440
|
+
'type'?: FieldDetailsDtoTypeV3;
|
|
9471
9441
|
/**
|
|
9472
9442
|
* Flag indicating whether or not the attribute is multi-valued.
|
|
9473
9443
|
* @type {boolean}
|
|
@@ -9475,6 +9445,18 @@ export interface FieldDetailsDto {
|
|
|
9475
9445
|
*/
|
|
9476
9446
|
'isMultiValued'?: boolean;
|
|
9477
9447
|
}
|
|
9448
|
+
|
|
9449
|
+
export const FieldDetailsDtoTypeV3 = {
|
|
9450
|
+
String: 'string',
|
|
9451
|
+
Int: 'int',
|
|
9452
|
+
Long: 'long',
|
|
9453
|
+
Date: 'date',
|
|
9454
|
+
Boolean: 'boolean',
|
|
9455
|
+
Secret: 'secret'
|
|
9456
|
+
} as const;
|
|
9457
|
+
|
|
9458
|
+
export type FieldDetailsDtoTypeV3 = typeof FieldDetailsDtoTypeV3[keyof typeof FieldDetailsDtoTypeV3];
|
|
9459
|
+
|
|
9478
9460
|
/**
|
|
9479
9461
|
*
|
|
9480
9462
|
* @export
|
|
@@ -10363,31 +10345,6 @@ export interface GetReferenceIdentityAttribute {
|
|
|
10363
10345
|
*/
|
|
10364
10346
|
'requiresPeriodicRefresh'?: boolean;
|
|
10365
10347
|
}
|
|
10366
|
-
/**
|
|
10367
|
-
*
|
|
10368
|
-
* @export
|
|
10369
|
-
* @interface GetVendorConnectorMappings405Response
|
|
10370
|
-
*/
|
|
10371
|
-
export interface GetVendorConnectorMappings405Response {
|
|
10372
|
-
/**
|
|
10373
|
-
* A message describing the error
|
|
10374
|
-
* @type {object}
|
|
10375
|
-
* @memberof GetVendorConnectorMappings405Response
|
|
10376
|
-
*/
|
|
10377
|
-
'errorName'?: object;
|
|
10378
|
-
/**
|
|
10379
|
-
* Description of the error
|
|
10380
|
-
* @type {object}
|
|
10381
|
-
* @memberof GetVendorConnectorMappings405Response
|
|
10382
|
-
*/
|
|
10383
|
-
'errorMessage'?: object;
|
|
10384
|
-
/**
|
|
10385
|
-
* Unique tracking id for the error.
|
|
10386
|
-
* @type {string}
|
|
10387
|
-
* @memberof GetVendorConnectorMappings405Response
|
|
10388
|
-
*/
|
|
10389
|
-
'trackingId'?: string;
|
|
10390
|
-
}
|
|
10391
10348
|
/**
|
|
10392
10349
|
* OAuth2 Grant Type
|
|
10393
10350
|
* @export
|
|
@@ -11797,31 +11754,6 @@ export interface IdentityWithNewAccess {
|
|
|
11797
11754
|
*/
|
|
11798
11755
|
'accessRefs': Array<IdentityWithNewAccessAccessRefsInner>;
|
|
11799
11756
|
}
|
|
11800
|
-
/**
|
|
11801
|
-
* An identity with a set of access to be added
|
|
11802
|
-
* @export
|
|
11803
|
-
* @interface IdentityWithNewAccess1
|
|
11804
|
-
*/
|
|
11805
|
-
export interface IdentityWithNewAccess1 {
|
|
11806
|
-
/**
|
|
11807
|
-
* Set of identity IDs to be checked.
|
|
11808
|
-
* @type {string}
|
|
11809
|
-
* @memberof IdentityWithNewAccess1
|
|
11810
|
-
*/
|
|
11811
|
-
'identityId': string;
|
|
11812
|
-
/**
|
|
11813
|
-
* The bundle of access profiles to be added to the identities specified. All references must be ENTITLEMENT type.
|
|
11814
|
-
* @type {Array<EntitlementRef1>}
|
|
11815
|
-
* @memberof IdentityWithNewAccess1
|
|
11816
|
-
*/
|
|
11817
|
-
'accessRefs': Array<EntitlementRef1>;
|
|
11818
|
-
/**
|
|
11819
|
-
* Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
|
|
11820
|
-
* @type {{ [key: string]: string; }}
|
|
11821
|
-
* @memberof IdentityWithNewAccess1
|
|
11822
|
-
*/
|
|
11823
|
-
'clientMetadata'?: { [key: string]: string; };
|
|
11824
|
-
}
|
|
11825
11757
|
/**
|
|
11826
11758
|
* Entitlement including a specific set of access.
|
|
11827
11759
|
* @export
|
|
@@ -11840,12 +11772,6 @@ export interface IdentityWithNewAccessAccessRefsInner {
|
|
|
11840
11772
|
* @memberof IdentityWithNewAccessAccessRefsInner
|
|
11841
11773
|
*/
|
|
11842
11774
|
'id'?: string;
|
|
11843
|
-
/**
|
|
11844
|
-
* Entitlement\'s display name.
|
|
11845
|
-
* @type {string}
|
|
11846
|
-
* @memberof IdentityWithNewAccessAccessRefsInner
|
|
11847
|
-
*/
|
|
11848
|
-
'name'?: string;
|
|
11849
11775
|
}
|
|
11850
11776
|
|
|
11851
11777
|
export const IdentityWithNewAccessAccessRefsInnerTypeV3 = {
|
|
@@ -12957,7 +12883,7 @@ export interface ManagedCluster {
|
|
|
12957
12883
|
*/
|
|
12958
12884
|
'ccgVersion': string;
|
|
12959
12885
|
/**
|
|
12960
|
-
* boolean flag
|
|
12886
|
+
* boolean flag indicating whether or not the cluster configuration is pinned
|
|
12961
12887
|
* @type {boolean}
|
|
12962
12888
|
* @memberof ManagedCluster
|
|
12963
12889
|
*/
|
|
@@ -12998,6 +12924,12 @@ export interface ManagedCluster {
|
|
|
12998
12924
|
* @memberof ManagedCluster
|
|
12999
12925
|
*/
|
|
13000
12926
|
'publicKey'?: string | null;
|
|
12927
|
+
/**
|
|
12928
|
+
*
|
|
12929
|
+
* @type {ManagedClusterEncryptionConfig}
|
|
12930
|
+
* @memberof ManagedCluster
|
|
12931
|
+
*/
|
|
12932
|
+
'encryptionConfiguration'?: ManagedClusterEncryptionConfig;
|
|
13001
12933
|
/**
|
|
13002
12934
|
* Key describing any immediate cluster alerts
|
|
13003
12935
|
* @type {string}
|
|
@@ -13065,6 +12997,27 @@ export interface ManagedClusterAttributes {
|
|
|
13065
12997
|
*/
|
|
13066
12998
|
'keystore'?: string | null;
|
|
13067
12999
|
}
|
|
13000
|
+
/**
|
|
13001
|
+
* Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
|
|
13002
|
+
* @export
|
|
13003
|
+
* @interface ManagedClusterEncryptionConfig
|
|
13004
|
+
*/
|
|
13005
|
+
export interface ManagedClusterEncryptionConfig {
|
|
13006
|
+
/**
|
|
13007
|
+
* Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
|
|
13008
|
+
* @type {string}
|
|
13009
|
+
* @memberof ManagedClusterEncryptionConfig
|
|
13010
|
+
*/
|
|
13011
|
+
'format'?: ManagedClusterEncryptionConfigFormatV3;
|
|
13012
|
+
}
|
|
13013
|
+
|
|
13014
|
+
export const ManagedClusterEncryptionConfigFormatV3 = {
|
|
13015
|
+
V2: 'V2',
|
|
13016
|
+
V3: 'V3'
|
|
13017
|
+
} as const;
|
|
13018
|
+
|
|
13019
|
+
export type ManagedClusterEncryptionConfigFormatV3 = typeof ManagedClusterEncryptionConfigFormatV3[keyof typeof ManagedClusterEncryptionConfigFormatV3];
|
|
13020
|
+
|
|
13068
13021
|
/**
|
|
13069
13022
|
* Managed Cluster key pair for Cluster
|
|
13070
13023
|
* @export
|
|
@@ -15920,6 +15873,12 @@ export interface PendingApproval {
|
|
|
15920
15873
|
* @memberof PendingApproval
|
|
15921
15874
|
*/
|
|
15922
15875
|
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
15876
|
+
/**
|
|
15877
|
+
* The privilege level of the requested access item, if applicable.
|
|
15878
|
+
* @type {string}
|
|
15879
|
+
* @memberof PendingApproval
|
|
15880
|
+
*/
|
|
15881
|
+
'privilegeLevel'?: string | null;
|
|
15923
15882
|
}
|
|
15924
15883
|
|
|
15925
15884
|
|
|
@@ -17794,6 +17753,12 @@ export interface RequestedItemStatus {
|
|
|
17794
17753
|
* @memberof RequestedItemStatus
|
|
17795
17754
|
*/
|
|
17796
17755
|
'requestedAccounts'?: Array<RequestedAccountRef> | null;
|
|
17756
|
+
/**
|
|
17757
|
+
* The privilege level of the requested access item, if applicable.
|
|
17758
|
+
* @type {string}
|
|
17759
|
+
* @memberof RequestedItemStatus
|
|
17760
|
+
*/
|
|
17761
|
+
'privilegeLevel'?: string | null;
|
|
17797
17762
|
}
|
|
17798
17763
|
|
|
17799
17764
|
export const RequestedItemStatusTypeV3 = {
|
|
@@ -20335,7 +20300,8 @@ export const SchemaFeaturesV3 = {
|
|
|
20335
20300
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
20336
20301
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
20337
20302
|
UsesUuid: 'USES_UUID',
|
|
20338
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
20303
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
20304
|
+
Delete: 'DELETE'
|
|
20339
20305
|
} as const;
|
|
20340
20306
|
|
|
20341
20307
|
export type SchemaFeaturesV3 = typeof SchemaFeaturesV3[keyof typeof SchemaFeaturesV3];
|
|
@@ -22278,7 +22244,7 @@ export interface Source {
|
|
|
22278
22244
|
* @type {SourceOwner}
|
|
22279
22245
|
* @memberof Source
|
|
22280
22246
|
*/
|
|
22281
|
-
'owner': SourceOwner;
|
|
22247
|
+
'owner': SourceOwner | null;
|
|
22282
22248
|
/**
|
|
22283
22249
|
*
|
|
22284
22250
|
* @type {SourceCluster}
|
|
@@ -22475,7 +22441,8 @@ export const SourceFeaturesV3 = {
|
|
|
22475
22441
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
22476
22442
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
22477
22443
|
UsesUuid: 'USES_UUID',
|
|
22478
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
22444
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
22445
|
+
Delete: 'DELETE'
|
|
22479
22446
|
} as const;
|
|
22480
22447
|
|
|
22481
22448
|
export type SourceFeaturesV3 = typeof SourceFeaturesV3[keyof typeof SourceFeaturesV3];
|
|
@@ -24260,143 +24227,6 @@ export interface Value {
|
|
|
24260
24227
|
*/
|
|
24261
24228
|
'value'?: string;
|
|
24262
24229
|
}
|
|
24263
|
-
/**
|
|
24264
|
-
*
|
|
24265
|
-
* @export
|
|
24266
|
-
* @interface VendorConnectorMapping
|
|
24267
|
-
*/
|
|
24268
|
-
export interface VendorConnectorMapping {
|
|
24269
|
-
/**
|
|
24270
|
-
* The unique identifier for the vendor-connector mapping.
|
|
24271
|
-
* @type {string}
|
|
24272
|
-
* @memberof VendorConnectorMapping
|
|
24273
|
-
*/
|
|
24274
|
-
'id'?: string;
|
|
24275
|
-
/**
|
|
24276
|
-
* The name of the vendor.
|
|
24277
|
-
* @type {string}
|
|
24278
|
-
* @memberof VendorConnectorMapping
|
|
24279
|
-
*/
|
|
24280
|
-
'vendor'?: string;
|
|
24281
|
-
/**
|
|
24282
|
-
* The name of the connector.
|
|
24283
|
-
* @type {string}
|
|
24284
|
-
* @memberof VendorConnectorMapping
|
|
24285
|
-
*/
|
|
24286
|
-
'connector'?: string;
|
|
24287
|
-
/**
|
|
24288
|
-
* The creation timestamp of the mapping.
|
|
24289
|
-
* @type {string}
|
|
24290
|
-
* @memberof VendorConnectorMapping
|
|
24291
|
-
*/
|
|
24292
|
-
'createdAt'?: string;
|
|
24293
|
-
/**
|
|
24294
|
-
* The identifier of the user who created the mapping.
|
|
24295
|
-
* @type {string}
|
|
24296
|
-
* @memberof VendorConnectorMapping
|
|
24297
|
-
*/
|
|
24298
|
-
'createdBy'?: string;
|
|
24299
|
-
/**
|
|
24300
|
-
*
|
|
24301
|
-
* @type {VendorConnectorMappingUpdatedAt}
|
|
24302
|
-
* @memberof VendorConnectorMapping
|
|
24303
|
-
*/
|
|
24304
|
-
'updatedAt'?: VendorConnectorMappingUpdatedAt | null;
|
|
24305
|
-
/**
|
|
24306
|
-
*
|
|
24307
|
-
* @type {VendorConnectorMappingUpdatedBy}
|
|
24308
|
-
* @memberof VendorConnectorMapping
|
|
24309
|
-
*/
|
|
24310
|
-
'updatedBy'?: VendorConnectorMappingUpdatedBy | null;
|
|
24311
|
-
/**
|
|
24312
|
-
*
|
|
24313
|
-
* @type {VendorConnectorMappingDeletedAt}
|
|
24314
|
-
* @memberof VendorConnectorMapping
|
|
24315
|
-
*/
|
|
24316
|
-
'deletedAt'?: VendorConnectorMappingDeletedAt | null;
|
|
24317
|
-
/**
|
|
24318
|
-
*
|
|
24319
|
-
* @type {VendorConnectorMappingDeletedBy}
|
|
24320
|
-
* @memberof VendorConnectorMapping
|
|
24321
|
-
*/
|
|
24322
|
-
'deletedBy'?: VendorConnectorMappingDeletedBy | null;
|
|
24323
|
-
}
|
|
24324
|
-
/**
|
|
24325
|
-
* An object representing the nullable timestamp of when the mapping was deleted.
|
|
24326
|
-
* @export
|
|
24327
|
-
* @interface VendorConnectorMappingDeletedAt
|
|
24328
|
-
*/
|
|
24329
|
-
export interface VendorConnectorMappingDeletedAt {
|
|
24330
|
-
/**
|
|
24331
|
-
* The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
|
|
24332
|
-
* @type {string}
|
|
24333
|
-
* @memberof VendorConnectorMappingDeletedAt
|
|
24334
|
-
*/
|
|
24335
|
-
'Time'?: string;
|
|
24336
|
-
/**
|
|
24337
|
-
* A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
|
|
24338
|
-
* @type {boolean}
|
|
24339
|
-
* @memberof VendorConnectorMappingDeletedAt
|
|
24340
|
-
*/
|
|
24341
|
-
'Valid'?: boolean;
|
|
24342
|
-
}
|
|
24343
|
-
/**
|
|
24344
|
-
* An object representing the nullable identifier of the user who deleted the mapping.
|
|
24345
|
-
* @export
|
|
24346
|
-
* @interface VendorConnectorMappingDeletedBy
|
|
24347
|
-
*/
|
|
24348
|
-
export interface VendorConnectorMappingDeletedBy {
|
|
24349
|
-
/**
|
|
24350
|
-
* The identifier of the user who deleted the mapping, if applicable.
|
|
24351
|
-
* @type {string}
|
|
24352
|
-
* @memberof VendorConnectorMappingDeletedBy
|
|
24353
|
-
*/
|
|
24354
|
-
'String'?: string;
|
|
24355
|
-
/**
|
|
24356
|
-
* A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
|
|
24357
|
-
* @type {boolean}
|
|
24358
|
-
* @memberof VendorConnectorMappingDeletedBy
|
|
24359
|
-
*/
|
|
24360
|
-
'Valid'?: boolean;
|
|
24361
|
-
}
|
|
24362
|
-
/**
|
|
24363
|
-
* An object representing the nullable timestamp of the last update.
|
|
24364
|
-
* @export
|
|
24365
|
-
* @interface VendorConnectorMappingUpdatedAt
|
|
24366
|
-
*/
|
|
24367
|
-
export interface VendorConnectorMappingUpdatedAt {
|
|
24368
|
-
/**
|
|
24369
|
-
* The timestamp when the mapping was last updated, represented in ISO 8601 format.
|
|
24370
|
-
* @type {string}
|
|
24371
|
-
* @memberof VendorConnectorMappingUpdatedAt
|
|
24372
|
-
*/
|
|
24373
|
-
'Time'?: string;
|
|
24374
|
-
/**
|
|
24375
|
-
* A flag indicating if the \'Time\' field is set and valid.
|
|
24376
|
-
* @type {boolean}
|
|
24377
|
-
* @memberof VendorConnectorMappingUpdatedAt
|
|
24378
|
-
*/
|
|
24379
|
-
'Valid'?: boolean;
|
|
24380
|
-
}
|
|
24381
|
-
/**
|
|
24382
|
-
* An object representing the nullable identifier of the user who last updated the mapping.
|
|
24383
|
-
* @export
|
|
24384
|
-
* @interface VendorConnectorMappingUpdatedBy
|
|
24385
|
-
*/
|
|
24386
|
-
export interface VendorConnectorMappingUpdatedBy {
|
|
24387
|
-
/**
|
|
24388
|
-
* The identifier of the user who last updated the mapping, if available.
|
|
24389
|
-
* @type {string}
|
|
24390
|
-
* @memberof VendorConnectorMappingUpdatedBy
|
|
24391
|
-
*/
|
|
24392
|
-
'String'?: string;
|
|
24393
|
-
/**
|
|
24394
|
-
* A flag indicating if the \'String\' field is set and valid.
|
|
24395
|
-
* @type {boolean}
|
|
24396
|
-
* @memberof VendorConnectorMappingUpdatedBy
|
|
24397
|
-
*/
|
|
24398
|
-
'Valid'?: boolean;
|
|
24399
|
-
}
|
|
24400
24230
|
/**
|
|
24401
24231
|
*
|
|
24402
24232
|
* @export
|
|
@@ -35859,7 +35689,7 @@ export const ConfigurationHubApiAxiosParamCreator = function (configuration?: Co
|
|
|
35859
35689
|
};
|
|
35860
35690
|
},
|
|
35861
35691
|
/**
|
|
35862
|
-
* 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/
|
|
35692
|
+
* 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.
|
|
35863
35693
|
* @summary Upload a configuration
|
|
35864
35694
|
* @param {File} data JSON file containing the objects to be imported.
|
|
35865
35695
|
* @param {string} name Name that will be assigned to the uploaded configuration file.
|
|
@@ -36216,7 +36046,7 @@ export const ConfigurationHubApiFp = function(configuration?: Configuration) {
|
|
|
36216
36046
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
36217
36047
|
},
|
|
36218
36048
|
/**
|
|
36219
|
-
* 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/
|
|
36049
|
+
* 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.
|
|
36220
36050
|
* @summary Upload a configuration
|
|
36221
36051
|
* @param {File} data JSON file containing the objects to be imported.
|
|
36222
36052
|
* @param {string} name Name that will be assigned to the uploaded configuration file.
|
|
@@ -36340,7 +36170,7 @@ export const ConfigurationHubApiFactory = function (configuration?: Configuratio
|
|
|
36340
36170
|
return localVarFp.createObjectMappings(requestParameters.sourceOrg, requestParameters.objectMappingBulkCreateRequest, axiosOptions).then((request) => request(axios, basePath));
|
|
36341
36171
|
},
|
|
36342
36172
|
/**
|
|
36343
|
-
* 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/
|
|
36173
|
+
* 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.
|
|
36344
36174
|
* @summary Upload a configuration
|
|
36345
36175
|
* @param {ConfigurationHubApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
|
|
36346
36176
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -36605,7 +36435,7 @@ export class ConfigurationHubApi extends BaseAPI {
|
|
|
36605
36435
|
}
|
|
36606
36436
|
|
|
36607
36437
|
/**
|
|
36608
|
-
* 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/
|
|
36438
|
+
* 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.
|
|
36609
36439
|
* @summary Upload a configuration
|
|
36610
36440
|
* @param {ConfigurationHubApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
|
|
36611
36441
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40096,7 +39926,7 @@ export const LifecycleStatesApiAxiosParamCreator = function (configuration?: Con
|
|
|
40096
39926
|
* @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.
|
|
40097
39927
|
* @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.
|
|
40098
39928
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
40099
|
-
* @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**
|
|
39929
|
+
* @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**
|
|
40100
39930
|
* @param {*} [axiosOptions] Override http request option.
|
|
40101
39931
|
* @throws {RequiredError}
|
|
40102
39932
|
*/
|
|
@@ -40318,7 +40148,7 @@ export const LifecycleStatesApiFp = function(configuration?: Configuration) {
|
|
|
40318
40148
|
* @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.
|
|
40319
40149
|
* @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.
|
|
40320
40150
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
40321
|
-
* @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**
|
|
40151
|
+
* @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**
|
|
40322
40152
|
* @param {*} [axiosOptions] Override http request option.
|
|
40323
40153
|
* @throws {RequiredError}
|
|
40324
40154
|
*/
|
|
@@ -40528,7 +40358,7 @@ export interface LifecycleStatesApiGetLifecycleStatesRequest {
|
|
|
40528
40358
|
readonly count?: boolean
|
|
40529
40359
|
|
|
40530
40360
|
/**
|
|
40531
|
-
* 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**
|
|
40361
|
+
* 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**
|
|
40532
40362
|
* @type {string}
|
|
40533
40363
|
* @memberof LifecycleStatesApiGetLifecycleStates
|
|
40534
40364
|
*/
|
|
@@ -53364,13 +53194,13 @@ export const SODViolationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
53364
53194
|
/**
|
|
53365
53195
|
* This API initiates a SOD policy verification asynchronously.
|
|
53366
53196
|
* @summary Check sod violations
|
|
53367
|
-
* @param {
|
|
53197
|
+
* @param {IdentityWithNewAccess} identityWithNewAccess
|
|
53368
53198
|
* @param {*} [axiosOptions] Override http request option.
|
|
53369
53199
|
* @throws {RequiredError}
|
|
53370
53200
|
*/
|
|
53371
|
-
startViolationCheck: async (
|
|
53372
|
-
// verify required parameter '
|
|
53373
|
-
assertParamExists('startViolationCheck', '
|
|
53201
|
+
startViolationCheck: async (identityWithNewAccess: IdentityWithNewAccess, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
53202
|
+
// verify required parameter 'identityWithNewAccess' is not null or undefined
|
|
53203
|
+
assertParamExists('startViolationCheck', 'identityWithNewAccess', identityWithNewAccess)
|
|
53374
53204
|
const localVarPath = `/sod-violations/check`;
|
|
53375
53205
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53376
53206
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -53398,7 +53228,7 @@ export const SODViolationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
53398
53228
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
53399
53229
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53400
53230
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
53401
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
53231
|
+
localVarRequestOptions.data = serializeDataIfNeeded(identityWithNewAccess, localVarRequestOptions, configuration)
|
|
53402
53232
|
|
|
53403
53233
|
return {
|
|
53404
53234
|
url: toPathString(localVarUrlObj),
|
|
@@ -53431,12 +53261,12 @@ export const SODViolationsApiFp = function(configuration?: Configuration) {
|
|
|
53431
53261
|
/**
|
|
53432
53262
|
* This API initiates a SOD policy verification asynchronously.
|
|
53433
53263
|
* @summary Check sod violations
|
|
53434
|
-
* @param {
|
|
53264
|
+
* @param {IdentityWithNewAccess} identityWithNewAccess
|
|
53435
53265
|
* @param {*} [axiosOptions] Override http request option.
|
|
53436
53266
|
* @throws {RequiredError}
|
|
53437
53267
|
*/
|
|
53438
|
-
async startViolationCheck(
|
|
53439
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.startViolationCheck(
|
|
53268
|
+
async startViolationCheck(identityWithNewAccess: IdentityWithNewAccess, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheck>> {
|
|
53269
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.startViolationCheck(identityWithNewAccess, axiosOptions);
|
|
53440
53270
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
53441
53271
|
const localVarOperationServerBasePath = operationServerMap['SODViolationsApi.startViolationCheck']?.[localVarOperationServerIndex]?.url;
|
|
53442
53272
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -53469,7 +53299,7 @@ export const SODViolationsApiFactory = function (configuration?: Configuration,
|
|
|
53469
53299
|
* @throws {RequiredError}
|
|
53470
53300
|
*/
|
|
53471
53301
|
startViolationCheck(requestParameters: SODViolationsApiStartViolationCheckRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SodViolationCheck> {
|
|
53472
|
-
return localVarFp.startViolationCheck(requestParameters.
|
|
53302
|
+
return localVarFp.startViolationCheck(requestParameters.identityWithNewAccess, axiosOptions).then((request) => request(axios, basePath));
|
|
53473
53303
|
},
|
|
53474
53304
|
};
|
|
53475
53305
|
};
|
|
@@ -53496,10 +53326,10 @@ export interface SODViolationsApiStartPredictSodViolationsRequest {
|
|
|
53496
53326
|
export interface SODViolationsApiStartViolationCheckRequest {
|
|
53497
53327
|
/**
|
|
53498
53328
|
*
|
|
53499
|
-
* @type {
|
|
53329
|
+
* @type {IdentityWithNewAccess}
|
|
53500
53330
|
* @memberof SODViolationsApiStartViolationCheck
|
|
53501
53331
|
*/
|
|
53502
|
-
readonly
|
|
53332
|
+
readonly identityWithNewAccess: IdentityWithNewAccess
|
|
53503
53333
|
}
|
|
53504
53334
|
|
|
53505
53335
|
/**
|
|
@@ -53530,7 +53360,7 @@ export class SODViolationsApi extends BaseAPI {
|
|
|
53530
53360
|
* @memberof SODViolationsApi
|
|
53531
53361
|
*/
|
|
53532
53362
|
public startViolationCheck(requestParameters: SODViolationsApiStartViolationCheckRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
53533
|
-
return SODViolationsApiFp(this.configuration).startViolationCheck(requestParameters.
|
|
53363
|
+
return SODViolationsApiFp(this.configuration).startViolationCheck(requestParameters.identityWithNewAccess, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
53534
53364
|
}
|
|
53535
53365
|
}
|
|
53536
53366
|
|
|
@@ -57718,7 +57548,7 @@ export class SourceUsagesApi extends BaseAPI {
|
|
|
57718
57548
|
export const SourcesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
57719
57549
|
return {
|
|
57720
57550
|
/**
|
|
57721
|
-
* 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/
|
|
57551
|
+
* 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.
|
|
57722
57552
|
* @summary Create provisioning policy
|
|
57723
57553
|
* @param {string} sourceId The Source id
|
|
57724
57554
|
* @param {ProvisioningPolicyDto} provisioningPolicyDto
|
|
@@ -58645,7 +58475,7 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58645
58475
|
};
|
|
58646
58476
|
},
|
|
58647
58477
|
/**
|
|
58648
|
-
* 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/
|
|
58478
|
+
* 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.
|
|
58649
58479
|
* @summary Update provisioning policy by usagetype
|
|
58650
58480
|
* @param {string} sourceId The Source ID.
|
|
58651
58481
|
* @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 \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
@@ -58853,7 +58683,7 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
58853
58683
|
};
|
|
58854
58684
|
},
|
|
58855
58685
|
/**
|
|
58856
|
-
* 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/
|
|
58686
|
+
* 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.
|
|
58857
58687
|
* @summary Partial update of provisioning policy
|
|
58858
58688
|
* @param {string} sourceId The Source id.
|
|
58859
58689
|
* @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 \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
@@ -59019,7 +58849,7 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
59019
58849
|
const localVarAxiosParamCreator = SourcesApiAxiosParamCreator(configuration)
|
|
59020
58850
|
return {
|
|
59021
58851
|
/**
|
|
59022
|
-
* 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/
|
|
58852
|
+
* 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.
|
|
59023
58853
|
* @summary Create provisioning policy
|
|
59024
58854
|
* @param {string} sourceId The Source id
|
|
59025
58855
|
* @param {ProvisioningPolicyDto} provisioningPolicyDto
|
|
@@ -59286,7 +59116,7 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
59286
59116
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
59287
59117
|
},
|
|
59288
59118
|
/**
|
|
59289
|
-
* 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/
|
|
59119
|
+
* 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.
|
|
59290
59120
|
* @summary Update provisioning policy by usagetype
|
|
59291
59121
|
* @param {string} sourceId The Source ID.
|
|
59292
59122
|
* @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 \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
@@ -59344,7 +59174,7 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
59344
59174
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
59345
59175
|
},
|
|
59346
59176
|
/**
|
|
59347
|
-
* 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/
|
|
59177
|
+
* 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.
|
|
59348
59178
|
* @summary Partial update of provisioning policy
|
|
59349
59179
|
* @param {string} sourceId The Source id.
|
|
59350
59180
|
* @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 \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
|
|
@@ -59398,7 +59228,7 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
59398
59228
|
const localVarFp = SourcesApiFp(configuration)
|
|
59399
59229
|
return {
|
|
59400
59230
|
/**
|
|
59401
|
-
* 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/
|
|
59231
|
+
* 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.
|
|
59402
59232
|
* @summary Create provisioning policy
|
|
59403
59233
|
* @param {SourcesApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
59404
59234
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -59588,7 +59418,7 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
59588
59418
|
return localVarFp.listSources(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.forSubadmin, requestParameters.includeIDNSource, axiosOptions).then((request) => request(axios, basePath));
|
|
59589
59419
|
},
|
|
59590
59420
|
/**
|
|
59591
|
-
* 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/
|
|
59421
|
+
* 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.
|
|
59592
59422
|
* @summary Update provisioning policy by usagetype
|
|
59593
59423
|
* @param {SourcesApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
59594
59424
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -59628,7 +59458,7 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
59628
59458
|
return localVarFp.updateProvisioningPoliciesInBulk(requestParameters.sourceId, requestParameters.provisioningPolicyDto, axiosOptions).then((request) => request(axios, basePath));
|
|
59629
59459
|
},
|
|
59630
59460
|
/**
|
|
59631
|
-
* 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/
|
|
59461
|
+
* 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.
|
|
59632
59462
|
* @summary Partial update of provisioning policy
|
|
59633
59463
|
* @param {SourcesApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
59634
59464
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60249,7 +60079,7 @@ export interface SourcesApiUpdateSourceSchemaRequest {
|
|
|
60249
60079
|
*/
|
|
60250
60080
|
export class SourcesApi extends BaseAPI {
|
|
60251
60081
|
/**
|
|
60252
|
-
* 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/
|
|
60082
|
+
* 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.
|
|
60253
60083
|
* @summary Create provisioning policy
|
|
60254
60084
|
* @param {SourcesApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60255
60085
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60477,7 +60307,7 @@ export class SourcesApi extends BaseAPI {
|
|
|
60477
60307
|
}
|
|
60478
60308
|
|
|
60479
60309
|
/**
|
|
60480
|
-
* 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/
|
|
60310
|
+
* 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.
|
|
60481
60311
|
* @summary Update provisioning policy by usagetype
|
|
60482
60312
|
* @param {SourcesApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60483
60313
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60525,7 +60355,7 @@ export class SourcesApi extends BaseAPI {
|
|
|
60525
60355
|
}
|
|
60526
60356
|
|
|
60527
60357
|
/**
|
|
60528
|
-
* 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/
|
|
60358
|
+
* 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.
|
|
60529
60359
|
* @summary Partial update of provisioning policy
|
|
60530
60360
|
* @param {SourcesApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
60531
60361
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -60718,7 +60548,7 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60718
60548
|
};
|
|
60719
60549
|
},
|
|
60720
60550
|
/**
|
|
60721
|
-
* This API returns a list of all tagged objects.
|
|
60551
|
+
* This API returns a list of all tagged objects.
|
|
60722
60552
|
* @summary List tagged objects
|
|
60723
60553
|
* @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.
|
|
60724
60554
|
* @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.
|
|
@@ -60776,7 +60606,7 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60776
60606
|
};
|
|
60777
60607
|
},
|
|
60778
60608
|
/**
|
|
60779
|
-
* This API returns a list of all tagged objects by type.
|
|
60609
|
+
* This API returns a list of all tagged objects by type.
|
|
60780
60610
|
* @summary List tagged objects by type
|
|
60781
60611
|
* @param {ListTaggedObjectsByTypeTypeV3} type The type of tagged object to retrieve.
|
|
60782
60612
|
* @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.
|
|
@@ -60890,7 +60720,7 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
60890
60720
|
};
|
|
60891
60721
|
},
|
|
60892
60722
|
/**
|
|
60893
|
-
* This adds a tag to an object.
|
|
60723
|
+
* This adds a tag to an object.
|
|
60894
60724
|
* @summary Add tag to object
|
|
60895
60725
|
* @param {TaggedObject} taggedObject
|
|
60896
60726
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61033,7 +60863,7 @@ export const TaggedObjectsApiFp = function(configuration?: Configuration) {
|
|
|
61033
60863
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
61034
60864
|
},
|
|
61035
60865
|
/**
|
|
61036
|
-
* This API returns a list of all tagged objects.
|
|
60866
|
+
* This API returns a list of all tagged objects.
|
|
61037
60867
|
* @summary List tagged objects
|
|
61038
60868
|
* @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.
|
|
61039
60869
|
* @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.
|
|
@@ -61049,7 +60879,7 @@ export const TaggedObjectsApiFp = function(configuration?: Configuration) {
|
|
|
61049
60879
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
61050
60880
|
},
|
|
61051
60881
|
/**
|
|
61052
|
-
* This API returns a list of all tagged objects by type.
|
|
60882
|
+
* This API returns a list of all tagged objects by type.
|
|
61053
60883
|
* @summary List tagged objects by type
|
|
61054
60884
|
* @param {ListTaggedObjectsByTypeTypeV3} type The type of tagged object to retrieve.
|
|
61055
60885
|
* @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.
|
|
@@ -61081,7 +60911,7 @@ export const TaggedObjectsApiFp = function(configuration?: Configuration) {
|
|
|
61081
60911
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
61082
60912
|
},
|
|
61083
60913
|
/**
|
|
61084
|
-
* This adds a tag to an object.
|
|
60914
|
+
* This adds a tag to an object.
|
|
61085
60915
|
* @summary Add tag to object
|
|
61086
60916
|
* @param {TaggedObject} taggedObject
|
|
61087
60917
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61147,7 +60977,7 @@ export const TaggedObjectsApiFactory = function (configuration?: Configuration,
|
|
|
61147
60977
|
return localVarFp.getTaggedObject(requestParameters.type, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
61148
60978
|
},
|
|
61149
60979
|
/**
|
|
61150
|
-
* This API returns a list of all tagged objects.
|
|
60980
|
+
* This API returns a list of all tagged objects.
|
|
61151
60981
|
* @summary List tagged objects
|
|
61152
60982
|
* @param {TaggedObjectsApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
61153
60983
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61157,7 +60987,7 @@ export const TaggedObjectsApiFactory = function (configuration?: Configuration,
|
|
|
61157
60987
|
return localVarFp.listTaggedObjects(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
61158
60988
|
},
|
|
61159
60989
|
/**
|
|
61160
|
-
* This API returns a list of all tagged objects by type.
|
|
60990
|
+
* This API returns a list of all tagged objects by type.
|
|
61161
60991
|
* @summary List tagged objects by type
|
|
61162
60992
|
* @param {TaggedObjectsApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
61163
60993
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61177,7 +61007,7 @@ export const TaggedObjectsApiFactory = function (configuration?: Configuration,
|
|
|
61177
61007
|
return localVarFp.putTaggedObject(requestParameters.type, requestParameters.id, requestParameters.taggedObject, axiosOptions).then((request) => request(axios, basePath));
|
|
61178
61008
|
},
|
|
61179
61009
|
/**
|
|
61180
|
-
* This adds a tag to an object.
|
|
61010
|
+
* This adds a tag to an object.
|
|
61181
61011
|
* @summary Add tag to object
|
|
61182
61012
|
* @param {TaggedObjectsApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
61183
61013
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61432,7 +61262,7 @@ export class TaggedObjectsApi extends BaseAPI {
|
|
|
61432
61262
|
}
|
|
61433
61263
|
|
|
61434
61264
|
/**
|
|
61435
|
-
* This API returns a list of all tagged objects.
|
|
61265
|
+
* This API returns a list of all tagged objects.
|
|
61436
61266
|
* @summary List tagged objects
|
|
61437
61267
|
* @param {TaggedObjectsApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
61438
61268
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61444,7 +61274,7 @@ export class TaggedObjectsApi extends BaseAPI {
|
|
|
61444
61274
|
}
|
|
61445
61275
|
|
|
61446
61276
|
/**
|
|
61447
|
-
* This API returns a list of all tagged objects by type.
|
|
61277
|
+
* This API returns a list of all tagged objects by type.
|
|
61448
61278
|
* @summary List tagged objects by type
|
|
61449
61279
|
* @param {TaggedObjectsApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
61450
61280
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -61468,7 +61298,7 @@ export class TaggedObjectsApi extends BaseAPI {
|
|
|
61468
61298
|
}
|
|
61469
61299
|
|
|
61470
61300
|
/**
|
|
61471
|
-
* This adds a tag to an object.
|
|
61301
|
+
* This adds a tag to an object.
|
|
61472
61302
|
* @summary Add tag to object
|
|
61473
61303
|
* @param {TaggedObjectsApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
61474
61304
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -62111,301 +61941,6 @@ export class TransformsApi extends BaseAPI {
|
|
|
62111
61941
|
|
|
62112
61942
|
|
|
62113
61943
|
|
|
62114
|
-
/**
|
|
62115
|
-
* VendorConnectorMappingsApi - axios parameter creator
|
|
62116
|
-
* @export
|
|
62117
|
-
*/
|
|
62118
|
-
export const VendorConnectorMappingsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
62119
|
-
return {
|
|
62120
|
-
/**
|
|
62121
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
62122
|
-
* @summary Create vendor connector mapping
|
|
62123
|
-
* @param {VendorConnectorMapping} vendorConnectorMapping
|
|
62124
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62125
|
-
* @throws {RequiredError}
|
|
62126
|
-
*/
|
|
62127
|
-
createVendorConnectorMapping: async (vendorConnectorMapping: VendorConnectorMapping, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
62128
|
-
// verify required parameter 'vendorConnectorMapping' is not null or undefined
|
|
62129
|
-
assertParamExists('createVendorConnectorMapping', 'vendorConnectorMapping', vendorConnectorMapping)
|
|
62130
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
62131
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62132
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
62133
|
-
let baseOptions;
|
|
62134
|
-
if (configuration) {
|
|
62135
|
-
baseOptions = configuration.baseOptions;
|
|
62136
|
-
}
|
|
62137
|
-
|
|
62138
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
62139
|
-
const localVarHeaderParameter = {} as any;
|
|
62140
|
-
const localVarQueryParameter = {} as any;
|
|
62141
|
-
|
|
62142
|
-
// authentication userAuth required
|
|
62143
|
-
// oauth required
|
|
62144
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
62145
|
-
|
|
62146
|
-
// authentication userAuth required
|
|
62147
|
-
// oauth required
|
|
62148
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
62149
|
-
|
|
62150
|
-
|
|
62151
|
-
|
|
62152
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
62153
|
-
|
|
62154
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62155
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
62156
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
62157
|
-
localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMapping, localVarRequestOptions, configuration)
|
|
62158
|
-
|
|
62159
|
-
return {
|
|
62160
|
-
url: toPathString(localVarUrlObj),
|
|
62161
|
-
axiosOptions: localVarRequestOptions,
|
|
62162
|
-
};
|
|
62163
|
-
},
|
|
62164
|
-
/**
|
|
62165
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
62166
|
-
* @summary Delete vendor connector mapping
|
|
62167
|
-
* @param {VendorConnectorMapping} vendorConnectorMapping
|
|
62168
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62169
|
-
* @throws {RequiredError}
|
|
62170
|
-
*/
|
|
62171
|
-
deleteVendorConnectorMapping: async (vendorConnectorMapping: VendorConnectorMapping, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
62172
|
-
// verify required parameter 'vendorConnectorMapping' is not null or undefined
|
|
62173
|
-
assertParamExists('deleteVendorConnectorMapping', 'vendorConnectorMapping', vendorConnectorMapping)
|
|
62174
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
62175
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62176
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
62177
|
-
let baseOptions;
|
|
62178
|
-
if (configuration) {
|
|
62179
|
-
baseOptions = configuration.baseOptions;
|
|
62180
|
-
}
|
|
62181
|
-
|
|
62182
|
-
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
62183
|
-
const localVarHeaderParameter = {} as any;
|
|
62184
|
-
const localVarQueryParameter = {} as any;
|
|
62185
|
-
|
|
62186
|
-
// authentication userAuth required
|
|
62187
|
-
// oauth required
|
|
62188
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
62189
|
-
|
|
62190
|
-
// authentication userAuth required
|
|
62191
|
-
// oauth required
|
|
62192
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
62193
|
-
|
|
62194
|
-
|
|
62195
|
-
|
|
62196
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
62197
|
-
|
|
62198
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62199
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
62200
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
62201
|
-
localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMapping, localVarRequestOptions, configuration)
|
|
62202
|
-
|
|
62203
|
-
return {
|
|
62204
|
-
url: toPathString(localVarUrlObj),
|
|
62205
|
-
axiosOptions: localVarRequestOptions,
|
|
62206
|
-
};
|
|
62207
|
-
},
|
|
62208
|
-
/**
|
|
62209
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
62210
|
-
* @summary List vendor connector mappings
|
|
62211
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62212
|
-
* @throws {RequiredError}
|
|
62213
|
-
*/
|
|
62214
|
-
getVendorConnectorMappings: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
62215
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
62216
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62217
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
62218
|
-
let baseOptions;
|
|
62219
|
-
if (configuration) {
|
|
62220
|
-
baseOptions = configuration.baseOptions;
|
|
62221
|
-
}
|
|
62222
|
-
|
|
62223
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
62224
|
-
const localVarHeaderParameter = {} as any;
|
|
62225
|
-
const localVarQueryParameter = {} as any;
|
|
62226
|
-
|
|
62227
|
-
// authentication userAuth required
|
|
62228
|
-
// oauth required
|
|
62229
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
62230
|
-
|
|
62231
|
-
// authentication userAuth required
|
|
62232
|
-
// oauth required
|
|
62233
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
62234
|
-
|
|
62235
|
-
|
|
62236
|
-
|
|
62237
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62238
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
62239
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
62240
|
-
|
|
62241
|
-
return {
|
|
62242
|
-
url: toPathString(localVarUrlObj),
|
|
62243
|
-
axiosOptions: localVarRequestOptions,
|
|
62244
|
-
};
|
|
62245
|
-
},
|
|
62246
|
-
}
|
|
62247
|
-
};
|
|
62248
|
-
|
|
62249
|
-
/**
|
|
62250
|
-
* VendorConnectorMappingsApi - functional programming interface
|
|
62251
|
-
* @export
|
|
62252
|
-
*/
|
|
62253
|
-
export const VendorConnectorMappingsApiFp = function(configuration?: Configuration) {
|
|
62254
|
-
const localVarAxiosParamCreator = VendorConnectorMappingsApiAxiosParamCreator(configuration)
|
|
62255
|
-
return {
|
|
62256
|
-
/**
|
|
62257
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
62258
|
-
* @summary Create vendor connector mapping
|
|
62259
|
-
* @param {VendorConnectorMapping} vendorConnectorMapping
|
|
62260
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62261
|
-
* @throws {RequiredError}
|
|
62262
|
-
*/
|
|
62263
|
-
async createVendorConnectorMapping(vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMapping>> {
|
|
62264
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createVendorConnectorMapping(vendorConnectorMapping, axiosOptions);
|
|
62265
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
62266
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsApi.createVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
|
|
62267
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
62268
|
-
},
|
|
62269
|
-
/**
|
|
62270
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
62271
|
-
* @summary Delete vendor connector mapping
|
|
62272
|
-
* @param {VendorConnectorMapping} vendorConnectorMapping
|
|
62273
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62274
|
-
* @throws {RequiredError}
|
|
62275
|
-
*/
|
|
62276
|
-
async deleteVendorConnectorMapping(vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200Response>> {
|
|
62277
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVendorConnectorMapping(vendorConnectorMapping, axiosOptions);
|
|
62278
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
62279
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsApi.deleteVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
|
|
62280
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
62281
|
-
},
|
|
62282
|
-
/**
|
|
62283
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
62284
|
-
* @summary List vendor connector mappings
|
|
62285
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62286
|
-
* @throws {RequiredError}
|
|
62287
|
-
*/
|
|
62288
|
-
async getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMapping>>> {
|
|
62289
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getVendorConnectorMappings(axiosOptions);
|
|
62290
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
62291
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsApi.getVendorConnectorMappings']?.[localVarOperationServerIndex]?.url;
|
|
62292
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
62293
|
-
},
|
|
62294
|
-
}
|
|
62295
|
-
};
|
|
62296
|
-
|
|
62297
|
-
/**
|
|
62298
|
-
* VendorConnectorMappingsApi - factory interface
|
|
62299
|
-
* @export
|
|
62300
|
-
*/
|
|
62301
|
-
export const VendorConnectorMappingsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
62302
|
-
const localVarFp = VendorConnectorMappingsApiFp(configuration)
|
|
62303
|
-
return {
|
|
62304
|
-
/**
|
|
62305
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
62306
|
-
* @summary Create vendor connector mapping
|
|
62307
|
-
* @param {VendorConnectorMappingsApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
62308
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62309
|
-
* @throws {RequiredError}
|
|
62310
|
-
*/
|
|
62311
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMapping> {
|
|
62312
|
-
return localVarFp.createVendorConnectorMapping(requestParameters.vendorConnectorMapping, axiosOptions).then((request) => request(axios, basePath));
|
|
62313
|
-
},
|
|
62314
|
-
/**
|
|
62315
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
62316
|
-
* @summary Delete vendor connector mapping
|
|
62317
|
-
* @param {VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
62318
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62319
|
-
* @throws {RequiredError}
|
|
62320
|
-
*/
|
|
62321
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200Response> {
|
|
62322
|
-
return localVarFp.deleteVendorConnectorMapping(requestParameters.vendorConnectorMapping, axiosOptions).then((request) => request(axios, basePath));
|
|
62323
|
-
},
|
|
62324
|
-
/**
|
|
62325
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
62326
|
-
* @summary List vendor connector mappings
|
|
62327
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62328
|
-
* @throws {RequiredError}
|
|
62329
|
-
*/
|
|
62330
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMapping>> {
|
|
62331
|
-
return localVarFp.getVendorConnectorMappings(axiosOptions).then((request) => request(axios, basePath));
|
|
62332
|
-
},
|
|
62333
|
-
};
|
|
62334
|
-
};
|
|
62335
|
-
|
|
62336
|
-
/**
|
|
62337
|
-
* Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsApi.
|
|
62338
|
-
* @export
|
|
62339
|
-
* @interface VendorConnectorMappingsApiCreateVendorConnectorMappingRequest
|
|
62340
|
-
*/
|
|
62341
|
-
export interface VendorConnectorMappingsApiCreateVendorConnectorMappingRequest {
|
|
62342
|
-
/**
|
|
62343
|
-
*
|
|
62344
|
-
* @type {VendorConnectorMapping}
|
|
62345
|
-
* @memberof VendorConnectorMappingsApiCreateVendorConnectorMapping
|
|
62346
|
-
*/
|
|
62347
|
-
readonly vendorConnectorMapping: VendorConnectorMapping
|
|
62348
|
-
}
|
|
62349
|
-
|
|
62350
|
-
/**
|
|
62351
|
-
* Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsApi.
|
|
62352
|
-
* @export
|
|
62353
|
-
* @interface VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest
|
|
62354
|
-
*/
|
|
62355
|
-
export interface VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest {
|
|
62356
|
-
/**
|
|
62357
|
-
*
|
|
62358
|
-
* @type {VendorConnectorMapping}
|
|
62359
|
-
* @memberof VendorConnectorMappingsApiDeleteVendorConnectorMapping
|
|
62360
|
-
*/
|
|
62361
|
-
readonly vendorConnectorMapping: VendorConnectorMapping
|
|
62362
|
-
}
|
|
62363
|
-
|
|
62364
|
-
/**
|
|
62365
|
-
* VendorConnectorMappingsApi - object-oriented interface
|
|
62366
|
-
* @export
|
|
62367
|
-
* @class VendorConnectorMappingsApi
|
|
62368
|
-
* @extends {BaseAPI}
|
|
62369
|
-
*/
|
|
62370
|
-
export class VendorConnectorMappingsApi extends BaseAPI {
|
|
62371
|
-
/**
|
|
62372
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
62373
|
-
* @summary Create vendor connector mapping
|
|
62374
|
-
* @param {VendorConnectorMappingsApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
62375
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62376
|
-
* @throws {RequiredError}
|
|
62377
|
-
* @memberof VendorConnectorMappingsApi
|
|
62378
|
-
*/
|
|
62379
|
-
public createVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
62380
|
-
return VendorConnectorMappingsApiFp(this.configuration).createVendorConnectorMapping(requestParameters.vendorConnectorMapping, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
62381
|
-
}
|
|
62382
|
-
|
|
62383
|
-
/**
|
|
62384
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
62385
|
-
* @summary Delete vendor connector mapping
|
|
62386
|
-
* @param {VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
62387
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62388
|
-
* @throws {RequiredError}
|
|
62389
|
-
* @memberof VendorConnectorMappingsApi
|
|
62390
|
-
*/
|
|
62391
|
-
public deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
62392
|
-
return VendorConnectorMappingsApiFp(this.configuration).deleteVendorConnectorMapping(requestParameters.vendorConnectorMapping, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
62393
|
-
}
|
|
62394
|
-
|
|
62395
|
-
/**
|
|
62396
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
62397
|
-
* @summary List vendor connector mappings
|
|
62398
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
62399
|
-
* @throws {RequiredError}
|
|
62400
|
-
* @memberof VendorConnectorMappingsApi
|
|
62401
|
-
*/
|
|
62402
|
-
public getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig) {
|
|
62403
|
-
return VendorConnectorMappingsApiFp(this.configuration).getVendorConnectorMappings(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
62404
|
-
}
|
|
62405
|
-
}
|
|
62406
|
-
|
|
62407
|
-
|
|
62408
|
-
|
|
62409
61944
|
/**
|
|
62410
61945
|
* WorkItemsApi - axios parameter creator
|
|
62411
61946
|
* @export
|
|
@@ -64380,14 +63915,14 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
64380
63915
|
/**
|
|
64381
63916
|
* List all workflows in the tenant.
|
|
64382
63917
|
* @summary List workflows
|
|
64383
|
-
* @param {string} [
|
|
64384
|
-
* @param {string} [
|
|
63918
|
+
* @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*
|
|
63919
|
+
* @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**
|
|
64385
63920
|
* @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.
|
|
64386
63921
|
* @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.
|
|
64387
63922
|
* @param {*} [axiosOptions] Override http request option.
|
|
64388
63923
|
* @throws {RequiredError}
|
|
64389
63924
|
*/
|
|
64390
|
-
listWorkflows: async (
|
|
63925
|
+
listWorkflows: async (filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
64391
63926
|
const localVarPath = `/workflows`;
|
|
64392
63927
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
64393
63928
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -64408,12 +63943,12 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
64408
63943
|
// oauth required
|
|
64409
63944
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
64410
63945
|
|
|
64411
|
-
if (
|
|
64412
|
-
localVarQueryParameter['
|
|
63946
|
+
if (filters !== undefined) {
|
|
63947
|
+
localVarQueryParameter['filters'] = filters;
|
|
64413
63948
|
}
|
|
64414
63949
|
|
|
64415
|
-
if (
|
|
64416
|
-
localVarQueryParameter['
|
|
63950
|
+
if (sorters !== undefined) {
|
|
63951
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
64417
63952
|
}
|
|
64418
63953
|
|
|
64419
63954
|
if (limit !== undefined) {
|
|
@@ -64578,7 +64113,7 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
64578
64113
|
};
|
|
64579
64114
|
},
|
|
64580
64115
|
/**
|
|
64581
|
-
* :::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/
|
|
64116
|
+
* :::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.**
|
|
64582
64117
|
* @summary Test workflow by id
|
|
64583
64118
|
* @param {string} id Id of the workflow
|
|
64584
64119
|
* @param {TestWorkflowRequest} testWorkflowRequest
|
|
@@ -64816,15 +64351,15 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
|
|
|
64816
64351
|
/**
|
|
64817
64352
|
* List all workflows in the tenant.
|
|
64818
64353
|
* @summary List workflows
|
|
64819
|
-
* @param {string} [
|
|
64820
|
-
* @param {string} [
|
|
64354
|
+
* @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*
|
|
64355
|
+
* @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**
|
|
64821
64356
|
* @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.
|
|
64822
64357
|
* @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.
|
|
64823
64358
|
* @param {*} [axiosOptions] Override http request option.
|
|
64824
64359
|
* @throws {RequiredError}
|
|
64825
64360
|
*/
|
|
64826
|
-
async listWorkflows(
|
|
64827
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listWorkflows(
|
|
64361
|
+
async listWorkflows(filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workflow>>> {
|
|
64362
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listWorkflows(filters, sorters, limit, offset, axiosOptions);
|
|
64828
64363
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
64829
64364
|
const localVarOperationServerBasePath = operationServerMap['WorkflowsApi.listWorkflows']?.[localVarOperationServerIndex]?.url;
|
|
64830
64365
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -64872,7 +64407,7 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
|
|
|
64872
64407
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
64873
64408
|
},
|
|
64874
64409
|
/**
|
|
64875
|
-
* :::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/
|
|
64410
|
+
* :::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.**
|
|
64876
64411
|
* @summary Test workflow by id
|
|
64877
64412
|
* @param {string} id Id of the workflow
|
|
64878
64413
|
* @param {TestWorkflowRequest} testWorkflowRequest
|
|
@@ -65032,7 +64567,7 @@ export const WorkflowsApiFactory = function (configuration?: Configuration, base
|
|
|
65032
64567
|
* @throws {RequiredError}
|
|
65033
64568
|
*/
|
|
65034
64569
|
listWorkflows(requestParameters: WorkflowsApiListWorkflowsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Workflow>> {
|
|
65035
|
-
return localVarFp.listWorkflows(requestParameters.
|
|
64570
|
+
return localVarFp.listWorkflows(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
65036
64571
|
},
|
|
65037
64572
|
/**
|
|
65038
64573
|
* Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
|
|
@@ -65065,7 +64600,7 @@ export const WorkflowsApiFactory = function (configuration?: Configuration, base
|
|
|
65065
64600
|
return localVarFp.testExternalExecuteWorkflow(requestParameters.id, requestParameters.testExternalExecuteWorkflowRequest, axiosOptions).then((request) => request(axios, basePath));
|
|
65066
64601
|
},
|
|
65067
64602
|
/**
|
|
65068
|
-
* :::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/
|
|
64603
|
+
* :::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.**
|
|
65069
64604
|
* @summary Test workflow by id
|
|
65070
64605
|
* @param {WorkflowsApiTestWorkflowRequest} requestParameters Request parameters.
|
|
65071
64606
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -65322,18 +64857,18 @@ export interface WorkflowsApiListWorkflowLibraryTriggersRequest {
|
|
|
65322
64857
|
*/
|
|
65323
64858
|
export interface WorkflowsApiListWorkflowsRequest {
|
|
65324
64859
|
/**
|
|
65325
|
-
*
|
|
64860
|
+
* 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*
|
|
65326
64861
|
* @type {string}
|
|
65327
64862
|
* @memberof WorkflowsApiListWorkflows
|
|
65328
64863
|
*/
|
|
65329
|
-
readonly
|
|
64864
|
+
readonly filters?: string
|
|
65330
64865
|
|
|
65331
64866
|
/**
|
|
65332
|
-
*
|
|
64867
|
+
* 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**
|
|
65333
64868
|
* @type {string}
|
|
65334
64869
|
* @memberof WorkflowsApiListWorkflows
|
|
65335
64870
|
*/
|
|
65336
|
-
readonly
|
|
64871
|
+
readonly sorters?: string
|
|
65337
64872
|
|
|
65338
64873
|
/**
|
|
65339
64874
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -65605,7 +65140,7 @@ export class WorkflowsApi extends BaseAPI {
|
|
|
65605
65140
|
* @memberof WorkflowsApi
|
|
65606
65141
|
*/
|
|
65607
65142
|
public listWorkflows(requestParameters: WorkflowsApiListWorkflowsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
65608
|
-
return WorkflowsApiFp(this.configuration).listWorkflows(requestParameters.
|
|
65143
|
+
return WorkflowsApiFp(this.configuration).listWorkflows(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
65609
65144
|
}
|
|
65610
65145
|
|
|
65611
65146
|
/**
|
|
@@ -65645,7 +65180,7 @@ export class WorkflowsApi extends BaseAPI {
|
|
|
65645
65180
|
}
|
|
65646
65181
|
|
|
65647
65182
|
/**
|
|
65648
|
-
* :::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/
|
|
65183
|
+
* :::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.**
|
|
65649
65184
|
* @summary Test workflow by id
|
|
65650
65185
|
* @param {WorkflowsApiTestWorkflowRequest} requestParameters Request parameters.
|
|
65651
65186
|
* @param {*} [axiosOptions] Override http request option.
|