sailpoint-api-client 1.7.0 → 1.7.5
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/.openapi-generator/VERSION +1 -1
- package/beta/README.md +2 -2
- package/beta/api.ts +2593 -256
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +1253 -109
- package/dist/beta/api.js +3218 -425
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/index.spec.js +3 -3
- package/dist/index.spec.js.map +1 -1
- package/dist/v2024/api.d.ts +481 -129
- package/dist/v2024/api.js +3695 -738
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +5063 -240
- package/dist/v2025/api.js +7783 -1068
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/api.d.ts +23 -15
- package/dist/v2026/api.js +22 -14
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +1 -1
- package/dist/v3/api.d.ts +197 -16
- package/dist/v3/api.js +1279 -289
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/index.spec.ts +3 -3
- package/package.json +15 -2
- package/v2024/.openapi-generator/VERSION +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +1993 -438
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/.openapi-generator/VERSION +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +8350 -604
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/.openapi-generator/VERSION +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +23 -15
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/.openapi-generator/VERSION +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +689 -114
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v3/api.d.ts
CHANGED
|
@@ -236,6 +236,32 @@ export declare const AccessCriteriaRequestCriteriaListInnerTypeV3: {
|
|
|
236
236
|
readonly Entitlement: "ENTITLEMENT";
|
|
237
237
|
};
|
|
238
238
|
export type AccessCriteriaRequestCriteriaListInnerTypeV3 = typeof AccessCriteriaRequestCriteriaListInnerTypeV3[keyof typeof AccessCriteriaRequestCriteriaListInnerTypeV3];
|
|
239
|
+
/**
|
|
240
|
+
*
|
|
241
|
+
* @export
|
|
242
|
+
* @interface AccessDuration
|
|
243
|
+
*/
|
|
244
|
+
export interface AccessDuration {
|
|
245
|
+
/**
|
|
246
|
+
* The numeric value representing the amount of time, which is defined in the **timeUnit**.
|
|
247
|
+
* @type {number}
|
|
248
|
+
* @memberof AccessDuration
|
|
249
|
+
*/
|
|
250
|
+
'value'?: number;
|
|
251
|
+
/**
|
|
252
|
+
* The unit of time that corresponds to the **value**. It defines the scale of the time period.
|
|
253
|
+
* @type {string}
|
|
254
|
+
* @memberof AccessDuration
|
|
255
|
+
*/
|
|
256
|
+
'timeUnit'?: AccessDurationTimeUnitV3;
|
|
257
|
+
}
|
|
258
|
+
export declare const AccessDurationTimeUnitV3: {
|
|
259
|
+
readonly Hours: "HOURS";
|
|
260
|
+
readonly Days: "DAYS";
|
|
261
|
+
readonly Weeks: "WEEKS";
|
|
262
|
+
readonly Months: "MONTHS";
|
|
263
|
+
};
|
|
264
|
+
export type AccessDurationTimeUnitV3 = typeof AccessDurationTimeUnitV3[keyof typeof AccessDurationTimeUnitV3];
|
|
239
265
|
/**
|
|
240
266
|
* Identity the access item is requested for.
|
|
241
267
|
* @export
|
|
@@ -487,12 +513,24 @@ export interface AccessProfile {
|
|
|
487
513
|
* @memberof AccessProfile
|
|
488
514
|
*/
|
|
489
515
|
'segments'?: Array<string> | null;
|
|
516
|
+
/**
|
|
517
|
+
*
|
|
518
|
+
* @type {AttributeDTOList}
|
|
519
|
+
* @memberof AccessProfile
|
|
520
|
+
*/
|
|
521
|
+
'accessModelMetadata'?: AttributeDTOList;
|
|
490
522
|
/**
|
|
491
523
|
*
|
|
492
524
|
* @type {ProvisioningCriteriaLevel1}
|
|
493
525
|
* @memberof AccessProfile
|
|
494
526
|
*/
|
|
495
527
|
'provisioningCriteria'?: ProvisioningCriteriaLevel1 | null;
|
|
528
|
+
/**
|
|
529
|
+
*
|
|
530
|
+
* @type {Array<OwnerReference>}
|
|
531
|
+
* @memberof AccessProfile
|
|
532
|
+
*/
|
|
533
|
+
'additionalOwners'?: Array<OwnerReference> | null;
|
|
496
534
|
}
|
|
497
535
|
/**
|
|
498
536
|
*
|
|
@@ -1362,13 +1400,14 @@ export interface AccessRequestTracking {
|
|
|
1362
1400
|
'accessRequestIds'?: Array<string>;
|
|
1363
1401
|
}
|
|
1364
1402
|
/**
|
|
1365
|
-
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
|
|
1403
|
+
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field. MODIFY_ACCESS type is used for updating access expiration dates or other access modifications.
|
|
1366
1404
|
* @export
|
|
1367
1405
|
* @enum {string}
|
|
1368
1406
|
*/
|
|
1369
1407
|
export declare const AccessRequestType: {
|
|
1370
1408
|
readonly GrantAccess: "GRANT_ACCESS";
|
|
1371
1409
|
readonly RevokeAccess: "REVOKE_ACCESS";
|
|
1410
|
+
readonly ModifyAccess: "MODIFY_ACCESS";
|
|
1372
1411
|
};
|
|
1373
1412
|
export type AccessRequestType = typeof AccessRequestType[keyof typeof AccessRequestType];
|
|
1374
1413
|
/**
|
|
@@ -6161,6 +6200,12 @@ export interface CompletedApproval {
|
|
|
6161
6200
|
* @memberof CompletedApproval
|
|
6162
6201
|
*/
|
|
6163
6202
|
'privilegeLevel'?: string | null;
|
|
6203
|
+
/**
|
|
6204
|
+
*
|
|
6205
|
+
* @type {PendingApprovalMaxPermittedAccessDuration}
|
|
6206
|
+
* @memberof CompletedApproval
|
|
6207
|
+
*/
|
|
6208
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDuration | null;
|
|
6164
6209
|
}
|
|
6165
6210
|
/**
|
|
6166
6211
|
* If the access request submitted event trigger is configured and this access request was intercepted by it, then this is the result of the trigger\'s decision to either approve or deny the request.
|
|
@@ -12640,6 +12685,42 @@ export interface ManagedCluster {
|
|
|
12640
12685
|
* @memberof ManagedCluster
|
|
12641
12686
|
*/
|
|
12642
12687
|
'updatedAt'?: string | null;
|
|
12688
|
+
/**
|
|
12689
|
+
* The date/time this cluster was notified for the last release
|
|
12690
|
+
* @type {string}
|
|
12691
|
+
* @memberof ManagedCluster
|
|
12692
|
+
*/
|
|
12693
|
+
'lastReleaseNotifiedAt'?: string | null;
|
|
12694
|
+
/**
|
|
12695
|
+
*
|
|
12696
|
+
* @type {ManagedClusterUpdatePreferences}
|
|
12697
|
+
* @memberof ManagedCluster
|
|
12698
|
+
*/
|
|
12699
|
+
'updatePreferences'?: ManagedClusterUpdatePreferences;
|
|
12700
|
+
/**
|
|
12701
|
+
* The current installed release on the Managed cluster
|
|
12702
|
+
* @type {string}
|
|
12703
|
+
* @memberof ManagedCluster
|
|
12704
|
+
*/
|
|
12705
|
+
'currentInstalledReleaseVersion'?: string | null;
|
|
12706
|
+
/**
|
|
12707
|
+
* New available updates for the Managed cluster
|
|
12708
|
+
* @type {string}
|
|
12709
|
+
* @memberof ManagedCluster
|
|
12710
|
+
*/
|
|
12711
|
+
'updatePackage'?: string | null;
|
|
12712
|
+
/**
|
|
12713
|
+
* The time at which out of date notification was sent for the Managed cluster
|
|
12714
|
+
* @type {string}
|
|
12715
|
+
* @memberof ManagedCluster
|
|
12716
|
+
*/
|
|
12717
|
+
'isOutOfDateNotifiedAt'?: string | null;
|
|
12718
|
+
/**
|
|
12719
|
+
* The consolidated Health Status for the Managed cluster
|
|
12720
|
+
* @type {string}
|
|
12721
|
+
* @memberof ManagedCluster
|
|
12722
|
+
*/
|
|
12723
|
+
'consolidatedHealthIndicatorsStatus'?: ManagedClusterConsolidatedHealthIndicatorsStatusV3 | null;
|
|
12643
12724
|
}
|
|
12644
12725
|
export declare const ManagedClusterStatusV3: {
|
|
12645
12726
|
readonly Configuring: "CONFIGURING";
|
|
@@ -12649,6 +12730,12 @@ export declare const ManagedClusterStatusV3: {
|
|
|
12649
12730
|
readonly Warning: "WARNING";
|
|
12650
12731
|
};
|
|
12651
12732
|
export type ManagedClusterStatusV3 = typeof ManagedClusterStatusV3[keyof typeof ManagedClusterStatusV3];
|
|
12733
|
+
export declare const ManagedClusterConsolidatedHealthIndicatorsStatusV3: {
|
|
12734
|
+
readonly Normal: "NORMAL";
|
|
12735
|
+
readonly Warning: "WARNING";
|
|
12736
|
+
readonly Error: "ERROR";
|
|
12737
|
+
};
|
|
12738
|
+
export type ManagedClusterConsolidatedHealthIndicatorsStatusV3 = typeof ManagedClusterConsolidatedHealthIndicatorsStatusV3[keyof typeof ManagedClusterConsolidatedHealthIndicatorsStatusV3];
|
|
12652
12739
|
/**
|
|
12653
12740
|
* Managed Cluster Attributes for Cluster Configuration. Supported Cluster Types [sqsCluster, spConnectCluster]
|
|
12654
12741
|
* @export
|
|
@@ -12783,15 +12870,53 @@ export interface ManagedClusterRequest {
|
|
|
12783
12870
|
'description'?: string | null;
|
|
12784
12871
|
}
|
|
12785
12872
|
/**
|
|
12786
|
-
* The Type of Cluster
|
|
12873
|
+
* The Type of Cluster: * `idn` - IDN VA type * `iai` - IAI harvester VA * `spConnectCluster` - Saas 2.0 connector cluster (this should be one per org) * `sqsCluster` - This should be unused * `das-rc` - Data Access Security Resources Collector * `das-pc` - Data Access Security Permissions Collector * `das-dc` - Data Access Security Data Classification Collector * `pag` - Privilege Action Gateway VA * `das-am` - Data Access Security Activity Monitor * `standard` - Standard Cluster type for running multiple products
|
|
12787
12874
|
* @export
|
|
12788
12875
|
* @enum {string}
|
|
12789
12876
|
*/
|
|
12790
12877
|
export declare const ManagedClusterTypes: {
|
|
12791
12878
|
readonly Idn: "idn";
|
|
12792
12879
|
readonly Iai: "iai";
|
|
12880
|
+
readonly SpConnectCluster: "spConnectCluster";
|
|
12881
|
+
readonly SqsCluster: "sqsCluster";
|
|
12882
|
+
readonly DasRc: "das-rc";
|
|
12883
|
+
readonly DasPc: "das-pc";
|
|
12884
|
+
readonly DasDc: "das-dc";
|
|
12885
|
+
readonly Pag: "pag";
|
|
12886
|
+
readonly DasAm: "das-am";
|
|
12887
|
+
readonly Standard: "standard";
|
|
12793
12888
|
};
|
|
12794
12889
|
export type ManagedClusterTypes = typeof ManagedClusterTypes[keyof typeof ManagedClusterTypes];
|
|
12890
|
+
/**
|
|
12891
|
+
* The preference for applying updates for the cluster
|
|
12892
|
+
* @export
|
|
12893
|
+
* @interface ManagedClusterUpdatePreferences
|
|
12894
|
+
*/
|
|
12895
|
+
export interface ManagedClusterUpdatePreferences {
|
|
12896
|
+
/**
|
|
12897
|
+
* The processGroups for updatePreferences
|
|
12898
|
+
* @type {string}
|
|
12899
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
12900
|
+
*/
|
|
12901
|
+
'processGroups'?: string | null;
|
|
12902
|
+
/**
|
|
12903
|
+
* The current updateState for the cluster
|
|
12904
|
+
* @type {string}
|
|
12905
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
12906
|
+
*/
|
|
12907
|
+
'updateState'?: ManagedClusterUpdatePreferencesUpdateStateV3 | null;
|
|
12908
|
+
/**
|
|
12909
|
+
* The mail id to which new releases will be notified
|
|
12910
|
+
* @type {string}
|
|
12911
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
12912
|
+
*/
|
|
12913
|
+
'notificationEmail'?: string | null;
|
|
12914
|
+
}
|
|
12915
|
+
export declare const ManagedClusterUpdatePreferencesUpdateStateV3: {
|
|
12916
|
+
readonly Auto: "AUTO";
|
|
12917
|
+
readonly Disabled: "DISABLED";
|
|
12918
|
+
};
|
|
12919
|
+
export type ManagedClusterUpdatePreferencesUpdateStateV3 = typeof ManagedClusterUpdatePreferencesUpdateStateV3[keyof typeof ManagedClusterUpdatePreferencesUpdateStateV3];
|
|
12795
12920
|
/**
|
|
12796
12921
|
*
|
|
12797
12922
|
* @export
|
|
@@ -15475,6 +15600,12 @@ export interface PendingApproval {
|
|
|
15475
15600
|
* @memberof PendingApproval
|
|
15476
15601
|
*/
|
|
15477
15602
|
'privilegeLevel'?: string | null;
|
|
15603
|
+
/**
|
|
15604
|
+
*
|
|
15605
|
+
* @type {PendingApprovalMaxPermittedAccessDuration}
|
|
15606
|
+
* @memberof PendingApproval
|
|
15607
|
+
*/
|
|
15608
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDuration | null;
|
|
15478
15609
|
}
|
|
15479
15610
|
/**
|
|
15480
15611
|
* Enum represents action that is being processed on an approval.
|
|
@@ -15487,6 +15618,32 @@ export declare const PendingApprovalAction: {
|
|
|
15487
15618
|
readonly Forwarded: "FORWARDED";
|
|
15488
15619
|
};
|
|
15489
15620
|
export type PendingApprovalAction = typeof PendingApprovalAction[keyof typeof PendingApprovalAction];
|
|
15621
|
+
/**
|
|
15622
|
+
* The maximum duration for which the access is permitted.
|
|
15623
|
+
* @export
|
|
15624
|
+
* @interface PendingApprovalMaxPermittedAccessDuration
|
|
15625
|
+
*/
|
|
15626
|
+
export interface PendingApprovalMaxPermittedAccessDuration {
|
|
15627
|
+
/**
|
|
15628
|
+
* The numeric value of the duration.
|
|
15629
|
+
* @type {number}
|
|
15630
|
+
* @memberof PendingApprovalMaxPermittedAccessDuration
|
|
15631
|
+
*/
|
|
15632
|
+
'value'?: number;
|
|
15633
|
+
/**
|
|
15634
|
+
* The time unit for the duration.
|
|
15635
|
+
* @type {string}
|
|
15636
|
+
* @memberof PendingApprovalMaxPermittedAccessDuration
|
|
15637
|
+
*/
|
|
15638
|
+
'timeUnit'?: PendingApprovalMaxPermittedAccessDurationTimeUnitV3;
|
|
15639
|
+
}
|
|
15640
|
+
export declare const PendingApprovalMaxPermittedAccessDurationTimeUnitV3: {
|
|
15641
|
+
readonly Hours: "HOURS";
|
|
15642
|
+
readonly Days: "DAYS";
|
|
15643
|
+
readonly Weeks: "WEEKS";
|
|
15644
|
+
readonly Months: "MONTHS";
|
|
15645
|
+
};
|
|
15646
|
+
export type PendingApprovalMaxPermittedAccessDurationTimeUnitV3 = typeof PendingApprovalMaxPermittedAccessDurationTimeUnitV3[keyof typeof PendingApprovalMaxPermittedAccessDurationTimeUnitV3];
|
|
15490
15647
|
/**
|
|
15491
15648
|
* Access item owner\'s identity.
|
|
15492
15649
|
* @export
|
|
@@ -16813,6 +16970,18 @@ export interface Requestability {
|
|
|
16813
16970
|
* @memberof Requestability
|
|
16814
16971
|
*/
|
|
16815
16972
|
'reauthorizationRequired'?: boolean | null;
|
|
16973
|
+
/**
|
|
16974
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
16975
|
+
* @type {boolean}
|
|
16976
|
+
* @memberof Requestability
|
|
16977
|
+
*/
|
|
16978
|
+
'requireEndDate'?: boolean | null;
|
|
16979
|
+
/**
|
|
16980
|
+
*
|
|
16981
|
+
* @type {AccessDuration}
|
|
16982
|
+
* @memberof Requestability
|
|
16983
|
+
*/
|
|
16984
|
+
'maxPermittedAccessDuration'?: AccessDuration | null;
|
|
16816
16985
|
/**
|
|
16817
16986
|
* List describing the steps involved in approving the request.
|
|
16818
16987
|
* @type {Array<AccessProfileApprovalScheme>}
|
|
@@ -16844,6 +17013,18 @@ export interface RequestabilityForRole {
|
|
|
16844
17013
|
* @memberof RequestabilityForRole
|
|
16845
17014
|
*/
|
|
16846
17015
|
'reauthorizationRequired'?: boolean | null;
|
|
17016
|
+
/**
|
|
17017
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
17018
|
+
* @type {boolean}
|
|
17019
|
+
* @memberof RequestabilityForRole
|
|
17020
|
+
*/
|
|
17021
|
+
'requireEndDate'?: boolean;
|
|
17022
|
+
/**
|
|
17023
|
+
*
|
|
17024
|
+
* @type {AccessDuration}
|
|
17025
|
+
* @memberof RequestabilityForRole
|
|
17026
|
+
*/
|
|
17027
|
+
'maxPermittedAccessDuration'?: AccessDuration | null;
|
|
16847
17028
|
/**
|
|
16848
17029
|
* List describing the steps in approving the request
|
|
16849
17030
|
* @type {Array<ApprovalSchemeForRole>}
|
|
@@ -25652,7 +25833,7 @@ export declare const AccessRequestsApiAxiosParamCreator: (configuration?: Config
|
|
|
25652
25833
|
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
25653
25834
|
* @param {number} [limit] Max number of results to return.
|
|
25654
25835
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
25655
|
-
* @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: **accessRequestId**: *eq,
|
|
25836
|
+
* @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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
25656
25837
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
|
|
25657
25838
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
25658
25839
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -25706,7 +25887,7 @@ export declare const AccessRequestsApiFp: (configuration?: Configuration) => {
|
|
|
25706
25887
|
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
25707
25888
|
* @param {number} [limit] Max number of results to return.
|
|
25708
25889
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
25709
|
-
* @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: **accessRequestId**: *eq,
|
|
25890
|
+
* @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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
25710
25891
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
|
|
25711
25892
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
25712
25893
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -25842,7 +26023,7 @@ export interface AccessRequestsApiListAccessRequestStatusRequest {
|
|
|
25842
26023
|
*/
|
|
25843
26024
|
readonly offset?: number;
|
|
25844
26025
|
/**
|
|
25845
|
-
* 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: **accessRequestId**: *eq,
|
|
26026
|
+
* 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: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
25846
26027
|
* @type {string}
|
|
25847
26028
|
* @memberof AccessRequestsApiListAccessRequestStatus
|
|
25848
26029
|
*/
|
|
@@ -29371,7 +29552,7 @@ export declare const CertificationsApiAxiosParamCreator: (configuration?: Config
|
|
|
29371
29552
|
*/
|
|
29372
29553
|
listIdentityAccessReviewItems: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, entitlements?: string, accessProfiles?: string, roles?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29373
29554
|
/**
|
|
29374
|
-
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
29555
|
+
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
29375
29556
|
* @summary List identity campaign certifications
|
|
29376
29557
|
* @param {string} [reviewerIdentity] Reviewer\'s identity. *me* indicates the current user.
|
|
29377
29558
|
* @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.
|
|
@@ -29495,7 +29676,7 @@ export declare const CertificationsApiFp: (configuration?: Configuration) => {
|
|
|
29495
29676
|
*/
|
|
29496
29677
|
listIdentityAccessReviewItems(id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, entitlements?: string, accessProfiles?: string, roles?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessReviewItem>>>;
|
|
29497
29678
|
/**
|
|
29498
|
-
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
29679
|
+
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
29499
29680
|
* @summary List identity campaign certifications
|
|
29500
29681
|
* @param {string} [reviewerIdentity] Reviewer\'s identity. *me* indicates the current user.
|
|
29501
29682
|
* @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.
|
|
@@ -29597,7 +29778,7 @@ export declare const CertificationsApiFactory: (configuration?: Configuration, b
|
|
|
29597
29778
|
*/
|
|
29598
29779
|
listIdentityAccessReviewItems(requestParameters: CertificationsApiListIdentityAccessReviewItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessReviewItem>>;
|
|
29599
29780
|
/**
|
|
29600
|
-
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
29781
|
+
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
29601
29782
|
* @summary List identity campaign certifications
|
|
29602
29783
|
* @param {CertificationsApiListIdentityCertificationsRequest} requestParameters Request parameters.
|
|
29603
29784
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -30022,7 +30203,7 @@ export declare class CertificationsApi extends BaseAPI {
|
|
|
30022
30203
|
*/
|
|
30023
30204
|
listIdentityAccessReviewItems(requestParameters: CertificationsApiListIdentityAccessReviewItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessReviewItem[], any>>;
|
|
30024
30205
|
/**
|
|
30025
|
-
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
30206
|
+
* Use this API to get a list of identity campaign certifications for the specified query parameters. Any authenticated token can call this API, but only certifications you are authorized to review will be returned.
|
|
30026
30207
|
* @summary List identity campaign certifications
|
|
30027
30208
|
* @param {CertificationsApiListIdentityCertificationsRequest} requestParameters Request parameters.
|
|
30028
30209
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33700,7 +33881,7 @@ export declare const ManagedClustersApiAxiosParamCreator: (configuration?: Confi
|
|
|
33700
33881
|
* @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.
|
|
33701
33882
|
* @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.
|
|
33702
33883
|
* @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.
|
|
33703
|
-
* @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: **operational**: *eq*
|
|
33884
|
+
* @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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
33704
33885
|
* @param {*} [axiosOptions] Override http request option.
|
|
33705
33886
|
* @throws {RequiredError}
|
|
33706
33887
|
*/
|
|
@@ -33768,7 +33949,7 @@ export declare const ManagedClustersApiFp: (configuration?: Configuration) => {
|
|
|
33768
33949
|
* @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.
|
|
33769
33950
|
* @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.
|
|
33770
33951
|
* @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.
|
|
33771
|
-
* @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: **operational**: *eq*
|
|
33952
|
+
* @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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
33772
33953
|
* @param {*} [axiosOptions] Override http request option.
|
|
33773
33954
|
* @throws {RequiredError}
|
|
33774
33955
|
*/
|
|
@@ -33937,7 +34118,7 @@ export interface ManagedClustersApiGetManagedClustersRequest {
|
|
|
33937
34118
|
*/
|
|
33938
34119
|
readonly count?: boolean;
|
|
33939
34120
|
/**
|
|
33940
|
-
* 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: **operational**: *eq*
|
|
34121
|
+
* 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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
33941
34122
|
* @type {string}
|
|
33942
34123
|
* @memberof ManagedClustersApiGetManagedClusters
|
|
33943
34124
|
*/
|
|
@@ -40018,7 +40199,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
40018
40199
|
*/
|
|
40019
40200
|
searchGet: (index: SearchGetIndexV3, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40020
40201
|
/**
|
|
40021
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
40202
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
40022
40203
|
* @summary Perform search
|
|
40023
40204
|
* @param {Search} search
|
|
40024
40205
|
* @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.
|
|
@@ -40063,7 +40244,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
40063
40244
|
*/
|
|
40064
40245
|
searchGet(index: SearchGetIndexV3, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchDocument>>;
|
|
40065
40246
|
/**
|
|
40066
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
40247
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
40067
40248
|
* @summary Perform search
|
|
40068
40249
|
* @param {Search} search
|
|
40069
40250
|
* @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.
|
|
@@ -40104,7 +40285,7 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
40104
40285
|
*/
|
|
40105
40286
|
searchGet(requestParameters: SearchApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SearchDocument>;
|
|
40106
40287
|
/**
|
|
40107
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
40288
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
40108
40289
|
* @summary Perform search
|
|
40109
40290
|
* @param {SearchApiSearchPostRequest} requestParameters Request parameters.
|
|
40110
40291
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40241,7 +40422,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
40241
40422
|
*/
|
|
40242
40423
|
searchGet(requestParameters: SearchApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchDocument, any>>;
|
|
40243
40424
|
/**
|
|
40244
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
40425
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
40245
40426
|
* @summary Perform search
|
|
40246
40427
|
* @param {SearchApiSearchPostRequest} requestParameters Request parameters.
|
|
40247
40428
|
* @param {*} [axiosOptions] Override http request option.
|