@sailpoint/api-client 2.2.1 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/access_model_metadata/api.d.ts +270 -35
- package/dist/access_model_metadata/api.js +220 -35
- package/dist/access_model_metadata/api.js.map +1 -1
- package/dist/access_profiles/api.d.ts +22 -5
- package/dist/access_profiles/api.js +5 -1
- package/dist/access_profiles/api.js.map +1 -1
- package/dist/dimensions/api.d.ts +22 -5
- package/dist/dimensions/api.js +5 -1
- package/dist/dimensions/api.js.map +1 -1
- package/dist/esm/access_model_metadata/api.js +219 -34
- package/dist/esm/access_profiles/api.js +4 -0
- package/dist/esm/dimensions/api.js +4 -0
- package/dist/esm/nerm/common.js +2 -2
- package/dist/esm/nermv2025/common.js +2 -2
- package/dist/esm/roles/api.js +4 -0
- package/dist/nerm/common.js +2 -2
- package/dist/nerm/common.js.map +1 -1
- package/dist/nermv2025/common.js +2 -2
- package/dist/nermv2025/common.js.map +1 -1
- package/dist/roles/api.d.ts +22 -5
- package/dist/roles/api.js +5 -1
- package/dist/roles/api.js.map +1 -1
- package/package.json +1 -1
|
@@ -112,13 +112,13 @@ export interface ArrayInner {
|
|
|
112
112
|
*/
|
|
113
113
|
export interface AttributeDTO {
|
|
114
114
|
/**
|
|
115
|
-
* Technical name of the Attribute. This is unique and cannot be changed after creation.
|
|
115
|
+
* Technical name of the Attribute. This is unique and cannot be changed after creation. Allowed characters are letters, numbers, dashes (-), and underscores (_); the value cannot start or end with a dash or underscore.
|
|
116
116
|
* @type {string}
|
|
117
117
|
* @memberof AttributeDTO
|
|
118
118
|
*/
|
|
119
119
|
'key'?: string;
|
|
120
120
|
/**
|
|
121
|
-
* The display name of the key.
|
|
121
|
+
* The display name of the key. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ -
|
|
122
122
|
* @type {string}
|
|
123
123
|
* @memberof AttributeDTO
|
|
124
124
|
*/
|
|
@@ -129,6 +129,12 @@ export interface AttributeDTO {
|
|
|
129
129
|
* @memberof AttributeDTO
|
|
130
130
|
*/
|
|
131
131
|
'multiselect'?: boolean;
|
|
132
|
+
/**
|
|
133
|
+
* Indicates whether this Attribute supports ad-hoc (dynamically created) values, in addition to pre-defined static values. Ad-hoc values are created dynamically through an internal service-to-service flow rather than through the public create-value API. This field can be set when creating an Attribute; if omitted, it defaults to false.
|
|
134
|
+
* @type {boolean}
|
|
135
|
+
* @memberof AttributeDTO
|
|
136
|
+
*/
|
|
137
|
+
'isAdhoc'?: boolean | null;
|
|
132
138
|
/**
|
|
133
139
|
* The status of the Attribute.
|
|
134
140
|
* @type {string}
|
|
@@ -148,7 +154,7 @@ export interface AttributeDTO {
|
|
|
148
154
|
*/
|
|
149
155
|
'objectTypes'?: Array<string> | null;
|
|
150
156
|
/**
|
|
151
|
-
* The description of the Attribute.
|
|
157
|
+
* The description of the Attribute. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ : -
|
|
152
158
|
* @type {string}
|
|
153
159
|
* @memberof AttributeDTO
|
|
154
160
|
*/
|
|
@@ -167,13 +173,13 @@ export interface AttributeDTO {
|
|
|
167
173
|
*/
|
|
168
174
|
export interface AttributeValueDTO {
|
|
169
175
|
/**
|
|
170
|
-
* Technical name of the Attribute value. This is unique and cannot be changed after creation.
|
|
176
|
+
* Technical name of the Attribute value. This is unique and cannot be changed after creation. Allowed characters are letters, numbers, dashes (-), and underscores (_); the value cannot start or end with a dash or underscore.
|
|
171
177
|
* @type {string}
|
|
172
178
|
* @memberof AttributeValueDTO
|
|
173
179
|
*/
|
|
174
180
|
'value'?: string;
|
|
175
181
|
/**
|
|
176
|
-
* The display name of the Attribute value.
|
|
182
|
+
* The display name of the Attribute value. Allowed characters are letters, numbers, whitespace, and the following special characters: . / | , ( ) & _ -
|
|
177
183
|
* @type {string}
|
|
178
184
|
* @memberof AttributeValueDTO
|
|
179
185
|
*/
|
|
@@ -184,7 +190,18 @@ export interface AttributeValueDTO {
|
|
|
184
190
|
* @memberof AttributeValueDTO
|
|
185
191
|
*/
|
|
186
192
|
'status'?: string;
|
|
193
|
+
/**
|
|
194
|
+
* Indicates how this Attribute value was created. static values are pre-defined and created directly through this API. adhoc values are created dynamically through an internal service-to-service flow when the parent Attribute has isAdhoc set to true, and cannot be created directly through the public create-value API.
|
|
195
|
+
* @type {string}
|
|
196
|
+
* @memberof AttributeValueDTO
|
|
197
|
+
*/
|
|
198
|
+
'type'?: AttributeValueDTOTypeEnum | null;
|
|
187
199
|
}
|
|
200
|
+
export declare const AttributeValueDTOTypeEnum: {
|
|
201
|
+
readonly Static: "static";
|
|
202
|
+
readonly Adhoc: "adhoc";
|
|
203
|
+
};
|
|
204
|
+
export type AttributeValueDTOTypeEnum = typeof AttributeValueDTOTypeEnum[keyof typeof AttributeValueDTOTypeEnum];
|
|
188
205
|
/**
|
|
189
206
|
*
|
|
190
207
|
* @export
|
|
@@ -993,6 +1010,92 @@ export interface TextQuery {
|
|
|
993
1010
|
*/
|
|
994
1011
|
'contains'?: boolean;
|
|
995
1012
|
}
|
|
1013
|
+
/**
|
|
1014
|
+
*
|
|
1015
|
+
* @export
|
|
1016
|
+
* @interface TrackerKeyDTO
|
|
1017
|
+
*/
|
|
1018
|
+
export interface TrackerKeyDTO {
|
|
1019
|
+
/**
|
|
1020
|
+
* ID of the tracker created to record this delete operation.
|
|
1021
|
+
* @type {string}
|
|
1022
|
+
* @memberof TrackerKeyDTO
|
|
1023
|
+
*/
|
|
1024
|
+
'id'?: string;
|
|
1025
|
+
/**
|
|
1026
|
+
* The type of object being tracked.
|
|
1027
|
+
* @type {string}
|
|
1028
|
+
* @memberof TrackerKeyDTO
|
|
1029
|
+
*/
|
|
1030
|
+
'type'?: string;
|
|
1031
|
+
/**
|
|
1032
|
+
* The status of the delete operation.
|
|
1033
|
+
* @type {string}
|
|
1034
|
+
* @memberof TrackerKeyDTO
|
|
1035
|
+
*/
|
|
1036
|
+
'status'?: string;
|
|
1037
|
+
/**
|
|
1038
|
+
* Any errors encountered while processing the delete operation.
|
|
1039
|
+
* @type {Array<string>}
|
|
1040
|
+
* @memberof TrackerKeyDTO
|
|
1041
|
+
*/
|
|
1042
|
+
'errors'?: Array<string> | null;
|
|
1043
|
+
/**
|
|
1044
|
+
* The time the delete operation was initiated.
|
|
1045
|
+
* @type {string}
|
|
1046
|
+
* @memberof TrackerKeyDTO
|
|
1047
|
+
*/
|
|
1048
|
+
'created'?: string;
|
|
1049
|
+
/**
|
|
1050
|
+
* Technical name of the deleted Attribute.
|
|
1051
|
+
* @type {string}
|
|
1052
|
+
* @memberof TrackerKeyDTO
|
|
1053
|
+
*/
|
|
1054
|
+
'key'?: string | null;
|
|
1055
|
+
}
|
|
1056
|
+
/**
|
|
1057
|
+
*
|
|
1058
|
+
* @export
|
|
1059
|
+
* @interface TrackerValueDTO
|
|
1060
|
+
*/
|
|
1061
|
+
export interface TrackerValueDTO {
|
|
1062
|
+
/**
|
|
1063
|
+
* ID of the tracker created to record this delete operation.
|
|
1064
|
+
* @type {string}
|
|
1065
|
+
* @memberof TrackerValueDTO
|
|
1066
|
+
*/
|
|
1067
|
+
'id'?: string;
|
|
1068
|
+
/**
|
|
1069
|
+
* The type of object being tracked.
|
|
1070
|
+
* @type {string}
|
|
1071
|
+
* @memberof TrackerValueDTO
|
|
1072
|
+
*/
|
|
1073
|
+
'type'?: string;
|
|
1074
|
+
/**
|
|
1075
|
+
* The status of the delete operation.
|
|
1076
|
+
* @type {string}
|
|
1077
|
+
* @memberof TrackerValueDTO
|
|
1078
|
+
*/
|
|
1079
|
+
'status'?: string;
|
|
1080
|
+
/**
|
|
1081
|
+
* Any errors encountered while processing the delete operation.
|
|
1082
|
+
* @type {Array<string>}
|
|
1083
|
+
* @memberof TrackerValueDTO
|
|
1084
|
+
*/
|
|
1085
|
+
'errors'?: Array<string> | null;
|
|
1086
|
+
/**
|
|
1087
|
+
* The time the delete operation was initiated.
|
|
1088
|
+
* @type {string}
|
|
1089
|
+
* @memberof TrackerValueDTO
|
|
1090
|
+
*/
|
|
1091
|
+
'created'?: string;
|
|
1092
|
+
/**
|
|
1093
|
+
* Technical name of the deleted Attribute value.
|
|
1094
|
+
* @type {string}
|
|
1095
|
+
* @memberof TrackerValueDTO
|
|
1096
|
+
*/
|
|
1097
|
+
'value'?: string;
|
|
1098
|
+
}
|
|
996
1099
|
/**
|
|
997
1100
|
* Query parameters used to construct an Elasticsearch type ahead query object. The typeAheadQuery performs a search for top values beginning with the typed values. For example, typing \"Jo\" results in top hits matching \"Jo.\" Typing \"Job\" results in top hits matching \"Job.\"
|
|
998
1101
|
* @export
|
|
@@ -1048,7 +1151,7 @@ export interface TypeAheadQuery {
|
|
|
1048
1151
|
*/
|
|
1049
1152
|
export declare const AccessModelMetadataApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1050
1153
|
/**
|
|
1051
|
-
* Create a new Access Model Metadata Attribute.
|
|
1154
|
+
* Create a new Access Model Metadata Attribute. The **isAdhoc** field can be set on creation to indicate whether the Attribute supports ad-hoc (dynamically created) values in addition to static values; if omitted, it defaults to *false*. Any **values** provided at creation time must each have a *type* of *static* (or omit/leave *type* blank); *adhoc* is not an allowed value on this public API and results in a *400* error. Ad-hoc values are created dynamically through an internal service-to-service flow, not through this API.
|
|
1052
1155
|
* @summary Create access model metadata attribute
|
|
1053
1156
|
* @param {AttributeDTO} attributeDTO Attribute to create
|
|
1054
1157
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1056,7 +1159,7 @@ export declare const AccessModelMetadataApiAxiosParamCreator: (configuration?: C
|
|
|
1056
1159
|
*/
|
|
1057
1160
|
createAccessModelMetadataAttributeV1: (attributeDTO: AttributeDTO, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1058
1161
|
/**
|
|
1059
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
1162
|
+
* Create a new value for an existing Access Model Metadata Attribute. The **type** field must be omitted, blank, or *static* (case-insensitive); *adhoc* is not an allowed value on this public API and results in a *400* error. Ad-hoc values are created dynamically through an internal service-to-service flow when the parent Attribute has *isAdhoc* set to *true*, not through this API.
|
|
1060
1163
|
* @summary Create access model metadata value
|
|
1061
1164
|
* @param {string} key Technical name of the Attribute.
|
|
1062
1165
|
* @param {AttributeValueDTO} attributeValueDTO Attribute value to create
|
|
@@ -1064,6 +1167,23 @@ export declare const AccessModelMetadataApiAxiosParamCreator: (configuration?: C
|
|
|
1064
1167
|
* @throws {RequiredError}
|
|
1065
1168
|
*/
|
|
1066
1169
|
createAccessModelMetadataAttributeValueV1: (key: string, attributeValueDTO: AttributeValueDTO, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1170
|
+
/**
|
|
1171
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
1172
|
+
* @summary Delete access model metadata attribute
|
|
1173
|
+
* @param {string} key Technical name of the Attribute.
|
|
1174
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1175
|
+
* @throws {RequiredError}
|
|
1176
|
+
*/
|
|
1177
|
+
deleteAccessModelMetadataAttributeV1: (key: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1178
|
+
/**
|
|
1179
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
1180
|
+
* @summary Delete access model metadata value
|
|
1181
|
+
* @param {string} key Technical name of the Attribute.
|
|
1182
|
+
* @param {string} value Technical name of the Attribute value.
|
|
1183
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1184
|
+
* @throws {RequiredError}
|
|
1185
|
+
*/
|
|
1186
|
+
deleteAccessModelMetadataAttributeValueV1: (key: string, value: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1067
1187
|
/**
|
|
1068
1188
|
* Get single Access Model Metadata Attribute
|
|
1069
1189
|
* @summary Get access model metadata attribute
|
|
@@ -1082,28 +1202,32 @@ export declare const AccessModelMetadataApiAxiosParamCreator: (configuration?: C
|
|
|
1082
1202
|
*/
|
|
1083
1203
|
getAccessModelMetadataAttributeValueV1: (key: string, value: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1084
1204
|
/**
|
|
1085
|
-
* Get a list of Access Model Metadata Attributes
|
|
1205
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
1086
1206
|
* @summary List access model metadata attributes
|
|
1087
|
-
* @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*
|
|
1088
|
-
* @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,
|
|
1207
|
+
* @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, co* **name**: *eq, co* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
1208
|
+
* @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: **key, name, type, status**
|
|
1089
1209
|
* @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.
|
|
1210
|
+
* @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.
|
|
1090
1211
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
1091
1212
|
* @param {*} [axiosOptions] Override http request option.
|
|
1092
1213
|
* @throws {RequiredError}
|
|
1093
1214
|
*/
|
|
1094
|
-
listAccessModelMetadataAttributeV1: (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1215
|
+
listAccessModelMetadataAttributeV1: (filters?: string, sorters?: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1095
1216
|
/**
|
|
1096
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
1217
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
1097
1218
|
* @summary List access model metadata values
|
|
1098
1219
|
* @param {string} key Technical name of the Attribute.
|
|
1220
|
+
* @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: **value**: *eq, co* **name**: *eq, co* **status**: *eq* **type**: *eq* Supported composite operators are *and, or*
|
|
1221
|
+
* @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: **value, name, status, type**
|
|
1099
1222
|
* @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.
|
|
1223
|
+
* @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.
|
|
1100
1224
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
1101
1225
|
* @param {*} [axiosOptions] Override http request option.
|
|
1102
1226
|
* @throws {RequiredError}
|
|
1103
1227
|
*/
|
|
1104
|
-
listAccessModelMetadataAttributeValueV1: (key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1228
|
+
listAccessModelMetadataAttributeValueV1: (key: string, filters?: string, sorters?: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1105
1229
|
/**
|
|
1106
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
1230
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
1107
1231
|
* @summary Update access model metadata attribute
|
|
1108
1232
|
* @param {string} key Technical name of the Attribute.
|
|
1109
1233
|
* @param {Array<JsonPatchOperation>} jsonPatchOperation JSON Patch array to apply
|
|
@@ -1155,7 +1279,7 @@ export declare const AccessModelMetadataApiAxiosParamCreator: (configuration?: C
|
|
|
1155
1279
|
*/
|
|
1156
1280
|
export declare const AccessModelMetadataApiFp: (configuration?: Configuration) => {
|
|
1157
1281
|
/**
|
|
1158
|
-
* Create a new Access Model Metadata Attribute.
|
|
1282
|
+
* Create a new Access Model Metadata Attribute. The **isAdhoc** field can be set on creation to indicate whether the Attribute supports ad-hoc (dynamically created) values in addition to static values; if omitted, it defaults to *false*. Any **values** provided at creation time must each have a *type* of *static* (or omit/leave *type* blank); *adhoc* is not an allowed value on this public API and results in a *400* error. Ad-hoc values are created dynamically through an internal service-to-service flow, not through this API.
|
|
1159
1283
|
* @summary Create access model metadata attribute
|
|
1160
1284
|
* @param {AttributeDTO} attributeDTO Attribute to create
|
|
1161
1285
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1163,7 +1287,7 @@ export declare const AccessModelMetadataApiFp: (configuration?: Configuration) =
|
|
|
1163
1287
|
*/
|
|
1164
1288
|
createAccessModelMetadataAttributeV1(attributeDTO: AttributeDTO, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTO>>;
|
|
1165
1289
|
/**
|
|
1166
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
1290
|
+
* Create a new value for an existing Access Model Metadata Attribute. The **type** field must be omitted, blank, or *static* (case-insensitive); *adhoc* is not an allowed value on this public API and results in a *400* error. Ad-hoc values are created dynamically through an internal service-to-service flow when the parent Attribute has *isAdhoc* set to *true*, not through this API.
|
|
1167
1291
|
* @summary Create access model metadata value
|
|
1168
1292
|
* @param {string} key Technical name of the Attribute.
|
|
1169
1293
|
* @param {AttributeValueDTO} attributeValueDTO Attribute value to create
|
|
@@ -1171,6 +1295,23 @@ export declare const AccessModelMetadataApiFp: (configuration?: Configuration) =
|
|
|
1171
1295
|
* @throws {RequiredError}
|
|
1172
1296
|
*/
|
|
1173
1297
|
createAccessModelMetadataAttributeValueV1(key: string, attributeValueDTO: AttributeValueDTO, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTO>>;
|
|
1298
|
+
/**
|
|
1299
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
1300
|
+
* @summary Delete access model metadata attribute
|
|
1301
|
+
* @param {string} key Technical name of the Attribute.
|
|
1302
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1303
|
+
* @throws {RequiredError}
|
|
1304
|
+
*/
|
|
1305
|
+
deleteAccessModelMetadataAttributeV1(key: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TrackerKeyDTO>>;
|
|
1306
|
+
/**
|
|
1307
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
1308
|
+
* @summary Delete access model metadata value
|
|
1309
|
+
* @param {string} key Technical name of the Attribute.
|
|
1310
|
+
* @param {string} value Technical name of the Attribute value.
|
|
1311
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1312
|
+
* @throws {RequiredError}
|
|
1313
|
+
*/
|
|
1314
|
+
deleteAccessModelMetadataAttributeValueV1(key: string, value: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TrackerValueDTO>>;
|
|
1174
1315
|
/**
|
|
1175
1316
|
* Get single Access Model Metadata Attribute
|
|
1176
1317
|
* @summary Get access model metadata attribute
|
|
@@ -1189,28 +1330,32 @@ export declare const AccessModelMetadataApiFp: (configuration?: Configuration) =
|
|
|
1189
1330
|
*/
|
|
1190
1331
|
getAccessModelMetadataAttributeValueV1(key: string, value: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTO>>;
|
|
1191
1332
|
/**
|
|
1192
|
-
* Get a list of Access Model Metadata Attributes
|
|
1333
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
1193
1334
|
* @summary List access model metadata attributes
|
|
1194
|
-
* @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*
|
|
1195
|
-
* @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,
|
|
1335
|
+
* @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, co* **name**: *eq, co* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
1336
|
+
* @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: **key, name, type, status**
|
|
1196
1337
|
* @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.
|
|
1338
|
+
* @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.
|
|
1197
1339
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
1198
1340
|
* @param {*} [axiosOptions] Override http request option.
|
|
1199
1341
|
* @throws {RequiredError}
|
|
1200
1342
|
*/
|
|
1201
|
-
listAccessModelMetadataAttributeV1(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTO>>>;
|
|
1343
|
+
listAccessModelMetadataAttributeV1(filters?: string, sorters?: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTO>>>;
|
|
1202
1344
|
/**
|
|
1203
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
1345
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
1204
1346
|
* @summary List access model metadata values
|
|
1205
1347
|
* @param {string} key Technical name of the Attribute.
|
|
1348
|
+
* @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: **value**: *eq, co* **name**: *eq, co* **status**: *eq* **type**: *eq* Supported composite operators are *and, or*
|
|
1349
|
+
* @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: **value, name, status, type**
|
|
1206
1350
|
* @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.
|
|
1351
|
+
* @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.
|
|
1207
1352
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
1208
1353
|
* @param {*} [axiosOptions] Override http request option.
|
|
1209
1354
|
* @throws {RequiredError}
|
|
1210
1355
|
*/
|
|
1211
|
-
listAccessModelMetadataAttributeValueV1(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTO>>>;
|
|
1356
|
+
listAccessModelMetadataAttributeValueV1(key: string, filters?: string, sorters?: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTO>>>;
|
|
1212
1357
|
/**
|
|
1213
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
1358
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
1214
1359
|
* @summary Update access model metadata attribute
|
|
1215
1360
|
* @param {string} key Technical name of the Attribute.
|
|
1216
1361
|
* @param {Array<JsonPatchOperation>} jsonPatchOperation JSON Patch array to apply
|
|
@@ -1262,7 +1407,7 @@ export declare const AccessModelMetadataApiFp: (configuration?: Configuration) =
|
|
|
1262
1407
|
*/
|
|
1263
1408
|
export declare const AccessModelMetadataApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1264
1409
|
/**
|
|
1265
|
-
* Create a new Access Model Metadata Attribute.
|
|
1410
|
+
* Create a new Access Model Metadata Attribute. The **isAdhoc** field can be set on creation to indicate whether the Attribute supports ad-hoc (dynamically created) values in addition to static values; if omitted, it defaults to *false*. Any **values** provided at creation time must each have a *type* of *static* (or omit/leave *type* blank); *adhoc* is not an allowed value on this public API and results in a *400* error. Ad-hoc values are created dynamically through an internal service-to-service flow, not through this API.
|
|
1266
1411
|
* @summary Create access model metadata attribute
|
|
1267
1412
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1268
1413
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1270,13 +1415,29 @@ export declare const AccessModelMetadataApiFactory: (configuration?: Configurati
|
|
|
1270
1415
|
*/
|
|
1271
1416
|
createAccessModelMetadataAttributeV1(requestParameters: AccessModelMetadataApiCreateAccessModelMetadataAttributeV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTO>;
|
|
1272
1417
|
/**
|
|
1273
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
1418
|
+
* Create a new value for an existing Access Model Metadata Attribute. The **type** field must be omitted, blank, or *static* (case-insensitive); *adhoc* is not an allowed value on this public API and results in a *400* error. Ad-hoc values are created dynamically through an internal service-to-service flow when the parent Attribute has *isAdhoc* set to *true*, not through this API.
|
|
1274
1419
|
* @summary Create access model metadata value
|
|
1275
1420
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1276
1421
|
* @param {*} [axiosOptions] Override http request option.
|
|
1277
1422
|
* @throws {RequiredError}
|
|
1278
1423
|
*/
|
|
1279
1424
|
createAccessModelMetadataAttributeValueV1(requestParameters: AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTO>;
|
|
1425
|
+
/**
|
|
1426
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
1427
|
+
* @summary Delete access model metadata attribute
|
|
1428
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1429
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1430
|
+
* @throws {RequiredError}
|
|
1431
|
+
*/
|
|
1432
|
+
deleteAccessModelMetadataAttributeV1(requestParameters: AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TrackerKeyDTO>;
|
|
1433
|
+
/**
|
|
1434
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
1435
|
+
* @summary Delete access model metadata value
|
|
1436
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1437
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1438
|
+
* @throws {RequiredError}
|
|
1439
|
+
*/
|
|
1440
|
+
deleteAccessModelMetadataAttributeValueV1(requestParameters: AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TrackerValueDTO>;
|
|
1280
1441
|
/**
|
|
1281
1442
|
* Get single Access Model Metadata Attribute
|
|
1282
1443
|
* @summary Get access model metadata attribute
|
|
@@ -1294,7 +1455,7 @@ export declare const AccessModelMetadataApiFactory: (configuration?: Configurati
|
|
|
1294
1455
|
*/
|
|
1295
1456
|
getAccessModelMetadataAttributeValueV1(requestParameters: AccessModelMetadataApiGetAccessModelMetadataAttributeValueV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTO>;
|
|
1296
1457
|
/**
|
|
1297
|
-
* Get a list of Access Model Metadata Attributes
|
|
1458
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
1298
1459
|
* @summary List access model metadata attributes
|
|
1299
1460
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1300
1461
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1302,7 +1463,7 @@ export declare const AccessModelMetadataApiFactory: (configuration?: Configurati
|
|
|
1302
1463
|
*/
|
|
1303
1464
|
listAccessModelMetadataAttributeV1(requestParameters?: AccessModelMetadataApiListAccessModelMetadataAttributeV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeDTO>>;
|
|
1304
1465
|
/**
|
|
1305
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
1466
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
1306
1467
|
* @summary List access model metadata values
|
|
1307
1468
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1308
1469
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1310,7 +1471,7 @@ export declare const AccessModelMetadataApiFactory: (configuration?: Configurati
|
|
|
1310
1471
|
*/
|
|
1311
1472
|
listAccessModelMetadataAttributeValueV1(requestParameters: AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTO>>;
|
|
1312
1473
|
/**
|
|
1313
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
1474
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
1314
1475
|
* @summary Update access model metadata attribute
|
|
1315
1476
|
* @param {AccessModelMetadataApiUpdateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1316
1477
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1385,6 +1546,38 @@ export interface AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1
|
|
|
1385
1546
|
*/
|
|
1386
1547
|
readonly attributeValueDTO: AttributeValueDTO;
|
|
1387
1548
|
}
|
|
1549
|
+
/**
|
|
1550
|
+
* Request parameters for deleteAccessModelMetadataAttributeV1 operation in AccessModelMetadataApi.
|
|
1551
|
+
* @export
|
|
1552
|
+
* @interface AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request
|
|
1553
|
+
*/
|
|
1554
|
+
export interface AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request {
|
|
1555
|
+
/**
|
|
1556
|
+
* Technical name of the Attribute.
|
|
1557
|
+
* @type {string}
|
|
1558
|
+
* @memberof AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1
|
|
1559
|
+
*/
|
|
1560
|
+
readonly key: string;
|
|
1561
|
+
}
|
|
1562
|
+
/**
|
|
1563
|
+
* Request parameters for deleteAccessModelMetadataAttributeValueV1 operation in AccessModelMetadataApi.
|
|
1564
|
+
* @export
|
|
1565
|
+
* @interface AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request
|
|
1566
|
+
*/
|
|
1567
|
+
export interface AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request {
|
|
1568
|
+
/**
|
|
1569
|
+
* Technical name of the Attribute.
|
|
1570
|
+
* @type {string}
|
|
1571
|
+
* @memberof AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1
|
|
1572
|
+
*/
|
|
1573
|
+
readonly key: string;
|
|
1574
|
+
/**
|
|
1575
|
+
* Technical name of the Attribute value.
|
|
1576
|
+
* @type {string}
|
|
1577
|
+
* @memberof AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1
|
|
1578
|
+
*/
|
|
1579
|
+
readonly value: string;
|
|
1580
|
+
}
|
|
1388
1581
|
/**
|
|
1389
1582
|
* Request parameters for getAccessModelMetadataAttributeV1 operation in AccessModelMetadataApi.
|
|
1390
1583
|
* @export
|
|
@@ -1424,13 +1617,13 @@ export interface AccessModelMetadataApiGetAccessModelMetadataAttributeValueV1Req
|
|
|
1424
1617
|
*/
|
|
1425
1618
|
export interface AccessModelMetadataApiListAccessModelMetadataAttributeV1Request {
|
|
1426
1619
|
/**
|
|
1427
|
-
* 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*
|
|
1620
|
+
* 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, co* **name**: *eq, co* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
1428
1621
|
* @type {string}
|
|
1429
1622
|
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeV1
|
|
1430
1623
|
*/
|
|
1431
1624
|
readonly filters?: string;
|
|
1432
1625
|
/**
|
|
1433
|
-
* 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,
|
|
1626
|
+
* 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: **key, name, type, status**
|
|
1434
1627
|
* @type {string}
|
|
1435
1628
|
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeV1
|
|
1436
1629
|
*/
|
|
@@ -1441,6 +1634,12 @@ export interface AccessModelMetadataApiListAccessModelMetadataAttributeV1Request
|
|
|
1441
1634
|
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeV1
|
|
1442
1635
|
*/
|
|
1443
1636
|
readonly limit?: number;
|
|
1637
|
+
/**
|
|
1638
|
+
* 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.
|
|
1639
|
+
* @type {number}
|
|
1640
|
+
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeV1
|
|
1641
|
+
*/
|
|
1642
|
+
readonly offset?: number;
|
|
1444
1643
|
/**
|
|
1445
1644
|
* If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
1446
1645
|
* @type {boolean}
|
|
@@ -1460,12 +1659,30 @@ export interface AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Re
|
|
|
1460
1659
|
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeValueV1
|
|
1461
1660
|
*/
|
|
1462
1661
|
readonly key: string;
|
|
1662
|
+
/**
|
|
1663
|
+
* 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: **value**: *eq, co* **name**: *eq, co* **status**: *eq* **type**: *eq* Supported composite operators are *and, or*
|
|
1664
|
+
* @type {string}
|
|
1665
|
+
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeValueV1
|
|
1666
|
+
*/
|
|
1667
|
+
readonly filters?: string;
|
|
1668
|
+
/**
|
|
1669
|
+
* 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: **value, name, status, type**
|
|
1670
|
+
* @type {string}
|
|
1671
|
+
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeValueV1
|
|
1672
|
+
*/
|
|
1673
|
+
readonly sorters?: string;
|
|
1463
1674
|
/**
|
|
1464
1675
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
1465
1676
|
* @type {number}
|
|
1466
1677
|
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeValueV1
|
|
1467
1678
|
*/
|
|
1468
1679
|
readonly limit?: number;
|
|
1680
|
+
/**
|
|
1681
|
+
* 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.
|
|
1682
|
+
* @type {number}
|
|
1683
|
+
* @memberof AccessModelMetadataApiListAccessModelMetadataAttributeValueV1
|
|
1684
|
+
*/
|
|
1685
|
+
readonly offset?: number;
|
|
1469
1686
|
/**
|
|
1470
1687
|
* If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
1471
1688
|
* @type {boolean}
|
|
@@ -1564,7 +1781,7 @@ export interface AccessModelMetadataApiUpdateAccessModelMetadataByQueryV1Request
|
|
|
1564
1781
|
*/
|
|
1565
1782
|
export declare class AccessModelMetadataApi extends BaseAPI {
|
|
1566
1783
|
/**
|
|
1567
|
-
* Create a new Access Model Metadata Attribute.
|
|
1784
|
+
* Create a new Access Model Metadata Attribute. The **isAdhoc** field can be set on creation to indicate whether the Attribute supports ad-hoc (dynamically created) values in addition to static values; if omitted, it defaults to *false*. Any **values** provided at creation time must each have a *type* of *static* (or omit/leave *type* blank); *adhoc* is not an allowed value on this public API and results in a *400* error. Ad-hoc values are created dynamically through an internal service-to-service flow, not through this API.
|
|
1568
1785
|
* @summary Create access model metadata attribute
|
|
1569
1786
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1570
1787
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1573,7 +1790,7 @@ export declare class AccessModelMetadataApi extends BaseAPI {
|
|
|
1573
1790
|
*/
|
|
1574
1791
|
createAccessModelMetadataAttributeV1(requestParameters: AccessModelMetadataApiCreateAccessModelMetadataAttributeV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTO, any>>;
|
|
1575
1792
|
/**
|
|
1576
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
1793
|
+
* Create a new value for an existing Access Model Metadata Attribute. The **type** field must be omitted, blank, or *static* (case-insensitive); *adhoc* is not an allowed value on this public API and results in a *400* error. Ad-hoc values are created dynamically through an internal service-to-service flow when the parent Attribute has *isAdhoc* set to *true*, not through this API.
|
|
1577
1794
|
* @summary Create access model metadata value
|
|
1578
1795
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1579
1796
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1581,6 +1798,24 @@ export declare class AccessModelMetadataApi extends BaseAPI {
|
|
|
1581
1798
|
* @memberof AccessModelMetadataApi
|
|
1582
1799
|
*/
|
|
1583
1800
|
createAccessModelMetadataAttributeValueV1(requestParameters: AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTO, any>>;
|
|
1801
|
+
/**
|
|
1802
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
1803
|
+
* @summary Delete access model metadata attribute
|
|
1804
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1805
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1806
|
+
* @throws {RequiredError}
|
|
1807
|
+
* @memberof AccessModelMetadataApi
|
|
1808
|
+
*/
|
|
1809
|
+
deleteAccessModelMetadataAttributeV1(requestParameters: AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TrackerKeyDTO, any>>;
|
|
1810
|
+
/**
|
|
1811
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
1812
|
+
* @summary Delete access model metadata value
|
|
1813
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1814
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1815
|
+
* @throws {RequiredError}
|
|
1816
|
+
* @memberof AccessModelMetadataApi
|
|
1817
|
+
*/
|
|
1818
|
+
deleteAccessModelMetadataAttributeValueV1(requestParameters: AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TrackerValueDTO, any>>;
|
|
1584
1819
|
/**
|
|
1585
1820
|
* Get single Access Model Metadata Attribute
|
|
1586
1821
|
* @summary Get access model metadata attribute
|
|
@@ -1600,7 +1835,7 @@ export declare class AccessModelMetadataApi extends BaseAPI {
|
|
|
1600
1835
|
*/
|
|
1601
1836
|
getAccessModelMetadataAttributeValueV1(requestParameters: AccessModelMetadataApiGetAccessModelMetadataAttributeValueV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTO, any>>;
|
|
1602
1837
|
/**
|
|
1603
|
-
* Get a list of Access Model Metadata Attributes
|
|
1838
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
1604
1839
|
* @summary List access model metadata attributes
|
|
1605
1840
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1606
1841
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1609,7 +1844,7 @@ export declare class AccessModelMetadataApi extends BaseAPI {
|
|
|
1609
1844
|
*/
|
|
1610
1845
|
listAccessModelMetadataAttributeV1(requestParameters?: AccessModelMetadataApiListAccessModelMetadataAttributeV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTO[], any>>;
|
|
1611
1846
|
/**
|
|
1612
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
1847
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
1613
1848
|
* @summary List access model metadata values
|
|
1614
1849
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1615
1850
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1618,7 +1853,7 @@ export declare class AccessModelMetadataApi extends BaseAPI {
|
|
|
1618
1853
|
*/
|
|
1619
1854
|
listAccessModelMetadataAttributeValueV1(requestParameters: AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTO[], any>>;
|
|
1620
1855
|
/**
|
|
1621
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
1856
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
1622
1857
|
* @summary Update access model metadata attribute
|
|
1623
1858
|
* @param {AccessModelMetadataApiUpdateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1624
1859
|
* @param {*} [axiosOptions] Override http request option.
|