sailpoint-api-client 1.7.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +2109 -201
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +995 -70
- package/dist/beta/api.js +2743 -397
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/v2024/api.d.ts +206 -60
- package/dist/v2024/api.js +3283 -760
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +4215 -146
- package/dist/v2025/api.js +6582 -965
- 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 +176 -8
- package/dist/v3/api.js +1270 -281
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +1443 -288
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +6947 -444
- package/v2025/common.ts +2 -2
- package/v2025/package.json +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/README.md +2 -2
- package/v3/api.ts +667 -105
- 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
|
*
|
|
@@ -6161,6 +6199,12 @@ export interface CompletedApproval {
|
|
|
6161
6199
|
* @memberof CompletedApproval
|
|
6162
6200
|
*/
|
|
6163
6201
|
'privilegeLevel'?: string | null;
|
|
6202
|
+
/**
|
|
6203
|
+
*
|
|
6204
|
+
* @type {PendingApprovalMaxPermittedAccessDuration}
|
|
6205
|
+
* @memberof CompletedApproval
|
|
6206
|
+
*/
|
|
6207
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDuration | null;
|
|
6164
6208
|
}
|
|
6165
6209
|
/**
|
|
6166
6210
|
* 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 +12684,42 @@ export interface ManagedCluster {
|
|
|
12640
12684
|
* @memberof ManagedCluster
|
|
12641
12685
|
*/
|
|
12642
12686
|
'updatedAt'?: string | null;
|
|
12687
|
+
/**
|
|
12688
|
+
* The date/time this cluster was notified for the last release
|
|
12689
|
+
* @type {string}
|
|
12690
|
+
* @memberof ManagedCluster
|
|
12691
|
+
*/
|
|
12692
|
+
'lastReleaseNotifiedAt'?: string | null;
|
|
12693
|
+
/**
|
|
12694
|
+
*
|
|
12695
|
+
* @type {ManagedClusterUpdatePreferences}
|
|
12696
|
+
* @memberof ManagedCluster
|
|
12697
|
+
*/
|
|
12698
|
+
'updatePreferences'?: ManagedClusterUpdatePreferences;
|
|
12699
|
+
/**
|
|
12700
|
+
* The current installed release on the Managed cluster
|
|
12701
|
+
* @type {string}
|
|
12702
|
+
* @memberof ManagedCluster
|
|
12703
|
+
*/
|
|
12704
|
+
'currentInstalledReleaseVersion'?: string | null;
|
|
12705
|
+
/**
|
|
12706
|
+
* New available updates for the Managed cluster
|
|
12707
|
+
* @type {string}
|
|
12708
|
+
* @memberof ManagedCluster
|
|
12709
|
+
*/
|
|
12710
|
+
'updatePackage'?: string | null;
|
|
12711
|
+
/**
|
|
12712
|
+
* The time at which out of date notification was sent for the Managed cluster
|
|
12713
|
+
* @type {string}
|
|
12714
|
+
* @memberof ManagedCluster
|
|
12715
|
+
*/
|
|
12716
|
+
'isOutOfDateNotifiedAt'?: string | null;
|
|
12717
|
+
/**
|
|
12718
|
+
* The consolidated Health Status for the Managed cluster
|
|
12719
|
+
* @type {string}
|
|
12720
|
+
* @memberof ManagedCluster
|
|
12721
|
+
*/
|
|
12722
|
+
'consolidatedHealthIndicatorsStatus'?: ManagedClusterConsolidatedHealthIndicatorsStatusV3 | null;
|
|
12643
12723
|
}
|
|
12644
12724
|
export declare const ManagedClusterStatusV3: {
|
|
12645
12725
|
readonly Configuring: "CONFIGURING";
|
|
@@ -12649,6 +12729,12 @@ export declare const ManagedClusterStatusV3: {
|
|
|
12649
12729
|
readonly Warning: "WARNING";
|
|
12650
12730
|
};
|
|
12651
12731
|
export type ManagedClusterStatusV3 = typeof ManagedClusterStatusV3[keyof typeof ManagedClusterStatusV3];
|
|
12732
|
+
export declare const ManagedClusterConsolidatedHealthIndicatorsStatusV3: {
|
|
12733
|
+
readonly Normal: "NORMAL";
|
|
12734
|
+
readonly Warning: "WARNING";
|
|
12735
|
+
readonly Error: "ERROR";
|
|
12736
|
+
};
|
|
12737
|
+
export type ManagedClusterConsolidatedHealthIndicatorsStatusV3 = typeof ManagedClusterConsolidatedHealthIndicatorsStatusV3[keyof typeof ManagedClusterConsolidatedHealthIndicatorsStatusV3];
|
|
12652
12738
|
/**
|
|
12653
12739
|
* Managed Cluster Attributes for Cluster Configuration. Supported Cluster Types [sqsCluster, spConnectCluster]
|
|
12654
12740
|
* @export
|
|
@@ -12783,15 +12869,53 @@ export interface ManagedClusterRequest {
|
|
|
12783
12869
|
'description'?: string | null;
|
|
12784
12870
|
}
|
|
12785
12871
|
/**
|
|
12786
|
-
* The Type of Cluster
|
|
12872
|
+
* 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
12873
|
* @export
|
|
12788
12874
|
* @enum {string}
|
|
12789
12875
|
*/
|
|
12790
12876
|
export declare const ManagedClusterTypes: {
|
|
12791
12877
|
readonly Idn: "idn";
|
|
12792
12878
|
readonly Iai: "iai";
|
|
12879
|
+
readonly SpConnectCluster: "spConnectCluster";
|
|
12880
|
+
readonly SqsCluster: "sqsCluster";
|
|
12881
|
+
readonly DasRc: "das-rc";
|
|
12882
|
+
readonly DasPc: "das-pc";
|
|
12883
|
+
readonly DasDc: "das-dc";
|
|
12884
|
+
readonly Pag: "pag";
|
|
12885
|
+
readonly DasAm: "das-am";
|
|
12886
|
+
readonly Standard: "standard";
|
|
12793
12887
|
};
|
|
12794
12888
|
export type ManagedClusterTypes = typeof ManagedClusterTypes[keyof typeof ManagedClusterTypes];
|
|
12889
|
+
/**
|
|
12890
|
+
* The preference for applying updates for the cluster
|
|
12891
|
+
* @export
|
|
12892
|
+
* @interface ManagedClusterUpdatePreferences
|
|
12893
|
+
*/
|
|
12894
|
+
export interface ManagedClusterUpdatePreferences {
|
|
12895
|
+
/**
|
|
12896
|
+
* The processGroups for updatePreferences
|
|
12897
|
+
* @type {string}
|
|
12898
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
12899
|
+
*/
|
|
12900
|
+
'processGroups'?: string | null;
|
|
12901
|
+
/**
|
|
12902
|
+
* The current updateState for the cluster
|
|
12903
|
+
* @type {string}
|
|
12904
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
12905
|
+
*/
|
|
12906
|
+
'updateState'?: ManagedClusterUpdatePreferencesUpdateStateV3 | null;
|
|
12907
|
+
/**
|
|
12908
|
+
* The mail id to which new releases will be notified
|
|
12909
|
+
* @type {string}
|
|
12910
|
+
* @memberof ManagedClusterUpdatePreferences
|
|
12911
|
+
*/
|
|
12912
|
+
'notificationEmail'?: string | null;
|
|
12913
|
+
}
|
|
12914
|
+
export declare const ManagedClusterUpdatePreferencesUpdateStateV3: {
|
|
12915
|
+
readonly Auto: "AUTO";
|
|
12916
|
+
readonly Disabled: "DISABLED";
|
|
12917
|
+
};
|
|
12918
|
+
export type ManagedClusterUpdatePreferencesUpdateStateV3 = typeof ManagedClusterUpdatePreferencesUpdateStateV3[keyof typeof ManagedClusterUpdatePreferencesUpdateStateV3];
|
|
12795
12919
|
/**
|
|
12796
12920
|
*
|
|
12797
12921
|
* @export
|
|
@@ -15475,6 +15599,12 @@ export interface PendingApproval {
|
|
|
15475
15599
|
* @memberof PendingApproval
|
|
15476
15600
|
*/
|
|
15477
15601
|
'privilegeLevel'?: string | null;
|
|
15602
|
+
/**
|
|
15603
|
+
*
|
|
15604
|
+
* @type {PendingApprovalMaxPermittedAccessDuration}
|
|
15605
|
+
* @memberof PendingApproval
|
|
15606
|
+
*/
|
|
15607
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDuration | null;
|
|
15478
15608
|
}
|
|
15479
15609
|
/**
|
|
15480
15610
|
* Enum represents action that is being processed on an approval.
|
|
@@ -15487,6 +15617,32 @@ export declare const PendingApprovalAction: {
|
|
|
15487
15617
|
readonly Forwarded: "FORWARDED";
|
|
15488
15618
|
};
|
|
15489
15619
|
export type PendingApprovalAction = typeof PendingApprovalAction[keyof typeof PendingApprovalAction];
|
|
15620
|
+
/**
|
|
15621
|
+
* The maximum duration for which the access is permitted.
|
|
15622
|
+
* @export
|
|
15623
|
+
* @interface PendingApprovalMaxPermittedAccessDuration
|
|
15624
|
+
*/
|
|
15625
|
+
export interface PendingApprovalMaxPermittedAccessDuration {
|
|
15626
|
+
/**
|
|
15627
|
+
* The numeric value of the duration.
|
|
15628
|
+
* @type {number}
|
|
15629
|
+
* @memberof PendingApprovalMaxPermittedAccessDuration
|
|
15630
|
+
*/
|
|
15631
|
+
'value'?: number;
|
|
15632
|
+
/**
|
|
15633
|
+
* The time unit for the duration.
|
|
15634
|
+
* @type {string}
|
|
15635
|
+
* @memberof PendingApprovalMaxPermittedAccessDuration
|
|
15636
|
+
*/
|
|
15637
|
+
'timeUnit'?: PendingApprovalMaxPermittedAccessDurationTimeUnitV3;
|
|
15638
|
+
}
|
|
15639
|
+
export declare const PendingApprovalMaxPermittedAccessDurationTimeUnitV3: {
|
|
15640
|
+
readonly Hours: "HOURS";
|
|
15641
|
+
readonly Days: "DAYS";
|
|
15642
|
+
readonly Weeks: "WEEKS";
|
|
15643
|
+
readonly Months: "MONTHS";
|
|
15644
|
+
};
|
|
15645
|
+
export type PendingApprovalMaxPermittedAccessDurationTimeUnitV3 = typeof PendingApprovalMaxPermittedAccessDurationTimeUnitV3[keyof typeof PendingApprovalMaxPermittedAccessDurationTimeUnitV3];
|
|
15490
15646
|
/**
|
|
15491
15647
|
* Access item owner\'s identity.
|
|
15492
15648
|
* @export
|
|
@@ -16813,6 +16969,18 @@ export interface Requestability {
|
|
|
16813
16969
|
* @memberof Requestability
|
|
16814
16970
|
*/
|
|
16815
16971
|
'reauthorizationRequired'?: boolean | null;
|
|
16972
|
+
/**
|
|
16973
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
16974
|
+
* @type {boolean}
|
|
16975
|
+
* @memberof Requestability
|
|
16976
|
+
*/
|
|
16977
|
+
'requireEndDate'?: boolean | null;
|
|
16978
|
+
/**
|
|
16979
|
+
*
|
|
16980
|
+
* @type {AccessDuration}
|
|
16981
|
+
* @memberof Requestability
|
|
16982
|
+
*/
|
|
16983
|
+
'maxPermittedAccessDuration'?: AccessDuration | null;
|
|
16816
16984
|
/**
|
|
16817
16985
|
* List describing the steps involved in approving the request.
|
|
16818
16986
|
* @type {Array<AccessProfileApprovalScheme>}
|
|
@@ -29371,7 +29539,7 @@ export declare const CertificationsApiAxiosParamCreator: (configuration?: Config
|
|
|
29371
29539
|
*/
|
|
29372
29540
|
listIdentityAccessReviewItems: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, entitlements?: string, accessProfiles?: string, roles?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
29373
29541
|
/**
|
|
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.
|
|
29542
|
+
* 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
29543
|
* @summary List identity campaign certifications
|
|
29376
29544
|
* @param {string} [reviewerIdentity] Reviewer\'s identity. *me* indicates the current user.
|
|
29377
29545
|
* @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 +29663,7 @@ export declare const CertificationsApiFp: (configuration?: Configuration) => {
|
|
|
29495
29663
|
*/
|
|
29496
29664
|
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
29665
|
/**
|
|
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.
|
|
29666
|
+
* 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
29667
|
* @summary List identity campaign certifications
|
|
29500
29668
|
* @param {string} [reviewerIdentity] Reviewer\'s identity. *me* indicates the current user.
|
|
29501
29669
|
* @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 +29765,7 @@ export declare const CertificationsApiFactory: (configuration?: Configuration, b
|
|
|
29597
29765
|
*/
|
|
29598
29766
|
listIdentityAccessReviewItems(requestParameters: CertificationsApiListIdentityAccessReviewItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessReviewItem>>;
|
|
29599
29767
|
/**
|
|
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.
|
|
29768
|
+
* 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
29769
|
* @summary List identity campaign certifications
|
|
29602
29770
|
* @param {CertificationsApiListIdentityCertificationsRequest} requestParameters Request parameters.
|
|
29603
29771
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -30022,7 +30190,7 @@ export declare class CertificationsApi extends BaseAPI {
|
|
|
30022
30190
|
*/
|
|
30023
30191
|
listIdentityAccessReviewItems(requestParameters: CertificationsApiListIdentityAccessReviewItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessReviewItem[], any>>;
|
|
30024
30192
|
/**
|
|
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.
|
|
30193
|
+
* 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
30194
|
* @summary List identity campaign certifications
|
|
30027
30195
|
* @param {CertificationsApiListIdentityCertificationsRequest} requestParameters Request parameters.
|
|
30028
30196
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33700,7 +33868,7 @@ export declare const ManagedClustersApiAxiosParamCreator: (configuration?: Confi
|
|
|
33700
33868
|
* @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
33869
|
* @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
33870
|
* @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*
|
|
33871
|
+
* @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
33872
|
* @param {*} [axiosOptions] Override http request option.
|
|
33705
33873
|
* @throws {RequiredError}
|
|
33706
33874
|
*/
|
|
@@ -33768,7 +33936,7 @@ export declare const ManagedClustersApiFp: (configuration?: Configuration) => {
|
|
|
33768
33936
|
* @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
33937
|
* @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
33938
|
* @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*
|
|
33939
|
+
* @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
33940
|
* @param {*} [axiosOptions] Override http request option.
|
|
33773
33941
|
* @throws {RequiredError}
|
|
33774
33942
|
*/
|
|
@@ -33937,7 +34105,7 @@ export interface ManagedClustersApiGetManagedClustersRequest {
|
|
|
33937
34105
|
*/
|
|
33938
34106
|
readonly count?: boolean;
|
|
33939
34107
|
/**
|
|
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*
|
|
34108
|
+
* 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
34109
|
* @type {string}
|
|
33942
34110
|
* @memberof ManagedClustersApiGetManagedClusters
|
|
33943
34111
|
*/
|