sailpoint-api-client 1.7.1 → 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 +485 -56
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +258 -39
- package/dist/beta/api.js +475 -28
- 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 +275 -69
- package/dist/v2024/api.js +497 -63
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +848 -94
- package/dist/v2025/api.js +1224 -126
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/common.js +1 -1
- package/dist/v3/api.d.ts +21 -8
- package/dist/v3/api.js +9 -8
- 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 +509 -109
- 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 +1436 -193
- 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/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 +22 -9
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/v2024/api.ts
CHANGED
|
@@ -3080,14 +3080,15 @@ export interface AccessRequestTrackingV2024 {
|
|
|
3080
3080
|
'accessRequestIds'?: Array<string>;
|
|
3081
3081
|
}
|
|
3082
3082
|
/**
|
|
3083
|
-
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
|
|
3083
|
+
* 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.
|
|
3084
3084
|
* @export
|
|
3085
3085
|
* @enum {string}
|
|
3086
3086
|
*/
|
|
3087
3087
|
|
|
3088
3088
|
export const AccessRequestTypeV2024 = {
|
|
3089
3089
|
GrantAccess: 'GRANT_ACCESS',
|
|
3090
|
-
RevokeAccess: 'REVOKE_ACCESS'
|
|
3090
|
+
RevokeAccess: 'REVOKE_ACCESS',
|
|
3091
|
+
ModifyAccess: 'MODIFY_ACCESS'
|
|
3091
3092
|
} as const;
|
|
3092
3093
|
|
|
3093
3094
|
export type AccessRequestTypeV2024 = typeof AccessRequestTypeV2024[keyof typeof AccessRequestTypeV2024];
|
|
@@ -7069,7 +7070,10 @@ export interface AttributeMappingsAllOfTargetV2024 {
|
|
|
7069
7070
|
}
|
|
7070
7071
|
|
|
7071
7072
|
export const AttributeMappingsAllOfTargetV2024TypeV2024 = {
|
|
7072
|
-
|
|
7073
|
+
Account: 'ACCOUNT',
|
|
7074
|
+
Identity: 'IDENTITY',
|
|
7075
|
+
OwnerAccount: 'OWNER_ACCOUNT',
|
|
7076
|
+
OwnerIdentity: 'OWNER_IDENTITY'
|
|
7073
7077
|
} as const;
|
|
7074
7078
|
|
|
7075
7079
|
export type AttributeMappingsAllOfTargetV2024TypeV2024 = typeof AttributeMappingsAllOfTargetV2024TypeV2024[keyof typeof AttributeMappingsAllOfTargetV2024TypeV2024];
|
|
@@ -18512,6 +18516,12 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
|
|
|
18512
18516
|
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
18513
18517
|
*/
|
|
18514
18518
|
'addedDate'?: string;
|
|
18519
|
+
/**
|
|
18520
|
+
* Date that the assignment will be removed
|
|
18521
|
+
* @type {string}
|
|
18522
|
+
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
18523
|
+
*/
|
|
18524
|
+
'removeDate'?: string | null;
|
|
18515
18525
|
/**
|
|
18516
18526
|
* Comments added by the user when the assignment was made
|
|
18517
18527
|
* @type {string}
|
|
@@ -18548,12 +18558,6 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
|
|
|
18548
18558
|
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
18549
18559
|
*/
|
|
18550
18560
|
'accountTargets'?: Array<RoleTargetDtoV2024>;
|
|
18551
|
-
/**
|
|
18552
|
-
* Date that the assignment will be removed
|
|
18553
|
-
* @type {string}
|
|
18554
|
-
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
18555
|
-
*/
|
|
18556
|
-
'removeDate'?: string | null;
|
|
18557
18561
|
}
|
|
18558
18562
|
/**
|
|
18559
18563
|
*
|
|
@@ -31001,6 +31005,18 @@ export interface RequestabilityForRoleV2024 {
|
|
|
31001
31005
|
* @memberof RequestabilityForRoleV2024
|
|
31002
31006
|
*/
|
|
31003
31007
|
'reauthorizationRequired'?: boolean | null;
|
|
31008
|
+
/**
|
|
31009
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
31010
|
+
* @type {boolean}
|
|
31011
|
+
* @memberof RequestabilityForRoleV2024
|
|
31012
|
+
*/
|
|
31013
|
+
'requireEndDate'?: boolean | null;
|
|
31014
|
+
/**
|
|
31015
|
+
*
|
|
31016
|
+
* @type {AccessDurationV2024}
|
|
31017
|
+
* @memberof RequestabilityForRoleV2024
|
|
31018
|
+
*/
|
|
31019
|
+
'maxPermittedAccessDuration'?: AccessDurationV2024 | null;
|
|
31004
31020
|
/**
|
|
31005
31021
|
* List describing the steps in approving the request
|
|
31006
31022
|
* @type {Array<ApprovalSchemeForRoleV2024>}
|
|
@@ -32619,6 +32635,12 @@ export interface RoleAssignmentRefV2024 {
|
|
|
32619
32635
|
* @memberof RoleAssignmentRefV2024
|
|
32620
32636
|
*/
|
|
32621
32637
|
'addedDate'?: string;
|
|
32638
|
+
/**
|
|
32639
|
+
* Date that the assignment will be removed
|
|
32640
|
+
* @type {string}
|
|
32641
|
+
* @memberof RoleAssignmentRefV2024
|
|
32642
|
+
*/
|
|
32643
|
+
'removeDate'?: string | null;
|
|
32622
32644
|
}
|
|
32623
32645
|
/**
|
|
32624
32646
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -35191,11 +35213,11 @@ export interface RoleTargetDtoV2024 {
|
|
|
35191
35213
|
*/
|
|
35192
35214
|
'accountInfo'?: AccountInfoDtoV2024;
|
|
35193
35215
|
/**
|
|
35194
|
-
*
|
|
35195
|
-
* @type {
|
|
35216
|
+
*
|
|
35217
|
+
* @type {BaseReferenceDtoV2024}
|
|
35196
35218
|
* @memberof RoleTargetDtoV2024
|
|
35197
35219
|
*/
|
|
35198
|
-
'
|
|
35220
|
+
'role'?: BaseReferenceDtoV2024;
|
|
35199
35221
|
}
|
|
35200
35222
|
/**
|
|
35201
35223
|
* A Role
|
|
@@ -45693,6 +45715,106 @@ export interface WorkgroupMemberDeleteItemV2024 {
|
|
|
45693
45715
|
*/
|
|
45694
45716
|
export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
45695
45717
|
return {
|
|
45718
|
+
/**
|
|
45719
|
+
* Create a new Access Model Metadata Attribute.
|
|
45720
|
+
* @summary Create access model metadata attribute
|
|
45721
|
+
* @param {AttributeDTOV2024} attributeDTOV2024 Attribute to create
|
|
45722
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
45723
|
+
* @throws {RequiredError}
|
|
45724
|
+
*/
|
|
45725
|
+
createAccessModelMetadataAttribute: async (attributeDTOV2024: AttributeDTOV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
45726
|
+
// verify required parameter 'attributeDTOV2024' is not null or undefined
|
|
45727
|
+
assertParamExists('createAccessModelMetadataAttribute', 'attributeDTOV2024', attributeDTOV2024)
|
|
45728
|
+
const localVarPath = `/access-model-metadata/attributes`;
|
|
45729
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
45730
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
45731
|
+
let baseOptions;
|
|
45732
|
+
if (configuration) {
|
|
45733
|
+
baseOptions = configuration.baseOptions;
|
|
45734
|
+
}
|
|
45735
|
+
|
|
45736
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
45737
|
+
const localVarHeaderParameter = {} as any;
|
|
45738
|
+
const localVarQueryParameter = {} as any;
|
|
45739
|
+
|
|
45740
|
+
// authentication userAuth required
|
|
45741
|
+
// oauth required
|
|
45742
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45743
|
+
|
|
45744
|
+
// authentication userAuth required
|
|
45745
|
+
// oauth required
|
|
45746
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45747
|
+
|
|
45748
|
+
// authentication applicationAuth required
|
|
45749
|
+
// oauth required
|
|
45750
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
45751
|
+
|
|
45752
|
+
|
|
45753
|
+
|
|
45754
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
45755
|
+
|
|
45756
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
45757
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
45758
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
45759
|
+
localVarRequestOptions.data = serializeDataIfNeeded(attributeDTOV2024, localVarRequestOptions, configuration)
|
|
45760
|
+
|
|
45761
|
+
return {
|
|
45762
|
+
url: toPathString(localVarUrlObj),
|
|
45763
|
+
axiosOptions: localVarRequestOptions,
|
|
45764
|
+
};
|
|
45765
|
+
},
|
|
45766
|
+
/**
|
|
45767
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
45768
|
+
* @summary Create access model metadata value
|
|
45769
|
+
* @param {string} key Technical name of the Attribute.
|
|
45770
|
+
* @param {AttributeValueDTOV2024} attributeValueDTOV2024 Attribute value to create
|
|
45771
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
45772
|
+
* @throws {RequiredError}
|
|
45773
|
+
*/
|
|
45774
|
+
createAccessModelMetadataAttributeValue: async (key: string, attributeValueDTOV2024: AttributeValueDTOV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
45775
|
+
// verify required parameter 'key' is not null or undefined
|
|
45776
|
+
assertParamExists('createAccessModelMetadataAttributeValue', 'key', key)
|
|
45777
|
+
// verify required parameter 'attributeValueDTOV2024' is not null or undefined
|
|
45778
|
+
assertParamExists('createAccessModelMetadataAttributeValue', 'attributeValueDTOV2024', attributeValueDTOV2024)
|
|
45779
|
+
const localVarPath = `/access-model-metadata/attributes/{key}/values`
|
|
45780
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
45781
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
45782
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
45783
|
+
let baseOptions;
|
|
45784
|
+
if (configuration) {
|
|
45785
|
+
baseOptions = configuration.baseOptions;
|
|
45786
|
+
}
|
|
45787
|
+
|
|
45788
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
45789
|
+
const localVarHeaderParameter = {} as any;
|
|
45790
|
+
const localVarQueryParameter = {} as any;
|
|
45791
|
+
|
|
45792
|
+
// authentication userAuth required
|
|
45793
|
+
// oauth required
|
|
45794
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45795
|
+
|
|
45796
|
+
// authentication userAuth required
|
|
45797
|
+
// oauth required
|
|
45798
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
45799
|
+
|
|
45800
|
+
// authentication applicationAuth required
|
|
45801
|
+
// oauth required
|
|
45802
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
45803
|
+
|
|
45804
|
+
|
|
45805
|
+
|
|
45806
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
45807
|
+
|
|
45808
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
45809
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
45810
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
45811
|
+
localVarRequestOptions.data = serializeDataIfNeeded(attributeValueDTOV2024, localVarRequestOptions, configuration)
|
|
45812
|
+
|
|
45813
|
+
return {
|
|
45814
|
+
url: toPathString(localVarUrlObj),
|
|
45815
|
+
axiosOptions: localVarRequestOptions,
|
|
45816
|
+
};
|
|
45817
|
+
},
|
|
45696
45818
|
/**
|
|
45697
45819
|
* Get single Access Model Metadata Attribute
|
|
45698
45820
|
* @summary Get access model metadata attribute
|
|
@@ -45792,15 +45914,14 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45792
45914
|
/**
|
|
45793
45915
|
* Get a list of Access Model Metadata Attributes
|
|
45794
45916
|
* @summary List access model metadata attributes
|
|
45795
|
-
* @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
45917
|
+
* @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
45796
45918
|
* @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, key**
|
|
45797
|
-
* @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.
|
|
45798
45919
|
* @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.
|
|
45799
45920
|
* @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.
|
|
45800
45921
|
* @param {*} [axiosOptions] Override http request option.
|
|
45801
45922
|
* @throws {RequiredError}
|
|
45802
45923
|
*/
|
|
45803
|
-
listAccessModelMetadataAttribute: async (filters?: string, sorters?: string,
|
|
45924
|
+
listAccessModelMetadataAttribute: async (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
45804
45925
|
const localVarPath = `/access-model-metadata/attributes`;
|
|
45805
45926
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
45806
45927
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -45833,10 +45954,6 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45833
45954
|
localVarQueryParameter['sorters'] = sorters;
|
|
45834
45955
|
}
|
|
45835
45956
|
|
|
45836
|
-
if (offset !== undefined) {
|
|
45837
|
-
localVarQueryParameter['offset'] = offset;
|
|
45838
|
-
}
|
|
45839
|
-
|
|
45840
45957
|
if (limit !== undefined) {
|
|
45841
45958
|
localVarQueryParameter['limit'] = limit;
|
|
45842
45959
|
}
|
|
@@ -45860,13 +45977,12 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45860
45977
|
* Get a list of Access Model Metadata Attribute Values
|
|
45861
45978
|
* @summary List access model metadata values
|
|
45862
45979
|
* @param {string} key Technical name of the Attribute.
|
|
45863
|
-
* @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.
|
|
45864
45980
|
* @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.
|
|
45865
45981
|
* @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.
|
|
45866
45982
|
* @param {*} [axiosOptions] Override http request option.
|
|
45867
45983
|
* @throws {RequiredError}
|
|
45868
45984
|
*/
|
|
45869
|
-
listAccessModelMetadataAttributeValue: async (key: string,
|
|
45985
|
+
listAccessModelMetadataAttributeValue: async (key: string, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
45870
45986
|
// verify required parameter 'key' is not null or undefined
|
|
45871
45987
|
assertParamExists('listAccessModelMetadataAttributeValue', 'key', key)
|
|
45872
45988
|
const localVarPath = `/access-model-metadata/attributes/{key}/values`
|
|
@@ -45894,10 +46010,6 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45894
46010
|
// oauth required
|
|
45895
46011
|
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
45896
46012
|
|
|
45897
|
-
if (offset !== undefined) {
|
|
45898
|
-
localVarQueryParameter['offset'] = offset;
|
|
45899
|
-
}
|
|
45900
|
-
|
|
45901
46013
|
if (limit !== undefined) {
|
|
45902
46014
|
localVarQueryParameter['limit'] = limit;
|
|
45903
46015
|
}
|
|
@@ -45912,6 +46024,114 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45912
46024
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
45913
46025
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
45914
46026
|
|
|
46027
|
+
return {
|
|
46028
|
+
url: toPathString(localVarUrlObj),
|
|
46029
|
+
axiosOptions: localVarRequestOptions,
|
|
46030
|
+
};
|
|
46031
|
+
},
|
|
46032
|
+
/**
|
|
46033
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
46034
|
+
* @summary Update access model metadata attribute
|
|
46035
|
+
* @param {string} key Technical name of the Attribute.
|
|
46036
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
|
|
46037
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46038
|
+
* @throws {RequiredError}
|
|
46039
|
+
*/
|
|
46040
|
+
updateAccessModelMetadataAttribute: async (key: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
46041
|
+
// verify required parameter 'key' is not null or undefined
|
|
46042
|
+
assertParamExists('updateAccessModelMetadataAttribute', 'key', key)
|
|
46043
|
+
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
46044
|
+
assertParamExists('updateAccessModelMetadataAttribute', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
46045
|
+
const localVarPath = `/access-model-metadata/attributes/{key}`
|
|
46046
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
46047
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
46048
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
46049
|
+
let baseOptions;
|
|
46050
|
+
if (configuration) {
|
|
46051
|
+
baseOptions = configuration.baseOptions;
|
|
46052
|
+
}
|
|
46053
|
+
|
|
46054
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
|
|
46055
|
+
const localVarHeaderParameter = {} as any;
|
|
46056
|
+
const localVarQueryParameter = {} as any;
|
|
46057
|
+
|
|
46058
|
+
// authentication userAuth required
|
|
46059
|
+
// oauth required
|
|
46060
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46061
|
+
|
|
46062
|
+
// authentication userAuth required
|
|
46063
|
+
// oauth required
|
|
46064
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46065
|
+
|
|
46066
|
+
// authentication applicationAuth required
|
|
46067
|
+
// oauth required
|
|
46068
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46069
|
+
|
|
46070
|
+
|
|
46071
|
+
|
|
46072
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
46073
|
+
|
|
46074
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
46075
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
46076
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
46077
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2024, localVarRequestOptions, configuration)
|
|
46078
|
+
|
|
46079
|
+
return {
|
|
46080
|
+
url: toPathString(localVarUrlObj),
|
|
46081
|
+
axiosOptions: localVarRequestOptions,
|
|
46082
|
+
};
|
|
46083
|
+
},
|
|
46084
|
+
/**
|
|
46085
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
46086
|
+
* @summary Update access model metadata value
|
|
46087
|
+
* @param {string} key Technical name of the Attribute.
|
|
46088
|
+
* @param {string} value Technical name of the Attribute value.
|
|
46089
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
|
|
46090
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46091
|
+
* @throws {RequiredError}
|
|
46092
|
+
*/
|
|
46093
|
+
updateAccessModelMetadataAttributeValue: async (key: string, value: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
46094
|
+
// verify required parameter 'key' is not null or undefined
|
|
46095
|
+
assertParamExists('updateAccessModelMetadataAttributeValue', 'key', key)
|
|
46096
|
+
// verify required parameter 'value' is not null or undefined
|
|
46097
|
+
assertParamExists('updateAccessModelMetadataAttributeValue', 'value', value)
|
|
46098
|
+
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
46099
|
+
assertParamExists('updateAccessModelMetadataAttributeValue', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
46100
|
+
const localVarPath = `/access-model-metadata/attributes/{key}/values/{value}`
|
|
46101
|
+
.replace(`{${"key"}}`, encodeURIComponent(String(key)))
|
|
46102
|
+
.replace(`{${"value"}}`, encodeURIComponent(String(value)));
|
|
46103
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
46104
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
46105
|
+
let baseOptions;
|
|
46106
|
+
if (configuration) {
|
|
46107
|
+
baseOptions = configuration.baseOptions;
|
|
46108
|
+
}
|
|
46109
|
+
|
|
46110
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
|
|
46111
|
+
const localVarHeaderParameter = {} as any;
|
|
46112
|
+
const localVarQueryParameter = {} as any;
|
|
46113
|
+
|
|
46114
|
+
// authentication userAuth required
|
|
46115
|
+
// oauth required
|
|
46116
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46117
|
+
|
|
46118
|
+
// authentication userAuth required
|
|
46119
|
+
// oauth required
|
|
46120
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
46121
|
+
|
|
46122
|
+
// authentication applicationAuth required
|
|
46123
|
+
// oauth required
|
|
46124
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
46125
|
+
|
|
46126
|
+
|
|
46127
|
+
|
|
46128
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
46129
|
+
|
|
46130
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
46131
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
46132
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
46133
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2024, localVarRequestOptions, configuration)
|
|
46134
|
+
|
|
45915
46135
|
return {
|
|
45916
46136
|
url: toPathString(localVarUrlObj),
|
|
45917
46137
|
axiosOptions: localVarRequestOptions,
|
|
@@ -45927,6 +46147,33 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
45927
46147
|
export const AccessModelMetadataV2024ApiFp = function(configuration?: Configuration) {
|
|
45928
46148
|
const localVarAxiosParamCreator = AccessModelMetadataV2024ApiAxiosParamCreator(configuration)
|
|
45929
46149
|
return {
|
|
46150
|
+
/**
|
|
46151
|
+
* Create a new Access Model Metadata Attribute.
|
|
46152
|
+
* @summary Create access model metadata attribute
|
|
46153
|
+
* @param {AttributeDTOV2024} attributeDTOV2024 Attribute to create
|
|
46154
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46155
|
+
* @throws {RequiredError}
|
|
46156
|
+
*/
|
|
46157
|
+
async createAccessModelMetadataAttribute(attributeDTOV2024: AttributeDTOV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2024>> {
|
|
46158
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createAccessModelMetadataAttribute(attributeDTOV2024, axiosOptions);
|
|
46159
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
46160
|
+
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.createAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
|
|
46161
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
46162
|
+
},
|
|
46163
|
+
/**
|
|
46164
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
46165
|
+
* @summary Create access model metadata value
|
|
46166
|
+
* @param {string} key Technical name of the Attribute.
|
|
46167
|
+
* @param {AttributeValueDTOV2024} attributeValueDTOV2024 Attribute value to create
|
|
46168
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46169
|
+
* @throws {RequiredError}
|
|
46170
|
+
*/
|
|
46171
|
+
async createAccessModelMetadataAttributeValue(key: string, attributeValueDTOV2024: AttributeValueDTOV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2024>> {
|
|
46172
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createAccessModelMetadataAttributeValue(key, attributeValueDTOV2024, axiosOptions);
|
|
46173
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
46174
|
+
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.createAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
|
|
46175
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
46176
|
+
},
|
|
45930
46177
|
/**
|
|
45931
46178
|
* Get single Access Model Metadata Attribute
|
|
45932
46179
|
* @summary Get access model metadata attribute
|
|
@@ -45957,16 +46204,15 @@ export const AccessModelMetadataV2024ApiFp = function(configuration?: Configurat
|
|
|
45957
46204
|
/**
|
|
45958
46205
|
* Get a list of Access Model Metadata Attributes
|
|
45959
46206
|
* @summary List access model metadata attributes
|
|
45960
|
-
* @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
46207
|
+
* @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
45961
46208
|
* @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, key**
|
|
45962
|
-
* @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.
|
|
45963
46209
|
* @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.
|
|
45964
46210
|
* @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.
|
|
45965
46211
|
* @param {*} [axiosOptions] Override http request option.
|
|
45966
46212
|
* @throws {RequiredError}
|
|
45967
46213
|
*/
|
|
45968
|
-
async listAccessModelMetadataAttribute(filters?: string, sorters?: string,
|
|
45969
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttribute(filters, sorters,
|
|
46214
|
+
async listAccessModelMetadataAttribute(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2024>>> {
|
|
46215
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttribute(filters, sorters, limit, count, axiosOptions);
|
|
45970
46216
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
45971
46217
|
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.listAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
|
|
45972
46218
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -45975,18 +46221,46 @@ export const AccessModelMetadataV2024ApiFp = function(configuration?: Configurat
|
|
|
45975
46221
|
* Get a list of Access Model Metadata Attribute Values
|
|
45976
46222
|
* @summary List access model metadata values
|
|
45977
46223
|
* @param {string} key Technical name of the Attribute.
|
|
45978
|
-
* @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.
|
|
45979
46224
|
* @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.
|
|
45980
46225
|
* @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.
|
|
45981
46226
|
* @param {*} [axiosOptions] Override http request option.
|
|
45982
46227
|
* @throws {RequiredError}
|
|
45983
46228
|
*/
|
|
45984
|
-
async listAccessModelMetadataAttributeValue(key: string,
|
|
45985
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttributeValue(key,
|
|
46229
|
+
async listAccessModelMetadataAttributeValue(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2024>>> {
|
|
46230
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttributeValue(key, limit, count, axiosOptions);
|
|
45986
46231
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
45987
46232
|
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.listAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
|
|
45988
46233
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
45989
46234
|
},
|
|
46235
|
+
/**
|
|
46236
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
46237
|
+
* @summary Update access model metadata attribute
|
|
46238
|
+
* @param {string} key Technical name of the Attribute.
|
|
46239
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
|
|
46240
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46241
|
+
* @throws {RequiredError}
|
|
46242
|
+
*/
|
|
46243
|
+
async updateAccessModelMetadataAttribute(key: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2024>> {
|
|
46244
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAccessModelMetadataAttribute(key, jsonPatchOperationV2024, axiosOptions);
|
|
46245
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
46246
|
+
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.updateAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
|
|
46247
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
46248
|
+
},
|
|
46249
|
+
/**
|
|
46250
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
46251
|
+
* @summary Update access model metadata value
|
|
46252
|
+
* @param {string} key Technical name of the Attribute.
|
|
46253
|
+
* @param {string} value Technical name of the Attribute value.
|
|
46254
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
|
|
46255
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46256
|
+
* @throws {RequiredError}
|
|
46257
|
+
*/
|
|
46258
|
+
async updateAccessModelMetadataAttributeValue(key: string, value: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2024>> {
|
|
46259
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAccessModelMetadataAttributeValue(key, value, jsonPatchOperationV2024, axiosOptions);
|
|
46260
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
46261
|
+
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.updateAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
|
|
46262
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
46263
|
+
},
|
|
45990
46264
|
}
|
|
45991
46265
|
};
|
|
45992
46266
|
|
|
@@ -45997,6 +46271,26 @@ export const AccessModelMetadataV2024ApiFp = function(configuration?: Configurat
|
|
|
45997
46271
|
export const AccessModelMetadataV2024ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
45998
46272
|
const localVarFp = AccessModelMetadataV2024ApiFp(configuration)
|
|
45999
46273
|
return {
|
|
46274
|
+
/**
|
|
46275
|
+
* Create a new Access Model Metadata Attribute.
|
|
46276
|
+
* @summary Create access model metadata attribute
|
|
46277
|
+
* @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
46278
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46279
|
+
* @throws {RequiredError}
|
|
46280
|
+
*/
|
|
46281
|
+
createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2024> {
|
|
46282
|
+
return localVarFp.createAccessModelMetadataAttribute(requestParameters.attributeDTOV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
46283
|
+
},
|
|
46284
|
+
/**
|
|
46285
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
46286
|
+
* @summary Create access model metadata value
|
|
46287
|
+
* @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
46288
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46289
|
+
* @throws {RequiredError}
|
|
46290
|
+
*/
|
|
46291
|
+
createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2024> {
|
|
46292
|
+
return localVarFp.createAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.attributeValueDTOV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
46293
|
+
},
|
|
46000
46294
|
/**
|
|
46001
46295
|
* Get single Access Model Metadata Attribute
|
|
46002
46296
|
* @summary Get access model metadata attribute
|
|
@@ -46025,7 +46319,7 @@ export const AccessModelMetadataV2024ApiFactory = function (configuration?: Conf
|
|
|
46025
46319
|
* @throws {RequiredError}
|
|
46026
46320
|
*/
|
|
46027
46321
|
listAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeDTOV2024>> {
|
|
46028
|
-
return localVarFp.listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.
|
|
46322
|
+
return localVarFp.listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
46029
46323
|
},
|
|
46030
46324
|
/**
|
|
46031
46325
|
* Get a list of Access Model Metadata Attribute Values
|
|
@@ -46035,11 +46329,66 @@ export const AccessModelMetadataV2024ApiFactory = function (configuration?: Conf
|
|
|
46035
46329
|
* @throws {RequiredError}
|
|
46036
46330
|
*/
|
|
46037
46331
|
listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOV2024>> {
|
|
46038
|
-
return localVarFp.listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.
|
|
46332
|
+
return localVarFp.listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
46333
|
+
},
|
|
46334
|
+
/**
|
|
46335
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
46336
|
+
* @summary Update access model metadata attribute
|
|
46337
|
+
* @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
46338
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46339
|
+
* @throws {RequiredError}
|
|
46340
|
+
*/
|
|
46341
|
+
updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2024> {
|
|
46342
|
+
return localVarFp.updateAccessModelMetadataAttribute(requestParameters.key, requestParameters.jsonPatchOperationV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
46343
|
+
},
|
|
46344
|
+
/**
|
|
46345
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
46346
|
+
* @summary Update access model metadata value
|
|
46347
|
+
* @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
46348
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46349
|
+
* @throws {RequiredError}
|
|
46350
|
+
*/
|
|
46351
|
+
updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2024> {
|
|
46352
|
+
return localVarFp.updateAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value, requestParameters.jsonPatchOperationV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
46039
46353
|
},
|
|
46040
46354
|
};
|
|
46041
46355
|
};
|
|
46042
46356
|
|
|
46357
|
+
/**
|
|
46358
|
+
* Request parameters for createAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
|
|
46359
|
+
* @export
|
|
46360
|
+
* @interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest
|
|
46361
|
+
*/
|
|
46362
|
+
export interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest {
|
|
46363
|
+
/**
|
|
46364
|
+
* Attribute to create
|
|
46365
|
+
* @type {AttributeDTOV2024}
|
|
46366
|
+
* @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttribute
|
|
46367
|
+
*/
|
|
46368
|
+
readonly attributeDTOV2024: AttributeDTOV2024
|
|
46369
|
+
}
|
|
46370
|
+
|
|
46371
|
+
/**
|
|
46372
|
+
* Request parameters for createAccessModelMetadataAttributeValue operation in AccessModelMetadataV2024Api.
|
|
46373
|
+
* @export
|
|
46374
|
+
* @interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest
|
|
46375
|
+
*/
|
|
46376
|
+
export interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest {
|
|
46377
|
+
/**
|
|
46378
|
+
* Technical name of the Attribute.
|
|
46379
|
+
* @type {string}
|
|
46380
|
+
* @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValue
|
|
46381
|
+
*/
|
|
46382
|
+
readonly key: string
|
|
46383
|
+
|
|
46384
|
+
/**
|
|
46385
|
+
* Attribute value to create
|
|
46386
|
+
* @type {AttributeValueDTOV2024}
|
|
46387
|
+
* @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValue
|
|
46388
|
+
*/
|
|
46389
|
+
readonly attributeValueDTOV2024: AttributeValueDTOV2024
|
|
46390
|
+
}
|
|
46391
|
+
|
|
46043
46392
|
/**
|
|
46044
46393
|
* Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
|
|
46045
46394
|
* @export
|
|
@@ -46082,7 +46431,7 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
|
46082
46431
|
*/
|
|
46083
46432
|
export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest {
|
|
46084
46433
|
/**
|
|
46085
|
-
* 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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
46434
|
+
* 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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
46086
46435
|
* @type {string}
|
|
46087
46436
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
46088
46437
|
*/
|
|
@@ -46095,13 +46444,6 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequ
|
|
|
46095
46444
|
*/
|
|
46096
46445
|
readonly sorters?: string
|
|
46097
46446
|
|
|
46098
|
-
/**
|
|
46099
|
-
* 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.
|
|
46100
|
-
* @type {number}
|
|
46101
|
-
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
46102
|
-
*/
|
|
46103
|
-
readonly offset?: number
|
|
46104
|
-
|
|
46105
46447
|
/**
|
|
46106
46448
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
46107
46449
|
* @type {number}
|
|
@@ -46130,13 +46472,6 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
|
|
|
46130
46472
|
*/
|
|
46131
46473
|
readonly key: string
|
|
46132
46474
|
|
|
46133
|
-
/**
|
|
46134
|
-
* 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.
|
|
46135
|
-
* @type {number}
|
|
46136
|
-
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
46137
|
-
*/
|
|
46138
|
-
readonly offset?: number
|
|
46139
|
-
|
|
46140
46475
|
/**
|
|
46141
46476
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
46142
46477
|
* @type {number}
|
|
@@ -46152,6 +46487,55 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
|
|
|
46152
46487
|
readonly count?: boolean
|
|
46153
46488
|
}
|
|
46154
46489
|
|
|
46490
|
+
/**
|
|
46491
|
+
* Request parameters for updateAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
|
|
46492
|
+
* @export
|
|
46493
|
+
* @interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest
|
|
46494
|
+
*/
|
|
46495
|
+
export interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest {
|
|
46496
|
+
/**
|
|
46497
|
+
* Technical name of the Attribute.
|
|
46498
|
+
* @type {string}
|
|
46499
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttribute
|
|
46500
|
+
*/
|
|
46501
|
+
readonly key: string
|
|
46502
|
+
|
|
46503
|
+
/**
|
|
46504
|
+
* JSON Patch array to apply
|
|
46505
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
46506
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttribute
|
|
46507
|
+
*/
|
|
46508
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>
|
|
46509
|
+
}
|
|
46510
|
+
|
|
46511
|
+
/**
|
|
46512
|
+
* Request parameters for updateAccessModelMetadataAttributeValue operation in AccessModelMetadataV2024Api.
|
|
46513
|
+
* @export
|
|
46514
|
+
* @interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest
|
|
46515
|
+
*/
|
|
46516
|
+
export interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest {
|
|
46517
|
+
/**
|
|
46518
|
+
* Technical name of the Attribute.
|
|
46519
|
+
* @type {string}
|
|
46520
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
|
|
46521
|
+
*/
|
|
46522
|
+
readonly key: string
|
|
46523
|
+
|
|
46524
|
+
/**
|
|
46525
|
+
* Technical name of the Attribute value.
|
|
46526
|
+
* @type {string}
|
|
46527
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
|
|
46528
|
+
*/
|
|
46529
|
+
readonly value: string
|
|
46530
|
+
|
|
46531
|
+
/**
|
|
46532
|
+
* JSON Patch array to apply
|
|
46533
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
46534
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
|
|
46535
|
+
*/
|
|
46536
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>
|
|
46537
|
+
}
|
|
46538
|
+
|
|
46155
46539
|
/**
|
|
46156
46540
|
* AccessModelMetadataV2024Api - object-oriented interface
|
|
46157
46541
|
* @export
|
|
@@ -46159,6 +46543,30 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
|
|
|
46159
46543
|
* @extends {BaseAPI}
|
|
46160
46544
|
*/
|
|
46161
46545
|
export class AccessModelMetadataV2024Api extends BaseAPI {
|
|
46546
|
+
/**
|
|
46547
|
+
* Create a new Access Model Metadata Attribute.
|
|
46548
|
+
* @summary Create access model metadata attribute
|
|
46549
|
+
* @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
46550
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46551
|
+
* @throws {RequiredError}
|
|
46552
|
+
* @memberof AccessModelMetadataV2024Api
|
|
46553
|
+
*/
|
|
46554
|
+
public createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
46555
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).createAccessModelMetadataAttribute(requestParameters.attributeDTOV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
46556
|
+
}
|
|
46557
|
+
|
|
46558
|
+
/**
|
|
46559
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
46560
|
+
* @summary Create access model metadata value
|
|
46561
|
+
* @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
46562
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46563
|
+
* @throws {RequiredError}
|
|
46564
|
+
* @memberof AccessModelMetadataV2024Api
|
|
46565
|
+
*/
|
|
46566
|
+
public createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
46567
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).createAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.attributeValueDTOV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
46568
|
+
}
|
|
46569
|
+
|
|
46162
46570
|
/**
|
|
46163
46571
|
* Get single Access Model Metadata Attribute
|
|
46164
46572
|
* @summary Get access model metadata attribute
|
|
@@ -46192,7 +46600,7 @@ export class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
46192
46600
|
* @memberof AccessModelMetadataV2024Api
|
|
46193
46601
|
*/
|
|
46194
46602
|
public listAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
46195
|
-
return AccessModelMetadataV2024ApiFp(this.configuration).listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.
|
|
46603
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
46196
46604
|
}
|
|
46197
46605
|
|
|
46198
46606
|
/**
|
|
@@ -46204,7 +46612,31 @@ export class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
46204
46612
|
* @memberof AccessModelMetadataV2024Api
|
|
46205
46613
|
*/
|
|
46206
46614
|
public listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
46207
|
-
return AccessModelMetadataV2024ApiFp(this.configuration).listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.
|
|
46615
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
46616
|
+
}
|
|
46617
|
+
|
|
46618
|
+
/**
|
|
46619
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
46620
|
+
* @summary Update access model metadata attribute
|
|
46621
|
+
* @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
46622
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46623
|
+
* @throws {RequiredError}
|
|
46624
|
+
* @memberof AccessModelMetadataV2024Api
|
|
46625
|
+
*/
|
|
46626
|
+
public updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
46627
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).updateAccessModelMetadataAttribute(requestParameters.key, requestParameters.jsonPatchOperationV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
46628
|
+
}
|
|
46629
|
+
|
|
46630
|
+
/**
|
|
46631
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
46632
|
+
* @summary Update access model metadata value
|
|
46633
|
+
* @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
46634
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
46635
|
+
* @throws {RequiredError}
|
|
46636
|
+
* @memberof AccessModelMetadataV2024Api
|
|
46637
|
+
*/
|
|
46638
|
+
public updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
46639
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).updateAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value, requestParameters.jsonPatchOperationV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
46208
46640
|
}
|
|
46209
46641
|
}
|
|
46210
46642
|
|
|
@@ -48562,7 +48994,7 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
48562
48994
|
* @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.
|
|
48563
48995
|
* @param {number} [limit] Max number of results to return.
|
|
48564
48996
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
48565
|
-
* @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,
|
|
48997
|
+
* @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*
|
|
48566
48998
|
* @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**
|
|
48567
48999
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
48568
49000
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48946,7 +49378,7 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
|
|
|
48946
49378
|
* @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.
|
|
48947
49379
|
* @param {number} [limit] Max number of results to return.
|
|
48948
49380
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
48949
|
-
* @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,
|
|
49381
|
+
* @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*
|
|
48950
49382
|
* @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**
|
|
48951
49383
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
48952
49384
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -49284,7 +49716,7 @@ export interface AccessRequestsV2024ApiListAccessRequestStatusRequest {
|
|
|
49284
49716
|
readonly offset?: number
|
|
49285
49717
|
|
|
49286
49718
|
/**
|
|
49287
|
-
* 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,
|
|
49719
|
+
* 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*
|
|
49288
49720
|
* @type {string}
|
|
49289
49721
|
* @memberof AccessRequestsV2024ApiListAccessRequestStatus
|
|
49290
49722
|
*/
|
|
@@ -52896,7 +53328,7 @@ export const AppsV2024ApiAxiosParamCreator = function (configuration?: Configura
|
|
|
52896
53328
|
* @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.
|
|
52897
53329
|
* @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.
|
|
52898
53330
|
* @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: **id, name, created, modified, owner.id, accountSource.id**
|
|
52899
|
-
* @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* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
53331
|
+
* @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* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
52900
53332
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52901
53333
|
* @param {*} [axiosOptions] Override http request option.
|
|
52902
53334
|
* @throws {RequiredError}
|
|
@@ -53574,7 +54006,7 @@ export const AppsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
53574
54006
|
* @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.
|
|
53575
54007
|
* @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.
|
|
53576
54008
|
* @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: **id, name, created, modified, owner.id, accountSource.id**
|
|
53577
|
-
* @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* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
54009
|
+
* @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* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
53578
54010
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53579
54011
|
* @param {*} [axiosOptions] Override http request option.
|
|
53580
54012
|
* @throws {RequiredError}
|
|
@@ -54043,7 +54475,7 @@ export interface AppsV2024ApiListAllSourceAppRequest {
|
|
|
54043
54475
|
readonly sorters?: string
|
|
54044
54476
|
|
|
54045
54477
|
/**
|
|
54046
|
-
* 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* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
54478
|
+
* 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* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
54047
54479
|
* @type {string}
|
|
54048
54480
|
* @memberof AppsV2024ApiListAllSourceApp
|
|
54049
54481
|
*/
|
|
@@ -88850,8 +89282,8 @@ export const MachineAccountsV2024ApiAxiosParamCreator = function (configuration?
|
|
|
88850
89282
|
* @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.
|
|
88851
89283
|
* @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.
|
|
88852
89284
|
* @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.
|
|
88853
|
-
* @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
|
|
88854
|
-
* @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: **id, name,
|
|
89285
|
+
* @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* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
89286
|
+
* @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: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
88855
89287
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
88856
89288
|
* @param {*} [axiosOptions] Override http request option.
|
|
88857
89289
|
* @throws {RequiredError}
|
|
@@ -89005,8 +89437,8 @@ export const MachineAccountsV2024ApiFp = function(configuration?: Configuration)
|
|
|
89005
89437
|
* @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.
|
|
89006
89438
|
* @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.
|
|
89007
89439
|
* @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.
|
|
89008
|
-
* @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
|
|
89009
|
-
* @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: **id, name,
|
|
89440
|
+
* @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* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
89441
|
+
* @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: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
89010
89442
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
89011
89443
|
* @param {*} [axiosOptions] Override http request option.
|
|
89012
89444
|
* @throws {RequiredError}
|
|
@@ -89124,14 +89556,14 @@ export interface MachineAccountsV2024ApiListMachineAccountsRequest {
|
|
|
89124
89556
|
readonly count?: boolean
|
|
89125
89557
|
|
|
89126
89558
|
/**
|
|
89127
|
-
* 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
|
|
89559
|
+
* 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* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
89128
89560
|
* @type {string}
|
|
89129
89561
|
* @memberof MachineAccountsV2024ApiListMachineAccounts
|
|
89130
89562
|
*/
|
|
89131
89563
|
readonly filters?: string
|
|
89132
89564
|
|
|
89133
89565
|
/**
|
|
89134
|
-
* 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: **id, name,
|
|
89566
|
+
* 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: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
89135
89567
|
* @type {string}
|
|
89136
89568
|
* @memberof MachineAccountsV2024ApiListMachineAccounts
|
|
89137
89569
|
*/
|
|
@@ -111537,7 +111969,7 @@ export const SearchV2024ApiAxiosParamCreator = function (configuration?: Configu
|
|
|
111537
111969
|
};
|
|
111538
111970
|
},
|
|
111539
111971
|
/**
|
|
111540
|
-
* 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.
|
|
111972
|
+
* 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).
|
|
111541
111973
|
* @summary Perform search
|
|
111542
111974
|
* @param {SearchV2024} searchV2024
|
|
111543
111975
|
* @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.
|
|
@@ -111653,7 +112085,7 @@ export const SearchV2024ApiFp = function(configuration?: Configuration) {
|
|
|
111653
112085
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
111654
112086
|
},
|
|
111655
112087
|
/**
|
|
111656
|
-
* 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.
|
|
112088
|
+
* 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).
|
|
111657
112089
|
* @summary Perform search
|
|
111658
112090
|
* @param {SearchV2024} searchV2024
|
|
111659
112091
|
* @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.
|
|
@@ -111709,7 +112141,7 @@ export const SearchV2024ApiFactory = function (configuration?: Configuration, ba
|
|
|
111709
112141
|
return localVarFp.searchGet(requestParameters.index, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
111710
112142
|
},
|
|
111711
112143
|
/**
|
|
111712
|
-
* 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.
|
|
112144
|
+
* 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).
|
|
111713
112145
|
* @summary Perform search
|
|
111714
112146
|
* @param {SearchV2024ApiSearchPostRequest} requestParameters Request parameters.
|
|
111715
112147
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -111870,7 +112302,7 @@ export class SearchV2024Api extends BaseAPI {
|
|
|
111870
112302
|
}
|
|
111871
112303
|
|
|
111872
112304
|
/**
|
|
111873
|
-
* 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.
|
|
112305
|
+
* 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).
|
|
111874
112306
|
* @summary Perform search
|
|
111875
112307
|
* @param {SearchV2024ApiSearchPostRequest} requestParameters Request parameters.
|
|
111876
112308
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -125571,19 +126003,14 @@ export const WorkItemsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
125571
126003
|
* @summary Forward a work item
|
|
125572
126004
|
* @param {string} id The ID of the work item
|
|
125573
126005
|
* @param {WorkItemForwardV2024} workItemForwardV2024
|
|
125574
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
125575
126006
|
* @param {*} [axiosOptions] Override http request option.
|
|
125576
126007
|
* @throws {RequiredError}
|
|
125577
126008
|
*/
|
|
125578
|
-
forwardWorkItem: async (id: string, workItemForwardV2024: WorkItemForwardV2024,
|
|
126009
|
+
forwardWorkItem: async (id: string, workItemForwardV2024: WorkItemForwardV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
125579
126010
|
// verify required parameter 'id' is not null or undefined
|
|
125580
126011
|
assertParamExists('forwardWorkItem', 'id', id)
|
|
125581
126012
|
// verify required parameter 'workItemForwardV2024' is not null or undefined
|
|
125582
126013
|
assertParamExists('forwardWorkItem', 'workItemForwardV2024', workItemForwardV2024)
|
|
125583
|
-
if (xSailPointExperimental === undefined) {
|
|
125584
|
-
xSailPointExperimental = 'true';
|
|
125585
|
-
}
|
|
125586
|
-
|
|
125587
126014
|
const localVarPath = `/work-items/{id}/forward`
|
|
125588
126015
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
125589
126016
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -125609,9 +126036,6 @@ export const WorkItemsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
125609
126036
|
|
|
125610
126037
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
125611
126038
|
|
|
125612
|
-
if (xSailPointExperimental != null) {
|
|
125613
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
125614
|
-
}
|
|
125615
126039
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
125616
126040
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
125617
126041
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -125684,15 +126108,10 @@ export const WorkItemsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
125684
126108
|
* This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
|
|
125685
126109
|
* @summary Count completed work items
|
|
125686
126110
|
* @param {string} [ownerId] ID of the work item owner.
|
|
125687
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
125688
126111
|
* @param {*} [axiosOptions] Override http request option.
|
|
125689
126112
|
* @throws {RequiredError}
|
|
125690
126113
|
*/
|
|
125691
|
-
getCountCompletedWorkItems: async (ownerId?: string,
|
|
125692
|
-
if (xSailPointExperimental === undefined) {
|
|
125693
|
-
xSailPointExperimental = 'true';
|
|
125694
|
-
}
|
|
125695
|
-
|
|
126114
|
+
getCountCompletedWorkItems: async (ownerId?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
125696
126115
|
const localVarPath = `/work-items/completed/count`;
|
|
125697
126116
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
125698
126117
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -125719,9 +126138,6 @@ export const WorkItemsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
125719
126138
|
|
|
125720
126139
|
|
|
125721
126140
|
|
|
125722
|
-
if (xSailPointExperimental != null) {
|
|
125723
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
125724
|
-
}
|
|
125725
126141
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
125726
126142
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
125727
126143
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -126109,12 +126525,11 @@ export const WorkItemsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
126109
126525
|
* @summary Forward a work item
|
|
126110
126526
|
* @param {string} id The ID of the work item
|
|
126111
126527
|
* @param {WorkItemForwardV2024} workItemForwardV2024
|
|
126112
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
126113
126528
|
* @param {*} [axiosOptions] Override http request option.
|
|
126114
126529
|
* @throws {RequiredError}
|
|
126115
126530
|
*/
|
|
126116
|
-
async forwardWorkItem(id: string, workItemForwardV2024: WorkItemForwardV2024,
|
|
126117
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardWorkItem(id, workItemForwardV2024,
|
|
126531
|
+
async forwardWorkItem(id: string, workItemForwardV2024: WorkItemForwardV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
126532
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardWorkItem(id, workItemForwardV2024, axiosOptions);
|
|
126118
126533
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
126119
126534
|
const localVarOperationServerBasePath = operationServerMap['WorkItemsV2024Api.forwardWorkItem']?.[localVarOperationServerIndex]?.url;
|
|
126120
126535
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -126139,12 +126554,11 @@ export const WorkItemsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
126139
126554
|
* This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
|
|
126140
126555
|
* @summary Count completed work items
|
|
126141
126556
|
* @param {string} [ownerId] ID of the work item owner.
|
|
126142
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
126143
126557
|
* @param {*} [axiosOptions] Override http request option.
|
|
126144
126558
|
* @throws {RequiredError}
|
|
126145
126559
|
*/
|
|
126146
|
-
async getCountCompletedWorkItems(ownerId?: string,
|
|
126147
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getCountCompletedWorkItems(ownerId,
|
|
126560
|
+
async getCountCompletedWorkItems(ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsCountV2024>> {
|
|
126561
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getCountCompletedWorkItems(ownerId, axiosOptions);
|
|
126148
126562
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
126149
126563
|
const localVarOperationServerBasePath = operationServerMap['WorkItemsV2024Api.getCountCompletedWorkItems']?.[localVarOperationServerIndex]?.url;
|
|
126150
126564
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -126293,7 +126707,7 @@ export const WorkItemsV2024ApiFactory = function (configuration?: Configuration,
|
|
|
126293
126707
|
* @throws {RequiredError}
|
|
126294
126708
|
*/
|
|
126295
126709
|
forwardWorkItem(requestParameters: WorkItemsV2024ApiForwardWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
126296
|
-
return localVarFp.forwardWorkItem(requestParameters.id, requestParameters.workItemForwardV2024,
|
|
126710
|
+
return localVarFp.forwardWorkItem(requestParameters.id, requestParameters.workItemForwardV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
126297
126711
|
},
|
|
126298
126712
|
/**
|
|
126299
126713
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
@@ -126313,7 +126727,7 @@ export const WorkItemsV2024ApiFactory = function (configuration?: Configuration,
|
|
|
126313
126727
|
* @throws {RequiredError}
|
|
126314
126728
|
*/
|
|
126315
126729
|
getCountCompletedWorkItems(requestParameters: WorkItemsV2024ApiGetCountCompletedWorkItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkItemsCountV2024> {
|
|
126316
|
-
return localVarFp.getCountCompletedWorkItems(requestParameters.ownerId,
|
|
126730
|
+
return localVarFp.getCountCompletedWorkItems(requestParameters.ownerId, axiosOptions).then((request) => request(axios, basePath));
|
|
126317
126731
|
},
|
|
126318
126732
|
/**
|
|
126319
126733
|
* This gets a count of work items belonging to either the specified user(admin required), or the current user.
|
|
@@ -126463,13 +126877,6 @@ export interface WorkItemsV2024ApiForwardWorkItemRequest {
|
|
|
126463
126877
|
* @memberof WorkItemsV2024ApiForwardWorkItem
|
|
126464
126878
|
*/
|
|
126465
126879
|
readonly workItemForwardV2024: WorkItemForwardV2024
|
|
126466
|
-
|
|
126467
|
-
/**
|
|
126468
|
-
* Use this header to enable this experimental API.
|
|
126469
|
-
* @type {string}
|
|
126470
|
-
* @memberof WorkItemsV2024ApiForwardWorkItem
|
|
126471
|
-
*/
|
|
126472
|
-
readonly xSailPointExperimental?: string
|
|
126473
126880
|
}
|
|
126474
126881
|
|
|
126475
126882
|
/**
|
|
@@ -126519,13 +126926,6 @@ export interface WorkItemsV2024ApiGetCountCompletedWorkItemsRequest {
|
|
|
126519
126926
|
* @memberof WorkItemsV2024ApiGetCountCompletedWorkItems
|
|
126520
126927
|
*/
|
|
126521
126928
|
readonly ownerId?: string
|
|
126522
|
-
|
|
126523
|
-
/**
|
|
126524
|
-
* Use this header to enable this experimental API.
|
|
126525
|
-
* @type {string}
|
|
126526
|
-
* @memberof WorkItemsV2024ApiGetCountCompletedWorkItems
|
|
126527
|
-
*/
|
|
126528
|
-
readonly xSailPointExperimental?: string
|
|
126529
126929
|
}
|
|
126530
126930
|
|
|
126531
126931
|
/**
|
|
@@ -126713,7 +127113,7 @@ export class WorkItemsV2024Api extends BaseAPI {
|
|
|
126713
127113
|
* @memberof WorkItemsV2024Api
|
|
126714
127114
|
*/
|
|
126715
127115
|
public forwardWorkItem(requestParameters: WorkItemsV2024ApiForwardWorkItemRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
126716
|
-
return WorkItemsV2024ApiFp(this.configuration).forwardWorkItem(requestParameters.id, requestParameters.workItemForwardV2024,
|
|
127116
|
+
return WorkItemsV2024ApiFp(this.configuration).forwardWorkItem(requestParameters.id, requestParameters.workItemForwardV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
126717
127117
|
}
|
|
126718
127118
|
|
|
126719
127119
|
/**
|
|
@@ -126737,7 +127137,7 @@ export class WorkItemsV2024Api extends BaseAPI {
|
|
|
126737
127137
|
* @memberof WorkItemsV2024Api
|
|
126738
127138
|
*/
|
|
126739
127139
|
public getCountCompletedWorkItems(requestParameters: WorkItemsV2024ApiGetCountCompletedWorkItemsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
126740
|
-
return WorkItemsV2024ApiFp(this.configuration).getCountCompletedWorkItems(requestParameters.ownerId,
|
|
127140
|
+
return WorkItemsV2024ApiFp(this.configuration).getCountCompletedWorkItems(requestParameters.ownerId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
126741
127141
|
}
|
|
126742
127142
|
|
|
126743
127143
|
/**
|