@gooddata/api-client-tiger 11.13.0-alpha.6 → 11.14.0-alpha.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.js +1 -1
- package/esm/api-client-tiger.d.ts +197 -10
- package/esm/api-endpoints/locationStyle/index.d.ts +3 -0
- package/esm/api-endpoints/locationStyle/index.d.ts.map +1 -0
- package/esm/api-endpoints/locationStyle/index.js +3 -0
- package/esm/api-endpoints/locationStyle/index.js.map +1 -0
- package/esm/client.d.ts +4 -2
- package/esm/client.d.ts.map +1 -1
- package/esm/client.js +4 -1
- package/esm/client.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +347 -9
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +292 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +605 -364
- package/esm/locationStyle.d.ts +23 -0
- package/esm/locationStyle.d.ts.map +1 -0
- package/esm/locationStyle.js +17 -0
- package/esm/locationStyle.js.map +1 -0
- package/package.json +5 -4
|
@@ -382,7 +382,7 @@ export interface ChangeAnalysisParams {
|
|
|
382
382
|
/**
|
|
383
383
|
* Optional filters to apply
|
|
384
384
|
*/
|
|
385
|
-
filters: Array<
|
|
385
|
+
filters: Array<OutlierDetectionRequestFiltersInner>;
|
|
386
386
|
/**
|
|
387
387
|
* Whether to use smart attribute selection
|
|
388
388
|
*/
|
|
@@ -409,7 +409,7 @@ export interface ChangeAnalysisRequest {
|
|
|
409
409
|
/**
|
|
410
410
|
* Optional filters to apply.
|
|
411
411
|
*/
|
|
412
|
-
filters?: Array<
|
|
412
|
+
filters?: Array<OutlierDetectionRequestFiltersInner>;
|
|
413
413
|
/**
|
|
414
414
|
* Auxiliary measures
|
|
415
415
|
*/
|
|
@@ -419,10 +419,6 @@ export interface ChangeAnalysisRequest {
|
|
|
419
419
|
*/
|
|
420
420
|
useSmartAttributeSelection?: boolean;
|
|
421
421
|
}
|
|
422
|
-
/**
|
|
423
|
-
* @type ChangeAnalysisRequestFiltersInner
|
|
424
|
-
*/
|
|
425
|
-
export type ChangeAnalysisRequestFiltersInner = AbstractMeasureValueFilter | FilterDefinitionForSimpleMeasure | InlineFilterDefinition;
|
|
426
422
|
/**
|
|
427
423
|
* Response for change analysis computation
|
|
428
424
|
*/
|
|
@@ -475,6 +471,7 @@ export interface ChatHistoryInteraction {
|
|
|
475
471
|
* User feedback.
|
|
476
472
|
*/
|
|
477
473
|
userFeedback?: ChatHistoryInteractionUserFeedbackEnum;
|
|
474
|
+
reasoning?: Reasoning;
|
|
478
475
|
}
|
|
479
476
|
export type ChatHistoryInteractionUserFeedbackEnum = "POSITIVE" | "NEGATIVE" | "NONE";
|
|
480
477
|
export interface ChatHistoryRequest {
|
|
@@ -582,6 +579,7 @@ export interface ChatResult {
|
|
|
582
579
|
* Chat History interaction ID. Unique ID for each interaction.
|
|
583
580
|
*/
|
|
584
581
|
chatHistoryInteractionId?: string;
|
|
582
|
+
reasoning?: Reasoning;
|
|
585
583
|
}
|
|
586
584
|
export interface ChatUsageResponse {
|
|
587
585
|
/**
|
|
@@ -688,7 +686,7 @@ export interface CreatedVisualizations {
|
|
|
688
686
|
*/
|
|
689
687
|
objects: Array<CreatedVisualization>;
|
|
690
688
|
/**
|
|
691
|
-
* Reasoning from LLM. Description of how and why the answer was generated.
|
|
689
|
+
* DEPRECATED: Use top-level reasoning.steps instead. Reasoning from LLM. Description of how and why the answer was generated.
|
|
692
690
|
*/
|
|
693
691
|
reasoning: string;
|
|
694
692
|
/**
|
|
@@ -1052,7 +1050,7 @@ export interface FoundObjects {
|
|
|
1052
1050
|
*/
|
|
1053
1051
|
objects: Array<SearchResultObject>;
|
|
1054
1052
|
/**
|
|
1055
|
-
* Reasoning from LLM. Description of how and why the answer was generated.
|
|
1053
|
+
* DEPRECATED: Use top-level reasoning.steps instead. Reasoning from LLM. Description of how and why the answer was generated.
|
|
1056
1054
|
*/
|
|
1057
1055
|
reasoning: string;
|
|
1058
1056
|
}
|
|
@@ -1311,6 +1309,37 @@ export interface NegativeAttributeFilterNegativeAttributeFilter {
|
|
|
1311
1309
|
applyOnResult?: boolean;
|
|
1312
1310
|
label: AfmIdentifier;
|
|
1313
1311
|
}
|
|
1312
|
+
export interface OutlierDetectionRequest {
|
|
1313
|
+
measures: Array<MeasureItem>;
|
|
1314
|
+
dateAttribute: AttributeItem;
|
|
1315
|
+
/**
|
|
1316
|
+
* Optional filters to apply
|
|
1317
|
+
*/
|
|
1318
|
+
filters?: Array<OutlierDetectionRequestFiltersInner>;
|
|
1319
|
+
/**
|
|
1320
|
+
* Sensitivity level for outlier detection
|
|
1321
|
+
*/
|
|
1322
|
+
sensitivity: OutlierDetectionRequestSensitivityEnum;
|
|
1323
|
+
/**
|
|
1324
|
+
* Date granularity for anomaly detection. Only time-based granularities are supported (HOUR, DAY, WEEK, MONTH, QUARTER, YEAR).
|
|
1325
|
+
*/
|
|
1326
|
+
granularity: OutlierDetectionRequestGranularityEnum;
|
|
1327
|
+
}
|
|
1328
|
+
export type OutlierDetectionRequestSensitivityEnum = "LOW" | "MEDIUM" | "HIGH";
|
|
1329
|
+
export type OutlierDetectionRequestGranularityEnum = "HOUR" | "DAY" | "WEEK" | "MONTH" | "QUARTER" | "YEAR";
|
|
1330
|
+
/**
|
|
1331
|
+
* @type OutlierDetectionRequestFiltersInner
|
|
1332
|
+
*/
|
|
1333
|
+
export type OutlierDetectionRequestFiltersInner = AbstractMeasureValueFilter | FilterDefinitionForSimpleMeasure | InlineFilterDefinition;
|
|
1334
|
+
export interface OutlierDetectionResponse {
|
|
1335
|
+
links: ExecutionLinks;
|
|
1336
|
+
}
|
|
1337
|
+
export interface OutlierDetectionResult {
|
|
1338
|
+
attribute: Array<string>;
|
|
1339
|
+
values: {
|
|
1340
|
+
[key: string]: Array<number | null> | null;
|
|
1341
|
+
} | null;
|
|
1342
|
+
}
|
|
1314
1343
|
/**
|
|
1315
1344
|
* Current page description.
|
|
1316
1345
|
*/
|
|
@@ -1508,6 +1537,32 @@ export interface RankingFilterRankingFilter {
|
|
|
1508
1537
|
applyOnResult?: boolean;
|
|
1509
1538
|
}
|
|
1510
1539
|
export type RankingFilterRankingFilterOperatorEnum = "TOP" | "BOTTOM";
|
|
1540
|
+
/**
|
|
1541
|
+
* Reasoning wrapper containing steps taken during request handling.
|
|
1542
|
+
*/
|
|
1543
|
+
export interface Reasoning {
|
|
1544
|
+
/**
|
|
1545
|
+
* Steps taken during processing, showing the AI\'s reasoning process.
|
|
1546
|
+
*/
|
|
1547
|
+
steps: Array<ReasoningStep>;
|
|
1548
|
+
/**
|
|
1549
|
+
* Final answer/reasoning from the use case result.
|
|
1550
|
+
*/
|
|
1551
|
+
answer?: string;
|
|
1552
|
+
}
|
|
1553
|
+
/**
|
|
1554
|
+
* Steps taken during processing, showing the AI\'s reasoning process.
|
|
1555
|
+
*/
|
|
1556
|
+
export interface ReasoningStep {
|
|
1557
|
+
/**
|
|
1558
|
+
* Title describing this reasoning step.
|
|
1559
|
+
*/
|
|
1560
|
+
title: string;
|
|
1561
|
+
/**
|
|
1562
|
+
* Detailed thoughts/messages within this step.
|
|
1563
|
+
*/
|
|
1564
|
+
thoughts: Array<Thought>;
|
|
1565
|
+
}
|
|
1511
1566
|
/**
|
|
1512
1567
|
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
|
|
1513
1568
|
*/
|
|
@@ -1680,7 +1735,7 @@ export interface SearchResult {
|
|
|
1680
1735
|
results: Array<SearchResultObject>;
|
|
1681
1736
|
relationships: Array<SearchRelationshipObject>;
|
|
1682
1737
|
/**
|
|
1683
|
-
* If something is not working properly this field will contain explanation.
|
|
1738
|
+
* DEPRECATED: Use top-level reasoning.steps instead. If something is not working properly this field will contain explanation.
|
|
1684
1739
|
*/
|
|
1685
1740
|
reasoning: string;
|
|
1686
1741
|
}
|
|
@@ -1835,6 +1890,15 @@ export interface Suggestion {
|
|
|
1835
1890
|
*/
|
|
1836
1891
|
label: string;
|
|
1837
1892
|
}
|
|
1893
|
+
/**
|
|
1894
|
+
* Detailed thoughts/messages within this step.
|
|
1895
|
+
*/
|
|
1896
|
+
export interface Thought {
|
|
1897
|
+
/**
|
|
1898
|
+
* The text content of this thought.
|
|
1899
|
+
*/
|
|
1900
|
+
text: string;
|
|
1901
|
+
}
|
|
1838
1902
|
/**
|
|
1839
1903
|
* Definition of a total. There are two types of totals: grand totals and subtotals. Grand total data will be returned in a separate section of the result structure while subtotals are fully integrated into the main result data. The mechanism for this distinction is automatic and it\'s described in `TotalDimension`
|
|
1840
1904
|
*/
|
|
@@ -2224,6 +2288,29 @@ export declare function ActionsApiAxiosParamCreator_KeyDriverAnalysisResult(work
|
|
|
2224
2288
|
* @throws {RequiredError}
|
|
2225
2289
|
*/
|
|
2226
2290
|
export declare function ActionsApiAxiosParamCreator_MemoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2291
|
+
/**
|
|
2292
|
+
* (BETA) Computes outlier detection for the provided execution definition.
|
|
2293
|
+
* @summary (BETA) Outlier Detection
|
|
2294
|
+
* @param {string} workspaceId Workspace identifier
|
|
2295
|
+
* @param {OutlierDetectionRequest} outlierDetectionRequest
|
|
2296
|
+
* @param {boolean} [skipCache] Ignore all caches during execution of current request.
|
|
2297
|
+
* @param {*} [options] Override http request option.
|
|
2298
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2299
|
+
* @throws {RequiredError}
|
|
2300
|
+
*/
|
|
2301
|
+
export declare function ActionsApiAxiosParamCreator_OutlierDetection(workspaceId: string, outlierDetectionRequest: OutlierDetectionRequest, skipCache?: boolean, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2302
|
+
/**
|
|
2303
|
+
* (BETA) Gets outlier detection result.
|
|
2304
|
+
* @summary (BETA) Outlier Detection Result
|
|
2305
|
+
* @param {string} workspaceId Workspace identifier
|
|
2306
|
+
* @param {string} resultId Result ID
|
|
2307
|
+
* @param {number} [offset]
|
|
2308
|
+
* @param {number} [limit]
|
|
2309
|
+
* @param {*} [options] Override http request option.
|
|
2310
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2311
|
+
* @throws {RequiredError}
|
|
2312
|
+
*/
|
|
2313
|
+
export declare function ActionsApiAxiosParamCreator_OutlierDetectionResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2227
2314
|
/**
|
|
2228
2315
|
* Returns a list of available LLM Endpoints
|
|
2229
2316
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -2569,6 +2656,28 @@ export declare function ActionsApi_KeyDriverAnalysisResult(axios: AxiosInstance,
|
|
|
2569
2656
|
* @throws {RequiredError}
|
|
2570
2657
|
*/
|
|
2571
2658
|
export declare function ActionsApi_MemoryCreatedByUsers(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
2659
|
+
/**
|
|
2660
|
+
* (BETA) Computes outlier detection for the provided execution definition.
|
|
2661
|
+
* @summary (BETA) Outlier Detection
|
|
2662
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2663
|
+
* @param {string} basePath Base path.
|
|
2664
|
+
* @param {ActionsApiOutlierDetectionRequest} requestParameters Request parameters.
|
|
2665
|
+
* @param {*} [options] Override http request option.
|
|
2666
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2667
|
+
* @throws {RequiredError}
|
|
2668
|
+
*/
|
|
2669
|
+
export declare function ActionsApi_OutlierDetection(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiOutlierDetectionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<OutlierDetectionResponse>;
|
|
2670
|
+
/**
|
|
2671
|
+
* (BETA) Gets outlier detection result.
|
|
2672
|
+
* @summary (BETA) Outlier Detection Result
|
|
2673
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2674
|
+
* @param {string} basePath Base path.
|
|
2675
|
+
* @param {ActionsApiOutlierDetectionResultRequest} requestParameters Request parameters.
|
|
2676
|
+
* @param {*} [options] Override http request option.
|
|
2677
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2678
|
+
* @throws {RequiredError}
|
|
2679
|
+
*/
|
|
2680
|
+
export declare function ActionsApi_OutlierDetectionResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<OutlierDetectionResult>;
|
|
2572
2681
|
/**
|
|
2573
2682
|
* Returns a list of available LLM Endpoints
|
|
2574
2683
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -2877,6 +2986,24 @@ export interface ActionsApiInterface {
|
|
|
2877
2986
|
* @memberof ActionsApiInterface
|
|
2878
2987
|
*/
|
|
2879
2988
|
memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
2989
|
+
/**
|
|
2990
|
+
* (BETA) Computes outlier detection for the provided execution definition.
|
|
2991
|
+
* @summary (BETA) Outlier Detection
|
|
2992
|
+
* @param {ActionsApiOutlierDetectionRequest} requestParameters Request parameters.
|
|
2993
|
+
* @param {*} [options] Override http request option.
|
|
2994
|
+
* @throws {RequiredError}
|
|
2995
|
+
* @memberof ActionsApiInterface
|
|
2996
|
+
*/
|
|
2997
|
+
outlierDetection(requestParameters: ActionsApiOutlierDetectionRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResponse>;
|
|
2998
|
+
/**
|
|
2999
|
+
* (BETA) Gets outlier detection result.
|
|
3000
|
+
* @summary (BETA) Outlier Detection Result
|
|
3001
|
+
* @param {ActionsApiOutlierDetectionResultRequest} requestParameters Request parameters.
|
|
3002
|
+
* @param {*} [options] Override http request option.
|
|
3003
|
+
* @throws {RequiredError}
|
|
3004
|
+
* @memberof ActionsApiInterface
|
|
3005
|
+
*/
|
|
3006
|
+
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
2880
3007
|
/**
|
|
2881
3008
|
* Returns a list of available LLM Endpoints
|
|
2882
3009
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3518,6 +3645,62 @@ export interface ActionsApiMemoryCreatedByUsersRequest {
|
|
|
3518
3645
|
*/
|
|
3519
3646
|
readonly workspaceId: string;
|
|
3520
3647
|
}
|
|
3648
|
+
/**
|
|
3649
|
+
* Request parameters for outlierDetection operation in ActionsApi.
|
|
3650
|
+
* @export
|
|
3651
|
+
* @interface ActionsApiOutlierDetectionRequest
|
|
3652
|
+
*/
|
|
3653
|
+
export interface ActionsApiOutlierDetectionRequest {
|
|
3654
|
+
/**
|
|
3655
|
+
* Workspace identifier
|
|
3656
|
+
* @type {string}
|
|
3657
|
+
* @memberof ActionsApiOutlierDetection
|
|
3658
|
+
*/
|
|
3659
|
+
readonly workspaceId: string;
|
|
3660
|
+
/**
|
|
3661
|
+
*
|
|
3662
|
+
* @type {OutlierDetectionRequest}
|
|
3663
|
+
* @memberof ActionsApiOutlierDetection
|
|
3664
|
+
*/
|
|
3665
|
+
readonly outlierDetectionRequest: OutlierDetectionRequest;
|
|
3666
|
+
/**
|
|
3667
|
+
* Ignore all caches during execution of current request.
|
|
3668
|
+
* @type {boolean}
|
|
3669
|
+
* @memberof ActionsApiOutlierDetection
|
|
3670
|
+
*/
|
|
3671
|
+
readonly skipCache?: boolean;
|
|
3672
|
+
}
|
|
3673
|
+
/**
|
|
3674
|
+
* Request parameters for outlierDetectionResult operation in ActionsApi.
|
|
3675
|
+
* @export
|
|
3676
|
+
* @interface ActionsApiOutlierDetectionResultRequest
|
|
3677
|
+
*/
|
|
3678
|
+
export interface ActionsApiOutlierDetectionResultRequest {
|
|
3679
|
+
/**
|
|
3680
|
+
* Workspace identifier
|
|
3681
|
+
* @type {string}
|
|
3682
|
+
* @memberof ActionsApiOutlierDetectionResult
|
|
3683
|
+
*/
|
|
3684
|
+
readonly workspaceId: string;
|
|
3685
|
+
/**
|
|
3686
|
+
* Result ID
|
|
3687
|
+
* @type {string}
|
|
3688
|
+
* @memberof ActionsApiOutlierDetectionResult
|
|
3689
|
+
*/
|
|
3690
|
+
readonly resultId: string;
|
|
3691
|
+
/**
|
|
3692
|
+
*
|
|
3693
|
+
* @type {number}
|
|
3694
|
+
* @memberof ActionsApiOutlierDetectionResult
|
|
3695
|
+
*/
|
|
3696
|
+
readonly offset?: number;
|
|
3697
|
+
/**
|
|
3698
|
+
*
|
|
3699
|
+
* @type {number}
|
|
3700
|
+
* @memberof ActionsApiOutlierDetectionResult
|
|
3701
|
+
*/
|
|
3702
|
+
readonly limit?: number;
|
|
3703
|
+
}
|
|
3521
3704
|
/**
|
|
3522
3705
|
* Request parameters for resolveLlmEndpoints operation in ActionsApi.
|
|
3523
3706
|
* @export
|
|
@@ -3883,6 +4066,24 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
3883
4066
|
* @memberof ActionsApi
|
|
3884
4067
|
*/
|
|
3885
4068
|
memoryCreatedByUsers(requestParameters: ActionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
|
|
4069
|
+
/**
|
|
4070
|
+
* (BETA) Computes outlier detection for the provided execution definition.
|
|
4071
|
+
* @summary (BETA) Outlier Detection
|
|
4072
|
+
* @param {ActionsApiOutlierDetectionRequest} requestParameters Request parameters.
|
|
4073
|
+
* @param {*} [options] Override http request option.
|
|
4074
|
+
* @throws {RequiredError}
|
|
4075
|
+
* @memberof ActionsApi
|
|
4076
|
+
*/
|
|
4077
|
+
outlierDetection(requestParameters: ActionsApiOutlierDetectionRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResponse>;
|
|
4078
|
+
/**
|
|
4079
|
+
* (BETA) Gets outlier detection result.
|
|
4080
|
+
* @summary (BETA) Outlier Detection Result
|
|
4081
|
+
* @param {ActionsApiOutlierDetectionResultRequest} requestParameters Request parameters.
|
|
4082
|
+
* @param {*} [options] Override http request option.
|
|
4083
|
+
* @throws {RequiredError}
|
|
4084
|
+
* @memberof ActionsApi
|
|
4085
|
+
*/
|
|
4086
|
+
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
3886
4087
|
/**
|
|
3887
4088
|
* Returns a list of available LLM Endpoints
|
|
3888
4089
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4046,6 +4247,29 @@ export declare function ComputationApiAxiosParamCreator_KeyDriverAnalysis(worksp
|
|
|
4046
4247
|
* @throws {RequiredError}
|
|
4047
4248
|
*/
|
|
4048
4249
|
export declare function ComputationApiAxiosParamCreator_KeyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4250
|
+
/**
|
|
4251
|
+
* (BETA) Computes outlier detection for the provided execution definition.
|
|
4252
|
+
* @summary (BETA) Outlier Detection
|
|
4253
|
+
* @param {string} workspaceId Workspace identifier
|
|
4254
|
+
* @param {OutlierDetectionRequest} outlierDetectionRequest
|
|
4255
|
+
* @param {boolean} [skipCache] Ignore all caches during execution of current request.
|
|
4256
|
+
* @param {*} [options] Override http request option.
|
|
4257
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4258
|
+
* @throws {RequiredError}
|
|
4259
|
+
*/
|
|
4260
|
+
export declare function ComputationApiAxiosParamCreator_OutlierDetection(workspaceId: string, outlierDetectionRequest: OutlierDetectionRequest, skipCache?: boolean, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4261
|
+
/**
|
|
4262
|
+
* (BETA) Gets outlier detection result.
|
|
4263
|
+
* @summary (BETA) Outlier Detection Result
|
|
4264
|
+
* @param {string} workspaceId Workspace identifier
|
|
4265
|
+
* @param {string} resultId Result ID
|
|
4266
|
+
* @param {number} [offset]
|
|
4267
|
+
* @param {number} [limit]
|
|
4268
|
+
* @param {*} [options] Override http request option.
|
|
4269
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4270
|
+
* @throws {RequiredError}
|
|
4271
|
+
*/
|
|
4272
|
+
export declare function ComputationApiAxiosParamCreator_OutlierDetectionResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4049
4273
|
/**
|
|
4050
4274
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4051
4275
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4169,6 +4393,28 @@ export declare function ComputationApi_KeyDriverAnalysis(axios: AxiosInstance, b
|
|
|
4169
4393
|
* @throws {RequiredError}
|
|
4170
4394
|
*/
|
|
4171
4395
|
export declare function ComputationApi_KeyDriverAnalysisResult(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KeyDriversResult>;
|
|
4396
|
+
/**
|
|
4397
|
+
* (BETA) Computes outlier detection for the provided execution definition.
|
|
4398
|
+
* @summary (BETA) Outlier Detection
|
|
4399
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4400
|
+
* @param {string} basePath Base path.
|
|
4401
|
+
* @param {ComputationApiOutlierDetectionRequest} requestParameters Request parameters.
|
|
4402
|
+
* @param {*} [options] Override http request option.
|
|
4403
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4404
|
+
* @throws {RequiredError}
|
|
4405
|
+
*/
|
|
4406
|
+
export declare function ComputationApi_OutlierDetection(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiOutlierDetectionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<OutlierDetectionResponse>;
|
|
4407
|
+
/**
|
|
4408
|
+
* (BETA) Gets outlier detection result.
|
|
4409
|
+
* @summary (BETA) Outlier Detection Result
|
|
4410
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4411
|
+
* @param {string} basePath Base path.
|
|
4412
|
+
* @param {ComputationApiOutlierDetectionResultRequest} requestParameters Request parameters.
|
|
4413
|
+
* @param {*} [options] Override http request option.
|
|
4414
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4415
|
+
* @throws {RequiredError}
|
|
4416
|
+
*/
|
|
4417
|
+
export declare function ComputationApi_OutlierDetectionResult(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiOutlierDetectionResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<OutlierDetectionResult>;
|
|
4172
4418
|
/**
|
|
4173
4419
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4174
4420
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4278,6 +4524,24 @@ export interface ComputationApiInterface {
|
|
|
4278
4524
|
* @memberof ComputationApiInterface
|
|
4279
4525
|
*/
|
|
4280
4526
|
keyDriverAnalysisResult(requestParameters: ComputationApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
4527
|
+
/**
|
|
4528
|
+
* (BETA) Computes outlier detection for the provided execution definition.
|
|
4529
|
+
* @summary (BETA) Outlier Detection
|
|
4530
|
+
* @param {ComputationApiOutlierDetectionRequest} requestParameters Request parameters.
|
|
4531
|
+
* @param {*} [options] Override http request option.
|
|
4532
|
+
* @throws {RequiredError}
|
|
4533
|
+
* @memberof ComputationApiInterface
|
|
4534
|
+
*/
|
|
4535
|
+
outlierDetection(requestParameters: ComputationApiOutlierDetectionRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResponse>;
|
|
4536
|
+
/**
|
|
4537
|
+
* (BETA) Gets outlier detection result.
|
|
4538
|
+
* @summary (BETA) Outlier Detection Result
|
|
4539
|
+
* @param {ComputationApiOutlierDetectionResultRequest} requestParameters Request parameters.
|
|
4540
|
+
* @param {*} [options] Override http request option.
|
|
4541
|
+
* @throws {RequiredError}
|
|
4542
|
+
* @memberof ComputationApiInterface
|
|
4543
|
+
*/
|
|
4544
|
+
outlierDetectionResult(requestParameters: ComputationApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
4281
4545
|
/**
|
|
4282
4546
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4283
4547
|
* @summary Get a single execution result\'s metadata.
|
|
@@ -4522,6 +4786,62 @@ export interface ComputationApiKeyDriverAnalysisResultRequest {
|
|
|
4522
4786
|
*/
|
|
4523
4787
|
readonly limit?: number;
|
|
4524
4788
|
}
|
|
4789
|
+
/**
|
|
4790
|
+
* Request parameters for outlierDetection operation in ComputationApi.
|
|
4791
|
+
* @export
|
|
4792
|
+
* @interface ComputationApiOutlierDetectionRequest
|
|
4793
|
+
*/
|
|
4794
|
+
export interface ComputationApiOutlierDetectionRequest {
|
|
4795
|
+
/**
|
|
4796
|
+
* Workspace identifier
|
|
4797
|
+
* @type {string}
|
|
4798
|
+
* @memberof ComputationApiOutlierDetection
|
|
4799
|
+
*/
|
|
4800
|
+
readonly workspaceId: string;
|
|
4801
|
+
/**
|
|
4802
|
+
*
|
|
4803
|
+
* @type {OutlierDetectionRequest}
|
|
4804
|
+
* @memberof ComputationApiOutlierDetection
|
|
4805
|
+
*/
|
|
4806
|
+
readonly outlierDetectionRequest: OutlierDetectionRequest;
|
|
4807
|
+
/**
|
|
4808
|
+
* Ignore all caches during execution of current request.
|
|
4809
|
+
* @type {boolean}
|
|
4810
|
+
* @memberof ComputationApiOutlierDetection
|
|
4811
|
+
*/
|
|
4812
|
+
readonly skipCache?: boolean;
|
|
4813
|
+
}
|
|
4814
|
+
/**
|
|
4815
|
+
* Request parameters for outlierDetectionResult operation in ComputationApi.
|
|
4816
|
+
* @export
|
|
4817
|
+
* @interface ComputationApiOutlierDetectionResultRequest
|
|
4818
|
+
*/
|
|
4819
|
+
export interface ComputationApiOutlierDetectionResultRequest {
|
|
4820
|
+
/**
|
|
4821
|
+
* Workspace identifier
|
|
4822
|
+
* @type {string}
|
|
4823
|
+
* @memberof ComputationApiOutlierDetectionResult
|
|
4824
|
+
*/
|
|
4825
|
+
readonly workspaceId: string;
|
|
4826
|
+
/**
|
|
4827
|
+
* Result ID
|
|
4828
|
+
* @type {string}
|
|
4829
|
+
* @memberof ComputationApiOutlierDetectionResult
|
|
4830
|
+
*/
|
|
4831
|
+
readonly resultId: string;
|
|
4832
|
+
/**
|
|
4833
|
+
*
|
|
4834
|
+
* @type {number}
|
|
4835
|
+
* @memberof ComputationApiOutlierDetectionResult
|
|
4836
|
+
*/
|
|
4837
|
+
readonly offset?: number;
|
|
4838
|
+
/**
|
|
4839
|
+
*
|
|
4840
|
+
* @type {number}
|
|
4841
|
+
* @memberof ComputationApiOutlierDetectionResult
|
|
4842
|
+
*/
|
|
4843
|
+
readonly limit?: number;
|
|
4844
|
+
}
|
|
4525
4845
|
/**
|
|
4526
4846
|
* Request parameters for retrieveExecutionMetadata operation in ComputationApi.
|
|
4527
4847
|
* @export
|
|
@@ -4672,6 +4992,24 @@ export declare class ComputationApi extends BaseAPI implements ComputationApiInt
|
|
|
4672
4992
|
* @memberof ComputationApi
|
|
4673
4993
|
*/
|
|
4674
4994
|
keyDriverAnalysisResult(requestParameters: ComputationApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
4995
|
+
/**
|
|
4996
|
+
* (BETA) Computes outlier detection for the provided execution definition.
|
|
4997
|
+
* @summary (BETA) Outlier Detection
|
|
4998
|
+
* @param {ComputationApiOutlierDetectionRequest} requestParameters Request parameters.
|
|
4999
|
+
* @param {*} [options] Override http request option.
|
|
5000
|
+
* @throws {RequiredError}
|
|
5001
|
+
* @memberof ComputationApi
|
|
5002
|
+
*/
|
|
5003
|
+
outlierDetection(requestParameters: ComputationApiOutlierDetectionRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResponse>;
|
|
5004
|
+
/**
|
|
5005
|
+
* (BETA) Gets outlier detection result.
|
|
5006
|
+
* @summary (BETA) Outlier Detection Result
|
|
5007
|
+
* @param {ComputationApiOutlierDetectionResultRequest} requestParameters Request parameters.
|
|
5008
|
+
* @param {*} [options] Override http request option.
|
|
5009
|
+
* @throws {RequiredError}
|
|
5010
|
+
* @memberof ComputationApi
|
|
5011
|
+
*/
|
|
5012
|
+
outlierDetectionResult(requestParameters: ComputationApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
4675
5013
|
/**
|
|
4676
5014
|
* The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
|
|
4677
5015
|
* @summary Get a single execution result\'s metadata.
|