sailpoint-api-client 2.0.4 → 2.0.5
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/index.d.ts +3 -0
- package/dist/index.js +192 -189
- package/dist/index.js.map +1 -1
- package/dist/intelligence/api.d.ts +1042 -0
- package/dist/intelligence/api.js +595 -0
- package/dist/intelligence/api.js.map +1 -0
- package/dist/intelligence/base.d.ts +66 -0
- package/dist/intelligence/base.js +90 -0
- package/dist/intelligence/base.js.map +1 -0
- package/dist/intelligence/common.d.ts +65 -0
- package/dist/intelligence/common.js +292 -0
- package/dist/intelligence/common.js.map +1 -0
- package/dist/intelligence/configuration.d.ts +91 -0
- package/dist/intelligence/configuration.js +46 -0
- package/dist/intelligence/configuration.js.map +1 -0
- package/dist/intelligence/index.d.ts +13 -0
- package/dist/intelligence/index.js +32 -0
- package/dist/intelligence/index.js.map +1 -0
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/sources/api.d.ts +509 -1
- package/dist/sources/api.js +587 -4
- package/dist/sources/api.js.map +1 -1
- package/index.ts +3 -0
- package/intelligence/.openapi-generator/FILES +40 -0
- package/intelligence/.openapi-generator/VERSION +1 -0
- package/intelligence/.openapi-generator-ignore +23 -0
- package/intelligence/.sdk-partition +1 -0
- package/intelligence/api.ts +1316 -0
- package/intelligence/base.ts +86 -0
- package/intelligence/common.ts +183 -0
- package/intelligence/configuration.ts +110 -0
- package/intelligence/docs/Examples/typescript_code_examples_overlay.yaml +78 -0
- package/intelligence/docs/Methods/Index.md +30 -0
- package/intelligence/docs/Methods/IntelligenceApi.md +259 -0
- package/intelligence/docs/Models/Errorbody.md +20 -0
- package/intelligence/docs/Models/Errormessagedto.md +21 -0
- package/intelligence/docs/Models/Errorresponsedto.md +22 -0
- package/intelligence/docs/Models/GetIdentityIntelligenceV1401Response.md +19 -0
- package/intelligence/docs/Models/GetIdentityIntelligenceV1429Response.md +19 -0
- package/intelligence/docs/Models/Index.md +19 -0
- package/intelligence/docs/Models/Intelaccessaccountwire.md +30 -0
- package/intelligence/docs/Models/Intelaccesshistory.md +20 -0
- package/intelligence/docs/Models/Intelaccesshistoryaccessitemsslice.md +20 -0
- package/intelligence/docs/Models/Intelaccesshistorycertificationsslice.md +20 -0
- package/intelligence/docs/Models/Intelaccessitemhistoryevent.md +20 -0
- package/intelligence/docs/Models/Intelaccesssourcewire.md +20 -0
- package/intelligence/docs/Models/Intelaccountsslice.md +20 -0
- package/intelligence/docs/Models/Intelcertificationhistoryevent.md +23 -0
- package/intelligence/docs/Models/Intelidentityaggregate.md +35 -0
- package/intelligence/docs/Models/Intelidentityambiguousbody.md +21 -0
- package/intelligence/docs/Models/Intelidentityambiguouscandidate.md +20 -0
- package/intelligence/docs/Models/Intelidentitynotfoundbody.md +20 -0
- package/intelligence/docs/Models/Inteloutlieraccessitem.md +24 -0
- package/intelligence/docs/Models/Inteloutliersslice.md +19 -0
- package/intelligence/docs/Models/Intelprivilegedaccessitemwire.md +26 -0
- package/intelligence/docs/Models/IntelprivilegedaccessitemwireSource.md +20 -0
- package/intelligence/docs/Models/Intelprivilegedaccessslice.md +19 -0
- package/intelligence/docs/Models/Intelrareaccessslice.md +20 -0
- package/intelligence/docs/Models/Localeorigin.md +21 -0
- package/intelligence/docs/Models/README.md +46 -0
- package/intelligence/git_push.sh +57 -0
- package/intelligence/index.ts +18 -0
- package/intelligence/package.json +34 -0
- package/intelligence/tsconfig.json +21 -0
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/sources/.openapi-generator/FILES +2 -0
- package/sources/api.ts +846 -9
- package/sources/docs/Examples/typescript_code_examples_overlay.yaml +101 -0
- package/sources/docs/Methods/SourcesApi.md +288 -0
- package/sources/docs/Models/Fielddetailsdtov2.md +24 -0
- package/sources/docs/Models/Provisioningpolicydtov2.md +24 -0
- package/sources/docs/Models/Usagetype.md +2 -0
package/sources/api.ts
CHANGED
|
@@ -1281,6 +1281,61 @@ export const FielddetailsdtoTypeEnum = {
|
|
|
1281
1281
|
|
|
1282
1282
|
export type FielddetailsdtoTypeEnum = typeof FielddetailsdtoTypeEnum[keyof typeof FielddetailsdtoTypeEnum];
|
|
1283
1283
|
|
|
1284
|
+
/**
|
|
1285
|
+
*
|
|
1286
|
+
* @export
|
|
1287
|
+
* @interface Fielddetailsdtov2
|
|
1288
|
+
*/
|
|
1289
|
+
export interface Fielddetailsdtov2 {
|
|
1290
|
+
/**
|
|
1291
|
+
* The name of the attribute.
|
|
1292
|
+
* @type {string}
|
|
1293
|
+
* @memberof Fielddetailsdtov2
|
|
1294
|
+
*/
|
|
1295
|
+
'name'?: string;
|
|
1296
|
+
/**
|
|
1297
|
+
* The transform to apply to the field
|
|
1298
|
+
* @type {object}
|
|
1299
|
+
* @memberof Fielddetailsdtov2
|
|
1300
|
+
*/
|
|
1301
|
+
'transform'?: object;
|
|
1302
|
+
/**
|
|
1303
|
+
* Attributes required for the transform
|
|
1304
|
+
* @type {object}
|
|
1305
|
+
* @memberof Fielddetailsdtov2
|
|
1306
|
+
*/
|
|
1307
|
+
'attributes'?: object;
|
|
1308
|
+
/**
|
|
1309
|
+
* Flag indicating whether or not the attribute is required.
|
|
1310
|
+
* @type {boolean}
|
|
1311
|
+
* @memberof Fielddetailsdtov2
|
|
1312
|
+
*/
|
|
1313
|
+
'isRequired'?: boolean;
|
|
1314
|
+
/**
|
|
1315
|
+
* The type of the attribute. string: For text-based data. int: For whole numbers. long: For larger whole numbers. date: For date and time values. boolean: For true/false values. secret: For sensitive data like passwords, which will be masked and encrypted.
|
|
1316
|
+
* @type {string}
|
|
1317
|
+
* @memberof Fielddetailsdtov2
|
|
1318
|
+
*/
|
|
1319
|
+
'type'?: Fielddetailsdtov2TypeEnum;
|
|
1320
|
+
/**
|
|
1321
|
+
* Flag indicating whether or not the attribute is multi-valued.
|
|
1322
|
+
* @type {boolean}
|
|
1323
|
+
* @memberof Fielddetailsdtov2
|
|
1324
|
+
*/
|
|
1325
|
+
'isMultiValued'?: boolean;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
export const Fielddetailsdtov2TypeEnum = {
|
|
1329
|
+
String: 'string',
|
|
1330
|
+
Int: 'int',
|
|
1331
|
+
Long: 'long',
|
|
1332
|
+
Date: 'date',
|
|
1333
|
+
Boolean: 'boolean',
|
|
1334
|
+
Secret: 'secret'
|
|
1335
|
+
} as const;
|
|
1336
|
+
|
|
1337
|
+
export type Fielddetailsdtov2TypeEnum = typeof Fielddetailsdtov2TypeEnum[keyof typeof Fielddetailsdtov2TypeEnum];
|
|
1338
|
+
|
|
1284
1339
|
/**
|
|
1285
1340
|
*
|
|
1286
1341
|
* @export
|
|
@@ -2057,6 +2112,51 @@ export interface Provisioningpolicydto {
|
|
|
2057
2112
|
}
|
|
2058
2113
|
|
|
2059
2114
|
|
|
2115
|
+
/**
|
|
2116
|
+
*
|
|
2117
|
+
* @export
|
|
2118
|
+
* @interface Provisioningpolicydtov2
|
|
2119
|
+
*/
|
|
2120
|
+
export interface Provisioningpolicydtov2 {
|
|
2121
|
+
/**
|
|
2122
|
+
* System-generated unique ID of the provisioning policy.
|
|
2123
|
+
* @type {string}
|
|
2124
|
+
* @memberof Provisioningpolicydtov2
|
|
2125
|
+
*/
|
|
2126
|
+
'id'?: string;
|
|
2127
|
+
/**
|
|
2128
|
+
* the provisioning policy name
|
|
2129
|
+
* @type {string}
|
|
2130
|
+
* @memberof Provisioningpolicydtov2
|
|
2131
|
+
*/
|
|
2132
|
+
'name': string | null;
|
|
2133
|
+
/**
|
|
2134
|
+
* Subtype ID for which provisioning policy will be created when usageType is CREATE_MACHINE_ACCOUNT.
|
|
2135
|
+
* @type {string}
|
|
2136
|
+
* @memberof Provisioningpolicydtov2
|
|
2137
|
+
*/
|
|
2138
|
+
'subtypeId'?: string | null;
|
|
2139
|
+
/**
|
|
2140
|
+
* the description of the provisioning policy
|
|
2141
|
+
* @type {string}
|
|
2142
|
+
* @memberof Provisioningpolicydtov2
|
|
2143
|
+
*/
|
|
2144
|
+
'description'?: string;
|
|
2145
|
+
/**
|
|
2146
|
+
*
|
|
2147
|
+
* @type {Usagetype}
|
|
2148
|
+
* @memberof Provisioningpolicydtov2
|
|
2149
|
+
*/
|
|
2150
|
+
'usageType'?: Usagetype;
|
|
2151
|
+
/**
|
|
2152
|
+
*
|
|
2153
|
+
* @type {Array<Fielddetailsdtov2>}
|
|
2154
|
+
* @memberof Provisioningpolicydtov2
|
|
2155
|
+
*/
|
|
2156
|
+
'fields'?: Array<Fielddetailsdtov2>;
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
|
|
2060
2160
|
/**
|
|
2061
2161
|
* Representation of the object which is returned from source connectors.
|
|
2062
2162
|
* @export
|
|
@@ -3325,7 +3425,7 @@ export const TransformreadTypeEnum = {
|
|
|
3325
3425
|
export type TransformreadTypeEnum = typeof TransformreadTypeEnum[keyof typeof TransformreadTypeEnum];
|
|
3326
3426
|
|
|
3327
3427
|
/**
|
|
3328
|
-
* 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.
|
|
3428
|
+
* 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. CREATE_MACHINE_ACCOUNT - This usage type can be used to create the provisioning template for a source subtype which will be used in creating a machine account. You can use these usage types for all your provisioning policy needs.
|
|
3329
3429
|
* @export
|
|
3330
3430
|
* @enum {string}
|
|
3331
3431
|
*/
|
|
@@ -3346,7 +3446,8 @@ export const Usagetype = {
|
|
|
3346
3446
|
UpdateIdentity: 'UPDATE_IDENTITY',
|
|
3347
3447
|
EditGroup: 'EDIT_GROUP',
|
|
3348
3448
|
Unlock: 'UNLOCK',
|
|
3349
|
-
ChangePassword: 'CHANGE_PASSWORD'
|
|
3449
|
+
ChangePassword: 'CHANGE_PASSWORD',
|
|
3450
|
+
CreateMachineAccount: 'CREATE_MACHINE_ACCOUNT'
|
|
3350
3451
|
} as const;
|
|
3351
3452
|
|
|
3352
3453
|
export type Usagetype = typeof Usagetype[keyof typeof Usagetype];
|
|
@@ -3399,6 +3500,59 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3399
3500
|
axiosOptions: localVarRequestOptions,
|
|
3400
3501
|
};
|
|
3401
3502
|
},
|
|
3503
|
+
/**
|
|
3504
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. The V2 API allows you to use a unique identifier (id) for each provisioning policy instead of usageType. This enables read, update, and delete operations on policies using their id. Note: The subtypeId field is required if usageType is CREATE_MACHINE_ACCOUNT. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
3505
|
+
* @summary Create provisioning policy
|
|
3506
|
+
* @param {string} sourceId The Source id
|
|
3507
|
+
* @param {Provisioningpolicydtov2} provisioningpolicydtov2
|
|
3508
|
+
* @param {boolean} [useDefaultFields] If passed as true, then it uses default fields from the connector template.
|
|
3509
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3510
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3511
|
+
* @throws {RequiredError}
|
|
3512
|
+
*/
|
|
3513
|
+
createProvisioningPolicyV2: async (sourceId: string, provisioningpolicydtov2: Provisioningpolicydtov2, useDefaultFields?: boolean, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3514
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
3515
|
+
assertParamExists('createProvisioningPolicyV2', 'sourceId', sourceId)
|
|
3516
|
+
// verify required parameter 'provisioningpolicydtov2' is not null or undefined
|
|
3517
|
+
assertParamExists('createProvisioningPolicyV2', 'provisioningpolicydtov2', provisioningpolicydtov2)
|
|
3518
|
+
if (xSailPointExperimental === undefined) {
|
|
3519
|
+
xSailPointExperimental = 'true';
|
|
3520
|
+
}
|
|
3521
|
+
|
|
3522
|
+
const localVarPath = `/sources/v2/{sourceId}/provisioning-policies`
|
|
3523
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)));
|
|
3524
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3525
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3526
|
+
let baseOptions;
|
|
3527
|
+
if (configuration) {
|
|
3528
|
+
baseOptions = configuration.baseOptions;
|
|
3529
|
+
}
|
|
3530
|
+
|
|
3531
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
3532
|
+
const localVarHeaderParameter = {} as any;
|
|
3533
|
+
const localVarQueryParameter = {} as any;
|
|
3534
|
+
|
|
3535
|
+
if (useDefaultFields !== undefined) {
|
|
3536
|
+
localVarQueryParameter['useDefaultFields'] = useDefaultFields;
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
|
|
3540
|
+
|
|
3541
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3542
|
+
|
|
3543
|
+
if (xSailPointExperimental != null) {
|
|
3544
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
3545
|
+
}
|
|
3546
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3547
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3548
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
3549
|
+
localVarRequestOptions.data = serializeDataIfNeeded(provisioningpolicydtov2, localVarRequestOptions, configuration)
|
|
3550
|
+
|
|
3551
|
+
return {
|
|
3552
|
+
url: toPathString(localVarUrlObj),
|
|
3553
|
+
axiosOptions: localVarRequestOptions,
|
|
3554
|
+
};
|
|
3555
|
+
},
|
|
3402
3556
|
/**
|
|
3403
3557
|
* Use this API to create a new schedule for a type on the specified source in Identity Security Cloud (ISC).
|
|
3404
3558
|
* @summary Create schedule on source
|
|
@@ -3617,6 +3771,52 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3617
3771
|
|
|
3618
3772
|
|
|
3619
3773
|
|
|
3774
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3775
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3776
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
3777
|
+
|
|
3778
|
+
return {
|
|
3779
|
+
url: toPathString(localVarUrlObj),
|
|
3780
|
+
axiosOptions: localVarRequestOptions,
|
|
3781
|
+
};
|
|
3782
|
+
},
|
|
3783
|
+
/**
|
|
3784
|
+
* Deletes the provisioning policy with the specified ID on an application.
|
|
3785
|
+
* @summary Delete provisioning policy by ID
|
|
3786
|
+
* @param {string} sourceId The Source ID.
|
|
3787
|
+
* @param {string} id The provisioning policy ID.
|
|
3788
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3789
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3790
|
+
* @throws {RequiredError}
|
|
3791
|
+
*/
|
|
3792
|
+
deleteProvisioningPolicyV2: async (sourceId: string, id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3793
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
3794
|
+
assertParamExists('deleteProvisioningPolicyV2', 'sourceId', sourceId)
|
|
3795
|
+
// verify required parameter 'id' is not null or undefined
|
|
3796
|
+
assertParamExists('deleteProvisioningPolicyV2', 'id', id)
|
|
3797
|
+
if (xSailPointExperimental === undefined) {
|
|
3798
|
+
xSailPointExperimental = 'true';
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
const localVarPath = `/sources/v2/{sourceId}/provisioning-policies/{id}`
|
|
3802
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)))
|
|
3803
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
3804
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3805
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3806
|
+
let baseOptions;
|
|
3807
|
+
if (configuration) {
|
|
3808
|
+
baseOptions = configuration.baseOptions;
|
|
3809
|
+
}
|
|
3810
|
+
|
|
3811
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
|
|
3812
|
+
const localVarHeaderParameter = {} as any;
|
|
3813
|
+
const localVarQueryParameter = {} as any;
|
|
3814
|
+
|
|
3815
|
+
|
|
3816
|
+
|
|
3817
|
+
if (xSailPointExperimental != null) {
|
|
3818
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
3819
|
+
}
|
|
3620
3820
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3621
3821
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3622
3822
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -3974,6 +4174,52 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
3974
4174
|
|
|
3975
4175
|
|
|
3976
4176
|
|
|
4177
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4178
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4179
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
4180
|
+
|
|
4181
|
+
return {
|
|
4182
|
+
url: toPathString(localVarUrlObj),
|
|
4183
|
+
axiosOptions: localVarRequestOptions,
|
|
4184
|
+
};
|
|
4185
|
+
},
|
|
4186
|
+
/**
|
|
4187
|
+
* This end-point retrieves the ProvisioningPolicy with the specified ID on the specified Source in Identity Security Cloud.
|
|
4188
|
+
* @summary Get provisioning policy by ID
|
|
4189
|
+
* @param {string} sourceId The Source ID.
|
|
4190
|
+
* @param {string} id The provisioning policy ID.
|
|
4191
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
4192
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
4193
|
+
* @throws {RequiredError}
|
|
4194
|
+
*/
|
|
4195
|
+
getProvisioningPolicyV2: async (sourceId: string, id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4196
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
4197
|
+
assertParamExists('getProvisioningPolicyV2', 'sourceId', sourceId)
|
|
4198
|
+
// verify required parameter 'id' is not null or undefined
|
|
4199
|
+
assertParamExists('getProvisioningPolicyV2', 'id', id)
|
|
4200
|
+
if (xSailPointExperimental === undefined) {
|
|
4201
|
+
xSailPointExperimental = 'true';
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
const localVarPath = `/sources/v2/{sourceId}/provisioning-policies/{id}`
|
|
4205
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)))
|
|
4206
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
4207
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4208
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4209
|
+
let baseOptions;
|
|
4210
|
+
if (configuration) {
|
|
4211
|
+
baseOptions = configuration.baseOptions;
|
|
4212
|
+
}
|
|
4213
|
+
|
|
4214
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
4215
|
+
const localVarHeaderParameter = {} as any;
|
|
4216
|
+
const localVarQueryParameter = {} as any;
|
|
4217
|
+
|
|
4218
|
+
|
|
4219
|
+
|
|
4220
|
+
if (xSailPointExperimental != null) {
|
|
4221
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
4222
|
+
}
|
|
3977
4223
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3978
4224
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3979
4225
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -4714,6 +4960,63 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4714
4960
|
|
|
4715
4961
|
|
|
4716
4962
|
|
|
4963
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4964
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4965
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
4966
|
+
|
|
4967
|
+
return {
|
|
4968
|
+
url: toPathString(localVarUrlObj),
|
|
4969
|
+
axiosOptions: localVarRequestOptions,
|
|
4970
|
+
};
|
|
4971
|
+
},
|
|
4972
|
+
/**
|
|
4973
|
+
* This end-point lists all the ProvisioningPolicies in IdentityNow.
|
|
4974
|
+
* @summary Lists Provisioning Policies
|
|
4975
|
+
* @param {string} sourceId The Source id
|
|
4976
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **subtypeId**: *eq* **usageType**: *eq*
|
|
4977
|
+
* @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
4978
|
+
* @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
4979
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
4980
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
4981
|
+
* @throws {RequiredError}
|
|
4982
|
+
*/
|
|
4983
|
+
listProvisioningPoliciesV2: async (sourceId: string, filters?: string, offset?: number, limit?: number, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
4984
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
4985
|
+
assertParamExists('listProvisioningPoliciesV2', 'sourceId', sourceId)
|
|
4986
|
+
if (xSailPointExperimental === undefined) {
|
|
4987
|
+
xSailPointExperimental = 'true';
|
|
4988
|
+
}
|
|
4989
|
+
|
|
4990
|
+
const localVarPath = `/sources/v2/{sourceId}/provisioning-policies`
|
|
4991
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)));
|
|
4992
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
4993
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4994
|
+
let baseOptions;
|
|
4995
|
+
if (configuration) {
|
|
4996
|
+
baseOptions = configuration.baseOptions;
|
|
4997
|
+
}
|
|
4998
|
+
|
|
4999
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
5000
|
+
const localVarHeaderParameter = {} as any;
|
|
5001
|
+
const localVarQueryParameter = {} as any;
|
|
5002
|
+
|
|
5003
|
+
if (filters !== undefined) {
|
|
5004
|
+
localVarQueryParameter['filters'] = filters;
|
|
5005
|
+
}
|
|
5006
|
+
|
|
5007
|
+
if (offset !== undefined) {
|
|
5008
|
+
localVarQueryParameter['offset'] = offset;
|
|
5009
|
+
}
|
|
5010
|
+
|
|
5011
|
+
if (limit !== undefined) {
|
|
5012
|
+
localVarQueryParameter['limit'] = limit;
|
|
5013
|
+
}
|
|
5014
|
+
|
|
5015
|
+
|
|
5016
|
+
|
|
5017
|
+
if (xSailPointExperimental != null) {
|
|
5018
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
5019
|
+
}
|
|
4717
5020
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4718
5021
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4719
5022
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -4947,18 +5250,70 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4947
5250
|
};
|
|
4948
5251
|
},
|
|
4949
5252
|
/**
|
|
4950
|
-
*
|
|
4951
|
-
* @summary Update
|
|
4952
|
-
* @param {string}
|
|
4953
|
-
* @param {
|
|
5253
|
+
* This end-point updates the provisioning policy with the specified ID on the specified source in Identity Security Cloud. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
5254
|
+
* @summary Update provisioning policy by ID
|
|
5255
|
+
* @param {string} sourceId The Source ID.
|
|
5256
|
+
* @param {string} id The provisioning policy ID.
|
|
5257
|
+
* @param {Provisioningpolicydtov2} provisioningpolicydtov2
|
|
4954
5258
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
4955
5259
|
* @param {*} [axiosOptions] Override http request option.
|
|
4956
5260
|
* @throws {RequiredError}
|
|
4957
5261
|
*/
|
|
4958
|
-
|
|
5262
|
+
putProvisioningPolicyV2: async (sourceId: string, id: string, provisioningpolicydtov2: Provisioningpolicydtov2, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5263
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
5264
|
+
assertParamExists('putProvisioningPolicyV2', 'sourceId', sourceId)
|
|
4959
5265
|
// verify required parameter 'id' is not null or undefined
|
|
4960
|
-
assertParamExists('
|
|
4961
|
-
// verify required parameter '
|
|
5266
|
+
assertParamExists('putProvisioningPolicyV2', 'id', id)
|
|
5267
|
+
// verify required parameter 'provisioningpolicydtov2' is not null or undefined
|
|
5268
|
+
assertParamExists('putProvisioningPolicyV2', 'provisioningpolicydtov2', provisioningpolicydtov2)
|
|
5269
|
+
if (xSailPointExperimental === undefined) {
|
|
5270
|
+
xSailPointExperimental = 'true';
|
|
5271
|
+
}
|
|
5272
|
+
|
|
5273
|
+
const localVarPath = `/sources/v2/{sourceId}/provisioning-policies/{id}`
|
|
5274
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)))
|
|
5275
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
5276
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5277
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5278
|
+
let baseOptions;
|
|
5279
|
+
if (configuration) {
|
|
5280
|
+
baseOptions = configuration.baseOptions;
|
|
5281
|
+
}
|
|
5282
|
+
|
|
5283
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
|
|
5284
|
+
const localVarHeaderParameter = {} as any;
|
|
5285
|
+
const localVarQueryParameter = {} as any;
|
|
5286
|
+
|
|
5287
|
+
|
|
5288
|
+
|
|
5289
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5290
|
+
|
|
5291
|
+
if (xSailPointExperimental != null) {
|
|
5292
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
5293
|
+
}
|
|
5294
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5295
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5296
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
5297
|
+
localVarRequestOptions.data = serializeDataIfNeeded(provisioningpolicydtov2, localVarRequestOptions, configuration)
|
|
5298
|
+
|
|
5299
|
+
return {
|
|
5300
|
+
url: toPathString(localVarUrlObj),
|
|
5301
|
+
axiosOptions: localVarRequestOptions,
|
|
5302
|
+
};
|
|
5303
|
+
},
|
|
5304
|
+
/**
|
|
5305
|
+
* Replaces the attribute synchronization configuration for the source specified by the given ID with the configuration provided in the request body. Only the \"enabled\" field of the values in the \"attributes\" array is mutable. Attempting to change other attributes or add new values to the \"attributes\" array will result in an error.
|
|
5306
|
+
* @summary Update attribute sync config
|
|
5307
|
+
* @param {string} id The source id
|
|
5308
|
+
* @param {Attrsyncsourceconfig} attrsyncsourceconfig
|
|
5309
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
5310
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
5311
|
+
* @throws {RequiredError}
|
|
5312
|
+
*/
|
|
5313
|
+
putSourceAttrSyncConfigV1: async (id: string, attrsyncsourceconfig: Attrsyncsourceconfig, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5314
|
+
// verify required parameter 'id' is not null or undefined
|
|
5315
|
+
assertParamExists('putSourceAttrSyncConfigV1', 'id', id)
|
|
5316
|
+
// verify required parameter 'attrsyncsourceconfig' is not null or undefined
|
|
4962
5317
|
assertParamExists('putSourceAttrSyncConfigV1', 'attrsyncsourceconfig', attrsyncsourceconfig)
|
|
4963
5318
|
if (xSailPointExperimental === undefined) {
|
|
4964
5319
|
xSailPointExperimental = 'true';
|
|
@@ -5432,6 +5787,58 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5432
5787
|
axiosOptions: localVarRequestOptions,
|
|
5433
5788
|
};
|
|
5434
5789
|
},
|
|
5790
|
+
/**
|
|
5791
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
5792
|
+
* @summary Partial update of provisioning policy
|
|
5793
|
+
* @param {string} sourceId The Source id.
|
|
5794
|
+
* @param {string} id The provisioning policy ID.
|
|
5795
|
+
* @param {Array<Jsonpatchoperation>} jsonpatchoperation The JSONPatch payload used to update the schema.
|
|
5796
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
5797
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
5798
|
+
* @throws {RequiredError}
|
|
5799
|
+
*/
|
|
5800
|
+
updateProvisioningPolicyV2: async (sourceId: string, id: string, jsonpatchoperation: Array<Jsonpatchoperation>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
5801
|
+
// verify required parameter 'sourceId' is not null or undefined
|
|
5802
|
+
assertParamExists('updateProvisioningPolicyV2', 'sourceId', sourceId)
|
|
5803
|
+
// verify required parameter 'id' is not null or undefined
|
|
5804
|
+
assertParamExists('updateProvisioningPolicyV2', 'id', id)
|
|
5805
|
+
// verify required parameter 'jsonpatchoperation' is not null or undefined
|
|
5806
|
+
assertParamExists('updateProvisioningPolicyV2', 'jsonpatchoperation', jsonpatchoperation)
|
|
5807
|
+
if (xSailPointExperimental === undefined) {
|
|
5808
|
+
xSailPointExperimental = 'true';
|
|
5809
|
+
}
|
|
5810
|
+
|
|
5811
|
+
const localVarPath = `/sources/v2/{sourceId}/provisioning-policies/{id}`
|
|
5812
|
+
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)))
|
|
5813
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
5814
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5815
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5816
|
+
let baseOptions;
|
|
5817
|
+
if (configuration) {
|
|
5818
|
+
baseOptions = configuration.baseOptions;
|
|
5819
|
+
}
|
|
5820
|
+
|
|
5821
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
|
|
5822
|
+
const localVarHeaderParameter = {} as any;
|
|
5823
|
+
const localVarQueryParameter = {} as any;
|
|
5824
|
+
|
|
5825
|
+
|
|
5826
|
+
|
|
5827
|
+
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
5828
|
+
|
|
5829
|
+
if (xSailPointExperimental != null) {
|
|
5830
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
5831
|
+
}
|
|
5832
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5833
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5834
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
5835
|
+
localVarRequestOptions.data = serializeDataIfNeeded(jsonpatchoperation, localVarRequestOptions, configuration)
|
|
5836
|
+
|
|
5837
|
+
return {
|
|
5838
|
+
url: toPathString(localVarUrlObj),
|
|
5839
|
+
axiosOptions: localVarRequestOptions,
|
|
5840
|
+
};
|
|
5841
|
+
},
|
|
5435
5842
|
/**
|
|
5436
5843
|
* 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.
|
|
5437
5844
|
* @summary Update source entitlement request configuration
|
|
@@ -5632,6 +6039,22 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
5632
6039
|
const localVarOperationServerBasePath = operationServerMap['SourcesApi.createProvisioningPolicyV1']?.[localVarOperationServerIndex]?.url;
|
|
5633
6040
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5634
6041
|
},
|
|
6042
|
+
/**
|
|
6043
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. The V2 API allows you to use a unique identifier (id) for each provisioning policy instead of usageType. This enables read, update, and delete operations on policies using their id. Note: The subtypeId field is required if usageType is CREATE_MACHINE_ACCOUNT. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
6044
|
+
* @summary Create provisioning policy
|
|
6045
|
+
* @param {string} sourceId The Source id
|
|
6046
|
+
* @param {Provisioningpolicydtov2} provisioningpolicydtov2
|
|
6047
|
+
* @param {boolean} [useDefaultFields] If passed as true, then it uses default fields from the connector template.
|
|
6048
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
6049
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
6050
|
+
* @throws {RequiredError}
|
|
6051
|
+
*/
|
|
6052
|
+
async createProvisioningPolicyV2(sourceId: string, provisioningpolicydtov2: Provisioningpolicydtov2, useDefaultFields?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Provisioningpolicydtov2>> {
|
|
6053
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createProvisioningPolicyV2(sourceId, provisioningpolicydtov2, useDefaultFields, xSailPointExperimental, axiosOptions);
|
|
6054
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6055
|
+
const localVarOperationServerBasePath = operationServerMap['SourcesApi.createProvisioningPolicyV2']?.[localVarOperationServerIndex]?.url;
|
|
6056
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6057
|
+
},
|
|
5635
6058
|
/**
|
|
5636
6059
|
* Use this API to create a new schedule for a type on the specified source in Identity Security Cloud (ISC).
|
|
5637
6060
|
* @summary Create schedule on source
|
|
@@ -5714,6 +6137,21 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
5714
6137
|
const localVarOperationServerBasePath = operationServerMap['SourcesApi.deleteProvisioningPolicyV1']?.[localVarOperationServerIndex]?.url;
|
|
5715
6138
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5716
6139
|
},
|
|
6140
|
+
/**
|
|
6141
|
+
* Deletes the provisioning policy with the specified ID on an application.
|
|
6142
|
+
* @summary Delete provisioning policy by ID
|
|
6143
|
+
* @param {string} sourceId The Source ID.
|
|
6144
|
+
* @param {string} id The provisioning policy ID.
|
|
6145
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
6146
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
6147
|
+
* @throws {RequiredError}
|
|
6148
|
+
*/
|
|
6149
|
+
async deleteProvisioningPolicyV2(sourceId: string, id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
6150
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteProvisioningPolicyV2(sourceId, id, xSailPointExperimental, axiosOptions);
|
|
6151
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6152
|
+
const localVarOperationServerBasePath = operationServerMap['SourcesApi.deleteProvisioningPolicyV2']?.[localVarOperationServerIndex]?.url;
|
|
6153
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6154
|
+
},
|
|
5717
6155
|
/**
|
|
5718
6156
|
*
|
|
5719
6157
|
* @summary Delete source schedule by type.
|
|
@@ -5848,6 +6286,21 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
5848
6286
|
const localVarOperationServerBasePath = operationServerMap['SourcesApi.getProvisioningPolicyV1']?.[localVarOperationServerIndex]?.url;
|
|
5849
6287
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
5850
6288
|
},
|
|
6289
|
+
/**
|
|
6290
|
+
* This end-point retrieves the ProvisioningPolicy with the specified ID on the specified Source in Identity Security Cloud.
|
|
6291
|
+
* @summary Get provisioning policy by ID
|
|
6292
|
+
* @param {string} sourceId The Source ID.
|
|
6293
|
+
* @param {string} id The provisioning policy ID.
|
|
6294
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
6295
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
6296
|
+
* @throws {RequiredError}
|
|
6297
|
+
*/
|
|
6298
|
+
async getProvisioningPolicyV2(sourceId: string, id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Provisioningpolicydtov2>> {
|
|
6299
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProvisioningPolicyV2(sourceId, id, xSailPointExperimental, axiosOptions);
|
|
6300
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6301
|
+
const localVarOperationServerBasePath = operationServerMap['SourcesApi.getProvisioningPolicyV2']?.[localVarOperationServerIndex]?.url;
|
|
6302
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6303
|
+
},
|
|
5851
6304
|
/**
|
|
5852
6305
|
* This API returns the existing attribute synchronization configuration for a source specified by the given ID. The response contains all attributes, regardless of whether they enabled or not.
|
|
5853
6306
|
* @summary Attribute sync config
|
|
@@ -6102,6 +6555,23 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
6102
6555
|
const localVarOperationServerBasePath = operationServerMap['SourcesApi.listProvisioningPoliciesV1']?.[localVarOperationServerIndex]?.url;
|
|
6103
6556
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6104
6557
|
},
|
|
6558
|
+
/**
|
|
6559
|
+
* This end-point lists all the ProvisioningPolicies in IdentityNow.
|
|
6560
|
+
* @summary Lists Provisioning Policies
|
|
6561
|
+
* @param {string} sourceId The Source id
|
|
6562
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **subtypeId**: *eq* **usageType**: *eq*
|
|
6563
|
+
* @param {number} [offset] Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
6564
|
+
* @param {number} [limit] Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
6565
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
6566
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
6567
|
+
* @throws {RequiredError}
|
|
6568
|
+
*/
|
|
6569
|
+
async listProvisioningPoliciesV2(sourceId: string, filters?: string, offset?: number, limit?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Provisioningpolicydtov2>>> {
|
|
6570
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listProvisioningPoliciesV2(sourceId, filters, offset, limit, xSailPointExperimental, axiosOptions);
|
|
6571
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6572
|
+
const localVarOperationServerBasePath = operationServerMap['SourcesApi.listProvisioningPoliciesV2']?.[localVarOperationServerIndex]?.url;
|
|
6573
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6574
|
+
},
|
|
6105
6575
|
/**
|
|
6106
6576
|
* This end-point lists all the sources in IdentityNow.
|
|
6107
6577
|
* @summary Lists all sources in identitynow.
|
|
@@ -6177,6 +6647,22 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
6177
6647
|
const localVarOperationServerBasePath = operationServerMap['SourcesApi.putProvisioningPolicyV1']?.[localVarOperationServerIndex]?.url;
|
|
6178
6648
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6179
6649
|
},
|
|
6650
|
+
/**
|
|
6651
|
+
* This end-point updates the provisioning policy with the specified ID on the specified source in Identity Security Cloud. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
6652
|
+
* @summary Update provisioning policy by ID
|
|
6653
|
+
* @param {string} sourceId The Source ID.
|
|
6654
|
+
* @param {string} id The provisioning policy ID.
|
|
6655
|
+
* @param {Provisioningpolicydtov2} provisioningpolicydtov2
|
|
6656
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
6657
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
6658
|
+
* @throws {RequiredError}
|
|
6659
|
+
*/
|
|
6660
|
+
async putProvisioningPolicyV2(sourceId: string, id: string, provisioningpolicydtov2: Provisioningpolicydtov2, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Provisioningpolicydtov2>> {
|
|
6661
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putProvisioningPolicyV2(sourceId, id, provisioningpolicydtov2, xSailPointExperimental, axiosOptions);
|
|
6662
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6663
|
+
const localVarOperationServerBasePath = operationServerMap['SourcesApi.putProvisioningPolicyV2']?.[localVarOperationServerIndex]?.url;
|
|
6664
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6665
|
+
},
|
|
6180
6666
|
/**
|
|
6181
6667
|
* Replaces the attribute synchronization configuration for the source specified by the given ID with the configuration provided in the request body. Only the \"enabled\" field of the values in the \"attributes\" array is mutable. Attempting to change other attributes or add new values to the \"attributes\" array will result in an error.
|
|
6182
6668
|
* @summary Update attribute sync config
|
|
@@ -6346,6 +6832,22 @@ export const SourcesApiFp = function(configuration?: Configuration) {
|
|
|
6346
6832
|
const localVarOperationServerBasePath = operationServerMap['SourcesApi.updateProvisioningPolicyV1']?.[localVarOperationServerIndex]?.url;
|
|
6347
6833
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6348
6834
|
},
|
|
6835
|
+
/**
|
|
6836
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
6837
|
+
* @summary Partial update of provisioning policy
|
|
6838
|
+
* @param {string} sourceId The Source id.
|
|
6839
|
+
* @param {string} id The provisioning policy ID.
|
|
6840
|
+
* @param {Array<Jsonpatchoperation>} jsonpatchoperation The JSONPatch payload used to update the schema.
|
|
6841
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
6842
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
6843
|
+
* @throws {RequiredError}
|
|
6844
|
+
*/
|
|
6845
|
+
async updateProvisioningPolicyV2(sourceId: string, id: string, jsonpatchoperation: Array<Jsonpatchoperation>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Provisioningpolicydtov2>> {
|
|
6846
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateProvisioningPolicyV2(sourceId, id, jsonpatchoperation, xSailPointExperimental, axiosOptions);
|
|
6847
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6848
|
+
const localVarOperationServerBasePath = operationServerMap['SourcesApi.updateProvisioningPolicyV2']?.[localVarOperationServerIndex]?.url;
|
|
6849
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6850
|
+
},
|
|
6349
6851
|
/**
|
|
6350
6852
|
* 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.
|
|
6351
6853
|
* @summary Update source entitlement request configuration
|
|
@@ -6425,6 +6927,16 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
6425
6927
|
createProvisioningPolicyV1(requestParameters: SourcesApiCreateProvisioningPolicyV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Provisioningpolicydto> {
|
|
6426
6928
|
return localVarFp.createProvisioningPolicyV1(requestParameters.sourceId, requestParameters.provisioningpolicydto, axiosOptions).then((request) => request(axios, basePath));
|
|
6427
6929
|
},
|
|
6930
|
+
/**
|
|
6931
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. The V2 API allows you to use a unique identifier (id) for each provisioning policy instead of usageType. This enables read, update, and delete operations on policies using their id. Note: The subtypeId field is required if usageType is CREATE_MACHINE_ACCOUNT. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
6932
|
+
* @summary Create provisioning policy
|
|
6933
|
+
* @param {SourcesApiCreateProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
6934
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
6935
|
+
* @throws {RequiredError}
|
|
6936
|
+
*/
|
|
6937
|
+
createProvisioningPolicyV2(requestParameters: SourcesApiCreateProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Provisioningpolicydtov2> {
|
|
6938
|
+
return localVarFp.createProvisioningPolicyV2(requestParameters.sourceId, requestParameters.provisioningpolicydtov2, requestParameters.useDefaultFields, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
6939
|
+
},
|
|
6428
6940
|
/**
|
|
6429
6941
|
* Use this API to create a new schedule for a type on the specified source in Identity Security Cloud (ISC).
|
|
6430
6942
|
* @summary Create schedule on source
|
|
@@ -6485,6 +6997,16 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
6485
6997
|
deleteProvisioningPolicyV1(requestParameters: SourcesApiDeleteProvisioningPolicyV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
6486
6998
|
return localVarFp.deleteProvisioningPolicyV1(requestParameters.sourceId, requestParameters.usageType, axiosOptions).then((request) => request(axios, basePath));
|
|
6487
6999
|
},
|
|
7000
|
+
/**
|
|
7001
|
+
* Deletes the provisioning policy with the specified ID on an application.
|
|
7002
|
+
* @summary Delete provisioning policy by ID
|
|
7003
|
+
* @param {SourcesApiDeleteProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
7004
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
7005
|
+
* @throws {RequiredError}
|
|
7006
|
+
*/
|
|
7007
|
+
deleteProvisioningPolicyV2(requestParameters: SourcesApiDeleteProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
7008
|
+
return localVarFp.deleteProvisioningPolicyV2(requestParameters.sourceId, requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
7009
|
+
},
|
|
6488
7010
|
/**
|
|
6489
7011
|
*
|
|
6490
7012
|
* @summary Delete source schedule by type.
|
|
@@ -6585,6 +7107,16 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
6585
7107
|
getProvisioningPolicyV1(requestParameters: SourcesApiGetProvisioningPolicyV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Provisioningpolicydto> {
|
|
6586
7108
|
return localVarFp.getProvisioningPolicyV1(requestParameters.sourceId, requestParameters.usageType, axiosOptions).then((request) => request(axios, basePath));
|
|
6587
7109
|
},
|
|
7110
|
+
/**
|
|
7111
|
+
* This end-point retrieves the ProvisioningPolicy with the specified ID on the specified Source in Identity Security Cloud.
|
|
7112
|
+
* @summary Get provisioning policy by ID
|
|
7113
|
+
* @param {SourcesApiGetProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
7114
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
7115
|
+
* @throws {RequiredError}
|
|
7116
|
+
*/
|
|
7117
|
+
getProvisioningPolicyV2(requestParameters: SourcesApiGetProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Provisioningpolicydtov2> {
|
|
7118
|
+
return localVarFp.getProvisioningPolicyV2(requestParameters.sourceId, requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
7119
|
+
},
|
|
6588
7120
|
/**
|
|
6589
7121
|
* This API returns the existing attribute synchronization configuration for a source specified by the given ID. The response contains all attributes, regardless of whether they enabled or not.
|
|
6590
7122
|
* @summary Attribute sync config
|
|
@@ -6765,6 +7297,16 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
6765
7297
|
listProvisioningPoliciesV1(requestParameters: SourcesApiListProvisioningPoliciesV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Provisioningpolicydto>> {
|
|
6766
7298
|
return localVarFp.listProvisioningPoliciesV1(requestParameters.sourceId, requestParameters.offset, requestParameters.limit, axiosOptions).then((request) => request(axios, basePath));
|
|
6767
7299
|
},
|
|
7300
|
+
/**
|
|
7301
|
+
* This end-point lists all the ProvisioningPolicies in IdentityNow.
|
|
7302
|
+
* @summary Lists Provisioning Policies
|
|
7303
|
+
* @param {SourcesApiListProvisioningPoliciesV2Request} requestParameters Request parameters.
|
|
7304
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
7305
|
+
* @throws {RequiredError}
|
|
7306
|
+
*/
|
|
7307
|
+
listProvisioningPoliciesV2(requestParameters: SourcesApiListProvisioningPoliciesV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Provisioningpolicydtov2>> {
|
|
7308
|
+
return localVarFp.listProvisioningPoliciesV2(requestParameters.sourceId, requestParameters.filters, requestParameters.offset, requestParameters.limit, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
7309
|
+
},
|
|
6768
7310
|
/**
|
|
6769
7311
|
* This end-point lists all the sources in IdentityNow.
|
|
6770
7312
|
* @summary Lists all sources in identitynow.
|
|
@@ -6815,6 +7357,16 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
6815
7357
|
putProvisioningPolicyV1(requestParameters: SourcesApiPutProvisioningPolicyV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Provisioningpolicydto> {
|
|
6816
7358
|
return localVarFp.putProvisioningPolicyV1(requestParameters.sourceId, requestParameters.usageType, requestParameters.provisioningpolicydto, axiosOptions).then((request) => request(axios, basePath));
|
|
6817
7359
|
},
|
|
7360
|
+
/**
|
|
7361
|
+
* This end-point updates the provisioning policy with the specified ID on the specified source in Identity Security Cloud. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
7362
|
+
* @summary Update provisioning policy by ID
|
|
7363
|
+
* @param {SourcesApiPutProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
7364
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
7365
|
+
* @throws {RequiredError}
|
|
7366
|
+
*/
|
|
7367
|
+
putProvisioningPolicyV2(requestParameters: SourcesApiPutProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Provisioningpolicydtov2> {
|
|
7368
|
+
return localVarFp.putProvisioningPolicyV2(requestParameters.sourceId, requestParameters.id, requestParameters.provisioningpolicydtov2, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
7369
|
+
},
|
|
6818
7370
|
/**
|
|
6819
7371
|
* Replaces the attribute synchronization configuration for the source specified by the given ID with the configuration provided in the request body. Only the \"enabled\" field of the values in the \"attributes\" array is mutable. Attempting to change other attributes or add new values to the \"attributes\" array will result in an error.
|
|
6820
7372
|
* @summary Update attribute sync config
|
|
@@ -6935,6 +7487,16 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
|
|
|
6935
7487
|
updateProvisioningPolicyV1(requestParameters: SourcesApiUpdateProvisioningPolicyV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Provisioningpolicydto> {
|
|
6936
7488
|
return localVarFp.updateProvisioningPolicyV1(requestParameters.sourceId, requestParameters.usageType, requestParameters.jsonpatchoperation, axiosOptions).then((request) => request(axios, basePath));
|
|
6937
7489
|
},
|
|
7490
|
+
/**
|
|
7491
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
7492
|
+
* @summary Partial update of provisioning policy
|
|
7493
|
+
* @param {SourcesApiUpdateProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
7494
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
7495
|
+
* @throws {RequiredError}
|
|
7496
|
+
*/
|
|
7497
|
+
updateProvisioningPolicyV2(requestParameters: SourcesApiUpdateProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Provisioningpolicydtov2> {
|
|
7498
|
+
return localVarFp.updateProvisioningPolicyV2(requestParameters.sourceId, requestParameters.id, requestParameters.jsonpatchoperation, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
7499
|
+
},
|
|
6938
7500
|
/**
|
|
6939
7501
|
* 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.
|
|
6940
7502
|
* @summary Update source entitlement request configuration
|
|
@@ -6999,6 +7561,41 @@ export interface SourcesApiCreateProvisioningPolicyV1Request {
|
|
|
6999
7561
|
readonly provisioningpolicydto: Provisioningpolicydto
|
|
7000
7562
|
}
|
|
7001
7563
|
|
|
7564
|
+
/**
|
|
7565
|
+
* Request parameters for createProvisioningPolicyV2 operation in SourcesApi.
|
|
7566
|
+
* @export
|
|
7567
|
+
* @interface SourcesApiCreateProvisioningPolicyV2Request
|
|
7568
|
+
*/
|
|
7569
|
+
export interface SourcesApiCreateProvisioningPolicyV2Request {
|
|
7570
|
+
/**
|
|
7571
|
+
* The Source id
|
|
7572
|
+
* @type {string}
|
|
7573
|
+
* @memberof SourcesApiCreateProvisioningPolicyV2
|
|
7574
|
+
*/
|
|
7575
|
+
readonly sourceId: string
|
|
7576
|
+
|
|
7577
|
+
/**
|
|
7578
|
+
*
|
|
7579
|
+
* @type {Provisioningpolicydtov2}
|
|
7580
|
+
* @memberof SourcesApiCreateProvisioningPolicyV2
|
|
7581
|
+
*/
|
|
7582
|
+
readonly provisioningpolicydtov2: Provisioningpolicydtov2
|
|
7583
|
+
|
|
7584
|
+
/**
|
|
7585
|
+
* If passed as true, then it uses default fields from the connector template.
|
|
7586
|
+
* @type {boolean}
|
|
7587
|
+
* @memberof SourcesApiCreateProvisioningPolicyV2
|
|
7588
|
+
*/
|
|
7589
|
+
readonly useDefaultFields?: boolean
|
|
7590
|
+
|
|
7591
|
+
/**
|
|
7592
|
+
* Use this header to enable this experimental API.
|
|
7593
|
+
* @type {string}
|
|
7594
|
+
* @memberof SourcesApiCreateProvisioningPolicyV2
|
|
7595
|
+
*/
|
|
7596
|
+
readonly xSailPointExperimental?: string
|
|
7597
|
+
}
|
|
7598
|
+
|
|
7002
7599
|
/**
|
|
7003
7600
|
* Request parameters for createSourceScheduleV1 operation in SourcesApi.
|
|
7004
7601
|
* @export
|
|
@@ -7111,6 +7708,34 @@ export interface SourcesApiDeleteProvisioningPolicyV1Request {
|
|
|
7111
7708
|
readonly usageType: Usagetype
|
|
7112
7709
|
}
|
|
7113
7710
|
|
|
7711
|
+
/**
|
|
7712
|
+
* Request parameters for deleteProvisioningPolicyV2 operation in SourcesApi.
|
|
7713
|
+
* @export
|
|
7714
|
+
* @interface SourcesApiDeleteProvisioningPolicyV2Request
|
|
7715
|
+
*/
|
|
7716
|
+
export interface SourcesApiDeleteProvisioningPolicyV2Request {
|
|
7717
|
+
/**
|
|
7718
|
+
* The Source ID.
|
|
7719
|
+
* @type {string}
|
|
7720
|
+
* @memberof SourcesApiDeleteProvisioningPolicyV2
|
|
7721
|
+
*/
|
|
7722
|
+
readonly sourceId: string
|
|
7723
|
+
|
|
7724
|
+
/**
|
|
7725
|
+
* The provisioning policy ID.
|
|
7726
|
+
* @type {string}
|
|
7727
|
+
* @memberof SourcesApiDeleteProvisioningPolicyV2
|
|
7728
|
+
*/
|
|
7729
|
+
readonly id: string
|
|
7730
|
+
|
|
7731
|
+
/**
|
|
7732
|
+
* Use this header to enable this experimental API.
|
|
7733
|
+
* @type {string}
|
|
7734
|
+
* @memberof SourcesApiDeleteProvisioningPolicyV2
|
|
7735
|
+
*/
|
|
7736
|
+
readonly xSailPointExperimental?: string
|
|
7737
|
+
}
|
|
7738
|
+
|
|
7114
7739
|
/**
|
|
7115
7740
|
* Request parameters for deleteSourceScheduleV1 operation in SourcesApi.
|
|
7116
7741
|
* @export
|
|
@@ -7279,6 +7904,34 @@ export interface SourcesApiGetProvisioningPolicyV1Request {
|
|
|
7279
7904
|
readonly usageType: Usagetype
|
|
7280
7905
|
}
|
|
7281
7906
|
|
|
7907
|
+
/**
|
|
7908
|
+
* Request parameters for getProvisioningPolicyV2 operation in SourcesApi.
|
|
7909
|
+
* @export
|
|
7910
|
+
* @interface SourcesApiGetProvisioningPolicyV2Request
|
|
7911
|
+
*/
|
|
7912
|
+
export interface SourcesApiGetProvisioningPolicyV2Request {
|
|
7913
|
+
/**
|
|
7914
|
+
* The Source ID.
|
|
7915
|
+
* @type {string}
|
|
7916
|
+
* @memberof SourcesApiGetProvisioningPolicyV2
|
|
7917
|
+
*/
|
|
7918
|
+
readonly sourceId: string
|
|
7919
|
+
|
|
7920
|
+
/**
|
|
7921
|
+
* The provisioning policy ID.
|
|
7922
|
+
* @type {string}
|
|
7923
|
+
* @memberof SourcesApiGetProvisioningPolicyV2
|
|
7924
|
+
*/
|
|
7925
|
+
readonly id: string
|
|
7926
|
+
|
|
7927
|
+
/**
|
|
7928
|
+
* Use this header to enable this experimental API.
|
|
7929
|
+
* @type {string}
|
|
7930
|
+
* @memberof SourcesApiGetProvisioningPolicyV2
|
|
7931
|
+
*/
|
|
7932
|
+
readonly xSailPointExperimental?: string
|
|
7933
|
+
}
|
|
7934
|
+
|
|
7282
7935
|
/**
|
|
7283
7936
|
* Request parameters for getSourceAttrSyncConfigV1 operation in SourcesApi.
|
|
7284
7937
|
* @export
|
|
@@ -7671,6 +8324,48 @@ export interface SourcesApiListProvisioningPoliciesV1Request {
|
|
|
7671
8324
|
readonly limit?: number
|
|
7672
8325
|
}
|
|
7673
8326
|
|
|
8327
|
+
/**
|
|
8328
|
+
* Request parameters for listProvisioningPoliciesV2 operation in SourcesApi.
|
|
8329
|
+
* @export
|
|
8330
|
+
* @interface SourcesApiListProvisioningPoliciesV2Request
|
|
8331
|
+
*/
|
|
8332
|
+
export interface SourcesApiListProvisioningPoliciesV2Request {
|
|
8333
|
+
/**
|
|
8334
|
+
* The Source id
|
|
8335
|
+
* @type {string}
|
|
8336
|
+
* @memberof SourcesApiListProvisioningPoliciesV2
|
|
8337
|
+
*/
|
|
8338
|
+
readonly sourceId: string
|
|
8339
|
+
|
|
8340
|
+
/**
|
|
8341
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **subtypeId**: *eq* **usageType**: *eq*
|
|
8342
|
+
* @type {string}
|
|
8343
|
+
* @memberof SourcesApiListProvisioningPoliciesV2
|
|
8344
|
+
*/
|
|
8345
|
+
readonly filters?: string
|
|
8346
|
+
|
|
8347
|
+
/**
|
|
8348
|
+
* Offset Integer specifying the offset of the first result from the beginning of the collection. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). The offset value is record-based, not page-based, and the index starts at 0.
|
|
8349
|
+
* @type {number}
|
|
8350
|
+
* @memberof SourcesApiListProvisioningPoliciesV2
|
|
8351
|
+
*/
|
|
8352
|
+
readonly offset?: number
|
|
8353
|
+
|
|
8354
|
+
/**
|
|
8355
|
+
* Limit Integer specifying the maximum number of records to return in a single API call. The standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-results). If it is not specified, a default limit is used.
|
|
8356
|
+
* @type {number}
|
|
8357
|
+
* @memberof SourcesApiListProvisioningPoliciesV2
|
|
8358
|
+
*/
|
|
8359
|
+
readonly limit?: number
|
|
8360
|
+
|
|
8361
|
+
/**
|
|
8362
|
+
* Use this header to enable this experimental API.
|
|
8363
|
+
* @type {string}
|
|
8364
|
+
* @memberof SourcesApiListProvisioningPoliciesV2
|
|
8365
|
+
*/
|
|
8366
|
+
readonly xSailPointExperimental?: string
|
|
8367
|
+
}
|
|
8368
|
+
|
|
7674
8369
|
/**
|
|
7675
8370
|
* Request parameters for listSourcesV1 operation in SourcesApi.
|
|
7676
8371
|
* @export
|
|
@@ -7811,6 +8506,41 @@ export interface SourcesApiPutProvisioningPolicyV1Request {
|
|
|
7811
8506
|
readonly provisioningpolicydto: Provisioningpolicydto
|
|
7812
8507
|
}
|
|
7813
8508
|
|
|
8509
|
+
/**
|
|
8510
|
+
* Request parameters for putProvisioningPolicyV2 operation in SourcesApi.
|
|
8511
|
+
* @export
|
|
8512
|
+
* @interface SourcesApiPutProvisioningPolicyV2Request
|
|
8513
|
+
*/
|
|
8514
|
+
export interface SourcesApiPutProvisioningPolicyV2Request {
|
|
8515
|
+
/**
|
|
8516
|
+
* The Source ID.
|
|
8517
|
+
* @type {string}
|
|
8518
|
+
* @memberof SourcesApiPutProvisioningPolicyV2
|
|
8519
|
+
*/
|
|
8520
|
+
readonly sourceId: string
|
|
8521
|
+
|
|
8522
|
+
/**
|
|
8523
|
+
* The provisioning policy ID.
|
|
8524
|
+
* @type {string}
|
|
8525
|
+
* @memberof SourcesApiPutProvisioningPolicyV2
|
|
8526
|
+
*/
|
|
8527
|
+
readonly id: string
|
|
8528
|
+
|
|
8529
|
+
/**
|
|
8530
|
+
*
|
|
8531
|
+
* @type {Provisioningpolicydtov2}
|
|
8532
|
+
* @memberof SourcesApiPutProvisioningPolicyV2
|
|
8533
|
+
*/
|
|
8534
|
+
readonly provisioningpolicydtov2: Provisioningpolicydtov2
|
|
8535
|
+
|
|
8536
|
+
/**
|
|
8537
|
+
* Use this header to enable this experimental API.
|
|
8538
|
+
* @type {string}
|
|
8539
|
+
* @memberof SourcesApiPutProvisioningPolicyV2
|
|
8540
|
+
*/
|
|
8541
|
+
readonly xSailPointExperimental?: string
|
|
8542
|
+
}
|
|
8543
|
+
|
|
7814
8544
|
/**
|
|
7815
8545
|
* Request parameters for putSourceAttrSyncConfigV1 operation in SourcesApi.
|
|
7816
8546
|
* @export
|
|
@@ -8070,6 +8800,41 @@ export interface SourcesApiUpdateProvisioningPolicyV1Request {
|
|
|
8070
8800
|
readonly jsonpatchoperation: Array<Jsonpatchoperation>
|
|
8071
8801
|
}
|
|
8072
8802
|
|
|
8803
|
+
/**
|
|
8804
|
+
* Request parameters for updateProvisioningPolicyV2 operation in SourcesApi.
|
|
8805
|
+
* @export
|
|
8806
|
+
* @interface SourcesApiUpdateProvisioningPolicyV2Request
|
|
8807
|
+
*/
|
|
8808
|
+
export interface SourcesApiUpdateProvisioningPolicyV2Request {
|
|
8809
|
+
/**
|
|
8810
|
+
* The Source id.
|
|
8811
|
+
* @type {string}
|
|
8812
|
+
* @memberof SourcesApiUpdateProvisioningPolicyV2
|
|
8813
|
+
*/
|
|
8814
|
+
readonly sourceId: string
|
|
8815
|
+
|
|
8816
|
+
/**
|
|
8817
|
+
* The provisioning policy ID.
|
|
8818
|
+
* @type {string}
|
|
8819
|
+
* @memberof SourcesApiUpdateProvisioningPolicyV2
|
|
8820
|
+
*/
|
|
8821
|
+
readonly id: string
|
|
8822
|
+
|
|
8823
|
+
/**
|
|
8824
|
+
* The JSONPatch payload used to update the schema.
|
|
8825
|
+
* @type {Array<Jsonpatchoperation>}
|
|
8826
|
+
* @memberof SourcesApiUpdateProvisioningPolicyV2
|
|
8827
|
+
*/
|
|
8828
|
+
readonly jsonpatchoperation: Array<Jsonpatchoperation>
|
|
8829
|
+
|
|
8830
|
+
/**
|
|
8831
|
+
* Use this header to enable this experimental API.
|
|
8832
|
+
* @type {string}
|
|
8833
|
+
* @memberof SourcesApiUpdateProvisioningPolicyV2
|
|
8834
|
+
*/
|
|
8835
|
+
readonly xSailPointExperimental?: string
|
|
8836
|
+
}
|
|
8837
|
+
|
|
8073
8838
|
/**
|
|
8074
8839
|
* Request parameters for updateSourceEntitlementRequestConfigV1 operation in SourcesApi.
|
|
8075
8840
|
* @export
|
|
@@ -8194,6 +8959,18 @@ export class SourcesApi extends BaseAPI {
|
|
|
8194
8959
|
return SourcesApiFp(this.configuration).createProvisioningPolicyV1(requestParameters.sourceId, requestParameters.provisioningpolicydto, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
8195
8960
|
}
|
|
8196
8961
|
|
|
8962
|
+
/**
|
|
8963
|
+
* This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. The V2 API allows you to use a unique identifier (id) for each provisioning policy instead of usageType. This enables read, update, and delete operations on policies using their id. Note: The subtypeId field is required if usageType is CREATE_MACHINE_ACCOUNT. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
8964
|
+
* @summary Create provisioning policy
|
|
8965
|
+
* @param {SourcesApiCreateProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
8966
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
8967
|
+
* @throws {RequiredError}
|
|
8968
|
+
* @memberof SourcesApi
|
|
8969
|
+
*/
|
|
8970
|
+
public createProvisioningPolicyV2(requestParameters: SourcesApiCreateProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig) {
|
|
8971
|
+
return SourcesApiFp(this.configuration).createProvisioningPolicyV2(requestParameters.sourceId, requestParameters.provisioningpolicydtov2, requestParameters.useDefaultFields, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
8972
|
+
}
|
|
8973
|
+
|
|
8197
8974
|
/**
|
|
8198
8975
|
* Use this API to create a new schedule for a type on the specified source in Identity Security Cloud (ISC).
|
|
8199
8976
|
* @summary Create schedule on source
|
|
@@ -8266,6 +9043,18 @@ export class SourcesApi extends BaseAPI {
|
|
|
8266
9043
|
return SourcesApiFp(this.configuration).deleteProvisioningPolicyV1(requestParameters.sourceId, requestParameters.usageType, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
8267
9044
|
}
|
|
8268
9045
|
|
|
9046
|
+
/**
|
|
9047
|
+
* Deletes the provisioning policy with the specified ID on an application.
|
|
9048
|
+
* @summary Delete provisioning policy by ID
|
|
9049
|
+
* @param {SourcesApiDeleteProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
9050
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
9051
|
+
* @throws {RequiredError}
|
|
9052
|
+
* @memberof SourcesApi
|
|
9053
|
+
*/
|
|
9054
|
+
public deleteProvisioningPolicyV2(requestParameters: SourcesApiDeleteProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig) {
|
|
9055
|
+
return SourcesApiFp(this.configuration).deleteProvisioningPolicyV2(requestParameters.sourceId, requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
9056
|
+
}
|
|
9057
|
+
|
|
8269
9058
|
/**
|
|
8270
9059
|
*
|
|
8271
9060
|
* @summary Delete source schedule by type.
|
|
@@ -8386,6 +9175,18 @@ export class SourcesApi extends BaseAPI {
|
|
|
8386
9175
|
return SourcesApiFp(this.configuration).getProvisioningPolicyV1(requestParameters.sourceId, requestParameters.usageType, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
8387
9176
|
}
|
|
8388
9177
|
|
|
9178
|
+
/**
|
|
9179
|
+
* This end-point retrieves the ProvisioningPolicy with the specified ID on the specified Source in Identity Security Cloud.
|
|
9180
|
+
* @summary Get provisioning policy by ID
|
|
9181
|
+
* @param {SourcesApiGetProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
9182
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
9183
|
+
* @throws {RequiredError}
|
|
9184
|
+
* @memberof SourcesApi
|
|
9185
|
+
*/
|
|
9186
|
+
public getProvisioningPolicyV2(requestParameters: SourcesApiGetProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig) {
|
|
9187
|
+
return SourcesApiFp(this.configuration).getProvisioningPolicyV2(requestParameters.sourceId, requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
9188
|
+
}
|
|
9189
|
+
|
|
8389
9190
|
/**
|
|
8390
9191
|
* This API returns the existing attribute synchronization configuration for a source specified by the given ID. The response contains all attributes, regardless of whether they enabled or not.
|
|
8391
9192
|
* @summary Attribute sync config
|
|
@@ -8602,6 +9403,18 @@ export class SourcesApi extends BaseAPI {
|
|
|
8602
9403
|
return SourcesApiFp(this.configuration).listProvisioningPoliciesV1(requestParameters.sourceId, requestParameters.offset, requestParameters.limit, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
8603
9404
|
}
|
|
8604
9405
|
|
|
9406
|
+
/**
|
|
9407
|
+
* This end-point lists all the ProvisioningPolicies in IdentityNow.
|
|
9408
|
+
* @summary Lists Provisioning Policies
|
|
9409
|
+
* @param {SourcesApiListProvisioningPoliciesV2Request} requestParameters Request parameters.
|
|
9410
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
9411
|
+
* @throws {RequiredError}
|
|
9412
|
+
* @memberof SourcesApi
|
|
9413
|
+
*/
|
|
9414
|
+
public listProvisioningPoliciesV2(requestParameters: SourcesApiListProvisioningPoliciesV2Request, axiosOptions?: RawAxiosRequestConfig) {
|
|
9415
|
+
return SourcesApiFp(this.configuration).listProvisioningPoliciesV2(requestParameters.sourceId, requestParameters.filters, requestParameters.offset, requestParameters.limit, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
9416
|
+
}
|
|
9417
|
+
|
|
8605
9418
|
/**
|
|
8606
9419
|
* This end-point lists all the sources in IdentityNow.
|
|
8607
9420
|
* @summary Lists all sources in identitynow.
|
|
@@ -8662,6 +9475,18 @@ export class SourcesApi extends BaseAPI {
|
|
|
8662
9475
|
return SourcesApiFp(this.configuration).putProvisioningPolicyV1(requestParameters.sourceId, requestParameters.usageType, requestParameters.provisioningpolicydto, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
8663
9476
|
}
|
|
8664
9477
|
|
|
9478
|
+
/**
|
|
9479
|
+
* This end-point updates the provisioning policy with the specified ID on the specified source in Identity Security Cloud. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
9480
|
+
* @summary Update provisioning policy by ID
|
|
9481
|
+
* @param {SourcesApiPutProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
9482
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
9483
|
+
* @throws {RequiredError}
|
|
9484
|
+
* @memberof SourcesApi
|
|
9485
|
+
*/
|
|
9486
|
+
public putProvisioningPolicyV2(requestParameters: SourcesApiPutProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig) {
|
|
9487
|
+
return SourcesApiFp(this.configuration).putProvisioningPolicyV2(requestParameters.sourceId, requestParameters.id, requestParameters.provisioningpolicydtov2, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
9488
|
+
}
|
|
9489
|
+
|
|
8665
9490
|
/**
|
|
8666
9491
|
* Replaces the attribute synchronization configuration for the source specified by the given ID with the configuration provided in the request body. Only the \"enabled\" field of the values in the \"attributes\" array is mutable. Attempting to change other attributes or add new values to the \"attributes\" array will result in an error.
|
|
8667
9492
|
* @summary Update attribute sync config
|
|
@@ -8806,6 +9631,18 @@ export class SourcesApi extends BaseAPI {
|
|
|
8806
9631
|
return SourcesApiFp(this.configuration).updateProvisioningPolicyV1(requestParameters.sourceId, requestParameters.usageType, requestParameters.jsonpatchoperation, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
8807
9632
|
}
|
|
8808
9633
|
|
|
9634
|
+
/**
|
|
9635
|
+
* This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
|
|
9636
|
+
* @summary Partial update of provisioning policy
|
|
9637
|
+
* @param {SourcesApiUpdateProvisioningPolicyV2Request} requestParameters Request parameters.
|
|
9638
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
9639
|
+
* @throws {RequiredError}
|
|
9640
|
+
* @memberof SourcesApi
|
|
9641
|
+
*/
|
|
9642
|
+
public updateProvisioningPolicyV2(requestParameters: SourcesApiUpdateProvisioningPolicyV2Request, axiosOptions?: RawAxiosRequestConfig) {
|
|
9643
|
+
return SourcesApiFp(this.configuration).updateProvisioningPolicyV2(requestParameters.sourceId, requestParameters.id, requestParameters.jsonpatchoperation, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
9644
|
+
}
|
|
9645
|
+
|
|
8809
9646
|
/**
|
|
8810
9647
|
* 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.
|
|
8811
9648
|
* @summary Update source entitlement request configuration
|