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/common.ts CHANGED
@@ -147,9 +147,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
147
147
  return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
148
148
  axiosRetry(axios, configuration.retriesConfig)
149
149
  const headers = {
150
- ...{'User-Agent':'OpenAPI-Generator/1.7.1/ts'},
150
+ ...{'User-Agent':'OpenAPI-Generator/1.7.5/ts'},
151
151
  ...axiosArgs.axiosOptions.headers,
152
- ...{'X-SailPoint-SDK':'typescript-1.7.1'}
152
+ ...{'X-SailPoint-SDK':'typescript-1.7.5'}
153
153
  }
154
154
 
155
155
  if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
package/beta/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sailpoint-sdk",
3
- "version": "1.7.1",
3
+ "version": "1.7.5",
4
4
  "description": "OpenAPI client for sailpoint-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -2518,13 +2518,14 @@ export interface AccessRequestTrackingBeta {
2518
2518
  'accessRequestIds'?: Array<string>;
2519
2519
  }
2520
2520
  /**
2521
- * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
2521
+ * 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.
2522
2522
  * @export
2523
2523
  * @enum {string}
2524
2524
  */
2525
2525
  export declare const AccessRequestTypeBeta: {
2526
2526
  readonly GrantAccess: "GRANT_ACCESS";
2527
2527
  readonly RevokeAccess: "REVOKE_ACCESS";
2528
+ readonly ModifyAccess: "MODIFY_ACCESS";
2528
2529
  };
2529
2530
  export type AccessRequestTypeBeta = typeof AccessRequestTypeBeta[keyof typeof AccessRequestTypeBeta];
2530
2531
  /**
@@ -12674,6 +12675,12 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12674
12675
  * @memberof GetRoleAssignments200ResponseInnerBeta
12675
12676
  */
12676
12677
  'addedDate'?: string;
12678
+ /**
12679
+ * Date that the assignment will be removed
12680
+ * @type {string}
12681
+ * @memberof GetRoleAssignments200ResponseInnerBeta
12682
+ */
12683
+ 'removeDate'?: string | null;
12677
12684
  /**
12678
12685
  * Comments added by the user when the assignment was made
12679
12686
  * @type {string}
@@ -12710,12 +12717,6 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12710
12717
  * @memberof GetRoleAssignments200ResponseInnerBeta
12711
12718
  */
12712
12719
  'accountTargets'?: Array<RoleTargetDtoBeta>;
12713
- /**
12714
- * Date that the assignment will be removed
12715
- * @type {string}
12716
- * @memberof GetRoleAssignments200ResponseInnerBeta
12717
- */
12718
- 'removeDate'?: string | null;
12719
12720
  }
12720
12721
  /**
12721
12722
  * OAuth2 Grant Type
@@ -22391,6 +22392,18 @@ export interface RequestabilityForRoleBeta {
22391
22392
  * @memberof RequestabilityForRoleBeta
22392
22393
  */
22393
22394
  'reauthorizationRequired'?: boolean | null;
22395
+ /**
22396
+ * Indicates whether the requester of the containing object must provide access end date.
22397
+ * @type {boolean}
22398
+ * @memberof RequestabilityForRoleBeta
22399
+ */
22400
+ 'requireEndDate'?: boolean;
22401
+ /**
22402
+ *
22403
+ * @type {AccessDurationBeta}
22404
+ * @memberof RequestabilityForRoleBeta
22405
+ */
22406
+ 'maxPermittedAccessDuration'?: AccessDurationBeta | null;
22394
22407
  /**
22395
22408
  * List describing the steps in approving the request
22396
22409
  * @type {Array<ApprovalSchemeForRoleBeta>}
@@ -23440,6 +23453,12 @@ export interface RoleAssignmentRefBeta {
23440
23453
  * @memberof RoleAssignmentRefBeta
23441
23454
  */
23442
23455
  'addedDate'?: string;
23456
+ /**
23457
+ * Date that the assignment will be removed
23458
+ * @type {string}
23459
+ * @memberof RoleAssignmentRefBeta
23460
+ */
23461
+ 'removeDate'?: string | null;
23443
23462
  }
23444
23463
  /**
23445
23464
  * Type which indicates how a particular Identity obtained a particular Role
@@ -25194,11 +25213,11 @@ export interface RoleTargetDtoBeta {
25194
25213
  */
25195
25214
  'accountInfo'?: AccountInfoDtoBeta;
25196
25215
  /**
25197
- * Specific role name for this target if using multiple accounts
25198
- * @type {string}
25216
+ *
25217
+ * @type {BaseReferenceDto1Beta}
25199
25218
  * @memberof RoleTargetDtoBeta
25200
25219
  */
25201
- 'roleName'?: string;
25220
+ 'role'?: BaseReferenceDto1Beta;
25202
25221
  }
25203
25222
  /**
25204
25223
  * @type RuleBeta
@@ -33530,6 +33549,23 @@ export interface WorkgroupMemberDeleteItemBeta {
33530
33549
  * @export
33531
33550
  */
33532
33551
  export declare const AccessModelMetadataBetaApiAxiosParamCreator: (configuration?: Configuration) => {
33552
+ /**
33553
+ * Create a new Access Model Metadata Attribute.
33554
+ * @summary Create access model metadata attribute
33555
+ * @param {AttributeDTOBeta} attributeDTOBeta Attribute to create
33556
+ * @param {*} [axiosOptions] Override http request option.
33557
+ * @throws {RequiredError}
33558
+ */
33559
+ createAccessModelMetadataAttribute: (attributeDTOBeta: AttributeDTOBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33560
+ /**
33561
+ * Create a new value for an existing Access Model Metadata Attribute.
33562
+ * @summary Create access model metadata value
33563
+ * @param {string} key Technical name of the Attribute.
33564
+ * @param {AttributeValueDTOBeta} attributeValueDTOBeta Attribute value to create
33565
+ * @param {*} [axiosOptions] Override http request option.
33566
+ * @throws {RequiredError}
33567
+ */
33568
+ createAccessModelMetadataAttributeValue: (key: string, attributeValueDTOBeta: AttributeValueDTOBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33533
33569
  /**
33534
33570
  * Get single Access Model Metadata Attribute
33535
33571
  * @summary Get access model metadata attribute
@@ -33550,32 +33586,66 @@ export declare const AccessModelMetadataBetaApiAxiosParamCreator: (configuration
33550
33586
  /**
33551
33587
  * Get a list of Access Model Metadata Attributes
33552
33588
  * @summary List access model metadata attributes
33553
- * @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*
33589
+ * @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*
33554
33590
  * @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**
33555
- * @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.
33556
33591
  * @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.
33557
33592
  * @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.
33558
33593
  * @param {*} [axiosOptions] Override http request option.
33559
33594
  * @throws {RequiredError}
33560
33595
  */
33561
- listAccessModelMetadataAttribute: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33596
+ listAccessModelMetadataAttribute: (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33562
33597
  /**
33563
33598
  * Get a list of Access Model Metadata Attribute Values
33564
33599
  * @summary List access model metadata values
33565
33600
  * @param {string} key Technical name of the Attribute.
33566
- * @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.
33567
33601
  * @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.
33568
33602
  * @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.
33569
33603
  * @param {*} [axiosOptions] Override http request option.
33570
33604
  * @throws {RequiredError}
33571
33605
  */
33572
- listAccessModelMetadataAttributeValue: (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33606
+ listAccessModelMetadataAttributeValue: (key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33607
+ /**
33608
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
33609
+ * @summary Update access model metadata attribute
33610
+ * @param {string} key Technical name of the Attribute.
33611
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
33612
+ * @param {*} [axiosOptions] Override http request option.
33613
+ * @throws {RequiredError}
33614
+ */
33615
+ updateAccessModelMetadataAttribute: (key: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33616
+ /**
33617
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
33618
+ * @summary Update access model metadata value
33619
+ * @param {string} key Technical name of the Attribute.
33620
+ * @param {string} value Technical name of the Attribute value.
33621
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
33622
+ * @param {*} [axiosOptions] Override http request option.
33623
+ * @throws {RequiredError}
33624
+ */
33625
+ updateAccessModelMetadataAttributeValue: (key: string, value: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33573
33626
  };
33574
33627
  /**
33575
33628
  * AccessModelMetadataBetaApi - functional programming interface
33576
33629
  * @export
33577
33630
  */
33578
33631
  export declare const AccessModelMetadataBetaApiFp: (configuration?: Configuration) => {
33632
+ /**
33633
+ * Create a new Access Model Metadata Attribute.
33634
+ * @summary Create access model metadata attribute
33635
+ * @param {AttributeDTOBeta} attributeDTOBeta Attribute to create
33636
+ * @param {*} [axiosOptions] Override http request option.
33637
+ * @throws {RequiredError}
33638
+ */
33639
+ createAccessModelMetadataAttribute(attributeDTOBeta: AttributeDTOBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOBeta>>;
33640
+ /**
33641
+ * Create a new value for an existing Access Model Metadata Attribute.
33642
+ * @summary Create access model metadata value
33643
+ * @param {string} key Technical name of the Attribute.
33644
+ * @param {AttributeValueDTOBeta} attributeValueDTOBeta Attribute value to create
33645
+ * @param {*} [axiosOptions] Override http request option.
33646
+ * @throws {RequiredError}
33647
+ */
33648
+ createAccessModelMetadataAttributeValue(key: string, attributeValueDTOBeta: AttributeValueDTOBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOBeta>>;
33579
33649
  /**
33580
33650
  * Get single Access Model Metadata Attribute
33581
33651
  * @summary Get access model metadata attribute
@@ -33596,32 +33666,65 @@ export declare const AccessModelMetadataBetaApiFp: (configuration?: Configuratio
33596
33666
  /**
33597
33667
  * Get a list of Access Model Metadata Attributes
33598
33668
  * @summary List access model metadata attributes
33599
- * @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*
33669
+ * @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*
33600
33670
  * @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**
33601
- * @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.
33602
33671
  * @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.
33603
33672
  * @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.
33604
33673
  * @param {*} [axiosOptions] Override http request option.
33605
33674
  * @throws {RequiredError}
33606
33675
  */
33607
- listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOBeta>>>;
33676
+ listAccessModelMetadataAttribute(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOBeta>>>;
33608
33677
  /**
33609
33678
  * Get a list of Access Model Metadata Attribute Values
33610
33679
  * @summary List access model metadata values
33611
33680
  * @param {string} key Technical name of the Attribute.
33612
- * @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.
33613
33681
  * @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.
33614
33682
  * @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.
33615
33683
  * @param {*} [axiosOptions] Override http request option.
33616
33684
  * @throws {RequiredError}
33617
33685
  */
33618
- listAccessModelMetadataAttributeValue(key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOBeta>>>;
33686
+ listAccessModelMetadataAttributeValue(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOBeta>>>;
33687
+ /**
33688
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
33689
+ * @summary Update access model metadata attribute
33690
+ * @param {string} key Technical name of the Attribute.
33691
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
33692
+ * @param {*} [axiosOptions] Override http request option.
33693
+ * @throws {RequiredError}
33694
+ */
33695
+ updateAccessModelMetadataAttribute(key: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOBeta>>;
33696
+ /**
33697
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
33698
+ * @summary Update access model metadata value
33699
+ * @param {string} key Technical name of the Attribute.
33700
+ * @param {string} value Technical name of the Attribute value.
33701
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
33702
+ * @param {*} [axiosOptions] Override http request option.
33703
+ * @throws {RequiredError}
33704
+ */
33705
+ updateAccessModelMetadataAttributeValue(key: string, value: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOBeta>>;
33619
33706
  };
33620
33707
  /**
33621
33708
  * AccessModelMetadataBetaApi - factory interface
33622
33709
  * @export
33623
33710
  */
33624
33711
  export declare const AccessModelMetadataBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
33712
+ /**
33713
+ * Create a new Access Model Metadata Attribute.
33714
+ * @summary Create access model metadata attribute
33715
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
33716
+ * @param {*} [axiosOptions] Override http request option.
33717
+ * @throws {RequiredError}
33718
+ */
33719
+ createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOBeta>;
33720
+ /**
33721
+ * Create a new value for an existing Access Model Metadata Attribute.
33722
+ * @summary Create access model metadata value
33723
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
33724
+ * @param {*} [axiosOptions] Override http request option.
33725
+ * @throws {RequiredError}
33726
+ */
33727
+ createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOBeta>;
33625
33728
  /**
33626
33729
  * Get single Access Model Metadata Attribute
33627
33730
  * @summary Get access model metadata attribute
@@ -33654,7 +33757,55 @@ export declare const AccessModelMetadataBetaApiFactory: (configuration?: Configu
33654
33757
  * @throws {RequiredError}
33655
33758
  */
33656
33759
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOBeta>>;
33760
+ /**
33761
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
33762
+ * @summary Update access model metadata attribute
33763
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
33764
+ * @param {*} [axiosOptions] Override http request option.
33765
+ * @throws {RequiredError}
33766
+ */
33767
+ updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOBeta>;
33768
+ /**
33769
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
33770
+ * @summary Update access model metadata value
33771
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
33772
+ * @param {*} [axiosOptions] Override http request option.
33773
+ * @throws {RequiredError}
33774
+ */
33775
+ updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOBeta>;
33657
33776
  };
33777
+ /**
33778
+ * Request parameters for createAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
33779
+ * @export
33780
+ * @interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest
33781
+ */
33782
+ export interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest {
33783
+ /**
33784
+ * Attribute to create
33785
+ * @type {AttributeDTOBeta}
33786
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttribute
33787
+ */
33788
+ readonly attributeDTOBeta: AttributeDTOBeta;
33789
+ }
33790
+ /**
33791
+ * Request parameters for createAccessModelMetadataAttributeValue operation in AccessModelMetadataBetaApi.
33792
+ * @export
33793
+ * @interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest
33794
+ */
33795
+ export interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest {
33796
+ /**
33797
+ * Technical name of the Attribute.
33798
+ * @type {string}
33799
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValue
33800
+ */
33801
+ readonly key: string;
33802
+ /**
33803
+ * Attribute value to create
33804
+ * @type {AttributeValueDTOBeta}
33805
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValue
33806
+ */
33807
+ readonly attributeValueDTOBeta: AttributeValueDTOBeta;
33808
+ }
33658
33809
  /**
33659
33810
  * Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
33660
33811
  * @export
@@ -33694,7 +33845,7 @@ export interface AccessModelMetadataBetaApiGetAccessModelMetadataAttributeValueR
33694
33845
  */
33695
33846
  export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeRequest {
33696
33847
  /**
33697
- * 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*
33848
+ * 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*
33698
33849
  * @type {string}
33699
33850
  * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
33700
33851
  */
@@ -33705,12 +33856,6 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeReque
33705
33856
  * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
33706
33857
  */
33707
33858
  readonly sorters?: string;
33708
- /**
33709
- * 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.
33710
- * @type {number}
33711
- * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
33712
- */
33713
- readonly offset?: number;
33714
33859
  /**
33715
33860
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
33716
33861
  * @type {number}
@@ -33736,12 +33881,6 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
33736
33881
  * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
33737
33882
  */
33738
33883
  readonly key: string;
33739
- /**
33740
- * 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.
33741
- * @type {number}
33742
- * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
33743
- */
33744
- readonly offset?: number;
33745
33884
  /**
33746
33885
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
33747
33886
  * @type {number}
@@ -33755,6 +33894,50 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
33755
33894
  */
33756
33895
  readonly count?: boolean;
33757
33896
  }
33897
+ /**
33898
+ * Request parameters for updateAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
33899
+ * @export
33900
+ * @interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest
33901
+ */
33902
+ export interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest {
33903
+ /**
33904
+ * Technical name of the Attribute.
33905
+ * @type {string}
33906
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttribute
33907
+ */
33908
+ readonly key: string;
33909
+ /**
33910
+ * JSON Patch array to apply
33911
+ * @type {Array<JsonPatchOperationBeta>}
33912
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttribute
33913
+ */
33914
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>;
33915
+ }
33916
+ /**
33917
+ * Request parameters for updateAccessModelMetadataAttributeValue operation in AccessModelMetadataBetaApi.
33918
+ * @export
33919
+ * @interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest
33920
+ */
33921
+ export interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest {
33922
+ /**
33923
+ * Technical name of the Attribute.
33924
+ * @type {string}
33925
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
33926
+ */
33927
+ readonly key: string;
33928
+ /**
33929
+ * Technical name of the Attribute value.
33930
+ * @type {string}
33931
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
33932
+ */
33933
+ readonly value: string;
33934
+ /**
33935
+ * JSON Patch array to apply
33936
+ * @type {Array<JsonPatchOperationBeta>}
33937
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
33938
+ */
33939
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>;
33940
+ }
33758
33941
  /**
33759
33942
  * AccessModelMetadataBetaApi - object-oriented interface
33760
33943
  * @export
@@ -33762,6 +33945,24 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
33762
33945
  * @extends {BaseAPI}
33763
33946
  */
33764
33947
  export declare class AccessModelMetadataBetaApi extends BaseAPI {
33948
+ /**
33949
+ * Create a new Access Model Metadata Attribute.
33950
+ * @summary Create access model metadata attribute
33951
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
33952
+ * @param {*} [axiosOptions] Override http request option.
33953
+ * @throws {RequiredError}
33954
+ * @memberof AccessModelMetadataBetaApi
33955
+ */
33956
+ createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOBeta, any>>;
33957
+ /**
33958
+ * Create a new value for an existing Access Model Metadata Attribute.
33959
+ * @summary Create access model metadata value
33960
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
33961
+ * @param {*} [axiosOptions] Override http request option.
33962
+ * @throws {RequiredError}
33963
+ * @memberof AccessModelMetadataBetaApi
33964
+ */
33965
+ createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOBeta, any>>;
33765
33966
  /**
33766
33967
  * Get single Access Model Metadata Attribute
33767
33968
  * @summary Get access model metadata attribute
@@ -33798,6 +33999,24 @@ export declare class AccessModelMetadataBetaApi extends BaseAPI {
33798
33999
  * @memberof AccessModelMetadataBetaApi
33799
34000
  */
33800
34001
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOBeta[], any>>;
34002
+ /**
34003
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
34004
+ * @summary Update access model metadata attribute
34005
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
34006
+ * @param {*} [axiosOptions] Override http request option.
34007
+ * @throws {RequiredError}
34008
+ * @memberof AccessModelMetadataBetaApi
34009
+ */
34010
+ updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOBeta, any>>;
34011
+ /**
34012
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
34013
+ * @summary Update access model metadata value
34014
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
34015
+ * @param {*} [axiosOptions] Override http request option.
34016
+ * @throws {RequiredError}
34017
+ * @memberof AccessModelMetadataBetaApi
34018
+ */
34019
+ updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOBeta, any>>;
33801
34020
  }
33802
34021
  /**
33803
34022
  * AccessProfilesBetaApi - axios parameter creator
@@ -34854,7 +35073,7 @@ export declare const AccessRequestsBetaApiAxiosParamCreator: (configuration?: Co
34854
35073
  * @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.
34855
35074
  * @param {number} [limit] Max number of results to return.
34856
35075
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
34857
- * @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*
35076
+ * @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*
34858
35077
  * @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**
34859
35078
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
34860
35079
  * @param {*} [axiosOptions] Override http request option.
@@ -34934,7 +35153,7 @@ export declare const AccessRequestsBetaApiFp: (configuration?: Configuration) =>
34934
35153
  * @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.
34935
35154
  * @param {number} [limit] Max number of results to return.
34936
35155
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
34937
- * @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*
35156
+ * @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*
34938
35157
  * @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**
34939
35158
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
34940
35159
  * @param {*} [axiosOptions] Override http request option.
@@ -35117,7 +35336,7 @@ export interface AccessRequestsBetaApiListAccessRequestStatusRequest {
35117
35336
  */
35118
35337
  readonly offset?: number;
35119
35338
  /**
35120
- * 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*
35339
+ * 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*
35121
35340
  * @type {string}
35122
35341
  * @memberof AccessRequestsBetaApiListAccessRequestStatus
35123
35342
  */
@@ -36927,7 +37146,7 @@ export declare const AppsBetaApiAxiosParamCreator: (configuration?: Configuratio
36927
37146
  * @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.
36928
37147
  * @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.
36929
37148
  * @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**
36930
- * @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*
37149
+ * @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*
36931
37150
  * @param {*} [axiosOptions] Override http request option.
36932
37151
  * @throws {RequiredError}
36933
37152
  */
@@ -37073,7 +37292,7 @@ export declare const AppsBetaApiFp: (configuration?: Configuration) => {
37073
37292
  * @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.
37074
37293
  * @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.
37075
37294
  * @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**
37076
- * @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*
37295
+ * @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*
37077
37296
  * @param {*} [axiosOptions] Override http request option.
37078
37297
  * @throws {RequiredError}
37079
37298
  */
@@ -37406,7 +37625,7 @@ export interface AppsBetaApiListAllSourceAppRequest {
37406
37625
  */
37407
37626
  readonly sorters?: string;
37408
37627
  /**
37409
- * 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*
37628
+ * 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*
37410
37629
  * @type {string}
37411
37630
  * @memberof AppsBetaApiListAllSourceApp
37412
37631
  */