@sailpoint/api-client 2.2.12 → 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.
@@ -189,6 +189,18 @@ export var CrawlResourcesSizesOptions = {
189
189
  NUMBER_2: 2,
190
190
  NUMBER_3: 3
191
191
  };
192
+ export var CreatedatadictionaryfieldrequestDataDictionaryTypeEnum = {
193
+ Users: 'Users',
194
+ Roles: 'Roles',
195
+ PermissionTypes: 'Permission Types',
196
+ BusinessResources: 'Business Resources'
197
+ };
198
+ export var DatadictionaryfieldlistitemDataDictionaryTypeEnum = {
199
+ Users: 'Users',
200
+ Roles: 'Roles',
201
+ PermissionTypes: 'Permission Types',
202
+ BusinessResources: 'Business Resources'
203
+ };
192
204
  /**
193
205
  * 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.
194
206
  * @export
@@ -198,6 +210,12 @@ export var LocaleOrigin = {
198
210
  Default: 'DEFAULT',
199
211
  Request: 'REQUEST'
200
212
  };
213
+ export var UpdatedatadictionaryfieldrequestDataDictionaryTypeEnum = {
214
+ Users: 'Users',
215
+ Roles: 'Roles',
216
+ PermissionTypes: 'Permission Types',
217
+ BusinessResources: 'Business Resources'
218
+ };
201
219
  /**
202
220
  * DataAccessSecurityApi - axios parameter creator
203
221
  * @export
@@ -273,7 +291,41 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
273
291
  });
274
292
  },
275
293
  /**
276
- * This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source.
294
+ * Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
295
+ * @summary Create data dictionary field
296
+ * @param {Createdatadictionaryfieldrequest} createdatadictionaryfieldrequest Custom data dictionary field to create.
297
+ * @param {*} [axiosOptions] Override http request option.
298
+ * @throws {RequiredError}
299
+ */
300
+ createDataDictionaryFieldV1: function (createdatadictionaryfieldrequest, axiosOptions) {
301
+ if (axiosOptions === void 0) { axiosOptions = {}; }
302
+ return __awaiter(_this, void 0, void 0, function () {
303
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
304
+ return __generator(this, function (_a) {
305
+ // verify required parameter 'createdatadictionaryfieldrequest' is not null or undefined
306
+ assertParamExists('createDataDictionaryFieldV1', 'createdatadictionaryfieldrequest', createdatadictionaryfieldrequest);
307
+ localVarPath = "/das/v1/permissions/fields";
308
+ localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
309
+ if (configuration) {
310
+ baseOptions = configuration.baseOptions;
311
+ }
312
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
313
+ localVarHeaderParameter = {};
314
+ localVarQueryParameter = {};
315
+ localVarHeaderParameter['Content-Type'] = 'application/json';
316
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
317
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
318
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
319
+ localVarRequestOptions.data = serializeDataIfNeeded(createdatadictionaryfieldrequest, localVarRequestOptions, configuration);
320
+ return [2 /*return*/, {
321
+ url: toPathString(localVarUrlObj),
322
+ axiosOptions: localVarRequestOptions,
323
+ }];
324
+ });
325
+ });
326
+ },
327
+ /**
328
+ * 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.
277
329
  * @summary Create identity collector
278
330
  * @param {Createidentitycollectorrequest} createidentitycollectorrequest Request body containing the details required to create a new identity collector.
279
331
  * @param {*} [axiosOptions] Override http request option.
@@ -286,7 +338,7 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
286
338
  return __generator(this, function (_a) {
287
339
  // verify required parameter 'createidentitycollectorrequest' is not null or undefined
288
340
  assertParamExists('createIdentityCollectorV1', 'createidentitycollectorrequest', createidentitycollectorrequest);
289
- localVarPath = "/das/identity-collectors/v1";
341
+ localVarPath = "/das/v1/identity-collectors";
290
342
  localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
291
343
  if (configuration) {
292
344
  baseOptions = configuration.baseOptions;
@@ -560,6 +612,39 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
560
612
  });
561
613
  });
562
614
  },
615
+ /**
616
+ * Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
617
+ * @summary Delete data dictionary field
618
+ * @param {string} name The field name to delete.
619
+ * @param {*} [axiosOptions] Override http request option.
620
+ * @throws {RequiredError}
621
+ */
622
+ deleteDataDictionaryFieldV1: function (name, axiosOptions) {
623
+ if (axiosOptions === void 0) { axiosOptions = {}; }
624
+ return __awaiter(_this, void 0, void 0, function () {
625
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
626
+ return __generator(this, function (_a) {
627
+ // verify required parameter 'name' is not null or undefined
628
+ assertParamExists('deleteDataDictionaryFieldV1', 'name', name);
629
+ localVarPath = "/das/v1/permissions/fields/{name}"
630
+ .replace("{".concat("name", "}"), encodeURIComponent(String(name)));
631
+ localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
632
+ if (configuration) {
633
+ baseOptions = configuration.baseOptions;
634
+ }
635
+ localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), axiosOptions);
636
+ localVarHeaderParameter = {};
637
+ localVarQueryParameter = {};
638
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
639
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
640
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
641
+ return [2 /*return*/, {
642
+ url: toPathString(localVarUrlObj),
643
+ axiosOptions: localVarRequestOptions,
644
+ }];
645
+ });
646
+ });
647
+ },
563
648
  /**
564
649
  * This endpoint deletes an identity collector from Data Access Security by its unique identifier.
565
650
  * @summary Delete identity collector by identifier
@@ -574,7 +659,7 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
574
659
  return __generator(this, function (_a) {
575
660
  // verify required parameter 'id' is not null or undefined
576
661
  assertParamExists('deleteIdentityCollectorV1', 'id', id);
577
- localVarPath = "/das/identity-collectors/v1/{id}"
662
+ localVarPath = "/das/v1/identity-collectors/{id}"
578
663
  .replace("{".concat("id", "}"), encodeURIComponent(String(id)));
579
664
  localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
580
665
  if (configuration) {
@@ -737,6 +822,76 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
737
822
  });
738
823
  });
739
824
  },
825
+ /**
826
+ * 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`.
827
+ * @summary List built-in identity collector properties
828
+ * @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*
829
+ * @param {*} [axiosOptions] Override http request option.
830
+ * @throws {RequiredError}
831
+ */
832
+ getIdentityCollectorBuiltinPropertiesV1: function (filters, axiosOptions) {
833
+ if (axiosOptions === void 0) { axiosOptions = {}; }
834
+ return __awaiter(_this, void 0, void 0, function () {
835
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
836
+ return __generator(this, function (_a) {
837
+ localVarPath = "/das/v1/identity-collectors/properties";
838
+ localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
839
+ if (configuration) {
840
+ baseOptions = configuration.baseOptions;
841
+ }
842
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
843
+ localVarHeaderParameter = {};
844
+ localVarQueryParameter = {};
845
+ if (filters !== undefined) {
846
+ localVarQueryParameter['filters'] = filters;
847
+ }
848
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
849
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
850
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
851
+ return [2 /*return*/, {
852
+ url: toPathString(localVarUrlObj),
853
+ axiosOptions: localVarRequestOptions,
854
+ }];
855
+ });
856
+ });
857
+ },
858
+ /**
859
+ * 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.
860
+ * @summary List identity collector types
861
+ * @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.
862
+ * @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.
863
+ * @param {*} [axiosOptions] Override http request option.
864
+ * @throws {RequiredError}
865
+ */
866
+ getIdentityCollectorTypesV1: function (limit, offset, axiosOptions) {
867
+ if (axiosOptions === void 0) { axiosOptions = {}; }
868
+ return __awaiter(_this, void 0, void 0, function () {
869
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
870
+ return __generator(this, function (_a) {
871
+ localVarPath = "/das/v1/identity-collectors/types";
872
+ localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
873
+ if (configuration) {
874
+ baseOptions = configuration.baseOptions;
875
+ }
876
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
877
+ localVarHeaderParameter = {};
878
+ localVarQueryParameter = {};
879
+ if (limit !== undefined) {
880
+ localVarQueryParameter['limit'] = limit;
881
+ }
882
+ if (offset !== undefined) {
883
+ localVarQueryParameter['offset'] = offset;
884
+ }
885
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
886
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
887
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
888
+ return [2 /*return*/, {
889
+ url: toPathString(localVarUrlObj),
890
+ axiosOptions: localVarRequestOptions,
891
+ }];
892
+ });
893
+ });
894
+ },
740
895
  /**
741
896
  *
742
897
  * @summary Retrieve owners per application.
@@ -934,6 +1089,51 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
934
1089
  });
935
1090
  });
936
1091
  },
1092
+ /**
1093
+ * 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`.
1094
+ * @summary List data dictionary fields
1095
+ * @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*
1096
+ * @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.
1097
+ * @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.
1098
+ * @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.
1099
+ * @param {*} [axiosOptions] Override http request option.
1100
+ * @throws {RequiredError}
1101
+ */
1102
+ listDataDictionaryFieldsV1: function (filters, limit, offset, count, axiosOptions) {
1103
+ if (axiosOptions === void 0) { axiosOptions = {}; }
1104
+ return __awaiter(_this, void 0, void 0, function () {
1105
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
1106
+ return __generator(this, function (_a) {
1107
+ localVarPath = "/das/v1/permissions/fields";
1108
+ localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1109
+ if (configuration) {
1110
+ baseOptions = configuration.baseOptions;
1111
+ }
1112
+ localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
1113
+ localVarHeaderParameter = {};
1114
+ localVarQueryParameter = {};
1115
+ if (filters !== undefined) {
1116
+ localVarQueryParameter['filters'] = filters;
1117
+ }
1118
+ if (limit !== undefined) {
1119
+ localVarQueryParameter['limit'] = limit;
1120
+ }
1121
+ if (offset !== undefined) {
1122
+ localVarQueryParameter['offset'] = offset;
1123
+ }
1124
+ if (count !== undefined) {
1125
+ localVarQueryParameter['count'] = count;
1126
+ }
1127
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1128
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1129
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
1130
+ return [2 /*return*/, {
1131
+ url: toPathString(localVarUrlObj),
1132
+ axiosOptions: localVarRequestOptions,
1133
+ }];
1134
+ });
1135
+ });
1136
+ },
937
1137
  /**
938
1138
  * 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.
939
1139
  * @summary List identity collectors
@@ -949,7 +1149,7 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
949
1149
  return __awaiter(_this, void 0, void 0, function () {
950
1150
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
951
1151
  return __generator(this, function (_a) {
952
- localVarPath = "/das/identity-collectors/v1";
1152
+ localVarPath = "/das/v1/identity-collectors";
953
1153
  localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
954
1154
  if (configuration) {
955
1155
  baseOptions = configuration.baseOptions;
@@ -1018,10 +1218,48 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
1018
1218
  });
1019
1219
  },
1020
1220
  /**
1021
- * This endpoint updates the name of an existing identity collector in Data Access Security. The `sourceId` and `type` cannot be changed and must match the current values.
1022
- * @summary Update identity collector by identifier
1023
- * @param {number} id The unique identifier of the identity collector to update.
1024
- * @param {Updateidentitycollectorrequest} updateidentitycollectorrequest Request body containing the updated details for the identity collector.
1221
+ * 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.
1222
+ * @summary Replace data dictionary field
1223
+ * @param {string} name The current field name.
1224
+ * @param {Updatedatadictionaryfieldrequest} updatedatadictionaryfieldrequest Complete data dictionary field representation used to fully replace the existing field.
1225
+ * @param {*} [axiosOptions] Override http request option.
1226
+ * @throws {RequiredError}
1227
+ */
1228
+ putDataDictionaryFieldV1: function (name, updatedatadictionaryfieldrequest, axiosOptions) {
1229
+ if (axiosOptions === void 0) { axiosOptions = {}; }
1230
+ return __awaiter(_this, void 0, void 0, function () {
1231
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
1232
+ return __generator(this, function (_a) {
1233
+ // verify required parameter 'name' is not null or undefined
1234
+ assertParamExists('putDataDictionaryFieldV1', 'name', name);
1235
+ // verify required parameter 'updatedatadictionaryfieldrequest' is not null or undefined
1236
+ assertParamExists('putDataDictionaryFieldV1', 'updatedatadictionaryfieldrequest', updatedatadictionaryfieldrequest);
1237
+ localVarPath = "/das/v1/permissions/fields/{name}"
1238
+ .replace("{".concat("name", "}"), encodeURIComponent(String(name)));
1239
+ localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1240
+ if (configuration) {
1241
+ baseOptions = configuration.baseOptions;
1242
+ }
1243
+ localVarRequestOptions = __assign(__assign({ method: 'PUT' }, baseOptions), axiosOptions);
1244
+ localVarHeaderParameter = {};
1245
+ localVarQueryParameter = {};
1246
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1247
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1248
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1249
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
1250
+ localVarRequestOptions.data = serializeDataIfNeeded(updatedatadictionaryfieldrequest, localVarRequestOptions, configuration);
1251
+ return [2 /*return*/, {
1252
+ url: toPathString(localVarUrlObj),
1253
+ axiosOptions: localVarRequestOptions,
1254
+ }];
1255
+ });
1256
+ });
1257
+ },
1258
+ /**
1259
+ * 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.
1260
+ * @summary Replace identity collector
1261
+ * @param {number} id The unique identifier of the identity collector to replace.
1262
+ * @param {Updateidentitycollectorrequest} updateidentitycollectorrequest Complete identity collector representation used to fully replace the existing resource. Partial updates are not supported.
1025
1263
  * @param {*} [axiosOptions] Override http request option.
1026
1264
  * @throws {RequiredError}
1027
1265
  */
@@ -1034,7 +1272,7 @@ export var DataAccessSecurityApiAxiosParamCreator = function (configuration) {
1034
1272
  assertParamExists('putIdentityCollectorV1', 'id', id);
1035
1273
  // verify required parameter 'updateidentitycollectorrequest' is not null or undefined
1036
1274
  assertParamExists('putIdentityCollectorV1', 'updateidentitycollectorrequest', updateidentitycollectorrequest);
1037
- localVarPath = "/das/identity-collectors/v1/{id}"
1275
+ localVarPath = "/das/v1/identity-collectors/{id}"
1038
1276
  .replace("{".concat("id", "}"), encodeURIComponent(String(id)));
1039
1277
  localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1040
1278
  if (configuration) {
@@ -1182,7 +1420,30 @@ export var DataAccessSecurityApiFp = function (configuration) {
1182
1420
  });
1183
1421
  },
1184
1422
  /**
1185
- * This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source.
1423
+ * Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
1424
+ * @summary Create data dictionary field
1425
+ * @param {Createdatadictionaryfieldrequest} createdatadictionaryfieldrequest Custom data dictionary field to create.
1426
+ * @param {*} [axiosOptions] Override http request option.
1427
+ * @throws {RequiredError}
1428
+ */
1429
+ createDataDictionaryFieldV1: function (createdatadictionaryfieldrequest, axiosOptions) {
1430
+ var _a, _b, _c;
1431
+ return __awaiter(this, void 0, void 0, function () {
1432
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
1433
+ return __generator(this, function (_d) {
1434
+ switch (_d.label) {
1435
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.createDataDictionaryFieldV1(createdatadictionaryfieldrequest, axiosOptions)];
1436
+ case 1:
1437
+ localVarAxiosArgs = _d.sent();
1438
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1439
+ localVarOperationServerBasePath = (_c = (_b = operationServerMap['DataAccessSecurityApi.createDataDictionaryFieldV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1440
+ return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
1441
+ }
1442
+ });
1443
+ });
1444
+ },
1445
+ /**
1446
+ * 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.
1186
1447
  * @summary Create identity collector
1187
1448
  * @param {Createidentitycollectorrequest} createidentitycollectorrequest Request body containing the details required to create a new identity collector.
1188
1449
  * @param {*} [axiosOptions] Override http request option.
@@ -1370,6 +1631,29 @@ export var DataAccessSecurityApiFp = function (configuration) {
1370
1631
  });
1371
1632
  });
1372
1633
  },
1634
+ /**
1635
+ * Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
1636
+ * @summary Delete data dictionary field
1637
+ * @param {string} name The field name to delete.
1638
+ * @param {*} [axiosOptions] Override http request option.
1639
+ * @throws {RequiredError}
1640
+ */
1641
+ deleteDataDictionaryFieldV1: function (name, axiosOptions) {
1642
+ var _a, _b, _c;
1643
+ return __awaiter(this, void 0, void 0, function () {
1644
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
1645
+ return __generator(this, function (_d) {
1646
+ switch (_d.label) {
1647
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteDataDictionaryFieldV1(name, axiosOptions)];
1648
+ case 1:
1649
+ localVarAxiosArgs = _d.sent();
1650
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1651
+ localVarOperationServerBasePath = (_c = (_b = operationServerMap['DataAccessSecurityApi.deleteDataDictionaryFieldV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1652
+ return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
1653
+ }
1654
+ });
1655
+ });
1656
+ },
1373
1657
  /**
1374
1658
  * This endpoint deletes an identity collector from Data Access Security by its unique identifier.
1375
1659
  * @summary Delete identity collector by identifier
@@ -1488,6 +1772,53 @@ export var DataAccessSecurityApiFp = function (configuration) {
1488
1772
  });
1489
1773
  });
1490
1774
  },
1775
+ /**
1776
+ * 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`.
1777
+ * @summary List built-in identity collector properties
1778
+ * @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*
1779
+ * @param {*} [axiosOptions] Override http request option.
1780
+ * @throws {RequiredError}
1781
+ */
1782
+ getIdentityCollectorBuiltinPropertiesV1: function (filters, axiosOptions) {
1783
+ var _a, _b, _c;
1784
+ return __awaiter(this, void 0, void 0, function () {
1785
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
1786
+ return __generator(this, function (_d) {
1787
+ switch (_d.label) {
1788
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getIdentityCollectorBuiltinPropertiesV1(filters, axiosOptions)];
1789
+ case 1:
1790
+ localVarAxiosArgs = _d.sent();
1791
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1792
+ localVarOperationServerBasePath = (_c = (_b = operationServerMap['DataAccessSecurityApi.getIdentityCollectorBuiltinPropertiesV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1793
+ return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
1794
+ }
1795
+ });
1796
+ });
1797
+ },
1798
+ /**
1799
+ * 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.
1800
+ * @summary List identity collector types
1801
+ * @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.
1802
+ * @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.
1803
+ * @param {*} [axiosOptions] Override http request option.
1804
+ * @throws {RequiredError}
1805
+ */
1806
+ getIdentityCollectorTypesV1: function (limit, offset, axiosOptions) {
1807
+ var _a, _b, _c;
1808
+ return __awaiter(this, void 0, void 0, function () {
1809
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
1810
+ return __generator(this, function (_d) {
1811
+ switch (_d.label) {
1812
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getIdentityCollectorTypesV1(limit, offset, axiosOptions)];
1813
+ case 1:
1814
+ localVarAxiosArgs = _d.sent();
1815
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1816
+ localVarOperationServerBasePath = (_c = (_b = operationServerMap['DataAccessSecurityApi.getIdentityCollectorTypesV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1817
+ return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
1818
+ }
1819
+ });
1820
+ });
1821
+ },
1491
1822
  /**
1492
1823
  *
1493
1824
  * @summary Retrieve owners per application.
@@ -1611,6 +1942,32 @@ export var DataAccessSecurityApiFp = function (configuration) {
1611
1942
  });
1612
1943
  });
1613
1944
  },
1945
+ /**
1946
+ * 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`.
1947
+ * @summary List data dictionary fields
1948
+ * @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*
1949
+ * @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.
1950
+ * @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.
1951
+ * @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.
1952
+ * @param {*} [axiosOptions] Override http request option.
1953
+ * @throws {RequiredError}
1954
+ */
1955
+ listDataDictionaryFieldsV1: function (filters, limit, offset, count, axiosOptions) {
1956
+ var _a, _b, _c;
1957
+ return __awaiter(this, void 0, void 0, function () {
1958
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
1959
+ return __generator(this, function (_d) {
1960
+ switch (_d.label) {
1961
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listDataDictionaryFieldsV1(filters, limit, offset, count, axiosOptions)];
1962
+ case 1:
1963
+ localVarAxiosArgs = _d.sent();
1964
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1965
+ localVarOperationServerBasePath = (_c = (_b = operationServerMap['DataAccessSecurityApi.listDataDictionaryFieldsV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1966
+ return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
1967
+ }
1968
+ });
1969
+ });
1970
+ },
1614
1971
  /**
1615
1972
  * 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.
1616
1973
  * @summary List identity collectors
@@ -1662,10 +2019,34 @@ export var DataAccessSecurityApiFp = function (configuration) {
1662
2019
  });
1663
2020
  },
1664
2021
  /**
1665
- * This endpoint updates the name of an existing identity collector in Data Access Security. The `sourceId` and `type` cannot be changed and must match the current values.
1666
- * @summary Update identity collector by identifier
1667
- * @param {number} id The unique identifier of the identity collector to update.
1668
- * @param {Updateidentitycollectorrequest} updateidentitycollectorrequest Request body containing the updated details for the identity collector.
2022
+ * 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.
2023
+ * @summary Replace data dictionary field
2024
+ * @param {string} name The current field name.
2025
+ * @param {Updatedatadictionaryfieldrequest} updatedatadictionaryfieldrequest Complete data dictionary field representation used to fully replace the existing field.
2026
+ * @param {*} [axiosOptions] Override http request option.
2027
+ * @throws {RequiredError}
2028
+ */
2029
+ putDataDictionaryFieldV1: function (name, updatedatadictionaryfieldrequest, axiosOptions) {
2030
+ var _a, _b, _c;
2031
+ return __awaiter(this, void 0, void 0, function () {
2032
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
2033
+ return __generator(this, function (_d) {
2034
+ switch (_d.label) {
2035
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.putDataDictionaryFieldV1(name, updatedatadictionaryfieldrequest, axiosOptions)];
2036
+ case 1:
2037
+ localVarAxiosArgs = _d.sent();
2038
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2039
+ localVarOperationServerBasePath = (_c = (_b = operationServerMap['DataAccessSecurityApi.putDataDictionaryFieldV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2040
+ return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
2041
+ }
2042
+ });
2043
+ });
2044
+ },
2045
+ /**
2046
+ * 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.
2047
+ * @summary Replace identity collector
2048
+ * @param {number} id The unique identifier of the identity collector to replace.
2049
+ * @param {Updateidentitycollectorrequest} updateidentitycollectorrequest Complete identity collector representation used to fully replace the existing resource. Partial updates are not supported.
1669
2050
  * @param {*} [axiosOptions] Override http request option.
1670
2051
  * @throws {RequiredError}
1671
2052
  */
@@ -1762,7 +2143,17 @@ export var DataAccessSecurityApiFactory = function (configuration, basePath, axi
1762
2143
  return localVarFp.createApplicationV1(requestParameters.baseCreateApplicationRequest, axiosOptions).then(function (request) { return request(axios, basePath); });
1763
2144
  },
1764
2145
  /**
1765
- * This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source.
2146
+ * Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
2147
+ * @summary Create data dictionary field
2148
+ * @param {DataAccessSecurityApiCreateDataDictionaryFieldV1Request} requestParameters Request parameters.
2149
+ * @param {*} [axiosOptions] Override http request option.
2150
+ * @throws {RequiredError}
2151
+ */
2152
+ createDataDictionaryFieldV1: function (requestParameters, axiosOptions) {
2153
+ return localVarFp.createDataDictionaryFieldV1(requestParameters.createdatadictionaryfieldrequest, axiosOptions).then(function (request) { return request(axios, basePath); });
2154
+ },
2155
+ /**
2156
+ * 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.
1766
2157
  * @summary Create identity collector
1767
2158
  * @param {DataAccessSecurityApiCreateIdentityCollectorV1Request} requestParameters Request parameters.
1768
2159
  * @param {*} [axiosOptions] Override http request option.
@@ -1841,6 +2232,16 @@ export var DataAccessSecurityApiFactory = function (configuration, basePath, axi
1841
2232
  deleteApplicationV1: function (requestParameters, axiosOptions) {
1842
2233
  return localVarFp.deleteApplicationV1(requestParameters.id, axiosOptions).then(function (request) { return request(axios, basePath); });
1843
2234
  },
2235
+ /**
2236
+ * Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
2237
+ * @summary Delete data dictionary field
2238
+ * @param {DataAccessSecurityApiDeleteDataDictionaryFieldV1Request} requestParameters Request parameters.
2239
+ * @param {*} [axiosOptions] Override http request option.
2240
+ * @throws {RequiredError}
2241
+ */
2242
+ deleteDataDictionaryFieldV1: function (requestParameters, axiosOptions) {
2243
+ return localVarFp.deleteDataDictionaryFieldV1(requestParameters.name, axiosOptions).then(function (request) { return request(axios, basePath); });
2244
+ },
1844
2245
  /**
1845
2246
  * This endpoint deletes an identity collector from Data Access Security by its unique identifier.
1846
2247
  * @summary Delete identity collector by identifier
@@ -1892,6 +2293,28 @@ export var DataAccessSecurityApiFactory = function (configuration, basePath, axi
1892
2293
  if (requestParameters === void 0) { requestParameters = {}; }
1893
2294
  return localVarFp.getApplicationsV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
1894
2295
  },
2296
+ /**
2297
+ * 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`.
2298
+ * @summary List built-in identity collector properties
2299
+ * @param {DataAccessSecurityApiGetIdentityCollectorBuiltinPropertiesV1Request} requestParameters Request parameters.
2300
+ * @param {*} [axiosOptions] Override http request option.
2301
+ * @throws {RequiredError}
2302
+ */
2303
+ getIdentityCollectorBuiltinPropertiesV1: function (requestParameters, axiosOptions) {
2304
+ if (requestParameters === void 0) { requestParameters = {}; }
2305
+ return localVarFp.getIdentityCollectorBuiltinPropertiesV1(requestParameters.filters, axiosOptions).then(function (request) { return request(axios, basePath); });
2306
+ },
2307
+ /**
2308
+ * 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.
2309
+ * @summary List identity collector types
2310
+ * @param {DataAccessSecurityApiGetIdentityCollectorTypesV1Request} requestParameters Request parameters.
2311
+ * @param {*} [axiosOptions] Override http request option.
2312
+ * @throws {RequiredError}
2313
+ */
2314
+ getIdentityCollectorTypesV1: function (requestParameters, axiosOptions) {
2315
+ if (requestParameters === void 0) { requestParameters = {}; }
2316
+ return localVarFp.getIdentityCollectorTypesV1(requestParameters.limit, requestParameters.offset, axiosOptions).then(function (request) { return request(axios, basePath); });
2317
+ },
1895
2318
  /**
1896
2319
  *
1897
2320
  * @summary Retrieve owners per application.
@@ -1944,6 +2367,17 @@ export var DataAccessSecurityApiFactory = function (configuration, basePath, axi
1944
2367
  if (requestParameters === void 0) { requestParameters = {}; }
1945
2368
  return localVarFp.getTasksV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
1946
2369
  },
2370
+ /**
2371
+ * 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`.
2372
+ * @summary List data dictionary fields
2373
+ * @param {DataAccessSecurityApiListDataDictionaryFieldsV1Request} requestParameters Request parameters.
2374
+ * @param {*} [axiosOptions] Override http request option.
2375
+ * @throws {RequiredError}
2376
+ */
2377
+ listDataDictionaryFieldsV1: function (requestParameters, axiosOptions) {
2378
+ if (requestParameters === void 0) { requestParameters = {}; }
2379
+ return localVarFp.listDataDictionaryFieldsV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
2380
+ },
1947
2381
  /**
1948
2382
  * 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.
1949
2383
  * @summary List identity collectors
@@ -1966,8 +2400,18 @@ export var DataAccessSecurityApiFactory = function (configuration, basePath, axi
1966
2400
  return localVarFp.putApplicationV1(requestParameters.id, requestParameters.baseCreateApplicationRequest, axiosOptions).then(function (request) { return request(axios, basePath); });
1967
2401
  },
1968
2402
  /**
1969
- * This endpoint updates the name of an existing identity collector in Data Access Security. The `sourceId` and `type` cannot be changed and must match the current values.
1970
- * @summary Update identity collector by identifier
2403
+ * 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.
2404
+ * @summary Replace data dictionary field
2405
+ * @param {DataAccessSecurityApiPutDataDictionaryFieldV1Request} requestParameters Request parameters.
2406
+ * @param {*} [axiosOptions] Override http request option.
2407
+ * @throws {RequiredError}
2408
+ */
2409
+ putDataDictionaryFieldV1: function (requestParameters, axiosOptions) {
2410
+ return localVarFp.putDataDictionaryFieldV1(requestParameters.name, requestParameters.updatedatadictionaryfieldrequest, axiosOptions).then(function (request) { return request(axios, basePath); });
2411
+ },
2412
+ /**
2413
+ * 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.
2414
+ * @summary Replace identity collector
1971
2415
  * @param {DataAccessSecurityApiPutIdentityCollectorV1Request} requestParameters Request parameters.
1972
2416
  * @param {*} [axiosOptions] Override http request option.
1973
2417
  * @throws {RequiredError}
@@ -2033,7 +2477,19 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
2033
2477
  return DataAccessSecurityApiFp(this.configuration).createApplicationV1(requestParameters.baseCreateApplicationRequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2034
2478
  };
2035
2479
  /**
2036
- * This endpoint creates a new identity collector in Data Access Security for the specified source. The identity collector type is derived from the source.
2480
+ * Creates a custom data dictionary field. The server assigns fieldType String and required false; callers do not supply those values.
2481
+ * @summary Create data dictionary field
2482
+ * @param {DataAccessSecurityApiCreateDataDictionaryFieldV1Request} requestParameters Request parameters.
2483
+ * @param {*} [axiosOptions] Override http request option.
2484
+ * @throws {RequiredError}
2485
+ * @memberof DataAccessSecurityApi
2486
+ */
2487
+ DataAccessSecurityApi.prototype.createDataDictionaryFieldV1 = function (requestParameters, axiosOptions) {
2488
+ var _this = this;
2489
+ return DataAccessSecurityApiFp(this.configuration).createDataDictionaryFieldV1(requestParameters.createdatadictionaryfieldrequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2490
+ };
2491
+ /**
2492
+ * 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.
2037
2493
  * @summary Create identity collector
2038
2494
  * @param {DataAccessSecurityApiCreateIdentityCollectorV1Request} requestParameters Request parameters.
2039
2495
  * @param {*} [axiosOptions] Override http request option.
@@ -2128,6 +2584,18 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
2128
2584
  var _this = this;
2129
2585
  return DataAccessSecurityApiFp(this.configuration).deleteApplicationV1(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2130
2586
  };
2587
+ /**
2588
+ * Deletes a custom data dictionary field. Built-in fields where required is true cannot be deleted.
2589
+ * @summary Delete data dictionary field
2590
+ * @param {DataAccessSecurityApiDeleteDataDictionaryFieldV1Request} requestParameters Request parameters.
2591
+ * @param {*} [axiosOptions] Override http request option.
2592
+ * @throws {RequiredError}
2593
+ * @memberof DataAccessSecurityApi
2594
+ */
2595
+ DataAccessSecurityApi.prototype.deleteDataDictionaryFieldV1 = function (requestParameters, axiosOptions) {
2596
+ var _this = this;
2597
+ return DataAccessSecurityApiFp(this.configuration).deleteDataDictionaryFieldV1(requestParameters.name, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2598
+ };
2131
2599
  /**
2132
2600
  * This endpoint deletes an identity collector from Data Access Security by its unique identifier.
2133
2601
  * @summary Delete identity collector by identifier
@@ -2189,6 +2657,32 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
2189
2657
  if (requestParameters === void 0) { requestParameters = {}; }
2190
2658
  return DataAccessSecurityApiFp(this.configuration).getApplicationsV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2191
2659
  };
2660
+ /**
2661
+ * 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`.
2662
+ * @summary List built-in identity collector properties
2663
+ * @param {DataAccessSecurityApiGetIdentityCollectorBuiltinPropertiesV1Request} requestParameters Request parameters.
2664
+ * @param {*} [axiosOptions] Override http request option.
2665
+ * @throws {RequiredError}
2666
+ * @memberof DataAccessSecurityApi
2667
+ */
2668
+ DataAccessSecurityApi.prototype.getIdentityCollectorBuiltinPropertiesV1 = function (requestParameters, axiosOptions) {
2669
+ var _this = this;
2670
+ if (requestParameters === void 0) { requestParameters = {}; }
2671
+ return DataAccessSecurityApiFp(this.configuration).getIdentityCollectorBuiltinPropertiesV1(requestParameters.filters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2672
+ };
2673
+ /**
2674
+ * 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.
2675
+ * @summary List identity collector types
2676
+ * @param {DataAccessSecurityApiGetIdentityCollectorTypesV1Request} requestParameters Request parameters.
2677
+ * @param {*} [axiosOptions] Override http request option.
2678
+ * @throws {RequiredError}
2679
+ * @memberof DataAccessSecurityApi
2680
+ */
2681
+ DataAccessSecurityApi.prototype.getIdentityCollectorTypesV1 = function (requestParameters, axiosOptions) {
2682
+ var _this = this;
2683
+ if (requestParameters === void 0) { requestParameters = {}; }
2684
+ return DataAccessSecurityApiFp(this.configuration).getIdentityCollectorTypesV1(requestParameters.limit, requestParameters.offset, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2685
+ };
2192
2686
  /**
2193
2687
  *
2194
2688
  * @summary Retrieve owners per application.
@@ -2251,6 +2745,19 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
2251
2745
  if (requestParameters === void 0) { requestParameters = {}; }
2252
2746
  return DataAccessSecurityApiFp(this.configuration).getTasksV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2253
2747
  };
2748
+ /**
2749
+ * 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`.
2750
+ * @summary List data dictionary fields
2751
+ * @param {DataAccessSecurityApiListDataDictionaryFieldsV1Request} requestParameters Request parameters.
2752
+ * @param {*} [axiosOptions] Override http request option.
2753
+ * @throws {RequiredError}
2754
+ * @memberof DataAccessSecurityApi
2755
+ */
2756
+ DataAccessSecurityApi.prototype.listDataDictionaryFieldsV1 = function (requestParameters, axiosOptions) {
2757
+ var _this = this;
2758
+ if (requestParameters === void 0) { requestParameters = {}; }
2759
+ return DataAccessSecurityApiFp(this.configuration).listDataDictionaryFieldsV1(requestParameters.filters, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2760
+ };
2254
2761
  /**
2255
2762
  * 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.
2256
2763
  * @summary List identity collectors
@@ -2277,8 +2784,20 @@ var DataAccessSecurityApi = /** @class */ (function (_super) {
2277
2784
  return DataAccessSecurityApiFp(this.configuration).putApplicationV1(requestParameters.id, requestParameters.baseCreateApplicationRequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2278
2785
  };
2279
2786
  /**
2280
- * This endpoint updates the name of an existing identity collector in Data Access Security. The `sourceId` and `type` cannot be changed and must match the current values.
2281
- * @summary Update identity collector by identifier
2787
+ * 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.
2788
+ * @summary Replace data dictionary field
2789
+ * @param {DataAccessSecurityApiPutDataDictionaryFieldV1Request} requestParameters Request parameters.
2790
+ * @param {*} [axiosOptions] Override http request option.
2791
+ * @throws {RequiredError}
2792
+ * @memberof DataAccessSecurityApi
2793
+ */
2794
+ DataAccessSecurityApi.prototype.putDataDictionaryFieldV1 = function (requestParameters, axiosOptions) {
2795
+ var _this = this;
2796
+ return DataAccessSecurityApiFp(this.configuration).putDataDictionaryFieldV1(requestParameters.name, requestParameters.updatedatadictionaryfieldrequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
2797
+ };
2798
+ /**
2799
+ * 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.
2800
+ * @summary Replace identity collector
2282
2801
  * @param {DataAccessSecurityApiPutIdentityCollectorV1Request} requestParameters Request parameters.
2283
2802
  * @param {*} [axiosOptions] Override http request option.
2284
2803
  * @throws {RequiredError}