@gooddata/api-client-tiger 11.25.0-alpha.5 → 11.25.0-alpha.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -448,7 +448,7 @@ export type AzureFoundryApiKeyAuthTypeEnum = 'API_KEY';
448
448
  */
449
449
  export interface AzureFoundryProviderConfig {
450
450
  /**
451
- * Azure AI inference endpoint URL.
451
+ * Azure OpenAI endpoint URL.
452
452
  */
453
453
  'endpoint': string;
454
454
  'auth': AzureFoundryApiKeyAuth;
@@ -1368,6 +1368,15 @@ export interface GetQualityIssuesResponse {
1368
1368
  'status': GetQualityIssuesResponseStatusEnum;
1369
1369
  }
1370
1370
  export type GetQualityIssuesResponseStatusEnum = 'RUNNING' | 'SYNCING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'NOT_FOUND' | 'DISABLED';
1371
+ /**
1372
+ * Status of an AI Lake service
1373
+ */
1374
+ export interface GetServiceStatusResponse {
1375
+ /**
1376
+ * The payload to pass to the command
1377
+ */
1378
+ 'status': object | null;
1379
+ }
1371
1380
  /**
1372
1381
  * Contains the information specific for a group of headers. These groups correlate to attributes and metric groups.
1373
1382
  */
@@ -1474,6 +1483,23 @@ export interface ListKnowledgeDocumentsResponseDto {
1474
1483
  'totalCount'?: number;
1475
1484
  'nextPageToken'?: string;
1476
1485
  }
1486
+ export interface ListLlmProviderModelsRequest {
1487
+ 'providerConfig': TestLlmProviderByIdRequestProviderConfig;
1488
+ }
1489
+ export interface ListLlmProviderModelsResponse {
1490
+ /**
1491
+ * Whether the model listing succeeded.
1492
+ */
1493
+ 'success': boolean;
1494
+ /**
1495
+ * Message about the listing result.
1496
+ */
1497
+ 'message': string;
1498
+ /**
1499
+ * Available models on the provider.
1500
+ */
1501
+ 'models': Array<LlmModel>;
1502
+ }
1477
1503
  /**
1478
1504
  * Paged response for listing AI Lake services
1479
1505
  */
@@ -1500,10 +1526,10 @@ export interface LlmModel {
1500
1526
  */
1501
1527
  'family': LlmModelFamilyEnum;
1502
1528
  }
1503
- export type LlmModelFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE';
1529
+ export type LlmModelFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
1504
1530
  /**
1505
1531
  * @type LlmProviderConfig
1506
- * Provider configuration to test.
1532
+ * Provider configuration overrides.
1507
1533
  */
1508
1534
  export type LlmProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
1509
1535
  /**
@@ -1737,7 +1763,7 @@ export interface OpenAIProviderConfig {
1737
1763
  /**
1738
1764
  * Custom base URL for OpenAI API.
1739
1765
  */
1740
- 'baseUrl'?: string | null;
1766
+ 'baseUrl'?: string;
1741
1767
  'auth': OpenAiApiKeyAuth;
1742
1768
  /**
1743
1769
  * Provider type.
@@ -2483,17 +2509,24 @@ export interface Suggestion {
2483
2509
  */
2484
2510
  'label': string;
2485
2511
  }
2486
- export interface TestLlmProviderDefinitionRequest {
2487
- 'providerConfig': TestLlmProviderDefinitionRequestProviderConfig;
2512
+ export interface TestLlmProviderByIdRequest {
2513
+ 'providerConfig'?: TestLlmProviderByIdRequestProviderConfig;
2488
2514
  /**
2489
- * Models to test.
2515
+ * Models overrides.
2490
2516
  */
2491
2517
  'models'?: Array<LlmModel>;
2492
2518
  }
2493
2519
  /**
2494
- * @type TestLlmProviderDefinitionRequestProviderConfig
2520
+ * @type TestLlmProviderByIdRequestProviderConfig
2495
2521
  */
2496
- export type TestLlmProviderDefinitionRequestProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
2522
+ export type TestLlmProviderByIdRequestProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
2523
+ export interface TestLlmProviderDefinitionRequest {
2524
+ 'providerConfig': TestLlmProviderByIdRequestProviderConfig;
2525
+ /**
2526
+ * Models to test.
2527
+ */
2528
+ 'models'?: Array<LlmModel>;
2529
+ }
2497
2530
  export interface TestLlmProviderResponse {
2498
2531
  /**
2499
2532
  * Whether the LLM provider is reachable.
@@ -2627,6 +2660,10 @@ export interface TrendingObjectItem {
2627
2660
  * Title of the associated dataset, if applicable.
2628
2661
  */
2629
2662
  'datasetTitle'?: string;
2663
+ /**
2664
+ * Number of times this object has been used/referenced.
2665
+ */
2666
+ 'usageCount': number;
2630
2667
  }
2631
2668
  export interface TrendingObjectsResult {
2632
2669
  'objects': Array<TrendingObjectItem>;
@@ -2826,6 +2863,15 @@ export declare function AILakeApiAxiosParamCreator_GetAiLakeDatabaseInstance(ins
2826
2863
  * @throws {RequiredError}
2827
2864
  */
2828
2865
  export declare function AILakeApiAxiosParamCreator_GetAiLakeOperation(operationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
2866
+ /**
2867
+ * (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
2868
+ * @summary (BETA) Get AI Lake service status
2869
+ * @param {string} serviceId
2870
+ * @param {*} [options] Override http request option.
2871
+ * @param {Configuration} [configuration] Optional configuration.
2872
+ * @throws {RequiredError}
2873
+ */
2874
+ export declare function AILakeApiAxiosParamCreator_GetAiLakeServiceStatus(serviceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
2829
2875
  /**
2830
2876
  * (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
2831
2877
  * @summary (BETA) List AI Lake Database instances
@@ -2903,6 +2949,17 @@ export declare function AILakeApi_GetAiLakeDatabaseInstance(axios: AxiosInstance
2903
2949
  * @throws {RequiredError}
2904
2950
  */
2905
2951
  export declare function AILakeApi_GetAiLakeOperation(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GetAiLakeOperation200Response>;
2952
+ /**
2953
+ * (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
2954
+ * @summary (BETA) Get AI Lake service status
2955
+ * @param {AxiosInstance} axios Axios instance.
2956
+ * @param {string} basePath Base path.
2957
+ * @param {AILakeApiGetAiLakeServiceStatusRequest} requestParameters Request parameters.
2958
+ * @param {*} [options] Override http request option.
2959
+ * @param {Configuration} [configuration] Optional configuration.
2960
+ * @throws {RequiredError}
2961
+ */
2962
+ export declare function AILakeApi_GetAiLakeServiceStatus(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GetServiceStatusResponse>;
2906
2963
  /**
2907
2964
  * (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
2908
2965
  * @summary (BETA) List AI Lake Database instances
@@ -2980,6 +3037,15 @@ export interface AILakeApiInterface {
2980
3037
  * @memberof AILakeApiInterface
2981
3038
  */
2982
3039
  getAiLakeOperation(requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig): AxiosPromise<GetAiLakeOperation200Response>;
3040
+ /**
3041
+ * (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
3042
+ * @summary (BETA) Get AI Lake service status
3043
+ * @param {AILakeApiGetAiLakeServiceStatusRequest} requestParameters Request parameters.
3044
+ * @param {*} [options] Override http request option.
3045
+ * @throws {RequiredError}
3046
+ * @memberof AILakeApiInterface
3047
+ */
3048
+ getAiLakeServiceStatus(requestParameters: AILakeApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
2983
3049
  /**
2984
3050
  * (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
2985
3051
  * @summary (BETA) List AI Lake Database instances
@@ -3062,6 +3128,19 @@ export interface AILakeApiGetAiLakeOperationRequest {
3062
3128
  */
3063
3129
  readonly operationId: string;
3064
3130
  }
3131
+ /**
3132
+ * Request parameters for getAiLakeServiceStatus operation in AILakeApi.
3133
+ * @export
3134
+ * @interface AILakeApiGetAiLakeServiceStatusRequest
3135
+ */
3136
+ export interface AILakeApiGetAiLakeServiceStatusRequest {
3137
+ /**
3138
+ *
3139
+ * @type {string}
3140
+ * @memberof AILakeApiGetAiLakeServiceStatus
3141
+ */
3142
+ readonly serviceId: string;
3143
+ }
3065
3144
  /**
3066
3145
  * Request parameters for listAiLakeDatabaseInstances operation in AILakeApi.
3067
3146
  * @export
@@ -3196,6 +3275,15 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
3196
3275
  * @memberof AILakeApi
3197
3276
  */
3198
3277
  getAiLakeOperation(requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig): AxiosPromise<GetAiLakeOperation200Response>;
3278
+ /**
3279
+ * (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
3280
+ * @summary (BETA) Get AI Lake service status
3281
+ * @param {AILakeApiGetAiLakeServiceStatusRequest} requestParameters Request parameters.
3282
+ * @param {*} [options] Override http request option.
3283
+ * @throws {RequiredError}
3284
+ * @memberof AILakeApi
3285
+ */
3286
+ getAiLakeServiceStatus(requestParameters: AILakeApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
3199
3287
  /**
3200
3288
  * (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
3201
3289
  * @summary (BETA) List AI Lake Database instances
@@ -3571,14 +3659,32 @@ export declare function ActionsApiAxiosParamCreator_KeyDriverAnalysisResult(work
3571
3659
  * @param {Array<string>} [scopes]
3572
3660
  * @param {number} [size]
3573
3661
  * @param {string} [pageToken]
3574
- * @param {string} [query]
3575
- * @param {string} [state]
3576
3662
  * @param {string} [metaInclude]
3663
+ * @param {string} [state]
3664
+ * @param {string} [query]
3665
+ * @param {*} [options] Override http request option.
3666
+ * @param {Configuration} [configuration] Optional configuration.
3667
+ * @throws {RequiredError}
3668
+ */
3669
+ 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>;
3670
+ /**
3671
+ * 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.
3672
+ * @summary List LLM Provider Models
3673
+ * @param {ListLlmProviderModelsRequest} listLlmProviderModelsRequest
3577
3674
  * @param {*} [options] Override http request option.
3578
3675
  * @param {Configuration} [configuration] Optional configuration.
3579
3676
  * @throws {RequiredError}
3580
3677
  */
3581
- export declare function ActionsApiAxiosParamCreator_ListDocuments(workspaceId: string, scopes?: Array<string>, size?: number, pageToken?: string, query?: string, state?: string, metaInclude?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3678
+ export declare function ActionsApiAxiosParamCreator_ListLlmProviderModels(listLlmProviderModelsRequest: ListLlmProviderModelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3679
+ /**
3680
+ * Lists models available on an existing LLM provider by its ID. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
3681
+ * @summary List LLM Provider Models By Id
3682
+ * @param {string} llmProviderId
3683
+ * @param {*} [options] Override http request option.
3684
+ * @param {Configuration} [configuration] Optional configuration.
3685
+ * @throws {RequiredError}
3686
+ */
3687
+ export declare function ActionsApiAxiosParamCreator_ListLlmProviderModelsById(llmProviderId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3582
3688
  /**
3583
3689
  * Returns a list of Users who created any memory item for this workspace
3584
3690
  * @summary Get AI Memory CreatedBy Users
@@ -3688,11 +3794,21 @@ export declare function ActionsApiAxiosParamCreator_TestLlmProvider(testLlmProvi
3688
3794
  * Tests an existing LLM provider connectivity by its ID.
3689
3795
  * @summary Test LLM Provider By Id
3690
3796
  * @param {string} llmProviderId
3797
+ * @param {TestLlmProviderByIdRequest} [testLlmProviderByIdRequest]
3691
3798
  * @param {*} [options] Override http request option.
3692
3799
  * @param {Configuration} [configuration] Optional configuration.
3693
3800
  * @throws {RequiredError}
3694
3801
  */
3695
- export declare function ActionsApiAxiosParamCreator_TestLlmProviderById(llmProviderId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3802
+ export declare function ActionsApiAxiosParamCreator_TestLlmProviderById(llmProviderId: string, testLlmProviderByIdRequest?: TestLlmProviderByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3803
+ /**
3804
+ * Returns a list of trending objects for this workspace
3805
+ * @summary Get Trending Analytics Catalog Objects
3806
+ * @param {string} workspaceId Workspace identifier
3807
+ * @param {*} [options] Override http request option.
3808
+ * @param {Configuration} [configuration] Optional configuration.
3809
+ * @throws {RequiredError}
3810
+ */
3811
+ export declare function ActionsApiAxiosParamCreator_TrendingObjects(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3696
3812
  /**
3697
3813
  * Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
3698
3814
  * @summary Trigger Quality Issues Calculation
@@ -4088,6 +4204,28 @@ export declare function ActionsApi_KeyDriverAnalysisResult(axios: AxiosInstance,
4088
4204
  * @throws {RequiredError}
4089
4205
  */
4090
4206
  export declare function ActionsApi_ListDocuments(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
4207
+ /**
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.
4209
+ * @summary List LLM Provider Models
4210
+ * @param {AxiosInstance} axios Axios instance.
4211
+ * @param {string} basePath Base path.
4212
+ * @param {ActionsApiListLlmProviderModelsRequest} requestParameters Request parameters.
4213
+ * @param {*} [options] Override http request option.
4214
+ * @param {Configuration} [configuration] Optional configuration.
4215
+ * @throws {RequiredError}
4216
+ */
4217
+ export declare function ActionsApi_ListLlmProviderModels(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiListLlmProviderModelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListLlmProviderModelsResponse>;
4218
+ /**
4219
+ * Lists models available on an existing LLM provider by its ID. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
4220
+ * @summary List LLM Provider Models By Id
4221
+ * @param {AxiosInstance} axios Axios instance.
4222
+ * @param {string} basePath Base path.
4223
+ * @param {ActionsApiListLlmProviderModelsByIdRequest} requestParameters Request parameters.
4224
+ * @param {*} [options] Override http request option.
4225
+ * @param {Configuration} [configuration] Optional configuration.
4226
+ * @throws {RequiredError}
4227
+ */
4228
+ export declare function ActionsApi_ListLlmProviderModelsById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiListLlmProviderModelsByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListLlmProviderModelsResponse>;
4091
4229
  /**
4092
4230
  * Returns a list of Users who created any memory item for this workspace
4093
4231
  * @summary Get AI Memory CreatedBy Users
@@ -4207,6 +4345,17 @@ export declare function ActionsApi_TestLlmProvider(axios: AxiosInstance, basePat
4207
4345
  * @throws {RequiredError}
4208
4346
  */
4209
4347
  export declare function ActionsApi_TestLlmProviderById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TestLlmProviderResponse>;
4348
+ /**
4349
+ * Returns a list of trending objects for this workspace
4350
+ * @summary Get Trending Analytics Catalog Objects
4351
+ * @param {AxiosInstance} axios Axios instance.
4352
+ * @param {string} basePath Base path.
4353
+ * @param {ActionsApiTrendingObjectsRequest} requestParameters Request parameters.
4354
+ * @param {*} [options] Override http request option.
4355
+ * @param {Configuration} [configuration] Optional configuration.
4356
+ * @throws {RequiredError}
4357
+ */
4358
+ export declare function ActionsApi_TrendingObjects(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTrendingObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TrendingObjectsResult>;
4210
4359
  /**
4211
4360
  * Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
4212
4361
  * @summary Trigger Quality Issues Calculation
@@ -4548,6 +4697,24 @@ export interface ActionsApiInterface {
4548
4697
  * @memberof ActionsApiInterface
4549
4698
  */
4550
4699
  listDocuments(requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
4700
+ /**
4701
+ * 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.
4702
+ * @summary List LLM Provider Models
4703
+ * @param {ActionsApiListLlmProviderModelsRequest} requestParameters Request parameters.
4704
+ * @param {*} [options] Override http request option.
4705
+ * @throws {RequiredError}
4706
+ * @memberof ActionsApiInterface
4707
+ */
4708
+ listLlmProviderModels(requestParameters: ActionsApiListLlmProviderModelsRequest, options?: AxiosRequestConfig): AxiosPromise<ListLlmProviderModelsResponse>;
4709
+ /**
4710
+ * Lists models available on an existing LLM provider by its ID. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
4711
+ * @summary List LLM Provider Models By Id
4712
+ * @param {ActionsApiListLlmProviderModelsByIdRequest} requestParameters Request parameters.
4713
+ * @param {*} [options] Override http request option.
4714
+ * @throws {RequiredError}
4715
+ * @memberof ActionsApiInterface
4716
+ */
4717
+ listLlmProviderModelsById(requestParameters: ActionsApiListLlmProviderModelsByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ListLlmProviderModelsResponse>;
4551
4718
  /**
4552
4719
  * Returns a list of Users who created any memory item for this workspace
4553
4720
  * @summary Get AI Memory CreatedBy Users
@@ -4645,6 +4812,15 @@ export interface ActionsApiInterface {
4645
4812
  * @memberof ActionsApiInterface
4646
4813
  */
4647
4814
  testLlmProviderById(requestParameters: ActionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
4815
+ /**
4816
+ * Returns a list of trending objects for this workspace
4817
+ * @summary Get Trending Analytics Catalog Objects
4818
+ * @param {ActionsApiTrendingObjectsRequest} requestParameters Request parameters.
4819
+ * @param {*} [options] Override http request option.
4820
+ * @throws {RequiredError}
4821
+ * @memberof ActionsApiInterface
4822
+ */
4823
+ trendingObjects(requestParameters: ActionsApiTrendingObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<TrendingObjectsResult>;
4648
4824
  /**
4649
4825
  * Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
4650
4826
  * @summary Trigger Quality Issues Calculation
@@ -5428,13 +5604,13 @@ export interface ActionsApiListDocumentsRequest {
5428
5604
  */
5429
5605
  readonly pageToken?: string;
5430
5606
  /**
5431
- * Filter documents by title/filename substring match.
5607
+ *
5432
5608
  * @type {string}
5433
5609
  * @memberof ActionsApiListDocuments
5434
5610
  */
5435
- readonly query?: string;
5611
+ readonly metaInclude?: string;
5436
5612
  /**
5437
- * Filter documents by enabled/disabled state.
5613
+ *
5438
5614
  * @type {string}
5439
5615
  * @memberof ActionsApiListDocuments
5440
5616
  */
@@ -5444,7 +5620,33 @@ export interface ActionsApiListDocumentsRequest {
5444
5620
  * @type {string}
5445
5621
  * @memberof ActionsApiListDocuments
5446
5622
  */
5447
- readonly metaInclude?: string;
5623
+ readonly query?: string;
5624
+ }
5625
+ /**
5626
+ * Request parameters for listLlmProviderModels operation in ActionsApi.
5627
+ * @export
5628
+ * @interface ActionsApiListLlmProviderModelsRequest
5629
+ */
5630
+ export interface ActionsApiListLlmProviderModelsRequest {
5631
+ /**
5632
+ *
5633
+ * @type {ListLlmProviderModelsRequest}
5634
+ * @memberof ActionsApiListLlmProviderModels
5635
+ */
5636
+ readonly listLlmProviderModelsRequest: ListLlmProviderModelsRequest;
5637
+ }
5638
+ /**
5639
+ * Request parameters for listLlmProviderModelsById operation in ActionsApi.
5640
+ * @export
5641
+ * @interface ActionsApiListLlmProviderModelsByIdRequest
5642
+ */
5643
+ export interface ActionsApiListLlmProviderModelsByIdRequest {
5644
+ /**
5645
+ *
5646
+ * @type {string}
5647
+ * @memberof ActionsApiListLlmProviderModelsById
5648
+ */
5649
+ readonly llmProviderId: string;
5448
5650
  }
5449
5651
  /**
5450
5652
  * Request parameters for memoryCreatedByUsers operation in ActionsApi.
@@ -5690,6 +5892,25 @@ export interface ActionsApiTestLlmProviderByIdRequest {
5690
5892
  * @memberof ActionsApiTestLlmProviderById
5691
5893
  */
5692
5894
  readonly llmProviderId: string;
5895
+ /**
5896
+ *
5897
+ * @type {TestLlmProviderByIdRequest}
5898
+ * @memberof ActionsApiTestLlmProviderById
5899
+ */
5900
+ readonly testLlmProviderByIdRequest?: TestLlmProviderByIdRequest;
5901
+ }
5902
+ /**
5903
+ * Request parameters for trendingObjects operation in ActionsApi.
5904
+ * @export
5905
+ * @interface ActionsApiTrendingObjectsRequest
5906
+ */
5907
+ export interface ActionsApiTrendingObjectsRequest {
5908
+ /**
5909
+ * Workspace identifier
5910
+ * @type {string}
5911
+ * @memberof ActionsApiTrendingObjects
5912
+ */
5913
+ readonly workspaceId: string;
5693
5914
  }
5694
5915
  /**
5695
5916
  * Request parameters for triggerQualityIssuesCalculation operation in ActionsApi.
@@ -6054,6 +6275,24 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
6054
6275
  * @memberof ActionsApi
6055
6276
  */
6056
6277
  listDocuments(requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
6278
+ /**
6279
+ * 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.
6280
+ * @summary List LLM Provider Models
6281
+ * @param {ActionsApiListLlmProviderModelsRequest} requestParameters Request parameters.
6282
+ * @param {*} [options] Override http request option.
6283
+ * @throws {RequiredError}
6284
+ * @memberof ActionsApi
6285
+ */
6286
+ listLlmProviderModels(requestParameters: ActionsApiListLlmProviderModelsRequest, options?: AxiosRequestConfig): AxiosPromise<ListLlmProviderModelsResponse>;
6287
+ /**
6288
+ * Lists models available on an existing LLM provider by its ID. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
6289
+ * @summary List LLM Provider Models By Id
6290
+ * @param {ActionsApiListLlmProviderModelsByIdRequest} requestParameters Request parameters.
6291
+ * @param {*} [options] Override http request option.
6292
+ * @throws {RequiredError}
6293
+ * @memberof ActionsApi
6294
+ */
6295
+ listLlmProviderModelsById(requestParameters: ActionsApiListLlmProviderModelsByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ListLlmProviderModelsResponse>;
6057
6296
  /**
6058
6297
  * Returns a list of Users who created any memory item for this workspace
6059
6298
  * @summary Get AI Memory CreatedBy Users
@@ -6151,6 +6390,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
6151
6390
  * @memberof ActionsApi
6152
6391
  */
6153
6392
  testLlmProviderById(requestParameters: ActionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
6393
+ /**
6394
+ * Returns a list of trending objects for this workspace
6395
+ * @summary Get Trending Analytics Catalog Objects
6396
+ * @param {ActionsApiTrendingObjectsRequest} requestParameters Request parameters.
6397
+ * @param {*} [options] Override http request option.
6398
+ * @throws {RequiredError}
6399
+ * @memberof ActionsApi
6400
+ */
6401
+ trendingObjects(requestParameters: ActionsApiTrendingObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<TrendingObjectsResult>;
6154
6402
  /**
6155
6403
  * Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
6156
6404
  * @summary Trigger Quality Issues Calculation
@@ -7295,6 +7543,24 @@ export declare function SmartFunctionsApiAxiosParamCreator_GetQualityIssues(work
7295
7543
  * @throws {RequiredError}
7296
7544
  */
7297
7545
  export declare function SmartFunctionsApiAxiosParamCreator_GetQualityIssuesCalculationStatus(workspaceId: string, processId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7546
+ /**
7547
+ * 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.
7548
+ * @summary List LLM Provider Models
7549
+ * @param {ListLlmProviderModelsRequest} listLlmProviderModelsRequest
7550
+ * @param {*} [options] Override http request option.
7551
+ * @param {Configuration} [configuration] Optional configuration.
7552
+ * @throws {RequiredError}
7553
+ */
7554
+ export declare function SmartFunctionsApiAxiosParamCreator_ListLlmProviderModels(listLlmProviderModelsRequest: ListLlmProviderModelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7555
+ /**
7556
+ * Lists models available on an existing LLM provider by its ID. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
7557
+ * @summary List LLM Provider Models By Id
7558
+ * @param {string} llmProviderId
7559
+ * @param {*} [options] Override http request option.
7560
+ * @param {Configuration} [configuration] Optional configuration.
7561
+ * @throws {RequiredError}
7562
+ */
7563
+ export declare function SmartFunctionsApiAxiosParamCreator_ListLlmProviderModelsById(llmProviderId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7298
7564
  /**
7299
7565
  * Returns a list of Users who created any memory item for this workspace
7300
7566
  * @summary Get AI Memory CreatedBy Users
@@ -7335,11 +7601,21 @@ export declare function SmartFunctionsApiAxiosParamCreator_TestLlmProvider(testL
7335
7601
  * Tests an existing LLM provider connectivity by its ID.
7336
7602
  * @summary Test LLM Provider By Id
7337
7603
  * @param {string} llmProviderId
7604
+ * @param {TestLlmProviderByIdRequest} [testLlmProviderByIdRequest]
7338
7605
  * @param {*} [options] Override http request option.
7339
7606
  * @param {Configuration} [configuration] Optional configuration.
7340
7607
  * @throws {RequiredError}
7341
7608
  */
7342
- export declare function SmartFunctionsApiAxiosParamCreator_TestLlmProviderById(llmProviderId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7609
+ export declare function SmartFunctionsApiAxiosParamCreator_TestLlmProviderById(llmProviderId: string, testLlmProviderByIdRequest?: TestLlmProviderByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7610
+ /**
7611
+ * Returns a list of trending objects for this workspace
7612
+ * @summary Get Trending Analytics Catalog Objects
7613
+ * @param {string} workspaceId Workspace identifier
7614
+ * @param {*} [options] Override http request option.
7615
+ * @param {Configuration} [configuration] Optional configuration.
7616
+ * @throws {RequiredError}
7617
+ */
7618
+ export declare function SmartFunctionsApiAxiosParamCreator_TrendingObjects(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7343
7619
  /**
7344
7620
  * Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
7345
7621
  * @summary Trigger Quality Issues Calculation
@@ -7544,6 +7820,28 @@ export declare function SmartFunctionsApi_GetQualityIssues(axios: AxiosInstance,
7544
7820
  * @throws {RequiredError}
7545
7821
  */
7546
7822
  export declare function SmartFunctionsApi_GetQualityIssuesCalculationStatus(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<QualityIssuesCalculationStatusResponse>;
7823
+ /**
7824
+ * 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.
7825
+ * @summary List LLM Provider Models
7826
+ * @param {AxiosInstance} axios Axios instance.
7827
+ * @param {string} basePath Base path.
7828
+ * @param {SmartFunctionsApiListLlmProviderModelsRequest} requestParameters Request parameters.
7829
+ * @param {*} [options] Override http request option.
7830
+ * @param {Configuration} [configuration] Optional configuration.
7831
+ * @throws {RequiredError}
7832
+ */
7833
+ export declare function SmartFunctionsApi_ListLlmProviderModels(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiListLlmProviderModelsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListLlmProviderModelsResponse>;
7834
+ /**
7835
+ * Lists models available on an existing LLM provider by its ID. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
7836
+ * @summary List LLM Provider Models By Id
7837
+ * @param {AxiosInstance} axios Axios instance.
7838
+ * @param {string} basePath Base path.
7839
+ * @param {SmartFunctionsApiListLlmProviderModelsByIdRequest} requestParameters Request parameters.
7840
+ * @param {*} [options] Override http request option.
7841
+ * @param {Configuration} [configuration] Optional configuration.
7842
+ * @throws {RequiredError}
7843
+ */
7844
+ export declare function SmartFunctionsApi_ListLlmProviderModelsById(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiListLlmProviderModelsByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListLlmProviderModelsResponse>;
7547
7845
  /**
7548
7846
  * Returns a list of Users who created any memory item for this workspace
7549
7847
  * @summary Get AI Memory CreatedBy Users
@@ -7599,6 +7897,17 @@ export declare function SmartFunctionsApi_TestLlmProvider(axios: AxiosInstance,
7599
7897
  * @throws {RequiredError}
7600
7898
  */
7601
7899
  export declare function SmartFunctionsApi_TestLlmProviderById(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TestLlmProviderResponse>;
7900
+ /**
7901
+ * Returns a list of trending objects for this workspace
7902
+ * @summary Get Trending Analytics Catalog Objects
7903
+ * @param {AxiosInstance} axios Axios instance.
7904
+ * @param {string} basePath Base path.
7905
+ * @param {SmartFunctionsApiTrendingObjectsRequest} requestParameters Request parameters.
7906
+ * @param {*} [options] Override http request option.
7907
+ * @param {Configuration} [configuration] Optional configuration.
7908
+ * @throws {RequiredError}
7909
+ */
7910
+ export declare function SmartFunctionsApi_TrendingObjects(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTrendingObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TrendingObjectsResult>;
7602
7911
  /**
7603
7912
  * Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
7604
7913
  * @summary Trigger Quality Issues Calculation
@@ -7782,6 +8091,24 @@ export interface SmartFunctionsApiInterface {
7782
8091
  * @memberof SmartFunctionsApiInterface
7783
8092
  */
7784
8093
  getQualityIssuesCalculationStatus(requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): AxiosPromise<QualityIssuesCalculationStatusResponse>;
8094
+ /**
8095
+ * 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.
8096
+ * @summary List LLM Provider Models
8097
+ * @param {SmartFunctionsApiListLlmProviderModelsRequest} requestParameters Request parameters.
8098
+ * @param {*} [options] Override http request option.
8099
+ * @throws {RequiredError}
8100
+ * @memberof SmartFunctionsApiInterface
8101
+ */
8102
+ listLlmProviderModels(requestParameters: SmartFunctionsApiListLlmProviderModelsRequest, options?: AxiosRequestConfig): AxiosPromise<ListLlmProviderModelsResponse>;
8103
+ /**
8104
+ * Lists models available on an existing LLM provider by its ID. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
8105
+ * @summary List LLM Provider Models By Id
8106
+ * @param {SmartFunctionsApiListLlmProviderModelsByIdRequest} requestParameters Request parameters.
8107
+ * @param {*} [options] Override http request option.
8108
+ * @throws {RequiredError}
8109
+ * @memberof SmartFunctionsApiInterface
8110
+ */
8111
+ listLlmProviderModelsById(requestParameters: SmartFunctionsApiListLlmProviderModelsByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ListLlmProviderModelsResponse>;
7785
8112
  /**
7786
8113
  * Returns a list of Users who created any memory item for this workspace
7787
8114
  * @summary Get AI Memory CreatedBy Users
@@ -7827,6 +8154,15 @@ export interface SmartFunctionsApiInterface {
7827
8154
  * @memberof SmartFunctionsApiInterface
7828
8155
  */
7829
8156
  testLlmProviderById(requestParameters: SmartFunctionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
8157
+ /**
8158
+ * Returns a list of trending objects for this workspace
8159
+ * @summary Get Trending Analytics Catalog Objects
8160
+ * @param {SmartFunctionsApiTrendingObjectsRequest} requestParameters Request parameters.
8161
+ * @param {*} [options] Override http request option.
8162
+ * @throws {RequiredError}
8163
+ * @memberof SmartFunctionsApiInterface
8164
+ */
8165
+ trendingObjects(requestParameters: SmartFunctionsApiTrendingObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<TrendingObjectsResult>;
7830
8166
  /**
7831
8167
  * Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
7832
8168
  * @summary Trigger Quality Issues Calculation
@@ -8213,6 +8549,32 @@ export interface SmartFunctionsApiGetQualityIssuesCalculationStatusRequest {
8213
8549
  */
8214
8550
  readonly processId: string;
8215
8551
  }
8552
+ /**
8553
+ * Request parameters for listLlmProviderModels operation in SmartFunctionsApi.
8554
+ * @export
8555
+ * @interface SmartFunctionsApiListLlmProviderModelsRequest
8556
+ */
8557
+ export interface SmartFunctionsApiListLlmProviderModelsRequest {
8558
+ /**
8559
+ *
8560
+ * @type {ListLlmProviderModelsRequest}
8561
+ * @memberof SmartFunctionsApiListLlmProviderModels
8562
+ */
8563
+ readonly listLlmProviderModelsRequest: ListLlmProviderModelsRequest;
8564
+ }
8565
+ /**
8566
+ * Request parameters for listLlmProviderModelsById operation in SmartFunctionsApi.
8567
+ * @export
8568
+ * @interface SmartFunctionsApiListLlmProviderModelsByIdRequest
8569
+ */
8570
+ export interface SmartFunctionsApiListLlmProviderModelsByIdRequest {
8571
+ /**
8572
+ *
8573
+ * @type {string}
8574
+ * @memberof SmartFunctionsApiListLlmProviderModelsById
8575
+ */
8576
+ readonly llmProviderId: string;
8577
+ }
8216
8578
  /**
8217
8579
  * Request parameters for memoryCreatedByUsers operation in SmartFunctionsApi.
8218
8580
  * @export
@@ -8277,6 +8639,25 @@ export interface SmartFunctionsApiTestLlmProviderByIdRequest {
8277
8639
  * @memberof SmartFunctionsApiTestLlmProviderById
8278
8640
  */
8279
8641
  readonly llmProviderId: string;
8642
+ /**
8643
+ *
8644
+ * @type {TestLlmProviderByIdRequest}
8645
+ * @memberof SmartFunctionsApiTestLlmProviderById
8646
+ */
8647
+ readonly testLlmProviderByIdRequest?: TestLlmProviderByIdRequest;
8648
+ }
8649
+ /**
8650
+ * Request parameters for trendingObjects operation in SmartFunctionsApi.
8651
+ * @export
8652
+ * @interface SmartFunctionsApiTrendingObjectsRequest
8653
+ */
8654
+ export interface SmartFunctionsApiTrendingObjectsRequest {
8655
+ /**
8656
+ * Workspace identifier
8657
+ * @type {string}
8658
+ * @memberof SmartFunctionsApiTrendingObjects
8659
+ */
8660
+ readonly workspaceId: string;
8280
8661
  }
8281
8662
  /**
8282
8663
  * Request parameters for triggerQualityIssuesCalculation operation in SmartFunctionsApi.
@@ -8474,6 +8855,24 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
8474
8855
  * @memberof SmartFunctionsApi
8475
8856
  */
8476
8857
  getQualityIssuesCalculationStatus(requestParameters: SmartFunctionsApiGetQualityIssuesCalculationStatusRequest, options?: AxiosRequestConfig): AxiosPromise<QualityIssuesCalculationStatusResponse>;
8858
+ /**
8859
+ * 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.
8860
+ * @summary List LLM Provider Models
8861
+ * @param {SmartFunctionsApiListLlmProviderModelsRequest} requestParameters Request parameters.
8862
+ * @param {*} [options] Override http request option.
8863
+ * @throws {RequiredError}
8864
+ * @memberof SmartFunctionsApi
8865
+ */
8866
+ listLlmProviderModels(requestParameters: SmartFunctionsApiListLlmProviderModelsRequest, options?: AxiosRequestConfig): AxiosPromise<ListLlmProviderModelsResponse>;
8867
+ /**
8868
+ * Lists models available on an existing LLM provider by its ID. For Azure AI Foundry providers, the model family will be set to UNKNOWN because the endpoint does not expose the family.
8869
+ * @summary List LLM Provider Models By Id
8870
+ * @param {SmartFunctionsApiListLlmProviderModelsByIdRequest} requestParameters Request parameters.
8871
+ * @param {*} [options] Override http request option.
8872
+ * @throws {RequiredError}
8873
+ * @memberof SmartFunctionsApi
8874
+ */
8875
+ listLlmProviderModelsById(requestParameters: SmartFunctionsApiListLlmProviderModelsByIdRequest, options?: AxiosRequestConfig): AxiosPromise<ListLlmProviderModelsResponse>;
8477
8876
  /**
8478
8877
  * Returns a list of Users who created any memory item for this workspace
8479
8878
  * @summary Get AI Memory CreatedBy Users
@@ -8519,6 +8918,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
8519
8918
  * @memberof SmartFunctionsApi
8520
8919
  */
8521
8920
  testLlmProviderById(requestParameters: SmartFunctionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
8921
+ /**
8922
+ * Returns a list of trending objects for this workspace
8923
+ * @summary Get Trending Analytics Catalog Objects
8924
+ * @param {SmartFunctionsApiTrendingObjectsRequest} requestParameters Request parameters.
8925
+ * @param {*} [options] Override http request option.
8926
+ * @throws {RequiredError}
8927
+ * @memberof SmartFunctionsApi
8928
+ */
8929
+ trendingObjects(requestParameters: SmartFunctionsApiTrendingObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<TrendingObjectsResult>;
8522
8930
  /**
8523
8931
  * Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
8524
8932
  * @summary Trigger Quality Issues Calculation