@sailpoint/api-client 2.2.11 → 2.2.13
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_profiles/api.d.ts +309 -169
- package/dist/access_profiles/api.js +158 -44
- package/dist/access_profiles/api.js.map +1 -1
- package/dist/connectors/api.d.ts +113 -0
- package/dist/connectors/api.js +32 -1
- package/dist/connectors/api.js.map +1 -1
- package/dist/data_access_security/api.d.ts +550 -20
- package/dist/data_access_security/api.js +540 -21
- package/dist/data_access_security/api.js.map +1 -1
- package/dist/entitlements/api.d.ts +4 -4
- package/dist/entitlements/api.js +4 -4
- package/dist/entitlements/api.js.map +1 -1
- package/dist/esm/access_profiles/api.js +157 -43
- package/dist/esm/connectors/api.js +31 -0
- package/dist/esm/data_access_security/api.js +539 -20
- package/dist/esm/entitlements/api.js +4 -4
- package/dist/esm/nerm/common.js +2 -2
- package/dist/esm/nermv2025/common.js +2 -2
- 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/sources/api.d.ts +6 -0
- package/dist/sources/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.DataAccessSecurityApi = exports.DataAccessSecurityApiFactory = exports.DataAccessSecurityApiFp = exports.DataAccessSecurityApiAxiosParamCreator = exports.LocaleOrigin = exports.CrawlResourcesSizesOptions = exports.BusinessServiceType = exports.ApplicationType = void 0;
|
|
81
|
+
exports.DataAccessSecurityApi = exports.DataAccessSecurityApiFactory = exports.DataAccessSecurityApiFp = exports.DataAccessSecurityApiAxiosParamCreator = exports.UpdatedatadictionaryfieldrequestDataDictionaryTypeEnum = exports.LocaleOrigin = exports.DatadictionaryfieldlistitemDataDictionaryTypeEnum = exports.CreatedatadictionaryfieldrequestDataDictionaryTypeEnum = exports.CrawlResourcesSizesOptions = exports.BusinessServiceType = exports.ApplicationType = void 0;
|
|
82
82
|
var axios_1 = __importDefault(require("axios"));
|
|
83
83
|
// Some imports not used depending on template conditions
|
|
84
84
|
// @ts-ignore
|
|
@@ -195,6 +195,18 @@ exports.CrawlResourcesSizesOptions = {
|
|
|
195
195
|
NUMBER_2: 2,
|
|
196
196
|
NUMBER_3: 3
|
|
197
197
|
};
|
|
198
|
+
exports.CreatedatadictionaryfieldrequestDataDictionaryTypeEnum = {
|
|
199
|
+
Users: 'Users',
|
|
200
|
+
Roles: 'Roles',
|
|
201
|
+
PermissionTypes: 'Permission Types',
|
|
202
|
+
BusinessResources: 'Business Resources'
|
|
203
|
+
};
|
|
204
|
+
exports.DatadictionaryfieldlistitemDataDictionaryTypeEnum = {
|
|
205
|
+
Users: 'Users',
|
|
206
|
+
Roles: 'Roles',
|
|
207
|
+
PermissionTypes: 'Permission Types',
|
|
208
|
+
BusinessResources: 'Business Resources'
|
|
209
|
+
};
|
|
198
210
|
/**
|
|
199
211
|
* An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.
|
|
200
212
|
* @export
|
|
@@ -204,6 +216,12 @@ exports.LocaleOrigin = {
|
|
|
204
216
|
Default: 'DEFAULT',
|
|
205
217
|
Request: 'REQUEST'
|
|
206
218
|
};
|
|
219
|
+
exports.UpdatedatadictionaryfieldrequestDataDictionaryTypeEnum = {
|
|
220
|
+
Users: 'Users',
|
|
221
|
+
Roles: 'Roles',
|
|
222
|
+
PermissionTypes: 'Permission Types',
|
|
223
|
+
BusinessResources: 'Business Resources'
|
|
224
|
+
};
|
|
207
225
|
/**
|
|
208
226
|
* DataAccessSecurityApi - axios parameter creator
|
|
209
227
|
* @export
|
|
@@ -279,7 +297,41 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
279
297
|
});
|
|
280
298
|
},
|
|
281
299
|
/**
|
|
282
|
-
*
|
|
300
|
+
* Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
|
|
301
|
+
* @summary Create data dictionary field
|
|
302
|
+
* @param {Createdatadictionaryfieldrequest} createdatadictionaryfieldrequest Custom data dictionary field to create.
|
|
303
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
304
|
+
* @throws {RequiredError}
|
|
305
|
+
*/
|
|
306
|
+
createDataDictionaryFieldV1: function (createdatadictionaryfieldrequest, axiosOptions) {
|
|
307
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
308
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
309
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
310
|
+
return __generator(this, function (_a) {
|
|
311
|
+
// verify required parameter 'createdatadictionaryfieldrequest' is not null or undefined
|
|
312
|
+
(0, common_1.assertParamExists)('createDataDictionaryFieldV1', 'createdatadictionaryfieldrequest', createdatadictionaryfieldrequest);
|
|
313
|
+
localVarPath = "/das/v1/permissions/fields";
|
|
314
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
315
|
+
if (configuration) {
|
|
316
|
+
baseOptions = configuration.baseOptions;
|
|
317
|
+
}
|
|
318
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
|
|
319
|
+
localVarHeaderParameter = {};
|
|
320
|
+
localVarQueryParameter = {};
|
|
321
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
322
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
323
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
324
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
325
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createdatadictionaryfieldrequest, localVarRequestOptions, configuration);
|
|
326
|
+
return [2 /*return*/, {
|
|
327
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
328
|
+
axiosOptions: localVarRequestOptions,
|
|
329
|
+
}];
|
|
330
|
+
});
|
|
331
|
+
});
|
|
332
|
+
},
|
|
333
|
+
/**
|
|
334
|
+
* This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source. Optionally configure `users` and `groups` to register source attributes (`properties`) and map them to data dictionary fields by name (`fieldMappings.fieldDictionaryName`). When omitted, both collections are created with fixed columns only.
|
|
283
335
|
* @summary Create identity collector
|
|
284
336
|
* @param {Createidentitycollectorrequest} createidentitycollectorrequest Request body containing the details required to create a new identity collector.
|
|
285
337
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -292,7 +344,7 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
292
344
|
return __generator(this, function (_a) {
|
|
293
345
|
// verify required parameter 'createidentitycollectorrequest' is not null or undefined
|
|
294
346
|
(0, common_1.assertParamExists)('createIdentityCollectorV1', 'createidentitycollectorrequest', createidentitycollectorrequest);
|
|
295
|
-
localVarPath = "/das/identity-collectors
|
|
347
|
+
localVarPath = "/das/v1/identity-collectors";
|
|
296
348
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
297
349
|
if (configuration) {
|
|
298
350
|
baseOptions = configuration.baseOptions;
|
|
@@ -566,6 +618,39 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
566
618
|
});
|
|
567
619
|
});
|
|
568
620
|
},
|
|
621
|
+
/**
|
|
622
|
+
* Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
|
|
623
|
+
* @summary Delete data dictionary field
|
|
624
|
+
* @param {string} name The field name to delete.
|
|
625
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
626
|
+
* @throws {RequiredError}
|
|
627
|
+
*/
|
|
628
|
+
deleteDataDictionaryFieldV1: function (name, axiosOptions) {
|
|
629
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
630
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
631
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
632
|
+
return __generator(this, function (_a) {
|
|
633
|
+
// verify required parameter 'name' is not null or undefined
|
|
634
|
+
(0, common_1.assertParamExists)('deleteDataDictionaryFieldV1', 'name', name);
|
|
635
|
+
localVarPath = "/das/v1/permissions/fields/{name}"
|
|
636
|
+
.replace("{".concat("name", "}"), encodeURIComponent(String(name)));
|
|
637
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
638
|
+
if (configuration) {
|
|
639
|
+
baseOptions = configuration.baseOptions;
|
|
640
|
+
}
|
|
641
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
|
|
642
|
+
localVarHeaderParameter = {};
|
|
643
|
+
localVarQueryParameter = {};
|
|
644
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
645
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
646
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
647
|
+
return [2 /*return*/, {
|
|
648
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
649
|
+
axiosOptions: localVarRequestOptions,
|
|
650
|
+
}];
|
|
651
|
+
});
|
|
652
|
+
});
|
|
653
|
+
},
|
|
569
654
|
/**
|
|
570
655
|
* This endpoint deletes an identity collector from Data Access Security by its unique identifier.
|
|
571
656
|
* @summary Delete identity collector by identifier
|
|
@@ -580,7 +665,7 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
580
665
|
return __generator(this, function (_a) {
|
|
581
666
|
// verify required parameter 'id' is not null or undefined
|
|
582
667
|
(0, common_1.assertParamExists)('deleteIdentityCollectorV1', 'id', id);
|
|
583
|
-
localVarPath = "/das/identity-collectors/
|
|
668
|
+
localVarPath = "/das/v1/identity-collectors/{id}"
|
|
584
669
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
585
670
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
586
671
|
if (configuration) {
|
|
@@ -743,6 +828,76 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
743
828
|
});
|
|
744
829
|
});
|
|
745
830
|
},
|
|
831
|
+
/**
|
|
832
|
+
* Returns the built-in source attribute names for users and groups collections. When no filter is provided, built-in properties for all public identity collector types are returned (the same base types listed by [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1)). When filtered by `type`, only the matching type is returned; the filter accepts any supported type display name, including SaaS variants such as `Box SaaS` or `AWS SaaS`. These attributes are always available for field mapping without being listed in `properties`.
|
|
833
|
+
* @summary List built-in identity collector properties
|
|
834
|
+
* @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: **type**: *eq*
|
|
835
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
836
|
+
* @throws {RequiredError}
|
|
837
|
+
*/
|
|
838
|
+
getIdentityCollectorBuiltinPropertiesV1: function (filters, axiosOptions) {
|
|
839
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
840
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
841
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
842
|
+
return __generator(this, function (_a) {
|
|
843
|
+
localVarPath = "/das/v1/identity-collectors/properties";
|
|
844
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
845
|
+
if (configuration) {
|
|
846
|
+
baseOptions = configuration.baseOptions;
|
|
847
|
+
}
|
|
848
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
849
|
+
localVarHeaderParameter = {};
|
|
850
|
+
localVarQueryParameter = {};
|
|
851
|
+
if (filters !== undefined) {
|
|
852
|
+
localVarQueryParameter['filters'] = filters;
|
|
853
|
+
}
|
|
854
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
855
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
856
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
857
|
+
return [2 /*return*/, {
|
|
858
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
859
|
+
axiosOptions: localVarRequestOptions,
|
|
860
|
+
}];
|
|
861
|
+
});
|
|
862
|
+
});
|
|
863
|
+
},
|
|
864
|
+
/**
|
|
865
|
+
* Returns the public identity collector type display names exposed for metadata and UI discovery. This endpoint lists base types only (for example, `Box` rather than `Box SaaS`). SaaS variants are not listed here; the identity collector type is derived from `sourceId` when creating an identity collector. Existing identity collectors may still report SaaS variant types in list and update responses. Pagination is not supported for this endpoint; the full set of public types is always returned.
|
|
866
|
+
* @summary List identity collector types
|
|
867
|
+
* @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.
|
|
868
|
+
* @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.
|
|
869
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
870
|
+
* @throws {RequiredError}
|
|
871
|
+
*/
|
|
872
|
+
getIdentityCollectorTypesV1: function (limit, offset, axiosOptions) {
|
|
873
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
874
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
875
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
876
|
+
return __generator(this, function (_a) {
|
|
877
|
+
localVarPath = "/das/v1/identity-collectors/types";
|
|
878
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
879
|
+
if (configuration) {
|
|
880
|
+
baseOptions = configuration.baseOptions;
|
|
881
|
+
}
|
|
882
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
883
|
+
localVarHeaderParameter = {};
|
|
884
|
+
localVarQueryParameter = {};
|
|
885
|
+
if (limit !== undefined) {
|
|
886
|
+
localVarQueryParameter['limit'] = limit;
|
|
887
|
+
}
|
|
888
|
+
if (offset !== undefined) {
|
|
889
|
+
localVarQueryParameter['offset'] = offset;
|
|
890
|
+
}
|
|
891
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
892
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
893
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
894
|
+
return [2 /*return*/, {
|
|
895
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
896
|
+
axiosOptions: localVarRequestOptions,
|
|
897
|
+
}];
|
|
898
|
+
});
|
|
899
|
+
});
|
|
900
|
+
},
|
|
746
901
|
/**
|
|
747
902
|
*
|
|
748
903
|
* @summary Retrieve owners per application.
|
|
@@ -940,6 +1095,51 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
940
1095
|
});
|
|
941
1096
|
});
|
|
942
1097
|
},
|
|
1098
|
+
/**
|
|
1099
|
+
* Returns custom data dictionary fields that can be used when configuring identity collector field mappings and other permission-related settings. Built-in fields are not included in list responses; only custom fields created via [Create Data Dictionary Field](https://developer.sailpoint.com/docs/api/create-data-dictionary-field-v-1) are returned. All listed fields have `required: false`.
|
|
1100
|
+
* @summary List data dictionary fields
|
|
1101
|
+
* @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: **dataDictionaryType**: *eq* **name**: *eq* Supported composite operators are *and*
|
|
1102
|
+
* @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.
|
|
1103
|
+
* @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.
|
|
1104
|
+
* @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.
|
|
1105
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1106
|
+
* @throws {RequiredError}
|
|
1107
|
+
*/
|
|
1108
|
+
listDataDictionaryFieldsV1: function (filters, limit, offset, count, axiosOptions) {
|
|
1109
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
1110
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
1111
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
1112
|
+
return __generator(this, function (_a) {
|
|
1113
|
+
localVarPath = "/das/v1/permissions/fields";
|
|
1114
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1115
|
+
if (configuration) {
|
|
1116
|
+
baseOptions = configuration.baseOptions;
|
|
1117
|
+
}
|
|
1118
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
1119
|
+
localVarHeaderParameter = {};
|
|
1120
|
+
localVarQueryParameter = {};
|
|
1121
|
+
if (filters !== undefined) {
|
|
1122
|
+
localVarQueryParameter['filters'] = filters;
|
|
1123
|
+
}
|
|
1124
|
+
if (limit !== undefined) {
|
|
1125
|
+
localVarQueryParameter['limit'] = limit;
|
|
1126
|
+
}
|
|
1127
|
+
if (offset !== undefined) {
|
|
1128
|
+
localVarQueryParameter['offset'] = offset;
|
|
1129
|
+
}
|
|
1130
|
+
if (count !== undefined) {
|
|
1131
|
+
localVarQueryParameter['count'] = count;
|
|
1132
|
+
}
|
|
1133
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1134
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1135
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
1136
|
+
return [2 /*return*/, {
|
|
1137
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1138
|
+
axiosOptions: localVarRequestOptions,
|
|
1139
|
+
}];
|
|
1140
|
+
});
|
|
1141
|
+
});
|
|
1142
|
+
},
|
|
943
1143
|
/**
|
|
944
1144
|
* This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination. Sorting is not supported for this endpoint; supplying the `sorters` query parameter results in a validation error.
|
|
945
1145
|
* @summary List identity collectors
|
|
@@ -955,7 +1155,7 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
955
1155
|
return __awaiter(_this, void 0, void 0, function () {
|
|
956
1156
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
957
1157
|
return __generator(this, function (_a) {
|
|
958
|
-
localVarPath = "/das/identity-collectors
|
|
1158
|
+
localVarPath = "/das/v1/identity-collectors";
|
|
959
1159
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
960
1160
|
if (configuration) {
|
|
961
1161
|
baseOptions = configuration.baseOptions;
|
|
@@ -1024,10 +1224,48 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
1024
1224
|
});
|
|
1025
1225
|
},
|
|
1026
1226
|
/**
|
|
1027
|
-
* This
|
|
1028
|
-
* @summary
|
|
1029
|
-
* @param {
|
|
1030
|
-
* @param {
|
|
1227
|
+
* Fully replaces a custom data dictionary field. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted properties are rejected. For custom fields, `fieldType`, `dataDictionaryType`, and `required` must match the current values; only `name` may change. Built-in fields where `required` is true cannot be updated. List the field first with [List Data Dictionary Fields](https://developer.sailpoint.com/docs/api/list-data-dictionary-fields-v-1) to obtain the current representation before replacing it.
|
|
1228
|
+
* @summary Replace data dictionary field
|
|
1229
|
+
* @param {string} name The current field name.
|
|
1230
|
+
* @param {Updatedatadictionaryfieldrequest} updatedatadictionaryfieldrequest Complete data dictionary field representation used to fully replace the existing field.
|
|
1231
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1232
|
+
* @throws {RequiredError}
|
|
1233
|
+
*/
|
|
1234
|
+
putDataDictionaryFieldV1: function (name, updatedatadictionaryfieldrequest, axiosOptions) {
|
|
1235
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
1236
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
1237
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
1238
|
+
return __generator(this, function (_a) {
|
|
1239
|
+
// verify required parameter 'name' is not null or undefined
|
|
1240
|
+
(0, common_1.assertParamExists)('putDataDictionaryFieldV1', 'name', name);
|
|
1241
|
+
// verify required parameter 'updatedatadictionaryfieldrequest' is not null or undefined
|
|
1242
|
+
(0, common_1.assertParamExists)('putDataDictionaryFieldV1', 'updatedatadictionaryfieldrequest', updatedatadictionaryfieldrequest);
|
|
1243
|
+
localVarPath = "/das/v1/permissions/fields/{name}"
|
|
1244
|
+
.replace("{".concat("name", "}"), encodeURIComponent(String(name)));
|
|
1245
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1246
|
+
if (configuration) {
|
|
1247
|
+
baseOptions = configuration.baseOptions;
|
|
1248
|
+
}
|
|
1249
|
+
localVarRequestOptions = __assign(__assign({ method: 'PUT' }, baseOptions), axiosOptions);
|
|
1250
|
+
localVarHeaderParameter = {};
|
|
1251
|
+
localVarQueryParameter = {};
|
|
1252
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1253
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1254
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1255
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
1256
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updatedatadictionaryfieldrequest, localVarRequestOptions, configuration);
|
|
1257
|
+
return [2 /*return*/, {
|
|
1258
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
1259
|
+
axiosOptions: localVarRequestOptions,
|
|
1260
|
+
}];
|
|
1261
|
+
});
|
|
1262
|
+
});
|
|
1263
|
+
},
|
|
1264
|
+
/**
|
|
1265
|
+
* Fully replaces an existing identity collector in Data Access Security. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted or null top-level properties are rejected. After a successful request, a subsequent list request returns exactly the configuration that was sent. Retrieve the current configuration with [List Identity Collectors](https://developer.sailpoint.com/docs/api/list-identity-collectors-v-1) before replacing it. The `sourceId` and `type` cannot be changed and must match the current values.
|
|
1266
|
+
* @summary Replace identity collector
|
|
1267
|
+
* @param {number} id The unique identifier of the identity collector to replace.
|
|
1268
|
+
* @param {Updateidentitycollectorrequest} updateidentitycollectorrequest Complete identity collector representation used to fully replace the existing resource. Partial updates are not supported.
|
|
1031
1269
|
* @param {*} [axiosOptions] Override http request option.
|
|
1032
1270
|
* @throws {RequiredError}
|
|
1033
1271
|
*/
|
|
@@ -1040,7 +1278,7 @@ var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
|
|
|
1040
1278
|
(0, common_1.assertParamExists)('putIdentityCollectorV1', 'id', id);
|
|
1041
1279
|
// verify required parameter 'updateidentitycollectorrequest' is not null or undefined
|
|
1042
1280
|
(0, common_1.assertParamExists)('putIdentityCollectorV1', 'updateidentitycollectorrequest', updateidentitycollectorrequest);
|
|
1043
|
-
localVarPath = "/das/identity-collectors/
|
|
1281
|
+
localVarPath = "/das/v1/identity-collectors/{id}"
|
|
1044
1282
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
1045
1283
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
1046
1284
|
if (configuration) {
|
|
@@ -1189,7 +1427,30 @@ var DataAccessSecurityApiFp = function (configuration) {
|
|
|
1189
1427
|
});
|
|
1190
1428
|
},
|
|
1191
1429
|
/**
|
|
1192
|
-
*
|
|
1430
|
+
* Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
|
|
1431
|
+
* @summary Create data dictionary field
|
|
1432
|
+
* @param {Createdatadictionaryfieldrequest} createdatadictionaryfieldrequest Custom data dictionary field to create.
|
|
1433
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1434
|
+
* @throws {RequiredError}
|
|
1435
|
+
*/
|
|
1436
|
+
createDataDictionaryFieldV1: function (createdatadictionaryfieldrequest, axiosOptions) {
|
|
1437
|
+
var _a, _b, _c;
|
|
1438
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1439
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
1440
|
+
return __generator(this, function (_d) {
|
|
1441
|
+
switch (_d.label) {
|
|
1442
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.createDataDictionaryFieldV1(createdatadictionaryfieldrequest, axiosOptions)];
|
|
1443
|
+
case 1:
|
|
1444
|
+
localVarAxiosArgs = _d.sent();
|
|
1445
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1446
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DataAccessSecurityApi.createDataDictionaryFieldV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1447
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
1448
|
+
}
|
|
1449
|
+
});
|
|
1450
|
+
});
|
|
1451
|
+
},
|
|
1452
|
+
/**
|
|
1453
|
+
* This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source. Optionally configure `users` and `groups` to register source attributes (`properties`) and map them to data dictionary fields by name (`fieldMappings.fieldDictionaryName`). When omitted, both collections are created with fixed columns only.
|
|
1193
1454
|
* @summary Create identity collector
|
|
1194
1455
|
* @param {Createidentitycollectorrequest} createidentitycollectorrequest Request body containing the details required to create a new identity collector.
|
|
1195
1456
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1377,6 +1638,29 @@ var DataAccessSecurityApiFp = function (configuration) {
|
|
|
1377
1638
|
});
|
|
1378
1639
|
});
|
|
1379
1640
|
},
|
|
1641
|
+
/**
|
|
1642
|
+
* Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
|
|
1643
|
+
* @summary Delete data dictionary field
|
|
1644
|
+
* @param {string} name The field name to delete.
|
|
1645
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1646
|
+
* @throws {RequiredError}
|
|
1647
|
+
*/
|
|
1648
|
+
deleteDataDictionaryFieldV1: function (name, axiosOptions) {
|
|
1649
|
+
var _a, _b, _c;
|
|
1650
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1651
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
1652
|
+
return __generator(this, function (_d) {
|
|
1653
|
+
switch (_d.label) {
|
|
1654
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteDataDictionaryFieldV1(name, axiosOptions)];
|
|
1655
|
+
case 1:
|
|
1656
|
+
localVarAxiosArgs = _d.sent();
|
|
1657
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1658
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DataAccessSecurityApi.deleteDataDictionaryFieldV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1659
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
1660
|
+
}
|
|
1661
|
+
});
|
|
1662
|
+
});
|
|
1663
|
+
},
|
|
1380
1664
|
/**
|
|
1381
1665
|
* This endpoint deletes an identity collector from Data Access Security by its unique identifier.
|
|
1382
1666
|
* @summary Delete identity collector by identifier
|
|
@@ -1495,6 +1779,53 @@ var DataAccessSecurityApiFp = function (configuration) {
|
|
|
1495
1779
|
});
|
|
1496
1780
|
});
|
|
1497
1781
|
},
|
|
1782
|
+
/**
|
|
1783
|
+
* Returns the built-in source attribute names for users and groups collections. When no filter is provided, built-in properties for all public identity collector types are returned (the same base types listed by [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1)). When filtered by `type`, only the matching type is returned; the filter accepts any supported type display name, including SaaS variants such as `Box SaaS` or `AWS SaaS`. These attributes are always available for field mapping without being listed in `properties`.
|
|
1784
|
+
* @summary List built-in identity collector properties
|
|
1785
|
+
* @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: **type**: *eq*
|
|
1786
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1787
|
+
* @throws {RequiredError}
|
|
1788
|
+
*/
|
|
1789
|
+
getIdentityCollectorBuiltinPropertiesV1: function (filters, axiosOptions) {
|
|
1790
|
+
var _a, _b, _c;
|
|
1791
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1792
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
1793
|
+
return __generator(this, function (_d) {
|
|
1794
|
+
switch (_d.label) {
|
|
1795
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getIdentityCollectorBuiltinPropertiesV1(filters, axiosOptions)];
|
|
1796
|
+
case 1:
|
|
1797
|
+
localVarAxiosArgs = _d.sent();
|
|
1798
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1799
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DataAccessSecurityApi.getIdentityCollectorBuiltinPropertiesV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1800
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
1801
|
+
}
|
|
1802
|
+
});
|
|
1803
|
+
});
|
|
1804
|
+
},
|
|
1805
|
+
/**
|
|
1806
|
+
* Returns the public identity collector type display names exposed for metadata and UI discovery. This endpoint lists base types only (for example, `Box` rather than `Box SaaS`). SaaS variants are not listed here; the identity collector type is derived from `sourceId` when creating an identity collector. Existing identity collectors may still report SaaS variant types in list and update responses. Pagination is not supported for this endpoint; the full set of public types is always returned.
|
|
1807
|
+
* @summary List identity collector types
|
|
1808
|
+
* @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.
|
|
1809
|
+
* @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.
|
|
1810
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1811
|
+
* @throws {RequiredError}
|
|
1812
|
+
*/
|
|
1813
|
+
getIdentityCollectorTypesV1: function (limit, offset, axiosOptions) {
|
|
1814
|
+
var _a, _b, _c;
|
|
1815
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1816
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
1817
|
+
return __generator(this, function (_d) {
|
|
1818
|
+
switch (_d.label) {
|
|
1819
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getIdentityCollectorTypesV1(limit, offset, axiosOptions)];
|
|
1820
|
+
case 1:
|
|
1821
|
+
localVarAxiosArgs = _d.sent();
|
|
1822
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1823
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DataAccessSecurityApi.getIdentityCollectorTypesV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1824
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
1825
|
+
}
|
|
1826
|
+
});
|
|
1827
|
+
});
|
|
1828
|
+
},
|
|
1498
1829
|
/**
|
|
1499
1830
|
*
|
|
1500
1831
|
* @summary Retrieve owners per application.
|
|
@@ -1618,6 +1949,32 @@ var DataAccessSecurityApiFp = function (configuration) {
|
|
|
1618
1949
|
});
|
|
1619
1950
|
});
|
|
1620
1951
|
},
|
|
1952
|
+
/**
|
|
1953
|
+
* Returns custom data dictionary fields that can be used when configuring identity collector field mappings and other permission-related settings. Built-in fields are not included in list responses; only custom fields created via [Create Data Dictionary Field](https://developer.sailpoint.com/docs/api/create-data-dictionary-field-v-1) are returned. All listed fields have `required: false`.
|
|
1954
|
+
* @summary List data dictionary fields
|
|
1955
|
+
* @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: **dataDictionaryType**: *eq* **name**: *eq* Supported composite operators are *and*
|
|
1956
|
+
* @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.
|
|
1957
|
+
* @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.
|
|
1958
|
+
* @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.
|
|
1959
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
1960
|
+
* @throws {RequiredError}
|
|
1961
|
+
*/
|
|
1962
|
+
listDataDictionaryFieldsV1: function (filters, limit, offset, count, axiosOptions) {
|
|
1963
|
+
var _a, _b, _c;
|
|
1964
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1965
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
1966
|
+
return __generator(this, function (_d) {
|
|
1967
|
+
switch (_d.label) {
|
|
1968
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listDataDictionaryFieldsV1(filters, limit, offset, count, axiosOptions)];
|
|
1969
|
+
case 1:
|
|
1970
|
+
localVarAxiosArgs = _d.sent();
|
|
1971
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1972
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DataAccessSecurityApi.listDataDictionaryFieldsV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1973
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
1974
|
+
}
|
|
1975
|
+
});
|
|
1976
|
+
});
|
|
1977
|
+
},
|
|
1621
1978
|
/**
|
|
1622
1979
|
* This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination. Sorting is not supported for this endpoint; supplying the `sorters` query parameter results in a validation error.
|
|
1623
1980
|
* @summary List identity collectors
|
|
@@ -1669,10 +2026,34 @@ var DataAccessSecurityApiFp = function (configuration) {
|
|
|
1669
2026
|
});
|
|
1670
2027
|
},
|
|
1671
2028
|
/**
|
|
1672
|
-
* This
|
|
1673
|
-
* @summary
|
|
1674
|
-
* @param {
|
|
1675
|
-
* @param {
|
|
2029
|
+
* Fully replaces a custom data dictionary field. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted properties are rejected. For custom fields, `fieldType`, `dataDictionaryType`, and `required` must match the current values; only `name` may change. Built-in fields where `required` is true cannot be updated. List the field first with [List Data Dictionary Fields](https://developer.sailpoint.com/docs/api/list-data-dictionary-fields-v-1) to obtain the current representation before replacing it.
|
|
2030
|
+
* @summary Replace data dictionary field
|
|
2031
|
+
* @param {string} name The current field name.
|
|
2032
|
+
* @param {Updatedatadictionaryfieldrequest} updatedatadictionaryfieldrequest Complete data dictionary field representation used to fully replace the existing field.
|
|
2033
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2034
|
+
* @throws {RequiredError}
|
|
2035
|
+
*/
|
|
2036
|
+
putDataDictionaryFieldV1: function (name, updatedatadictionaryfieldrequest, axiosOptions) {
|
|
2037
|
+
var _a, _b, _c;
|
|
2038
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
2039
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
2040
|
+
return __generator(this, function (_d) {
|
|
2041
|
+
switch (_d.label) {
|
|
2042
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.putDataDictionaryFieldV1(name, updatedatadictionaryfieldrequest, axiosOptions)];
|
|
2043
|
+
case 1:
|
|
2044
|
+
localVarAxiosArgs = _d.sent();
|
|
2045
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2046
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DataAccessSecurityApi.putDataDictionaryFieldV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2047
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
2048
|
+
}
|
|
2049
|
+
});
|
|
2050
|
+
});
|
|
2051
|
+
},
|
|
2052
|
+
/**
|
|
2053
|
+
* Fully replaces an existing identity collector in Data Access Security. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted or null top-level properties are rejected. After a successful request, a subsequent list request returns exactly the configuration that was sent. Retrieve the current configuration with [List Identity Collectors](https://developer.sailpoint.com/docs/api/list-identity-collectors-v-1) before replacing it. The `sourceId` and `type` cannot be changed and must match the current values.
|
|
2054
|
+
* @summary Replace identity collector
|
|
2055
|
+
* @param {number} id The unique identifier of the identity collector to replace.
|
|
2056
|
+
* @param {Updateidentitycollectorrequest} updateidentitycollectorrequest Complete identity collector representation used to fully replace the existing resource. Partial updates are not supported.
|
|
1676
2057
|
* @param {*} [axiosOptions] Override http request option.
|
|
1677
2058
|
* @throws {RequiredError}
|
|
1678
2059
|
*/
|
|
@@ -1770,7 +2151,17 @@ var DataAccessSecurityApiFactory = function (configuration, basePath, axios) {
|
|
|
1770
2151
|
return localVarFp.createApplicationV1(requestParameters.baseCreateApplicationRequest, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1771
2152
|
},
|
|
1772
2153
|
/**
|
|
1773
|
-
*
|
|
2154
|
+
* Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
|
|
2155
|
+
* @summary Create data dictionary field
|
|
2156
|
+
* @param {DataAccessSecurityApiCreateDataDictionaryFieldV1Request} requestParameters Request parameters.
|
|
2157
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2158
|
+
* @throws {RequiredError}
|
|
2159
|
+
*/
|
|
2160
|
+
createDataDictionaryFieldV1: function (requestParameters, axiosOptions) {
|
|
2161
|
+
return localVarFp.createDataDictionaryFieldV1(requestParameters.createdatadictionaryfieldrequest, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
2162
|
+
},
|
|
2163
|
+
/**
|
|
2164
|
+
* This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source. Optionally configure `users` and `groups` to register source attributes (`properties`) and map them to data dictionary fields by name (`fieldMappings.fieldDictionaryName`). When omitted, both collections are created with fixed columns only.
|
|
1774
2165
|
* @summary Create identity collector
|
|
1775
2166
|
* @param {DataAccessSecurityApiCreateIdentityCollectorV1Request} requestParameters Request parameters.
|
|
1776
2167
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1849,6 +2240,16 @@ var DataAccessSecurityApiFactory = function (configuration, basePath, axios) {
|
|
|
1849
2240
|
deleteApplicationV1: function (requestParameters, axiosOptions) {
|
|
1850
2241
|
return localVarFp.deleteApplicationV1(requestParameters.id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1851
2242
|
},
|
|
2243
|
+
/**
|
|
2244
|
+
* Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
|
|
2245
|
+
* @summary Delete data dictionary field
|
|
2246
|
+
* @param {DataAccessSecurityApiDeleteDataDictionaryFieldV1Request} requestParameters Request parameters.
|
|
2247
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2248
|
+
* @throws {RequiredError}
|
|
2249
|
+
*/
|
|
2250
|
+
deleteDataDictionaryFieldV1: function (requestParameters, axiosOptions) {
|
|
2251
|
+
return localVarFp.deleteDataDictionaryFieldV1(requestParameters.name, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
2252
|
+
},
|
|
1852
2253
|
/**
|
|
1853
2254
|
* This endpoint deletes an identity collector from Data Access Security by its unique identifier.
|
|
1854
2255
|
* @summary Delete identity collector by identifier
|
|
@@ -1900,6 +2301,28 @@ var DataAccessSecurityApiFactory = function (configuration, basePath, axios) {
|
|
|
1900
2301
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1901
2302
|
return localVarFp.getApplicationsV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1902
2303
|
},
|
|
2304
|
+
/**
|
|
2305
|
+
* Returns the built-in source attribute names for users and groups collections. When no filter is provided, built-in properties for all public identity collector types are returned (the same base types listed by [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1)). When filtered by `type`, only the matching type is returned; the filter accepts any supported type display name, including SaaS variants such as `Box SaaS` or `AWS SaaS`. These attributes are always available for field mapping without being listed in `properties`.
|
|
2306
|
+
* @summary List built-in identity collector properties
|
|
2307
|
+
* @param {DataAccessSecurityApiGetIdentityCollectorBuiltinPropertiesV1Request} requestParameters Request parameters.
|
|
2308
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2309
|
+
* @throws {RequiredError}
|
|
2310
|
+
*/
|
|
2311
|
+
getIdentityCollectorBuiltinPropertiesV1: function (requestParameters, axiosOptions) {
|
|
2312
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2313
|
+
return localVarFp.getIdentityCollectorBuiltinPropertiesV1(requestParameters.filters, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
2314
|
+
},
|
|
2315
|
+
/**
|
|
2316
|
+
* Returns the public identity collector type display names exposed for metadata and UI discovery. This endpoint lists base types only (for example, `Box` rather than `Box SaaS`). SaaS variants are not listed here; the identity collector type is derived from `sourceId` when creating an identity collector. Existing identity collectors may still report SaaS variant types in list and update responses. Pagination is not supported for this endpoint; the full set of public types is always returned.
|
|
2317
|
+
* @summary List identity collector types
|
|
2318
|
+
* @param {DataAccessSecurityApiGetIdentityCollectorTypesV1Request} requestParameters Request parameters.
|
|
2319
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2320
|
+
* @throws {RequiredError}
|
|
2321
|
+
*/
|
|
2322
|
+
getIdentityCollectorTypesV1: function (requestParameters, axiosOptions) {
|
|
2323
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2324
|
+
return localVarFp.getIdentityCollectorTypesV1(requestParameters.limit, requestParameters.offset, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
2325
|
+
},
|
|
1903
2326
|
/**
|
|
1904
2327
|
*
|
|
1905
2328
|
* @summary Retrieve owners per application.
|
|
@@ -1952,6 +2375,17 @@ var DataAccessSecurityApiFactory = function (configuration, basePath, axios) {
|
|
|
1952
2375
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
1953
2376
|
return localVarFp.getTasksV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1954
2377
|
},
|
|
2378
|
+
/**
|
|
2379
|
+
* Returns custom data dictionary fields that can be used when configuring identity collector field mappings and other permission-related settings. Built-in fields are not included in list responses; only custom fields created via [Create Data Dictionary Field](https://developer.sailpoint.com/docs/api/create-data-dictionary-field-v-1) are returned. All listed fields have `required: false`.
|
|
2380
|
+
* @summary List data dictionary fields
|
|
2381
|
+
* @param {DataAccessSecurityApiListDataDictionaryFieldsV1Request} requestParameters Request parameters.
|
|
2382
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2383
|
+
* @throws {RequiredError}
|
|
2384
|
+
*/
|
|
2385
|
+
listDataDictionaryFieldsV1: function (requestParameters, axiosOptions) {
|
|
2386
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2387
|
+
return localVarFp.listDataDictionaryFieldsV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
2388
|
+
},
|
|
1955
2389
|
/**
|
|
1956
2390
|
* This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination. Sorting is not supported for this endpoint; supplying the `sorters` query parameter results in a validation error.
|
|
1957
2391
|
* @summary List identity collectors
|
|
@@ -1974,8 +2408,18 @@ var DataAccessSecurityApiFactory = function (configuration, basePath, axios) {
|
|
|
1974
2408
|
return localVarFp.putApplicationV1(requestParameters.id, requestParameters.baseCreateApplicationRequest, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
1975
2409
|
},
|
|
1976
2410
|
/**
|
|
1977
|
-
* This
|
|
1978
|
-
* @summary
|
|
2411
|
+
* Fully replaces a custom data dictionary field. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted properties are rejected. For custom fields, `fieldType`, `dataDictionaryType`, and `required` must match the current values; only `name` may change. Built-in fields where `required` is true cannot be updated. List the field first with [List Data Dictionary Fields](https://developer.sailpoint.com/docs/api/list-data-dictionary-fields-v-1) to obtain the current representation before replacing it.
|
|
2412
|
+
* @summary Replace data dictionary field
|
|
2413
|
+
* @param {DataAccessSecurityApiPutDataDictionaryFieldV1Request} requestParameters Request parameters.
|
|
2414
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2415
|
+
* @throws {RequiredError}
|
|
2416
|
+
*/
|
|
2417
|
+
putDataDictionaryFieldV1: function (requestParameters, axiosOptions) {
|
|
2418
|
+
return localVarFp.putDataDictionaryFieldV1(requestParameters.name, requestParameters.updatedatadictionaryfieldrequest, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
2419
|
+
},
|
|
2420
|
+
/**
|
|
2421
|
+
* Fully replaces an existing identity collector in Data Access Security. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted or null top-level properties are rejected. After a successful request, a subsequent list request returns exactly the configuration that was sent. Retrieve the current configuration with [List Identity Collectors](https://developer.sailpoint.com/docs/api/list-identity-collectors-v-1) before replacing it. The `sourceId` and `type` cannot be changed and must match the current values.
|
|
2422
|
+
* @summary Replace identity collector
|
|
1979
2423
|
* @param {DataAccessSecurityApiPutIdentityCollectorV1Request} requestParameters Request parameters.
|
|
1980
2424
|
* @param {*} [axiosOptions] Override http request option.
|
|
1981
2425
|
* @throws {RequiredError}
|
|
@@ -2042,7 +2486,19 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
|
|
|
2042
2486
|
return (0, exports.DataAccessSecurityApiFp)(this.configuration).createApplicationV1(requestParameters.baseCreateApplicationRequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2043
2487
|
};
|
|
2044
2488
|
/**
|
|
2045
|
-
*
|
|
2489
|
+
* Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
|
|
2490
|
+
* @summary Create data dictionary field
|
|
2491
|
+
* @param {DataAccessSecurityApiCreateDataDictionaryFieldV1Request} requestParameters Request parameters.
|
|
2492
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2493
|
+
* @throws {RequiredError}
|
|
2494
|
+
* @memberof DataAccessSecurityApi
|
|
2495
|
+
*/
|
|
2496
|
+
DataAccessSecurityApi.prototype.createDataDictionaryFieldV1 = function (requestParameters, axiosOptions) {
|
|
2497
|
+
var _this = this;
|
|
2498
|
+
return (0, exports.DataAccessSecurityApiFp)(this.configuration).createDataDictionaryFieldV1(requestParameters.createdatadictionaryfieldrequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2499
|
+
};
|
|
2500
|
+
/**
|
|
2501
|
+
* This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source. Optionally configure `users` and `groups` to register source attributes (`properties`) and map them to data dictionary fields by name (`fieldMappings.fieldDictionaryName`). When omitted, both collections are created with fixed columns only.
|
|
2046
2502
|
* @summary Create identity collector
|
|
2047
2503
|
* @param {DataAccessSecurityApiCreateIdentityCollectorV1Request} requestParameters Request parameters.
|
|
2048
2504
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -2137,6 +2593,18 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
|
|
|
2137
2593
|
var _this = this;
|
|
2138
2594
|
return (0, exports.DataAccessSecurityApiFp)(this.configuration).deleteApplicationV1(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2139
2595
|
};
|
|
2596
|
+
/**
|
|
2597
|
+
* Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
|
|
2598
|
+
* @summary Delete data dictionary field
|
|
2599
|
+
* @param {DataAccessSecurityApiDeleteDataDictionaryFieldV1Request} requestParameters Request parameters.
|
|
2600
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2601
|
+
* @throws {RequiredError}
|
|
2602
|
+
* @memberof DataAccessSecurityApi
|
|
2603
|
+
*/
|
|
2604
|
+
DataAccessSecurityApi.prototype.deleteDataDictionaryFieldV1 = function (requestParameters, axiosOptions) {
|
|
2605
|
+
var _this = this;
|
|
2606
|
+
return (0, exports.DataAccessSecurityApiFp)(this.configuration).deleteDataDictionaryFieldV1(requestParameters.name, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2607
|
+
};
|
|
2140
2608
|
/**
|
|
2141
2609
|
* This endpoint deletes an identity collector from Data Access Security by its unique identifier.
|
|
2142
2610
|
* @summary Delete identity collector by identifier
|
|
@@ -2198,6 +2666,32 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
|
|
|
2198
2666
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2199
2667
|
return (0, exports.DataAccessSecurityApiFp)(this.configuration).getApplicationsV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2200
2668
|
};
|
|
2669
|
+
/**
|
|
2670
|
+
* Returns the built-in source attribute names for users and groups collections. When no filter is provided, built-in properties for all public identity collector types are returned (the same base types listed by [List Identity Collector Types](https://developer.sailpoint.com/docs/api/get-identity-collector-types-v-1)). When filtered by `type`, only the matching type is returned; the filter accepts any supported type display name, including SaaS variants such as `Box SaaS` or `AWS SaaS`. These attributes are always available for field mapping without being listed in `properties`.
|
|
2671
|
+
* @summary List built-in identity collector properties
|
|
2672
|
+
* @param {DataAccessSecurityApiGetIdentityCollectorBuiltinPropertiesV1Request} requestParameters Request parameters.
|
|
2673
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2674
|
+
* @throws {RequiredError}
|
|
2675
|
+
* @memberof DataAccessSecurityApi
|
|
2676
|
+
*/
|
|
2677
|
+
DataAccessSecurityApi.prototype.getIdentityCollectorBuiltinPropertiesV1 = function (requestParameters, axiosOptions) {
|
|
2678
|
+
var _this = this;
|
|
2679
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2680
|
+
return (0, exports.DataAccessSecurityApiFp)(this.configuration).getIdentityCollectorBuiltinPropertiesV1(requestParameters.filters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2681
|
+
};
|
|
2682
|
+
/**
|
|
2683
|
+
* Returns the public identity collector type display names exposed for metadata and UI discovery. This endpoint lists base types only (for example, `Box` rather than `Box SaaS`). SaaS variants are not listed here; the identity collector type is derived from `sourceId` when creating an identity collector. Existing identity collectors may still report SaaS variant types in list and update responses. Pagination is not supported for this endpoint; the full set of public types is always returned.
|
|
2684
|
+
* @summary List identity collector types
|
|
2685
|
+
* @param {DataAccessSecurityApiGetIdentityCollectorTypesV1Request} requestParameters Request parameters.
|
|
2686
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2687
|
+
* @throws {RequiredError}
|
|
2688
|
+
* @memberof DataAccessSecurityApi
|
|
2689
|
+
*/
|
|
2690
|
+
DataAccessSecurityApi.prototype.getIdentityCollectorTypesV1 = function (requestParameters, axiosOptions) {
|
|
2691
|
+
var _this = this;
|
|
2692
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2693
|
+
return (0, exports.DataAccessSecurityApiFp)(this.configuration).getIdentityCollectorTypesV1(requestParameters.limit, requestParameters.offset, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2694
|
+
};
|
|
2201
2695
|
/**
|
|
2202
2696
|
*
|
|
2203
2697
|
* @summary Retrieve owners per application.
|
|
@@ -2260,6 +2754,19 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
|
|
|
2260
2754
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2261
2755
|
return (0, exports.DataAccessSecurityApiFp)(this.configuration).getTasksV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2262
2756
|
};
|
|
2757
|
+
/**
|
|
2758
|
+
* Returns custom data dictionary fields that can be used when configuring identity collector field mappings and other permission-related settings. Built-in fields are not included in list responses; only custom fields created via [Create Data Dictionary Field](https://developer.sailpoint.com/docs/api/create-data-dictionary-field-v-1) are returned. All listed fields have `required: false`.
|
|
2759
|
+
* @summary List data dictionary fields
|
|
2760
|
+
* @param {DataAccessSecurityApiListDataDictionaryFieldsV1Request} requestParameters Request parameters.
|
|
2761
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2762
|
+
* @throws {RequiredError}
|
|
2763
|
+
* @memberof DataAccessSecurityApi
|
|
2764
|
+
*/
|
|
2765
|
+
DataAccessSecurityApi.prototype.listDataDictionaryFieldsV1 = function (requestParameters, axiosOptions) {
|
|
2766
|
+
var _this = this;
|
|
2767
|
+
if (requestParameters === void 0) { requestParameters = {}; }
|
|
2768
|
+
return (0, exports.DataAccessSecurityApiFp)(this.configuration).listDataDictionaryFieldsV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2769
|
+
};
|
|
2263
2770
|
/**
|
|
2264
2771
|
* This endpoint lists the identity collectors in Data Access Security with optional filtering and pagination. Sorting is not supported for this endpoint; supplying the `sorters` query parameter results in a validation error.
|
|
2265
2772
|
* @summary List identity collectors
|
|
@@ -2286,8 +2793,20 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
|
|
|
2286
2793
|
return (0, exports.DataAccessSecurityApiFp)(this.configuration).putApplicationV1(requestParameters.id, requestParameters.baseCreateApplicationRequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2287
2794
|
};
|
|
2288
2795
|
/**
|
|
2289
|
-
* This
|
|
2290
|
-
* @summary
|
|
2796
|
+
* Fully replaces a custom data dictionary field. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted properties are rejected. For custom fields, `fieldType`, `dataDictionaryType`, and `required` must match the current values; only `name` may change. Built-in fields where `required` is true cannot be updated. List the field first with [List Data Dictionary Fields](https://developer.sailpoint.com/docs/api/list-data-dictionary-fields-v-1) to obtain the current representation before replacing it.
|
|
2797
|
+
* @summary Replace data dictionary field
|
|
2798
|
+
* @param {DataAccessSecurityApiPutDataDictionaryFieldV1Request} requestParameters Request parameters.
|
|
2799
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
2800
|
+
* @throws {RequiredError}
|
|
2801
|
+
* @memberof DataAccessSecurityApi
|
|
2802
|
+
*/
|
|
2803
|
+
DataAccessSecurityApi.prototype.putDataDictionaryFieldV1 = function (requestParameters, axiosOptions) {
|
|
2804
|
+
var _this = this;
|
|
2805
|
+
return (0, exports.DataAccessSecurityApiFp)(this.configuration).putDataDictionaryFieldV1(requestParameters.name, requestParameters.updatedatadictionaryfieldrequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
2806
|
+
};
|
|
2807
|
+
/**
|
|
2808
|
+
* Fully replaces an existing identity collector in Data Access Security. This is a PUT operation, not a partial update: the request body must contain the complete resource representation. Omitted or null top-level properties are rejected. After a successful request, a subsequent list request returns exactly the configuration that was sent. Retrieve the current configuration with [List Identity Collectors](https://developer.sailpoint.com/docs/api/list-identity-collectors-v-1) before replacing it. The `sourceId` and `type` cannot be changed and must match the current values.
|
|
2809
|
+
* @summary Replace identity collector
|
|
2291
2810
|
* @param {DataAccessSecurityApiPutIdentityCollectorV1Request} requestParameters Request parameters.
|
|
2292
2811
|
* @param {*} [axiosOptions] Override http request option.
|
|
2293
2812
|
* @throws {RequiredError}
|