@gooddata/api-client-tiger 11.28.0-alpha.0 → 11.28.0-alpha.1
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 +667 -554
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.d.ts.map +1 -1
- package/esm/endpoints/actions/index.js +2 -6
- package/esm/endpoints/actions/index.js.map +1 -1
- package/esm/endpoints/genAI/index.d.ts +2 -2
- package/esm/endpoints/genAI/index.d.ts.map +1 -1
- package/esm/endpoints/genAI/index.js +4 -2
- package/esm/endpoints/genAI/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +0 -512
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +0 -505
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/ai-json-api/api.d.ts +613 -164
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +438 -48
- package/esm/generated/ai-json-api/api.js.map +1 -1
- package/package.json +5 -5
|
@@ -817,19 +817,6 @@ export interface CompoundMeasureValueFilterCompoundMeasureValueFilter {
|
|
|
817
817
|
'applyOnResult'?: boolean;
|
|
818
818
|
'measure': AfmIdentifier;
|
|
819
819
|
}
|
|
820
|
-
export interface CreateKnowledgeDocumentRequestDto {
|
|
821
|
-
'filename': string;
|
|
822
|
-
'content': string;
|
|
823
|
-
'pageBoundaries'?: Array<number>;
|
|
824
|
-
'title'?: string;
|
|
825
|
-
'scopes'?: Array<string>;
|
|
826
|
-
}
|
|
827
|
-
export interface CreateKnowledgeDocumentResponseDto {
|
|
828
|
-
'filename': string;
|
|
829
|
-
'success': boolean;
|
|
830
|
-
'message': string;
|
|
831
|
-
'numChunks': number;
|
|
832
|
-
}
|
|
833
820
|
/**
|
|
834
821
|
* List of created visualization objects
|
|
835
822
|
*/
|
|
@@ -959,10 +946,6 @@ export interface DateRelativeFilter {
|
|
|
959
946
|
'to': number;
|
|
960
947
|
}
|
|
961
948
|
export type DateRelativeFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
|
|
962
|
-
export interface DeleteKnowledgeDocumentResponseDto {
|
|
963
|
-
'success': boolean;
|
|
964
|
-
'message': string;
|
|
965
|
-
}
|
|
966
949
|
/**
|
|
967
950
|
* Filter definition type specified by label and values.
|
|
968
951
|
*/
|
|
@@ -1480,29 +1463,6 @@ export interface KeyDriversResponse {
|
|
|
1480
1463
|
export interface KeyDriversResult {
|
|
1481
1464
|
'data': object;
|
|
1482
1465
|
}
|
|
1483
|
-
export interface KnowledgeDocumentMetadataDto {
|
|
1484
|
-
'filename': string;
|
|
1485
|
-
'workspaceId'?: string;
|
|
1486
|
-
'title'?: string;
|
|
1487
|
-
'numChunks': number;
|
|
1488
|
-
'createdAt': string;
|
|
1489
|
-
'updatedAt': string;
|
|
1490
|
-
'createdBy': string;
|
|
1491
|
-
'updatedBy': string;
|
|
1492
|
-
'scopes': Array<string>;
|
|
1493
|
-
'isDisabled'?: boolean;
|
|
1494
|
-
}
|
|
1495
|
-
export interface KnowledgeSearchResultDto {
|
|
1496
|
-
'filename': string;
|
|
1497
|
-
'content': string;
|
|
1498
|
-
'score': number;
|
|
1499
|
-
'chunkIndex': number;
|
|
1500
|
-
'totalChunks': number;
|
|
1501
|
-
'pageNumbers': Array<number>;
|
|
1502
|
-
'workspaceId'?: string;
|
|
1503
|
-
'title'?: string;
|
|
1504
|
-
'scopes': Array<string>;
|
|
1505
|
-
}
|
|
1506
1466
|
/**
|
|
1507
1467
|
* Paged response for listing AI Lake database instances
|
|
1508
1468
|
*/
|
|
@@ -1516,11 +1476,6 @@ export interface ListDatabaseInstancesResponse {
|
|
|
1516
1476
|
*/
|
|
1517
1477
|
'totalCount'?: number;
|
|
1518
1478
|
}
|
|
1519
|
-
export interface ListKnowledgeDocumentsResponseDto {
|
|
1520
|
-
'documents': Array<KnowledgeDocumentMetadataDto>;
|
|
1521
|
-
'totalCount'?: number;
|
|
1522
|
-
'nextPageToken'?: string;
|
|
1523
|
-
}
|
|
1524
1479
|
export interface ListLlmProviderModelsRequest {
|
|
1525
1480
|
'providerConfig': TestLlmProviderByIdRequestProviderConfig;
|
|
1526
1481
|
}
|
|
@@ -1939,11 +1894,6 @@ export interface Paging {
|
|
|
1939
1894
|
*/
|
|
1940
1895
|
'next'?: string;
|
|
1941
1896
|
}
|
|
1942
|
-
export interface PatchKnowledgeDocumentRequestDto {
|
|
1943
|
-
'isDisabled'?: boolean;
|
|
1944
|
-
'title'?: string;
|
|
1945
|
-
'scopes'?: Array<string>;
|
|
1946
|
-
}
|
|
1947
1897
|
/**
|
|
1948
1898
|
* Operation that is still pending
|
|
1949
1899
|
*/
|
|
@@ -2341,10 +2291,6 @@ export interface SavedVisualization {
|
|
|
2341
2291
|
*/
|
|
2342
2292
|
'savedVisualizationId': string;
|
|
2343
2293
|
}
|
|
2344
|
-
export interface SearchKnowledgeResponseDto {
|
|
2345
|
-
'results': Array<KnowledgeSearchResultDto>;
|
|
2346
|
-
'statistics': SearchStatisticsDto;
|
|
2347
|
-
}
|
|
2348
2294
|
export interface SearchRelationshipObject {
|
|
2349
2295
|
/**
|
|
2350
2296
|
* Source workspace ID. If relationship is dashboard->visualization, this is the workspace where the dashboard is located.
|
|
@@ -2489,10 +2435,6 @@ export interface SearchResultObject {
|
|
|
2489
2435
|
*/
|
|
2490
2436
|
'isHidden'?: boolean;
|
|
2491
2437
|
}
|
|
2492
|
-
export interface SearchStatisticsDto {
|
|
2493
|
-
'totalResults': number;
|
|
2494
|
-
'averageSimilarityScore': number;
|
|
2495
|
-
}
|
|
2496
2438
|
/**
|
|
2497
2439
|
* Non-sensitive metadata for an AI Lake pipeline
|
|
2498
2440
|
*/
|
|
@@ -2804,19 +2746,6 @@ export type TriggerQualityIssuesCalculationResponseStatusEnum = 'RUNNING' | 'COM
|
|
|
2804
2746
|
export interface UIContext {
|
|
2805
2747
|
'dashboard'?: DashboardContext;
|
|
2806
2748
|
}
|
|
2807
|
-
export interface UpsertKnowledgeDocumentRequestDto {
|
|
2808
|
-
'filename': string;
|
|
2809
|
-
'content': string;
|
|
2810
|
-
'pageBoundaries'?: Array<number>;
|
|
2811
|
-
'title'?: string;
|
|
2812
|
-
'scopes'?: Array<string>;
|
|
2813
|
-
}
|
|
2814
|
-
export interface UpsertKnowledgeDocumentResponseDto {
|
|
2815
|
-
'filename': string;
|
|
2816
|
-
'success': boolean;
|
|
2817
|
-
'message': string;
|
|
2818
|
-
'numChunks': number;
|
|
2819
|
-
}
|
|
2820
2749
|
/**
|
|
2821
2750
|
* User context with ambient UI state (view) and explicitly referenced objects.
|
|
2822
2751
|
*/
|
|
@@ -3665,15 +3594,6 @@ export declare function ActionsApiAxiosParamCreator_ComputeValidDescendants(work
|
|
|
3665
3594
|
* @throws {RequiredError}
|
|
3666
3595
|
*/
|
|
3667
3596
|
export declare function ActionsApiAxiosParamCreator_ComputeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3668
|
-
/**
|
|
3669
|
-
*
|
|
3670
|
-
* @param {string} workspaceId Workspace identifier
|
|
3671
|
-
* @param {CreateKnowledgeDocumentRequestDto} createKnowledgeDocumentRequestDto
|
|
3672
|
-
* @param {*} [options] Override http request option.
|
|
3673
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
3674
|
-
* @throws {RequiredError}
|
|
3675
|
-
*/
|
|
3676
|
-
export declare function ActionsApiAxiosParamCreator_CreateDocument(workspaceId: string, createKnowledgeDocumentRequestDto: CreateKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3677
3597
|
/**
|
|
3678
3598
|
* Returns a list of Users who created any object for this workspace
|
|
3679
3599
|
* @summary Get Analytics Catalog CreatedBy Users
|
|
@@ -3683,15 +3603,6 @@ export declare function ActionsApiAxiosParamCreator_CreateDocument(workspaceId:
|
|
|
3683
3603
|
* @throws {RequiredError}
|
|
3684
3604
|
*/
|
|
3685
3605
|
export declare function ActionsApiAxiosParamCreator_CreatedBy(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3686
|
-
/**
|
|
3687
|
-
*
|
|
3688
|
-
* @param {string} workspaceId Workspace identifier
|
|
3689
|
-
* @param {string} filename
|
|
3690
|
-
* @param {*} [options] Override http request option.
|
|
3691
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
3692
|
-
* @throws {RequiredError}
|
|
3693
|
-
*/
|
|
3694
|
-
export declare function ActionsApiAxiosParamCreator_DeleteDocument(workspaceId: string, filename: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3695
3606
|
/**
|
|
3696
3607
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
3697
3608
|
* @summary AFM explain resource.
|
|
@@ -3756,15 +3667,6 @@ export declare function ActionsApiAxiosParamCreator_GenerateDescription(workspac
|
|
|
3756
3667
|
* @throws {RequiredError}
|
|
3757
3668
|
*/
|
|
3758
3669
|
export declare function ActionsApiAxiosParamCreator_GenerateTitle(workspaceId: string, generateTitleRequest: GenerateTitleRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3759
|
-
/**
|
|
3760
|
-
*
|
|
3761
|
-
* @param {string} workspaceId Workspace identifier
|
|
3762
|
-
* @param {string} filename
|
|
3763
|
-
* @param {*} [options] Override http request option.
|
|
3764
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
3765
|
-
* @throws {RequiredError}
|
|
3766
|
-
*/
|
|
3767
|
-
export declare function ActionsApiAxiosParamCreator_GetDocument(workspaceId: string, filename: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3768
3670
|
/**
|
|
3769
3671
|
* Returns metadata quality issues detected by the platform linter.
|
|
3770
3672
|
* @summary Get Quality Issues
|
|
@@ -3816,20 +3718,6 @@ export declare function ActionsApiAxiosParamCreator_KeyDriverAnalysis(workspaceI
|
|
|
3816
3718
|
* @throws {RequiredError}
|
|
3817
3719
|
*/
|
|
3818
3720
|
export declare function ActionsApiAxiosParamCreator_KeyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3819
|
-
/**
|
|
3820
|
-
*
|
|
3821
|
-
* @param {string} workspaceId Workspace identifier
|
|
3822
|
-
* @param {Array<string>} [scopes]
|
|
3823
|
-
* @param {number} [size]
|
|
3824
|
-
* @param {string} [pageToken]
|
|
3825
|
-
* @param {string} [metaInclude]
|
|
3826
|
-
* @param {string} [state]
|
|
3827
|
-
* @param {string} [query]
|
|
3828
|
-
* @param {*} [options] Override http request option.
|
|
3829
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
3830
|
-
* @throws {RequiredError}
|
|
3831
|
-
*/
|
|
3832
|
-
export declare function ActionsApiAxiosParamCreator_ListDocuments(workspaceId: string, scopes?: Array<string>, size?: number, pageToken?: string, metaInclude?: string, state?: string, query?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3833
3721
|
/**
|
|
3834
3722
|
* Lists models available on an LLM provider with a full definition. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
|
|
3835
3723
|
* @summary List LLM Provider Models
|
|
@@ -3880,16 +3768,6 @@ export declare function ActionsApiAxiosParamCreator_OutlierDetection(workspaceId
|
|
|
3880
3768
|
* @throws {RequiredError}
|
|
3881
3769
|
*/
|
|
3882
3770
|
export declare function ActionsApiAxiosParamCreator_OutlierDetectionResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3883
|
-
/**
|
|
3884
|
-
*
|
|
3885
|
-
* @param {string} workspaceId Workspace identifier
|
|
3886
|
-
* @param {string} filename
|
|
3887
|
-
* @param {PatchKnowledgeDocumentRequestDto} patchKnowledgeDocumentRequestDto
|
|
3888
|
-
* @param {*} [options] Override http request option.
|
|
3889
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
3890
|
-
* @throws {RequiredError}
|
|
3891
|
-
*/
|
|
3892
|
-
export declare function ActionsApiAxiosParamCreator_PatchDocument(workspaceId: string, filename: string, patchKnowledgeDocumentRequestDto: PatchKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3893
3771
|
/**
|
|
3894
3772
|
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
3895
3773
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3943,18 +3821,6 @@ export declare function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId:
|
|
|
3943
3821
|
* @throws {RequiredError}
|
|
3944
3822
|
*/
|
|
3945
3823
|
export declare function ActionsApiAxiosParamCreator_RetrieveResultBinary(workspaceId: string, resultId: string, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3946
|
-
/**
|
|
3947
|
-
*
|
|
3948
|
-
* @param {string} workspaceId Workspace identifier
|
|
3949
|
-
* @param {string} query
|
|
3950
|
-
* @param {number} [limit]
|
|
3951
|
-
* @param {number} [minScore]
|
|
3952
|
-
* @param {Array<string>} [scopes]
|
|
3953
|
-
* @param {*} [options] Override http request option.
|
|
3954
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
3955
|
-
* @throws {RequiredError}
|
|
3956
|
-
*/
|
|
3957
|
-
export declare function ActionsApiAxiosParamCreator_SearchKnowledge(workspaceId: string, query: string, limit?: number, minScore?: number, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3958
3824
|
/**
|
|
3959
3825
|
* Returns a list of tags for this workspace
|
|
3960
3826
|
* @summary Get Analytics Catalog Tags
|
|
@@ -4001,15 +3867,6 @@ export declare function ActionsApiAxiosParamCreator_TrendingObjects(workspaceId:
|
|
|
4001
3867
|
* @throws {RequiredError}
|
|
4002
3868
|
*/
|
|
4003
3869
|
export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4004
|
-
/**
|
|
4005
|
-
*
|
|
4006
|
-
* @param {string} workspaceId Workspace identifier
|
|
4007
|
-
* @param {UpsertKnowledgeDocumentRequestDto} upsertKnowledgeDocumentRequestDto
|
|
4008
|
-
* @param {*} [options] Override http request option.
|
|
4009
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4010
|
-
* @throws {RequiredError}
|
|
4011
|
-
*/
|
|
4012
|
-
export declare function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId: string, upsertKnowledgeDocumentRequestDto: UpsertKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4013
3870
|
/**
|
|
4014
3871
|
* Will be soon removed and replaced by testLlmProvider.
|
|
4015
3872
|
* @summary Validate LLM Endpoint
|
|
@@ -4217,16 +4074,6 @@ export declare function ActionsApi_ComputeValidDescendants(axios: AxiosInstance,
|
|
|
4217
4074
|
* @throws {RequiredError}
|
|
4218
4075
|
*/
|
|
4219
4076
|
export declare function ActionsApi_ComputeValidObjects(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AfmValidObjectsResponse>;
|
|
4220
|
-
/**
|
|
4221
|
-
*
|
|
4222
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4223
|
-
* @param {string} basePath Base path.
|
|
4224
|
-
* @param {ActionsApiCreateDocumentRequest} requestParameters Request parameters.
|
|
4225
|
-
* @param {*} [options] Override http request option.
|
|
4226
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4227
|
-
* @throws {RequiredError}
|
|
4228
|
-
*/
|
|
4229
|
-
export declare function ActionsApi_CreateDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCreateDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<CreateKnowledgeDocumentResponseDto>;
|
|
4230
4077
|
/**
|
|
4231
4078
|
* Returns a list of Users who created any object for this workspace
|
|
4232
4079
|
* @summary Get Analytics Catalog CreatedBy Users
|
|
@@ -4238,16 +4085,6 @@ export declare function ActionsApi_CreateDocument(axios: AxiosInstance, basePath
|
|
|
4238
4085
|
* @throws {RequiredError}
|
|
4239
4086
|
*/
|
|
4240
4087
|
export declare function ActionsApi_CreatedBy(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
4241
|
-
/**
|
|
4242
|
-
*
|
|
4243
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4244
|
-
* @param {string} basePath Base path.
|
|
4245
|
-
* @param {ActionsApiDeleteDocumentRequest} requestParameters Request parameters.
|
|
4246
|
-
* @param {*} [options] Override http request option.
|
|
4247
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4248
|
-
* @throws {RequiredError}
|
|
4249
|
-
*/
|
|
4250
|
-
export declare function ActionsApi_DeleteDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiDeleteDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DeleteKnowledgeDocumentResponseDto>;
|
|
4251
4088
|
/**
|
|
4252
4089
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
4253
4090
|
* @summary AFM explain resource.
|
|
@@ -4313,16 +4150,6 @@ export declare function ActionsApi_GenerateDescription(axios: AxiosInstance, bas
|
|
|
4313
4150
|
* @throws {RequiredError}
|
|
4314
4151
|
*/
|
|
4315
4152
|
export declare function ActionsApi_GenerateTitle(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateTitleRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateTitleResponse>;
|
|
4316
|
-
/**
|
|
4317
|
-
*
|
|
4318
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4319
|
-
* @param {string} basePath Base path.
|
|
4320
|
-
* @param {ActionsApiGetDocumentRequest} requestParameters Request parameters.
|
|
4321
|
-
* @param {*} [options] Override http request option.
|
|
4322
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4323
|
-
* @throws {RequiredError}
|
|
4324
|
-
*/
|
|
4325
|
-
export declare function ActionsApi_GetDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
4326
4153
|
/**
|
|
4327
4154
|
* Returns metadata quality issues detected by the platform linter.
|
|
4328
4155
|
* @summary Get Quality Issues
|
|
@@ -4377,16 +4204,6 @@ export declare function ActionsApi_KeyDriverAnalysis(axios: AxiosInstance, baseP
|
|
|
4377
4204
|
* @throws {RequiredError}
|
|
4378
4205
|
*/
|
|
4379
4206
|
export declare function ActionsApi_KeyDriverAnalysisResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KeyDriversResult>;
|
|
4380
|
-
/**
|
|
4381
|
-
*
|
|
4382
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4383
|
-
* @param {string} basePath Base path.
|
|
4384
|
-
* @param {ActionsApiListDocumentsRequest} requestParameters Request parameters.
|
|
4385
|
-
* @param {*} [options] Override http request option.
|
|
4386
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4387
|
-
* @throws {RequiredError}
|
|
4388
|
-
*/
|
|
4389
|
-
export declare function ActionsApi_ListDocuments(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
|
|
4390
4207
|
/**
|
|
4391
4208
|
* Lists models available on an LLM provider with a full definition. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
|
|
4392
4209
|
* @summary List LLM Provider Models
|
|
@@ -4442,16 +4259,6 @@ export declare function ActionsApi_OutlierDetection(axios: AxiosInstance, basePa
|
|
|
4442
4259
|
* @throws {RequiredError}
|
|
4443
4260
|
*/
|
|
4444
4261
|
export declare function ActionsApi_OutlierDetectionResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<OutlierDetectionResult>;
|
|
4445
|
-
/**
|
|
4446
|
-
*
|
|
4447
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4448
|
-
* @param {string} basePath Base path.
|
|
4449
|
-
* @param {ActionsApiPatchDocumentRequest} requestParameters Request parameters.
|
|
4450
|
-
* @param {*} [options] Override http request option.
|
|
4451
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4452
|
-
* @throws {RequiredError}
|
|
4453
|
-
*/
|
|
4454
|
-
export declare function ActionsApi_PatchDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
4455
4262
|
/**
|
|
4456
4263
|
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
4457
4264
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -4507,16 +4314,6 @@ export declare function ActionsApi_RetrieveResult(axios: AxiosInstance, basePath
|
|
|
4507
4314
|
* @throws {RequiredError}
|
|
4508
4315
|
*/
|
|
4509
4316
|
export declare function ActionsApi_RetrieveResultBinary(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
|
|
4510
|
-
/**
|
|
4511
|
-
*
|
|
4512
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4513
|
-
* @param {string} basePath Base path.
|
|
4514
|
-
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
4515
|
-
* @param {*} [options] Override http request option.
|
|
4516
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4517
|
-
* @throws {RequiredError}
|
|
4518
|
-
*/
|
|
4519
|
-
export declare function ActionsApi_SearchKnowledge(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiSearchKnowledgeRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<SearchKnowledgeResponseDto>;
|
|
4520
4317
|
/**
|
|
4521
4318
|
* Returns a list of tags for this workspace
|
|
4522
4319
|
* @summary Get Analytics Catalog Tags
|
|
@@ -4572,16 +4369,6 @@ export declare function ActionsApi_TrendingObjects(axios: AxiosInstance, basePat
|
|
|
4572
4369
|
* @throws {RequiredError}
|
|
4573
4370
|
*/
|
|
4574
4371
|
export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
4575
|
-
/**
|
|
4576
|
-
*
|
|
4577
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
4578
|
-
* @param {string} basePath Base path.
|
|
4579
|
-
* @param {ActionsApiUpsertDocumentRequest} requestParameters Request parameters.
|
|
4580
|
-
* @param {*} [options] Override http request option.
|
|
4581
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
4582
|
-
* @throws {RequiredError}
|
|
4583
|
-
*/
|
|
4584
|
-
export declare function ActionsApi_UpsertDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
4585
4372
|
/**
|
|
4586
4373
|
* Will be soon removed and replaced by testLlmProvider.
|
|
4587
4374
|
* @summary Validate LLM Endpoint
|
|
@@ -4764,14 +4551,6 @@ export interface ActionsApiInterface {
|
|
|
4764
4551
|
* @memberof ActionsApiInterface
|
|
4765
4552
|
*/
|
|
4766
4553
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
4767
|
-
/**
|
|
4768
|
-
*
|
|
4769
|
-
* @param {ActionsApiCreateDocumentRequest} requestParameters Request parameters.
|
|
4770
|
-
* @param {*} [options] Override http request option.
|
|
4771
|
-
* @throws {RequiredError}
|
|
4772
|
-
* @memberof ActionsApiInterface
|
|
4773
|
-
*/
|
|
4774
|
-
createDocument(requestParameters: ActionsApiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<CreateKnowledgeDocumentResponseDto>;
|
|
4775
4554
|
/**
|
|
4776
4555
|
* Returns a list of Users who created any object for this workspace
|
|
4777
4556
|
* @summary Get Analytics Catalog CreatedBy Users
|
|
@@ -4781,14 +4560,6 @@ export interface ActionsApiInterface {
|
|
|
4781
4560
|
* @memberof ActionsApiInterface
|
|
4782
4561
|
*/
|
|
4783
4562
|
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
4784
|
-
/**
|
|
4785
|
-
*
|
|
4786
|
-
* @param {ActionsApiDeleteDocumentRequest} requestParameters Request parameters.
|
|
4787
|
-
* @param {*} [options] Override http request option.
|
|
4788
|
-
* @throws {RequiredError}
|
|
4789
|
-
* @memberof ActionsApiInterface
|
|
4790
|
-
*/
|
|
4791
|
-
deleteDocument(requestParameters: ActionsApiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<DeleteKnowledgeDocumentResponseDto>;
|
|
4792
4563
|
/**
|
|
4793
4564
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
4794
4565
|
* @summary AFM explain resource.
|
|
@@ -4842,14 +4613,6 @@ export interface ActionsApiInterface {
|
|
|
4842
4613
|
* @memberof ActionsApiInterface
|
|
4843
4614
|
*/
|
|
4844
4615
|
generateTitle(requestParameters: ActionsApiGenerateTitleRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateTitleResponse>;
|
|
4845
|
-
/**
|
|
4846
|
-
*
|
|
4847
|
-
* @param {ActionsApiGetDocumentRequest} requestParameters Request parameters.
|
|
4848
|
-
* @param {*} [options] Override http request option.
|
|
4849
|
-
* @throws {RequiredError}
|
|
4850
|
-
* @memberof ActionsApiInterface
|
|
4851
|
-
*/
|
|
4852
|
-
getDocument(requestParameters: ActionsApiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
4853
4616
|
/**
|
|
4854
4617
|
* Returns metadata quality issues detected by the platform linter.
|
|
4855
4618
|
* @summary Get Quality Issues
|
|
@@ -4894,14 +4657,6 @@ export interface ActionsApiInterface {
|
|
|
4894
4657
|
* @memberof ActionsApiInterface
|
|
4895
4658
|
*/
|
|
4896
4659
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
4897
|
-
/**
|
|
4898
|
-
*
|
|
4899
|
-
* @param {ActionsApiListDocumentsRequest} requestParameters Request parameters.
|
|
4900
|
-
* @param {*} [options] Override http request option.
|
|
4901
|
-
* @throws {RequiredError}
|
|
4902
|
-
* @memberof ActionsApiInterface
|
|
4903
|
-
*/
|
|
4904
|
-
listDocuments(requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
|
|
4905
4660
|
/**
|
|
4906
4661
|
* Lists models available on an LLM provider with a full definition. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
|
|
4907
4662
|
* @summary List LLM Provider Models
|
|
@@ -4947,14 +4702,6 @@ export interface ActionsApiInterface {
|
|
|
4947
4702
|
* @memberof ActionsApiInterface
|
|
4948
4703
|
*/
|
|
4949
4704
|
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
4950
|
-
/**
|
|
4951
|
-
*
|
|
4952
|
-
* @param {ActionsApiPatchDocumentRequest} requestParameters Request parameters.
|
|
4953
|
-
* @param {*} [options] Override http request option.
|
|
4954
|
-
* @throws {RequiredError}
|
|
4955
|
-
* @memberof ActionsApiInterface
|
|
4956
|
-
*/
|
|
4957
|
-
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
4958
4705
|
/**
|
|
4959
4706
|
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
4960
4707
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5001,14 +4748,6 @@ export interface ActionsApiInterface {
|
|
|
5001
4748
|
* @memberof ActionsApiInterface
|
|
5002
4749
|
*/
|
|
5003
4750
|
retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
5004
|
-
/**
|
|
5005
|
-
*
|
|
5006
|
-
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
5007
|
-
* @param {*} [options] Override http request option.
|
|
5008
|
-
* @throws {RequiredError}
|
|
5009
|
-
* @memberof ActionsApiInterface
|
|
5010
|
-
*/
|
|
5011
|
-
searchKnowledge(requestParameters: ActionsApiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<SearchKnowledgeResponseDto>;
|
|
5012
4751
|
/**
|
|
5013
4752
|
* Returns a list of tags for this workspace
|
|
5014
4753
|
* @summary Get Analytics Catalog Tags
|
|
@@ -5054,14 +4793,6 @@ export interface ActionsApiInterface {
|
|
|
5054
4793
|
* @memberof ActionsApiInterface
|
|
5055
4794
|
*/
|
|
5056
4795
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
5057
|
-
/**
|
|
5058
|
-
*
|
|
5059
|
-
* @param {ActionsApiUpsertDocumentRequest} requestParameters Request parameters.
|
|
5060
|
-
* @param {*} [options] Override http request option.
|
|
5061
|
-
* @throws {RequiredError}
|
|
5062
|
-
* @memberof ActionsApiInterface
|
|
5063
|
-
*/
|
|
5064
|
-
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
5065
4796
|
/**
|
|
5066
4797
|
* Will be soon removed and replaced by testLlmProvider.
|
|
5067
4798
|
* @summary Validate LLM Endpoint
|
|
@@ -5478,25 +5209,6 @@ export interface ActionsApiComputeValidObjectsRequest {
|
|
|
5478
5209
|
*/
|
|
5479
5210
|
readonly afmValidObjectsQuery: AfmValidObjectsQuery;
|
|
5480
5211
|
}
|
|
5481
|
-
/**
|
|
5482
|
-
* Request parameters for createDocument operation in ActionsApi.
|
|
5483
|
-
* @export
|
|
5484
|
-
* @interface ActionsApiCreateDocumentRequest
|
|
5485
|
-
*/
|
|
5486
|
-
export interface ActionsApiCreateDocumentRequest {
|
|
5487
|
-
/**
|
|
5488
|
-
* Workspace identifier
|
|
5489
|
-
* @type {string}
|
|
5490
|
-
* @memberof ActionsApiCreateDocument
|
|
5491
|
-
*/
|
|
5492
|
-
readonly workspaceId: string;
|
|
5493
|
-
/**
|
|
5494
|
-
*
|
|
5495
|
-
* @type {CreateKnowledgeDocumentRequestDto}
|
|
5496
|
-
* @memberof ActionsApiCreateDocument
|
|
5497
|
-
*/
|
|
5498
|
-
readonly createKnowledgeDocumentRequestDto: CreateKnowledgeDocumentRequestDto;
|
|
5499
|
-
}
|
|
5500
5212
|
/**
|
|
5501
5213
|
* Request parameters for createdBy operation in ActionsApi.
|
|
5502
5214
|
* @export
|
|
@@ -5510,25 +5222,6 @@ export interface ActionsApiCreatedByRequest {
|
|
|
5510
5222
|
*/
|
|
5511
5223
|
readonly workspaceId: string;
|
|
5512
5224
|
}
|
|
5513
|
-
/**
|
|
5514
|
-
* Request parameters for deleteDocument operation in ActionsApi.
|
|
5515
|
-
* @export
|
|
5516
|
-
* @interface ActionsApiDeleteDocumentRequest
|
|
5517
|
-
*/
|
|
5518
|
-
export interface ActionsApiDeleteDocumentRequest {
|
|
5519
|
-
/**
|
|
5520
|
-
* Workspace identifier
|
|
5521
|
-
* @type {string}
|
|
5522
|
-
* @memberof ActionsApiDeleteDocument
|
|
5523
|
-
*/
|
|
5524
|
-
readonly workspaceId: string;
|
|
5525
|
-
/**
|
|
5526
|
-
*
|
|
5527
|
-
* @type {string}
|
|
5528
|
-
* @memberof ActionsApiDeleteDocument
|
|
5529
|
-
*/
|
|
5530
|
-
readonly filename: string;
|
|
5531
|
-
}
|
|
5532
5225
|
/**
|
|
5533
5226
|
* Request parameters for explainAFM operation in ActionsApi.
|
|
5534
5227
|
* @export
|
|
@@ -5673,25 +5366,6 @@ export interface ActionsApiGenerateTitleRequest {
|
|
|
5673
5366
|
*/
|
|
5674
5367
|
readonly generateTitleRequest: GenerateTitleRequest;
|
|
5675
5368
|
}
|
|
5676
|
-
/**
|
|
5677
|
-
* Request parameters for getDocument operation in ActionsApi.
|
|
5678
|
-
* @export
|
|
5679
|
-
* @interface ActionsApiGetDocumentRequest
|
|
5680
|
-
*/
|
|
5681
|
-
export interface ActionsApiGetDocumentRequest {
|
|
5682
|
-
/**
|
|
5683
|
-
* Workspace identifier
|
|
5684
|
-
* @type {string}
|
|
5685
|
-
* @memberof ActionsApiGetDocument
|
|
5686
|
-
*/
|
|
5687
|
-
readonly workspaceId: string;
|
|
5688
|
-
/**
|
|
5689
|
-
*
|
|
5690
|
-
* @type {string}
|
|
5691
|
-
* @memberof ActionsApiGetDocument
|
|
5692
|
-
*/
|
|
5693
|
-
readonly filename: string;
|
|
5694
|
-
}
|
|
5695
5369
|
/**
|
|
5696
5370
|
* Request parameters for getQualityIssues operation in ActionsApi.
|
|
5697
5371
|
* @export
|
|
@@ -5799,55 +5473,6 @@ export interface ActionsApiKeyDriverAnalysisResultRequest {
|
|
|
5799
5473
|
*/
|
|
5800
5474
|
readonly limit?: number;
|
|
5801
5475
|
}
|
|
5802
|
-
/**
|
|
5803
|
-
* Request parameters for listDocuments operation in ActionsApi.
|
|
5804
|
-
* @export
|
|
5805
|
-
* @interface ActionsApiListDocumentsRequest
|
|
5806
|
-
*/
|
|
5807
|
-
export interface ActionsApiListDocumentsRequest {
|
|
5808
|
-
/**
|
|
5809
|
-
* Workspace identifier
|
|
5810
|
-
* @type {string}
|
|
5811
|
-
* @memberof ActionsApiListDocuments
|
|
5812
|
-
*/
|
|
5813
|
-
readonly workspaceId: string;
|
|
5814
|
-
/**
|
|
5815
|
-
*
|
|
5816
|
-
* @type {Array<string>}
|
|
5817
|
-
* @memberof ActionsApiListDocuments
|
|
5818
|
-
*/
|
|
5819
|
-
readonly scopes?: Array<string>;
|
|
5820
|
-
/**
|
|
5821
|
-
*
|
|
5822
|
-
* @type {number}
|
|
5823
|
-
* @memberof ActionsApiListDocuments
|
|
5824
|
-
*/
|
|
5825
|
-
readonly size?: number;
|
|
5826
|
-
/**
|
|
5827
|
-
*
|
|
5828
|
-
* @type {string}
|
|
5829
|
-
* @memberof ActionsApiListDocuments
|
|
5830
|
-
*/
|
|
5831
|
-
readonly pageToken?: string;
|
|
5832
|
-
/**
|
|
5833
|
-
*
|
|
5834
|
-
* @type {string}
|
|
5835
|
-
* @memberof ActionsApiListDocuments
|
|
5836
|
-
*/
|
|
5837
|
-
readonly metaInclude?: string;
|
|
5838
|
-
/**
|
|
5839
|
-
*
|
|
5840
|
-
* @type {string}
|
|
5841
|
-
* @memberof ActionsApiListDocuments
|
|
5842
|
-
*/
|
|
5843
|
-
readonly state?: string;
|
|
5844
|
-
/**
|
|
5845
|
-
*
|
|
5846
|
-
* @type {string}
|
|
5847
|
-
* @memberof ActionsApiListDocuments
|
|
5848
|
-
*/
|
|
5849
|
-
readonly query?: string;
|
|
5850
|
-
}
|
|
5851
5476
|
/**
|
|
5852
5477
|
* Request parameters for listLlmProviderModels operation in ActionsApi.
|
|
5853
5478
|
* @export
|
|
@@ -5943,31 +5568,6 @@ export interface ActionsApiOutlierDetectionResultRequest {
|
|
|
5943
5568
|
*/
|
|
5944
5569
|
readonly limit?: number;
|
|
5945
5570
|
}
|
|
5946
|
-
/**
|
|
5947
|
-
* Request parameters for patchDocument operation in ActionsApi.
|
|
5948
|
-
* @export
|
|
5949
|
-
* @interface ActionsApiPatchDocumentRequest
|
|
5950
|
-
*/
|
|
5951
|
-
export interface ActionsApiPatchDocumentRequest {
|
|
5952
|
-
/**
|
|
5953
|
-
* Workspace identifier
|
|
5954
|
-
* @type {string}
|
|
5955
|
-
* @memberof ActionsApiPatchDocument
|
|
5956
|
-
*/
|
|
5957
|
-
readonly workspaceId: string;
|
|
5958
|
-
/**
|
|
5959
|
-
*
|
|
5960
|
-
* @type {string}
|
|
5961
|
-
* @memberof ActionsApiPatchDocument
|
|
5962
|
-
*/
|
|
5963
|
-
readonly filename: string;
|
|
5964
|
-
/**
|
|
5965
|
-
*
|
|
5966
|
-
* @type {PatchKnowledgeDocumentRequestDto}
|
|
5967
|
-
* @memberof ActionsApiPatchDocument
|
|
5968
|
-
*/
|
|
5969
|
-
readonly patchKnowledgeDocumentRequestDto: PatchKnowledgeDocumentRequestDto;
|
|
5970
|
-
}
|
|
5971
5571
|
/**
|
|
5972
5572
|
* Request parameters for resolveLlmEndpoints operation in ActionsApi.
|
|
5973
5573
|
* @export
|
|
@@ -6081,43 +5681,6 @@ export interface ActionsApiRetrieveResultBinaryRequest {
|
|
|
6081
5681
|
*/
|
|
6082
5682
|
readonly xGDCCANCELTOKEN?: string;
|
|
6083
5683
|
}
|
|
6084
|
-
/**
|
|
6085
|
-
* Request parameters for searchKnowledge operation in ActionsApi.
|
|
6086
|
-
* @export
|
|
6087
|
-
* @interface ActionsApiSearchKnowledgeRequest
|
|
6088
|
-
*/
|
|
6089
|
-
export interface ActionsApiSearchKnowledgeRequest {
|
|
6090
|
-
/**
|
|
6091
|
-
* Workspace identifier
|
|
6092
|
-
* @type {string}
|
|
6093
|
-
* @memberof ActionsApiSearchKnowledge
|
|
6094
|
-
*/
|
|
6095
|
-
readonly workspaceId: string;
|
|
6096
|
-
/**
|
|
6097
|
-
*
|
|
6098
|
-
* @type {string}
|
|
6099
|
-
* @memberof ActionsApiSearchKnowledge
|
|
6100
|
-
*/
|
|
6101
|
-
readonly query: string;
|
|
6102
|
-
/**
|
|
6103
|
-
*
|
|
6104
|
-
* @type {number}
|
|
6105
|
-
* @memberof ActionsApiSearchKnowledge
|
|
6106
|
-
*/
|
|
6107
|
-
readonly limit?: number;
|
|
6108
|
-
/**
|
|
6109
|
-
*
|
|
6110
|
-
* @type {number}
|
|
6111
|
-
* @memberof ActionsApiSearchKnowledge
|
|
6112
|
-
*/
|
|
6113
|
-
readonly minScore?: number;
|
|
6114
|
-
/**
|
|
6115
|
-
*
|
|
6116
|
-
* @type {Array<string>}
|
|
6117
|
-
* @memberof ActionsApiSearchKnowledge
|
|
6118
|
-
*/
|
|
6119
|
-
readonly scopes?: Array<string>;
|
|
6120
|
-
}
|
|
6121
5684
|
/**
|
|
6122
5685
|
* Request parameters for tags operation in ActionsApi.
|
|
6123
5686
|
* @export
|
|
@@ -6189,25 +5752,6 @@ export interface ActionsApiTriggerQualityIssuesCalculationRequest {
|
|
|
6189
5752
|
*/
|
|
6190
5753
|
readonly workspaceId: string;
|
|
6191
5754
|
}
|
|
6192
|
-
/**
|
|
6193
|
-
* Request parameters for upsertDocument operation in ActionsApi.
|
|
6194
|
-
* @export
|
|
6195
|
-
* @interface ActionsApiUpsertDocumentRequest
|
|
6196
|
-
*/
|
|
6197
|
-
export interface ActionsApiUpsertDocumentRequest {
|
|
6198
|
-
/**
|
|
6199
|
-
* Workspace identifier
|
|
6200
|
-
* @type {string}
|
|
6201
|
-
* @memberof ActionsApiUpsertDocument
|
|
6202
|
-
*/
|
|
6203
|
-
readonly workspaceId: string;
|
|
6204
|
-
/**
|
|
6205
|
-
*
|
|
6206
|
-
* @type {UpsertKnowledgeDocumentRequestDto}
|
|
6207
|
-
* @memberof ActionsApiUpsertDocument
|
|
6208
|
-
*/
|
|
6209
|
-
readonly upsertKnowledgeDocumentRequestDto: UpsertKnowledgeDocumentRequestDto;
|
|
6210
|
-
}
|
|
6211
5755
|
/**
|
|
6212
5756
|
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
6213
5757
|
* @export
|
|
@@ -6401,14 +5945,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6401
5945
|
* @memberof ActionsApi
|
|
6402
5946
|
*/
|
|
6403
5947
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
6404
|
-
/**
|
|
6405
|
-
*
|
|
6406
|
-
* @param {ActionsApiCreateDocumentRequest} requestParameters Request parameters.
|
|
6407
|
-
* @param {*} [options] Override http request option.
|
|
6408
|
-
* @throws {RequiredError}
|
|
6409
|
-
* @memberof ActionsApi
|
|
6410
|
-
*/
|
|
6411
|
-
createDocument(requestParameters: ActionsApiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<CreateKnowledgeDocumentResponseDto>;
|
|
6412
5948
|
/**
|
|
6413
5949
|
* Returns a list of Users who created any object for this workspace
|
|
6414
5950
|
* @summary Get Analytics Catalog CreatedBy Users
|
|
@@ -6418,14 +5954,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6418
5954
|
* @memberof ActionsApi
|
|
6419
5955
|
*/
|
|
6420
5956
|
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
6421
|
-
/**
|
|
6422
|
-
*
|
|
6423
|
-
* @param {ActionsApiDeleteDocumentRequest} requestParameters Request parameters.
|
|
6424
|
-
* @param {*} [options] Override http request option.
|
|
6425
|
-
* @throws {RequiredError}
|
|
6426
|
-
* @memberof ActionsApi
|
|
6427
|
-
*/
|
|
6428
|
-
deleteDocument(requestParameters: ActionsApiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<DeleteKnowledgeDocumentResponseDto>;
|
|
6429
5957
|
/**
|
|
6430
5958
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
6431
5959
|
* @summary AFM explain resource.
|
|
@@ -6479,14 +6007,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6479
6007
|
* @memberof ActionsApi
|
|
6480
6008
|
*/
|
|
6481
6009
|
generateTitle(requestParameters: ActionsApiGenerateTitleRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateTitleResponse>;
|
|
6482
|
-
/**
|
|
6483
|
-
*
|
|
6484
|
-
* @param {ActionsApiGetDocumentRequest} requestParameters Request parameters.
|
|
6485
|
-
* @param {*} [options] Override http request option.
|
|
6486
|
-
* @throws {RequiredError}
|
|
6487
|
-
* @memberof ActionsApi
|
|
6488
|
-
*/
|
|
6489
|
-
getDocument(requestParameters: ActionsApiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
6490
6010
|
/**
|
|
6491
6011
|
* Returns metadata quality issues detected by the platform linter.
|
|
6492
6012
|
* @summary Get Quality Issues
|
|
@@ -6531,14 +6051,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6531
6051
|
* @memberof ActionsApi
|
|
6532
6052
|
*/
|
|
6533
6053
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
6534
|
-
/**
|
|
6535
|
-
*
|
|
6536
|
-
* @param {ActionsApiListDocumentsRequest} requestParameters Request parameters.
|
|
6537
|
-
* @param {*} [options] Override http request option.
|
|
6538
|
-
* @throws {RequiredError}
|
|
6539
|
-
* @memberof ActionsApi
|
|
6540
|
-
*/
|
|
6541
|
-
listDocuments(requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
|
|
6542
6054
|
/**
|
|
6543
6055
|
* Lists models available on an LLM provider with a full definition. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
|
|
6544
6056
|
* @summary List LLM Provider Models
|
|
@@ -6584,14 +6096,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6584
6096
|
* @memberof ActionsApi
|
|
6585
6097
|
*/
|
|
6586
6098
|
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
6587
|
-
/**
|
|
6588
|
-
*
|
|
6589
|
-
* @param {ActionsApiPatchDocumentRequest} requestParameters Request parameters.
|
|
6590
|
-
* @param {*} [options] Override http request option.
|
|
6591
|
-
* @throws {RequiredError}
|
|
6592
|
-
* @memberof ActionsApi
|
|
6593
|
-
*/
|
|
6594
|
-
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
6595
6099
|
/**
|
|
6596
6100
|
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
6597
6101
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6638,14 +6142,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6638
6142
|
* @memberof ActionsApi
|
|
6639
6143
|
*/
|
|
6640
6144
|
retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
6641
|
-
/**
|
|
6642
|
-
*
|
|
6643
|
-
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
6644
|
-
* @param {*} [options] Override http request option.
|
|
6645
|
-
* @throws {RequiredError}
|
|
6646
|
-
* @memberof ActionsApi
|
|
6647
|
-
*/
|
|
6648
|
-
searchKnowledge(requestParameters: ActionsApiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<SearchKnowledgeResponseDto>;
|
|
6649
6145
|
/**
|
|
6650
6146
|
* Returns a list of tags for this workspace
|
|
6651
6147
|
* @summary Get Analytics Catalog Tags
|
|
@@ -6691,14 +6187,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6691
6187
|
* @memberof ActionsApi
|
|
6692
6188
|
*/
|
|
6693
6189
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
6694
|
-
/**
|
|
6695
|
-
*
|
|
6696
|
-
* @param {ActionsApiUpsertDocumentRequest} requestParameters Request parameters.
|
|
6697
|
-
* @param {*} [options] Override http request option.
|
|
6698
|
-
* @throws {RequiredError}
|
|
6699
|
-
* @memberof ActionsApi
|
|
6700
|
-
*/
|
|
6701
|
-
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
6702
6190
|
/**
|
|
6703
6191
|
* Will be soon removed and replaced by testLlmProvider.
|
|
6704
6192
|
* @summary Validate LLM Endpoint
|