sailpoint-api-client 1.6.9 → 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 +256 -546
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +240 -388
- package/dist/beta/api.js +96 -412
- 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/v2024/api.d.ts +123 -361
- package/dist/v2024/api.js +93 -410
- 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 +1640 -409
- package/dist/v2025/api.js +2842 -1165
- 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 +77 -361
- package/dist/v3/api.js +59 -379
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/dist/v3/common.js.map +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +134 -517
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +2813 -767
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +85 -514
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/beta/api.ts
CHANGED
|
@@ -973,13 +973,13 @@ export interface AccessItemRoleResponseBeta {
|
|
|
973
973
|
*/
|
|
974
974
|
export interface AccessProfileApprovalSchemeBeta {
|
|
975
975
|
/**
|
|
976
|
-
* Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
|
|
976
|
+
* Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
|
|
977
977
|
* @type {string}
|
|
978
978
|
* @memberof AccessProfileApprovalSchemeBeta
|
|
979
979
|
*/
|
|
980
980
|
'approverType'?: AccessProfileApprovalSchemeBetaApproverTypeBeta;
|
|
981
981
|
/**
|
|
982
|
-
*
|
|
982
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
983
983
|
* @type {string}
|
|
984
984
|
* @memberof AccessProfileApprovalSchemeBeta
|
|
985
985
|
*/
|
|
@@ -991,7 +991,8 @@ export const AccessProfileApprovalSchemeBetaApproverTypeBeta = {
|
|
|
991
991
|
Owner: 'OWNER',
|
|
992
992
|
SourceOwner: 'SOURCE_OWNER',
|
|
993
993
|
Manager: 'MANAGER',
|
|
994
|
-
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
994
|
+
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
995
|
+
Workflow: 'WORKFLOW'
|
|
995
996
|
} as const;
|
|
996
997
|
|
|
997
998
|
export type AccessProfileApprovalSchemeBetaApproverTypeBeta = typeof AccessProfileApprovalSchemeBetaApproverTypeBeta[keyof typeof AccessProfileApprovalSchemeBetaApproverTypeBeta];
|
|
@@ -2415,23 +2416,35 @@ export type AccessTypeBeta = typeof AccessTypeBeta[keyof typeof AccessTypeBeta];
|
|
|
2415
2416
|
|
|
2416
2417
|
|
|
2417
2418
|
/**
|
|
2418
|
-
*
|
|
2419
|
+
* Object for specifying Actions to be performed on a specified list of sources\' account.
|
|
2419
2420
|
* @export
|
|
2420
2421
|
* @interface AccountActionBeta
|
|
2421
2422
|
*/
|
|
2422
2423
|
export interface AccountActionBeta {
|
|
2423
2424
|
/**
|
|
2424
|
-
* Describes if action will be
|
|
2425
|
+
* Describes if action will be enable, disable or delete.
|
|
2425
2426
|
* @type {string}
|
|
2426
2427
|
* @memberof AccountActionBeta
|
|
2427
2428
|
*/
|
|
2428
2429
|
'action'?: AccountActionBetaActionBeta;
|
|
2429
2430
|
/**
|
|
2430
|
-
*
|
|
2431
|
-
* @type {
|
|
2431
|
+
* A unique list of specific source IDs to apply the action to. The sources must have the ENABLE feature or flat file source. Required if allSources is not true. Must not be provided if allSources is true. Cannot be used together with excludeSourceIds See \"/sources\" endpoint for source features.
|
|
2432
|
+
* @type {Set<string>}
|
|
2432
2433
|
* @memberof AccountActionBeta
|
|
2433
2434
|
*/
|
|
2434
|
-
'sourceIds'?:
|
|
2435
|
+
'sourceIds'?: Set<string> | null;
|
|
2436
|
+
/**
|
|
2437
|
+
* A list of source IDs to exclude from the action. Cannot be used together with sourceIds.
|
|
2438
|
+
* @type {Set<string>}
|
|
2439
|
+
* @memberof AccountActionBeta
|
|
2440
|
+
*/
|
|
2441
|
+
'excludeSourceIds'?: Set<string> | null;
|
|
2442
|
+
/**
|
|
2443
|
+
* If true, the action applies to all available sources. If true, sourceIds must not be provided. If false or not set, sourceIds is required.
|
|
2444
|
+
* @type {boolean}
|
|
2445
|
+
* @memberof AccountActionBeta
|
|
2446
|
+
*/
|
|
2447
|
+
'allSources'?: boolean;
|
|
2435
2448
|
}
|
|
2436
2449
|
|
|
2437
2450
|
export const AccountActionBetaActionBeta = {
|
|
@@ -4296,13 +4309,13 @@ export type ApprovalSchemeBeta = typeof ApprovalSchemeBeta[keyof typeof Approval
|
|
|
4296
4309
|
*/
|
|
4297
4310
|
export interface ApprovalSchemeForRoleBeta {
|
|
4298
4311
|
/**
|
|
4299
|
-
* Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
|
|
4312
|
+
* Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
|
|
4300
4313
|
* @type {string}
|
|
4301
4314
|
* @memberof ApprovalSchemeForRoleBeta
|
|
4302
4315
|
*/
|
|
4303
4316
|
'approverType'?: ApprovalSchemeForRoleBetaApproverTypeBeta;
|
|
4304
4317
|
/**
|
|
4305
|
-
* Id of the specific approver, used
|
|
4318
|
+
* Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
|
|
4306
4319
|
* @type {string}
|
|
4307
4320
|
* @memberof ApprovalSchemeForRoleBeta
|
|
4308
4321
|
*/
|
|
@@ -4312,7 +4325,8 @@ export interface ApprovalSchemeForRoleBeta {
|
|
|
4312
4325
|
export const ApprovalSchemeForRoleBetaApproverTypeBeta = {
|
|
4313
4326
|
Owner: 'OWNER',
|
|
4314
4327
|
Manager: 'MANAGER',
|
|
4315
|
-
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
4328
|
+
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
4329
|
+
Workflow: 'WORKFLOW'
|
|
4316
4330
|
} as const;
|
|
4317
4331
|
|
|
4318
4332
|
export type ApprovalSchemeForRoleBetaApproverTypeBeta = typeof ApprovalSchemeForRoleBetaApproverTypeBeta[keyof typeof ApprovalSchemeForRoleBetaApproverTypeBeta];
|
|
@@ -4744,6 +4758,12 @@ export interface AttributeDefinitionBeta {
|
|
|
4744
4758
|
* @memberof AttributeDefinitionBeta
|
|
4745
4759
|
*/
|
|
4746
4760
|
'name'?: string;
|
|
4761
|
+
/**
|
|
4762
|
+
* Attribute name in the native system.
|
|
4763
|
+
* @type {string}
|
|
4764
|
+
* @memberof AttributeDefinitionBeta
|
|
4765
|
+
*/
|
|
4766
|
+
'nativeName'?: string | null;
|
|
4747
4767
|
/**
|
|
4748
4768
|
*
|
|
4749
4769
|
* @type {AttributeDefinitionTypeBeta}
|
|
@@ -5143,6 +5163,31 @@ export interface BaseReferenceDtoBeta {
|
|
|
5143
5163
|
}
|
|
5144
5164
|
|
|
5145
5165
|
|
|
5166
|
+
/**
|
|
5167
|
+
*
|
|
5168
|
+
* @export
|
|
5169
|
+
* @interface BaseRoleReferenceDtoBeta
|
|
5170
|
+
*/
|
|
5171
|
+
export interface BaseRoleReferenceDtoBeta {
|
|
5172
|
+
/**
|
|
5173
|
+
* DTO type
|
|
5174
|
+
* @type {string}
|
|
5175
|
+
* @memberof BaseRoleReferenceDtoBeta
|
|
5176
|
+
*/
|
|
5177
|
+
'type'?: string;
|
|
5178
|
+
/**
|
|
5179
|
+
* ID of the object to which this reference applies
|
|
5180
|
+
* @type {string}
|
|
5181
|
+
* @memberof BaseRoleReferenceDtoBeta
|
|
5182
|
+
*/
|
|
5183
|
+
'id'?: string;
|
|
5184
|
+
/**
|
|
5185
|
+
* Human-readable display name of the object to which this reference applies
|
|
5186
|
+
* @type {string}
|
|
5187
|
+
* @memberof BaseRoleReferenceDtoBeta
|
|
5188
|
+
*/
|
|
5189
|
+
'name'?: string;
|
|
5190
|
+
}
|
|
5146
5191
|
/**
|
|
5147
5192
|
* Config required if BASIC_AUTH is used.
|
|
5148
5193
|
* @export
|
|
@@ -7324,6 +7369,12 @@ export interface CompletedApprovalBeta {
|
|
|
7324
7369
|
* @memberof CompletedApprovalBeta
|
|
7325
7370
|
*/
|
|
7326
7371
|
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
7372
|
+
/**
|
|
7373
|
+
* The privilege level of the requested access item, if applicable.
|
|
7374
|
+
* @type {string}
|
|
7375
|
+
* @memberof CompletedApprovalBeta
|
|
7376
|
+
*/
|
|
7377
|
+
'privilegeLevel'?: string | null;
|
|
7327
7378
|
}
|
|
7328
7379
|
|
|
7329
7380
|
|
|
@@ -9199,19 +9250,6 @@ export interface DeleteNonEmployeeRecordInBulkRequestBeta {
|
|
|
9199
9250
|
*/
|
|
9200
9251
|
'ids': Array<string>;
|
|
9201
9252
|
}
|
|
9202
|
-
/**
|
|
9203
|
-
*
|
|
9204
|
-
* @export
|
|
9205
|
-
* @interface DeleteVendorConnectorMapping200ResponseBeta
|
|
9206
|
-
*/
|
|
9207
|
-
export interface DeleteVendorConnectorMapping200ResponseBeta {
|
|
9208
|
-
/**
|
|
9209
|
-
* The number of vendor connector mappings successfully deleted.
|
|
9210
|
-
* @type {number}
|
|
9211
|
-
* @memberof DeleteVendorConnectorMapping200ResponseBeta
|
|
9212
|
-
*/
|
|
9213
|
-
'count'?: number;
|
|
9214
|
-
}
|
|
9215
9253
|
/**
|
|
9216
9254
|
*
|
|
9217
9255
|
* @export
|
|
@@ -9538,13 +9576,13 @@ export interface EntitlementAccessRequestConfigBeta {
|
|
|
9538
9576
|
*/
|
|
9539
9577
|
export interface EntitlementApprovalSchemeBeta {
|
|
9540
9578
|
/**
|
|
9541
|
-
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
|
|
9579
|
+
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field, Workflows are exclusive to other types of approvals and License required.
|
|
9542
9580
|
* @type {string}
|
|
9543
9581
|
* @memberof EntitlementApprovalSchemeBeta
|
|
9544
9582
|
*/
|
|
9545
9583
|
'approverType'?: EntitlementApprovalSchemeBetaApproverTypeBeta;
|
|
9546
9584
|
/**
|
|
9547
|
-
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
|
|
9585
|
+
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW
|
|
9548
9586
|
* @type {string}
|
|
9549
9587
|
* @memberof EntitlementApprovalSchemeBeta
|
|
9550
9588
|
*/
|
|
@@ -9555,7 +9593,8 @@ export const EntitlementApprovalSchemeBetaApproverTypeBeta = {
|
|
|
9555
9593
|
EntitlementOwner: 'ENTITLEMENT_OWNER',
|
|
9556
9594
|
SourceOwner: 'SOURCE_OWNER',
|
|
9557
9595
|
Manager: 'MANAGER',
|
|
9558
|
-
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
9596
|
+
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
9597
|
+
Workflow: 'WORKFLOW'
|
|
9559
9598
|
} as const;
|
|
9560
9599
|
|
|
9561
9600
|
export type EntitlementApprovalSchemeBetaApproverTypeBeta = typeof EntitlementApprovalSchemeBetaApproverTypeBeta[keyof typeof EntitlementApprovalSchemeBetaApproverTypeBeta];
|
|
@@ -10624,11 +10663,11 @@ export interface FieldDetailsDtoBeta {
|
|
|
10624
10663
|
*/
|
|
10625
10664
|
'isRequired'?: boolean;
|
|
10626
10665
|
/**
|
|
10627
|
-
* The type of the attribute.
|
|
10666
|
+
* The type of the attribute. string: For text-based data. int: For whole numbers. long: For larger whole numbers. date: For date and time values. boolean: For true/false values. secret: For sensitive data like passwords, which will be masked and encrypted.
|
|
10628
10667
|
* @type {string}
|
|
10629
10668
|
* @memberof FieldDetailsDtoBeta
|
|
10630
10669
|
*/
|
|
10631
|
-
'type'?:
|
|
10670
|
+
'type'?: FieldDetailsDtoBetaTypeBeta;
|
|
10632
10671
|
/**
|
|
10633
10672
|
* Flag indicating whether or not the attribute is multi-valued.
|
|
10634
10673
|
* @type {boolean}
|
|
@@ -10636,6 +10675,18 @@ export interface FieldDetailsDtoBeta {
|
|
|
10636
10675
|
*/
|
|
10637
10676
|
'isMultiValued'?: boolean;
|
|
10638
10677
|
}
|
|
10678
|
+
|
|
10679
|
+
export const FieldDetailsDtoBetaTypeBeta = {
|
|
10680
|
+
String: 'string',
|
|
10681
|
+
Int: 'int',
|
|
10682
|
+
Long: 'long',
|
|
10683
|
+
Date: 'date',
|
|
10684
|
+
Boolean: 'boolean',
|
|
10685
|
+
Secret: 'secret'
|
|
10686
|
+
} as const;
|
|
10687
|
+
|
|
10688
|
+
export type FieldDetailsDtoBetaTypeBeta = typeof FieldDetailsDtoBetaTypeBeta[keyof typeof FieldDetailsDtoBetaTypeBeta];
|
|
10689
|
+
|
|
10639
10690
|
/**
|
|
10640
10691
|
*
|
|
10641
10692
|
* @export
|
|
@@ -12650,16 +12701,22 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12650
12701
|
'id'?: string;
|
|
12651
12702
|
/**
|
|
12652
12703
|
*
|
|
12653
|
-
* @type {
|
|
12704
|
+
* @type {BaseRoleReferenceDtoBeta}
|
|
12654
12705
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12655
12706
|
*/
|
|
12656
|
-
'role'?:
|
|
12707
|
+
'role'?: BaseRoleReferenceDtoBeta;
|
|
12708
|
+
/**
|
|
12709
|
+
* Date that the assignment was added
|
|
12710
|
+
* @type {string}
|
|
12711
|
+
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12712
|
+
*/
|
|
12713
|
+
'addedDate'?: string;
|
|
12657
12714
|
/**
|
|
12658
12715
|
* Comments added by the user when the assignment was made
|
|
12659
12716
|
* @type {string}
|
|
12660
12717
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12661
12718
|
*/
|
|
12662
|
-
'comments'?: string;
|
|
12719
|
+
'comments'?: string | null;
|
|
12663
12720
|
/**
|
|
12664
12721
|
* Source describing how this assignment was made
|
|
12665
12722
|
* @type {string}
|
|
@@ -12668,10 +12725,10 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12668
12725
|
'assignmentSource'?: string;
|
|
12669
12726
|
/**
|
|
12670
12727
|
*
|
|
12671
|
-
* @type {
|
|
12728
|
+
* @type {RoleAssignmentDtoAssignerBeta}
|
|
12672
12729
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12673
12730
|
*/
|
|
12674
|
-
'assigner'?:
|
|
12731
|
+
'assigner'?: RoleAssignmentDtoAssignerBeta;
|
|
12675
12732
|
/**
|
|
12676
12733
|
* Dimensions assigned related to this role
|
|
12677
12734
|
* @type {Array<BaseReferenceDto1Beta>}
|
|
@@ -12680,10 +12737,10 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12680
12737
|
'assignedDimensions'?: Array<BaseReferenceDto1Beta>;
|
|
12681
12738
|
/**
|
|
12682
12739
|
*
|
|
12683
|
-
* @type {
|
|
12740
|
+
* @type {RoleAssignmentDtoAssignmentContextBeta}
|
|
12684
12741
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12685
12742
|
*/
|
|
12686
|
-
'assignmentContext'?:
|
|
12743
|
+
'assignmentContext'?: RoleAssignmentDtoAssignmentContextBeta;
|
|
12687
12744
|
/**
|
|
12688
12745
|
*
|
|
12689
12746
|
* @type {Array<RoleTargetDtoBeta>}
|
|
@@ -12695,7 +12752,7 @@ export interface GetRoleAssignments200ResponseInnerBeta {
|
|
|
12695
12752
|
* @type {string}
|
|
12696
12753
|
* @memberof GetRoleAssignments200ResponseInnerBeta
|
|
12697
12754
|
*/
|
|
12698
|
-
'removeDate'?: string;
|
|
12755
|
+
'removeDate'?: string | null;
|
|
12699
12756
|
}
|
|
12700
12757
|
/**
|
|
12701
12758
|
* OAuth2 Grant Type
|
|
@@ -18064,7 +18121,8 @@ export const MultiHostSourcesBetaFeaturesBeta = {
|
|
|
18064
18121
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
18065
18122
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
18066
18123
|
UsesUuid: 'USES_UUID',
|
|
18067
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
18124
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
18125
|
+
Delete: 'DELETE'
|
|
18068
18126
|
} as const;
|
|
18069
18127
|
|
|
18070
18128
|
export type MultiHostSourcesBetaFeaturesBeta = typeof MultiHostSourcesBetaFeaturesBeta[keyof typeof MultiHostSourcesBetaFeaturesBeta];
|
|
@@ -20853,6 +20911,12 @@ export interface PendingApprovalBeta {
|
|
|
20853
20911
|
* @memberof PendingApprovalBeta
|
|
20854
20912
|
*/
|
|
20855
20913
|
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
20914
|
+
/**
|
|
20915
|
+
* The privilege level of the requested access item, if applicable.
|
|
20916
|
+
* @type {string}
|
|
20917
|
+
* @memberof PendingApprovalBeta
|
|
20918
|
+
*/
|
|
20919
|
+
'privilegeLevel'?: string | null;
|
|
20856
20920
|
}
|
|
20857
20921
|
|
|
20858
20922
|
|
|
@@ -22896,6 +22960,12 @@ export interface RequestedItemStatusBeta {
|
|
|
22896
22960
|
* @memberof RequestedItemStatusBeta
|
|
22897
22961
|
*/
|
|
22898
22962
|
'requestedAccounts'?: Array<RequestedAccountRefBeta> | null;
|
|
22963
|
+
/**
|
|
22964
|
+
* The privilege level of the requested access item, if applicable.
|
|
22965
|
+
* @type {string}
|
|
22966
|
+
* @memberof RequestedItemStatusBeta
|
|
22967
|
+
*/
|
|
22968
|
+
'privilegeLevel'?: string | null;
|
|
22899
22969
|
}
|
|
22900
22970
|
|
|
22901
22971
|
export const RequestedItemStatusBetaTypeBeta = {
|
|
@@ -23381,6 +23451,64 @@ export interface RightPadBeta {
|
|
|
23381
23451
|
*/
|
|
23382
23452
|
'input'?: { [key: string]: any; };
|
|
23383
23453
|
}
|
|
23454
|
+
/**
|
|
23455
|
+
* The identity that performed the assignment. This could be blank or system
|
|
23456
|
+
* @export
|
|
23457
|
+
* @interface RoleAssignmentDtoAssignerBeta
|
|
23458
|
+
*/
|
|
23459
|
+
export interface RoleAssignmentDtoAssignerBeta {
|
|
23460
|
+
/**
|
|
23461
|
+
* Object type
|
|
23462
|
+
* @type {string}
|
|
23463
|
+
* @memberof RoleAssignmentDtoAssignerBeta
|
|
23464
|
+
*/
|
|
23465
|
+
'type'?: RoleAssignmentDtoAssignerBetaTypeBeta;
|
|
23466
|
+
/**
|
|
23467
|
+
* ID of the object to which this reference applies
|
|
23468
|
+
* @type {string}
|
|
23469
|
+
* @memberof RoleAssignmentDtoAssignerBeta
|
|
23470
|
+
*/
|
|
23471
|
+
'id'?: string;
|
|
23472
|
+
/**
|
|
23473
|
+
* Human-readable display name of the object to which this reference applies
|
|
23474
|
+
* @type {string}
|
|
23475
|
+
* @memberof RoleAssignmentDtoAssignerBeta
|
|
23476
|
+
*/
|
|
23477
|
+
'name'?: string | null;
|
|
23478
|
+
}
|
|
23479
|
+
|
|
23480
|
+
export const RoleAssignmentDtoAssignerBetaTypeBeta = {
|
|
23481
|
+
Identity: 'IDENTITY',
|
|
23482
|
+
Unknown: 'UNKNOWN'
|
|
23483
|
+
} as const;
|
|
23484
|
+
|
|
23485
|
+
export type RoleAssignmentDtoAssignerBetaTypeBeta = typeof RoleAssignmentDtoAssignerBetaTypeBeta[keyof typeof RoleAssignmentDtoAssignerBetaTypeBeta];
|
|
23486
|
+
|
|
23487
|
+
/**
|
|
23488
|
+
*
|
|
23489
|
+
* @export
|
|
23490
|
+
* @interface RoleAssignmentDtoAssignmentContextBeta
|
|
23491
|
+
*/
|
|
23492
|
+
export interface RoleAssignmentDtoAssignmentContextBeta {
|
|
23493
|
+
/**
|
|
23494
|
+
*
|
|
23495
|
+
* @type {AccessRequestContextBeta}
|
|
23496
|
+
* @memberof RoleAssignmentDtoAssignmentContextBeta
|
|
23497
|
+
*/
|
|
23498
|
+
'requested'?: AccessRequestContextBeta;
|
|
23499
|
+
/**
|
|
23500
|
+
*
|
|
23501
|
+
* @type {Array<RoleMatchDtoBeta>}
|
|
23502
|
+
* @memberof RoleAssignmentDtoAssignmentContextBeta
|
|
23503
|
+
*/
|
|
23504
|
+
'matched'?: Array<RoleMatchDtoBeta>;
|
|
23505
|
+
/**
|
|
23506
|
+
* Date that the assignment will was evaluated
|
|
23507
|
+
* @type {string}
|
|
23508
|
+
* @memberof RoleAssignmentDtoAssignmentContextBeta
|
|
23509
|
+
*/
|
|
23510
|
+
'computedDate'?: string;
|
|
23511
|
+
}
|
|
23384
23512
|
/**
|
|
23385
23513
|
*
|
|
23386
23514
|
* @export
|
|
@@ -23395,16 +23523,16 @@ export interface RoleAssignmentDtoBeta {
|
|
|
23395
23523
|
'id'?: string;
|
|
23396
23524
|
/**
|
|
23397
23525
|
*
|
|
23398
|
-
* @type {
|
|
23526
|
+
* @type {BaseRoleReferenceDtoBeta}
|
|
23399
23527
|
* @memberof RoleAssignmentDtoBeta
|
|
23400
23528
|
*/
|
|
23401
|
-
'role'?:
|
|
23529
|
+
'role'?: BaseRoleReferenceDtoBeta;
|
|
23402
23530
|
/**
|
|
23403
23531
|
* Comments added by the user when the assignment was made
|
|
23404
23532
|
* @type {string}
|
|
23405
23533
|
* @memberof RoleAssignmentDtoBeta
|
|
23406
23534
|
*/
|
|
23407
|
-
'comments'?: string;
|
|
23535
|
+
'comments'?: string | null;
|
|
23408
23536
|
/**
|
|
23409
23537
|
* Source describing how this assignment was made
|
|
23410
23538
|
* @type {string}
|
|
@@ -23413,10 +23541,10 @@ export interface RoleAssignmentDtoBeta {
|
|
|
23413
23541
|
'assignmentSource'?: string;
|
|
23414
23542
|
/**
|
|
23415
23543
|
*
|
|
23416
|
-
* @type {
|
|
23544
|
+
* @type {RoleAssignmentDtoAssignerBeta}
|
|
23417
23545
|
* @memberof RoleAssignmentDtoBeta
|
|
23418
23546
|
*/
|
|
23419
|
-
'assigner'?:
|
|
23547
|
+
'assigner'?: RoleAssignmentDtoAssignerBeta;
|
|
23420
23548
|
/**
|
|
23421
23549
|
* Dimensions assigned related to this role
|
|
23422
23550
|
* @type {Array<BaseReferenceDto1Beta>}
|
|
@@ -23425,10 +23553,10 @@ export interface RoleAssignmentDtoBeta {
|
|
|
23425
23553
|
'assignedDimensions'?: Array<BaseReferenceDto1Beta>;
|
|
23426
23554
|
/**
|
|
23427
23555
|
*
|
|
23428
|
-
* @type {
|
|
23556
|
+
* @type {RoleAssignmentDtoAssignmentContextBeta}
|
|
23429
23557
|
* @memberof RoleAssignmentDtoBeta
|
|
23430
23558
|
*/
|
|
23431
|
-
'assignmentContext'?:
|
|
23559
|
+
'assignmentContext'?: RoleAssignmentDtoAssignmentContextBeta;
|
|
23432
23560
|
/**
|
|
23433
23561
|
*
|
|
23434
23562
|
* @type {Array<RoleTargetDtoBeta>}
|
|
@@ -23440,7 +23568,13 @@ export interface RoleAssignmentDtoBeta {
|
|
|
23440
23568
|
* @type {string}
|
|
23441
23569
|
* @memberof RoleAssignmentDtoBeta
|
|
23442
23570
|
*/
|
|
23443
|
-
'removeDate'?: string;
|
|
23571
|
+
'removeDate'?: string | null;
|
|
23572
|
+
/**
|
|
23573
|
+
* Date that the assignment was added
|
|
23574
|
+
* @type {string}
|
|
23575
|
+
* @memberof RoleAssignmentDtoBeta
|
|
23576
|
+
*/
|
|
23577
|
+
'addedDate'?: string;
|
|
23444
23578
|
}
|
|
23445
23579
|
/**
|
|
23446
23580
|
*
|
|
@@ -23460,6 +23594,12 @@ export interface RoleAssignmentRefBeta {
|
|
|
23460
23594
|
* @memberof RoleAssignmentRefBeta
|
|
23461
23595
|
*/
|
|
23462
23596
|
'role'?: BaseReferenceDto1Beta;
|
|
23597
|
+
/**
|
|
23598
|
+
* Date that the assignment was added
|
|
23599
|
+
* @type {string}
|
|
23600
|
+
* @memberof RoleAssignmentRefBeta
|
|
23601
|
+
*/
|
|
23602
|
+
'addedDate'?: string;
|
|
23463
23603
|
}
|
|
23464
23604
|
/**
|
|
23465
23605
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -25858,7 +25998,8 @@ export const SchemaBetaFeaturesBeta = {
|
|
|
25858
25998
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
25859
25999
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
25860
26000
|
UsesUuid: 'USES_UUID',
|
|
25861
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
26001
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
26002
|
+
Delete: 'DELETE'
|
|
25862
26003
|
} as const;
|
|
25863
26004
|
|
|
25864
26005
|
export type SchemaBetaFeaturesBeta = typeof SchemaBetaFeaturesBeta[keyof typeof SchemaBetaFeaturesBeta];
|
|
@@ -28564,7 +28705,8 @@ export const SourceBetaFeaturesBeta = {
|
|
|
28564
28705
|
ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
|
|
28565
28706
|
ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
|
|
28566
28707
|
UsesUuid: 'USES_UUID',
|
|
28567
|
-
ApplicationDiscovery: 'APPLICATION_DISCOVERY'
|
|
28708
|
+
ApplicationDiscovery: 'APPLICATION_DISCOVERY',
|
|
28709
|
+
Delete: 'DELETE'
|
|
28568
28710
|
} as const;
|
|
28569
28711
|
|
|
28570
28712
|
export type SourceBetaFeaturesBeta = typeof SourceBetaFeaturesBeta[keyof typeof SourceBetaFeaturesBeta];
|
|
@@ -32254,143 +32396,6 @@ export interface ValueBeta {
|
|
|
32254
32396
|
*/
|
|
32255
32397
|
'value'?: string;
|
|
32256
32398
|
}
|
|
32257
|
-
/**
|
|
32258
|
-
*
|
|
32259
|
-
* @export
|
|
32260
|
-
* @interface VendorConnectorMappingBeta
|
|
32261
|
-
*/
|
|
32262
|
-
export interface VendorConnectorMappingBeta {
|
|
32263
|
-
/**
|
|
32264
|
-
* The unique identifier for the vendor-connector mapping.
|
|
32265
|
-
* @type {string}
|
|
32266
|
-
* @memberof VendorConnectorMappingBeta
|
|
32267
|
-
*/
|
|
32268
|
-
'id'?: string;
|
|
32269
|
-
/**
|
|
32270
|
-
* The name of the vendor.
|
|
32271
|
-
* @type {string}
|
|
32272
|
-
* @memberof VendorConnectorMappingBeta
|
|
32273
|
-
*/
|
|
32274
|
-
'vendor'?: string;
|
|
32275
|
-
/**
|
|
32276
|
-
* The name of the connector.
|
|
32277
|
-
* @type {string}
|
|
32278
|
-
* @memberof VendorConnectorMappingBeta
|
|
32279
|
-
*/
|
|
32280
|
-
'connector'?: string;
|
|
32281
|
-
/**
|
|
32282
|
-
* The creation timestamp of the mapping.
|
|
32283
|
-
* @type {string}
|
|
32284
|
-
* @memberof VendorConnectorMappingBeta
|
|
32285
|
-
*/
|
|
32286
|
-
'createdAt'?: string;
|
|
32287
|
-
/**
|
|
32288
|
-
* The identifier of the user who created the mapping.
|
|
32289
|
-
* @type {string}
|
|
32290
|
-
* @memberof VendorConnectorMappingBeta
|
|
32291
|
-
*/
|
|
32292
|
-
'createdBy'?: string;
|
|
32293
|
-
/**
|
|
32294
|
-
*
|
|
32295
|
-
* @type {VendorConnectorMappingUpdatedAtBeta}
|
|
32296
|
-
* @memberof VendorConnectorMappingBeta
|
|
32297
|
-
*/
|
|
32298
|
-
'updatedAt'?: VendorConnectorMappingUpdatedAtBeta | null;
|
|
32299
|
-
/**
|
|
32300
|
-
*
|
|
32301
|
-
* @type {VendorConnectorMappingUpdatedByBeta}
|
|
32302
|
-
* @memberof VendorConnectorMappingBeta
|
|
32303
|
-
*/
|
|
32304
|
-
'updatedBy'?: VendorConnectorMappingUpdatedByBeta | null;
|
|
32305
|
-
/**
|
|
32306
|
-
*
|
|
32307
|
-
* @type {VendorConnectorMappingDeletedAtBeta}
|
|
32308
|
-
* @memberof VendorConnectorMappingBeta
|
|
32309
|
-
*/
|
|
32310
|
-
'deletedAt'?: VendorConnectorMappingDeletedAtBeta | null;
|
|
32311
|
-
/**
|
|
32312
|
-
*
|
|
32313
|
-
* @type {VendorConnectorMappingDeletedByBeta}
|
|
32314
|
-
* @memberof VendorConnectorMappingBeta
|
|
32315
|
-
*/
|
|
32316
|
-
'deletedBy'?: VendorConnectorMappingDeletedByBeta | null;
|
|
32317
|
-
}
|
|
32318
|
-
/**
|
|
32319
|
-
* An object representing the nullable timestamp of when the mapping was deleted.
|
|
32320
|
-
* @export
|
|
32321
|
-
* @interface VendorConnectorMappingDeletedAtBeta
|
|
32322
|
-
*/
|
|
32323
|
-
export interface VendorConnectorMappingDeletedAtBeta {
|
|
32324
|
-
/**
|
|
32325
|
-
* The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
|
|
32326
|
-
* @type {string}
|
|
32327
|
-
* @memberof VendorConnectorMappingDeletedAtBeta
|
|
32328
|
-
*/
|
|
32329
|
-
'Time'?: string;
|
|
32330
|
-
/**
|
|
32331
|
-
* A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
|
|
32332
|
-
* @type {boolean}
|
|
32333
|
-
* @memberof VendorConnectorMappingDeletedAtBeta
|
|
32334
|
-
*/
|
|
32335
|
-
'Valid'?: boolean;
|
|
32336
|
-
}
|
|
32337
|
-
/**
|
|
32338
|
-
* An object representing the nullable identifier of the user who deleted the mapping.
|
|
32339
|
-
* @export
|
|
32340
|
-
* @interface VendorConnectorMappingDeletedByBeta
|
|
32341
|
-
*/
|
|
32342
|
-
export interface VendorConnectorMappingDeletedByBeta {
|
|
32343
|
-
/**
|
|
32344
|
-
* The identifier of the user who deleted the mapping, if applicable.
|
|
32345
|
-
* @type {string}
|
|
32346
|
-
* @memberof VendorConnectorMappingDeletedByBeta
|
|
32347
|
-
*/
|
|
32348
|
-
'String'?: string;
|
|
32349
|
-
/**
|
|
32350
|
-
* A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
|
|
32351
|
-
* @type {boolean}
|
|
32352
|
-
* @memberof VendorConnectorMappingDeletedByBeta
|
|
32353
|
-
*/
|
|
32354
|
-
'Valid'?: boolean;
|
|
32355
|
-
}
|
|
32356
|
-
/**
|
|
32357
|
-
* An object representing the nullable timestamp of the last update.
|
|
32358
|
-
* @export
|
|
32359
|
-
* @interface VendorConnectorMappingUpdatedAtBeta
|
|
32360
|
-
*/
|
|
32361
|
-
export interface VendorConnectorMappingUpdatedAtBeta {
|
|
32362
|
-
/**
|
|
32363
|
-
* The timestamp when the mapping was last updated, represented in ISO 8601 format.
|
|
32364
|
-
* @type {string}
|
|
32365
|
-
* @memberof VendorConnectorMappingUpdatedAtBeta
|
|
32366
|
-
*/
|
|
32367
|
-
'Time'?: string;
|
|
32368
|
-
/**
|
|
32369
|
-
* A flag indicating if the \'Time\' field is set and valid.
|
|
32370
|
-
* @type {boolean}
|
|
32371
|
-
* @memberof VendorConnectorMappingUpdatedAtBeta
|
|
32372
|
-
*/
|
|
32373
|
-
'Valid'?: boolean;
|
|
32374
|
-
}
|
|
32375
|
-
/**
|
|
32376
|
-
* An object representing the nullable identifier of the user who last updated the mapping.
|
|
32377
|
-
* @export
|
|
32378
|
-
* @interface VendorConnectorMappingUpdatedByBeta
|
|
32379
|
-
*/
|
|
32380
|
-
export interface VendorConnectorMappingUpdatedByBeta {
|
|
32381
|
-
/**
|
|
32382
|
-
* The identifier of the user who last updated the mapping, if available.
|
|
32383
|
-
* @type {string}
|
|
32384
|
-
* @memberof VendorConnectorMappingUpdatedByBeta
|
|
32385
|
-
*/
|
|
32386
|
-
'String'?: string;
|
|
32387
|
-
/**
|
|
32388
|
-
* A flag indicating if the \'String\' field is set and valid.
|
|
32389
|
-
* @type {boolean}
|
|
32390
|
-
* @memberof VendorConnectorMappingUpdatedByBeta
|
|
32391
|
-
*/
|
|
32392
|
-
'Valid'?: boolean;
|
|
32393
|
-
}
|
|
32394
32399
|
/**
|
|
32395
32400
|
*
|
|
32396
32401
|
* @export
|
|
@@ -36279,7 +36284,7 @@ export const AccessRequestsBetaApiAxiosParamCreator = function (configuration?:
|
|
|
36279
36284
|
};
|
|
36280
36285
|
},
|
|
36281
36286
|
/**
|
|
36282
|
-
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/
|
|
36287
|
+
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
|
|
36283
36288
|
* @summary Close access request
|
|
36284
36289
|
* @param {CloseAccessRequestBeta} closeAccessRequestBeta
|
|
36285
36290
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -36560,7 +36565,7 @@ export const AccessRequestsBetaApiFp = function(configuration?: Configuration) {
|
|
|
36560
36565
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
36561
36566
|
},
|
|
36562
36567
|
/**
|
|
36563
|
-
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/
|
|
36568
|
+
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
|
|
36564
36569
|
* @summary Close access request
|
|
36565
36570
|
* @param {CloseAccessRequestBeta} closeAccessRequestBeta
|
|
36566
36571
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -36653,7 +36658,7 @@ export const AccessRequestsBetaApiFactory = function (configuration?: Configurat
|
|
|
36653
36658
|
return localVarFp.cancelAccessRequest(requestParameters.cancelAccessRequestBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
36654
36659
|
},
|
|
36655
36660
|
/**
|
|
36656
|
-
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/
|
|
36661
|
+
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
|
|
36657
36662
|
* @summary Close access request
|
|
36658
36663
|
* @param {AccessRequestsBetaApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
36659
36664
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -36857,7 +36862,7 @@ export class AccessRequestsBetaApi extends BaseAPI {
|
|
|
36857
36862
|
}
|
|
36858
36863
|
|
|
36859
36864
|
/**
|
|
36860
|
-
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/
|
|
36865
|
+
* This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
|
|
36861
36866
|
* @summary Close access request
|
|
36862
36867
|
* @param {AccessRequestsBetaApiCloseAccessRequestRequest} requestParameters Request parameters.
|
|
36863
36868
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42398,7 +42403,7 @@ export const CertificationCampaignsBetaApiAxiosParamCreator = function (configur
|
|
|
42398
42403
|
};
|
|
42399
42404
|
},
|
|
42400
42405
|
/**
|
|
42401
|
-
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/
|
|
42406
|
+
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
|
|
42402
42407
|
* @summary List campaign templates
|
|
42403
42408
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
42404
42409
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -43064,7 +43069,7 @@ export const CertificationCampaignsBetaApiFp = function(configuration?: Configur
|
|
|
43064
43069
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
43065
43070
|
},
|
|
43066
43071
|
/**
|
|
43067
|
-
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/
|
|
43072
|
+
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
|
|
43068
43073
|
* @summary List campaign templates
|
|
43069
43074
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
43070
43075
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -43355,7 +43360,7 @@ export const CertificationCampaignsBetaApiFactory = function (configuration?: Co
|
|
|
43355
43360
|
return localVarFp.getCampaignTemplateSchedule(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
43356
43361
|
},
|
|
43357
43362
|
/**
|
|
43358
|
-
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/
|
|
43363
|
+
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
|
|
43359
43364
|
* @summary List campaign templates
|
|
43360
43365
|
* @param {CertificationCampaignsBetaApiGetCampaignTemplatesRequest} requestParameters Request parameters.
|
|
43361
43366
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -44036,7 +44041,7 @@ export class CertificationCampaignsBetaApi extends BaseAPI {
|
|
|
44036
44041
|
}
|
|
44037
44042
|
|
|
44038
44043
|
/**
|
|
44039
|
-
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/
|
|
44044
|
+
* Use this API to get a list of all campaign templates. Scope can be reduced through standard V3 query params. Though this Beta endpoint has been deprecated, you can find its V3 equivalent [here](https://developer.sailpoint.com/docs/api/v2025/get-campaign-templates). The endpoint returns all campaign templates matching the query parameters. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.
|
|
44040
44045
|
* @summary List campaign templates
|
|
44041
44046
|
* @param {CertificationCampaignsBetaApiGetCampaignTemplatesRequest} requestParameters Request parameters.
|
|
44042
44047
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48512,7 +48517,7 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
|
|
|
48512
48517
|
/**
|
|
48513
48518
|
* This API returns a list of entitlements. This API can be used in one of the two following ways: either getting entitlements for a specific **account-id**, or getting via use of **filters** (those two options are exclusive). Any authenticated token can call this API.
|
|
48514
48519
|
* @summary Gets a list of entitlements.
|
|
48515
|
-
* @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/
|
|
48520
|
+
* @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
|
|
48516
48521
|
* @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\'s Identity.
|
|
48517
48522
|
* @param {string} [forSegmentIds] If present and not empty, additionally filters Access Profiles to those which are assigned to the Segment(s) with the specified IDs. Cannot be specified with the **account-id** or **segmented-for-identity** param(s).
|
|
48518
48523
|
* @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Entitlements. If **for-segment-ids** and **segmented-for-identity** are both absent or empty, specifying **include-unsegmented=false** results in an error.
|
|
@@ -48593,7 +48598,7 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
|
|
|
48593
48598
|
};
|
|
48594
48599
|
},
|
|
48595
48600
|
/**
|
|
48596
|
-
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description
|
|
48601
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
48597
48602
|
* @summary Patch an entitlement
|
|
48598
48603
|
* @param {string} id ID of the entitlement to patch
|
|
48599
48604
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -48729,7 +48734,7 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
|
|
|
48729
48734
|
};
|
|
48730
48735
|
},
|
|
48731
48736
|
/**
|
|
48732
|
-
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**`
|
|
48737
|
+
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
|
|
48733
48738
|
* @summary Bulk update an entitlement list
|
|
48734
48739
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
48735
48740
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48892,7 +48897,7 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
|
|
|
48892
48897
|
/**
|
|
48893
48898
|
* This API returns a list of entitlements. This API can be used in one of the two following ways: either getting entitlements for a specific **account-id**, or getting via use of **filters** (those two options are exclusive). Any authenticated token can call this API.
|
|
48894
48899
|
* @summary Gets a list of entitlements.
|
|
48895
|
-
* @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/
|
|
48900
|
+
* @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
|
|
48896
48901
|
* @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\'s Identity.
|
|
48897
48902
|
* @param {string} [forSegmentIds] If present and not empty, additionally filters Access Profiles to those which are assigned to the Segment(s) with the specified IDs. Cannot be specified with the **account-id** or **segmented-for-identity** param(s).
|
|
48898
48903
|
* @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Entitlements. If **for-segment-ids** and **segmented-for-identity** are both absent or empty, specifying **include-unsegmented=false** results in an error.
|
|
@@ -48911,7 +48916,7 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
|
|
|
48911
48916
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48912
48917
|
},
|
|
48913
48918
|
/**
|
|
48914
|
-
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description
|
|
48919
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
48915
48920
|
* @summary Patch an entitlement
|
|
48916
48921
|
* @param {string} id ID of the entitlement to patch
|
|
48917
48922
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -48952,7 +48957,7 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
|
|
|
48952
48957
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
48953
48958
|
},
|
|
48954
48959
|
/**
|
|
48955
|
-
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**`
|
|
48960
|
+
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
|
|
48956
48961
|
* @summary Bulk update an entitlement list
|
|
48957
48962
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
48958
48963
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49056,7 +49061,7 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
|
|
|
49056
49061
|
return localVarFp.listEntitlements(requestParameters.accountId, requestParameters.segmentedForIdentity, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.sorters, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
49057
49062
|
},
|
|
49058
49063
|
/**
|
|
49059
|
-
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description
|
|
49064
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
49060
49065
|
* @summary Patch an entitlement
|
|
49061
49066
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
49062
49067
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49086,7 +49091,7 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
|
|
|
49086
49091
|
return localVarFp.resetSourceEntitlements(requestParameters.sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
49087
49092
|
},
|
|
49088
49093
|
/**
|
|
49089
|
-
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**`
|
|
49094
|
+
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
|
|
49090
49095
|
* @summary Bulk update an entitlement list
|
|
49091
49096
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
49092
49097
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49308,7 +49313,7 @@ export interface EntitlementsBetaApiListEntitlementParentsRequest {
|
|
|
49308
49313
|
*/
|
|
49309
49314
|
export interface EntitlementsBetaApiListEntitlementsRequest {
|
|
49310
49315
|
/**
|
|
49311
|
-
* The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/
|
|
49316
|
+
* The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/docs/api/v2025/get-account-entitlements/) to get account entitlements.
|
|
49312
49317
|
* @type {string}
|
|
49313
49318
|
* @memberof EntitlementsBetaApiListEntitlements
|
|
49314
49319
|
*/
|
|
@@ -49546,7 +49551,7 @@ export class EntitlementsBetaApi extends BaseAPI {
|
|
|
49546
49551
|
}
|
|
49547
49552
|
|
|
49548
49553
|
/**
|
|
49549
|
-
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description
|
|
49554
|
+
* This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description** and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
49550
49555
|
* @summary Patch an entitlement
|
|
49551
49556
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
49552
49557
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49582,7 +49587,7 @@ export class EntitlementsBetaApi extends BaseAPI {
|
|
|
49582
49587
|
}
|
|
49583
49588
|
|
|
49584
49589
|
/**
|
|
49585
|
-
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**`
|
|
49590
|
+
* This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
|
|
49586
49591
|
* @summary Bulk update an entitlement list
|
|
49587
49592
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
49588
49593
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49950,7 +49955,7 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
|
|
|
49950
49955
|
* This API returns list of Governance Groups
|
|
49951
49956
|
* @summary List governance groups
|
|
49952
49957
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
49953
|
-
* @param {number} [limit]
|
|
49958
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
49954
49959
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=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.
|
|
49955
49960
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, sw, in* **memberships.identityId**: *eq, in*
|
|
49956
49961
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified, id, description**
|
|
@@ -50217,7 +50222,7 @@ export const GovernanceGroupsBetaApiFp = function(configuration?: Configuration)
|
|
|
50217
50222
|
* This API returns list of Governance Groups
|
|
50218
50223
|
* @summary List governance groups
|
|
50219
50224
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
50220
|
-
* @param {number} [limit]
|
|
50225
|
+
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
50221
50226
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=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.
|
|
50222
50227
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, sw, in* **memberships.identityId**: *eq, in*
|
|
50223
50228
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified, id, description**
|
|
@@ -50546,7 +50551,7 @@ export interface GovernanceGroupsBetaApiListWorkgroupsRequest {
|
|
|
50546
50551
|
readonly offset?: number
|
|
50547
50552
|
|
|
50548
50553
|
/**
|
|
50549
|
-
*
|
|
50554
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
50550
50555
|
* @type {number}
|
|
50551
50556
|
* @memberof GovernanceGroupsBetaApiListWorkgroups
|
|
50552
50557
|
*/
|
|
@@ -67381,7 +67386,7 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
67381
67386
|
};
|
|
67382
67387
|
},
|
|
67383
67388
|
/**
|
|
67384
|
-
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
67389
|
+
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
67385
67390
|
* @summary List schema attributes non-employee source
|
|
67386
67391
|
* @param {string} sourceId The Source id
|
|
67387
67392
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -68319,7 +68324,7 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
68319
68324
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
68320
68325
|
},
|
|
68321
68326
|
/**
|
|
68322
|
-
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
68327
|
+
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
68323
68328
|
* @summary List schema attributes non-employee source
|
|
68324
68329
|
* @param {string} sourceId The Source id
|
|
68325
68330
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -68742,7 +68747,7 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
68742
68747
|
return localVarFp.getNonEmployeeSource(requestParameters.sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
68743
68748
|
},
|
|
68744
68749
|
/**
|
|
68745
|
-
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
68750
|
+
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
68746
68751
|
* @summary List schema attributes non-employee source
|
|
68747
68752
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
68748
68753
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -69825,7 +69830,7 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
69825
69830
|
}
|
|
69826
69831
|
|
|
69827
69832
|
/**
|
|
69828
|
-
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
69833
|
+
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
69829
69834
|
* @summary List schema attributes non-employee source
|
|
69830
69835
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
69831
69836
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79661,7 +79666,7 @@ export class SODViolationsBetaApi extends BaseAPI {
|
|
|
79661
79666
|
export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
79662
79667
|
return {
|
|
79663
79668
|
/**
|
|
79664
|
-
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
79669
|
+
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
79665
79670
|
* @summary Initiates configuration objects export job
|
|
79666
79671
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
79667
79672
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79831,7 +79836,7 @@ export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Config
|
|
|
79831
79836
|
};
|
|
79832
79837
|
},
|
|
79833
79838
|
/**
|
|
79834
|
-
* This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
79839
|
+
* This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
79835
79840
|
* @summary Get import job status
|
|
79836
79841
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
79837
79842
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79873,7 +79878,7 @@ export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Config
|
|
|
79873
79878
|
};
|
|
79874
79879
|
},
|
|
79875
79880
|
/**
|
|
79876
|
-
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
79881
|
+
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
79877
79882
|
* @summary Initiates configuration objects import job
|
|
79878
79883
|
* @param {File} data JSON file containing the objects to be imported.
|
|
79879
79884
|
* @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any effect on the target tenant. If this parameter is \"true\", no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
|
|
@@ -79980,7 +79985,7 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
79980
79985
|
const localVarAxiosParamCreator = SPConfigBetaApiAxiosParamCreator(configuration)
|
|
79981
79986
|
return {
|
|
79982
79987
|
/**
|
|
79983
|
-
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
79988
|
+
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
79984
79989
|
* @summary Initiates configuration objects export job
|
|
79985
79990
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
79986
79991
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -80032,7 +80037,7 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
80032
80037
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
80033
80038
|
},
|
|
80034
80039
|
/**
|
|
80035
|
-
* This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
80040
|
+
* This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
80036
80041
|
* @summary Get import job status
|
|
80037
80042
|
* @param {string} id The ID of the import job whose status will be returned.
|
|
80038
80043
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -80045,7 +80050,7 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
80045
80050
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
80046
80051
|
},
|
|
80047
80052
|
/**
|
|
80048
|
-
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
80053
|
+
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
80049
80054
|
* @summary Initiates configuration objects import job
|
|
80050
80055
|
* @param {File} data JSON file containing the objects to be imported.
|
|
80051
80056
|
* @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any effect on the target tenant. If this parameter is \"true\", no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
|
|
@@ -80082,7 +80087,7 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
|
|
|
80082
80087
|
const localVarFp = SPConfigBetaApiFp(configuration)
|
|
80083
80088
|
return {
|
|
80084
80089
|
/**
|
|
80085
|
-
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
80090
|
+
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
80086
80091
|
* @summary Initiates configuration objects export job
|
|
80087
80092
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
80088
80093
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -80122,7 +80127,7 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
|
|
|
80122
80127
|
return localVarFp.getSpConfigImport(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
80123
80128
|
},
|
|
80124
80129
|
/**
|
|
80125
|
-
* This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
80130
|
+
* This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
80126
80131
|
* @summary Get import job status
|
|
80127
80132
|
* @param {SPConfigBetaApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
80128
80133
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -80132,7 +80137,7 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
|
|
|
80132
80137
|
return localVarFp.getSpConfigImportStatus(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
80133
80138
|
},
|
|
80134
80139
|
/**
|
|
80135
|
-
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
80140
|
+
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
80136
80141
|
* @summary Initiates configuration objects import job
|
|
80137
80142
|
* @param {SPConfigBetaApiImportSpConfigRequest} requestParameters Request parameters.
|
|
80138
80143
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -80259,7 +80264,7 @@ export interface SPConfigBetaApiImportSpConfigRequest {
|
|
|
80259
80264
|
*/
|
|
80260
80265
|
export class SPConfigBetaApi extends BaseAPI {
|
|
80261
80266
|
/**
|
|
80262
|
-
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
80267
|
+
* This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
80263
80268
|
* @summary Initiates configuration objects export job
|
|
80264
80269
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
80265
80270
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -80307,7 +80312,7 @@ export class SPConfigBetaApi extends BaseAPI {
|
|
|
80307
80312
|
}
|
|
80308
80313
|
|
|
80309
80314
|
/**
|
|
80310
|
-
* This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
80315
|
+
* This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
80311
80316
|
* @summary Get import job status
|
|
80312
80317
|
* @param {SPConfigBetaApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
|
|
80313
80318
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -80319,7 +80324,7 @@ export class SPConfigBetaApi extends BaseAPI {
|
|
|
80319
80324
|
}
|
|
80320
80325
|
|
|
80321
80326
|
/**
|
|
80322
|
-
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/
|
|
80327
|
+
* This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
|
|
80323
80328
|
* @summary Initiates configuration objects import job
|
|
80324
80329
|
* @param {SPConfigBetaApiImportSpConfigRequest} requestParameters Request parameters.
|
|
80325
80330
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82719,7 +82724,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
82719
82724
|
};
|
|
82720
82725
|
},
|
|
82721
82726
|
/**
|
|
82722
|
-
* 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/
|
|
82727
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
82723
82728
|
* @summary Create provisioning policy
|
|
82724
82729
|
* @param {string} sourceId The Source id
|
|
82725
82730
|
* @param {ProvisioningPolicyDtoBeta} provisioningPolicyDtoBeta
|
|
@@ -84159,7 +84164,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
84159
84164
|
};
|
|
84160
84165
|
},
|
|
84161
84166
|
/**
|
|
84162
|
-
* 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/
|
|
84167
|
+
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
84163
84168
|
* @summary Update provisioning policy by usagetype
|
|
84164
84169
|
* @param {string} sourceId The Source ID.
|
|
84165
84170
|
* @param {UsageTypeBeta} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'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.
|
|
@@ -84541,7 +84546,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
84541
84546
|
};
|
|
84542
84547
|
},
|
|
84543
84548
|
/**
|
|
84544
|
-
* 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/
|
|
84549
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
84545
84550
|
* @summary Partial update of provisioning policy
|
|
84546
84551
|
* @param {string} sourceId The Source id.
|
|
84547
84552
|
* @param {UsageTypeBeta} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'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.
|
|
@@ -84768,7 +84773,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
84768
84773
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
84769
84774
|
},
|
|
84770
84775
|
/**
|
|
84771
|
-
* 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/
|
|
84776
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
84772
84777
|
* @summary Create provisioning policy
|
|
84773
84778
|
* @param {string} sourceId The Source id
|
|
84774
84779
|
* @param {ProvisioningPolicyDtoBeta} provisioningPolicyDtoBeta
|
|
@@ -85186,7 +85191,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
85186
85191
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
85187
85192
|
},
|
|
85188
85193
|
/**
|
|
85189
|
-
* 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/
|
|
85194
|
+
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
85190
85195
|
* @summary Update provisioning policy by usagetype
|
|
85191
85196
|
* @param {string} sourceId The Source ID.
|
|
85192
85197
|
* @param {UsageTypeBeta} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'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.
|
|
@@ -85297,7 +85302,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
85297
85302
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
85298
85303
|
},
|
|
85299
85304
|
/**
|
|
85300
|
-
* 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/
|
|
85305
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
85301
85306
|
* @summary Partial update of provisioning policy
|
|
85302
85307
|
* @param {string} sourceId The Source id.
|
|
85303
85308
|
* @param {UsageTypeBeta} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'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.
|
|
@@ -85375,7 +85380,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
85375
85380
|
return localVarFp._delete(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
85376
85381
|
},
|
|
85377
85382
|
/**
|
|
85378
|
-
* 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/
|
|
85383
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
85379
85384
|
* @summary Create provisioning policy
|
|
85380
85385
|
* @param {SourcesBetaApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
85381
85386
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -85675,7 +85680,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
85675
85680
|
return localVarFp.putNativeChangeDetectionConfig(requestParameters.sourceId, requestParameters.nativeChangeDetectionConfigBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
85676
85681
|
},
|
|
85677
85682
|
/**
|
|
85678
|
-
* 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/
|
|
85683
|
+
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
85679
85684
|
* @summary Update provisioning policy by usagetype
|
|
85680
85685
|
* @param {SourcesBetaApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
85681
85686
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -85755,7 +85760,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
85755
85760
|
return localVarFp.updateProvisioningPoliciesInBulk(requestParameters.sourceId, requestParameters.provisioningPolicyDtoBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
85756
85761
|
},
|
|
85757
85762
|
/**
|
|
85758
|
-
* 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/
|
|
85763
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
85759
85764
|
* @summary Partial update of provisioning policy
|
|
85760
85765
|
* @param {SourcesBetaApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
85761
85766
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -86706,7 +86711,7 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
86706
86711
|
}
|
|
86707
86712
|
|
|
86708
86713
|
/**
|
|
86709
|
-
* 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/
|
|
86714
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
86710
86715
|
* @summary Create provisioning policy
|
|
86711
86716
|
* @param {SourcesBetaApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
86712
86717
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -87066,7 +87071,7 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
87066
87071
|
}
|
|
87067
87072
|
|
|
87068
87073
|
/**
|
|
87069
|
-
* 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/
|
|
87074
|
+
* This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
87070
87075
|
* @summary Update provisioning policy by usagetype
|
|
87071
87076
|
* @param {SourcesBetaApiPutProvisioningPolicyRequest} requestParameters Request parameters.
|
|
87072
87077
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -87162,7 +87167,7 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
87162
87167
|
}
|
|
87163
87168
|
|
|
87164
87169
|
/**
|
|
87165
|
-
* 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/
|
|
87170
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
87166
87171
|
* @summary Partial update of provisioning policy
|
|
87167
87172
|
* @param {SourcesBetaApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
|
|
87168
87173
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88222,7 +88227,7 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
|
|
|
88222
88227
|
};
|
|
88223
88228
|
},
|
|
88224
88229
|
/**
|
|
88225
|
-
* This API returns a list of all tagged objects.
|
|
88230
|
+
* This API returns a list of all tagged objects.
|
|
88226
88231
|
* @summary List tagged objects
|
|
88227
88232
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
88228
88233
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -88280,7 +88285,7 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
|
|
|
88280
88285
|
};
|
|
88281
88286
|
},
|
|
88282
88287
|
/**
|
|
88283
|
-
* This API returns a list of all tagged objects by type.
|
|
88288
|
+
* This API returns a list of all tagged objects by type.
|
|
88284
88289
|
* @summary List tagged objects by type
|
|
88285
88290
|
* @param {ListTaggedObjectsByTypeTypeBeta} type The type of tagged object to retrieve.
|
|
88286
88291
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -88394,7 +88399,7 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
|
|
|
88394
88399
|
};
|
|
88395
88400
|
},
|
|
88396
88401
|
/**
|
|
88397
|
-
* This adds a tag to an object.
|
|
88402
|
+
* This adds a tag to an object.
|
|
88398
88403
|
* @summary Add tag to object
|
|
88399
88404
|
* @param {TaggedObjectBeta} taggedObjectBeta
|
|
88400
88405
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88533,7 +88538,7 @@ export const TaggedObjectsBetaApiFp = function(configuration?: Configuration) {
|
|
|
88533
88538
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
88534
88539
|
},
|
|
88535
88540
|
/**
|
|
88536
|
-
* This API returns a list of all tagged objects.
|
|
88541
|
+
* This API returns a list of all tagged objects.
|
|
88537
88542
|
* @summary List tagged objects
|
|
88538
88543
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
88539
88544
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -88549,7 +88554,7 @@ export const TaggedObjectsBetaApiFp = function(configuration?: Configuration) {
|
|
|
88549
88554
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
88550
88555
|
},
|
|
88551
88556
|
/**
|
|
88552
|
-
* This API returns a list of all tagged objects by type.
|
|
88557
|
+
* This API returns a list of all tagged objects by type.
|
|
88553
88558
|
* @summary List tagged objects by type
|
|
88554
88559
|
* @param {ListTaggedObjectsByTypeTypeBeta} type The type of tagged object to retrieve.
|
|
88555
88560
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -88581,7 +88586,7 @@ export const TaggedObjectsBetaApiFp = function(configuration?: Configuration) {
|
|
|
88581
88586
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
88582
88587
|
},
|
|
88583
88588
|
/**
|
|
88584
|
-
* This adds a tag to an object.
|
|
88589
|
+
* This adds a tag to an object.
|
|
88585
88590
|
* @summary Add tag to object
|
|
88586
88591
|
* @param {TaggedObjectBeta} taggedObjectBeta
|
|
88587
88592
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88647,7 +88652,7 @@ export const TaggedObjectsBetaApiFactory = function (configuration?: Configurati
|
|
|
88647
88652
|
return localVarFp.getTaggedObject(requestParameters.type, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
88648
88653
|
},
|
|
88649
88654
|
/**
|
|
88650
|
-
* This API returns a list of all tagged objects.
|
|
88655
|
+
* This API returns a list of all tagged objects.
|
|
88651
88656
|
* @summary List tagged objects
|
|
88652
88657
|
* @param {TaggedObjectsBetaApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
88653
88658
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88657,7 +88662,7 @@ export const TaggedObjectsBetaApiFactory = function (configuration?: Configurati
|
|
|
88657
88662
|
return localVarFp.listTaggedObjects(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
88658
88663
|
},
|
|
88659
88664
|
/**
|
|
88660
|
-
* This API returns a list of all tagged objects by type.
|
|
88665
|
+
* This API returns a list of all tagged objects by type.
|
|
88661
88666
|
* @summary List tagged objects by type
|
|
88662
88667
|
* @param {TaggedObjectsBetaApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
88663
88668
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88677,7 +88682,7 @@ export const TaggedObjectsBetaApiFactory = function (configuration?: Configurati
|
|
|
88677
88682
|
return localVarFp.putTaggedObject(requestParameters.type, requestParameters.id, requestParameters.taggedObjectBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
88678
88683
|
},
|
|
88679
88684
|
/**
|
|
88680
|
-
* This adds a tag to an object.
|
|
88685
|
+
* This adds a tag to an object.
|
|
88681
88686
|
* @summary Add tag to object
|
|
88682
88687
|
* @param {TaggedObjectsBetaApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
88683
88688
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88932,7 +88937,7 @@ export class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
88932
88937
|
}
|
|
88933
88938
|
|
|
88934
88939
|
/**
|
|
88935
|
-
* This API returns a list of all tagged objects.
|
|
88940
|
+
* This API returns a list of all tagged objects.
|
|
88936
88941
|
* @summary List tagged objects
|
|
88937
88942
|
* @param {TaggedObjectsBetaApiListTaggedObjectsRequest} requestParameters Request parameters.
|
|
88938
88943
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88944,7 +88949,7 @@ export class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
88944
88949
|
}
|
|
88945
88950
|
|
|
88946
88951
|
/**
|
|
88947
|
-
* This API returns a list of all tagged objects by type.
|
|
88952
|
+
* This API returns a list of all tagged objects by type.
|
|
88948
88953
|
* @summary List tagged objects by type
|
|
88949
88954
|
* @param {TaggedObjectsBetaApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
|
|
88950
88955
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -88968,7 +88973,7 @@ export class TaggedObjectsBetaApi extends BaseAPI {
|
|
|
88968
88973
|
}
|
|
88969
88974
|
|
|
88970
88975
|
/**
|
|
88971
|
-
* This adds a tag to an object.
|
|
88976
|
+
* This adds a tag to an object.
|
|
88972
88977
|
* @summary Add tag to object
|
|
88973
88978
|
* @param {TaggedObjectsBetaApiSetTagToObjectRequest} requestParameters Request parameters.
|
|
88974
88979
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -92167,301 +92172,6 @@ export class UIMetadataBetaApi extends BaseAPI {
|
|
|
92167
92172
|
|
|
92168
92173
|
|
|
92169
92174
|
|
|
92170
|
-
/**
|
|
92171
|
-
* VendorConnectorMappingsBetaApi - axios parameter creator
|
|
92172
|
-
* @export
|
|
92173
|
-
*/
|
|
92174
|
-
export const VendorConnectorMappingsBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
92175
|
-
return {
|
|
92176
|
-
/**
|
|
92177
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
92178
|
-
* @summary Create vendor connector mapping
|
|
92179
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
92180
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92181
|
-
* @throws {RequiredError}
|
|
92182
|
-
*/
|
|
92183
|
-
createVendorConnectorMapping: async (vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
92184
|
-
// verify required parameter 'vendorConnectorMappingBeta' is not null or undefined
|
|
92185
|
-
assertParamExists('createVendorConnectorMapping', 'vendorConnectorMappingBeta', vendorConnectorMappingBeta)
|
|
92186
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
92187
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
92188
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
92189
|
-
let baseOptions;
|
|
92190
|
-
if (configuration) {
|
|
92191
|
-
baseOptions = configuration.baseOptions;
|
|
92192
|
-
}
|
|
92193
|
-
|
|
92194
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
92195
|
-
const localVarHeaderParameter = {} as any;
|
|
92196
|
-
const localVarQueryParameter = {} as any;
|
|
92197
|
-
|
|
92198
|
-
// authentication userAuth required
|
|
92199
|
-
// oauth required
|
|
92200
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92201
|
-
|
|
92202
|
-
// authentication userAuth required
|
|
92203
|
-
// oauth required
|
|
92204
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92205
|
-
|
|
92206
|
-
|
|
92207
|
-
|
|
92208
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
92209
|
-
|
|
92210
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
92211
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
92212
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
92213
|
-
localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMappingBeta, localVarRequestOptions, configuration)
|
|
92214
|
-
|
|
92215
|
-
return {
|
|
92216
|
-
url: toPathString(localVarUrlObj),
|
|
92217
|
-
axiosOptions: localVarRequestOptions,
|
|
92218
|
-
};
|
|
92219
|
-
},
|
|
92220
|
-
/**
|
|
92221
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
92222
|
-
* @summary Delete vendor connector mapping
|
|
92223
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
92224
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92225
|
-
* @throws {RequiredError}
|
|
92226
|
-
*/
|
|
92227
|
-
deleteVendorConnectorMapping: async (vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
92228
|
-
// verify required parameter 'vendorConnectorMappingBeta' is not null or undefined
|
|
92229
|
-
assertParamExists('deleteVendorConnectorMapping', 'vendorConnectorMappingBeta', vendorConnectorMappingBeta)
|
|
92230
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
92231
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
92232
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
92233
|
-
let baseOptions;
|
|
92234
|
-
if (configuration) {
|
|
92235
|
-
baseOptions = configuration.baseOptions;
|
|
92236
|
-
}
|
|
92237
|
-
|
|
92238
|
-
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
92239
|
-
const localVarHeaderParameter = {} as any;
|
|
92240
|
-
const localVarQueryParameter = {} as any;
|
|
92241
|
-
|
|
92242
|
-
// authentication userAuth required
|
|
92243
|
-
// oauth required
|
|
92244
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92245
|
-
|
|
92246
|
-
// authentication userAuth required
|
|
92247
|
-
// oauth required
|
|
92248
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92249
|
-
|
|
92250
|
-
|
|
92251
|
-
|
|
92252
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
92253
|
-
|
|
92254
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
92255
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
92256
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
92257
|
-
localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMappingBeta, localVarRequestOptions, configuration)
|
|
92258
|
-
|
|
92259
|
-
return {
|
|
92260
|
-
url: toPathString(localVarUrlObj),
|
|
92261
|
-
axiosOptions: localVarRequestOptions,
|
|
92262
|
-
};
|
|
92263
|
-
},
|
|
92264
|
-
/**
|
|
92265
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
92266
|
-
* @summary List vendor connector mappings
|
|
92267
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92268
|
-
* @throws {RequiredError}
|
|
92269
|
-
*/
|
|
92270
|
-
getVendorConnectorMappings: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
92271
|
-
const localVarPath = `/vendor-connector-mappings`;
|
|
92272
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
92273
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
92274
|
-
let baseOptions;
|
|
92275
|
-
if (configuration) {
|
|
92276
|
-
baseOptions = configuration.baseOptions;
|
|
92277
|
-
}
|
|
92278
|
-
|
|
92279
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
92280
|
-
const localVarHeaderParameter = {} as any;
|
|
92281
|
-
const localVarQueryParameter = {} as any;
|
|
92282
|
-
|
|
92283
|
-
// authentication userAuth required
|
|
92284
|
-
// oauth required
|
|
92285
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92286
|
-
|
|
92287
|
-
// authentication userAuth required
|
|
92288
|
-
// oauth required
|
|
92289
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
92290
|
-
|
|
92291
|
-
|
|
92292
|
-
|
|
92293
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
92294
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
92295
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
92296
|
-
|
|
92297
|
-
return {
|
|
92298
|
-
url: toPathString(localVarUrlObj),
|
|
92299
|
-
axiosOptions: localVarRequestOptions,
|
|
92300
|
-
};
|
|
92301
|
-
},
|
|
92302
|
-
}
|
|
92303
|
-
};
|
|
92304
|
-
|
|
92305
|
-
/**
|
|
92306
|
-
* VendorConnectorMappingsBetaApi - functional programming interface
|
|
92307
|
-
* @export
|
|
92308
|
-
*/
|
|
92309
|
-
export const VendorConnectorMappingsBetaApiFp = function(configuration?: Configuration) {
|
|
92310
|
-
const localVarAxiosParamCreator = VendorConnectorMappingsBetaApiAxiosParamCreator(configuration)
|
|
92311
|
-
return {
|
|
92312
|
-
/**
|
|
92313
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
92314
|
-
* @summary Create vendor connector mapping
|
|
92315
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
92316
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92317
|
-
* @throws {RequiredError}
|
|
92318
|
-
*/
|
|
92319
|
-
async createVendorConnectorMapping(vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMappingBeta>> {
|
|
92320
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createVendorConnectorMapping(vendorConnectorMappingBeta, axiosOptions);
|
|
92321
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
92322
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsBetaApi.createVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
|
|
92323
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
92324
|
-
},
|
|
92325
|
-
/**
|
|
92326
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
92327
|
-
* @summary Delete vendor connector mapping
|
|
92328
|
-
* @param {VendorConnectorMappingBeta} vendorConnectorMappingBeta
|
|
92329
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92330
|
-
* @throws {RequiredError}
|
|
92331
|
-
*/
|
|
92332
|
-
async deleteVendorConnectorMapping(vendorConnectorMappingBeta: VendorConnectorMappingBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200ResponseBeta>> {
|
|
92333
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVendorConnectorMapping(vendorConnectorMappingBeta, axiosOptions);
|
|
92334
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
92335
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsBetaApi.deleteVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
|
|
92336
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
92337
|
-
},
|
|
92338
|
-
/**
|
|
92339
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
92340
|
-
* @summary List vendor connector mappings
|
|
92341
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92342
|
-
* @throws {RequiredError}
|
|
92343
|
-
*/
|
|
92344
|
-
async getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMappingBeta>>> {
|
|
92345
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getVendorConnectorMappings(axiosOptions);
|
|
92346
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
92347
|
-
const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsBetaApi.getVendorConnectorMappings']?.[localVarOperationServerIndex]?.url;
|
|
92348
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
92349
|
-
},
|
|
92350
|
-
}
|
|
92351
|
-
};
|
|
92352
|
-
|
|
92353
|
-
/**
|
|
92354
|
-
* VendorConnectorMappingsBetaApi - factory interface
|
|
92355
|
-
* @export
|
|
92356
|
-
*/
|
|
92357
|
-
export const VendorConnectorMappingsBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
92358
|
-
const localVarFp = VendorConnectorMappingsBetaApiFp(configuration)
|
|
92359
|
-
return {
|
|
92360
|
-
/**
|
|
92361
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
92362
|
-
* @summary Create vendor connector mapping
|
|
92363
|
-
* @param {VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
92364
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92365
|
-
* @throws {RequiredError}
|
|
92366
|
-
*/
|
|
92367
|
-
createVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMappingBeta> {
|
|
92368
|
-
return localVarFp.createVendorConnectorMapping(requestParameters.vendorConnectorMappingBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
92369
|
-
},
|
|
92370
|
-
/**
|
|
92371
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
92372
|
-
* @summary Delete vendor connector mapping
|
|
92373
|
-
* @param {VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
92374
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92375
|
-
* @throws {RequiredError}
|
|
92376
|
-
*/
|
|
92377
|
-
deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200ResponseBeta> {
|
|
92378
|
-
return localVarFp.deleteVendorConnectorMapping(requestParameters.vendorConnectorMappingBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
92379
|
-
},
|
|
92380
|
-
/**
|
|
92381
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
92382
|
-
* @summary List vendor connector mappings
|
|
92383
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92384
|
-
* @throws {RequiredError}
|
|
92385
|
-
*/
|
|
92386
|
-
getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMappingBeta>> {
|
|
92387
|
-
return localVarFp.getVendorConnectorMappings(axiosOptions).then((request) => request(axios, basePath));
|
|
92388
|
-
},
|
|
92389
|
-
};
|
|
92390
|
-
};
|
|
92391
|
-
|
|
92392
|
-
/**
|
|
92393
|
-
* Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsBetaApi.
|
|
92394
|
-
* @export
|
|
92395
|
-
* @interface VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest
|
|
92396
|
-
*/
|
|
92397
|
-
export interface VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest {
|
|
92398
|
-
/**
|
|
92399
|
-
*
|
|
92400
|
-
* @type {VendorConnectorMappingBeta}
|
|
92401
|
-
* @memberof VendorConnectorMappingsBetaApiCreateVendorConnectorMapping
|
|
92402
|
-
*/
|
|
92403
|
-
readonly vendorConnectorMappingBeta: VendorConnectorMappingBeta
|
|
92404
|
-
}
|
|
92405
|
-
|
|
92406
|
-
/**
|
|
92407
|
-
* Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsBetaApi.
|
|
92408
|
-
* @export
|
|
92409
|
-
* @interface VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest
|
|
92410
|
-
*/
|
|
92411
|
-
export interface VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest {
|
|
92412
|
-
/**
|
|
92413
|
-
*
|
|
92414
|
-
* @type {VendorConnectorMappingBeta}
|
|
92415
|
-
* @memberof VendorConnectorMappingsBetaApiDeleteVendorConnectorMapping
|
|
92416
|
-
*/
|
|
92417
|
-
readonly vendorConnectorMappingBeta: VendorConnectorMappingBeta
|
|
92418
|
-
}
|
|
92419
|
-
|
|
92420
|
-
/**
|
|
92421
|
-
* VendorConnectorMappingsBetaApi - object-oriented interface
|
|
92422
|
-
* @export
|
|
92423
|
-
* @class VendorConnectorMappingsBetaApi
|
|
92424
|
-
* @extends {BaseAPI}
|
|
92425
|
-
*/
|
|
92426
|
-
export class VendorConnectorMappingsBetaApi extends BaseAPI {
|
|
92427
|
-
/**
|
|
92428
|
-
* Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
|
|
92429
|
-
* @summary Create vendor connector mapping
|
|
92430
|
-
* @param {VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
92431
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92432
|
-
* @throws {RequiredError}
|
|
92433
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
92434
|
-
*/
|
|
92435
|
-
public createVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
92436
|
-
return VendorConnectorMappingsBetaApiFp(this.configuration).createVendorConnectorMapping(requestParameters.vendorConnectorMappingBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
92437
|
-
}
|
|
92438
|
-
|
|
92439
|
-
/**
|
|
92440
|
-
* Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
|
|
92441
|
-
* @summary Delete vendor connector mapping
|
|
92442
|
-
* @param {VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
|
|
92443
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92444
|
-
* @throws {RequiredError}
|
|
92445
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
92446
|
-
*/
|
|
92447
|
-
public deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsBetaApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
92448
|
-
return VendorConnectorMappingsBetaApiFp(this.configuration).deleteVendorConnectorMapping(requestParameters.vendorConnectorMappingBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
92449
|
-
}
|
|
92450
|
-
|
|
92451
|
-
/**
|
|
92452
|
-
* Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
|
|
92453
|
-
* @summary List vendor connector mappings
|
|
92454
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
92455
|
-
* @throws {RequiredError}
|
|
92456
|
-
* @memberof VendorConnectorMappingsBetaApi
|
|
92457
|
-
*/
|
|
92458
|
-
public getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig) {
|
|
92459
|
-
return VendorConnectorMappingsBetaApiFp(this.configuration).getVendorConnectorMappings(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
92460
|
-
}
|
|
92461
|
-
}
|
|
92462
|
-
|
|
92463
|
-
|
|
92464
|
-
|
|
92465
92175
|
/**
|
|
92466
92176
|
* WorkItemsBetaApi - axios parameter creator
|
|
92467
92177
|
* @export
|
|
@@ -95610,7 +95320,7 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
95610
95320
|
};
|
|
95611
95321
|
},
|
|
95612
95322
|
/**
|
|
95613
|
-
* 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/
|
|
95323
|
+
* Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
|
|
95614
95324
|
* @summary Test workflow by id
|
|
95615
95325
|
* @param {string} id Id of the workflow
|
|
95616
95326
|
* @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
|
|
@@ -95904,7 +95614,7 @@ export const WorkflowsBetaApiFp = function(configuration?: Configuration) {
|
|
|
95904
95614
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
95905
95615
|
},
|
|
95906
95616
|
/**
|
|
95907
|
-
* 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/
|
|
95617
|
+
* Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
|
|
95908
95618
|
* @summary Test workflow by id
|
|
95909
95619
|
* @param {string} id Id of the workflow
|
|
95910
95620
|
* @param {TestWorkflowRequestBeta} testWorkflowRequestBeta
|
|
@@ -96097,7 +95807,7 @@ export const WorkflowsBetaApiFactory = function (configuration?: Configuration,
|
|
|
96097
95807
|
return localVarFp.testExternalExecuteWorkflow(requestParameters.id, requestParameters.testExternalExecuteWorkflowRequestBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
96098
95808
|
},
|
|
96099
95809
|
/**
|
|
96100
|
-
* 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/
|
|
95810
|
+
* Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
|
|
96101
95811
|
* @summary Test workflow by id
|
|
96102
95812
|
* @param {WorkflowsBetaApiTestWorkflowRequest} requestParameters Request parameters.
|
|
96103
95813
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -96677,7 +96387,7 @@ export class WorkflowsBetaApi extends BaseAPI {
|
|
|
96677
96387
|
}
|
|
96678
96388
|
|
|
96679
96389
|
/**
|
|
96680
|
-
* 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/
|
|
96390
|
+
* Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
|
|
96681
96391
|
* @summary Test workflow by id
|
|
96682
96392
|
* @param {WorkflowsBetaApiTestWorkflowRequest} requestParameters Request parameters.
|
|
96683
96393
|
* @param {*} [axiosOptions] Override http request option.
|