@gooddata/api-client-tiger 11.2.0-alpha.5 → 11.2.0
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.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +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
|
@@ -215,6 +215,36 @@ export type AfmValidObjectsQueryTypesEnum = (typeof AfmValidObjectsQueryTypesEnu
|
|
|
215
215
|
export interface AfmValidObjectsResponse {
|
|
216
216
|
items: Array<RestApiIdentifier>;
|
|
217
217
|
}
|
|
218
|
+
export interface AnalyticsCatalogCreatedBy {
|
|
219
|
+
/**
|
|
220
|
+
* Users who created any object in the catalog
|
|
221
|
+
*/
|
|
222
|
+
users: Array<AnalyticsCatalogUser>;
|
|
223
|
+
/**
|
|
224
|
+
* Reasoning for error states
|
|
225
|
+
*/
|
|
226
|
+
reasoning: string;
|
|
227
|
+
}
|
|
228
|
+
export interface AnalyticsCatalogTags {
|
|
229
|
+
tags: Array<string>;
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
* Users who created any object in the catalog
|
|
233
|
+
*/
|
|
234
|
+
export interface AnalyticsCatalogUser {
|
|
235
|
+
/**
|
|
236
|
+
* User ID of the user who created any objects
|
|
237
|
+
*/
|
|
238
|
+
userId: string;
|
|
239
|
+
/**
|
|
240
|
+
* First name of the user who created any objects
|
|
241
|
+
*/
|
|
242
|
+
firstname: string;
|
|
243
|
+
/**
|
|
244
|
+
* Last name of the user who created any objects
|
|
245
|
+
*/
|
|
246
|
+
lastname: string;
|
|
247
|
+
}
|
|
218
248
|
export interface AnomalyDetectionRequest {
|
|
219
249
|
/**
|
|
220
250
|
* Anomaly detection sensitivity.
|
|
@@ -1092,6 +1122,9 @@ export interface FoundObjects {
|
|
|
1092
1122
|
*/
|
|
1093
1123
|
reasoning: string;
|
|
1094
1124
|
}
|
|
1125
|
+
export interface GetQualityIssuesResponse {
|
|
1126
|
+
issues: Array<QualityIssue>;
|
|
1127
|
+
}
|
|
1095
1128
|
/**
|
|
1096
1129
|
* Contains the information specific for a group of headers. These groups correlate to attributes and metric groups.
|
|
1097
1130
|
*/
|
|
@@ -1370,6 +1403,18 @@ export interface PositiveAttributeFilterPositiveAttributeFilter {
|
|
|
1370
1403
|
applyOnResult?: boolean;
|
|
1371
1404
|
label: AfmIdentifier;
|
|
1372
1405
|
}
|
|
1406
|
+
export interface QualityIssue {
|
|
1407
|
+
objects: Array<QualityIssueObject>;
|
|
1408
|
+
severity: string;
|
|
1409
|
+
code: string;
|
|
1410
|
+
detail: {
|
|
1411
|
+
[key: string]: object;
|
|
1412
|
+
};
|
|
1413
|
+
}
|
|
1414
|
+
export interface QualityIssueObject {
|
|
1415
|
+
type: string;
|
|
1416
|
+
id: string;
|
|
1417
|
+
}
|
|
1373
1418
|
/**
|
|
1374
1419
|
* Filter the result by comparing specified metric to given range of values.
|
|
1375
1420
|
*/
|
|
@@ -1616,6 +1661,10 @@ export interface SearchRequest {
|
|
|
1616
1661
|
* Score, above which we return found objects. Below this score objects are not relevant.
|
|
1617
1662
|
*/
|
|
1618
1663
|
relevantScoreThreshold?: number;
|
|
1664
|
+
/**
|
|
1665
|
+
* If true, includes hidden objects in search results. If false (default), excludes objects where isHidden=true.
|
|
1666
|
+
*/
|
|
1667
|
+
includeHidden?: boolean;
|
|
1619
1668
|
}
|
|
1620
1669
|
export declare const SearchRequestObjectTypesEnum: {
|
|
1621
1670
|
readonly ATTRIBUTE: "attribute";
|
|
@@ -1686,6 +1735,10 @@ export interface SearchResultObject {
|
|
|
1686
1735
|
* Result score for exact match(id/title). 1/1000. Other scores are multiplied by this.
|
|
1687
1736
|
*/
|
|
1688
1737
|
scoreExactMatch?: number;
|
|
1738
|
+
/**
|
|
1739
|
+
* If true, this object is hidden from AI search results by default.
|
|
1740
|
+
*/
|
|
1741
|
+
isHidden?: boolean;
|
|
1689
1742
|
}
|
|
1690
1743
|
/**
|
|
1691
1744
|
* Metric defined by referencing a MAQL metric or an LDM fact object with aggregation.
|
|
@@ -2073,6 +2126,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2073
2126
|
* @throws {RequiredError}
|
|
2074
2127
|
*/
|
|
2075
2128
|
computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2129
|
+
/**
|
|
2130
|
+
* Returns a list of Users who created any object for this workspace
|
|
2131
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
2132
|
+
* @param {string} workspaceId Workspace identifier
|
|
2133
|
+
* @param {*} [options] Override http request option.
|
|
2134
|
+
* @throws {RequiredError}
|
|
2135
|
+
*/
|
|
2136
|
+
createdBy: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2076
2137
|
/**
|
|
2077
2138
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
2078
2139
|
* @summary AFM explain resource.
|
|
@@ -2105,6 +2166,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2105
2166
|
* @throws {RequiredError}
|
|
2106
2167
|
*/
|
|
2107
2168
|
forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2169
|
+
/**
|
|
2170
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
2171
|
+
* @summary Get Quality Issues
|
|
2172
|
+
* @param {string} workspaceId Workspace identifier
|
|
2173
|
+
* @param {*} [options] Override http request option.
|
|
2174
|
+
* @throws {RequiredError}
|
|
2175
|
+
*/
|
|
2176
|
+
getQualityIssues: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2108
2177
|
/**
|
|
2109
2178
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
2110
2179
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -2156,6 +2225,14 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2156
2225
|
* @throws {RequiredError}
|
|
2157
2226
|
*/
|
|
2158
2227
|
retrieveResult: (workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2228
|
+
/**
|
|
2229
|
+
* Returns a list of tags for this workspace
|
|
2230
|
+
* @summary Get Analytics Catalog Tags
|
|
2231
|
+
* @param {string} workspaceId Workspace identifier
|
|
2232
|
+
* @param {*} [options] Override http request option.
|
|
2233
|
+
* @throws {RequiredError}
|
|
2234
|
+
*/
|
|
2235
|
+
tags: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2159
2236
|
/**
|
|
2160
2237
|
* Validates LLM endpoint with provided parameters.
|
|
2161
2238
|
* @summary Validate LLM Endpoint
|
|
@@ -2317,6 +2394,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2317
2394
|
* @throws {RequiredError}
|
|
2318
2395
|
*/
|
|
2319
2396
|
computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
|
|
2397
|
+
/**
|
|
2398
|
+
* Returns a list of Users who created any object for this workspace
|
|
2399
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
2400
|
+
* @param {string} workspaceId Workspace identifier
|
|
2401
|
+
* @param {*} [options] Override http request option.
|
|
2402
|
+
* @throws {RequiredError}
|
|
2403
|
+
*/
|
|
2404
|
+
createdBy(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsCatalogCreatedBy>>;
|
|
2320
2405
|
/**
|
|
2321
2406
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
2322
2407
|
* @summary AFM explain resource.
|
|
@@ -2349,6 +2434,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2349
2434
|
* @throws {RequiredError}
|
|
2350
2435
|
*/
|
|
2351
2436
|
forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
|
|
2437
|
+
/**
|
|
2438
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
2439
|
+
* @summary Get Quality Issues
|
|
2440
|
+
* @param {string} workspaceId Workspace identifier
|
|
2441
|
+
* @param {*} [options] Override http request option.
|
|
2442
|
+
* @throws {RequiredError}
|
|
2443
|
+
*/
|
|
2444
|
+
getQualityIssues(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetQualityIssuesResponse>>;
|
|
2352
2445
|
/**
|
|
2353
2446
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
2354
2447
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -2400,6 +2493,14 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
|
2400
2493
|
* @throws {RequiredError}
|
|
2401
2494
|
*/
|
|
2402
2495
|
retrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecutionResult>>;
|
|
2496
|
+
/**
|
|
2497
|
+
* Returns a list of tags for this workspace
|
|
2498
|
+
* @summary Get Analytics Catalog Tags
|
|
2499
|
+
* @param {string} workspaceId Workspace identifier
|
|
2500
|
+
* @param {*} [options] Override http request option.
|
|
2501
|
+
* @throws {RequiredError}
|
|
2502
|
+
*/
|
|
2503
|
+
tags(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsCatalogTags>>;
|
|
2403
2504
|
/**
|
|
2404
2505
|
* Validates LLM endpoint with provided parameters.
|
|
2405
2506
|
* @summary Validate LLM Endpoint
|
|
@@ -2535,6 +2636,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2535
2636
|
* @throws {RequiredError}
|
|
2536
2637
|
*/
|
|
2537
2638
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
2639
|
+
/**
|
|
2640
|
+
* Returns a list of Users who created any object for this workspace
|
|
2641
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
2642
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
2643
|
+
* @param {*} [options] Override http request option.
|
|
2644
|
+
* @throws {RequiredError}
|
|
2645
|
+
*/
|
|
2646
|
+
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
2538
2647
|
/**
|
|
2539
2648
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
2540
2649
|
* @summary AFM explain resource.
|
|
@@ -2559,6 +2668,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2559
2668
|
* @throws {RequiredError}
|
|
2560
2669
|
*/
|
|
2561
2670
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
2671
|
+
/**
|
|
2672
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
2673
|
+
* @summary Get Quality Issues
|
|
2674
|
+
* @param {ActionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
2675
|
+
* @param {*} [options] Override http request option.
|
|
2676
|
+
* @throws {RequiredError}
|
|
2677
|
+
*/
|
|
2678
|
+
getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
|
|
2562
2679
|
/**
|
|
2563
2680
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
2564
2681
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -2599,6 +2716,14 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
|
|
|
2599
2716
|
* @throws {RequiredError}
|
|
2600
2717
|
*/
|
|
2601
2718
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
2719
|
+
/**
|
|
2720
|
+
* Returns a list of tags for this workspace
|
|
2721
|
+
* @summary Get Analytics Catalog Tags
|
|
2722
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
2723
|
+
* @param {*} [options] Override http request option.
|
|
2724
|
+
* @throws {RequiredError}
|
|
2725
|
+
*/
|
|
2726
|
+
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
2602
2727
|
/**
|
|
2603
2728
|
* Validates LLM endpoint with provided parameters.
|
|
2604
2729
|
* @summary Validate LLM Endpoint
|
|
@@ -2748,6 +2873,15 @@ export interface ActionsApiInterface {
|
|
|
2748
2873
|
* @memberof ActionsApiInterface
|
|
2749
2874
|
*/
|
|
2750
2875
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
2876
|
+
/**
|
|
2877
|
+
* Returns a list of Users who created any object for this workspace
|
|
2878
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
2879
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
2880
|
+
* @param {*} [options] Override http request option.
|
|
2881
|
+
* @throws {RequiredError}
|
|
2882
|
+
* @memberof ActionsApiInterface
|
|
2883
|
+
*/
|
|
2884
|
+
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
2751
2885
|
/**
|
|
2752
2886
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
2753
2887
|
* @summary AFM explain resource.
|
|
@@ -2775,6 +2909,15 @@ export interface ActionsApiInterface {
|
|
|
2775
2909
|
* @memberof ActionsApiInterface
|
|
2776
2910
|
*/
|
|
2777
2911
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
2912
|
+
/**
|
|
2913
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
2914
|
+
* @summary Get Quality Issues
|
|
2915
|
+
* @param {ActionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
2916
|
+
* @param {*} [options] Override http request option.
|
|
2917
|
+
* @throws {RequiredError}
|
|
2918
|
+
* @memberof ActionsApiInterface
|
|
2919
|
+
*/
|
|
2920
|
+
getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
|
|
2778
2921
|
/**
|
|
2779
2922
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
2780
2923
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -2820,6 +2963,15 @@ export interface ActionsApiInterface {
|
|
|
2820
2963
|
* @memberof ActionsApiInterface
|
|
2821
2964
|
*/
|
|
2822
2965
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
2966
|
+
/**
|
|
2967
|
+
* Returns a list of tags for this workspace
|
|
2968
|
+
* @summary Get Analytics Catalog Tags
|
|
2969
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
2970
|
+
* @param {*} [options] Override http request option.
|
|
2971
|
+
* @throws {RequiredError}
|
|
2972
|
+
* @memberof ActionsApiInterface
|
|
2973
|
+
*/
|
|
2974
|
+
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
2823
2975
|
/**
|
|
2824
2976
|
* Validates LLM endpoint with provided parameters.
|
|
2825
2977
|
* @summary Validate LLM Endpoint
|
|
@@ -3177,6 +3329,19 @@ export interface ActionsApiComputeValidObjectsRequest {
|
|
|
3177
3329
|
*/
|
|
3178
3330
|
readonly afmValidObjectsQuery: AfmValidObjectsQuery;
|
|
3179
3331
|
}
|
|
3332
|
+
/**
|
|
3333
|
+
* Request parameters for createdBy operation in ActionsApi.
|
|
3334
|
+
* @export
|
|
3335
|
+
* @interface ActionsApiCreatedByRequest
|
|
3336
|
+
*/
|
|
3337
|
+
export interface ActionsApiCreatedByRequest {
|
|
3338
|
+
/**
|
|
3339
|
+
* Workspace identifier
|
|
3340
|
+
* @type {string}
|
|
3341
|
+
* @memberof ActionsApiCreatedBy
|
|
3342
|
+
*/
|
|
3343
|
+
readonly workspaceId: string;
|
|
3344
|
+
}
|
|
3180
3345
|
/**
|
|
3181
3346
|
* Request parameters for explainAFM operation in ActionsApi.
|
|
3182
3347
|
* @export
|
|
@@ -3264,6 +3429,19 @@ export interface ActionsApiForecastResultRequest {
|
|
|
3264
3429
|
*/
|
|
3265
3430
|
readonly limit?: number;
|
|
3266
3431
|
}
|
|
3432
|
+
/**
|
|
3433
|
+
* Request parameters for getQualityIssues operation in ActionsApi.
|
|
3434
|
+
* @export
|
|
3435
|
+
* @interface ActionsApiGetQualityIssuesRequest
|
|
3436
|
+
*/
|
|
3437
|
+
export interface ActionsApiGetQualityIssuesRequest {
|
|
3438
|
+
/**
|
|
3439
|
+
* Workspace identifier
|
|
3440
|
+
* @type {string}
|
|
3441
|
+
* @memberof ActionsApiGetQualityIssues
|
|
3442
|
+
*/
|
|
3443
|
+
readonly workspaceId: string;
|
|
3444
|
+
}
|
|
3267
3445
|
/**
|
|
3268
3446
|
* Request parameters for keyDriverAnalysis operation in ActionsApi.
|
|
3269
3447
|
* @export
|
|
@@ -3395,6 +3573,19 @@ export interface ActionsApiRetrieveResultRequest {
|
|
|
3395
3573
|
*/
|
|
3396
3574
|
readonly xGDCCANCELTOKEN?: string;
|
|
3397
3575
|
}
|
|
3576
|
+
/**
|
|
3577
|
+
* Request parameters for tags operation in ActionsApi.
|
|
3578
|
+
* @export
|
|
3579
|
+
* @interface ActionsApiTagsRequest
|
|
3580
|
+
*/
|
|
3581
|
+
export interface ActionsApiTagsRequest {
|
|
3582
|
+
/**
|
|
3583
|
+
* Workspace identifier
|
|
3584
|
+
* @type {string}
|
|
3585
|
+
* @memberof ActionsApiTags
|
|
3586
|
+
*/
|
|
3587
|
+
readonly workspaceId: string;
|
|
3588
|
+
}
|
|
3398
3589
|
/**
|
|
3399
3590
|
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
3400
3591
|
* @export
|
|
@@ -3560,6 +3751,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
3560
3751
|
* @memberof ActionsApi
|
|
3561
3752
|
*/
|
|
3562
3753
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AfmValidObjectsResponse, any, {}>>;
|
|
3754
|
+
/**
|
|
3755
|
+
* Returns a list of Users who created any object for this workspace
|
|
3756
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
3757
|
+
* @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
|
|
3758
|
+
* @param {*} [options] Override http request option.
|
|
3759
|
+
* @throws {RequiredError}
|
|
3760
|
+
* @memberof ActionsApi
|
|
3761
|
+
*/
|
|
3762
|
+
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsCatalogCreatedBy, any, {}>>;
|
|
3563
3763
|
/**
|
|
3564
3764
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
3565
3765
|
* @summary AFM explain resource.
|
|
@@ -3587,6 +3787,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
3587
3787
|
* @memberof ActionsApi
|
|
3588
3788
|
*/
|
|
3589
3789
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ForecastResult, any, {}>>;
|
|
3790
|
+
/**
|
|
3791
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
3792
|
+
* @summary Get Quality Issues
|
|
3793
|
+
* @param {ActionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
3794
|
+
* @param {*} [options] Override http request option.
|
|
3795
|
+
* @throws {RequiredError}
|
|
3796
|
+
* @memberof ActionsApi
|
|
3797
|
+
*/
|
|
3798
|
+
getQualityIssues(requestParameters: ActionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetQualityIssuesResponse, any, {}>>;
|
|
3590
3799
|
/**
|
|
3591
3800
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
3592
3801
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -3632,6 +3841,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
3632
3841
|
* @memberof ActionsApi
|
|
3633
3842
|
*/
|
|
3634
3843
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecutionResult, any, {}>>;
|
|
3844
|
+
/**
|
|
3845
|
+
* Returns a list of tags for this workspace
|
|
3846
|
+
* @summary Get Analytics Catalog Tags
|
|
3847
|
+
* @param {ActionsApiTagsRequest} requestParameters Request parameters.
|
|
3848
|
+
* @param {*} [options] Override http request option.
|
|
3849
|
+
* @throws {RequiredError}
|
|
3850
|
+
* @memberof ActionsApi
|
|
3851
|
+
*/
|
|
3852
|
+
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsCatalogTags, any, {}>>;
|
|
3635
3853
|
/**
|
|
3636
3854
|
* Validates LLM endpoint with provided parameters.
|
|
3637
3855
|
* @summary Validate LLM Endpoint
|
|
@@ -4448,6 +4666,14 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
4448
4666
|
* @throws {RequiredError}
|
|
4449
4667
|
*/
|
|
4450
4668
|
clusteringResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4669
|
+
/**
|
|
4670
|
+
* Returns a list of Users who created any object for this workspace
|
|
4671
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
4672
|
+
* @param {string} workspaceId Workspace identifier
|
|
4673
|
+
* @param {*} [options] Override http request option.
|
|
4674
|
+
* @throws {RequiredError}
|
|
4675
|
+
*/
|
|
4676
|
+
createdBy: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4451
4677
|
/**
|
|
4452
4678
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
4453
4679
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -4470,6 +4696,14 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
4470
4696
|
* @throws {RequiredError}
|
|
4471
4697
|
*/
|
|
4472
4698
|
forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4699
|
+
/**
|
|
4700
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
4701
|
+
* @summary Get Quality Issues
|
|
4702
|
+
* @param {string} workspaceId Workspace identifier
|
|
4703
|
+
* @param {*} [options] Override http request option.
|
|
4704
|
+
* @throws {RequiredError}
|
|
4705
|
+
*/
|
|
4706
|
+
getQualityIssues: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4473
4707
|
/**
|
|
4474
4708
|
* Returns a list of available LLM Endpoints
|
|
4475
4709
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4478,6 +4712,14 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
|
|
|
4478
4712
|
* @throws {RequiredError}
|
|
4479
4713
|
*/
|
|
4480
4714
|
resolveLlmEndpoints: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4715
|
+
/**
|
|
4716
|
+
* Returns a list of tags for this workspace
|
|
4717
|
+
* @summary Get Analytics Catalog Tags
|
|
4718
|
+
* @param {string} workspaceId Workspace identifier
|
|
4719
|
+
* @param {*} [options] Override http request option.
|
|
4720
|
+
* @throws {RequiredError}
|
|
4721
|
+
*/
|
|
4722
|
+
tags: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
4481
4723
|
/**
|
|
4482
4724
|
* Validates LLM endpoint with provided parameters.
|
|
4483
4725
|
* @summary Validate LLM Endpoint
|
|
@@ -4589,6 +4831,14 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
4589
4831
|
* @throws {RequiredError}
|
|
4590
4832
|
*/
|
|
4591
4833
|
clusteringResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClusteringResult>>;
|
|
4834
|
+
/**
|
|
4835
|
+
* Returns a list of Users who created any object for this workspace
|
|
4836
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
4837
|
+
* @param {string} workspaceId Workspace identifier
|
|
4838
|
+
* @param {*} [options] Override http request option.
|
|
4839
|
+
* @throws {RequiredError}
|
|
4840
|
+
*/
|
|
4841
|
+
createdBy(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsCatalogCreatedBy>>;
|
|
4592
4842
|
/**
|
|
4593
4843
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
4594
4844
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -4611,6 +4861,14 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
4611
4861
|
* @throws {RequiredError}
|
|
4612
4862
|
*/
|
|
4613
4863
|
forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
|
|
4864
|
+
/**
|
|
4865
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
4866
|
+
* @summary Get Quality Issues
|
|
4867
|
+
* @param {string} workspaceId Workspace identifier
|
|
4868
|
+
* @param {*} [options] Override http request option.
|
|
4869
|
+
* @throws {RequiredError}
|
|
4870
|
+
*/
|
|
4871
|
+
getQualityIssues(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetQualityIssuesResponse>>;
|
|
4614
4872
|
/**
|
|
4615
4873
|
* Returns a list of available LLM Endpoints
|
|
4616
4874
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4619,6 +4877,14 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
4619
4877
|
* @throws {RequiredError}
|
|
4620
4878
|
*/
|
|
4621
4879
|
resolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResolvedLlmEndpoints>>;
|
|
4880
|
+
/**
|
|
4881
|
+
* Returns a list of tags for this workspace
|
|
4882
|
+
* @summary Get Analytics Catalog Tags
|
|
4883
|
+
* @param {string} workspaceId Workspace identifier
|
|
4884
|
+
* @param {*} [options] Override http request option.
|
|
4885
|
+
* @throws {RequiredError}
|
|
4886
|
+
*/
|
|
4887
|
+
tags(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnalyticsCatalogTags>>;
|
|
4622
4888
|
/**
|
|
4623
4889
|
* Validates LLM endpoint with provided parameters.
|
|
4624
4890
|
* @summary Validate LLM Endpoint
|
|
@@ -4714,6 +4980,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
4714
4980
|
* @throws {RequiredError}
|
|
4715
4981
|
*/
|
|
4716
4982
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
|
|
4983
|
+
/**
|
|
4984
|
+
* Returns a list of Users who created any object for this workspace
|
|
4985
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
4986
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
4987
|
+
* @param {*} [options] Override http request option.
|
|
4988
|
+
* @throws {RequiredError}
|
|
4989
|
+
*/
|
|
4990
|
+
createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
4717
4991
|
/**
|
|
4718
4992
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
4719
4993
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -4730,6 +5004,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
4730
5004
|
* @throws {RequiredError}
|
|
4731
5005
|
*/
|
|
4732
5006
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
5007
|
+
/**
|
|
5008
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
5009
|
+
* @summary Get Quality Issues
|
|
5010
|
+
* @param {SmartFunctionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
5011
|
+
* @param {*} [options] Override http request option.
|
|
5012
|
+
* @throws {RequiredError}
|
|
5013
|
+
*/
|
|
5014
|
+
getQualityIssues(requestParameters: SmartFunctionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
|
|
4733
5015
|
/**
|
|
4734
5016
|
* Returns a list of available LLM Endpoints
|
|
4735
5017
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4738,6 +5020,14 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
|
|
|
4738
5020
|
* @throws {RequiredError}
|
|
4739
5021
|
*/
|
|
4740
5022
|
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
5023
|
+
/**
|
|
5024
|
+
* Returns a list of tags for this workspace
|
|
5025
|
+
* @summary Get Analytics Catalog Tags
|
|
5026
|
+
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
5027
|
+
* @param {*} [options] Override http request option.
|
|
5028
|
+
* @throws {RequiredError}
|
|
5029
|
+
*/
|
|
5030
|
+
tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
4741
5031
|
/**
|
|
4742
5032
|
* Validates LLM endpoint with provided parameters.
|
|
4743
5033
|
* @summary Validate LLM Endpoint
|
|
@@ -4842,6 +5132,15 @@ export interface SmartFunctionsApiInterface {
|
|
|
4842
5132
|
* @memberof SmartFunctionsApiInterface
|
|
4843
5133
|
*/
|
|
4844
5134
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
|
|
5135
|
+
/**
|
|
5136
|
+
* Returns a list of Users who created any object for this workspace
|
|
5137
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
5138
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5139
|
+
* @param {*} [options] Override http request option.
|
|
5140
|
+
* @throws {RequiredError}
|
|
5141
|
+
* @memberof SmartFunctionsApiInterface
|
|
5142
|
+
*/
|
|
5143
|
+
createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
4845
5144
|
/**
|
|
4846
5145
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
4847
5146
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -4860,6 +5159,24 @@ export interface SmartFunctionsApiInterface {
|
|
|
4860
5159
|
* @memberof SmartFunctionsApiInterface
|
|
4861
5160
|
*/
|
|
4862
5161
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
5162
|
+
/**
|
|
5163
|
+
* Returns a list of Users who created any object for this workspace
|
|
5164
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
5165
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5166
|
+
* @param {*} [options] Override http request option.
|
|
5167
|
+
* @throws {RequiredError}
|
|
5168
|
+
* @memberof SmartFunctionsApiInterface
|
|
5169
|
+
*/
|
|
5170
|
+
createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
5171
|
+
/**
|
|
5172
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
5173
|
+
* @summary Get Quality Issues
|
|
5174
|
+
* @param {SmartFunctionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
5175
|
+
* @param {*} [options] Override http request option.
|
|
5176
|
+
* @throws {RequiredError}
|
|
5177
|
+
* @memberof SmartFunctionsApiInterface
|
|
5178
|
+
*/
|
|
5179
|
+
getQualityIssues(requestParameters: SmartFunctionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): AxiosPromise<GetQualityIssuesResponse>;
|
|
4863
5180
|
/**
|
|
4864
5181
|
* Returns a list of available LLM Endpoints
|
|
4865
5182
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4869,6 +5186,15 @@ export interface SmartFunctionsApiInterface {
|
|
|
4869
5186
|
* @memberof SmartFunctionsApiInterface
|
|
4870
5187
|
*/
|
|
4871
5188
|
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
|
|
5189
|
+
/**
|
|
5190
|
+
* Returns a list of tags for this workspace
|
|
5191
|
+
* @summary Get Analytics Catalog Tags
|
|
5192
|
+
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
5193
|
+
* @param {*} [options] Override http request option.
|
|
5194
|
+
* @throws {RequiredError}
|
|
5195
|
+
* @memberof SmartFunctionsApiInterface
|
|
5196
|
+
*/
|
|
5197
|
+
tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
4872
5198
|
/**
|
|
4873
5199
|
* Validates LLM endpoint with provided parameters.
|
|
4874
5200
|
* @summary Validate LLM Endpoint
|
|
@@ -5101,6 +5427,19 @@ export interface SmartFunctionsApiClusteringResultRequest {
|
|
|
5101
5427
|
*/
|
|
5102
5428
|
readonly limit?: number;
|
|
5103
5429
|
}
|
|
5430
|
+
/**
|
|
5431
|
+
* Request parameters for createdBy operation in SmartFunctionsApi.
|
|
5432
|
+
* @export
|
|
5433
|
+
* @interface SmartFunctionsApiCreatedByRequest
|
|
5434
|
+
*/
|
|
5435
|
+
export interface SmartFunctionsApiCreatedByRequest {
|
|
5436
|
+
/**
|
|
5437
|
+
* Workspace identifier
|
|
5438
|
+
* @type {string}
|
|
5439
|
+
* @memberof SmartFunctionsApiCreatedBy
|
|
5440
|
+
*/
|
|
5441
|
+
readonly workspaceId: string;
|
|
5442
|
+
}
|
|
5104
5443
|
/**
|
|
5105
5444
|
* Request parameters for forecast operation in SmartFunctionsApi.
|
|
5106
5445
|
* @export
|
|
@@ -5163,6 +5502,19 @@ export interface SmartFunctionsApiForecastResultRequest {
|
|
|
5163
5502
|
*/
|
|
5164
5503
|
readonly limit?: number;
|
|
5165
5504
|
}
|
|
5505
|
+
/**
|
|
5506
|
+
* Request parameters for getQualityIssues operation in SmartFunctionsApi.
|
|
5507
|
+
* @export
|
|
5508
|
+
* @interface SmartFunctionsApiGetQualityIssuesRequest
|
|
5509
|
+
*/
|
|
5510
|
+
export interface SmartFunctionsApiGetQualityIssuesRequest {
|
|
5511
|
+
/**
|
|
5512
|
+
* Workspace identifier
|
|
5513
|
+
* @type {string}
|
|
5514
|
+
* @memberof SmartFunctionsApiGetQualityIssues
|
|
5515
|
+
*/
|
|
5516
|
+
readonly workspaceId: string;
|
|
5517
|
+
}
|
|
5166
5518
|
/**
|
|
5167
5519
|
* Request parameters for resolveLlmEndpoints operation in SmartFunctionsApi.
|
|
5168
5520
|
* @export
|
|
@@ -5176,6 +5528,19 @@ export interface SmartFunctionsApiResolveLlmEndpointsRequest {
|
|
|
5176
5528
|
*/
|
|
5177
5529
|
readonly workspaceId: string;
|
|
5178
5530
|
}
|
|
5531
|
+
/**
|
|
5532
|
+
* Request parameters for tags operation in SmartFunctionsApi.
|
|
5533
|
+
* @export
|
|
5534
|
+
* @interface SmartFunctionsApiTagsRequest
|
|
5535
|
+
*/
|
|
5536
|
+
export interface SmartFunctionsApiTagsRequest {
|
|
5537
|
+
/**
|
|
5538
|
+
* Workspace identifier
|
|
5539
|
+
* @type {string}
|
|
5540
|
+
* @memberof SmartFunctionsApiTags
|
|
5541
|
+
*/
|
|
5542
|
+
readonly workspaceId: string;
|
|
5543
|
+
}
|
|
5179
5544
|
/**
|
|
5180
5545
|
* Request parameters for validateLLMEndpoint operation in SmartFunctionsApi.
|
|
5181
5546
|
* @export
|
|
@@ -5296,6 +5661,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
5296
5661
|
* @memberof SmartFunctionsApi
|
|
5297
5662
|
*/
|
|
5298
5663
|
clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClusteringResult, any, {}>>;
|
|
5664
|
+
/**
|
|
5665
|
+
* Returns a list of Users who created any object for this workspace
|
|
5666
|
+
* @summary Get Analytics Catalog CreatedBy
|
|
5667
|
+
* @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
|
|
5668
|
+
* @param {*} [options] Override http request option.
|
|
5669
|
+
* @throws {RequiredError}
|
|
5670
|
+
* @memberof SmartFunctionsApi
|
|
5671
|
+
*/
|
|
5672
|
+
createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsCatalogCreatedBy, any, {}>>;
|
|
5299
5673
|
/**
|
|
5300
5674
|
* (BETA) Computes forecasted data points from the provided execution result and parameters.
|
|
5301
5675
|
* @summary (BETA) Smart functions - Forecast
|
|
@@ -5314,6 +5688,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
5314
5688
|
* @memberof SmartFunctionsApi
|
|
5315
5689
|
*/
|
|
5316
5690
|
forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ForecastResult, any, {}>>;
|
|
5691
|
+
/**
|
|
5692
|
+
* Returns metadata quality issues detected by the platform linter.
|
|
5693
|
+
* @summary Get Quality Issues
|
|
5694
|
+
* @param {SmartFunctionsApiGetQualityIssuesRequest} requestParameters Request parameters.
|
|
5695
|
+
* @param {*} [options] Override http request option.
|
|
5696
|
+
* @throws {RequiredError}
|
|
5697
|
+
* @memberof SmartFunctionsApi
|
|
5698
|
+
*/
|
|
5699
|
+
getQualityIssues(requestParameters: SmartFunctionsApiGetQualityIssuesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetQualityIssuesResponse, any, {}>>;
|
|
5317
5700
|
/**
|
|
5318
5701
|
* Returns a list of available LLM Endpoints
|
|
5319
5702
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5323,6 +5706,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
5323
5706
|
* @memberof SmartFunctionsApi
|
|
5324
5707
|
*/
|
|
5325
5708
|
resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResolvedLlmEndpoints, any, {}>>;
|
|
5709
|
+
/**
|
|
5710
|
+
* Returns a list of tags for this workspace
|
|
5711
|
+
* @summary Get Analytics Catalog Tags
|
|
5712
|
+
* @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
|
|
5713
|
+
* @param {*} [options] Override http request option.
|
|
5714
|
+
* @throws {RequiredError}
|
|
5715
|
+
* @memberof SmartFunctionsApi
|
|
5716
|
+
*/
|
|
5717
|
+
tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AnalyticsCatalogTags, any, {}>>;
|
|
5326
5718
|
/**
|
|
5327
5719
|
* Validates LLM endpoint with provided parameters.
|
|
5328
5720
|
* @summary Validate LLM Endpoint
|