sailpoint-api-client 1.8.63 → 1.8.65
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/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +293 -0
- package/dist/v2026/api.js +442 -0
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/common.js +2 -2
- 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/v2024/README.md +2 -2
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +497 -0
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.65
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.8.
|
|
39
|
+
npm install sailpoint-sdk@1.8.65 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/common.ts
CHANGED
|
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
|
|
|
146
146
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
|
-
let userAgent = `SailPoint-SDK-TypeScript/1.8.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.65`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
153
153
|
userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
|
|
154
154
|
const headers = {
|
|
155
155
|
...axiosArgs.axiosOptions.headers,
|
|
156
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.65'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.65";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.65' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nerm/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.65";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.65' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nermv2025/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.65";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.65' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2024/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.65";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.65' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2025/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.65";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.65' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2026/api.d.ts
CHANGED
|
@@ -47735,6 +47735,99 @@ export interface SourceCreationErrorsV2026 {
|
|
|
47735
47735
|
*/
|
|
47736
47736
|
'operation'?: string | null;
|
|
47737
47737
|
}
|
|
47738
|
+
/**
|
|
47739
|
+
* Resource definition for a source. The resource is reconstructed from source schema data (resourceId/resourceType in schema config and schema objectType as name).
|
|
47740
|
+
* @export
|
|
47741
|
+
* @interface SourceDatasetResourceV2026
|
|
47742
|
+
*/
|
|
47743
|
+
export interface SourceDatasetResourceV2026 {
|
|
47744
|
+
/**
|
|
47745
|
+
* Resource identifier from source schema config.
|
|
47746
|
+
* @type {string}
|
|
47747
|
+
* @memberof SourceDatasetResourceV2026
|
|
47748
|
+
*/
|
|
47749
|
+
'id'?: string;
|
|
47750
|
+
/**
|
|
47751
|
+
* Display name of the resource.
|
|
47752
|
+
* @type {string}
|
|
47753
|
+
* @memberof SourceDatasetResourceV2026
|
|
47754
|
+
*/
|
|
47755
|
+
'name'?: string;
|
|
47756
|
+
/**
|
|
47757
|
+
* Feature identifiers supported by this resource.
|
|
47758
|
+
* @type {Array<string>}
|
|
47759
|
+
* @memberof SourceDatasetResourceV2026
|
|
47760
|
+
*/
|
|
47761
|
+
'features'?: Array<string>;
|
|
47762
|
+
/**
|
|
47763
|
+
* Resource type from source schema config.
|
|
47764
|
+
* @type {string}
|
|
47765
|
+
* @memberof SourceDatasetResourceV2026
|
|
47766
|
+
*/
|
|
47767
|
+
'type'?: string;
|
|
47768
|
+
/**
|
|
47769
|
+
*
|
|
47770
|
+
* @type {SchemaV2026}
|
|
47771
|
+
* @memberof SourceDatasetResourceV2026
|
|
47772
|
+
*/
|
|
47773
|
+
'schema'?: SchemaV2026;
|
|
47774
|
+
}
|
|
47775
|
+
/**
|
|
47776
|
+
*
|
|
47777
|
+
* @export
|
|
47778
|
+
* @interface SourceDatasetResourcesInnerV2026
|
|
47779
|
+
*/
|
|
47780
|
+
export interface SourceDatasetResourcesInnerV2026 {
|
|
47781
|
+
/**
|
|
47782
|
+
* Resource identifier.
|
|
47783
|
+
* @type {string}
|
|
47784
|
+
* @memberof SourceDatasetResourcesInnerV2026
|
|
47785
|
+
*/
|
|
47786
|
+
'id'?: string;
|
|
47787
|
+
/**
|
|
47788
|
+
* Display name of the resource.
|
|
47789
|
+
* @type {string}
|
|
47790
|
+
* @memberof SourceDatasetResourcesInnerV2026
|
|
47791
|
+
*/
|
|
47792
|
+
'name'?: string;
|
|
47793
|
+
}
|
|
47794
|
+
/**
|
|
47795
|
+
* Dataset instance for a source. Fields are read from source-persisted dataset rows in Diana (name/description reflect the source\'s stored snapshot); aggregationEnabled is stored per source instance.
|
|
47796
|
+
* @export
|
|
47797
|
+
* @interface SourceDatasetV2026
|
|
47798
|
+
*/
|
|
47799
|
+
export interface SourceDatasetV2026 {
|
|
47800
|
+
/**
|
|
47801
|
+
* Dataset identifier.
|
|
47802
|
+
* @type {string}
|
|
47803
|
+
* @memberof SourceDatasetV2026
|
|
47804
|
+
*/
|
|
47805
|
+
'id'?: string;
|
|
47806
|
+
/**
|
|
47807
|
+
* Display name of the dataset.
|
|
47808
|
+
* @type {string}
|
|
47809
|
+
* @memberof SourceDatasetV2026
|
|
47810
|
+
*/
|
|
47811
|
+
'name'?: string;
|
|
47812
|
+
/**
|
|
47813
|
+
* Description of the dataset.
|
|
47814
|
+
* @type {string}
|
|
47815
|
+
* @memberof SourceDatasetV2026
|
|
47816
|
+
*/
|
|
47817
|
+
'description'?: string;
|
|
47818
|
+
/**
|
|
47819
|
+
* Whether aggregation is enabled for this dataset on the source.
|
|
47820
|
+
* @type {boolean}
|
|
47821
|
+
* @memberof SourceDatasetV2026
|
|
47822
|
+
*/
|
|
47823
|
+
'aggregationEnabled'?: boolean;
|
|
47824
|
+
/**
|
|
47825
|
+
* Simplified resource references associated with this dataset.
|
|
47826
|
+
* @type {Array<SourceDatasetResourcesInnerV2026>}
|
|
47827
|
+
* @memberof SourceDatasetV2026
|
|
47828
|
+
*/
|
|
47829
|
+
'resources'?: Array<SourceDatasetResourcesInnerV2026>;
|
|
47830
|
+
}
|
|
47738
47831
|
/**
|
|
47739
47832
|
* Identity who deleted the source.
|
|
47740
47833
|
* @export
|
|
@@ -97530,6 +97623,23 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
97530
97623
|
* @throws {RequiredError}
|
|
97531
97624
|
*/
|
|
97532
97625
|
getSourceConnections: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
97626
|
+
/**
|
|
97627
|
+
* Use this API to get a dataset by id for the specified source in Identity Security Cloud (ISC).
|
|
97628
|
+
* @summary Get source dataset by id
|
|
97629
|
+
* @param {string} sourceId Source ID.
|
|
97630
|
+
* @param {string} datasetId Dataset ID.
|
|
97631
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
97632
|
+
* @throws {RequiredError}
|
|
97633
|
+
*/
|
|
97634
|
+
getSourceDataset: (sourceId: string, datasetId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
97635
|
+
/**
|
|
97636
|
+
* Use this API to list datasets for the specified source in Identity Security Cloud (ISC).
|
|
97637
|
+
* @summary List datasets on source
|
|
97638
|
+
* @param {string} sourceId Source ID.
|
|
97639
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
97640
|
+
* @throws {RequiredError}
|
|
97641
|
+
*/
|
|
97642
|
+
getSourceDatasets: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
97533
97643
|
/**
|
|
97534
97644
|
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
97535
97645
|
* @summary Get source entitlement request configuration
|
|
@@ -97547,6 +97657,23 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
97547
97657
|
* @throws {RequiredError}
|
|
97548
97658
|
*/
|
|
97549
97659
|
getSourceHealth: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
97660
|
+
/**
|
|
97661
|
+
* Use this API to get a resource by id on the specified source in Identity Security Cloud (ISC). The response includes the full CIS schema for the resource.
|
|
97662
|
+
* @summary Get source resource by id
|
|
97663
|
+
* @param {string} sourceId Source ID.
|
|
97664
|
+
* @param {string} resourceId Resource ID (CIS schema object type for the source).
|
|
97665
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
97666
|
+
* @throws {RequiredError}
|
|
97667
|
+
*/
|
|
97668
|
+
getSourceResource: (sourceId: string, resourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
97669
|
+
/**
|
|
97670
|
+
* Use this API to list resources defined on the specified source in Identity Security Cloud (ISC).
|
|
97671
|
+
* @summary List resources for a source
|
|
97672
|
+
* @param {string} sourceId Source ID.
|
|
97673
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
97674
|
+
* @throws {RequiredError}
|
|
97675
|
+
*/
|
|
97676
|
+
getSourceResources: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
97550
97677
|
/**
|
|
97551
97678
|
* Get the source schedule by type in Identity Security Cloud (ISC).
|
|
97552
97679
|
* @summary Get source schedule by type
|
|
@@ -98043,6 +98170,23 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
98043
98170
|
* @throws {RequiredError}
|
|
98044
98171
|
*/
|
|
98045
98172
|
getSourceConnections(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceConnectionsDtoV2026>>;
|
|
98173
|
+
/**
|
|
98174
|
+
* Use this API to get a dataset by id for the specified source in Identity Security Cloud (ISC).
|
|
98175
|
+
* @summary Get source dataset by id
|
|
98176
|
+
* @param {string} sourceId Source ID.
|
|
98177
|
+
* @param {string} datasetId Dataset ID.
|
|
98178
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98179
|
+
* @throws {RequiredError}
|
|
98180
|
+
*/
|
|
98181
|
+
getSourceDataset(sourceId: string, datasetId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceDatasetV2026>>;
|
|
98182
|
+
/**
|
|
98183
|
+
* Use this API to list datasets for the specified source in Identity Security Cloud (ISC).
|
|
98184
|
+
* @summary List datasets on source
|
|
98185
|
+
* @param {string} sourceId Source ID.
|
|
98186
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98187
|
+
* @throws {RequiredError}
|
|
98188
|
+
*/
|
|
98189
|
+
getSourceDatasets(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceDatasetV2026>>>;
|
|
98046
98190
|
/**
|
|
98047
98191
|
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
98048
98192
|
* @summary Get source entitlement request configuration
|
|
@@ -98060,6 +98204,23 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
98060
98204
|
* @throws {RequiredError}
|
|
98061
98205
|
*/
|
|
98062
98206
|
getSourceHealth(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceHealthDtoV2026>>;
|
|
98207
|
+
/**
|
|
98208
|
+
* Use this API to get a resource by id on the specified source in Identity Security Cloud (ISC). The response includes the full CIS schema for the resource.
|
|
98209
|
+
* @summary Get source resource by id
|
|
98210
|
+
* @param {string} sourceId Source ID.
|
|
98211
|
+
* @param {string} resourceId Resource ID (CIS schema object type for the source).
|
|
98212
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98213
|
+
* @throws {RequiredError}
|
|
98214
|
+
*/
|
|
98215
|
+
getSourceResource(sourceId: string, resourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceDatasetResourceV2026>>;
|
|
98216
|
+
/**
|
|
98217
|
+
* Use this API to list resources defined on the specified source in Identity Security Cloud (ISC).
|
|
98218
|
+
* @summary List resources for a source
|
|
98219
|
+
* @param {string} sourceId Source ID.
|
|
98220
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98221
|
+
* @throws {RequiredError}
|
|
98222
|
+
*/
|
|
98223
|
+
getSourceResources(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceDatasetResourceV2026>>>;
|
|
98063
98224
|
/**
|
|
98064
98225
|
* Get the source schedule by type in Identity Security Cloud (ISC).
|
|
98065
98226
|
* @summary Get source schedule by type
|
|
@@ -98545,6 +98706,22 @@ export declare const SourcesV2026ApiFactory: (configuration?: Configuration, bas
|
|
|
98545
98706
|
* @throws {RequiredError}
|
|
98546
98707
|
*/
|
|
98547
98708
|
getSourceConnections(requestParameters: SourcesV2026ApiGetSourceConnectionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceConnectionsDtoV2026>;
|
|
98709
|
+
/**
|
|
98710
|
+
* Use this API to get a dataset by id for the specified source in Identity Security Cloud (ISC).
|
|
98711
|
+
* @summary Get source dataset by id
|
|
98712
|
+
* @param {SourcesV2026ApiGetSourceDatasetRequest} requestParameters Request parameters.
|
|
98713
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98714
|
+
* @throws {RequiredError}
|
|
98715
|
+
*/
|
|
98716
|
+
getSourceDataset(requestParameters: SourcesV2026ApiGetSourceDatasetRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceDatasetV2026>;
|
|
98717
|
+
/**
|
|
98718
|
+
* Use this API to list datasets for the specified source in Identity Security Cloud (ISC).
|
|
98719
|
+
* @summary List datasets on source
|
|
98720
|
+
* @param {SourcesV2026ApiGetSourceDatasetsRequest} requestParameters Request parameters.
|
|
98721
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98722
|
+
* @throws {RequiredError}
|
|
98723
|
+
*/
|
|
98724
|
+
getSourceDatasets(requestParameters: SourcesV2026ApiGetSourceDatasetsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceDatasetV2026>>;
|
|
98548
98725
|
/**
|
|
98549
98726
|
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
98550
98727
|
* @summary Get source entitlement request configuration
|
|
@@ -98561,6 +98738,22 @@ export declare const SourcesV2026ApiFactory: (configuration?: Configuration, bas
|
|
|
98561
98738
|
* @throws {RequiredError}
|
|
98562
98739
|
*/
|
|
98563
98740
|
getSourceHealth(requestParameters: SourcesV2026ApiGetSourceHealthRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceHealthDtoV2026>;
|
|
98741
|
+
/**
|
|
98742
|
+
* Use this API to get a resource by id on the specified source in Identity Security Cloud (ISC). The response includes the full CIS schema for the resource.
|
|
98743
|
+
* @summary Get source resource by id
|
|
98744
|
+
* @param {SourcesV2026ApiGetSourceResourceRequest} requestParameters Request parameters.
|
|
98745
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98746
|
+
* @throws {RequiredError}
|
|
98747
|
+
*/
|
|
98748
|
+
getSourceResource(requestParameters: SourcesV2026ApiGetSourceResourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceDatasetResourceV2026>;
|
|
98749
|
+
/**
|
|
98750
|
+
* Use this API to list resources defined on the specified source in Identity Security Cloud (ISC).
|
|
98751
|
+
* @summary List resources for a source
|
|
98752
|
+
* @param {SourcesV2026ApiGetSourceResourcesRequest} requestParameters Request parameters.
|
|
98753
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
98754
|
+
* @throws {RequiredError}
|
|
98755
|
+
*/
|
|
98756
|
+
getSourceResources(requestParameters: SourcesV2026ApiGetSourceResourcesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceDatasetResourceV2026>>;
|
|
98564
98757
|
/**
|
|
98565
98758
|
* Get the source schedule by type in Identity Security Cloud (ISC).
|
|
98566
98759
|
* @summary Get source schedule by type
|
|
@@ -99165,6 +99358,38 @@ export interface SourcesV2026ApiGetSourceConnectionsRequest {
|
|
|
99165
99358
|
*/
|
|
99166
99359
|
readonly sourceId: string;
|
|
99167
99360
|
}
|
|
99361
|
+
/**
|
|
99362
|
+
* Request parameters for getSourceDataset operation in SourcesV2026Api.
|
|
99363
|
+
* @export
|
|
99364
|
+
* @interface SourcesV2026ApiGetSourceDatasetRequest
|
|
99365
|
+
*/
|
|
99366
|
+
export interface SourcesV2026ApiGetSourceDatasetRequest {
|
|
99367
|
+
/**
|
|
99368
|
+
* Source ID.
|
|
99369
|
+
* @type {string}
|
|
99370
|
+
* @memberof SourcesV2026ApiGetSourceDataset
|
|
99371
|
+
*/
|
|
99372
|
+
readonly sourceId: string;
|
|
99373
|
+
/**
|
|
99374
|
+
* Dataset ID.
|
|
99375
|
+
* @type {string}
|
|
99376
|
+
* @memberof SourcesV2026ApiGetSourceDataset
|
|
99377
|
+
*/
|
|
99378
|
+
readonly datasetId: string;
|
|
99379
|
+
}
|
|
99380
|
+
/**
|
|
99381
|
+
* Request parameters for getSourceDatasets operation in SourcesV2026Api.
|
|
99382
|
+
* @export
|
|
99383
|
+
* @interface SourcesV2026ApiGetSourceDatasetsRequest
|
|
99384
|
+
*/
|
|
99385
|
+
export interface SourcesV2026ApiGetSourceDatasetsRequest {
|
|
99386
|
+
/**
|
|
99387
|
+
* Source ID.
|
|
99388
|
+
* @type {string}
|
|
99389
|
+
* @memberof SourcesV2026ApiGetSourceDatasets
|
|
99390
|
+
*/
|
|
99391
|
+
readonly sourceId: string;
|
|
99392
|
+
}
|
|
99168
99393
|
/**
|
|
99169
99394
|
* Request parameters for getSourceEntitlementRequestConfig operation in SourcesV2026Api.
|
|
99170
99395
|
* @export
|
|
@@ -99197,6 +99422,38 @@ export interface SourcesV2026ApiGetSourceHealthRequest {
|
|
|
99197
99422
|
*/
|
|
99198
99423
|
readonly sourceId: string;
|
|
99199
99424
|
}
|
|
99425
|
+
/**
|
|
99426
|
+
* Request parameters for getSourceResource operation in SourcesV2026Api.
|
|
99427
|
+
* @export
|
|
99428
|
+
* @interface SourcesV2026ApiGetSourceResourceRequest
|
|
99429
|
+
*/
|
|
99430
|
+
export interface SourcesV2026ApiGetSourceResourceRequest {
|
|
99431
|
+
/**
|
|
99432
|
+
* Source ID.
|
|
99433
|
+
* @type {string}
|
|
99434
|
+
* @memberof SourcesV2026ApiGetSourceResource
|
|
99435
|
+
*/
|
|
99436
|
+
readonly sourceId: string;
|
|
99437
|
+
/**
|
|
99438
|
+
* Resource ID (CIS schema object type for the source).
|
|
99439
|
+
* @type {string}
|
|
99440
|
+
* @memberof SourcesV2026ApiGetSourceResource
|
|
99441
|
+
*/
|
|
99442
|
+
readonly resourceId: string;
|
|
99443
|
+
}
|
|
99444
|
+
/**
|
|
99445
|
+
* Request parameters for getSourceResources operation in SourcesV2026Api.
|
|
99446
|
+
* @export
|
|
99447
|
+
* @interface SourcesV2026ApiGetSourceResourcesRequest
|
|
99448
|
+
*/
|
|
99449
|
+
export interface SourcesV2026ApiGetSourceResourcesRequest {
|
|
99450
|
+
/**
|
|
99451
|
+
* Source ID.
|
|
99452
|
+
* @type {string}
|
|
99453
|
+
* @memberof SourcesV2026ApiGetSourceResources
|
|
99454
|
+
*/
|
|
99455
|
+
readonly sourceId: string;
|
|
99456
|
+
}
|
|
99200
99457
|
/**
|
|
99201
99458
|
* Request parameters for getSourceSchedule operation in SourcesV2026Api.
|
|
99202
99459
|
* @export
|
|
@@ -100104,6 +100361,24 @@ export declare class SourcesV2026Api extends BaseAPI {
|
|
|
100104
100361
|
* @memberof SourcesV2026Api
|
|
100105
100362
|
*/
|
|
100106
100363
|
getSourceConnections(requestParameters: SourcesV2026ApiGetSourceConnectionsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceConnectionsDtoV2026, any>>;
|
|
100364
|
+
/**
|
|
100365
|
+
* Use this API to get a dataset by id for the specified source in Identity Security Cloud (ISC).
|
|
100366
|
+
* @summary Get source dataset by id
|
|
100367
|
+
* @param {SourcesV2026ApiGetSourceDatasetRequest} requestParameters Request parameters.
|
|
100368
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
100369
|
+
* @throws {RequiredError}
|
|
100370
|
+
* @memberof SourcesV2026Api
|
|
100371
|
+
*/
|
|
100372
|
+
getSourceDataset(requestParameters: SourcesV2026ApiGetSourceDatasetRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceDatasetV2026, any>>;
|
|
100373
|
+
/**
|
|
100374
|
+
* Use this API to list datasets for the specified source in Identity Security Cloud (ISC).
|
|
100375
|
+
* @summary List datasets on source
|
|
100376
|
+
* @param {SourcesV2026ApiGetSourceDatasetsRequest} requestParameters Request parameters.
|
|
100377
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
100378
|
+
* @throws {RequiredError}
|
|
100379
|
+
* @memberof SourcesV2026Api
|
|
100380
|
+
*/
|
|
100381
|
+
getSourceDatasets(requestParameters: SourcesV2026ApiGetSourceDatasetsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceDatasetV2026[], any>>;
|
|
100107
100382
|
/**
|
|
100108
100383
|
* This API gets the current entitlement request configuration for a source. This source-level configuration should apply for all the entitlements in the source. Access request to any entitlements in the source should follow this configuration unless a separate entitlement-level configuration is defined. - During access request, this source-level entitlement request configuration overrides the global organization-level configuration. - However, the entitlement-level configuration (if defined) overrides this source-level configuration.
|
|
100109
100384
|
* @summary Get source entitlement request configuration
|
|
@@ -100122,6 +100397,24 @@ export declare class SourcesV2026Api extends BaseAPI {
|
|
|
100122
100397
|
* @memberof SourcesV2026Api
|
|
100123
100398
|
*/
|
|
100124
100399
|
getSourceHealth(requestParameters: SourcesV2026ApiGetSourceHealthRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceHealthDtoV2026, any>>;
|
|
100400
|
+
/**
|
|
100401
|
+
* Use this API to get a resource by id on the specified source in Identity Security Cloud (ISC). The response includes the full CIS schema for the resource.
|
|
100402
|
+
* @summary Get source resource by id
|
|
100403
|
+
* @param {SourcesV2026ApiGetSourceResourceRequest} requestParameters Request parameters.
|
|
100404
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
100405
|
+
* @throws {RequiredError}
|
|
100406
|
+
* @memberof SourcesV2026Api
|
|
100407
|
+
*/
|
|
100408
|
+
getSourceResource(requestParameters: SourcesV2026ApiGetSourceResourceRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceDatasetResourceV2026, any>>;
|
|
100409
|
+
/**
|
|
100410
|
+
* Use this API to list resources defined on the specified source in Identity Security Cloud (ISC).
|
|
100411
|
+
* @summary List resources for a source
|
|
100412
|
+
* @param {SourcesV2026ApiGetSourceResourcesRequest} requestParameters Request parameters.
|
|
100413
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
100414
|
+
* @throws {RequiredError}
|
|
100415
|
+
* @memberof SourcesV2026Api
|
|
100416
|
+
*/
|
|
100417
|
+
getSourceResources(requestParameters: SourcesV2026ApiGetSourceResourcesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceDatasetResourceV2026[], any>>;
|
|
100125
100418
|
/**
|
|
100126
100419
|
* Get the source schedule by type in Identity Security Cloud (ISC).
|
|
100127
100420
|
* @summary Get source schedule by type
|