@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.
@@ -96,40 +96,34 @@ export var AccessProfileApprovalSchemeApproverTypeEnum = {
96
96
  AdditionalOwner: 'ADDITIONAL_OWNER',
97
97
  AdditionalGovernanceGroup: 'ADDITIONAL_GOVERNANCE_GROUP'
98
98
  };
99
- export var AccessProfileSourceRefTypeEnum = {
100
- Source: 'SOURCE'
101
- };
102
- export var AccessProfileUsageUsedByInnerTypeEnum = {
103
- Role: 'ROLE'
104
- };
105
- export var AccessprofilemetadatabulkupdatebyfilterrequestOperationEnum = {
99
+ export var AccessProfileMetadataBulkUpdateByFilterRequestOperationEnum = {
106
100
  Add: 'ADD',
107
101
  Remove: 'REMOVE',
108
102
  Replace: 'REPLACE'
109
103
  };
110
- export var AccessprofilemetadatabulkupdatebyfilterrequestReplaceScopeEnum = {
104
+ export var AccessProfileMetadataBulkUpdateByFilterRequestReplaceScopeEnum = {
111
105
  All: 'ALL',
112
106
  Attribute: 'ATTRIBUTE'
113
107
  };
114
- export var AccessprofilemetadatabulkupdatebyidrequestOperationEnum = {
108
+ export var AccessProfileMetadataBulkUpdateByIdRequestOperationEnum = {
115
109
  Add: 'ADD',
116
110
  Remove: 'REMOVE',
117
111
  Replace: 'REPLACE'
118
112
  };
119
- export var AccessprofilemetadatabulkupdatebyidrequestReplaceScopeEnum = {
113
+ export var AccessProfileMetadataBulkUpdateByIdRequestReplaceScopeEnum = {
120
114
  All: 'ALL',
121
115
  Attribute: 'ATTRIBUTE'
122
116
  };
123
- export var AccessprofilemetadatabulkupdatebyqueryrequestOperationEnum = {
117
+ export var AccessProfileMetadataBulkUpdateByQueryRequestOperationEnum = {
124
118
  Add: 'ADD',
125
119
  Remove: 'REMOVE',
126
120
  Replace: 'REPLACE'
127
121
  };
128
- export var AccessprofilemetadatabulkupdatebyqueryrequestReplaceScopeEnum = {
122
+ export var AccessProfileMetadataBulkUpdateByQueryRequestReplaceScopeEnum = {
129
123
  All: 'ALL',
130
124
  Attribute: 'ATTRIBUTE'
131
125
  };
132
- export var AccessprofilemetadatabulkupdateresponseStatusEnum = {
126
+ export var AccessProfileMetadataBulkUpdateResponseStatusEnum = {
133
127
  Created: 'CREATED',
134
128
  PreProcess: 'PRE_PROCESS',
135
129
  PreProcessCompleted: 'PRE_PROCESS_COMPLETED',
@@ -141,6 +135,12 @@ export var AccessprofilemetadatabulkupdateresponseStatusEnum = {
141
135
  PreProcessFailed: 'PRE_PROCESS_FAILED',
142
136
  Failed: 'FAILED'
143
137
  };
138
+ export var AccessProfileSourceRefTypeEnum = {
139
+ Source: 'SOURCE'
140
+ };
141
+ export var AccessProfileUsageUsedByInnerTypeEnum = {
142
+ Role: 'ROLE'
143
+ };
144
144
  export var AdditionalOwnerRefTypeEnum = {
145
145
  Identity: 'IDENTITY',
146
146
  GovernanceGroup: 'GOVERNANCE_GROUP'
@@ -522,6 +522,68 @@ export var AccessProfilesApiAxiosParamCreator = function (configuration) {
522
522
  });
523
523
  });
524
524
  },
525
+ /**
526
+ * Get a list of access profiles filtered by Access Model Metadata and by filter expression. Filtering is supported by filter expression, by metadata attribute key and values, or by both together.
527
+ * @summary Filter access profiles by metadata
528
+ * @param {AccessProfileListFilterDTO} accessProfileListFilterDTO
529
+ * @param {string} [forSubadmin] Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
530
+ * @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.
531
+ * @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.
532
+ * @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.
533
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
534
+ * @param {string} [forSegmentIds] Filters the returned list to those access profiles assigned to the specified segment IDs.
535
+ * @param {boolean} [includeUnsegmented] Whether the returned list includes unsegmented access profiles.
536
+ * @param {*} [axiosOptions] Override http request option.
537
+ * @throws {RequiredError}
538
+ */
539
+ searchAccessProfilesByFilterV1: function (accessProfileListFilterDTO, forSubadmin, limit, offset, count, sorters, forSegmentIds, includeUnsegmented, axiosOptions) {
540
+ if (axiosOptions === void 0) { axiosOptions = {}; }
541
+ return __awaiter(_this, void 0, void 0, function () {
542
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
543
+ return __generator(this, function (_a) {
544
+ // verify required parameter 'accessProfileListFilterDTO' is not null or undefined
545
+ assertParamExists('searchAccessProfilesByFilterV1', 'accessProfileListFilterDTO', accessProfileListFilterDTO);
546
+ localVarPath = "/access-profiles/v1/filter";
547
+ localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
548
+ if (configuration) {
549
+ baseOptions = configuration.baseOptions;
550
+ }
551
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
552
+ localVarHeaderParameter = {};
553
+ localVarQueryParameter = {};
554
+ if (forSubadmin !== undefined) {
555
+ localVarQueryParameter['for-subadmin'] = forSubadmin;
556
+ }
557
+ if (limit !== undefined) {
558
+ localVarQueryParameter['limit'] = limit;
559
+ }
560
+ if (offset !== undefined) {
561
+ localVarQueryParameter['offset'] = offset;
562
+ }
563
+ if (count !== undefined) {
564
+ localVarQueryParameter['count'] = count;
565
+ }
566
+ if (sorters !== undefined) {
567
+ localVarQueryParameter['sorters'] = sorters;
568
+ }
569
+ if (forSegmentIds !== undefined) {
570
+ localVarQueryParameter['for-segment-ids'] = forSegmentIds;
571
+ }
572
+ if (includeUnsegmented !== undefined) {
573
+ localVarQueryParameter['include-unsegmented'] = includeUnsegmented;
574
+ }
575
+ localVarHeaderParameter['Content-Type'] = 'application/json';
576
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
577
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
578
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
579
+ localVarRequestOptions.data = serializeDataIfNeeded(accessProfileListFilterDTO, localVarRequestOptions, configuration);
580
+ return [2 /*return*/, {
581
+ url: toPathString(localVarUrlObj),
582
+ axiosOptions: localVarRequestOptions,
583
+ }];
584
+ });
585
+ });
586
+ },
525
587
  /**
526
588
  * This API initiates a bulk update of field requestable for one or more Access Profiles. > If any of the indicated Access Profiles is exists in Organization,then those Access Profiles will be added in **updated** list of the response.Requestable field of these Access Profiles marked as **true** or **false**. > If any of the indicated Access Profiles is not does not exists in Organization,then those Access Profiles will be added in **notFound** list of the response. Access Profiles marked as **notFound** will not be updated. A SOURCE_SUBADMIN may only use this API to update Access Profiles which are associated with Sources they are able to administer.
527
589
  * @summary Update access profile(s) requestable field.
@@ -559,17 +621,17 @@ export var AccessProfilesApiAxiosParamCreator = function (configuration) {
559
621
  /**
560
622
  * This API initiates a bulk update of Access Model Metadata for every access profile matching the supplied filter expression. The update is processed asynchronously. The response returns the ID of the task performing the update. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
561
623
  * @summary Bulk-update metadata by filter
562
- * @param {Accessprofilemetadatabulkupdatebyfilterrequest} accessprofilemetadatabulkupdatebyfilterrequest
624
+ * @param {AccessProfileMetadataBulkUpdateByFilterRequest} accessProfileMetadataBulkUpdateByFilterRequest
563
625
  * @param {*} [axiosOptions] Override http request option.
564
626
  * @throws {RequiredError}
565
627
  */
566
- updateAccessProfilesMetadataByFilterV1: function (accessprofilemetadatabulkupdatebyfilterrequest, axiosOptions) {
628
+ updateAccessProfilesMetadataByFilterV1: function (accessProfileMetadataBulkUpdateByFilterRequest, axiosOptions) {
567
629
  if (axiosOptions === void 0) { axiosOptions = {}; }
568
630
  return __awaiter(_this, void 0, void 0, function () {
569
631
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
570
632
  return __generator(this, function (_a) {
571
- // verify required parameter 'accessprofilemetadatabulkupdatebyfilterrequest' is not null or undefined
572
- assertParamExists('updateAccessProfilesMetadataByFilterV1', 'accessprofilemetadatabulkupdatebyfilterrequest', accessprofilemetadatabulkupdatebyfilterrequest);
633
+ // verify required parameter 'accessProfileMetadataBulkUpdateByFilterRequest' is not null or undefined
634
+ assertParamExists('updateAccessProfilesMetadataByFilterV1', 'accessProfileMetadataBulkUpdateByFilterRequest', accessProfileMetadataBulkUpdateByFilterRequest);
573
635
  localVarPath = "/access-profiles/v1/access-model-metadata/bulk-update/filter";
574
636
  localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
575
637
  if (configuration) {
@@ -582,7 +644,7 @@ export var AccessProfilesApiAxiosParamCreator = function (configuration) {
582
644
  setSearchParams(localVarUrlObj, localVarQueryParameter);
583
645
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
584
646
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
585
- localVarRequestOptions.data = serializeDataIfNeeded(accessprofilemetadatabulkupdatebyfilterrequest, localVarRequestOptions, configuration);
647
+ localVarRequestOptions.data = serializeDataIfNeeded(accessProfileMetadataBulkUpdateByFilterRequest, localVarRequestOptions, configuration);
586
648
  return [2 /*return*/, {
587
649
  url: toPathString(localVarUrlObj),
588
650
  axiosOptions: localVarRequestOptions,
@@ -593,17 +655,17 @@ export var AccessProfilesApiAxiosParamCreator = function (configuration) {
593
655
  /**
594
656
  * This API initiates a bulk update of Access Model Metadata for one or more access profiles by a list of access profile IDs. The update is processed asynchronously. The response returns the ID of the task performing the update. The maximum access profile count in a single request is 3000. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
595
657
  * @summary Bulk-update metadata by ids
596
- * @param {Accessprofilemetadatabulkupdatebyidrequest} accessprofilemetadatabulkupdatebyidrequest
658
+ * @param {AccessProfileMetadataBulkUpdateByIdRequest} accessProfileMetadataBulkUpdateByIdRequest
597
659
  * @param {*} [axiosOptions] Override http request option.
598
660
  * @throws {RequiredError}
599
661
  */
600
- updateAccessProfilesMetadataByIdsV1: function (accessprofilemetadatabulkupdatebyidrequest, axiosOptions) {
662
+ updateAccessProfilesMetadataByIdsV1: function (accessProfileMetadataBulkUpdateByIdRequest, axiosOptions) {
601
663
  if (axiosOptions === void 0) { axiosOptions = {}; }
602
664
  return __awaiter(_this, void 0, void 0, function () {
603
665
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
604
666
  return __generator(this, function (_a) {
605
- // verify required parameter 'accessprofilemetadatabulkupdatebyidrequest' is not null or undefined
606
- assertParamExists('updateAccessProfilesMetadataByIdsV1', 'accessprofilemetadatabulkupdatebyidrequest', accessprofilemetadatabulkupdatebyidrequest);
667
+ // verify required parameter 'accessProfileMetadataBulkUpdateByIdRequest' is not null or undefined
668
+ assertParamExists('updateAccessProfilesMetadataByIdsV1', 'accessProfileMetadataBulkUpdateByIdRequest', accessProfileMetadataBulkUpdateByIdRequest);
607
669
  localVarPath = "/access-profiles/v1/access-model-metadata/bulk-update/ids";
608
670
  localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
609
671
  if (configuration) {
@@ -616,7 +678,7 @@ export var AccessProfilesApiAxiosParamCreator = function (configuration) {
616
678
  setSearchParams(localVarUrlObj, localVarQueryParameter);
617
679
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
618
680
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
619
- localVarRequestOptions.data = serializeDataIfNeeded(accessprofilemetadatabulkupdatebyidrequest, localVarRequestOptions, configuration);
681
+ localVarRequestOptions.data = serializeDataIfNeeded(accessProfileMetadataBulkUpdateByIdRequest, localVarRequestOptions, configuration);
620
682
  return [2 /*return*/, {
621
683
  url: toPathString(localVarUrlObj),
622
684
  axiosOptions: localVarRequestOptions,
@@ -627,17 +689,17 @@ export var AccessProfilesApiAxiosParamCreator = function (configuration) {
627
689
  /**
628
690
  * This API initiates a bulk update of Access Model Metadata for every access profile matching the supplied search query. The update is processed asynchronously. The response returns the ID of the task performing the update. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
629
691
  * @summary Bulk-update metadata by query
630
- * @param {Accessprofilemetadatabulkupdatebyqueryrequest} accessprofilemetadatabulkupdatebyqueryrequest
692
+ * @param {AccessProfileMetadataBulkUpdateByQueryRequest} accessProfileMetadataBulkUpdateByQueryRequest
631
693
  * @param {*} [axiosOptions] Override http request option.
632
694
  * @throws {RequiredError}
633
695
  */
634
- updateAccessProfilesMetadataByQueryV1: function (accessprofilemetadatabulkupdatebyqueryrequest, axiosOptions) {
696
+ updateAccessProfilesMetadataByQueryV1: function (accessProfileMetadataBulkUpdateByQueryRequest, axiosOptions) {
635
697
  if (axiosOptions === void 0) { axiosOptions = {}; }
636
698
  return __awaiter(_this, void 0, void 0, function () {
637
699
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
638
700
  return __generator(this, function (_a) {
639
- // verify required parameter 'accessprofilemetadatabulkupdatebyqueryrequest' is not null or undefined
640
- assertParamExists('updateAccessProfilesMetadataByQueryV1', 'accessprofilemetadatabulkupdatebyqueryrequest', accessprofilemetadatabulkupdatebyqueryrequest);
701
+ // verify required parameter 'accessProfileMetadataBulkUpdateByQueryRequest' is not null or undefined
702
+ assertParamExists('updateAccessProfilesMetadataByQueryV1', 'accessProfileMetadataBulkUpdateByQueryRequest', accessProfileMetadataBulkUpdateByQueryRequest);
641
703
  localVarPath = "/access-profiles/v1/access-model-metadata/bulk-update/query";
642
704
  localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
643
705
  if (configuration) {
@@ -650,7 +712,7 @@ export var AccessProfilesApiAxiosParamCreator = function (configuration) {
650
712
  setSearchParams(localVarUrlObj, localVarQueryParameter);
651
713
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
652
714
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
653
- localVarRequestOptions.data = serializeDataIfNeeded(accessprofilemetadatabulkupdatebyqueryrequest, localVarRequestOptions, configuration);
715
+ localVarRequestOptions.data = serializeDataIfNeeded(accessProfileMetadataBulkUpdateByQueryRequest, localVarRequestOptions, configuration);
654
716
  return [2 /*return*/, {
655
717
  url: toPathString(localVarUrlObj),
656
718
  axiosOptions: localVarRequestOptions,
@@ -907,6 +969,36 @@ export var AccessProfilesApiFp = function (configuration) {
907
969
  });
908
970
  });
909
971
  },
972
+ /**
973
+ * Get a list of access profiles filtered by Access Model Metadata and by filter expression. Filtering is supported by filter expression, by metadata attribute key and values, or by both together.
974
+ * @summary Filter access profiles by metadata
975
+ * @param {AccessProfileListFilterDTO} accessProfileListFilterDTO
976
+ * @param {string} [forSubadmin] Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
977
+ * @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.
978
+ * @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.
979
+ * @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.
980
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified**
981
+ * @param {string} [forSegmentIds] Filters the returned list to those access profiles assigned to the specified segment IDs.
982
+ * @param {boolean} [includeUnsegmented] Whether the returned list includes unsegmented access profiles.
983
+ * @param {*} [axiosOptions] Override http request option.
984
+ * @throws {RequiredError}
985
+ */
986
+ searchAccessProfilesByFilterV1: function (accessProfileListFilterDTO, forSubadmin, limit, offset, count, sorters, forSegmentIds, includeUnsegmented, axiosOptions) {
987
+ var _a, _b, _c;
988
+ return __awaiter(this, void 0, void 0, function () {
989
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
990
+ return __generator(this, function (_d) {
991
+ switch (_d.label) {
992
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.searchAccessProfilesByFilterV1(accessProfileListFilterDTO, forSubadmin, limit, offset, count, sorters, forSegmentIds, includeUnsegmented, axiosOptions)];
993
+ case 1:
994
+ localVarAxiosArgs = _d.sent();
995
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
996
+ localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessProfilesApi.searchAccessProfilesByFilterV1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
997
+ return [2 /*return*/, function (axios, basePath) { return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
998
+ }
999
+ });
1000
+ });
1001
+ },
910
1002
  /**
911
1003
  * This API initiates a bulk update of field requestable for one or more Access Profiles. > If any of the indicated Access Profiles is exists in Organization,then those Access Profiles will be added in **updated** list of the response.Requestable field of these Access Profiles marked as **true** or **false**. > If any of the indicated Access Profiles is not does not exists in Organization,then those Access Profiles will be added in **notFound** list of the response. Access Profiles marked as **notFound** will not be updated. A SOURCE_SUBADMIN may only use this API to update Access Profiles which are associated with Sources they are able to administer.
912
1004
  * @summary Update access profile(s) requestable field.
@@ -933,17 +1025,17 @@ export var AccessProfilesApiFp = function (configuration) {
933
1025
  /**
934
1026
  * This API initiates a bulk update of Access Model Metadata for every access profile matching the supplied filter expression. The update is processed asynchronously. The response returns the ID of the task performing the update. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
935
1027
  * @summary Bulk-update metadata by filter
936
- * @param {Accessprofilemetadatabulkupdatebyfilterrequest} accessprofilemetadatabulkupdatebyfilterrequest
1028
+ * @param {AccessProfileMetadataBulkUpdateByFilterRequest} accessProfileMetadataBulkUpdateByFilterRequest
937
1029
  * @param {*} [axiosOptions] Override http request option.
938
1030
  * @throws {RequiredError}
939
1031
  */
940
- updateAccessProfilesMetadataByFilterV1: function (accessprofilemetadatabulkupdatebyfilterrequest, axiosOptions) {
1032
+ updateAccessProfilesMetadataByFilterV1: function (accessProfileMetadataBulkUpdateByFilterRequest, axiosOptions) {
941
1033
  var _a, _b, _c;
942
1034
  return __awaiter(this, void 0, void 0, function () {
943
1035
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
944
1036
  return __generator(this, function (_d) {
945
1037
  switch (_d.label) {
946
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateAccessProfilesMetadataByFilterV1(accessprofilemetadatabulkupdatebyfilterrequest, axiosOptions)];
1038
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateAccessProfilesMetadataByFilterV1(accessProfileMetadataBulkUpdateByFilterRequest, axiosOptions)];
947
1039
  case 1:
948
1040
  localVarAxiosArgs = _d.sent();
949
1041
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -956,17 +1048,17 @@ export var AccessProfilesApiFp = function (configuration) {
956
1048
  /**
957
1049
  * This API initiates a bulk update of Access Model Metadata for one or more access profiles by a list of access profile IDs. The update is processed asynchronously. The response returns the ID of the task performing the update. The maximum access profile count in a single request is 3000. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
958
1050
  * @summary Bulk-update metadata by ids
959
- * @param {Accessprofilemetadatabulkupdatebyidrequest} accessprofilemetadatabulkupdatebyidrequest
1051
+ * @param {AccessProfileMetadataBulkUpdateByIdRequest} accessProfileMetadataBulkUpdateByIdRequest
960
1052
  * @param {*} [axiosOptions] Override http request option.
961
1053
  * @throws {RequiredError}
962
1054
  */
963
- updateAccessProfilesMetadataByIdsV1: function (accessprofilemetadatabulkupdatebyidrequest, axiosOptions) {
1055
+ updateAccessProfilesMetadataByIdsV1: function (accessProfileMetadataBulkUpdateByIdRequest, axiosOptions) {
964
1056
  var _a, _b, _c;
965
1057
  return __awaiter(this, void 0, void 0, function () {
966
1058
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
967
1059
  return __generator(this, function (_d) {
968
1060
  switch (_d.label) {
969
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateAccessProfilesMetadataByIdsV1(accessprofilemetadatabulkupdatebyidrequest, axiosOptions)];
1061
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateAccessProfilesMetadataByIdsV1(accessProfileMetadataBulkUpdateByIdRequest, axiosOptions)];
970
1062
  case 1:
971
1063
  localVarAxiosArgs = _d.sent();
972
1064
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -979,17 +1071,17 @@ export var AccessProfilesApiFp = function (configuration) {
979
1071
  /**
980
1072
  * This API initiates a bulk update of Access Model Metadata for every access profile matching the supplied search query. The update is processed asynchronously. The response returns the ID of the task performing the update. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
981
1073
  * @summary Bulk-update metadata by query
982
- * @param {Accessprofilemetadatabulkupdatebyqueryrequest} accessprofilemetadatabulkupdatebyqueryrequest
1074
+ * @param {AccessProfileMetadataBulkUpdateByQueryRequest} accessProfileMetadataBulkUpdateByQueryRequest
983
1075
  * @param {*} [axiosOptions] Override http request option.
984
1076
  * @throws {RequiredError}
985
1077
  */
986
- updateAccessProfilesMetadataByQueryV1: function (accessprofilemetadatabulkupdatebyqueryrequest, axiosOptions) {
1078
+ updateAccessProfilesMetadataByQueryV1: function (accessProfileMetadataBulkUpdateByQueryRequest, axiosOptions) {
987
1079
  var _a, _b, _c;
988
1080
  return __awaiter(this, void 0, void 0, function () {
989
1081
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
990
1082
  return __generator(this, function (_d) {
991
1083
  switch (_d.label) {
992
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateAccessProfilesMetadataByQueryV1(accessprofilemetadatabulkupdatebyqueryrequest, axiosOptions)];
1084
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateAccessProfilesMetadataByQueryV1(accessProfileMetadataBulkUpdateByQueryRequest, axiosOptions)];
993
1085
  case 1:
994
1086
  localVarAxiosArgs = _d.sent();
995
1087
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -1114,6 +1206,16 @@ export var AccessProfilesApiFactory = function (configuration, basePath, axios)
1114
1206
  patchAccessProfileV1: function (requestParameters, axiosOptions) {
1115
1207
  return localVarFp.patchAccessProfileV1(requestParameters.id, requestParameters.jsonPatchOperation, axiosOptions).then(function (request) { return request(axios, basePath); });
1116
1208
  },
1209
+ /**
1210
+ * Get a list of access profiles filtered by Access Model Metadata and by filter expression. Filtering is supported by filter expression, by metadata attribute key and values, or by both together.
1211
+ * @summary Filter access profiles by metadata
1212
+ * @param {AccessProfilesApiSearchAccessProfilesByFilterV1Request} requestParameters Request parameters.
1213
+ * @param {*} [axiosOptions] Override http request option.
1214
+ * @throws {RequiredError}
1215
+ */
1216
+ searchAccessProfilesByFilterV1: function (requestParameters, axiosOptions) {
1217
+ return localVarFp.searchAccessProfilesByFilterV1(requestParameters.accessProfileListFilterDTO, requestParameters.forSubadmin, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, axiosOptions).then(function (request) { return request(axios, basePath); });
1218
+ },
1117
1219
  /**
1118
1220
  * This API initiates a bulk update of field requestable for one or more Access Profiles. > If any of the indicated Access Profiles is exists in Organization,then those Access Profiles will be added in **updated** list of the response.Requestable field of these Access Profiles marked as **true** or **false**. > If any of the indicated Access Profiles is not does not exists in Organization,then those Access Profiles will be added in **notFound** list of the response. Access Profiles marked as **notFound** will not be updated. A SOURCE_SUBADMIN may only use this API to update Access Profiles which are associated with Sources they are able to administer.
1119
1221
  * @summary Update access profile(s) requestable field.
@@ -1132,7 +1234,7 @@ export var AccessProfilesApiFactory = function (configuration, basePath, axios)
1132
1234
  * @throws {RequiredError}
1133
1235
  */
1134
1236
  updateAccessProfilesMetadataByFilterV1: function (requestParameters, axiosOptions) {
1135
- return localVarFp.updateAccessProfilesMetadataByFilterV1(requestParameters.accessprofilemetadatabulkupdatebyfilterrequest, axiosOptions).then(function (request) { return request(axios, basePath); });
1237
+ return localVarFp.updateAccessProfilesMetadataByFilterV1(requestParameters.accessProfileMetadataBulkUpdateByFilterRequest, axiosOptions).then(function (request) { return request(axios, basePath); });
1136
1238
  },
1137
1239
  /**
1138
1240
  * This API initiates a bulk update of Access Model Metadata for one or more access profiles by a list of access profile IDs. The update is processed asynchronously. The response returns the ID of the task performing the update. The maximum access profile count in a single request is 3000. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
@@ -1142,7 +1244,7 @@ export var AccessProfilesApiFactory = function (configuration, basePath, axios)
1142
1244
  * @throws {RequiredError}
1143
1245
  */
1144
1246
  updateAccessProfilesMetadataByIdsV1: function (requestParameters, axiosOptions) {
1145
- return localVarFp.updateAccessProfilesMetadataByIdsV1(requestParameters.accessprofilemetadatabulkupdatebyidrequest, axiosOptions).then(function (request) { return request(axios, basePath); });
1247
+ return localVarFp.updateAccessProfilesMetadataByIdsV1(requestParameters.accessProfileMetadataBulkUpdateByIdRequest, axiosOptions).then(function (request) { return request(axios, basePath); });
1146
1248
  },
1147
1249
  /**
1148
1250
  * This API initiates a bulk update of Access Model Metadata for every access profile matching the supplied search query. The update is processed asynchronously. The response returns the ID of the task performing the update. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
@@ -1152,7 +1254,7 @@ export var AccessProfilesApiFactory = function (configuration, basePath, axios)
1152
1254
  * @throws {RequiredError}
1153
1255
  */
1154
1256
  updateAccessProfilesMetadataByQueryV1: function (requestParameters, axiosOptions) {
1155
- return localVarFp.updateAccessProfilesMetadataByQueryV1(requestParameters.accessprofilemetadatabulkupdatebyqueryrequest, axiosOptions).then(function (request) { return request(axios, basePath); });
1257
+ return localVarFp.updateAccessProfilesMetadataByQueryV1(requestParameters.accessProfileMetadataBulkUpdateByQueryRequest, axiosOptions).then(function (request) { return request(axios, basePath); });
1156
1258
  },
1157
1259
  /**
1158
1260
  * This API adds a single Access Model Metadata value to an access profile by attribute key and attribute value. A single access profile cannot be assigned more than 25 metadata values. Adding custom metadata requires a suite license.
@@ -1274,6 +1376,18 @@ var AccessProfilesApi = /** @class */ (function (_super) {
1274
1376
  var _this = this;
1275
1377
  return AccessProfilesApiFp(this.configuration).patchAccessProfileV1(requestParameters.id, requestParameters.jsonPatchOperation, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
1276
1378
  };
1379
+ /**
1380
+ * Get a list of access profiles filtered by Access Model Metadata and by filter expression. Filtering is supported by filter expression, by metadata attribute key and values, or by both together.
1381
+ * @summary Filter access profiles by metadata
1382
+ * @param {AccessProfilesApiSearchAccessProfilesByFilterV1Request} requestParameters Request parameters.
1383
+ * @param {*} [axiosOptions] Override http request option.
1384
+ * @throws {RequiredError}
1385
+ * @memberof AccessProfilesApi
1386
+ */
1387
+ AccessProfilesApi.prototype.searchAccessProfilesByFilterV1 = function (requestParameters, axiosOptions) {
1388
+ var _this = this;
1389
+ return AccessProfilesApiFp(this.configuration).searchAccessProfilesByFilterV1(requestParameters.accessProfileListFilterDTO, requestParameters.forSubadmin, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
1390
+ };
1277
1391
  /**
1278
1392
  * This API initiates a bulk update of field requestable for one or more Access Profiles. > If any of the indicated Access Profiles is exists in Organization,then those Access Profiles will be added in **updated** list of the response.Requestable field of these Access Profiles marked as **true** or **false**. > If any of the indicated Access Profiles is not does not exists in Organization,then those Access Profiles will be added in **notFound** list of the response. Access Profiles marked as **notFound** will not be updated. A SOURCE_SUBADMIN may only use this API to update Access Profiles which are associated with Sources they are able to administer.
1279
1393
  * @summary Update access profile(s) requestable field.
@@ -1296,7 +1410,7 @@ var AccessProfilesApi = /** @class */ (function (_super) {
1296
1410
  */
1297
1411
  AccessProfilesApi.prototype.updateAccessProfilesMetadataByFilterV1 = function (requestParameters, axiosOptions) {
1298
1412
  var _this = this;
1299
- return AccessProfilesApiFp(this.configuration).updateAccessProfilesMetadataByFilterV1(requestParameters.accessprofilemetadatabulkupdatebyfilterrequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
1413
+ return AccessProfilesApiFp(this.configuration).updateAccessProfilesMetadataByFilterV1(requestParameters.accessProfileMetadataBulkUpdateByFilterRequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
1300
1414
  };
1301
1415
  /**
1302
1416
  * This API initiates a bulk update of Access Model Metadata for one or more access profiles by a list of access profile IDs. The update is processed asynchronously. The response returns the ID of the task performing the update. The maximum access profile count in a single request is 3000. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
@@ -1308,7 +1422,7 @@ var AccessProfilesApi = /** @class */ (function (_super) {
1308
1422
  */
1309
1423
  AccessProfilesApi.prototype.updateAccessProfilesMetadataByIdsV1 = function (requestParameters, axiosOptions) {
1310
1424
  var _this = this;
1311
- return AccessProfilesApiFp(this.configuration).updateAccessProfilesMetadataByIdsV1(requestParameters.accessprofilemetadatabulkupdatebyidrequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
1425
+ return AccessProfilesApiFp(this.configuration).updateAccessProfilesMetadataByIdsV1(requestParameters.accessProfileMetadataBulkUpdateByIdRequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
1312
1426
  };
1313
1427
  /**
1314
1428
  * This API initiates a bulk update of Access Model Metadata for every access profile matching the supplied search query. The update is processed asynchronously. The response returns the ID of the task performing the update. A single access profile cannot be assigned more than 25 metadata values. Adding or replacing custom metadata requires a suite license.
@@ -1320,7 +1434,7 @@ var AccessProfilesApi = /** @class */ (function (_super) {
1320
1434
  */
1321
1435
  AccessProfilesApi.prototype.updateAccessProfilesMetadataByQueryV1 = function (requestParameters, axiosOptions) {
1322
1436
  var _this = this;
1323
- return AccessProfilesApiFp(this.configuration).updateAccessProfilesMetadataByQueryV1(requestParameters.accessprofilemetadatabulkupdatebyqueryrequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
1437
+ return AccessProfilesApiFp(this.configuration).updateAccessProfilesMetadataByQueryV1(requestParameters.accessProfileMetadataBulkUpdateByQueryRequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
1324
1438
  };
1325
1439
  /**
1326
1440
  * This API adds a single Access Model Metadata value to an access profile by attribute key and attribute value. A single access profile cannot be assigned more than 25 metadata values. Adding custom metadata requires a suite license.
@@ -85,6 +85,14 @@ export var ConnectorDetailStatusEnum = {
85
85
  Demo: 'DEMO',
86
86
  Released: 'RELEASED'
87
87
  };
88
+ export var FieldDetailsDtoTypeEnum = {
89
+ String: 'string',
90
+ Int: 'int',
91
+ Long: 'long',
92
+ Date: 'date',
93
+ Boolean: 'boolean',
94
+ Secret: 'secret'
95
+ };
88
96
  export var JsonPatchOperationOpEnum = {
89
97
  Add: 'add',
90
98
  Remove: 'remove',
@@ -108,6 +116,29 @@ export var UpdateDetailStatusEnum = {
108
116
  Unchanged: 'UNCHANGED',
109
117
  Skipped: 'SKIPPED'
110
118
  };
119
+ /**
120
+ * The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \'Create Account Profile\', the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \'Update Account Profile\', the provisioning template for the \'Update\' connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \'Enable Account Profile\', the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\'s account is created. DISABLE - This usage type relates to \'Disable Account Profile\', the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these usage types for all your provisioning policy needs.
121
+ * @export
122
+ * @enum {string}
123
+ */
124
+ export var UsageType = {
125
+ Create: 'CREATE',
126
+ Update: 'UPDATE',
127
+ Enable: 'ENABLE',
128
+ Disable: 'DISABLE',
129
+ Delete: 'DELETE',
130
+ Assign: 'ASSIGN',
131
+ Unassign: 'UNASSIGN',
132
+ CreateGroup: 'CREATE_GROUP',
133
+ UpdateGroup: 'UPDATE_GROUP',
134
+ DeleteGroup: 'DELETE_GROUP',
135
+ Register: 'REGISTER',
136
+ CreateIdentity: 'CREATE_IDENTITY',
137
+ UpdateIdentity: 'UPDATE_IDENTITY',
138
+ EditGroup: 'EDIT_GROUP',
139
+ Unlock: 'UNLOCK',
140
+ ChangePassword: 'CHANGE_PASSWORD'
141
+ };
111
142
  export var V3ConnectorDtoStatusEnum = {
112
143
  Deprecated: 'DEPRECATED',
113
144
  Development: 'DEVELOPMENT',