@sailpoint/api-client 2.2.1 → 2.2.2
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
|
@@ -78,7 +78,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
78
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
79
|
};
|
|
80
80
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
-
exports.AccessModelMetadataApi = exports.AccessModelMetadataApiFactory = exports.AccessModelMetadataApiFp = exports.AccessModelMetadataApiAxiosParamCreator = exports.SearchFilterType = exports.QueryType = exports.MetricType = exports.LocaleOrigin = exports.JsonPatchOperationOpEnum = exports.Index = exports.FilterType = exports.EntitlementAttributeBulkUpdateQueryRequestReplaceScopeEnum = exports.EntitlementAttributeBulkUpdateQueryRequestOperationEnum = exports.EntitlementAttributeBulkUpdateIdsRequestReplaceScopeEnum = exports.EntitlementAttributeBulkUpdateIdsRequestOperationEnum = exports.EntitlementAttributeBulkUpdateFilterRequestReplaceScopeEnum = exports.EntitlementAttributeBulkUpdateFilterRequestOperationEnum = exports.BucketType = exports.AggregationType = exports.AccessModelMetadataBulkUpdateResponseStatusEnum = void 0;
|
|
81
|
+
exports.AccessModelMetadataApi = exports.AccessModelMetadataApiFactory = exports.AccessModelMetadataApiFp = exports.AccessModelMetadataApiAxiosParamCreator = exports.SearchFilterType = exports.QueryType = exports.MetricType = exports.LocaleOrigin = exports.JsonPatchOperationOpEnum = exports.Index = exports.FilterType = exports.EntitlementAttributeBulkUpdateQueryRequestReplaceScopeEnum = exports.EntitlementAttributeBulkUpdateQueryRequestOperationEnum = exports.EntitlementAttributeBulkUpdateIdsRequestReplaceScopeEnum = exports.EntitlementAttributeBulkUpdateIdsRequestOperationEnum = exports.EntitlementAttributeBulkUpdateFilterRequestReplaceScopeEnum = exports.EntitlementAttributeBulkUpdateFilterRequestOperationEnum = exports.BucketType = exports.AttributeValueDTOTypeEnum = exports.AggregationType = exports.AccessModelMetadataBulkUpdateResponseStatusEnum = void 0;
|
|
82
82
|
var axios_1 = __importDefault(require("axios"));
|
|
83
83
|
// Some imports not used depending on template conditions
|
|
84
84
|
// @ts-ignore
|
|
@@ -106,6 +106,10 @@ exports.AggregationType = {
|
|
|
106
106
|
Dsl: 'DSL',
|
|
107
107
|
Sailpoint: 'SAILPOINT'
|
|
108
108
|
};
|
|
109
|
+
exports.AttributeValueDTOTypeEnum = {
|
|
110
|
+
Static: 'static',
|
|
111
|
+
Adhoc: 'adhoc'
|
|
112
|
+
};
|
|
109
113
|
/**
|
|
110
114
|
* Enum representing the currently supported bucket aggregation types. Additional values may be added in the future without notice.
|
|
111
115
|
* @export
|
|
@@ -223,7 +227,7 @@ var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
223
227
|
var _this = this;
|
|
224
228
|
return {
|
|
225
229
|
/**
|
|
226
|
-
* Create a new Access Model Metadata Attribute.
|
|
230
|
+
* 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.
|
|
227
231
|
* @summary Create access model metadata attribute
|
|
228
232
|
* @param {AttributeDTO} attributeDTO Attribute to create
|
|
229
233
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -257,7 +261,7 @@ var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
257
261
|
});
|
|
258
262
|
},
|
|
259
263
|
/**
|
|
260
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
264
|
+
* 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.
|
|
261
265
|
* @summary Create access model metadata value
|
|
262
266
|
* @param {string} key Technical name of the Attribute.
|
|
263
267
|
* @param {AttributeValueDTO} attributeValueDTO Attribute value to create
|
|
@@ -294,6 +298,76 @@ var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
294
298
|
});
|
|
295
299
|
});
|
|
296
300
|
},
|
|
301
|
+
/**
|
|
302
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
303
|
+
* @summary Delete access model metadata attribute
|
|
304
|
+
* @param {string} key Technical name of the Attribute.
|
|
305
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
306
|
+
* @throws {RequiredError}
|
|
307
|
+
*/
|
|
308
|
+
deleteAccessModelMetadataAttributeV1: function (key, axiosOptions) {
|
|
309
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
310
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
311
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
312
|
+
return __generator(this, function (_a) {
|
|
313
|
+
// verify required parameter 'key' is not null or undefined
|
|
314
|
+
(0, common_1.assertParamExists)('deleteAccessModelMetadataAttributeV1', 'key', key);
|
|
315
|
+
localVarPath = "/access-model-metadata/v1/attributes/{key}"
|
|
316
|
+
.replace("{".concat("key", "}"), encodeURIComponent(String(key)));
|
|
317
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
318
|
+
if (configuration) {
|
|
319
|
+
baseOptions = configuration.baseOptions;
|
|
320
|
+
}
|
|
321
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
|
|
322
|
+
localVarHeaderParameter = {};
|
|
323
|
+
localVarQueryParameter = {};
|
|
324
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
325
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
326
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
327
|
+
return [2 /*return*/, {
|
|
328
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
329
|
+
axiosOptions: localVarRequestOptions,
|
|
330
|
+
}];
|
|
331
|
+
});
|
|
332
|
+
});
|
|
333
|
+
},
|
|
334
|
+
/**
|
|
335
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
336
|
+
* @summary Delete access model metadata value
|
|
337
|
+
* @param {string} key Technical name of the Attribute.
|
|
338
|
+
* @param {string} value Technical name of the Attribute value.
|
|
339
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
340
|
+
* @throws {RequiredError}
|
|
341
|
+
*/
|
|
342
|
+
deleteAccessModelMetadataAttributeValueV1: function (key, value, axiosOptions) {
|
|
343
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
344
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
345
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
346
|
+
return __generator(this, function (_a) {
|
|
347
|
+
// verify required parameter 'key' is not null or undefined
|
|
348
|
+
(0, common_1.assertParamExists)('deleteAccessModelMetadataAttributeValueV1', 'key', key);
|
|
349
|
+
// verify required parameter 'value' is not null or undefined
|
|
350
|
+
(0, common_1.assertParamExists)('deleteAccessModelMetadataAttributeValueV1', 'value', value);
|
|
351
|
+
localVarPath = "/access-model-metadata/v1/attributes/{key}/values/{value}"
|
|
352
|
+
.replace("{".concat("key", "}"), encodeURIComponent(String(key)))
|
|
353
|
+
.replace("{".concat("value", "}"), encodeURIComponent(String(value)));
|
|
354
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
355
|
+
if (configuration) {
|
|
356
|
+
baseOptions = configuration.baseOptions;
|
|
357
|
+
}
|
|
358
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
|
|
359
|
+
localVarHeaderParameter = {};
|
|
360
|
+
localVarQueryParameter = {};
|
|
361
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
362
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
363
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
364
|
+
return [2 /*return*/, {
|
|
365
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
366
|
+
axiosOptions: localVarRequestOptions,
|
|
367
|
+
}];
|
|
368
|
+
});
|
|
369
|
+
});
|
|
370
|
+
},
|
|
297
371
|
/**
|
|
298
372
|
* Get single Access Model Metadata Attribute
|
|
299
373
|
* @summary Get access model metadata attribute
|
|
@@ -365,16 +439,17 @@ var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
365
439
|
});
|
|
366
440
|
},
|
|
367
441
|
/**
|
|
368
|
-
* Get a list of Access Model Metadata Attributes
|
|
442
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
369
443
|
* @summary List access model metadata attributes
|
|
370
|
-
* @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*
|
|
371
|
-
* @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,
|
|
444
|
+
* @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*
|
|
445
|
+
* @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**
|
|
372
446
|
* @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.
|
|
447
|
+
* @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.
|
|
373
448
|
* @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.
|
|
374
449
|
* @param {*} [axiosOptions] Override http request option.
|
|
375
450
|
* @throws {RequiredError}
|
|
376
451
|
*/
|
|
377
|
-
listAccessModelMetadataAttributeV1: function (filters, sorters, limit, count, axiosOptions) {
|
|
452
|
+
listAccessModelMetadataAttributeV1: function (filters, sorters, limit, offset, count, axiosOptions) {
|
|
378
453
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
379
454
|
return __awaiter(_this, void 0, void 0, function () {
|
|
380
455
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -396,6 +471,9 @@ var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
396
471
|
if (limit !== undefined) {
|
|
397
472
|
localVarQueryParameter['limit'] = limit;
|
|
398
473
|
}
|
|
474
|
+
if (offset !== undefined) {
|
|
475
|
+
localVarQueryParameter['offset'] = offset;
|
|
476
|
+
}
|
|
399
477
|
if (count !== undefined) {
|
|
400
478
|
localVarQueryParameter['count'] = count;
|
|
401
479
|
}
|
|
@@ -410,15 +488,18 @@ var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
410
488
|
});
|
|
411
489
|
},
|
|
412
490
|
/**
|
|
413
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
491
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
414
492
|
* @summary List access model metadata values
|
|
415
493
|
* @param {string} key Technical name of the Attribute.
|
|
494
|
+
* @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*
|
|
495
|
+
* @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**
|
|
416
496
|
* @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.
|
|
497
|
+
* @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.
|
|
417
498
|
* @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.
|
|
418
499
|
* @param {*} [axiosOptions] Override http request option.
|
|
419
500
|
* @throws {RequiredError}
|
|
420
501
|
*/
|
|
421
|
-
listAccessModelMetadataAttributeValueV1: function (key, limit, count, axiosOptions) {
|
|
502
|
+
listAccessModelMetadataAttributeValueV1: function (key, filters, sorters, limit, offset, count, axiosOptions) {
|
|
422
503
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
423
504
|
return __awaiter(_this, void 0, void 0, function () {
|
|
424
505
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -434,9 +515,18 @@ var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
434
515
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
435
516
|
localVarHeaderParameter = {};
|
|
436
517
|
localVarQueryParameter = {};
|
|
518
|
+
if (filters !== undefined) {
|
|
519
|
+
localVarQueryParameter['filters'] = filters;
|
|
520
|
+
}
|
|
521
|
+
if (sorters !== undefined) {
|
|
522
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
523
|
+
}
|
|
437
524
|
if (limit !== undefined) {
|
|
438
525
|
localVarQueryParameter['limit'] = limit;
|
|
439
526
|
}
|
|
527
|
+
if (offset !== undefined) {
|
|
528
|
+
localVarQueryParameter['offset'] = offset;
|
|
529
|
+
}
|
|
440
530
|
if (count !== undefined) {
|
|
441
531
|
localVarQueryParameter['count'] = count;
|
|
442
532
|
}
|
|
@@ -451,7 +541,7 @@ var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
451
541
|
});
|
|
452
542
|
},
|
|
453
543
|
/**
|
|
454
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
544
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
455
545
|
* @summary Update access model metadata attribute
|
|
456
546
|
* @param {string} key Technical name of the Attribute.
|
|
457
547
|
* @param {Array<JsonPatchOperation>} jsonPatchOperation JSON Patch array to apply
|
|
@@ -646,7 +736,7 @@ var AccessModelMetadataApiFp = function (configuration) {
|
|
|
646
736
|
var localVarAxiosParamCreator = (0, exports.AccessModelMetadataApiAxiosParamCreator)(configuration);
|
|
647
737
|
return {
|
|
648
738
|
/**
|
|
649
|
-
* Create a new Access Model Metadata Attribute.
|
|
739
|
+
* 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.
|
|
650
740
|
* @summary Create access model metadata attribute
|
|
651
741
|
* @param {AttributeDTO} attributeDTO Attribute to create
|
|
652
742
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -669,7 +759,7 @@ var AccessModelMetadataApiFp = function (configuration) {
|
|
|
669
759
|
});
|
|
670
760
|
},
|
|
671
761
|
/**
|
|
672
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
762
|
+
* 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.
|
|
673
763
|
* @summary Create access model metadata value
|
|
674
764
|
* @param {string} key Technical name of the Attribute.
|
|
675
765
|
* @param {AttributeValueDTO} attributeValueDTO Attribute value to create
|
|
@@ -692,6 +782,53 @@ var AccessModelMetadataApiFp = function (configuration) {
|
|
|
692
782
|
});
|
|
693
783
|
});
|
|
694
784
|
},
|
|
785
|
+
/**
|
|
786
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
787
|
+
* @summary Delete access model metadata attribute
|
|
788
|
+
* @param {string} key Technical name of the Attribute.
|
|
789
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
790
|
+
* @throws {RequiredError}
|
|
791
|
+
*/
|
|
792
|
+
deleteAccessModelMetadataAttributeV1: function (key, axiosOptions) {
|
|
793
|
+
var _a, _b, _c;
|
|
794
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
795
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
796
|
+
return __generator(this, function (_d) {
|
|
797
|
+
switch (_d.label) {
|
|
798
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteAccessModelMetadataAttributeV1(key, axiosOptions)];
|
|
799
|
+
case 1:
|
|
800
|
+
localVarAxiosArgs = _d.sent();
|
|
801
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
802
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AccessModelMetadataApi.deleteAccessModelMetadataAttributeV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
803
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
804
|
+
}
|
|
805
|
+
});
|
|
806
|
+
});
|
|
807
|
+
},
|
|
808
|
+
/**
|
|
809
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
810
|
+
* @summary Delete access model metadata value
|
|
811
|
+
* @param {string} key Technical name of the Attribute.
|
|
812
|
+
* @param {string} value Technical name of the Attribute value.
|
|
813
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
814
|
+
* @throws {RequiredError}
|
|
815
|
+
*/
|
|
816
|
+
deleteAccessModelMetadataAttributeValueV1: function (key, value, axiosOptions) {
|
|
817
|
+
var _a, _b, _c;
|
|
818
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
819
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
820
|
+
return __generator(this, function (_d) {
|
|
821
|
+
switch (_d.label) {
|
|
822
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteAccessModelMetadataAttributeValueV1(key, value, axiosOptions)];
|
|
823
|
+
case 1:
|
|
824
|
+
localVarAxiosArgs = _d.sent();
|
|
825
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
826
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AccessModelMetadataApi.deleteAccessModelMetadataAttributeValueV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
827
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
828
|
+
}
|
|
829
|
+
});
|
|
830
|
+
});
|
|
831
|
+
},
|
|
695
832
|
/**
|
|
696
833
|
* Get single Access Model Metadata Attribute
|
|
697
834
|
* @summary Get access model metadata attribute
|
|
@@ -740,22 +877,23 @@ var AccessModelMetadataApiFp = function (configuration) {
|
|
|
740
877
|
});
|
|
741
878
|
},
|
|
742
879
|
/**
|
|
743
|
-
* Get a list of Access Model Metadata Attributes
|
|
880
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
744
881
|
* @summary List access model metadata attributes
|
|
745
|
-
* @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*
|
|
746
|
-
* @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,
|
|
882
|
+
* @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*
|
|
883
|
+
* @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**
|
|
747
884
|
* @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.
|
|
885
|
+
* @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.
|
|
748
886
|
* @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.
|
|
749
887
|
* @param {*} [axiosOptions] Override http request option.
|
|
750
888
|
* @throws {RequiredError}
|
|
751
889
|
*/
|
|
752
|
-
listAccessModelMetadataAttributeV1: function (filters, sorters, limit, count, axiosOptions) {
|
|
890
|
+
listAccessModelMetadataAttributeV1: function (filters, sorters, limit, offset, count, axiosOptions) {
|
|
753
891
|
var _a, _b, _c;
|
|
754
892
|
return __awaiter(this, void 0, void 0, function () {
|
|
755
893
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
756
894
|
return __generator(this, function (_d) {
|
|
757
895
|
switch (_d.label) {
|
|
758
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listAccessModelMetadataAttributeV1(filters, sorters, limit, count, axiosOptions)];
|
|
896
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listAccessModelMetadataAttributeV1(filters, sorters, limit, offset, count, axiosOptions)];
|
|
759
897
|
case 1:
|
|
760
898
|
localVarAxiosArgs = _d.sent();
|
|
761
899
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -766,21 +904,24 @@ var AccessModelMetadataApiFp = function (configuration) {
|
|
|
766
904
|
});
|
|
767
905
|
},
|
|
768
906
|
/**
|
|
769
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
907
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
770
908
|
* @summary List access model metadata values
|
|
771
909
|
* @param {string} key Technical name of the Attribute.
|
|
910
|
+
* @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*
|
|
911
|
+
* @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**
|
|
772
912
|
* @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.
|
|
913
|
+
* @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.
|
|
773
914
|
* @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.
|
|
774
915
|
* @param {*} [axiosOptions] Override http request option.
|
|
775
916
|
* @throws {RequiredError}
|
|
776
917
|
*/
|
|
777
|
-
listAccessModelMetadataAttributeValueV1: function (key, limit, count, axiosOptions) {
|
|
918
|
+
listAccessModelMetadataAttributeValueV1: function (key, filters, sorters, limit, offset, count, axiosOptions) {
|
|
778
919
|
var _a, _b, _c;
|
|
779
920
|
return __awaiter(this, void 0, void 0, function () {
|
|
780
921
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
781
922
|
return __generator(this, function (_d) {
|
|
782
923
|
switch (_d.label) {
|
|
783
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listAccessModelMetadataAttributeValueV1(key, limit, count, axiosOptions)];
|
|
924
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listAccessModelMetadataAttributeValueV1(key, filters, sorters, limit, offset, count, axiosOptions)];
|
|
784
925
|
case 1:
|
|
785
926
|
localVarAxiosArgs = _d.sent();
|
|
786
927
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -791,7 +932,7 @@ var AccessModelMetadataApiFp = function (configuration) {
|
|
|
791
932
|
});
|
|
792
933
|
},
|
|
793
934
|
/**
|
|
794
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
935
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
795
936
|
* @summary Update access model metadata attribute
|
|
796
937
|
* @param {string} key Technical name of the Attribute.
|
|
797
938
|
* @param {Array<JsonPatchOperation>} jsonPatchOperation JSON Patch array to apply
|
|
@@ -922,7 +1063,7 @@ var AccessModelMetadataApiFactory = function (configuration, basePath, axios) {
|
|
|
922
1063
|
var localVarFp = (0, exports.AccessModelMetadataApiFp)(configuration);
|
|
923
1064
|
return {
|
|
924
1065
|
/**
|
|
925
|
-
* Create a new Access Model Metadata Attribute.
|
|
1066
|
+
* 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.
|
|
926
1067
|
* @summary Create access model metadata attribute
|
|
927
1068
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
928
1069
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -932,7 +1073,7 @@ var AccessModelMetadataApiFactory = function (configuration, basePath, axios) {
|
|
|
932
1073
|
return localVarFp.createAccessModelMetadataAttributeV1(requestParameters.attributeDTO, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
933
1074
|
},
|
|
934
1075
|
/**
|
|
935
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
1076
|
+
* 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.
|
|
936
1077
|
* @summary Create access model metadata value
|
|
937
1078
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
938
1079
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -941,6 +1082,26 @@ var AccessModelMetadataApiFactory = function (configuration, basePath, axios) {
|
|
|
941
1082
|
createAccessModelMetadataAttributeValueV1: function (requestParameters, axiosOptions) {
|
|
942
1083
|
return localVarFp.createAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.attributeValueDTO, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
943
1084
|
},
|
|
1085
|
+
/**
|
|
1086
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
1087
|
+
* @summary Delete access model metadata attribute
|
|
1088
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1089
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1090
|
+
* @throws {RequiredError}
|
|
1091
|
+
*/
|
|
1092
|
+
deleteAccessModelMetadataAttributeV1: function (requestParameters, axiosOptions) {
|
|
1093
|
+
return localVarFp.deleteAccessModelMetadataAttributeV1(requestParameters.key, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1094
|
+
},
|
|
1095
|
+
/**
|
|
1096
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
1097
|
+
* @summary Delete access model metadata value
|
|
1098
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1099
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1100
|
+
* @throws {RequiredError}
|
|
1101
|
+
*/
|
|
1102
|
+
deleteAccessModelMetadataAttributeValueV1: function (requestParameters, axiosOptions) {
|
|
1103
|
+
return localVarFp.deleteAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.value, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1104
|
+
},
|
|
944
1105
|
/**
|
|
945
1106
|
* Get single Access Model Metadata Attribute
|
|
946
1107
|
* @summary Get access model metadata attribute
|
|
@@ -962,7 +1123,7 @@ var AccessModelMetadataApiFactory = function (configuration, basePath, axios) {
|
|
|
962
1123
|
return localVarFp.getAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.value, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
963
1124
|
},
|
|
964
1125
|
/**
|
|
965
|
-
* Get a list of Access Model Metadata Attributes
|
|
1126
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
966
1127
|
* @summary List access model metadata attributes
|
|
967
1128
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
968
1129
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -970,20 +1131,20 @@ var AccessModelMetadataApiFactory = function (configuration, basePath, axios) {
|
|
|
970
1131
|
*/
|
|
971
1132
|
listAccessModelMetadataAttributeV1: function (requestParameters, axiosOptions) {
|
|
972
1133
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
973
|
-
return localVarFp.listAccessModelMetadataAttributeV1(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1134
|
+
return localVarFp.listAccessModelMetadataAttributeV1(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
974
1135
|
},
|
|
975
1136
|
/**
|
|
976
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
1137
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
977
1138
|
* @summary List access model metadata values
|
|
978
1139
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
979
1140
|
* @param {*} [axiosOptions] Override http request option.
|
|
980
1141
|
* @throws {RequiredError}
|
|
981
1142
|
*/
|
|
982
1143
|
listAccessModelMetadataAttributeValueV1: function (requestParameters, axiosOptions) {
|
|
983
|
-
return localVarFp.listAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1144
|
+
return localVarFp.listAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
984
1145
|
},
|
|
985
1146
|
/**
|
|
986
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
1147
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
987
1148
|
* @summary Update access model metadata attribute
|
|
988
1149
|
* @param {AccessModelMetadataApiUpdateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
989
1150
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1050,7 +1211,7 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1050
1211
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
1051
1212
|
}
|
|
1052
1213
|
/**
|
|
1053
|
-
* Create a new Access Model Metadata Attribute.
|
|
1214
|
+
* 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.
|
|
1054
1215
|
* @summary Create access model metadata attribute
|
|
1055
1216
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1056
1217
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1062,7 +1223,7 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1062
1223
|
return (0, exports.AccessModelMetadataApiFp)(this.configuration).createAccessModelMetadataAttributeV1(requestParameters.attributeDTO, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1063
1224
|
};
|
|
1064
1225
|
/**
|
|
1065
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
1226
|
+
* 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.
|
|
1066
1227
|
* @summary Create access model metadata value
|
|
1067
1228
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1068
1229
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1073,6 +1234,30 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1073
1234
|
var _this = this;
|
|
1074
1235
|
return (0, exports.AccessModelMetadataApiFp)(this.configuration).createAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.attributeValueDTO, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1075
1236
|
};
|
|
1237
|
+
/**
|
|
1238
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
1239
|
+
* @summary Delete access model metadata attribute
|
|
1240
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1241
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1242
|
+
* @throws {RequiredError}
|
|
1243
|
+
* @memberof AccessModelMetadataApi
|
|
1244
|
+
*/
|
|
1245
|
+
AccessModelMetadataApi.prototype.deleteAccessModelMetadataAttributeV1 = function (requestParameters, axiosOptions) {
|
|
1246
|
+
var _this = this;
|
|
1247
|
+
return (0, exports.AccessModelMetadataApiFp)(this.configuration).deleteAccessModelMetadataAttributeV1(requestParameters.key, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1248
|
+
};
|
|
1249
|
+
/**
|
|
1250
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
1251
|
+
* @summary Delete access model metadata value
|
|
1252
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1253
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1254
|
+
* @throws {RequiredError}
|
|
1255
|
+
* @memberof AccessModelMetadataApi
|
|
1256
|
+
*/
|
|
1257
|
+
AccessModelMetadataApi.prototype.deleteAccessModelMetadataAttributeValueV1 = function (requestParameters, axiosOptions) {
|
|
1258
|
+
var _this = this;
|
|
1259
|
+
return (0, exports.AccessModelMetadataApiFp)(this.configuration).deleteAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.value, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1260
|
+
};
|
|
1076
1261
|
/**
|
|
1077
1262
|
* Get single Access Model Metadata Attribute
|
|
1078
1263
|
* @summary Get access model metadata attribute
|
|
@@ -1098,7 +1283,7 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1098
1283
|
return (0, exports.AccessModelMetadataApiFp)(this.configuration).getAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.value, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1099
1284
|
};
|
|
1100
1285
|
/**
|
|
1101
|
-
* Get a list of Access Model Metadata Attributes
|
|
1286
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
1102
1287
|
* @summary List access model metadata attributes
|
|
1103
1288
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1104
1289
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1108,10 +1293,10 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1108
1293
|
AccessModelMetadataApi.prototype.listAccessModelMetadataAttributeV1 = function (requestParameters, axiosOptions) {
|
|
1109
1294
|
var _this = this;
|
|
1110
1295
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1111
|
-
return (0, exports.AccessModelMetadataApiFp)(this.configuration).listAccessModelMetadataAttributeV1(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1296
|
+
return (0, exports.AccessModelMetadataApiFp)(this.configuration).listAccessModelMetadataAttributeV1(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1112
1297
|
};
|
|
1113
1298
|
/**
|
|
1114
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
1299
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
1115
1300
|
* @summary List access model metadata values
|
|
1116
1301
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1117
1302
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1120,10 +1305,10 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1120
1305
|
*/
|
|
1121
1306
|
AccessModelMetadataApi.prototype.listAccessModelMetadataAttributeValueV1 = function (requestParameters, axiosOptions) {
|
|
1122
1307
|
var _this = this;
|
|
1123
|
-
return (0, exports.AccessModelMetadataApiFp)(this.configuration).listAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1308
|
+
return (0, exports.AccessModelMetadataApiFp)(this.configuration).listAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1124
1309
|
};
|
|
1125
1310
|
/**
|
|
1126
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
1311
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
1127
1312
|
* @summary Update access model metadata attribute
|
|
1128
1313
|
* @param {AccessModelMetadataApiUpdateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1129
1314
|
* @param {*} [axiosOptions] Override http request option.
|