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.
Files changed (45) hide show
  1. package/beta/.openapi-generator/VERSION +1 -1
  2. package/beta/README.md +2 -2
  3. package/beta/api.ts +485 -56
  4. package/beta/common.ts +2 -2
  5. package/beta/package.json +1 -1
  6. package/dist/beta/api.d.ts +258 -39
  7. package/dist/beta/api.js +475 -28
  8. package/dist/beta/api.js.map +1 -1
  9. package/dist/beta/common.js +1 -1
  10. package/dist/index.spec.js +3 -3
  11. package/dist/index.spec.js.map +1 -1
  12. package/dist/v2024/api.d.ts +275 -69
  13. package/dist/v2024/api.js +497 -63
  14. package/dist/v2024/api.js.map +1 -1
  15. package/dist/v2024/common.js +1 -1
  16. package/dist/v2025/api.d.ts +848 -94
  17. package/dist/v2025/api.js +1224 -126
  18. package/dist/v2025/api.js.map +1 -1
  19. package/dist/v2025/common.js +1 -1
  20. package/dist/v2026/common.js +1 -1
  21. package/dist/v3/api.d.ts +21 -8
  22. package/dist/v3/api.js +9 -8
  23. package/dist/v3/api.js.map +1 -1
  24. package/dist/v3/common.js +1 -1
  25. package/index.spec.ts +3 -3
  26. package/package.json +15 -2
  27. package/v2024/.openapi-generator/VERSION +1 -1
  28. package/v2024/README.md +2 -2
  29. package/v2024/api.ts +509 -109
  30. package/v2024/common.ts +2 -2
  31. package/v2024/package.json +1 -1
  32. package/v2025/.openapi-generator/VERSION +1 -1
  33. package/v2025/README.md +2 -2
  34. package/v2025/api.ts +1436 -193
  35. package/v2025/common.ts +2 -2
  36. package/v2025/package.json +1 -1
  37. package/v2026/.openapi-generator/VERSION +1 -1
  38. package/v2026/README.md +2 -2
  39. package/v2026/common.ts +2 -2
  40. package/v2026/package.json +1 -1
  41. package/v3/.openapi-generator/VERSION +1 -1
  42. package/v3/README.md +2 -2
  43. package/v3/api.ts +22 -9
  44. package/v3/common.ts +2 -2
  45. package/v3/package.json +1 -1
package/beta/api.ts CHANGED
@@ -2622,14 +2622,15 @@ export interface AccessRequestTrackingBeta {
2622
2622
  'accessRequestIds'?: Array<string>;
2623
2623
  }
2624
2624
  /**
2625
- * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
2625
+ * 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.
2626
2626
  * @export
2627
2627
  * @enum {string}
2628
2628
  */
2629
2629
 
2630
2630
  export const AccessRequestTypeBeta = {
2631
2631
  GrantAccess: 'GRANT_ACCESS',
2632
- RevokeAccess: 'REVOKE_ACCESS'
2632
+ RevokeAccess: 'REVOKE_ACCESS',
2633
+ ModifyAccess: 'MODIFY_ACCESS'
2633
2634
  } as const;
2634
2635
 
2635
2636
  export type AccessRequestTypeBeta = typeof AccessRequestTypeBeta[keyof typeof AccessRequestTypeBeta];
@@ -13154,6 +13155,12 @@ export interface GetRoleAssignments200ResponseInnerBeta {
13154
13155
  * @memberof GetRoleAssignments200ResponseInnerBeta
13155
13156
  */
13156
13157
  'addedDate'?: string;
13158
+ /**
13159
+ * Date that the assignment will be removed
13160
+ * @type {string}
13161
+ * @memberof GetRoleAssignments200ResponseInnerBeta
13162
+ */
13163
+ 'removeDate'?: string | null;
13157
13164
  /**
13158
13165
  * Comments added by the user when the assignment was made
13159
13166
  * @type {string}
@@ -13190,12 +13197,6 @@ export interface GetRoleAssignments200ResponseInnerBeta {
13190
13197
  * @memberof GetRoleAssignments200ResponseInnerBeta
13191
13198
  */
13192
13199
  'accountTargets'?: Array<RoleTargetDtoBeta>;
13193
- /**
13194
- * Date that the assignment will be removed
13195
- * @type {string}
13196
- * @memberof GetRoleAssignments200ResponseInnerBeta
13197
- */
13198
- 'removeDate'?: string | null;
13199
13200
  }
13200
13201
  /**
13201
13202
  * OAuth2 Grant Type
@@ -23156,6 +23157,18 @@ export interface RequestabilityForRoleBeta {
23156
23157
  * @memberof RequestabilityForRoleBeta
23157
23158
  */
23158
23159
  'reauthorizationRequired'?: boolean | null;
23160
+ /**
23161
+ * Indicates whether the requester of the containing object must provide access end date.
23162
+ * @type {boolean}
23163
+ * @memberof RequestabilityForRoleBeta
23164
+ */
23165
+ 'requireEndDate'?: boolean;
23166
+ /**
23167
+ *
23168
+ * @type {AccessDurationBeta}
23169
+ * @memberof RequestabilityForRoleBeta
23170
+ */
23171
+ 'maxPermittedAccessDuration'?: AccessDurationBeta | null;
23159
23172
  /**
23160
23173
  * List describing the steps in approving the request
23161
23174
  * @type {Array<ApprovalSchemeForRoleBeta>}
@@ -24242,6 +24255,12 @@ export interface RoleAssignmentRefBeta {
24242
24255
  * @memberof RoleAssignmentRefBeta
24243
24256
  */
24244
24257
  'addedDate'?: string;
24258
+ /**
24259
+ * Date that the assignment will be removed
24260
+ * @type {string}
24261
+ * @memberof RoleAssignmentRefBeta
24262
+ */
24263
+ 'removeDate'?: string | null;
24245
24264
  }
24246
24265
  /**
24247
24266
  * Type which indicates how a particular Identity obtained a particular Role
@@ -26061,11 +26080,11 @@ export interface RoleTargetDtoBeta {
26061
26080
  */
26062
26081
  'accountInfo'?: AccountInfoDtoBeta;
26063
26082
  /**
26064
- * Specific role name for this target if using multiple accounts
26065
- * @type {string}
26083
+ *
26084
+ * @type {BaseReferenceDto1Beta}
26066
26085
  * @memberof RoleTargetDtoBeta
26067
26086
  */
26068
- 'roleName'?: string;
26087
+ 'role'?: BaseReferenceDto1Beta;
26069
26088
  }
26070
26089
  /**
26071
26090
  * @type RuleBeta
@@ -34637,6 +34656,106 @@ export interface WorkgroupMemberDeleteItemBeta {
34637
34656
  */
34638
34657
  export const AccessModelMetadataBetaApiAxiosParamCreator = function (configuration?: Configuration) {
34639
34658
  return {
34659
+ /**
34660
+ * Create a new Access Model Metadata Attribute.
34661
+ * @summary Create access model metadata attribute
34662
+ * @param {AttributeDTOBeta} attributeDTOBeta Attribute to create
34663
+ * @param {*} [axiosOptions] Override http request option.
34664
+ * @throws {RequiredError}
34665
+ */
34666
+ createAccessModelMetadataAttribute: async (attributeDTOBeta: AttributeDTOBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
34667
+ // verify required parameter 'attributeDTOBeta' is not null or undefined
34668
+ assertParamExists('createAccessModelMetadataAttribute', 'attributeDTOBeta', attributeDTOBeta)
34669
+ const localVarPath = `/access-model-metadata/attributes`;
34670
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
34671
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
34672
+ let baseOptions;
34673
+ if (configuration) {
34674
+ baseOptions = configuration.baseOptions;
34675
+ }
34676
+
34677
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
34678
+ const localVarHeaderParameter = {} as any;
34679
+ const localVarQueryParameter = {} as any;
34680
+
34681
+ // authentication userAuth required
34682
+ // oauth required
34683
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34684
+
34685
+ // authentication userAuth required
34686
+ // oauth required
34687
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34688
+
34689
+ // authentication applicationAuth required
34690
+ // oauth required
34691
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34692
+
34693
+
34694
+
34695
+ localVarHeaderParameter['Content-Type'] = 'application/json';
34696
+
34697
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
34698
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
34699
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
34700
+ localVarRequestOptions.data = serializeDataIfNeeded(attributeDTOBeta, localVarRequestOptions, configuration)
34701
+
34702
+ return {
34703
+ url: toPathString(localVarUrlObj),
34704
+ axiosOptions: localVarRequestOptions,
34705
+ };
34706
+ },
34707
+ /**
34708
+ * Create a new value for an existing Access Model Metadata Attribute.
34709
+ * @summary Create access model metadata value
34710
+ * @param {string} key Technical name of the Attribute.
34711
+ * @param {AttributeValueDTOBeta} attributeValueDTOBeta Attribute value to create
34712
+ * @param {*} [axiosOptions] Override http request option.
34713
+ * @throws {RequiredError}
34714
+ */
34715
+ createAccessModelMetadataAttributeValue: async (key: string, attributeValueDTOBeta: AttributeValueDTOBeta, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
34716
+ // verify required parameter 'key' is not null or undefined
34717
+ assertParamExists('createAccessModelMetadataAttributeValue', 'key', key)
34718
+ // verify required parameter 'attributeValueDTOBeta' is not null or undefined
34719
+ assertParamExists('createAccessModelMetadataAttributeValue', 'attributeValueDTOBeta', attributeValueDTOBeta)
34720
+ const localVarPath = `/access-model-metadata/attributes/{key}/values`
34721
+ .replace(`{${"key"}}`, encodeURIComponent(String(key)));
34722
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
34723
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
34724
+ let baseOptions;
34725
+ if (configuration) {
34726
+ baseOptions = configuration.baseOptions;
34727
+ }
34728
+
34729
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
34730
+ const localVarHeaderParameter = {} as any;
34731
+ const localVarQueryParameter = {} as any;
34732
+
34733
+ // authentication userAuth required
34734
+ // oauth required
34735
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34736
+
34737
+ // authentication userAuth required
34738
+ // oauth required
34739
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34740
+
34741
+ // authentication applicationAuth required
34742
+ // oauth required
34743
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34744
+
34745
+
34746
+
34747
+ localVarHeaderParameter['Content-Type'] = 'application/json';
34748
+
34749
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
34750
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
34751
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
34752
+ localVarRequestOptions.data = serializeDataIfNeeded(attributeValueDTOBeta, localVarRequestOptions, configuration)
34753
+
34754
+ return {
34755
+ url: toPathString(localVarUrlObj),
34756
+ axiosOptions: localVarRequestOptions,
34757
+ };
34758
+ },
34640
34759
  /**
34641
34760
  * Get single Access Model Metadata Attribute
34642
34761
  * @summary Get access model metadata attribute
@@ -34736,15 +34855,14 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
34736
34855
  /**
34737
34856
  * Get a list of Access Model Metadata Attributes
34738
34857
  * @summary List access model metadata attributes
34739
- * @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**: *and*
34858
+ * @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*
34740
34859
  * @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**
34741
- * @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.
34742
34860
  * @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.
34743
34861
  * @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&#x3D;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.
34744
34862
  * @param {*} [axiosOptions] Override http request option.
34745
34863
  * @throws {RequiredError}
34746
34864
  */
34747
- listAccessModelMetadataAttribute: async (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
34865
+ listAccessModelMetadataAttribute: async (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
34748
34866
  const localVarPath = `/access-model-metadata/attributes`;
34749
34867
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
34750
34868
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -34777,10 +34895,6 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
34777
34895
  localVarQueryParameter['sorters'] = sorters;
34778
34896
  }
34779
34897
 
34780
- if (offset !== undefined) {
34781
- localVarQueryParameter['offset'] = offset;
34782
- }
34783
-
34784
34898
  if (limit !== undefined) {
34785
34899
  localVarQueryParameter['limit'] = limit;
34786
34900
  }
@@ -34804,13 +34918,12 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
34804
34918
  * Get a list of Access Model Metadata Attribute Values
34805
34919
  * @summary List access model metadata values
34806
34920
  * @param {string} key Technical name of the Attribute.
34807
- * @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.
34808
34921
  * @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.
34809
34922
  * @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&#x3D;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.
34810
34923
  * @param {*} [axiosOptions] Override http request option.
34811
34924
  * @throws {RequiredError}
34812
34925
  */
34813
- listAccessModelMetadataAttributeValue: async (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
34926
+ listAccessModelMetadataAttributeValue: async (key: string, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
34814
34927
  // verify required parameter 'key' is not null or undefined
34815
34928
  assertParamExists('listAccessModelMetadataAttributeValue', 'key', key)
34816
34929
  const localVarPath = `/access-model-metadata/attributes/{key}/values`
@@ -34838,10 +34951,6 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
34838
34951
  // oauth required
34839
34952
  await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34840
34953
 
34841
- if (offset !== undefined) {
34842
- localVarQueryParameter['offset'] = offset;
34843
- }
34844
-
34845
34954
  if (limit !== undefined) {
34846
34955
  localVarQueryParameter['limit'] = limit;
34847
34956
  }
@@ -34856,6 +34965,114 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
34856
34965
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
34857
34966
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
34858
34967
 
34968
+ return {
34969
+ url: toPathString(localVarUrlObj),
34970
+ axiosOptions: localVarRequestOptions,
34971
+ };
34972
+ },
34973
+ /**
34974
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
34975
+ * @summary Update access model metadata attribute
34976
+ * @param {string} key Technical name of the Attribute.
34977
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
34978
+ * @param {*} [axiosOptions] Override http request option.
34979
+ * @throws {RequiredError}
34980
+ */
34981
+ updateAccessModelMetadataAttribute: async (key: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
34982
+ // verify required parameter 'key' is not null or undefined
34983
+ assertParamExists('updateAccessModelMetadataAttribute', 'key', key)
34984
+ // verify required parameter 'jsonPatchOperationBeta' is not null or undefined
34985
+ assertParamExists('updateAccessModelMetadataAttribute', 'jsonPatchOperationBeta', jsonPatchOperationBeta)
34986
+ const localVarPath = `/access-model-metadata/attributes/{key}`
34987
+ .replace(`{${"key"}}`, encodeURIComponent(String(key)));
34988
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
34989
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
34990
+ let baseOptions;
34991
+ if (configuration) {
34992
+ baseOptions = configuration.baseOptions;
34993
+ }
34994
+
34995
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
34996
+ const localVarHeaderParameter = {} as any;
34997
+ const localVarQueryParameter = {} as any;
34998
+
34999
+ // authentication userAuth required
35000
+ // oauth required
35001
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
35002
+
35003
+ // authentication userAuth required
35004
+ // oauth required
35005
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
35006
+
35007
+ // authentication applicationAuth required
35008
+ // oauth required
35009
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
35010
+
35011
+
35012
+
35013
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
35014
+
35015
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
35016
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
35017
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
35018
+ localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationBeta, localVarRequestOptions, configuration)
35019
+
35020
+ return {
35021
+ url: toPathString(localVarUrlObj),
35022
+ axiosOptions: localVarRequestOptions,
35023
+ };
35024
+ },
35025
+ /**
35026
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
35027
+ * @summary Update access model metadata value
35028
+ * @param {string} key Technical name of the Attribute.
35029
+ * @param {string} value Technical name of the Attribute value.
35030
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
35031
+ * @param {*} [axiosOptions] Override http request option.
35032
+ * @throws {RequiredError}
35033
+ */
35034
+ updateAccessModelMetadataAttributeValue: async (key: string, value: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
35035
+ // verify required parameter 'key' is not null or undefined
35036
+ assertParamExists('updateAccessModelMetadataAttributeValue', 'key', key)
35037
+ // verify required parameter 'value' is not null or undefined
35038
+ assertParamExists('updateAccessModelMetadataAttributeValue', 'value', value)
35039
+ // verify required parameter 'jsonPatchOperationBeta' is not null or undefined
35040
+ assertParamExists('updateAccessModelMetadataAttributeValue', 'jsonPatchOperationBeta', jsonPatchOperationBeta)
35041
+ const localVarPath = `/access-model-metadata/attributes/{key}/values/{value}`
35042
+ .replace(`{${"key"}}`, encodeURIComponent(String(key)))
35043
+ .replace(`{${"value"}}`, encodeURIComponent(String(value)));
35044
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
35045
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
35046
+ let baseOptions;
35047
+ if (configuration) {
35048
+ baseOptions = configuration.baseOptions;
35049
+ }
35050
+
35051
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
35052
+ const localVarHeaderParameter = {} as any;
35053
+ const localVarQueryParameter = {} as any;
35054
+
35055
+ // authentication userAuth required
35056
+ // oauth required
35057
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
35058
+
35059
+ // authentication userAuth required
35060
+ // oauth required
35061
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
35062
+
35063
+ // authentication applicationAuth required
35064
+ // oauth required
35065
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
35066
+
35067
+
35068
+
35069
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
35070
+
35071
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
35072
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
35073
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
35074
+ localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationBeta, localVarRequestOptions, configuration)
35075
+
34859
35076
  return {
34860
35077
  url: toPathString(localVarUrlObj),
34861
35078
  axiosOptions: localVarRequestOptions,
@@ -34871,6 +35088,33 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
34871
35088
  export const AccessModelMetadataBetaApiFp = function(configuration?: Configuration) {
34872
35089
  const localVarAxiosParamCreator = AccessModelMetadataBetaApiAxiosParamCreator(configuration)
34873
35090
  return {
35091
+ /**
35092
+ * Create a new Access Model Metadata Attribute.
35093
+ * @summary Create access model metadata attribute
35094
+ * @param {AttributeDTOBeta} attributeDTOBeta Attribute to create
35095
+ * @param {*} [axiosOptions] Override http request option.
35096
+ * @throws {RequiredError}
35097
+ */
35098
+ async createAccessModelMetadataAttribute(attributeDTOBeta: AttributeDTOBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOBeta>> {
35099
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createAccessModelMetadataAttribute(attributeDTOBeta, axiosOptions);
35100
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35101
+ const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataBetaApi.createAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
35102
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
35103
+ },
35104
+ /**
35105
+ * Create a new value for an existing Access Model Metadata Attribute.
35106
+ * @summary Create access model metadata value
35107
+ * @param {string} key Technical name of the Attribute.
35108
+ * @param {AttributeValueDTOBeta} attributeValueDTOBeta Attribute value to create
35109
+ * @param {*} [axiosOptions] Override http request option.
35110
+ * @throws {RequiredError}
35111
+ */
35112
+ async createAccessModelMetadataAttributeValue(key: string, attributeValueDTOBeta: AttributeValueDTOBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOBeta>> {
35113
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createAccessModelMetadataAttributeValue(key, attributeValueDTOBeta, axiosOptions);
35114
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35115
+ const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataBetaApi.createAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
35116
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
35117
+ },
34874
35118
  /**
34875
35119
  * Get single Access Model Metadata Attribute
34876
35120
  * @summary Get access model metadata attribute
@@ -34901,16 +35145,15 @@ export const AccessModelMetadataBetaApiFp = function(configuration?: Configurati
34901
35145
  /**
34902
35146
  * Get a list of Access Model Metadata Attributes
34903
35147
  * @summary List access model metadata attributes
34904
- * @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**: *and*
35148
+ * @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*
34905
35149
  * @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**
34906
- * @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.
34907
35150
  * @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.
34908
35151
  * @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&#x3D;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.
34909
35152
  * @param {*} [axiosOptions] Override http request option.
34910
35153
  * @throws {RequiredError}
34911
35154
  */
34912
- async listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOBeta>>> {
34913
- const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttribute(filters, sorters, offset, limit, count, axiosOptions);
35155
+ async listAccessModelMetadataAttribute(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOBeta>>> {
35156
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttribute(filters, sorters, limit, count, axiosOptions);
34914
35157
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
34915
35158
  const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataBetaApi.listAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
34916
35159
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -34919,18 +35162,46 @@ export const AccessModelMetadataBetaApiFp = function(configuration?: Configurati
34919
35162
  * Get a list of Access Model Metadata Attribute Values
34920
35163
  * @summary List access model metadata values
34921
35164
  * @param {string} key Technical name of the Attribute.
34922
- * @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.
34923
35165
  * @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.
34924
35166
  * @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&#x3D;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.
34925
35167
  * @param {*} [axiosOptions] Override http request option.
34926
35168
  * @throws {RequiredError}
34927
35169
  */
34928
- async listAccessModelMetadataAttributeValue(key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOBeta>>> {
34929
- const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttributeValue(key, offset, limit, count, axiosOptions);
35170
+ async listAccessModelMetadataAttributeValue(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOBeta>>> {
35171
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttributeValue(key, limit, count, axiosOptions);
34930
35172
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
34931
35173
  const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataBetaApi.listAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
34932
35174
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34933
35175
  },
35176
+ /**
35177
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
35178
+ * @summary Update access model metadata attribute
35179
+ * @param {string} key Technical name of the Attribute.
35180
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
35181
+ * @param {*} [axiosOptions] Override http request option.
35182
+ * @throws {RequiredError}
35183
+ */
35184
+ async updateAccessModelMetadataAttribute(key: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOBeta>> {
35185
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateAccessModelMetadataAttribute(key, jsonPatchOperationBeta, axiosOptions);
35186
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35187
+ const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataBetaApi.updateAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
35188
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
35189
+ },
35190
+ /**
35191
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
35192
+ * @summary Update access model metadata value
35193
+ * @param {string} key Technical name of the Attribute.
35194
+ * @param {string} value Technical name of the Attribute value.
35195
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
35196
+ * @param {*} [axiosOptions] Override http request option.
35197
+ * @throws {RequiredError}
35198
+ */
35199
+ async updateAccessModelMetadataAttributeValue(key: string, value: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOBeta>> {
35200
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateAccessModelMetadataAttributeValue(key, value, jsonPatchOperationBeta, axiosOptions);
35201
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
35202
+ const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataBetaApi.updateAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
35203
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
35204
+ },
34934
35205
  }
34935
35206
  };
34936
35207
 
@@ -34941,6 +35212,26 @@ export const AccessModelMetadataBetaApiFp = function(configuration?: Configurati
34941
35212
  export const AccessModelMetadataBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
34942
35213
  const localVarFp = AccessModelMetadataBetaApiFp(configuration)
34943
35214
  return {
35215
+ /**
35216
+ * Create a new Access Model Metadata Attribute.
35217
+ * @summary Create access model metadata attribute
35218
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
35219
+ * @param {*} [axiosOptions] Override http request option.
35220
+ * @throws {RequiredError}
35221
+ */
35222
+ createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOBeta> {
35223
+ return localVarFp.createAccessModelMetadataAttribute(requestParameters.attributeDTOBeta, axiosOptions).then((request) => request(axios, basePath));
35224
+ },
35225
+ /**
35226
+ * Create a new value for an existing Access Model Metadata Attribute.
35227
+ * @summary Create access model metadata value
35228
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
35229
+ * @param {*} [axiosOptions] Override http request option.
35230
+ * @throws {RequiredError}
35231
+ */
35232
+ createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOBeta> {
35233
+ return localVarFp.createAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.attributeValueDTOBeta, axiosOptions).then((request) => request(axios, basePath));
35234
+ },
34944
35235
  /**
34945
35236
  * Get single Access Model Metadata Attribute
34946
35237
  * @summary Get access model metadata attribute
@@ -34969,7 +35260,7 @@ export const AccessModelMetadataBetaApiFactory = function (configuration?: Confi
34969
35260
  * @throws {RequiredError}
34970
35261
  */
34971
35262
  listAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiListAccessModelMetadataAttributeRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeDTOBeta>> {
34972
- return localVarFp.listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
35263
+ return localVarFp.listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
34973
35264
  },
34974
35265
  /**
34975
35266
  * Get a list of Access Model Metadata Attribute Values
@@ -34979,11 +35270,66 @@ export const AccessModelMetadataBetaApiFactory = function (configuration?: Confi
34979
35270
  * @throws {RequiredError}
34980
35271
  */
34981
35272
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOBeta>> {
34982
- return localVarFp.listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
35273
+ return localVarFp.listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
35274
+ },
35275
+ /**
35276
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
35277
+ * @summary Update access model metadata attribute
35278
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
35279
+ * @param {*} [axiosOptions] Override http request option.
35280
+ * @throws {RequiredError}
35281
+ */
35282
+ updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOBeta> {
35283
+ return localVarFp.updateAccessModelMetadataAttribute(requestParameters.key, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
35284
+ },
35285
+ /**
35286
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
35287
+ * @summary Update access model metadata value
35288
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
35289
+ * @param {*} [axiosOptions] Override http request option.
35290
+ * @throws {RequiredError}
35291
+ */
35292
+ updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOBeta> {
35293
+ return localVarFp.updateAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
34983
35294
  },
34984
35295
  };
34985
35296
  };
34986
35297
 
35298
+ /**
35299
+ * Request parameters for createAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
35300
+ * @export
35301
+ * @interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest
35302
+ */
35303
+ export interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest {
35304
+ /**
35305
+ * Attribute to create
35306
+ * @type {AttributeDTOBeta}
35307
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttribute
35308
+ */
35309
+ readonly attributeDTOBeta: AttributeDTOBeta
35310
+ }
35311
+
35312
+ /**
35313
+ * Request parameters for createAccessModelMetadataAttributeValue operation in AccessModelMetadataBetaApi.
35314
+ * @export
35315
+ * @interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest
35316
+ */
35317
+ export interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest {
35318
+ /**
35319
+ * Technical name of the Attribute.
35320
+ * @type {string}
35321
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValue
35322
+ */
35323
+ readonly key: string
35324
+
35325
+ /**
35326
+ * Attribute value to create
35327
+ * @type {AttributeValueDTOBeta}
35328
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValue
35329
+ */
35330
+ readonly attributeValueDTOBeta: AttributeValueDTOBeta
35331
+ }
35332
+
34987
35333
  /**
34988
35334
  * Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
34989
35335
  * @export
@@ -35026,7 +35372,7 @@ export interface AccessModelMetadataBetaApiGetAccessModelMetadataAttributeValueR
35026
35372
  */
35027
35373
  export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeRequest {
35028
35374
  /**
35029
- * 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**: *and*
35375
+ * 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*
35030
35376
  * @type {string}
35031
35377
  * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
35032
35378
  */
@@ -35039,13 +35385,6 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeReque
35039
35385
  */
35040
35386
  readonly sorters?: string
35041
35387
 
35042
- /**
35043
- * 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.
35044
- * @type {number}
35045
- * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
35046
- */
35047
- readonly offset?: number
35048
-
35049
35388
  /**
35050
35389
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
35051
35390
  * @type {number}
@@ -35074,13 +35413,6 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
35074
35413
  */
35075
35414
  readonly key: string
35076
35415
 
35077
- /**
35078
- * 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.
35079
- * @type {number}
35080
- * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
35081
- */
35082
- readonly offset?: number
35083
-
35084
35416
  /**
35085
35417
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
35086
35418
  * @type {number}
@@ -35096,6 +35428,55 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
35096
35428
  readonly count?: boolean
35097
35429
  }
35098
35430
 
35431
+ /**
35432
+ * Request parameters for updateAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
35433
+ * @export
35434
+ * @interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest
35435
+ */
35436
+ export interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest {
35437
+ /**
35438
+ * Technical name of the Attribute.
35439
+ * @type {string}
35440
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttribute
35441
+ */
35442
+ readonly key: string
35443
+
35444
+ /**
35445
+ * JSON Patch array to apply
35446
+ * @type {Array<JsonPatchOperationBeta>}
35447
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttribute
35448
+ */
35449
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>
35450
+ }
35451
+
35452
+ /**
35453
+ * Request parameters for updateAccessModelMetadataAttributeValue operation in AccessModelMetadataBetaApi.
35454
+ * @export
35455
+ * @interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest
35456
+ */
35457
+ export interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest {
35458
+ /**
35459
+ * Technical name of the Attribute.
35460
+ * @type {string}
35461
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
35462
+ */
35463
+ readonly key: string
35464
+
35465
+ /**
35466
+ * Technical name of the Attribute value.
35467
+ * @type {string}
35468
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
35469
+ */
35470
+ readonly value: string
35471
+
35472
+ /**
35473
+ * JSON Patch array to apply
35474
+ * @type {Array<JsonPatchOperationBeta>}
35475
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
35476
+ */
35477
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>
35478
+ }
35479
+
35099
35480
  /**
35100
35481
  * AccessModelMetadataBetaApi - object-oriented interface
35101
35482
  * @export
@@ -35103,6 +35484,30 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
35103
35484
  * @extends {BaseAPI}
35104
35485
  */
35105
35486
  export class AccessModelMetadataBetaApi extends BaseAPI {
35487
+ /**
35488
+ * Create a new Access Model Metadata Attribute.
35489
+ * @summary Create access model metadata attribute
35490
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
35491
+ * @param {*} [axiosOptions] Override http request option.
35492
+ * @throws {RequiredError}
35493
+ * @memberof AccessModelMetadataBetaApi
35494
+ */
35495
+ public createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
35496
+ return AccessModelMetadataBetaApiFp(this.configuration).createAccessModelMetadataAttribute(requestParameters.attributeDTOBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
35497
+ }
35498
+
35499
+ /**
35500
+ * Create a new value for an existing Access Model Metadata Attribute.
35501
+ * @summary Create access model metadata value
35502
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
35503
+ * @param {*} [axiosOptions] Override http request option.
35504
+ * @throws {RequiredError}
35505
+ * @memberof AccessModelMetadataBetaApi
35506
+ */
35507
+ public createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
35508
+ return AccessModelMetadataBetaApiFp(this.configuration).createAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.attributeValueDTOBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
35509
+ }
35510
+
35106
35511
  /**
35107
35512
  * Get single Access Model Metadata Attribute
35108
35513
  * @summary Get access model metadata attribute
@@ -35136,7 +35541,7 @@ export class AccessModelMetadataBetaApi extends BaseAPI {
35136
35541
  * @memberof AccessModelMetadataBetaApi
35137
35542
  */
35138
35543
  public listAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiListAccessModelMetadataAttributeRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
35139
- return AccessModelMetadataBetaApiFp(this.configuration).listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
35544
+ return AccessModelMetadataBetaApiFp(this.configuration).listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
35140
35545
  }
35141
35546
 
35142
35547
  /**
@@ -35148,7 +35553,31 @@ export class AccessModelMetadataBetaApi extends BaseAPI {
35148
35553
  * @memberof AccessModelMetadataBetaApi
35149
35554
  */
35150
35555
  public listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
35151
- return AccessModelMetadataBetaApiFp(this.configuration).listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
35556
+ return AccessModelMetadataBetaApiFp(this.configuration).listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
35557
+ }
35558
+
35559
+ /**
35560
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
35561
+ * @summary Update access model metadata attribute
35562
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
35563
+ * @param {*} [axiosOptions] Override http request option.
35564
+ * @throws {RequiredError}
35565
+ * @memberof AccessModelMetadataBetaApi
35566
+ */
35567
+ public updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
35568
+ return AccessModelMetadataBetaApiFp(this.configuration).updateAccessModelMetadataAttribute(requestParameters.key, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
35569
+ }
35570
+
35571
+ /**
35572
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
35573
+ * @summary Update access model metadata value
35574
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
35575
+ * @param {*} [axiosOptions] Override http request option.
35576
+ * @throws {RequiredError}
35577
+ * @memberof AccessModelMetadataBetaApi
35578
+ */
35579
+ public updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
35580
+ return AccessModelMetadataBetaApiFp(this.configuration).updateAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
35152
35581
  }
35153
35582
  }
35154
35583
 
@@ -37220,7 +37649,7 @@ export const AccessRequestsBetaApiAxiosParamCreator = function (configuration?:
37220
37649
  * @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.
37221
37650
  * @param {number} [limit] Max number of results to return.
37222
37651
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
37223
- * @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, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
37652
+ * @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*
37224
37653
  * @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**
37225
37654
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
37226
37655
  * @param {*} [axiosOptions] Override http request option.
@@ -37511,7 +37940,7 @@ export const AccessRequestsBetaApiFp = function(configuration?: Configuration) {
37511
37940
  * @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.
37512
37941
  * @param {number} [limit] Max number of results to return.
37513
37942
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
37514
- * @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, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
37943
+ * @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*
37515
37944
  * @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**
37516
37945
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
37517
37946
  * @param {*} [axiosOptions] Override http request option.
@@ -37739,7 +38168,7 @@ export interface AccessRequestsBetaApiListAccessRequestStatusRequest {
37739
38168
  readonly offset?: number
37740
38169
 
37741
38170
  /**
37742
- * 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, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
38171
+ * 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*
37743
38172
  * @type {string}
37744
38173
  * @memberof AccessRequestsBetaApiListAccessRequestStatus
37745
38174
  */
@@ -41229,7 +41658,7 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
41229
41658
  * @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&#x3D;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.
41230
41659
  * @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.
41231
41660
  * @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**
41232
- * @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, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
41661
+ * @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*
41233
41662
  * @param {*} [axiosOptions] Override http request option.
41234
41663
  * @throws {RequiredError}
41235
41664
  */
@@ -41835,7 +42264,7 @@ export const AppsBetaApiFp = function(configuration?: Configuration) {
41835
42264
  * @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&#x3D;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.
41836
42265
  * @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.
41837
42266
  * @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**
41838
- * @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, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
42267
+ * @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*
41839
42268
  * @param {*} [axiosOptions] Override http request option.
41840
42269
  * @throws {RequiredError}
41841
42270
  */
@@ -42261,7 +42690,7 @@ export interface AppsBetaApiListAllSourceAppRequest {
42261
42690
  readonly sorters?: string
42262
42691
 
42263
42692
  /**
42264
- * 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, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
42693
+ * 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*
42265
42694
  * @type {string}
42266
42695
  * @memberof AppsBetaApiListAllSourceApp
42267
42696
  */