sailpoint-api-client 1.0.3 → 1.0.4
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/beta/README.md +2 -2
- package/beta/api.ts +408 -288
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/cc/README.md +2 -2
- package/cc/api.ts +1096 -9
- package/cc/common.ts +2 -2
- package/cc/package.json +1 -1
- package/dist/beta/api.d.ts +361 -278
- package/dist/beta/api.js +284 -184
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/cc/api.d.ts +1055 -11
- package/dist/cc/api.js +95 -0
- package/dist/cc/api.js.map +1 -1
- package/dist/cc/common.js +2 -2
- package/dist/v2/common.js +2 -2
- package/dist/v3/api.d.ts +90 -78
- package/dist/v3/api.js +43 -43
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/package.json +1 -1
- package/v2/README.md +2 -2
- package/v2/common.ts +2 -2
- package/v2/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +90 -78
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v3/api.js
CHANGED
|
@@ -11195,7 +11195,7 @@ var PasswordManagementApiAxiosParamCreator = function (configuration) {
|
|
|
11195
11195
|
});
|
|
11196
11196
|
},
|
|
11197
11197
|
/**
|
|
11198
|
-
* This API is used to set a password for an identity. An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password. \"API authority\" refers to a token that only has the \"client_credentials\" grant type.
|
|
11198
|
+
* This API is used to set a password for an identity. An identity can change their own password (as well as any of their accounts\' passwords) if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password or the password of any of the identity\'s accounts. \"API authority\" refers to a token that only has the \"client_credentials\" grant type. You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). To do so, follow these steps: 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. 3. Use [Set Identity\'s Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: ```java import javax.crypto.Cipher; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; import java util.Base64; String encrypt(String publicKey, String toEncrypt) throws Exception { byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\")); return Base64.getEncoder().encodeToString(encryptedBytes); } private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); String transformation = \"RSA/ECB/PKCS1Padding\"; Cipher cipher = Cipher.getInstance(transformation); cipher.init(1, key); return cipher.doFinal(toEncryptBytes); } ``` In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password.
|
|
11199
11199
|
* @summary Set Identity\'s Password
|
|
11200
11200
|
* @param {PasswordChangeRequest} passwordChangeRequest
|
|
11201
11201
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -11299,7 +11299,7 @@ var PasswordManagementApiFp = function (configuration) {
|
|
|
11299
11299
|
});
|
|
11300
11300
|
},
|
|
11301
11301
|
/**
|
|
11302
|
-
* This API is used to set a password for an identity. An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password. \"API authority\" refers to a token that only has the \"client_credentials\" grant type.
|
|
11302
|
+
* This API is used to set a password for an identity. An identity can change their own password (as well as any of their accounts\' passwords) if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password or the password of any of the identity\'s accounts. \"API authority\" refers to a token that only has the \"client_credentials\" grant type. You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). To do so, follow these steps: 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. 3. Use [Set Identity\'s Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: ```java import javax.crypto.Cipher; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; import java util.Base64; String encrypt(String publicKey, String toEncrypt) throws Exception { byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\")); return Base64.getEncoder().encodeToString(encryptedBytes); } private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); String transformation = \"RSA/ECB/PKCS1Padding\"; Cipher cipher = Cipher.getInstance(transformation); cipher.init(1, key); return cipher.doFinal(toEncryptBytes); } ``` In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password.
|
|
11303
11303
|
* @summary Set Identity\'s Password
|
|
11304
11304
|
* @param {PasswordChangeRequest} passwordChangeRequest
|
|
11305
11305
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -11349,7 +11349,7 @@ var PasswordManagementApiFactory = function (configuration, basePath, axios) {
|
|
|
11349
11349
|
return localVarFp.queryPasswordInfo(passwordInfoQueryDTO, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
11350
11350
|
},
|
|
11351
11351
|
/**
|
|
11352
|
-
* This API is used to set a password for an identity. An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password. \"API authority\" refers to a token that only has the \"client_credentials\" grant type.
|
|
11352
|
+
* This API is used to set a password for an identity. An identity can change their own password (as well as any of their accounts\' passwords) if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password or the password of any of the identity\'s accounts. \"API authority\" refers to a token that only has the \"client_credentials\" grant type. You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). To do so, follow these steps: 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. 3. Use [Set Identity\'s Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: ```java import javax.crypto.Cipher; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; import java util.Base64; String encrypt(String publicKey, String toEncrypt) throws Exception { byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\")); return Base64.getEncoder().encodeToString(encryptedBytes); } private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); String transformation = \"RSA/ECB/PKCS1Padding\"; Cipher cipher = Cipher.getInstance(transformation); cipher.init(1, key); return cipher.doFinal(toEncryptBytes); } ``` In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password.
|
|
11353
11353
|
* @summary Set Identity\'s Password
|
|
11354
11354
|
* @param {PasswordChangeRequest} passwordChangeRequest
|
|
11355
11355
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -11397,7 +11397,7 @@ var PasswordManagementApi = /** @class */ (function (_super) {
|
|
|
11397
11397
|
return (0, exports.PasswordManagementApiFp)(this.configuration).queryPasswordInfo(requestParameters.passwordInfoQueryDTO, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
11398
11398
|
};
|
|
11399
11399
|
/**
|
|
11400
|
-
* This API is used to set a password for an identity. An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password. \"API authority\" refers to a token that only has the \"client_credentials\" grant type.
|
|
11400
|
+
* This API is used to set a password for an identity. An identity can change their own password (as well as any of their accounts\' passwords) if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password or the password of any of the identity\'s accounts. \"API authority\" refers to a token that only has the \"client_credentials\" grant type. You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). To do so, follow these steps: 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. 3. Use [Set Identity\'s Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: ```java import javax.crypto.Cipher; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; import java util.Base64; String encrypt(String publicKey, String toEncrypt) throws Exception { byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\")); return Base64.getEncoder().encodeToString(encryptedBytes); } private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); String transformation = \"RSA/ECB/PKCS1Padding\"; Cipher cipher = Cipher.getInstance(transformation); cipher.init(1, key); return cipher.doFinal(toEncryptBytes); } ``` In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password.
|
|
11401
11401
|
* @summary Set Identity\'s Password
|
|
11402
11402
|
* @param {PasswordManagementApiSetPasswordRequest} requestParameters Request parameters.
|
|
11403
11403
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -15350,7 +15350,7 @@ var ServiceDeskIntegrationApiAxiosParamCreator = function (configuration) {
|
|
|
15350
15350
|
return {
|
|
15351
15351
|
/**
|
|
15352
15352
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15353
|
-
* @summary Create
|
|
15353
|
+
* @summary Create new Service Desk integration
|
|
15354
15354
|
* @param {ServiceDeskIntegrationDto} serviceDeskIntegrationDto The specifics of a new integration to create
|
|
15355
15355
|
* @param {*} [axiosOptions] Override http request option.
|
|
15356
15356
|
* @throws {RequiredError}
|
|
@@ -15404,7 +15404,7 @@ var ServiceDeskIntegrationApiAxiosParamCreator = function (configuration) {
|
|
|
15404
15404
|
},
|
|
15405
15405
|
/**
|
|
15406
15406
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15407
|
-
* @summary Delete a Service Desk integration
|
|
15407
|
+
* @summary Delete a Service Desk integration
|
|
15408
15408
|
* @param {string} id ID of Service Desk integration to delete
|
|
15409
15409
|
* @param {*} [axiosOptions] Override http request option.
|
|
15410
15410
|
* @throws {RequiredError}
|
|
@@ -15457,7 +15457,7 @@ var ServiceDeskIntegrationApiAxiosParamCreator = function (configuration) {
|
|
|
15457
15457
|
},
|
|
15458
15458
|
/**
|
|
15459
15459
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15460
|
-
* @summary Get a Service Desk integration
|
|
15460
|
+
* @summary Get a Service Desk integration
|
|
15461
15461
|
* @param {string} id ID of the Service Desk integration to get
|
|
15462
15462
|
* @param {*} [axiosOptions] Override http request option.
|
|
15463
15463
|
* @throws {RequiredError}
|
|
@@ -15681,7 +15681,7 @@ var ServiceDeskIntegrationApiAxiosParamCreator = function (configuration) {
|
|
|
15681
15681
|
},
|
|
15682
15682
|
/**
|
|
15683
15683
|
* Get the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15684
|
-
* @summary Get the time check configuration
|
|
15684
|
+
* @summary Get the time check configuration
|
|
15685
15685
|
* @param {*} [axiosOptions] Override http request option.
|
|
15686
15686
|
* @throws {RequiredError}
|
|
15687
15687
|
*/
|
|
@@ -15730,7 +15730,7 @@ var ServiceDeskIntegrationApiAxiosParamCreator = function (configuration) {
|
|
|
15730
15730
|
},
|
|
15731
15731
|
/**
|
|
15732
15732
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
15733
|
-
* @summary Service Desk Integration Update
|
|
15733
|
+
* @summary Service Desk Integration Update PATCH
|
|
15734
15734
|
* @param {string} id ID of the Service Desk integration to update
|
|
15735
15735
|
* @param {JsonPatch} jsonPatch A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. PATCH can only be applied to the following fields: * \"beforeProvisioningRule\" A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
|
|
15736
15736
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -15788,7 +15788,7 @@ var ServiceDeskIntegrationApiAxiosParamCreator = function (configuration) {
|
|
|
15788
15788
|
},
|
|
15789
15789
|
/**
|
|
15790
15790
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15791
|
-
* @summary Update a Service Desk integration
|
|
15791
|
+
* @summary Update a Service Desk integration
|
|
15792
15792
|
* @param {string} id ID of the Service Desk integration to update
|
|
15793
15793
|
* @param {ServiceDeskIntegrationDto} serviceDeskIntegrationDto The specifics of the integration to update
|
|
15794
15794
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -15846,7 +15846,7 @@ var ServiceDeskIntegrationApiAxiosParamCreator = function (configuration) {
|
|
|
15846
15846
|
},
|
|
15847
15847
|
/**
|
|
15848
15848
|
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15849
|
-
* @summary Update the time check configuration
|
|
15849
|
+
* @summary Update the time check configuration
|
|
15850
15850
|
* @param {QueuedCheckConfigDetails} queuedCheckConfigDetails the modified time check configuration
|
|
15851
15851
|
* @param {*} [axiosOptions] Override http request option.
|
|
15852
15852
|
* @throws {RequiredError}
|
|
@@ -15910,7 +15910,7 @@ var ServiceDeskIntegrationApiFp = function (configuration) {
|
|
|
15910
15910
|
return {
|
|
15911
15911
|
/**
|
|
15912
15912
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15913
|
-
* @summary Create
|
|
15913
|
+
* @summary Create new Service Desk integration
|
|
15914
15914
|
* @param {ServiceDeskIntegrationDto} serviceDeskIntegrationDto The specifics of a new integration to create
|
|
15915
15915
|
* @param {*} [axiosOptions] Override http request option.
|
|
15916
15916
|
* @throws {RequiredError}
|
|
@@ -15930,7 +15930,7 @@ var ServiceDeskIntegrationApiFp = function (configuration) {
|
|
|
15930
15930
|
},
|
|
15931
15931
|
/**
|
|
15932
15932
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15933
|
-
* @summary Delete a Service Desk integration
|
|
15933
|
+
* @summary Delete a Service Desk integration
|
|
15934
15934
|
* @param {string} id ID of Service Desk integration to delete
|
|
15935
15935
|
* @param {*} [axiosOptions] Override http request option.
|
|
15936
15936
|
* @throws {RequiredError}
|
|
@@ -15950,7 +15950,7 @@ var ServiceDeskIntegrationApiFp = function (configuration) {
|
|
|
15950
15950
|
},
|
|
15951
15951
|
/**
|
|
15952
15952
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
15953
|
-
* @summary Get a Service Desk integration
|
|
15953
|
+
* @summary Get a Service Desk integration
|
|
15954
15954
|
* @param {string} id ID of the Service Desk integration to get
|
|
15955
15955
|
* @param {*} [axiosOptions] Override http request option.
|
|
15956
15956
|
* @throws {RequiredError}
|
|
@@ -16033,7 +16033,7 @@ var ServiceDeskIntegrationApiFp = function (configuration) {
|
|
|
16033
16033
|
},
|
|
16034
16034
|
/**
|
|
16035
16035
|
* Get the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16036
|
-
* @summary Get the time check configuration
|
|
16036
|
+
* @summary Get the time check configuration
|
|
16037
16037
|
* @param {*} [axiosOptions] Override http request option.
|
|
16038
16038
|
* @throws {RequiredError}
|
|
16039
16039
|
*/
|
|
@@ -16052,7 +16052,7 @@ var ServiceDeskIntegrationApiFp = function (configuration) {
|
|
|
16052
16052
|
},
|
|
16053
16053
|
/**
|
|
16054
16054
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
16055
|
-
* @summary Service Desk Integration Update
|
|
16055
|
+
* @summary Service Desk Integration Update PATCH
|
|
16056
16056
|
* @param {string} id ID of the Service Desk integration to update
|
|
16057
16057
|
* @param {JsonPatch} jsonPatch A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. PATCH can only be applied to the following fields: * \"beforeProvisioningRule\" A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
|
|
16058
16058
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -16073,7 +16073,7 @@ var ServiceDeskIntegrationApiFp = function (configuration) {
|
|
|
16073
16073
|
},
|
|
16074
16074
|
/**
|
|
16075
16075
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16076
|
-
* @summary Update a Service Desk integration
|
|
16076
|
+
* @summary Update a Service Desk integration
|
|
16077
16077
|
* @param {string} id ID of the Service Desk integration to update
|
|
16078
16078
|
* @param {ServiceDeskIntegrationDto} serviceDeskIntegrationDto The specifics of the integration to update
|
|
16079
16079
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -16094,7 +16094,7 @@ var ServiceDeskIntegrationApiFp = function (configuration) {
|
|
|
16094
16094
|
},
|
|
16095
16095
|
/**
|
|
16096
16096
|
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16097
|
-
* @summary Update the time check configuration
|
|
16097
|
+
* @summary Update the time check configuration
|
|
16098
16098
|
* @param {QueuedCheckConfigDetails} queuedCheckConfigDetails the modified time check configuration
|
|
16099
16099
|
* @param {*} [axiosOptions] Override http request option.
|
|
16100
16100
|
* @throws {RequiredError}
|
|
@@ -16124,7 +16124,7 @@ var ServiceDeskIntegrationApiFactory = function (configuration, basePath, axios)
|
|
|
16124
16124
|
return {
|
|
16125
16125
|
/**
|
|
16126
16126
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16127
|
-
* @summary Create
|
|
16127
|
+
* @summary Create new Service Desk integration
|
|
16128
16128
|
* @param {ServiceDeskIntegrationDto} serviceDeskIntegrationDto The specifics of a new integration to create
|
|
16129
16129
|
* @param {*} [axiosOptions] Override http request option.
|
|
16130
16130
|
* @throws {RequiredError}
|
|
@@ -16134,7 +16134,7 @@ var ServiceDeskIntegrationApiFactory = function (configuration, basePath, axios)
|
|
|
16134
16134
|
},
|
|
16135
16135
|
/**
|
|
16136
16136
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16137
|
-
* @summary Delete a Service Desk integration
|
|
16137
|
+
* @summary Delete a Service Desk integration
|
|
16138
16138
|
* @param {string} id ID of Service Desk integration to delete
|
|
16139
16139
|
* @param {*} [axiosOptions] Override http request option.
|
|
16140
16140
|
* @throws {RequiredError}
|
|
@@ -16144,7 +16144,7 @@ var ServiceDeskIntegrationApiFactory = function (configuration, basePath, axios)
|
|
|
16144
16144
|
},
|
|
16145
16145
|
/**
|
|
16146
16146
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16147
|
-
* @summary Get a Service Desk integration
|
|
16147
|
+
* @summary Get a Service Desk integration
|
|
16148
16148
|
* @param {string} id ID of the Service Desk integration to get
|
|
16149
16149
|
* @param {*} [axiosOptions] Override http request option.
|
|
16150
16150
|
* @throws {RequiredError}
|
|
@@ -16187,7 +16187,7 @@ var ServiceDeskIntegrationApiFactory = function (configuration, basePath, axios)
|
|
|
16187
16187
|
},
|
|
16188
16188
|
/**
|
|
16189
16189
|
* Get the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16190
|
-
* @summary Get the time check configuration
|
|
16190
|
+
* @summary Get the time check configuration
|
|
16191
16191
|
* @param {*} [axiosOptions] Override http request option.
|
|
16192
16192
|
* @throws {RequiredError}
|
|
16193
16193
|
*/
|
|
@@ -16196,7 +16196,7 @@ var ServiceDeskIntegrationApiFactory = function (configuration, basePath, axios)
|
|
|
16196
16196
|
},
|
|
16197
16197
|
/**
|
|
16198
16198
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
16199
|
-
* @summary Service Desk Integration Update
|
|
16199
|
+
* @summary Service Desk Integration Update PATCH
|
|
16200
16200
|
* @param {string} id ID of the Service Desk integration to update
|
|
16201
16201
|
* @param {JsonPatch} jsonPatch A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. PATCH can only be applied to the following fields: * \"beforeProvisioningRule\" A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
|
|
16202
16202
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -16207,7 +16207,7 @@ var ServiceDeskIntegrationApiFactory = function (configuration, basePath, axios)
|
|
|
16207
16207
|
},
|
|
16208
16208
|
/**
|
|
16209
16209
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16210
|
-
* @summary Update a Service Desk integration
|
|
16210
|
+
* @summary Update a Service Desk integration
|
|
16211
16211
|
* @param {string} id ID of the Service Desk integration to update
|
|
16212
16212
|
* @param {ServiceDeskIntegrationDto} serviceDeskIntegrationDto The specifics of the integration to update
|
|
16213
16213
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -16218,7 +16218,7 @@ var ServiceDeskIntegrationApiFactory = function (configuration, basePath, axios)
|
|
|
16218
16218
|
},
|
|
16219
16219
|
/**
|
|
16220
16220
|
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16221
|
-
* @summary Update the time check configuration
|
|
16221
|
+
* @summary Update the time check configuration
|
|
16222
16222
|
* @param {QueuedCheckConfigDetails} queuedCheckConfigDetails the modified time check configuration
|
|
16223
16223
|
* @param {*} [axiosOptions] Override http request option.
|
|
16224
16224
|
* @throws {RequiredError}
|
|
@@ -16242,7 +16242,7 @@ var ServiceDeskIntegrationApi = /** @class */ (function (_super) {
|
|
|
16242
16242
|
}
|
|
16243
16243
|
/**
|
|
16244
16244
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16245
|
-
* @summary Create
|
|
16245
|
+
* @summary Create new Service Desk integration
|
|
16246
16246
|
* @param {ServiceDeskIntegrationApiCreateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
16247
16247
|
* @param {*} [axiosOptions] Override http request option.
|
|
16248
16248
|
* @throws {RequiredError}
|
|
@@ -16254,7 +16254,7 @@ var ServiceDeskIntegrationApi = /** @class */ (function (_super) {
|
|
|
16254
16254
|
};
|
|
16255
16255
|
/**
|
|
16256
16256
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16257
|
-
* @summary Delete a Service Desk integration
|
|
16257
|
+
* @summary Delete a Service Desk integration
|
|
16258
16258
|
* @param {ServiceDeskIntegrationApiDeleteServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
16259
16259
|
* @param {*} [axiosOptions] Override http request option.
|
|
16260
16260
|
* @throws {RequiredError}
|
|
@@ -16266,7 +16266,7 @@ var ServiceDeskIntegrationApi = /** @class */ (function (_super) {
|
|
|
16266
16266
|
};
|
|
16267
16267
|
/**
|
|
16268
16268
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16269
|
-
* @summary Get a Service Desk integration
|
|
16269
|
+
* @summary Get a Service Desk integration
|
|
16270
16270
|
* @param {ServiceDeskIntegrationApiGetServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
16271
16271
|
* @param {*} [axiosOptions] Override http request option.
|
|
16272
16272
|
* @throws {RequiredError}
|
|
@@ -16314,7 +16314,7 @@ var ServiceDeskIntegrationApi = /** @class */ (function (_super) {
|
|
|
16314
16314
|
};
|
|
16315
16315
|
/**
|
|
16316
16316
|
* Get the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16317
|
-
* @summary Get the time check configuration
|
|
16317
|
+
* @summary Get the time check configuration
|
|
16318
16318
|
* @param {*} [axiosOptions] Override http request option.
|
|
16319
16319
|
* @throws {RequiredError}
|
|
16320
16320
|
* @memberof ServiceDeskIntegrationApi
|
|
@@ -16325,7 +16325,7 @@ var ServiceDeskIntegrationApi = /** @class */ (function (_super) {
|
|
|
16325
16325
|
};
|
|
16326
16326
|
/**
|
|
16327
16327
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
16328
|
-
* @summary Service Desk Integration Update
|
|
16328
|
+
* @summary Service Desk Integration Update PATCH
|
|
16329
16329
|
* @param {ServiceDeskIntegrationApiPatchServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
16330
16330
|
* @param {*} [axiosOptions] Override http request option.
|
|
16331
16331
|
* @throws {RequiredError}
|
|
@@ -16337,7 +16337,7 @@ var ServiceDeskIntegrationApi = /** @class */ (function (_super) {
|
|
|
16337
16337
|
};
|
|
16338
16338
|
/**
|
|
16339
16339
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16340
|
-
* @summary Update a Service Desk integration
|
|
16340
|
+
* @summary Update a Service Desk integration
|
|
16341
16341
|
* @param {ServiceDeskIntegrationApiUpdateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
16342
16342
|
* @param {*} [axiosOptions] Override http request option.
|
|
16343
16343
|
* @throws {RequiredError}
|
|
@@ -16349,7 +16349,7 @@ var ServiceDeskIntegrationApi = /** @class */ (function (_super) {
|
|
|
16349
16349
|
};
|
|
16350
16350
|
/**
|
|
16351
16351
|
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
16352
|
-
* @summary Update the time check configuration
|
|
16352
|
+
* @summary Update the time check configuration
|
|
16353
16353
|
* @param {ServiceDeskIntegrationApiUpdateStatusCheckDetailsRequest} requestParameters Request parameters.
|
|
16354
16354
|
* @param {*} [axiosOptions] Override http request option.
|
|
16355
16355
|
* @throws {RequiredError}
|
|
@@ -16431,7 +16431,7 @@ var SourcesApiAxiosParamCreator = function (configuration) {
|
|
|
16431
16431
|
* This creates a specific source with a full source JSON representation. Any passwords are submitted as plain-text and encrypted upon receipt in IdentityNow. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
16432
16432
|
* @summary Creates a source in IdentityNow.
|
|
16433
16433
|
* @param {Source} source
|
|
16434
|
-
* @param {boolean} [provisionAsCsv]
|
|
16434
|
+
* @param {boolean} [provisionAsCsv] If this parameter is `true`, it configures the source as a Delimited File (CSV) source. Setting this to `true` will automatically set the `type` of the source to `DelimitedFile`. You must use this query parameter to create a Delimited File source as you would in the UI. If you don\'t set this query parameter and you attempt to set the `type` attribute directly, the request won\'t correctly generate the source.
|
|
16435
16435
|
* @param {*} [axiosOptions] Override http request option.
|
|
16436
16436
|
* @throws {RequiredError}
|
|
16437
16437
|
*/
|
|
@@ -17646,7 +17646,7 @@ var SourcesApiAxiosParamCreator = function (configuration) {
|
|
|
17646
17646
|
});
|
|
17647
17647
|
},
|
|
17648
17648
|
/**
|
|
17649
|
-
* This API uploads a source schema template file to configure a source\'s account attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** ->
|
|
17649
|
+
* This API uploads a source schema template file to configure a source\'s account attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Account Schema** -> **Options** -> **Download Schema** >**NOTE: This API is designated only for Delimited File sources.**
|
|
17650
17650
|
* @summary Uploads source accounts schema template
|
|
17651
17651
|
* @param {string} id The Source id
|
|
17652
17652
|
* @param {any} [file]
|
|
@@ -17766,7 +17766,7 @@ var SourcesApiAxiosParamCreator = function (configuration) {
|
|
|
17766
17766
|
});
|
|
17767
17767
|
},
|
|
17768
17768
|
/**
|
|
17769
|
-
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** ->
|
|
17769
|
+
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
|
|
17770
17770
|
* @summary Uploads source entitlements schema template
|
|
17771
17771
|
* @param {string} id The Source id
|
|
17772
17772
|
* @param {string} [schemaName] Name of entitlement schema
|
|
@@ -17864,7 +17864,7 @@ var SourcesApiFp = function (configuration) {
|
|
|
17864
17864
|
* This creates a specific source with a full source JSON representation. Any passwords are submitted as plain-text and encrypted upon receipt in IdentityNow. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
17865
17865
|
* @summary Creates a source in IdentityNow.
|
|
17866
17866
|
* @param {Source} source
|
|
17867
|
-
* @param {boolean} [provisionAsCsv]
|
|
17867
|
+
* @param {boolean} [provisionAsCsv] If this parameter is `true`, it configures the source as a Delimited File (CSV) source. Setting this to `true` will automatically set the `type` of the source to `DelimitedFile`. You must use this query parameter to create a Delimited File source as you would in the UI. If you don\'t set this query parameter and you attempt to set the `type` attribute directly, the request won\'t correctly generate the source.
|
|
17868
17868
|
* @param {*} [axiosOptions] Override http request option.
|
|
17869
17869
|
* @throws {RequiredError}
|
|
17870
17870
|
*/
|
|
@@ -18305,7 +18305,7 @@ var SourcesApiFp = function (configuration) {
|
|
|
18305
18305
|
});
|
|
18306
18306
|
},
|
|
18307
18307
|
/**
|
|
18308
|
-
* This API uploads a source schema template file to configure a source\'s account attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** ->
|
|
18308
|
+
* This API uploads a source schema template file to configure a source\'s account attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Account Schema** -> **Options** -> **Download Schema** >**NOTE: This API is designated only for Delimited File sources.**
|
|
18309
18309
|
* @summary Uploads source accounts schema template
|
|
18310
18310
|
* @param {string} id The Source id
|
|
18311
18311
|
* @param {any} [file]
|
|
@@ -18347,7 +18347,7 @@ var SourcesApiFp = function (configuration) {
|
|
|
18347
18347
|
});
|
|
18348
18348
|
},
|
|
18349
18349
|
/**
|
|
18350
|
-
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** ->
|
|
18350
|
+
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
|
|
18351
18351
|
* @summary Uploads source entitlements schema template
|
|
18352
18352
|
* @param {string} id The Source id
|
|
18353
18353
|
* @param {string} [schemaName] Name of entitlement schema
|
|
@@ -18393,7 +18393,7 @@ var SourcesApiFactory = function (configuration, basePath, axios) {
|
|
|
18393
18393
|
* This creates a specific source with a full source JSON representation. Any passwords are submitted as plain-text and encrypted upon receipt in IdentityNow. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
18394
18394
|
* @summary Creates a source in IdentityNow.
|
|
18395
18395
|
* @param {Source} source
|
|
18396
|
-
* @param {boolean} [provisionAsCsv]
|
|
18396
|
+
* @param {boolean} [provisionAsCsv] If this parameter is `true`, it configures the source as a Delimited File (CSV) source. Setting this to `true` will automatically set the `type` of the source to `DelimitedFile`. You must use this query parameter to create a Delimited File source as you would in the UI. If you don\'t set this query parameter and you attempt to set the `type` attribute directly, the request won\'t correctly generate the source.
|
|
18397
18397
|
* @param {*} [axiosOptions] Override http request option.
|
|
18398
18398
|
* @throws {RequiredError}
|
|
18399
18399
|
*/
|
|
@@ -18624,7 +18624,7 @@ var SourcesApiFactory = function (configuration, basePath, axios) {
|
|
|
18624
18624
|
return localVarFp.updateSourceSchema(sourceId, schemaId, jsonPatchOperation, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
18625
18625
|
},
|
|
18626
18626
|
/**
|
|
18627
|
-
* This API uploads a source schema template file to configure a source\'s account attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** ->
|
|
18627
|
+
* This API uploads a source schema template file to configure a source\'s account attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Account Schema** -> **Options** -> **Download Schema** >**NOTE: This API is designated only for Delimited File sources.**
|
|
18628
18628
|
* @summary Uploads source accounts schema template
|
|
18629
18629
|
* @param {string} id The Source id
|
|
18630
18630
|
* @param {any} [file]
|
|
@@ -18646,7 +18646,7 @@ var SourcesApiFactory = function (configuration, basePath, axios) {
|
|
|
18646
18646
|
return localVarFp.uploadSourceConnectorFile(sourceId, file, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
18647
18647
|
},
|
|
18648
18648
|
/**
|
|
18649
|
-
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** ->
|
|
18649
|
+
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
|
|
18650
18650
|
* @summary Uploads source entitlements schema template
|
|
18651
18651
|
* @param {string} id The Source id
|
|
18652
18652
|
* @param {string} [schemaName] Name of entitlement schema
|
|
@@ -18937,7 +18937,7 @@ var SourcesApi = /** @class */ (function (_super) {
|
|
|
18937
18937
|
return (0, exports.SourcesApiFp)(this.configuration).updateSourceSchema(requestParameters.sourceId, requestParameters.schemaId, requestParameters.jsonPatchOperation, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
18938
18938
|
};
|
|
18939
18939
|
/**
|
|
18940
|
-
* This API uploads a source schema template file to configure a source\'s account attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** ->
|
|
18940
|
+
* This API uploads a source schema template file to configure a source\'s account attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Account Schema** -> **Options** -> **Download Schema** >**NOTE: This API is designated only for Delimited File sources.**
|
|
18941
18941
|
* @summary Uploads source accounts schema template
|
|
18942
18942
|
* @param {SourcesApiUploadSourceAccountsSchemaRequest} requestParameters Request parameters.
|
|
18943
18943
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -18961,7 +18961,7 @@ var SourcesApi = /** @class */ (function (_super) {
|
|
|
18961
18961
|
return (0, exports.SourcesApiFp)(this.configuration).uploadSourceConnectorFile(requestParameters.sourceId, requestParameters.file, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
18962
18962
|
};
|
|
18963
18963
|
/**
|
|
18964
|
-
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** ->
|
|
18964
|
+
* This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
|
|
18965
18965
|
* @summary Uploads source entitlements schema template
|
|
18966
18966
|
* @param {SourcesApiUploadSourceEntitlementsSchemaRequest} requestParameters Request parameters.
|
|
18967
18967
|
* @param {*} [axiosOptions] Override http request option.
|