@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
|
@@ -100,6 +100,10 @@ export var AggregationType = {
|
|
|
100
100
|
Dsl: 'DSL',
|
|
101
101
|
Sailpoint: 'SAILPOINT'
|
|
102
102
|
};
|
|
103
|
+
export var AttributeValueDTOTypeEnum = {
|
|
104
|
+
Static: 'static',
|
|
105
|
+
Adhoc: 'adhoc'
|
|
106
|
+
};
|
|
103
107
|
/**
|
|
104
108
|
* Enum representing the currently supported bucket aggregation types. Additional values may be added in the future without notice.
|
|
105
109
|
* @export
|
|
@@ -217,7 +221,7 @@ export var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
217
221
|
var _this = this;
|
|
218
222
|
return {
|
|
219
223
|
/**
|
|
220
|
-
* Create a new Access Model Metadata Attribute.
|
|
224
|
+
* 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.
|
|
221
225
|
* @summary Create access model metadata attribute
|
|
222
226
|
* @param {AttributeDTO} attributeDTO Attribute to create
|
|
223
227
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -251,7 +255,7 @@ export var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
251
255
|
});
|
|
252
256
|
},
|
|
253
257
|
/**
|
|
254
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
258
|
+
* 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.
|
|
255
259
|
* @summary Create access model metadata value
|
|
256
260
|
* @param {string} key Technical name of the Attribute.
|
|
257
261
|
* @param {AttributeValueDTO} attributeValueDTO Attribute value to create
|
|
@@ -288,6 +292,76 @@ export var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
288
292
|
});
|
|
289
293
|
});
|
|
290
294
|
},
|
|
295
|
+
/**
|
|
296
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
297
|
+
* @summary Delete access model metadata attribute
|
|
298
|
+
* @param {string} key Technical name of the Attribute.
|
|
299
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
300
|
+
* @throws {RequiredError}
|
|
301
|
+
*/
|
|
302
|
+
deleteAccessModelMetadataAttributeV1: function (key, axiosOptions) {
|
|
303
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
304
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
305
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
306
|
+
return __generator(this, function (_a) {
|
|
307
|
+
// verify required parameter 'key' is not null or undefined
|
|
308
|
+
assertParamExists('deleteAccessModelMetadataAttributeV1', 'key', key);
|
|
309
|
+
localVarPath = "/access-model-metadata/v1/attributes/{key}"
|
|
310
|
+
.replace("{".concat("key", "}"), encodeURIComponent(String(key)));
|
|
311
|
+
localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
312
|
+
if (configuration) {
|
|
313
|
+
baseOptions = configuration.baseOptions;
|
|
314
|
+
}
|
|
315
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
|
|
316
|
+
localVarHeaderParameter = {};
|
|
317
|
+
localVarQueryParameter = {};
|
|
318
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
319
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
320
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
321
|
+
return [2 /*return*/, {
|
|
322
|
+
url: toPathString(localVarUrlObj),
|
|
323
|
+
axiosOptions: localVarRequestOptions,
|
|
324
|
+
}];
|
|
325
|
+
});
|
|
326
|
+
});
|
|
327
|
+
},
|
|
328
|
+
/**
|
|
329
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
330
|
+
* @summary Delete access model metadata value
|
|
331
|
+
* @param {string} key Technical name of the Attribute.
|
|
332
|
+
* @param {string} value Technical name of the Attribute value.
|
|
333
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
334
|
+
* @throws {RequiredError}
|
|
335
|
+
*/
|
|
336
|
+
deleteAccessModelMetadataAttributeValueV1: function (key, value, axiosOptions) {
|
|
337
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
338
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
339
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
340
|
+
return __generator(this, function (_a) {
|
|
341
|
+
// verify required parameter 'key' is not null or undefined
|
|
342
|
+
assertParamExists('deleteAccessModelMetadataAttributeValueV1', 'key', key);
|
|
343
|
+
// verify required parameter 'value' is not null or undefined
|
|
344
|
+
assertParamExists('deleteAccessModelMetadataAttributeValueV1', 'value', value);
|
|
345
|
+
localVarPath = "/access-model-metadata/v1/attributes/{key}/values/{value}"
|
|
346
|
+
.replace("{".concat("key", "}"), encodeURIComponent(String(key)))
|
|
347
|
+
.replace("{".concat("value", "}"), encodeURIComponent(String(value)));
|
|
348
|
+
localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
349
|
+
if (configuration) {
|
|
350
|
+
baseOptions = configuration.baseOptions;
|
|
351
|
+
}
|
|
352
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
|
|
353
|
+
localVarHeaderParameter = {};
|
|
354
|
+
localVarQueryParameter = {};
|
|
355
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
356
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
357
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
358
|
+
return [2 /*return*/, {
|
|
359
|
+
url: toPathString(localVarUrlObj),
|
|
360
|
+
axiosOptions: localVarRequestOptions,
|
|
361
|
+
}];
|
|
362
|
+
});
|
|
363
|
+
});
|
|
364
|
+
},
|
|
291
365
|
/**
|
|
292
366
|
* Get single Access Model Metadata Attribute
|
|
293
367
|
* @summary Get access model metadata attribute
|
|
@@ -359,16 +433,17 @@ export var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
359
433
|
});
|
|
360
434
|
},
|
|
361
435
|
/**
|
|
362
|
-
* Get a list of Access Model Metadata Attributes
|
|
436
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
363
437
|
* @summary List access model metadata attributes
|
|
364
|
-
* @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*
|
|
365
|
-
* @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,
|
|
438
|
+
* @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*
|
|
439
|
+
* @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**
|
|
366
440
|
* @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.
|
|
441
|
+
* @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.
|
|
367
442
|
* @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.
|
|
368
443
|
* @param {*} [axiosOptions] Override http request option.
|
|
369
444
|
* @throws {RequiredError}
|
|
370
445
|
*/
|
|
371
|
-
listAccessModelMetadataAttributeV1: function (filters, sorters, limit, count, axiosOptions) {
|
|
446
|
+
listAccessModelMetadataAttributeV1: function (filters, sorters, limit, offset, count, axiosOptions) {
|
|
372
447
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
373
448
|
return __awaiter(_this, void 0, void 0, function () {
|
|
374
449
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -390,6 +465,9 @@ export var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
390
465
|
if (limit !== undefined) {
|
|
391
466
|
localVarQueryParameter['limit'] = limit;
|
|
392
467
|
}
|
|
468
|
+
if (offset !== undefined) {
|
|
469
|
+
localVarQueryParameter['offset'] = offset;
|
|
470
|
+
}
|
|
393
471
|
if (count !== undefined) {
|
|
394
472
|
localVarQueryParameter['count'] = count;
|
|
395
473
|
}
|
|
@@ -404,15 +482,18 @@ export var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
404
482
|
});
|
|
405
483
|
},
|
|
406
484
|
/**
|
|
407
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
485
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
408
486
|
* @summary List access model metadata values
|
|
409
487
|
* @param {string} key Technical name of the Attribute.
|
|
488
|
+
* @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*
|
|
489
|
+
* @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**
|
|
410
490
|
* @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.
|
|
491
|
+
* @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.
|
|
411
492
|
* @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.
|
|
412
493
|
* @param {*} [axiosOptions] Override http request option.
|
|
413
494
|
* @throws {RequiredError}
|
|
414
495
|
*/
|
|
415
|
-
listAccessModelMetadataAttributeValueV1: function (key, limit, count, axiosOptions) {
|
|
496
|
+
listAccessModelMetadataAttributeValueV1: function (key, filters, sorters, limit, offset, count, axiosOptions) {
|
|
416
497
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
417
498
|
return __awaiter(_this, void 0, void 0, function () {
|
|
418
499
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -428,9 +509,18 @@ export var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
428
509
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
429
510
|
localVarHeaderParameter = {};
|
|
430
511
|
localVarQueryParameter = {};
|
|
512
|
+
if (filters !== undefined) {
|
|
513
|
+
localVarQueryParameter['filters'] = filters;
|
|
514
|
+
}
|
|
515
|
+
if (sorters !== undefined) {
|
|
516
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
517
|
+
}
|
|
431
518
|
if (limit !== undefined) {
|
|
432
519
|
localVarQueryParameter['limit'] = limit;
|
|
433
520
|
}
|
|
521
|
+
if (offset !== undefined) {
|
|
522
|
+
localVarQueryParameter['offset'] = offset;
|
|
523
|
+
}
|
|
434
524
|
if (count !== undefined) {
|
|
435
525
|
localVarQueryParameter['count'] = count;
|
|
436
526
|
}
|
|
@@ -445,7 +535,7 @@ export var AccessModelMetadataApiAxiosParamCreator = function (configuration) {
|
|
|
445
535
|
});
|
|
446
536
|
},
|
|
447
537
|
/**
|
|
448
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
538
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
449
539
|
* @summary Update access model metadata attribute
|
|
450
540
|
* @param {string} key Technical name of the Attribute.
|
|
451
541
|
* @param {Array<JsonPatchOperation>} jsonPatchOperation JSON Patch array to apply
|
|
@@ -639,7 +729,7 @@ export var AccessModelMetadataApiFp = function (configuration) {
|
|
|
639
729
|
var localVarAxiosParamCreator = AccessModelMetadataApiAxiosParamCreator(configuration);
|
|
640
730
|
return {
|
|
641
731
|
/**
|
|
642
|
-
* Create a new Access Model Metadata Attribute.
|
|
732
|
+
* 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.
|
|
643
733
|
* @summary Create access model metadata attribute
|
|
644
734
|
* @param {AttributeDTO} attributeDTO Attribute to create
|
|
645
735
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -662,7 +752,7 @@ export var AccessModelMetadataApiFp = function (configuration) {
|
|
|
662
752
|
});
|
|
663
753
|
},
|
|
664
754
|
/**
|
|
665
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
755
|
+
* 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.
|
|
666
756
|
* @summary Create access model metadata value
|
|
667
757
|
* @param {string} key Technical name of the Attribute.
|
|
668
758
|
* @param {AttributeValueDTO} attributeValueDTO Attribute value to create
|
|
@@ -685,6 +775,53 @@ export var AccessModelMetadataApiFp = function (configuration) {
|
|
|
685
775
|
});
|
|
686
776
|
});
|
|
687
777
|
},
|
|
778
|
+
/**
|
|
779
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
780
|
+
* @summary Delete access model metadata attribute
|
|
781
|
+
* @param {string} key Technical name of the Attribute.
|
|
782
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
783
|
+
* @throws {RequiredError}
|
|
784
|
+
*/
|
|
785
|
+
deleteAccessModelMetadataAttributeV1: function (key, axiosOptions) {
|
|
786
|
+
var _a, _b, _c;
|
|
787
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
788
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
789
|
+
return __generator(this, function (_d) {
|
|
790
|
+
switch (_d.label) {
|
|
791
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteAccessModelMetadataAttributeV1(key, axiosOptions)];
|
|
792
|
+
case 1:
|
|
793
|
+
localVarAxiosArgs = _d.sent();
|
|
794
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
795
|
+
localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessModelMetadataApi.deleteAccessModelMetadataAttributeV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
796
|
+
return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
797
|
+
}
|
|
798
|
+
});
|
|
799
|
+
});
|
|
800
|
+
},
|
|
801
|
+
/**
|
|
802
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
803
|
+
* @summary Delete access model metadata value
|
|
804
|
+
* @param {string} key Technical name of the Attribute.
|
|
805
|
+
* @param {string} value Technical name of the Attribute value.
|
|
806
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
807
|
+
* @throws {RequiredError}
|
|
808
|
+
*/
|
|
809
|
+
deleteAccessModelMetadataAttributeValueV1: function (key, value, axiosOptions) {
|
|
810
|
+
var _a, _b, _c;
|
|
811
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
812
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
813
|
+
return __generator(this, function (_d) {
|
|
814
|
+
switch (_d.label) {
|
|
815
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteAccessModelMetadataAttributeValueV1(key, value, axiosOptions)];
|
|
816
|
+
case 1:
|
|
817
|
+
localVarAxiosArgs = _d.sent();
|
|
818
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
819
|
+
localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessModelMetadataApi.deleteAccessModelMetadataAttributeValueV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
820
|
+
return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
821
|
+
}
|
|
822
|
+
});
|
|
823
|
+
});
|
|
824
|
+
},
|
|
688
825
|
/**
|
|
689
826
|
* Get single Access Model Metadata Attribute
|
|
690
827
|
* @summary Get access model metadata attribute
|
|
@@ -733,22 +870,23 @@ export var AccessModelMetadataApiFp = function (configuration) {
|
|
|
733
870
|
});
|
|
734
871
|
},
|
|
735
872
|
/**
|
|
736
|
-
* Get a list of Access Model Metadata Attributes
|
|
873
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
737
874
|
* @summary List access model metadata attributes
|
|
738
|
-
* @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*
|
|
739
|
-
* @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,
|
|
875
|
+
* @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*
|
|
876
|
+
* @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**
|
|
740
877
|
* @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.
|
|
878
|
+
* @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.
|
|
741
879
|
* @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.
|
|
742
880
|
* @param {*} [axiosOptions] Override http request option.
|
|
743
881
|
* @throws {RequiredError}
|
|
744
882
|
*/
|
|
745
|
-
listAccessModelMetadataAttributeV1: function (filters, sorters, limit, count, axiosOptions) {
|
|
883
|
+
listAccessModelMetadataAttributeV1: function (filters, sorters, limit, offset, count, axiosOptions) {
|
|
746
884
|
var _a, _b, _c;
|
|
747
885
|
return __awaiter(this, void 0, void 0, function () {
|
|
748
886
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
749
887
|
return __generator(this, function (_d) {
|
|
750
888
|
switch (_d.label) {
|
|
751
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listAccessModelMetadataAttributeV1(filters, sorters, limit, count, axiosOptions)];
|
|
889
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listAccessModelMetadataAttributeV1(filters, sorters, limit, offset, count, axiosOptions)];
|
|
752
890
|
case 1:
|
|
753
891
|
localVarAxiosArgs = _d.sent();
|
|
754
892
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -759,21 +897,24 @@ export var AccessModelMetadataApiFp = function (configuration) {
|
|
|
759
897
|
});
|
|
760
898
|
},
|
|
761
899
|
/**
|
|
762
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
900
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
763
901
|
* @summary List access model metadata values
|
|
764
902
|
* @param {string} key Technical name of the Attribute.
|
|
903
|
+
* @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*
|
|
904
|
+
* @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**
|
|
765
905
|
* @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.
|
|
906
|
+
* @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.
|
|
766
907
|
* @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.
|
|
767
908
|
* @param {*} [axiosOptions] Override http request option.
|
|
768
909
|
* @throws {RequiredError}
|
|
769
910
|
*/
|
|
770
|
-
listAccessModelMetadataAttributeValueV1: function (key, limit, count, axiosOptions) {
|
|
911
|
+
listAccessModelMetadataAttributeValueV1: function (key, filters, sorters, limit, offset, count, axiosOptions) {
|
|
771
912
|
var _a, _b, _c;
|
|
772
913
|
return __awaiter(this, void 0, void 0, function () {
|
|
773
914
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
774
915
|
return __generator(this, function (_d) {
|
|
775
916
|
switch (_d.label) {
|
|
776
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listAccessModelMetadataAttributeValueV1(key, limit, count, axiosOptions)];
|
|
917
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listAccessModelMetadataAttributeValueV1(key, filters, sorters, limit, offset, count, axiosOptions)];
|
|
777
918
|
case 1:
|
|
778
919
|
localVarAxiosArgs = _d.sent();
|
|
779
920
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -784,7 +925,7 @@ export var AccessModelMetadataApiFp = function (configuration) {
|
|
|
784
925
|
});
|
|
785
926
|
},
|
|
786
927
|
/**
|
|
787
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
928
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
788
929
|
* @summary Update access model metadata attribute
|
|
789
930
|
* @param {string} key Technical name of the Attribute.
|
|
790
931
|
* @param {Array<JsonPatchOperation>} jsonPatchOperation JSON Patch array to apply
|
|
@@ -914,7 +1055,7 @@ export var AccessModelMetadataApiFactory = function (configuration, basePath, ax
|
|
|
914
1055
|
var localVarFp = AccessModelMetadataApiFp(configuration);
|
|
915
1056
|
return {
|
|
916
1057
|
/**
|
|
917
|
-
* Create a new Access Model Metadata Attribute.
|
|
1058
|
+
* 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.
|
|
918
1059
|
* @summary Create access model metadata attribute
|
|
919
1060
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
920
1061
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -924,7 +1065,7 @@ export var AccessModelMetadataApiFactory = function (configuration, basePath, ax
|
|
|
924
1065
|
return localVarFp.createAccessModelMetadataAttributeV1(requestParameters.attributeDTO, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
925
1066
|
},
|
|
926
1067
|
/**
|
|
927
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
1068
|
+
* 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.
|
|
928
1069
|
* @summary Create access model metadata value
|
|
929
1070
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
930
1071
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -933,6 +1074,26 @@ export var AccessModelMetadataApiFactory = function (configuration, basePath, ax
|
|
|
933
1074
|
createAccessModelMetadataAttributeValueV1: function (requestParameters, axiosOptions) {
|
|
934
1075
|
return localVarFp.createAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.attributeValueDTO, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
935
1076
|
},
|
|
1077
|
+
/**
|
|
1078
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
1079
|
+
* @summary Delete access model metadata attribute
|
|
1080
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1081
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1082
|
+
* @throws {RequiredError}
|
|
1083
|
+
*/
|
|
1084
|
+
deleteAccessModelMetadataAttributeV1: function (requestParameters, axiosOptions) {
|
|
1085
|
+
return localVarFp.deleteAccessModelMetadataAttributeV1(requestParameters.key, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1086
|
+
},
|
|
1087
|
+
/**
|
|
1088
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
1089
|
+
* @summary Delete access model metadata value
|
|
1090
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1091
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1092
|
+
* @throws {RequiredError}
|
|
1093
|
+
*/
|
|
1094
|
+
deleteAccessModelMetadataAttributeValueV1: function (requestParameters, axiosOptions) {
|
|
1095
|
+
return localVarFp.deleteAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.value, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1096
|
+
},
|
|
936
1097
|
/**
|
|
937
1098
|
* Get single Access Model Metadata Attribute
|
|
938
1099
|
* @summary Get access model metadata attribute
|
|
@@ -954,7 +1115,7 @@ export var AccessModelMetadataApiFactory = function (configuration, basePath, ax
|
|
|
954
1115
|
return localVarFp.getAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.value, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
955
1116
|
},
|
|
956
1117
|
/**
|
|
957
|
-
* Get a list of Access Model Metadata Attributes
|
|
1118
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
958
1119
|
* @summary List access model metadata attributes
|
|
959
1120
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
960
1121
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -962,20 +1123,20 @@ export var AccessModelMetadataApiFactory = function (configuration, basePath, ax
|
|
|
962
1123
|
*/
|
|
963
1124
|
listAccessModelMetadataAttributeV1: function (requestParameters, axiosOptions) {
|
|
964
1125
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
965
|
-
return localVarFp.listAccessModelMetadataAttributeV1(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1126
|
+
return localVarFp.listAccessModelMetadataAttributeV1(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
966
1127
|
},
|
|
967
1128
|
/**
|
|
968
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
1129
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
969
1130
|
* @summary List access model metadata values
|
|
970
1131
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
971
1132
|
* @param {*} [axiosOptions] Override http request option.
|
|
972
1133
|
* @throws {RequiredError}
|
|
973
1134
|
*/
|
|
974
1135
|
listAccessModelMetadataAttributeValueV1: function (requestParameters, axiosOptions) {
|
|
975
|
-
return localVarFp.listAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1136
|
+
return localVarFp.listAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
976
1137
|
},
|
|
977
1138
|
/**
|
|
978
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
1139
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
979
1140
|
* @summary Update access model metadata attribute
|
|
980
1141
|
* @param {AccessModelMetadataApiUpdateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
981
1142
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1041,7 +1202,7 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1041
1202
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
1042
1203
|
}
|
|
1043
1204
|
/**
|
|
1044
|
-
* Create a new Access Model Metadata Attribute.
|
|
1205
|
+
* 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.
|
|
1045
1206
|
* @summary Create access model metadata attribute
|
|
1046
1207
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1047
1208
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1053,7 +1214,7 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1053
1214
|
return AccessModelMetadataApiFp(this.configuration).createAccessModelMetadataAttributeV1(requestParameters.attributeDTO, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1054
1215
|
};
|
|
1055
1216
|
/**
|
|
1056
|
-
* Create a new value for an existing Access Model Metadata Attribute.
|
|
1217
|
+
* 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.
|
|
1057
1218
|
* @summary Create access model metadata value
|
|
1058
1219
|
* @param {AccessModelMetadataApiCreateAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1059
1220
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1064,6 +1225,30 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1064
1225
|
var _this = this;
|
|
1065
1226
|
return AccessModelMetadataApiFp(this.configuration).createAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.attributeValueDTO, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1066
1227
|
};
|
|
1228
|
+
/**
|
|
1229
|
+
* Delete an existing Access Model Metadata Attribute and all of its values.
|
|
1230
|
+
* @summary Delete access model metadata attribute
|
|
1231
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1232
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1233
|
+
* @throws {RequiredError}
|
|
1234
|
+
* @memberof AccessModelMetadataApi
|
|
1235
|
+
*/
|
|
1236
|
+
AccessModelMetadataApi.prototype.deleteAccessModelMetadataAttributeV1 = function (requestParameters, axiosOptions) {
|
|
1237
|
+
var _this = this;
|
|
1238
|
+
return AccessModelMetadataApiFp(this.configuration).deleteAccessModelMetadataAttributeV1(requestParameters.key, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1239
|
+
};
|
|
1240
|
+
/**
|
|
1241
|
+
* Delete an existing Access Model Metadata Attribute Value.
|
|
1242
|
+
* @summary Delete access model metadata value
|
|
1243
|
+
* @param {AccessModelMetadataApiDeleteAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1244
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1245
|
+
* @throws {RequiredError}
|
|
1246
|
+
* @memberof AccessModelMetadataApi
|
|
1247
|
+
*/
|
|
1248
|
+
AccessModelMetadataApi.prototype.deleteAccessModelMetadataAttributeValueV1 = function (requestParameters, axiosOptions) {
|
|
1249
|
+
var _this = this;
|
|
1250
|
+
return AccessModelMetadataApiFp(this.configuration).deleteAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.value, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1251
|
+
};
|
|
1067
1252
|
/**
|
|
1068
1253
|
* Get single Access Model Metadata Attribute
|
|
1069
1254
|
* @summary Get access model metadata attribute
|
|
@@ -1089,7 +1274,7 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1089
1274
|
return AccessModelMetadataApiFp(this.configuration).getAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.value, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1090
1275
|
};
|
|
1091
1276
|
/**
|
|
1092
|
-
* Get a list of Access Model Metadata Attributes
|
|
1277
|
+
* Get a list of Access Model Metadata Attributes. Supports pagination through limit and offset parameters.
|
|
1093
1278
|
* @summary List access model metadata attributes
|
|
1094
1279
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1095
1280
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1099,10 +1284,10 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1099
1284
|
AccessModelMetadataApi.prototype.listAccessModelMetadataAttributeV1 = function (requestParameters, axiosOptions) {
|
|
1100
1285
|
var _this = this;
|
|
1101
1286
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1102
|
-
return AccessModelMetadataApiFp(this.configuration).listAccessModelMetadataAttributeV1(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1287
|
+
return AccessModelMetadataApiFp(this.configuration).listAccessModelMetadataAttributeV1(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1103
1288
|
};
|
|
1104
1289
|
/**
|
|
1105
|
-
* Get a list of Access Model Metadata Attribute Values
|
|
1290
|
+
* Get a list of Access Model Metadata Attribute Values. Supports pagination through limit and offset parameters.
|
|
1106
1291
|
* @summary List access model metadata values
|
|
1107
1292
|
* @param {AccessModelMetadataApiListAccessModelMetadataAttributeValueV1Request} requestParameters Request parameters.
|
|
1108
1293
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1111,10 +1296,10 @@ var AccessModelMetadataApi = /** @class */ (function (_super) {
|
|
|
1111
1296
|
*/
|
|
1112
1297
|
AccessModelMetadataApi.prototype.listAccessModelMetadataAttributeValueV1 = function (requestParameters, axiosOptions) {
|
|
1113
1298
|
var _this = this;
|
|
1114
|
-
return AccessModelMetadataApiFp(this.configuration).listAccessModelMetadataAttributeValueV1(requestParameters.key, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1299
|
+
return 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); });
|
|
1115
1300
|
};
|
|
1116
1301
|
/**
|
|
1117
|
-
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
1302
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **isAdhoc**, **values**
|
|
1118
1303
|
* @summary Update access model metadata attribute
|
|
1119
1304
|
* @param {AccessModelMetadataApiUpdateAccessModelMetadataAttributeV1Request} requestParameters Request parameters.
|
|
1120
1305
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -106,6 +106,10 @@ export var AdditionalOwnerRefTypeEnum = {
|
|
|
106
106
|
Identity: 'IDENTITY',
|
|
107
107
|
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
108
108
|
};
|
|
109
|
+
export var AttributeValueDTOTypeEnum = {
|
|
110
|
+
Static: 'static',
|
|
111
|
+
Adhoc: 'adhoc'
|
|
112
|
+
};
|
|
109
113
|
export var EntitlementOwnerTypeEnum = {
|
|
110
114
|
Identity: 'IDENTITY'
|
|
111
115
|
};
|
|
@@ -106,6 +106,10 @@ export var AdditionalOwnerRefTypeEnum = {
|
|
|
106
106
|
Identity: 'IDENTITY',
|
|
107
107
|
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
108
108
|
};
|
|
109
|
+
export var AttributeValueDTOTypeEnum = {
|
|
110
|
+
Static: 'static',
|
|
111
|
+
Adhoc: 'adhoc'
|
|
112
|
+
};
|
|
109
113
|
/**
|
|
110
114
|
* Indicates whether the associated criteria represents an expression on identity attributes.
|
|
111
115
|
* @export
|
package/dist/esm/nerm/common.js
CHANGED
|
@@ -246,8 +246,8 @@ export var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH,
|
|
|
246
246
|
// header such as X-SailPoint-SDK forces a CORS preflight that tenants do
|
|
247
247
|
// not allow, which blocks the request outright.
|
|
248
248
|
if (typeof process !== 'undefined' && ((_a = process.versions) === null || _a === void 0 ? void 0 : _a.node)) {
|
|
249
|
-
headers['X-SailPoint-SDK'] = 'typescript-2.2.
|
|
250
|
-
userAgent = "SailPoint-SDK-TypeScript/2.2.
|
|
249
|
+
headers['X-SailPoint-SDK'] = 'typescript-2.2.3';
|
|
250
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.3";
|
|
251
251
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
252
252
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
253
253
|
}
|
|
@@ -246,8 +246,8 @@ export var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH,
|
|
|
246
246
|
// header such as X-SailPoint-SDK forces a CORS preflight that tenants do
|
|
247
247
|
// not allow, which blocks the request outright.
|
|
248
248
|
if (typeof process !== 'undefined' && ((_a = process.versions) === null || _a === void 0 ? void 0 : _a.node)) {
|
|
249
|
-
headers['X-SailPoint-SDK'] = 'typescript-2.2.
|
|
250
|
-
userAgent = "SailPoint-SDK-TypeScript/2.2.
|
|
249
|
+
headers['X-SailPoint-SDK'] = 'typescript-2.2.3';
|
|
250
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.3";
|
|
251
251
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
252
252
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
253
253
|
}
|
package/dist/esm/roles/api.js
CHANGED
|
@@ -101,6 +101,10 @@ export var ApprovalSchemeForRoleApproverTypeEnum = {
|
|
|
101
101
|
AdditionalOwner: 'ADDITIONAL_OWNER',
|
|
102
102
|
AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
|
|
103
103
|
};
|
|
104
|
+
export var AttributeValueDTOTypeEnum = {
|
|
105
|
+
Static: 'static',
|
|
106
|
+
Adhoc: 'adhoc'
|
|
107
|
+
};
|
|
104
108
|
export var DimensionRefTypeEnum = {
|
|
105
109
|
Dimension: 'DIMENSION'
|
|
106
110
|
};
|
package/dist/nerm/common.js
CHANGED
|
@@ -257,8 +257,8 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
257
257
|
// header such as X-SailPoint-SDK forces a CORS preflight that tenants do
|
|
258
258
|
// not allow, which blocks the request outright.
|
|
259
259
|
if (typeof process !== 'undefined' && ((_a = process.versions) === null || _a === void 0 ? void 0 : _a.node)) {
|
|
260
|
-
headers['X-SailPoint-SDK'] = 'typescript-2.2.
|
|
261
|
-
userAgent = "SailPoint-SDK-TypeScript/2.2.
|
|
260
|
+
headers['X-SailPoint-SDK'] = 'typescript-2.2.3';
|
|
261
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.3";
|
|
262
262
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
263
263
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
264
264
|
}
|