@gooddata/api-client-tiger 11.2.0-alpha.5 → 11.2.0-alpha.6
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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +228 -1
- package/esm/genAI.d.ts +1 -1
- package/esm/genAI.d.ts.map +1 -1
- package/esm/genAI.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +392 -0
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +408 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +205 -0
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -913,6 +913,38 @@ export const ActionsApiAxiosParamCreator = function (configuration) {
|
|
|
913
913
|
options: localVarRequestOptions,
|
|
914
914
|
};
|
|
915
915
|
},
|
|
916
|
+
/**
|
|
917
|
+
* Returns a list of Users who created any object for this workspace
|
|
918
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
919
|
+
* @param {string} workspaceId Workspace identifier
|
|
920
|
+
* @param {*} [options] Override http request option.
|
|
921
|
+
* @throws {RequiredError}
|
|
922
|
+
*/
|
|
923
|
+
createdBy: async (workspaceId, options = {}) => {
|
|
924
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
925
|
+
assertParamExists("createdBy", "workspaceId", workspaceId);
|
|
926
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
927
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
928
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
929
|
+
let baseOptions;
|
|
930
|
+
if (configuration) {
|
|
931
|
+
baseOptions = configuration.baseOptions;
|
|
932
|
+
}
|
|
933
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
934
|
+
const localVarHeaderParameter = {};
|
|
935
|
+
const localVarQueryParameter = {};
|
|
936
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
937
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
938
|
+
localVarRequestOptions.headers = {
|
|
939
|
+
...localVarHeaderParameter,
|
|
940
|
+
...headersFromBaseOptions,
|
|
941
|
+
...options.headers,
|
|
942
|
+
};
|
|
943
|
+
return {
|
|
944
|
+
url: toPathString(localVarUrlObj),
|
|
945
|
+
options: localVarRequestOptions,
|
|
946
|
+
};
|
|
947
|
+
},
|
|
916
948
|
/**
|
|
917
949
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
918
950
|
* @summary AFM explain resource.
|
|
@@ -1053,6 +1085,38 @@ export const ActionsApiAxiosParamCreator = function (configuration) {
|
|
|
1053
1085
|
options: localVarRequestOptions,
|
|
1054
1086
|
};
|
|
1055
1087
|
},
|
|
1088
|
+
/**
|
|
1089
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
1090
|
+
* @summary Get Quality Issues
|
|
1091
|
+
* @param {string} workspaceId Workspace identifier
|
|
1092
|
+
* @param {*} [options] Override http request option.
|
|
1093
|
+
* @throws {RequiredError}
|
|
1094
|
+
*/
|
|
1095
|
+
getQualityIssues: async (workspaceId, options = {}) => {
|
|
1096
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
1097
|
+
assertParamExists("getQualityIssues", "workspaceId", workspaceId);
|
|
1098
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/issues`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
1099
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1100
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1101
|
+
let baseOptions;
|
|
1102
|
+
if (configuration) {
|
|
1103
|
+
baseOptions = configuration.baseOptions;
|
|
1104
|
+
}
|
|
1105
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1106
|
+
const localVarHeaderParameter = {};
|
|
1107
|
+
const localVarQueryParameter = {};
|
|
1108
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1109
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1110
|
+
localVarRequestOptions.headers = {
|
|
1111
|
+
...localVarHeaderParameter,
|
|
1112
|
+
...headersFromBaseOptions,
|
|
1113
|
+
...options.headers,
|
|
1114
|
+
};
|
|
1115
|
+
return {
|
|
1116
|
+
url: toPathString(localVarUrlObj),
|
|
1117
|
+
options: localVarRequestOptions,
|
|
1118
|
+
};
|
|
1119
|
+
},
|
|
1056
1120
|
/**
|
|
1057
1121
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
1058
1122
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -1265,6 +1329,38 @@ export const ActionsApiAxiosParamCreator = function (configuration) {
|
|
|
1265
1329
|
options: localVarRequestOptions,
|
|
1266
1330
|
};
|
|
1267
1331
|
},
|
|
1332
|
+
/**
|
|
1333
|
+
* Returns a list of tags for this workspace
|
|
1334
|
+
* @summary Get Analytics Catalog Tags
|
|
1335
|
+
* @param {string} workspaceId Workspace identifier
|
|
1336
|
+
* @param {*} [options] Override http request option.
|
|
1337
|
+
* @throws {RequiredError}
|
|
1338
|
+
*/
|
|
1339
|
+
tags: async (workspaceId, options = {}) => {
|
|
1340
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
1341
|
+
assertParamExists("tags", "workspaceId", workspaceId);
|
|
1342
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
1343
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1344
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1345
|
+
let baseOptions;
|
|
1346
|
+
if (configuration) {
|
|
1347
|
+
baseOptions = configuration.baseOptions;
|
|
1348
|
+
}
|
|
1349
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1350
|
+
const localVarHeaderParameter = {};
|
|
1351
|
+
const localVarQueryParameter = {};
|
|
1352
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1353
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1354
|
+
localVarRequestOptions.headers = {
|
|
1355
|
+
...localVarHeaderParameter,
|
|
1356
|
+
...headersFromBaseOptions,
|
|
1357
|
+
...options.headers,
|
|
1358
|
+
};
|
|
1359
|
+
return {
|
|
1360
|
+
url: toPathString(localVarUrlObj),
|
|
1361
|
+
options: localVarRequestOptions,
|
|
1362
|
+
};
|
|
1363
|
+
},
|
|
1268
1364
|
/**
|
|
1269
1365
|
* Validates LLM endpoint with provided parameters.
|
|
1270
1366
|
* @summary Validate LLM Endpoint
|
|
@@ -1531,6 +1627,17 @@ export const ActionsApiFp = function (configuration) {
|
|
|
1531
1627
|
const localVarAxiosArgs = await localVarAxiosParamCreator.computeValidObjects(workspaceId, afmValidObjectsQuery, options);
|
|
1532
1628
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1533
1629
|
},
|
|
1630
|
+
/**
|
|
1631
|
+
* Returns a list of Users who created any object for this workspace
|
|
1632
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
1633
|
+
* @param {string} workspaceId Workspace identifier
|
|
1634
|
+
* @param {*} [options] Override http request option.
|
|
1635
|
+
* @throws {RequiredError}
|
|
1636
|
+
*/
|
|
1637
|
+
async createdBy(workspaceId, options) {
|
|
1638
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createdBy(workspaceId, options);
|
|
1639
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1640
|
+
},
|
|
1534
1641
|
/**
|
|
1535
1642
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
1536
1643
|
* @summary AFM explain resource.
|
|
@@ -1572,6 +1679,17 @@ export const ActionsApiFp = function (configuration) {
|
|
|
1572
1679
|
const localVarAxiosArgs = await localVarAxiosParamCreator.forecastResult(workspaceId, resultId, offset, limit, options);
|
|
1573
1680
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1574
1681
|
},
|
|
1682
|
+
/**
|
|
1683
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
1684
|
+
* @summary Get Quality Issues
|
|
1685
|
+
* @param {string} workspaceId Workspace identifier
|
|
1686
|
+
* @param {*} [options] Override http request option.
|
|
1687
|
+
* @throws {RequiredError}
|
|
1688
|
+
*/
|
|
1689
|
+
async getQualityIssues(workspaceId, options) {
|
|
1690
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getQualityIssues(workspaceId, options);
|
|
1691
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1692
|
+
},
|
|
1575
1693
|
/**
|
|
1576
1694
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
1577
1695
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -1638,6 +1756,17 @@ export const ActionsApiFp = function (configuration) {
|
|
|
1638
1756
|
const localVarAxiosArgs = await localVarAxiosParamCreator.retrieveResult(workspaceId, resultId, offset, limit, excludedTotalDimensions, xGDCCANCELTOKEN, options);
|
|
1639
1757
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1640
1758
|
},
|
|
1759
|
+
/**
|
|
1760
|
+
* Returns a list of tags for this workspace
|
|
1761
|
+
* @summary Get Analytics Catalog Tags
|
|
1762
|
+
* @param {string} workspaceId Workspace identifier
|
|
1763
|
+
* @param {*} [options] Override http request option.
|
|
1764
|
+
* @throws {RequiredError}
|
|
1765
|
+
*/
|
|
1766
|
+
async tags(workspaceId, options) {
|
|
1767
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.tags(workspaceId, options);
|
|
1768
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1769
|
+
},
|
|
1641
1770
|
/**
|
|
1642
1771
|
* Validates LLM endpoint with provided parameters.
|
|
1643
1772
|
* @summary Validate LLM Endpoint
|
|
@@ -1838,6 +1967,18 @@ export const ActionsApiFactory = function (configuration, basePath, axios) {
|
|
|
1838
1967
|
.computeValidObjects(requestParameters.workspaceId, requestParameters.afmValidObjectsQuery, options)
|
|
1839
1968
|
.then((request) => request(axios, basePath));
|
|
1840
1969
|
},
|
|
1970
|
+
/**
|
|
1971
|
+
* Returns a list of Users who created any object for this workspace
|
|
1972
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
1973
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
1974
|
+
* @param {*} [options] Override http request option.
|
|
1975
|
+
* @throws {RequiredError}
|
|
1976
|
+
*/
|
|
1977
|
+
createdBy(requestParameters, options) {
|
|
1978
|
+
return localVarFp
|
|
1979
|
+
.createdBy(requestParameters.workspaceId, options)
|
|
1980
|
+
.then((request) => request(axios, basePath));
|
|
1981
|
+
},
|
|
1841
1982
|
/**
|
|
1842
1983
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
1843
1984
|
* @summary AFM explain resource.
|
|
@@ -1874,6 +2015,18 @@ export const ActionsApiFactory = function (configuration, basePath, axios) {
|
|
|
1874
2015
|
.forecastResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, options)
|
|
1875
2016
|
.then((request) => request(axios, basePath));
|
|
1876
2017
|
},
|
|
2018
|
+
/**
|
|
2019
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
2020
|
+
* @summary Get Quality Issues
|
|
2021
|
+
* @param {ActionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
2022
|
+
* @param {*} [options] Override http request option.
|
|
2023
|
+
* @throws {RequiredError}
|
|
2024
|
+
*/
|
|
2025
|
+
getQualityIssues(requestParameters, options) {
|
|
2026
|
+
return localVarFp
|
|
2027
|
+
.getQualityIssues(requestParameters.workspaceId, options)
|
|
2028
|
+
.then((request) => request(axios, basePath));
|
|
2029
|
+
},
|
|
1877
2030
|
/**
|
|
1878
2031
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
1879
2032
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -1934,6 +2087,18 @@ export const ActionsApiFactory = function (configuration, basePath, axios) {
|
|
|
1934
2087
|
.retrieveResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, requestParameters.excludedTotalDimensions, requestParameters.xGDCCANCELTOKEN, options)
|
|
1935
2088
|
.then((request) => request(axios, basePath));
|
|
1936
2089
|
},
|
|
2090
|
+
/**
|
|
2091
|
+
* Returns a list of tags for this workspace
|
|
2092
|
+
* @summary Get Analytics Catalog Tags
|
|
2093
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
2094
|
+
* @param {*} [options] Override http request option.
|
|
2095
|
+
* @throws {RequiredError}
|
|
2096
|
+
*/
|
|
2097
|
+
tags(requestParameters, options) {
|
|
2098
|
+
return localVarFp
|
|
2099
|
+
.tags(requestParameters.workspaceId, options)
|
|
2100
|
+
.then((request) => request(axios, basePath));
|
|
2101
|
+
},
|
|
1937
2102
|
/**
|
|
1938
2103
|
* Validates LLM endpoint with provided parameters.
|
|
1939
2104
|
* @summary Validate LLM Endpoint
|
|
@@ -2149,6 +2314,19 @@ export class ActionsApi extends BaseAPI {
|
|
|
2149
2314
|
.computeValidObjects(requestParameters.workspaceId, requestParameters.afmValidObjectsQuery, options)
|
|
2150
2315
|
.then((request) => request(this.axios, this.basePath));
|
|
2151
2316
|
}
|
|
2317
|
+
/**
|
|
2318
|
+
* Returns a list of Users who created any object for this workspace
|
|
2319
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
2320
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
2321
|
+
* @param {*} [options] Override http request option.
|
|
2322
|
+
* @throws {RequiredError}
|
|
2323
|
+
* @memberof ActionsApi
|
|
2324
|
+
*/
|
|
2325
|
+
createdBy(requestParameters, options) {
|
|
2326
|
+
return ActionsApiFp(this.configuration)
|
|
2327
|
+
.createdBy(requestParameters.workspaceId, options)
|
|
2328
|
+
.then((request) => request(this.axios, this.basePath));
|
|
2329
|
+
}
|
|
2152
2330
|
/**
|
|
2153
2331
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
2154
2332
|
* @summary AFM explain resource.
|
|
@@ -2188,6 +2366,19 @@ export class ActionsApi extends BaseAPI {
|
|
|
2188
2366
|
.forecastResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, options)
|
|
2189
2367
|
.then((request) => request(this.axios, this.basePath));
|
|
2190
2368
|
}
|
|
2369
|
+
/**
|
|
2370
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
2371
|
+
* @summary Get Quality Issues
|
|
2372
|
+
* @param {ActionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
2373
|
+
* @param {*} [options] Override http request option.
|
|
2374
|
+
* @throws {RequiredError}
|
|
2375
|
+
* @memberof ActionsApi
|
|
2376
|
+
*/
|
|
2377
|
+
getQualityIssues(requestParameters, options) {
|
|
2378
|
+
return ActionsApiFp(this.configuration)
|
|
2379
|
+
.getQualityIssues(requestParameters.workspaceId, options)
|
|
2380
|
+
.then((request) => request(this.axios, this.basePath));
|
|
2381
|
+
}
|
|
2191
2382
|
/**
|
|
2192
2383
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
2193
2384
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -2253,6 +2444,19 @@ export class ActionsApi extends BaseAPI {
|
|
|
2253
2444
|
.retrieveResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, requestParameters.excludedTotalDimensions, requestParameters.xGDCCANCELTOKEN, options)
|
|
2254
2445
|
.then((request) => request(this.axios, this.basePath));
|
|
2255
2446
|
}
|
|
2447
|
+
/**
|
|
2448
|
+
* Returns a list of tags for this workspace
|
|
2449
|
+
* @summary Get Analytics Catalog Tags
|
|
2450
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
2451
|
+
* @param {*} [options] Override http request option.
|
|
2452
|
+
* @throws {RequiredError}
|
|
2453
|
+
* @memberof ActionsApi
|
|
2454
|
+
*/
|
|
2455
|
+
tags(requestParameters, options) {
|
|
2456
|
+
return ActionsApiFp(this.configuration)
|
|
2457
|
+
.tags(requestParameters.workspaceId, options)
|
|
2458
|
+
.then((request) => request(this.axios, this.basePath));
|
|
2459
|
+
}
|
|
2256
2460
|
/**
|
|
2257
2461
|
* Validates LLM endpoint with provided parameters.
|
|
2258
2462
|
* @summary Validate LLM Endpoint
|
|
@@ -3461,6 +3665,38 @@ export const SmartFunctionsApiAxiosParamCreator = function (configuration) {
|
|
|
3461
3665
|
options: localVarRequestOptions,
|
|
3462
3666
|
};
|
|
3463
3667
|
},
|
|
3668
|
+
/**
|
|
3669
|
+
* Returns a list of Users who created any object for this workspace
|
|
3670
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
3671
|
+
* @param {string} workspaceId Workspace identifier
|
|
3672
|
+
* @param {*} [options] Override http request option.
|
|
3673
|
+
* @throws {RequiredError}
|
|
3674
|
+
*/
|
|
3675
|
+
createdBy: async (workspaceId, options = {}) => {
|
|
3676
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3677
|
+
assertParamExists("createdBy", "workspaceId", workspaceId);
|
|
3678
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/createdBy`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
3679
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3680
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3681
|
+
let baseOptions;
|
|
3682
|
+
if (configuration) {
|
|
3683
|
+
baseOptions = configuration.baseOptions;
|
|
3684
|
+
}
|
|
3685
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3686
|
+
const localVarHeaderParameter = {};
|
|
3687
|
+
const localVarQueryParameter = {};
|
|
3688
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3689
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3690
|
+
localVarRequestOptions.headers = {
|
|
3691
|
+
...localVarHeaderParameter,
|
|
3692
|
+
...headersFromBaseOptions,
|
|
3693
|
+
...options.headers,
|
|
3694
|
+
};
|
|
3695
|
+
return {
|
|
3696
|
+
url: toPathString(localVarUrlObj),
|
|
3697
|
+
options: localVarRequestOptions,
|
|
3698
|
+
};
|
|
3699
|
+
},
|
|
3464
3700
|
/**
|
|
3465
3701
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
3466
3702
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -3556,6 +3792,38 @@ export const SmartFunctionsApiAxiosParamCreator = function (configuration) {
|
|
|
3556
3792
|
options: localVarRequestOptions,
|
|
3557
3793
|
};
|
|
3558
3794
|
},
|
|
3795
|
+
/**
|
|
3796
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
3797
|
+
* @summary Get Quality Issues
|
|
3798
|
+
* @param {string} workspaceId Workspace identifier
|
|
3799
|
+
* @param {*} [options] Override http request option.
|
|
3800
|
+
* @throws {RequiredError}
|
|
3801
|
+
*/
|
|
3802
|
+
getQualityIssues: async (workspaceId, options = {}) => {
|
|
3803
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3804
|
+
assertParamExists("getQualityIssues", "workspaceId", workspaceId);
|
|
3805
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/issues`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
3806
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3807
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3808
|
+
let baseOptions;
|
|
3809
|
+
if (configuration) {
|
|
3810
|
+
baseOptions = configuration.baseOptions;
|
|
3811
|
+
}
|
|
3812
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3813
|
+
const localVarHeaderParameter = {};
|
|
3814
|
+
const localVarQueryParameter = {};
|
|
3815
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3816
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3817
|
+
localVarRequestOptions.headers = {
|
|
3818
|
+
...localVarHeaderParameter,
|
|
3819
|
+
...headersFromBaseOptions,
|
|
3820
|
+
...options.headers,
|
|
3821
|
+
};
|
|
3822
|
+
return {
|
|
3823
|
+
url: toPathString(localVarUrlObj),
|
|
3824
|
+
options: localVarRequestOptions,
|
|
3825
|
+
};
|
|
3826
|
+
},
|
|
3559
3827
|
/**
|
|
3560
3828
|
* Returns a list of available LLM Endpoints
|
|
3561
3829
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3588,6 +3856,38 @@ export const SmartFunctionsApiAxiosParamCreator = function (configuration) {
|
|
|
3588
3856
|
options: localVarRequestOptions,
|
|
3589
3857
|
};
|
|
3590
3858
|
},
|
|
3859
|
+
/**
|
|
3860
|
+
* Returns a list of tags for this workspace
|
|
3861
|
+
* @summary Get Analytics Catalog Tags
|
|
3862
|
+
* @param {string} workspaceId Workspace identifier
|
|
3863
|
+
* @param {*} [options] Override http request option.
|
|
3864
|
+
* @throws {RequiredError}
|
|
3865
|
+
*/
|
|
3866
|
+
tags: async (workspaceId, options = {}) => {
|
|
3867
|
+
// verify required parameter 'workspaceId' is not null or undefined
|
|
3868
|
+
assertParamExists("tags", "workspaceId", workspaceId);
|
|
3869
|
+
const localVarPath = `/api/v1/actions/workspaces/{workspaceId}/ai/analyticsCatalog/tags`.replace(`{${"workspaceId"}}`, encodeURIComponent(String(workspaceId)));
|
|
3870
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3871
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3872
|
+
let baseOptions;
|
|
3873
|
+
if (configuration) {
|
|
3874
|
+
baseOptions = configuration.baseOptions;
|
|
3875
|
+
}
|
|
3876
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3877
|
+
const localVarHeaderParameter = {};
|
|
3878
|
+
const localVarQueryParameter = {};
|
|
3879
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3880
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3881
|
+
localVarRequestOptions.headers = {
|
|
3882
|
+
...localVarHeaderParameter,
|
|
3883
|
+
...headersFromBaseOptions,
|
|
3884
|
+
...options.headers,
|
|
3885
|
+
};
|
|
3886
|
+
return {
|
|
3887
|
+
url: toPathString(localVarUrlObj),
|
|
3888
|
+
options: localVarRequestOptions,
|
|
3889
|
+
};
|
|
3890
|
+
},
|
|
3591
3891
|
/**
|
|
3592
3892
|
* Validates LLM endpoint with provided parameters.
|
|
3593
3893
|
* @summary Validate LLM Endpoint
|
|
@@ -3789,6 +4089,17 @@ export const SmartFunctionsApiFp = function (configuration) {
|
|
|
3789
4089
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clusteringResult(workspaceId, resultId, offset, limit, options);
|
|
3790
4090
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3791
4091
|
},
|
|
4092
|
+
/**
|
|
4093
|
+
* Returns a list of Users who created any object for this workspace
|
|
4094
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
4095
|
+
* @param {string} workspaceId Workspace identifier
|
|
4096
|
+
* @param {*} [options] Override http request option.
|
|
4097
|
+
* @throws {RequiredError}
|
|
4098
|
+
*/
|
|
4099
|
+
async createdBy(workspaceId, options) {
|
|
4100
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createdBy(workspaceId, options);
|
|
4101
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4102
|
+
},
|
|
3792
4103
|
/**
|
|
3793
4104
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
3794
4105
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -3817,6 +4128,17 @@ export const SmartFunctionsApiFp = function (configuration) {
|
|
|
3817
4128
|
const localVarAxiosArgs = await localVarAxiosParamCreator.forecastResult(workspaceId, resultId, offset, limit, options);
|
|
3818
4129
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3819
4130
|
},
|
|
4131
|
+
/**
|
|
4132
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
4133
|
+
* @summary Get Quality Issues
|
|
4134
|
+
* @param {string} workspaceId Workspace identifier
|
|
4135
|
+
* @param {*} [options] Override http request option.
|
|
4136
|
+
* @throws {RequiredError}
|
|
4137
|
+
*/
|
|
4138
|
+
async getQualityIssues(workspaceId, options) {
|
|
4139
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getQualityIssues(workspaceId, options);
|
|
4140
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4141
|
+
},
|
|
3820
4142
|
/**
|
|
3821
4143
|
* Returns a list of available LLM Endpoints
|
|
3822
4144
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3828,6 +4150,17 @@ export const SmartFunctionsApiFp = function (configuration) {
|
|
|
3828
4150
|
const localVarAxiosArgs = await localVarAxiosParamCreator.resolveLlmEndpoints(workspaceId, options);
|
|
3829
4151
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3830
4152
|
},
|
|
4153
|
+
/**
|
|
4154
|
+
* Returns a list of tags for this workspace
|
|
4155
|
+
* @summary Get Analytics Catalog Tags
|
|
4156
|
+
* @param {string} workspaceId Workspace identifier
|
|
4157
|
+
* @param {*} [options] Override http request option.
|
|
4158
|
+
* @throws {RequiredError}
|
|
4159
|
+
*/
|
|
4160
|
+
async tags(workspaceId, options) {
|
|
4161
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.tags(workspaceId, options);
|
|
4162
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4163
|
+
},
|
|
3831
4164
|
/**
|
|
3832
4165
|
* Validates LLM endpoint with provided parameters.
|
|
3833
4166
|
* @summary Validate LLM Endpoint
|
|
@@ -3968,6 +4301,18 @@ export const SmartFunctionsApiFactory = function (configuration, basePath, axios
|
|
|
3968
4301
|
.clusteringResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, options)
|
|
3969
4302
|
.then((request) => request(axios, basePath));
|
|
3970
4303
|
},
|
|
4304
|
+
/**
|
|
4305
|
+
* Returns a list of Users who created any object for this workspace
|
|
4306
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
4307
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
4308
|
+
* @param {*} [options] Override http request option.
|
|
4309
|
+
* @throws {RequiredError}
|
|
4310
|
+
*/
|
|
4311
|
+
createdBy(requestParameters, options) {
|
|
4312
|
+
return localVarFp
|
|
4313
|
+
.createdBy(requestParameters.workspaceId, options)
|
|
4314
|
+
.then((request) => request(axios, basePath));
|
|
4315
|
+
},
|
|
3971
4316
|
/**
|
|
3972
4317
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
3973
4318
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -3992,6 +4337,18 @@ export const SmartFunctionsApiFactory = function (configuration, basePath, axios
|
|
|
3992
4337
|
.forecastResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, options)
|
|
3993
4338
|
.then((request) => request(axios, basePath));
|
|
3994
4339
|
},
|
|
4340
|
+
/**
|
|
4341
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
4342
|
+
* @summary Get Quality Issues
|
|
4343
|
+
* @param {SmartFunctionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
4344
|
+
* @param {*} [options] Override http request option.
|
|
4345
|
+
* @throws {RequiredError}
|
|
4346
|
+
*/
|
|
4347
|
+
getQualityIssues(requestParameters, options) {
|
|
4348
|
+
return localVarFp
|
|
4349
|
+
.getQualityIssues(requestParameters.workspaceId, options)
|
|
4350
|
+
.then((request) => request(axios, basePath));
|
|
4351
|
+
},
|
|
3995
4352
|
/**
|
|
3996
4353
|
* Returns a list of available LLM Endpoints
|
|
3997
4354
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4004,6 +4361,18 @@ export const SmartFunctionsApiFactory = function (configuration, basePath, axios
|
|
|
4004
4361
|
.resolveLlmEndpoints(requestParameters.workspaceId, options)
|
|
4005
4362
|
.then((request) => request(axios, basePath));
|
|
4006
4363
|
},
|
|
4364
|
+
/**
|
|
4365
|
+
* Returns a list of tags for this workspace
|
|
4366
|
+
* @summary Get Analytics Catalog Tags
|
|
4367
|
+
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
4368
|
+
* @param {*} [options] Override http request option.
|
|
4369
|
+
* @throws {RequiredError}
|
|
4370
|
+
*/
|
|
4371
|
+
tags(requestParameters, options) {
|
|
4372
|
+
return localVarFp
|
|
4373
|
+
.tags(requestParameters.workspaceId, options)
|
|
4374
|
+
.then((request) => request(axios, basePath));
|
|
4375
|
+
},
|
|
4007
4376
|
/**
|
|
4008
4377
|
* Validates LLM endpoint with provided parameters.
|
|
4009
4378
|
* @summary Validate LLM Endpoint
|
|
@@ -4154,6 +4523,19 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
4154
4523
|
.clusteringResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, options)
|
|
4155
4524
|
.then((request) => request(this.axios, this.basePath));
|
|
4156
4525
|
}
|
|
4526
|
+
/**
|
|
4527
|
+
* Returns a list of Users who created any object for this workspace
|
|
4528
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
4529
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
4530
|
+
* @param {*} [options] Override http request option.
|
|
4531
|
+
* @throws {RequiredError}
|
|
4532
|
+
* @memberof SmartFunctionsApi
|
|
4533
|
+
*/
|
|
4534
|
+
createdBy(requestParameters, options) {
|
|
4535
|
+
return SmartFunctionsApiFp(this.configuration)
|
|
4536
|
+
.createdBy(requestParameters.workspaceId, options)
|
|
4537
|
+
.then((request) => request(this.axios, this.basePath));
|
|
4538
|
+
}
|
|
4157
4539
|
/**
|
|
4158
4540
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
4159
4541
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -4180,6 +4562,19 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
4180
4562
|
.forecastResult(requestParameters.workspaceId, requestParameters.resultId, requestParameters.offset, requestParameters.limit, options)
|
|
4181
4563
|
.then((request) => request(this.axios, this.basePath));
|
|
4182
4564
|
}
|
|
4565
|
+
/**
|
|
4566
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
4567
|
+
* @summary Get Quality Issues
|
|
4568
|
+
* @param {SmartFunctionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
4569
|
+
* @param {*} [options] Override http request option.
|
|
4570
|
+
* @throws {RequiredError}
|
|
4571
|
+
* @memberof SmartFunctionsApi
|
|
4572
|
+
*/
|
|
4573
|
+
getQualityIssues(requestParameters, options) {
|
|
4574
|
+
return SmartFunctionsApiFp(this.configuration)
|
|
4575
|
+
.getQualityIssues(requestParameters.workspaceId, options)
|
|
4576
|
+
.then((request) => request(this.axios, this.basePath));
|
|
4577
|
+
}
|
|
4183
4578
|
/**
|
|
4184
4579
|
* Returns a list of available LLM Endpoints
|
|
4185
4580
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4193,6 +4588,19 @@ export class SmartFunctionsApi extends BaseAPI {
|
|
|
4193
4588
|
.resolveLlmEndpoints(requestParameters.workspaceId, options)
|
|
4194
4589
|
.then((request) => request(this.axios, this.basePath));
|
|
4195
4590
|
}
|
|
4591
|
+
/**
|
|
4592
|
+
* Returns a list of tags for this workspace
|
|
4593
|
+
* @summary Get Analytics Catalog Tags
|
|
4594
|
+
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
4595
|
+
* @param {*} [options] Override http request option.
|
|
4596
|
+
* @throws {RequiredError}
|
|
4597
|
+
* @memberof SmartFunctionsApi
|
|
4598
|
+
*/
|
|
4599
|
+
tags(requestParameters, options) {
|
|
4600
|
+
return SmartFunctionsApiFp(this.configuration)
|
|
4601
|
+
.tags(requestParameters.workspaceId, options)
|
|
4602
|
+
.then((request) => request(this.axios, this.basePath));
|
|
4603
|
+
}
|
|
4196
4604
|
/**
|
|
4197
4605
|
* Validates LLM endpoint with provided parameters.
|
|
4198
4606
|
* @summary Validate LLM Endpoint
|