@sailpoint/api-client 2.2.8 → 2.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/access_requests/api.d.ts +3 -3
- package/dist/access_requests/api.js.map +1 -1
- package/dist/entitlements/api.d.ts +3 -3
- package/dist/entitlements/api.js.map +1 -1
- package/dist/esm/nerm/common.js +2 -2
- package/dist/esm/nermv2025/common.js +2 -2
- package/dist/esm/sources/api.js +20 -21
- package/dist/esm/triggers/api.js +70 -0
- package/dist/esm/work_reassignment/api.js +19 -9
- package/dist/nerm/common.js +2 -2
- package/dist/nerm/common.js.map +1 -1
- package/dist/nermv2025/common.js +2 -2
- package/dist/nermv2025/common.js.map +1 -1
- package/dist/sources/api.d.ts +126 -127
- package/dist/sources/api.js +21 -22
- package/dist/sources/api.js.map +1 -1
- package/dist/triggers/api.d.ts +813 -0
- package/dist/triggers/api.js +72 -2
- package/dist/triggers/api.js.map +1 -1
- package/dist/ui_metadata/api.d.ts +36 -0
- package/dist/ui_metadata/api.js.map +1 -1
- package/dist/work_reassignment/api.d.ts +22 -6
- package/dist/work_reassignment/api.js +19 -9
- package/dist/work_reassignment/api.js.map +1 -1
- package/package.json +1 -1
package/dist/sources/api.d.ts
CHANGED
|
@@ -1057,121 +1057,6 @@ export declare const DtoType: {
|
|
|
1057
1057
|
readonly Workgroup: "WORKGROUP";
|
|
1058
1058
|
};
|
|
1059
1059
|
export type DtoType = typeof DtoType[keyof typeof DtoType];
|
|
1060
|
-
/**
|
|
1061
|
-
*
|
|
1062
|
-
* @export
|
|
1063
|
-
* @interface EntitlementAccessRequestConfig
|
|
1064
|
-
*/
|
|
1065
|
-
export interface EntitlementAccessRequestConfig {
|
|
1066
|
-
/**
|
|
1067
|
-
* Ordered list of approval steps for the access request. Empty when no approval is required.
|
|
1068
|
-
* @type {Array<EntitlementApprovalScheme>}
|
|
1069
|
-
* @memberof EntitlementAccessRequestConfig
|
|
1070
|
-
*/
|
|
1071
|
-
'approvalSchemes'?: Array<EntitlementApprovalScheme>;
|
|
1072
|
-
/**
|
|
1073
|
-
* If the requester must provide a comment during access request.
|
|
1074
|
-
* @type {boolean}
|
|
1075
|
-
* @memberof EntitlementAccessRequestConfig
|
|
1076
|
-
*/
|
|
1077
|
-
'requestCommentRequired'?: boolean;
|
|
1078
|
-
/**
|
|
1079
|
-
* If the reviewer must provide a comment when denying the access request.
|
|
1080
|
-
* @type {boolean}
|
|
1081
|
-
* @memberof EntitlementAccessRequestConfig
|
|
1082
|
-
*/
|
|
1083
|
-
'denialCommentRequired'?: boolean;
|
|
1084
|
-
/**
|
|
1085
|
-
* Is Reauthorization Required
|
|
1086
|
-
* @type {boolean}
|
|
1087
|
-
* @memberof EntitlementAccessRequestConfig
|
|
1088
|
-
*/
|
|
1089
|
-
'reauthorizationRequired'?: boolean;
|
|
1090
|
-
/**
|
|
1091
|
-
* If true, then remove date or sunset date is required in access request of the entitlement.
|
|
1092
|
-
* @type {boolean}
|
|
1093
|
-
* @memberof EntitlementAccessRequestConfig
|
|
1094
|
-
*/
|
|
1095
|
-
'requireEndDate'?: boolean;
|
|
1096
|
-
/**
|
|
1097
|
-
*
|
|
1098
|
-
* @type {EntitlementAccessRequestConfigMaxPermittedAccessDuration}
|
|
1099
|
-
* @memberof EntitlementAccessRequestConfig
|
|
1100
|
-
*/
|
|
1101
|
-
'maxPermittedAccessDuration'?: EntitlementAccessRequestConfigMaxPermittedAccessDuration | null;
|
|
1102
|
-
/**
|
|
1103
|
-
* The ID of the form definition used for the access request. If specified, the form is presented to the requester during the access request process.
|
|
1104
|
-
* @type {string}
|
|
1105
|
-
* @memberof EntitlementAccessRequestConfig
|
|
1106
|
-
*/
|
|
1107
|
-
'formDefinitionId'?: string | null;
|
|
1108
|
-
}
|
|
1109
|
-
/**
|
|
1110
|
-
* The maximum duration for which the access is permitted.
|
|
1111
|
-
* @export
|
|
1112
|
-
* @interface EntitlementAccessRequestConfigMaxPermittedAccessDuration
|
|
1113
|
-
*/
|
|
1114
|
-
export interface EntitlementAccessRequestConfigMaxPermittedAccessDuration {
|
|
1115
|
-
/**
|
|
1116
|
-
* The numeric value of the duration.
|
|
1117
|
-
* @type {number}
|
|
1118
|
-
* @memberof EntitlementAccessRequestConfigMaxPermittedAccessDuration
|
|
1119
|
-
*/
|
|
1120
|
-
'value'?: number;
|
|
1121
|
-
/**
|
|
1122
|
-
* The time unit for the duration.
|
|
1123
|
-
* @type {string}
|
|
1124
|
-
* @memberof EntitlementAccessRequestConfigMaxPermittedAccessDuration
|
|
1125
|
-
*/
|
|
1126
|
-
'timeUnit'?: EntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum;
|
|
1127
|
-
}
|
|
1128
|
-
export declare const EntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum: {
|
|
1129
|
-
readonly Hours: "HOURS";
|
|
1130
|
-
readonly Days: "DAYS";
|
|
1131
|
-
readonly Weeks: "WEEKS";
|
|
1132
|
-
readonly Months: "MONTHS";
|
|
1133
|
-
};
|
|
1134
|
-
export type EntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum = typeof EntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum[keyof typeof EntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum];
|
|
1135
|
-
/**
|
|
1136
|
-
*
|
|
1137
|
-
* @export
|
|
1138
|
-
* @interface EntitlementApprovalScheme
|
|
1139
|
-
*/
|
|
1140
|
-
export interface EntitlementApprovalScheme {
|
|
1141
|
-
/**
|
|
1142
|
-
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field, Workflows are exclusive to other types of approvals and License required.
|
|
1143
|
-
* @type {string}
|
|
1144
|
-
* @memberof EntitlementApprovalScheme
|
|
1145
|
-
*/
|
|
1146
|
-
'approverType'?: EntitlementApprovalSchemeApproverTypeEnum;
|
|
1147
|
-
/**
|
|
1148
|
-
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW
|
|
1149
|
-
* @type {string}
|
|
1150
|
-
* @memberof EntitlementApprovalScheme
|
|
1151
|
-
*/
|
|
1152
|
-
'approverId'?: string | null;
|
|
1153
|
-
}
|
|
1154
|
-
export declare const EntitlementApprovalSchemeApproverTypeEnum: {
|
|
1155
|
-
readonly EntitlementOwner: "ENTITLEMENT_OWNER";
|
|
1156
|
-
readonly SourceOwner: "SOURCE_OWNER";
|
|
1157
|
-
readonly Manager: "MANAGER";
|
|
1158
|
-
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
1159
|
-
readonly Workflow: "WORKFLOW";
|
|
1160
|
-
};
|
|
1161
|
-
export type EntitlementApprovalSchemeApproverTypeEnum = typeof EntitlementApprovalSchemeApproverTypeEnum[keyof typeof EntitlementApprovalSchemeApproverTypeEnum];
|
|
1162
|
-
/**
|
|
1163
|
-
*
|
|
1164
|
-
* @export
|
|
1165
|
-
* @interface EntitlementRevocationRequestConfig
|
|
1166
|
-
*/
|
|
1167
|
-
export interface EntitlementRevocationRequestConfig {
|
|
1168
|
-
/**
|
|
1169
|
-
* Ordered list of approval steps for the access request. Empty when no approval is required.
|
|
1170
|
-
* @type {Array<EntitlementApprovalScheme>}
|
|
1171
|
-
* @memberof EntitlementRevocationRequestConfig
|
|
1172
|
-
*/
|
|
1173
|
-
'approvalSchemes'?: Array<EntitlementApprovalScheme>;
|
|
1174
|
-
}
|
|
1175
1060
|
/**
|
|
1176
1061
|
*
|
|
1177
1062
|
* @export
|
|
@@ -2918,6 +2803,107 @@ export interface SourceDatasetResourceReference {
|
|
|
2918
2803
|
*/
|
|
2919
2804
|
'type'?: string;
|
|
2920
2805
|
}
|
|
2806
|
+
/**
|
|
2807
|
+
*
|
|
2808
|
+
* @export
|
|
2809
|
+
* @interface SourceEntitlementAccessRequestConfig
|
|
2810
|
+
*/
|
|
2811
|
+
export interface SourceEntitlementAccessRequestConfig {
|
|
2812
|
+
/**
|
|
2813
|
+
* Ordered list of approval steps for the access request. Empty when no approval is required.
|
|
2814
|
+
* @type {Array<SourceEntitlementApprovalScheme>}
|
|
2815
|
+
* @memberof SourceEntitlementAccessRequestConfig
|
|
2816
|
+
*/
|
|
2817
|
+
'approvalSchemes'?: Array<SourceEntitlementApprovalScheme>;
|
|
2818
|
+
/**
|
|
2819
|
+
* If the requester must provide a comment during access request.
|
|
2820
|
+
* @type {boolean}
|
|
2821
|
+
* @memberof SourceEntitlementAccessRequestConfig
|
|
2822
|
+
*/
|
|
2823
|
+
'requestCommentRequired'?: boolean;
|
|
2824
|
+
/**
|
|
2825
|
+
* If the reviewer must provide a comment when denying the access request.
|
|
2826
|
+
* @type {boolean}
|
|
2827
|
+
* @memberof SourceEntitlementAccessRequestConfig
|
|
2828
|
+
*/
|
|
2829
|
+
'denialCommentRequired'?: boolean;
|
|
2830
|
+
/**
|
|
2831
|
+
* Is Reauthorization Required
|
|
2832
|
+
* @type {boolean}
|
|
2833
|
+
* @memberof SourceEntitlementAccessRequestConfig
|
|
2834
|
+
*/
|
|
2835
|
+
'reauthorizationRequired'?: boolean;
|
|
2836
|
+
/**
|
|
2837
|
+
* If true, then remove date or sunset date is required in access request of the entitlement.
|
|
2838
|
+
* @type {boolean}
|
|
2839
|
+
* @memberof SourceEntitlementAccessRequestConfig
|
|
2840
|
+
*/
|
|
2841
|
+
'requireEndDate'?: boolean;
|
|
2842
|
+
/**
|
|
2843
|
+
*
|
|
2844
|
+
* @type {SourceEntitlementAccessRequestConfigMaxPermittedAccessDuration}
|
|
2845
|
+
* @memberof SourceEntitlementAccessRequestConfig
|
|
2846
|
+
*/
|
|
2847
|
+
'maxPermittedAccessDuration'?: SourceEntitlementAccessRequestConfigMaxPermittedAccessDuration | null;
|
|
2848
|
+
/**
|
|
2849
|
+
* The ID of the form definition used for the access request. If specified, the form is presented to the requester during the access request process.
|
|
2850
|
+
* @type {string}
|
|
2851
|
+
* @memberof SourceEntitlementAccessRequestConfig
|
|
2852
|
+
*/
|
|
2853
|
+
'formDefinitionId'?: string | null;
|
|
2854
|
+
}
|
|
2855
|
+
/**
|
|
2856
|
+
* The maximum duration for which the access is permitted.
|
|
2857
|
+
* @export
|
|
2858
|
+
* @interface SourceEntitlementAccessRequestConfigMaxPermittedAccessDuration
|
|
2859
|
+
*/
|
|
2860
|
+
export interface SourceEntitlementAccessRequestConfigMaxPermittedAccessDuration {
|
|
2861
|
+
/**
|
|
2862
|
+
* The numeric value of the duration.
|
|
2863
|
+
* @type {number}
|
|
2864
|
+
* @memberof SourceEntitlementAccessRequestConfigMaxPermittedAccessDuration
|
|
2865
|
+
*/
|
|
2866
|
+
'value'?: number;
|
|
2867
|
+
/**
|
|
2868
|
+
* The time unit for the duration.
|
|
2869
|
+
* @type {string}
|
|
2870
|
+
* @memberof SourceEntitlementAccessRequestConfigMaxPermittedAccessDuration
|
|
2871
|
+
*/
|
|
2872
|
+
'timeUnit'?: SourceEntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum;
|
|
2873
|
+
}
|
|
2874
|
+
export declare const SourceEntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum: {
|
|
2875
|
+
readonly Hours: "HOURS";
|
|
2876
|
+
readonly Days: "DAYS";
|
|
2877
|
+
readonly Weeks: "WEEKS";
|
|
2878
|
+
readonly Months: "MONTHS";
|
|
2879
|
+
};
|
|
2880
|
+
export type SourceEntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum = typeof SourceEntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum[keyof typeof SourceEntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum];
|
|
2881
|
+
/**
|
|
2882
|
+
*
|
|
2883
|
+
* @export
|
|
2884
|
+
* @interface SourceEntitlementApprovalScheme
|
|
2885
|
+
*/
|
|
2886
|
+
export interface SourceEntitlementApprovalScheme {
|
|
2887
|
+
/**
|
|
2888
|
+
* Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW** is not supported in source-level entitlement request configuration. Use the entitlement-level [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1) endpoint to configure a workflow approver. A source-level request that contains `WORKFLOW` is rejected with a 400.
|
|
2889
|
+
* @type {string}
|
|
2890
|
+
* @memberof SourceEntitlementApprovalScheme
|
|
2891
|
+
*/
|
|
2892
|
+
'approverType'?: SourceEntitlementApprovalSchemeApproverTypeEnum;
|
|
2893
|
+
/**
|
|
2894
|
+
* Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
|
|
2895
|
+
* @type {string}
|
|
2896
|
+
* @memberof SourceEntitlementApprovalScheme
|
|
2897
|
+
*/
|
|
2898
|
+
'approverId'?: string | null;
|
|
2899
|
+
}
|
|
2900
|
+
export declare const SourceEntitlementApprovalSchemeApproverTypeEnum: {
|
|
2901
|
+
readonly EntitlementOwner: "ENTITLEMENT_OWNER";
|
|
2902
|
+
readonly SourceOwner: "SOURCE_OWNER";
|
|
2903
|
+
readonly Manager: "MANAGER";
|
|
2904
|
+
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
2905
|
+
};
|
|
2906
|
+
export type SourceEntitlementApprovalSchemeApproverTypeEnum = typeof SourceEntitlementApprovalSchemeApproverTypeEnum[keyof typeof SourceEntitlementApprovalSchemeApproverTypeEnum];
|
|
2921
2907
|
/**
|
|
2922
2908
|
* Entitlement Request Configuration
|
|
2923
2909
|
* @export
|
|
@@ -2926,16 +2912,29 @@ export interface SourceDatasetResourceReference {
|
|
|
2926
2912
|
export interface SourceEntitlementRequestConfig {
|
|
2927
2913
|
/**
|
|
2928
2914
|
*
|
|
2929
|
-
* @type {
|
|
2915
|
+
* @type {SourceEntitlementAccessRequestConfig}
|
|
2930
2916
|
* @memberof SourceEntitlementRequestConfig
|
|
2931
2917
|
*/
|
|
2932
|
-
'accessRequestConfig'?:
|
|
2918
|
+
'accessRequestConfig'?: SourceEntitlementAccessRequestConfig;
|
|
2933
2919
|
/**
|
|
2934
2920
|
*
|
|
2935
|
-
* @type {
|
|
2921
|
+
* @type {SourceEntitlementRevocationRequestConfig}
|
|
2936
2922
|
* @memberof SourceEntitlementRequestConfig
|
|
2937
2923
|
*/
|
|
2938
|
-
'revocationRequestConfig'?:
|
|
2924
|
+
'revocationRequestConfig'?: SourceEntitlementRevocationRequestConfig;
|
|
2925
|
+
}
|
|
2926
|
+
/**
|
|
2927
|
+
*
|
|
2928
|
+
* @export
|
|
2929
|
+
* @interface SourceEntitlementRevocationRequestConfig
|
|
2930
|
+
*/
|
|
2931
|
+
export interface SourceEntitlementRevocationRequestConfig {
|
|
2932
|
+
/**
|
|
2933
|
+
* Ordered list of approval steps for the revocation request. Empty when no approval is required.
|
|
2934
|
+
* @type {Array<SourceEntitlementApprovalScheme>}
|
|
2935
|
+
* @memberof SourceEntitlementRevocationRequestConfig
|
|
2936
|
+
*/
|
|
2937
|
+
'approvalSchemes'?: Array<SourceEntitlementApprovalScheme>;
|
|
2939
2938
|
}
|
|
2940
2939
|
/**
|
|
2941
2940
|
* Dto for source health data
|
|
@@ -3877,7 +3876,7 @@ export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
3877
3876
|
*/
|
|
3878
3877
|
getSourceDatasetsV1: (sourceId: string, limit?: number, offset?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3879
3878
|
/**
|
|
3880
|
-
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
3879
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
3881
3880
|
* @summary Get source entitlement request configuration
|
|
3882
3881
|
* @param {string} id The Source id
|
|
3883
3882
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -4282,7 +4281,7 @@ export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4282
4281
|
*/
|
|
4283
4282
|
updateSourceDatasetV1: (sourceId: string, datasetId: string, jsonPatchOperation: Array<JsonPatchOperation>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4284
4283
|
/**
|
|
4285
|
-
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
4284
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
4286
4285
|
* @summary Update source entitlement request configuration
|
|
4287
4286
|
* @param {string} id The Source id
|
|
4288
4287
|
* @param {SourceEntitlementRequestConfig} sourceEntitlementRequestConfig
|
|
@@ -4611,7 +4610,7 @@ export declare const SourcesApiFp: (configuration?: Configuration) => {
|
|
|
4611
4610
|
*/
|
|
4612
4611
|
getSourceDatasetsV1(sourceId: string, limit?: number, offset?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceDataset>>>;
|
|
4613
4612
|
/**
|
|
4614
|
-
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
4613
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
4615
4614
|
* @summary Get source entitlement request configuration
|
|
4616
4615
|
* @param {string} id The Source id
|
|
4617
4616
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -5018,7 +5017,7 @@ export declare const SourcesApiFp: (configuration?: Configuration) => {
|
|
|
5018
5017
|
*/
|
|
5019
5018
|
updateSourceDatasetV1(sourceId: string, datasetId: string, jsonPatchOperation: Array<JsonPatchOperation>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceDataset>>;
|
|
5020
5019
|
/**
|
|
5021
|
-
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
5020
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
5022
5021
|
* @summary Update source entitlement request configuration
|
|
5023
5022
|
* @param {string} id The Source id
|
|
5024
5023
|
* @param {SourceEntitlementRequestConfig} sourceEntitlementRequestConfig
|
|
@@ -5313,7 +5312,7 @@ export declare const SourcesApiFactory: (configuration?: Configuration, basePath
|
|
|
5313
5312
|
*/
|
|
5314
5313
|
getSourceDatasetsV1(requestParameters: SourcesApiGetSourceDatasetsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceDataset>>;
|
|
5315
5314
|
/**
|
|
5316
|
-
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
5315
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
5317
5316
|
* @summary Get source entitlement request configuration
|
|
5318
5317
|
* @param {SourcesApiGetSourceEntitlementRequestConfigV1Request} requestParameters Request parameters.
|
|
5319
5318
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -5651,7 +5650,7 @@ export declare const SourcesApiFactory: (configuration?: Configuration, basePath
|
|
|
5651
5650
|
*/
|
|
5652
5651
|
updateSourceDatasetV1(requestParameters: SourcesApiUpdateSourceDatasetV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceDataset>;
|
|
5653
5652
|
/**
|
|
5654
|
-
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
5653
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
5655
5654
|
* @summary Update source entitlement request configuration
|
|
5656
5655
|
* @param {SourcesApiUpdateSourceEntitlementRequestConfigV1Request} requestParameters Request parameters.
|
|
5657
5656
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -7642,7 +7641,7 @@ export declare class SourcesApi extends BaseAPI {
|
|
|
7642
7641
|
*/
|
|
7643
7642
|
getSourceDatasetsV1(requestParameters: SourcesApiGetSourceDatasetsV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceDataset[], any>>;
|
|
7644
7643
|
/**
|
|
7645
|
-
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
7644
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
7646
7645
|
* @summary Get source entitlement request configuration
|
|
7647
7646
|
* @param {SourcesApiGetSourceEntitlementRequestConfigV1Request} requestParameters Request parameters.
|
|
7648
7647
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -8022,7 +8021,7 @@ export declare class SourcesApi extends BaseAPI {
|
|
|
8022
8021
|
*/
|
|
8023
8022
|
updateSourceDatasetV1(requestParameters: SourcesApiUpdateSourceDatasetV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceDataset, any>>;
|
|
8024
8023
|
/**
|
|
8025
|
-
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
8024
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
8026
8025
|
* @summary Update source entitlement request configuration
|
|
8027
8026
|
* @param {SourcesApiUpdateSourceEntitlementRequestConfigV1Request} requestParameters Request parameters.
|
|
8028
8027
|
* @param {*} [axiosOptions] Override http request option.
|
package/dist/sources/api.js
CHANGED
|
@@ -78,7 +78,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
78
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
79
|
};
|
|
80
80
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
-
exports.SourcesApiAxiosParamCreator = exports.Usagetypev2 = exports.UsageType = exports.TransformReadTypeEnum = exports.TransformTypeEnum = exports.TaskResultDtoTypeEnum = exports.TaskResultDetailsCompletionStatusEnum = exports.StatusResponseStatusEnum = exports.SourceSyncJobStatusEnum = exports.SourceSchemasInnerTypeEnum = exports.SourcePasswordPoliciesInnerTypeEnum = exports.SourceOwnerTypeEnum = exports.SourceManagerCorrelationRuleTypeEnum = exports.SourceManagementWorkgroupTypeEnum = exports.SourceHealthDtoStatusEnum = exports.SourceClusterTypeEnum = exports.SourceBeforeProvisioningRuleTypeEnum = exports.SourceAccountCorrelationRuleTypeEnum = exports.SourceAccountCorrelationConfigTypeEnum = exports.SourceStatusEnum = exports.SourceFeaturesEnum = exports.SchemaFeaturesEnum = exports.Schedule3TypeEnum = exports.NativeChangeDetectionConfigOperationsEnum = exports.LocaleOrigin = exports.LoadUncorrelatedAccountsTaskTaskMessagesInnerTypeEnum = exports.LoadUncorrelatedAccountsTaskTaskCompletionStatusEnum = exports.LoadAccountsTaskTaskMessagesInnerTypeEnum = exports.LoadAccountsTaskTaskCompletionStatusEnum = exports.JsonPatchOperationOpEnum = exports.FieldDetailsDtoV2TypeEnum = exports.FieldDetailsDtoTypeEnum = exports.
|
|
81
|
+
exports.SourcesApiAxiosParamCreator = exports.Usagetypev2 = exports.UsageType = exports.TransformReadTypeEnum = exports.TransformTypeEnum = exports.TaskResultDtoTypeEnum = exports.TaskResultDetailsCompletionStatusEnum = exports.StatusResponseStatusEnum = exports.SourceSyncJobStatusEnum = exports.SourceSchemasInnerTypeEnum = exports.SourcePasswordPoliciesInnerTypeEnum = exports.SourceOwnerTypeEnum = exports.SourceManagerCorrelationRuleTypeEnum = exports.SourceManagementWorkgroupTypeEnum = exports.SourceHealthDtoStatusEnum = exports.SourceEntitlementApprovalSchemeApproverTypeEnum = exports.SourceEntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum = exports.SourceClusterTypeEnum = exports.SourceBeforeProvisioningRuleTypeEnum = exports.SourceAccountCorrelationRuleTypeEnum = exports.SourceAccountCorrelationConfigTypeEnum = exports.SourceStatusEnum = exports.SourceFeaturesEnum = exports.SchemaFeaturesEnum = exports.Schedule3TypeEnum = exports.NativeChangeDetectionConfigOperationsEnum = exports.LocaleOrigin = exports.LoadUncorrelatedAccountsTaskTaskMessagesInnerTypeEnum = exports.LoadUncorrelatedAccountsTaskTaskCompletionStatusEnum = exports.LoadAccountsTaskTaskMessagesInnerTypeEnum = exports.LoadAccountsTaskTaskCompletionStatusEnum = exports.JsonPatchOperationOpEnum = exports.FieldDetailsDtoV2TypeEnum = exports.FieldDetailsDtoTypeEnum = exports.DtoType = exports.DependantConnectionsMissingDtoDependencyTypeEnum = exports.DeleteSourceV1202ResponseTypeEnum = exports.CorrelationConfigAttributeAssignmentsInnerMatchModeEnum = exports.CorrelationConfigAttributeAssignmentsInnerOperationEnum = exports.ConnectorDetailStatusEnum = exports.AttributeDefinitionType = exports.AttributeDefinitionSchemaTypeEnum = exports.AttrSyncSourceTypeEnum = exports.ApprovalConfigTimeoutConfigTimeoutResultEnum = exports.ApprovalConfigSerialChainInnerIdentityTypeEnum = exports.ApprovalConfigFallbackApproverTypeEnum = exports.ApprovalConfigEscalationConfigEscalationChainInnerIdentityTypeEnum = exports.ApprovalConfigAutoApproveEnum = exports.ApprovalConfigMachineIdentityManagerAssignmentEnum = exports.ApprovalConfigRequiresCommentEnum = void 0;
|
|
82
82
|
exports.UpdateSourceScheduleV1ScheduleTypeEnum = exports.GetSourceSchemasV1IncludeTypesEnum = exports.GetSourceScheduleV1ScheduleTypeEnum = exports.GetSourceConfigV1LocaleEnum = exports.DeleteSourceScheduleV1ScheduleTypeEnum = exports.SourcesApi = exports.SourcesApiFactory = exports.SourcesApiFp = void 0;
|
|
83
83
|
var axios_1 = __importDefault(require("axios"));
|
|
84
84
|
// Some imports not used depending on template conditions
|
|
@@ -333,19 +333,6 @@ exports.DtoType = {
|
|
|
333
333
|
AccountActivity: 'ACCOUNT_ACTIVITY',
|
|
334
334
|
Workgroup: 'WORKGROUP'
|
|
335
335
|
};
|
|
336
|
-
exports.EntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum = {
|
|
337
|
-
Hours: 'HOURS',
|
|
338
|
-
Days: 'DAYS',
|
|
339
|
-
Weeks: 'WEEKS',
|
|
340
|
-
Months: 'MONTHS'
|
|
341
|
-
};
|
|
342
|
-
exports.EntitlementApprovalSchemeApproverTypeEnum = {
|
|
343
|
-
EntitlementOwner: 'ENTITLEMENT_OWNER',
|
|
344
|
-
SourceOwner: 'SOURCE_OWNER',
|
|
345
|
-
Manager: 'MANAGER',
|
|
346
|
-
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
347
|
-
Workflow: 'WORKFLOW'
|
|
348
|
-
};
|
|
349
336
|
exports.FieldDetailsDtoTypeEnum = {
|
|
350
337
|
String: 'string',
|
|
351
338
|
Int: 'int',
|
|
@@ -507,6 +494,18 @@ exports.SourceBeforeProvisioningRuleTypeEnum = {
|
|
|
507
494
|
exports.SourceClusterTypeEnum = {
|
|
508
495
|
Cluster: 'CLUSTER'
|
|
509
496
|
};
|
|
497
|
+
exports.SourceEntitlementAccessRequestConfigMaxPermittedAccessDurationTimeUnitEnum = {
|
|
498
|
+
Hours: 'HOURS',
|
|
499
|
+
Days: 'DAYS',
|
|
500
|
+
Weeks: 'WEEKS',
|
|
501
|
+
Months: 'MONTHS'
|
|
502
|
+
};
|
|
503
|
+
exports.SourceEntitlementApprovalSchemeApproverTypeEnum = {
|
|
504
|
+
EntitlementOwner: 'ENTITLEMENT_OWNER',
|
|
505
|
+
SourceOwner: 'SOURCE_OWNER',
|
|
506
|
+
Manager: 'MANAGER',
|
|
507
|
+
GovernanceGroup: 'GOVERNANCE_GROUP'
|
|
508
|
+
};
|
|
510
509
|
exports.SourceHealthDtoStatusEnum = {
|
|
511
510
|
SourceStateErrorCluster: 'SOURCE_STATE_ERROR_CLUSTER',
|
|
512
511
|
SourceStateErrorSource: 'SOURCE_STATE_ERROR_SOURCE',
|
|
@@ -1850,7 +1849,7 @@ var SourcesApiAxiosParamCreator = function (configuration) {
|
|
|
1850
1849
|
});
|
|
1851
1850
|
},
|
|
1852
1851
|
/**
|
|
1853
|
-
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
1852
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
1854
1853
|
* @summary Get source entitlement request configuration
|
|
1855
1854
|
* @param {string} id The Source id
|
|
1856
1855
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -3582,7 +3581,7 @@ var SourcesApiAxiosParamCreator = function (configuration) {
|
|
|
3582
3581
|
});
|
|
3583
3582
|
},
|
|
3584
3583
|
/**
|
|
3585
|
-
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
3584
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
3586
3585
|
* @summary Update source entitlement request configuration
|
|
3587
3586
|
* @param {string} id The Source id
|
|
3588
3587
|
* @param {SourceEntitlementRequestConfig} sourceEntitlementRequestConfig
|
|
@@ -4525,7 +4524,7 @@ var SourcesApiFp = function (configuration) {
|
|
|
4525
4524
|
});
|
|
4526
4525
|
},
|
|
4527
4526
|
/**
|
|
4528
|
-
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
4527
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
4529
4528
|
* @summary Get source entitlement request configuration
|
|
4530
4529
|
* @param {string} id The Source id
|
|
4531
4530
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -5560,7 +5559,7 @@ var SourcesApiFp = function (configuration) {
|
|
|
5560
5559
|
});
|
|
5561
5560
|
},
|
|
5562
5561
|
/**
|
|
5563
|
-
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
5562
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
5564
5563
|
* @summary Update source entitlement request configuration
|
|
5565
5564
|
* @param {string} id The Source id
|
|
5566
5565
|
* @param {SourceEntitlementRequestConfig} sourceEntitlementRequestConfig
|
|
@@ -5994,7 +5993,7 @@ var SourcesApiFactory = function (configuration, basePath, axios) {
|
|
|
5994
5993
|
return localVarFp.getSourceDatasetsV1(requestParameters.sourceId, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.xSailPointExperimental, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
5995
5994
|
},
|
|
5996
5995
|
/**
|
|
5997
|
-
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
5996
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
5998
5997
|
* @summary Get source entitlement request configuration
|
|
5999
5998
|
* @param {SourcesApiGetSourceEntitlementRequestConfigV1Request} requestParameters Request parameters.
|
|
6000
5999
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -6415,7 +6414,7 @@ var SourcesApiFactory = function (configuration, basePath, axios) {
|
|
|
6415
6414
|
return localVarFp.updateSourceDatasetV1(requestParameters.sourceId, requestParameters.datasetId, requestParameters.jsonPatchOperation, requestParameters.xSailPointExperimental, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
6416
6415
|
},
|
|
6417
6416
|
/**
|
|
6418
|
-
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
6417
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
6419
6418
|
* @summary Update source entitlement request configuration
|
|
6420
6419
|
* @param {SourcesApiUpdateSourceEntitlementRequestConfigV1Request} requestParameters Request parameters.
|
|
6421
6420
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -6839,7 +6838,7 @@ var SourcesApi = /** @class */ (function (_super) {
|
|
|
6839
6838
|
return (0, exports.SourcesApiFp)(this.configuration).getSourceDatasetsV1(requestParameters.sourceId, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.xSailPointExperimental, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6840
6839
|
};
|
|
6841
6840
|
/**
|
|
6842
|
-
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
6841
|
+
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
6843
6842
|
* @summary Get source entitlement request configuration
|
|
6844
6843
|
* @param {SourcesApiGetSourceEntitlementRequestConfigV1Request} requestParameters Request parameters.
|
|
6845
6844
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -7344,7 +7343,7 @@ var SourcesApi = /** @class */ (function (_super) {
|
|
|
7344
7343
|
return (0, exports.SourcesApiFp)(this.configuration).updateSourceDatasetV1(requestParameters.sourceId, requestParameters.datasetId, requestParameters.jsonPatchOperation, requestParameters.xSailPointExperimental, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7345
7344
|
};
|
|
7346
7345
|
/**
|
|
7347
|
-
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
7346
|
+
* This API replaces the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration. The `WORKFLOW` approver type is not supported in source-level configuration. To use a workflow as an approver, configure it on the entitlement with [Replace entitlement request config](https://developer.sailpoint.com/docs/api/put-entitlement-request-config-v-1). A source-level request that contains `WORKFLOW` fails with a 400.
|
|
7348
7347
|
* @summary Update source entitlement request configuration
|
|
7349
7348
|
* @param {SourcesApiUpdateSourceEntitlementRequestConfigV1Request} requestParameters Request parameters.
|
|
7350
7349
|
* @param {*} [axiosOptions] Override http request option.
|