@gooddata/api-client-tiger 11.24.0-alpha.1 → 11.24.0-alpha.3
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 +932 -258
- package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts.map +1 -1
- package/esm/endpoints/entitiesObjects/index.js +2 -0
- package/esm/endpoints/entitiesObjects/index.js.map +1 -1
- package/esm/endpoints/genAI/index.d.ts +7 -1
- package/esm/endpoints/genAI/index.d.ts.map +1 -1
- package/esm/endpoints/genAI/index.js +11 -2
- package/esm/endpoints/genAI/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +1318 -46
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +1125 -43
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +247 -239
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/package.json +5 -5
|
@@ -398,6 +398,66 @@ export interface AttributeResultHeader {
|
|
|
398
398
|
*/
|
|
399
399
|
'primaryLabelValue': string;
|
|
400
400
|
}
|
|
401
|
+
export interface AwsBedrockAccessKeyAuth {
|
|
402
|
+
/**
|
|
403
|
+
* AWS Access Key ID.
|
|
404
|
+
*/
|
|
405
|
+
'accessKeyId'?: string | null;
|
|
406
|
+
/**
|
|
407
|
+
* AWS Secret Access Key.
|
|
408
|
+
*/
|
|
409
|
+
'secretAccessKey'?: string | null;
|
|
410
|
+
/**
|
|
411
|
+
* AWS Session Token (for temporary credentials).
|
|
412
|
+
*/
|
|
413
|
+
'sessionToken'?: string | null;
|
|
414
|
+
/**
|
|
415
|
+
* Authentication type.
|
|
416
|
+
*/
|
|
417
|
+
'type': AwsBedrockAccessKeyAuthTypeEnum;
|
|
418
|
+
}
|
|
419
|
+
export type AwsBedrockAccessKeyAuthTypeEnum = 'ACCESS_KEY';
|
|
420
|
+
/**
|
|
421
|
+
* Configuration for AWS Bedrock provider.
|
|
422
|
+
*/
|
|
423
|
+
export interface AwsBedrockProviderConfig {
|
|
424
|
+
/**
|
|
425
|
+
* AWS region for Bedrock.
|
|
426
|
+
*/
|
|
427
|
+
'region': string;
|
|
428
|
+
'auth': AwsBedrockAccessKeyAuth;
|
|
429
|
+
/**
|
|
430
|
+
* Provider type.
|
|
431
|
+
*/
|
|
432
|
+
'type': AwsBedrockProviderConfigTypeEnum;
|
|
433
|
+
}
|
|
434
|
+
export type AwsBedrockProviderConfigTypeEnum = 'AWS_BEDROCK';
|
|
435
|
+
export interface AzureFoundryApiKeyAuth {
|
|
436
|
+
/**
|
|
437
|
+
* Azure API key.
|
|
438
|
+
*/
|
|
439
|
+
'apiKey'?: string | null;
|
|
440
|
+
/**
|
|
441
|
+
* Authentication type.
|
|
442
|
+
*/
|
|
443
|
+
'type': AzureFoundryApiKeyAuthTypeEnum;
|
|
444
|
+
}
|
|
445
|
+
export type AzureFoundryApiKeyAuthTypeEnum = 'API_KEY';
|
|
446
|
+
/**
|
|
447
|
+
* Configuration for Azure Foundry provider.
|
|
448
|
+
*/
|
|
449
|
+
export interface AzureFoundryProviderConfig {
|
|
450
|
+
/**
|
|
451
|
+
* Azure AI inference endpoint URL.
|
|
452
|
+
*/
|
|
453
|
+
'endpoint': string;
|
|
454
|
+
'auth': AzureFoundryApiKeyAuth;
|
|
455
|
+
/**
|
|
456
|
+
* Provider type.
|
|
457
|
+
*/
|
|
458
|
+
'type': AzureFoundryProviderConfigTypeEnum;
|
|
459
|
+
}
|
|
460
|
+
export type AzureFoundryProviderConfigTypeEnum = 'AZURE_FOUNDRY';
|
|
401
461
|
/**
|
|
402
462
|
* Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
|
|
403
463
|
*/
|
|
@@ -753,6 +813,19 @@ export interface CompoundMeasureValueFilterCompoundMeasureValueFilter {
|
|
|
753
813
|
'applyOnResult'?: boolean;
|
|
754
814
|
'measure': AfmIdentifier;
|
|
755
815
|
}
|
|
816
|
+
export interface CreateKnowledgeDocumentRequestDto {
|
|
817
|
+
'filename': string;
|
|
818
|
+
'content': string;
|
|
819
|
+
'pageBoundaries'?: Array<number>;
|
|
820
|
+
'title'?: string;
|
|
821
|
+
'scopes'?: Array<string>;
|
|
822
|
+
}
|
|
823
|
+
export interface CreateKnowledgeDocumentResponseDto {
|
|
824
|
+
'filename': string;
|
|
825
|
+
'success': boolean;
|
|
826
|
+
'message': string;
|
|
827
|
+
'numChunks': number;
|
|
828
|
+
}
|
|
756
829
|
/**
|
|
757
830
|
* List of created visualization objects
|
|
758
831
|
*/
|
|
@@ -869,6 +942,10 @@ export interface DateRelativeFilter {
|
|
|
869
942
|
'to': number;
|
|
870
943
|
}
|
|
871
944
|
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';
|
|
945
|
+
export interface DeleteKnowledgeDocumentResponseDto {
|
|
946
|
+
'success': boolean;
|
|
947
|
+
'message': string;
|
|
948
|
+
}
|
|
872
949
|
/**
|
|
873
950
|
* Filter definition type specified by label and values.
|
|
874
951
|
*/
|
|
@@ -1234,6 +1311,27 @@ export interface GenerateDescriptionResponse {
|
|
|
1234
1311
|
*/
|
|
1235
1312
|
'note'?: string;
|
|
1236
1313
|
}
|
|
1314
|
+
export interface GenerateTitleRequest {
|
|
1315
|
+
/**
|
|
1316
|
+
* Type of the object to title. Matches chat-search object types.
|
|
1317
|
+
*/
|
|
1318
|
+
'objectType': GenerateTitleRequestObjectTypeEnum;
|
|
1319
|
+
/**
|
|
1320
|
+
* Identifier of the object to title
|
|
1321
|
+
*/
|
|
1322
|
+
'objectId': string;
|
|
1323
|
+
}
|
|
1324
|
+
export type GenerateTitleRequestObjectTypeEnum = 'Visualization' | 'Dashboard' | 'Metric' | 'Fact' | 'Attribute';
|
|
1325
|
+
export interface GenerateTitleResponse {
|
|
1326
|
+
/**
|
|
1327
|
+
* Generated title of the requested object
|
|
1328
|
+
*/
|
|
1329
|
+
'title'?: string;
|
|
1330
|
+
/**
|
|
1331
|
+
* Additional note with details in case generation was not performed
|
|
1332
|
+
*/
|
|
1333
|
+
'note'?: string;
|
|
1334
|
+
}
|
|
1237
1335
|
/**
|
|
1238
1336
|
* Configuration specific to geo area labels.
|
|
1239
1337
|
*/
|
|
@@ -1269,7 +1367,7 @@ export interface GetQualityIssuesResponse {
|
|
|
1269
1367
|
*/
|
|
1270
1368
|
'status': GetQualityIssuesResponseStatusEnum;
|
|
1271
1369
|
}
|
|
1272
|
-
export type GetQualityIssuesResponseStatusEnum = 'RUNNING' | 'SYNCING' | 'COMPLETED' | 'FAILED' | 'NOT_FOUND' | 'DISABLED';
|
|
1370
|
+
export type GetQualityIssuesResponseStatusEnum = 'RUNNING' | 'SYNCING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'NOT_FOUND' | 'DISABLED';
|
|
1273
1371
|
/**
|
|
1274
1372
|
* Contains the information specific for a group of headers. These groups correlate to attributes and metric groups.
|
|
1275
1373
|
*/
|
|
@@ -1335,6 +1433,79 @@ export interface KeyDriversResponse {
|
|
|
1335
1433
|
export interface KeyDriversResult {
|
|
1336
1434
|
'data': object;
|
|
1337
1435
|
}
|
|
1436
|
+
export interface KnowledgeDocumentMetadataDto {
|
|
1437
|
+
'filename': string;
|
|
1438
|
+
'workspaceId'?: string;
|
|
1439
|
+
'title'?: string;
|
|
1440
|
+
'numChunks': number;
|
|
1441
|
+
'createdAt': string;
|
|
1442
|
+
'updatedAt': string;
|
|
1443
|
+
'createdBy': string;
|
|
1444
|
+
'updatedBy': string;
|
|
1445
|
+
'scopes': Array<string>;
|
|
1446
|
+
'isDisabled'?: boolean;
|
|
1447
|
+
}
|
|
1448
|
+
export interface KnowledgeSearchResultDto {
|
|
1449
|
+
'filename': string;
|
|
1450
|
+
'content': string;
|
|
1451
|
+
'score': number;
|
|
1452
|
+
'chunkIndex': number;
|
|
1453
|
+
'totalChunks': number;
|
|
1454
|
+
'pageNumbers': Array<number>;
|
|
1455
|
+
'workspaceId'?: string;
|
|
1456
|
+
'title'?: string;
|
|
1457
|
+
'scopes': Array<string>;
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* Paged response for listing AI Lake database instances
|
|
1461
|
+
*/
|
|
1462
|
+
export interface ListDatabaseInstancesResponse {
|
|
1463
|
+
/**
|
|
1464
|
+
* List of database instances
|
|
1465
|
+
*/
|
|
1466
|
+
'databases': Array<DatabaseInstance>;
|
|
1467
|
+
/**
|
|
1468
|
+
* Total count of items (only set when metaInclude=page)
|
|
1469
|
+
*/
|
|
1470
|
+
'totalCount'?: number;
|
|
1471
|
+
}
|
|
1472
|
+
export interface ListKnowledgeDocumentsResponseDto {
|
|
1473
|
+
'documents': Array<KnowledgeDocumentMetadataDto>;
|
|
1474
|
+
'totalCount'?: number;
|
|
1475
|
+
'nextPageToken'?: string;
|
|
1476
|
+
}
|
|
1477
|
+
/**
|
|
1478
|
+
* Paged response for listing AI Lake services
|
|
1479
|
+
*/
|
|
1480
|
+
export interface ListServicesResponse {
|
|
1481
|
+
/**
|
|
1482
|
+
* List of services
|
|
1483
|
+
*/
|
|
1484
|
+
'services': Array<ServiceInfo>;
|
|
1485
|
+
/**
|
|
1486
|
+
* Total count of items (only set when metaInclude=page)
|
|
1487
|
+
*/
|
|
1488
|
+
'totalCount'?: number;
|
|
1489
|
+
}
|
|
1490
|
+
/**
|
|
1491
|
+
* LLM Model configuration (id, family) within a provider.
|
|
1492
|
+
*/
|
|
1493
|
+
export interface LlmModel {
|
|
1494
|
+
/**
|
|
1495
|
+
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
1496
|
+
*/
|
|
1497
|
+
'id': string;
|
|
1498
|
+
/**
|
|
1499
|
+
* Family of LLM models.
|
|
1500
|
+
*/
|
|
1501
|
+
'family': LlmModelFamilyEnum;
|
|
1502
|
+
}
|
|
1503
|
+
export type LlmModelFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE';
|
|
1504
|
+
/**
|
|
1505
|
+
* @type LlmProviderConfig
|
|
1506
|
+
* Provider configuration to test.
|
|
1507
|
+
*/
|
|
1508
|
+
export type LlmProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
1338
1509
|
/**
|
|
1339
1510
|
* Filter via label with given match type and literal value.
|
|
1340
1511
|
*/
|
|
@@ -1526,6 +1697,23 @@ export interface MetricValueChange {
|
|
|
1526
1697
|
*/
|
|
1527
1698
|
'overallMetricValueInReferencePeriod': number;
|
|
1528
1699
|
}
|
|
1700
|
+
/**
|
|
1701
|
+
* Per-model test results.
|
|
1702
|
+
*/
|
|
1703
|
+
export interface ModelTestResult {
|
|
1704
|
+
/**
|
|
1705
|
+
* The model ID that was tested.
|
|
1706
|
+
*/
|
|
1707
|
+
'modelId': string;
|
|
1708
|
+
/**
|
|
1709
|
+
* Whether the model test was successful.
|
|
1710
|
+
*/
|
|
1711
|
+
'successful': boolean;
|
|
1712
|
+
/**
|
|
1713
|
+
* Message about the model test result.
|
|
1714
|
+
*/
|
|
1715
|
+
'message': string;
|
|
1716
|
+
}
|
|
1529
1717
|
/**
|
|
1530
1718
|
* Filter able to limit element values by label and related selected negated elements.
|
|
1531
1719
|
*/
|
|
@@ -1538,6 +1726,36 @@ export interface NegativeAttributeFilterNegativeAttributeFilter {
|
|
|
1538
1726
|
'applyOnResult'?: boolean;
|
|
1539
1727
|
'label': AfmIdentifier;
|
|
1540
1728
|
}
|
|
1729
|
+
/**
|
|
1730
|
+
* Configuration for OpenAI provider.
|
|
1731
|
+
*/
|
|
1732
|
+
export interface OpenAIProviderConfig {
|
|
1733
|
+
/**
|
|
1734
|
+
* OpenAI organization ID.
|
|
1735
|
+
*/
|
|
1736
|
+
'organization'?: string | null;
|
|
1737
|
+
/**
|
|
1738
|
+
* Custom base URL for OpenAI API.
|
|
1739
|
+
*/
|
|
1740
|
+
'baseUrl'?: string | null;
|
|
1741
|
+
'auth': OpenAiApiKeyAuth;
|
|
1742
|
+
/**
|
|
1743
|
+
* Provider type.
|
|
1744
|
+
*/
|
|
1745
|
+
'type': OpenAIProviderConfigTypeEnum;
|
|
1746
|
+
}
|
|
1747
|
+
export type OpenAIProviderConfigTypeEnum = 'OPENAI';
|
|
1748
|
+
export interface OpenAiApiKeyAuth {
|
|
1749
|
+
/**
|
|
1750
|
+
* OpenAI API key.
|
|
1751
|
+
*/
|
|
1752
|
+
'apiKey'?: string | null;
|
|
1753
|
+
/**
|
|
1754
|
+
* Authentication type.
|
|
1755
|
+
*/
|
|
1756
|
+
'type': OpenAiApiKeyAuthTypeEnum;
|
|
1757
|
+
}
|
|
1758
|
+
export type OpenAiApiKeyAuthTypeEnum = 'API_KEY';
|
|
1541
1759
|
/**
|
|
1542
1760
|
* Represents a Long-Running Operation: a process that takes some time to complete.
|
|
1543
1761
|
*/
|
|
@@ -1547,12 +1765,12 @@ export interface Operation {
|
|
|
1547
1765
|
*/
|
|
1548
1766
|
'id': string;
|
|
1549
1767
|
/**
|
|
1550
|
-
* Type of the long-running operation.
|
|
1768
|
+
* Type of the long-running operation. * `provision-database` — Provisioning of an AI Lake database. * `deprovision-database` — Deprovisioning (deletion) of an AI Lake database. * `run-service-command` — Running a command in a particular AI Lake service.
|
|
1551
1769
|
*/
|
|
1552
1770
|
'kind': OperationKindEnum;
|
|
1553
1771
|
'status': string;
|
|
1554
1772
|
}
|
|
1555
|
-
export type OperationKindEnum = 'provision-database' | 'deprovision-database';
|
|
1773
|
+
export type OperationKindEnum = 'provision-database' | 'deprovision-database' | 'run-service-command';
|
|
1556
1774
|
/**
|
|
1557
1775
|
* Error information for a failed operation
|
|
1558
1776
|
*/
|
|
@@ -1635,6 +1853,11 @@ export interface Paging {
|
|
|
1635
1853
|
*/
|
|
1636
1854
|
'next'?: string;
|
|
1637
1855
|
}
|
|
1856
|
+
export interface PatchKnowledgeDocumentRequestDto {
|
|
1857
|
+
'isDisabled'?: boolean;
|
|
1858
|
+
'title'?: string;
|
|
1859
|
+
'scopes'?: Array<string>;
|
|
1860
|
+
}
|
|
1638
1861
|
/**
|
|
1639
1862
|
* Operation that is still pending
|
|
1640
1863
|
*/
|
|
@@ -1778,7 +2001,7 @@ export interface QualityIssuesCalculationStatusResponse {
|
|
|
1778
2001
|
*/
|
|
1779
2002
|
'error'?: string;
|
|
1780
2003
|
}
|
|
1781
|
-
export type QualityIssuesCalculationStatusResponseStatusEnum = 'RUNNING' | 'SYNCING' | 'COMPLETED' | 'FAILED' | 'NOT_FOUND' | 'DISABLED';
|
|
2004
|
+
export type QualityIssuesCalculationStatusResponseStatusEnum = 'RUNNING' | 'SYNCING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'NOT_FOUND' | 'DISABLED';
|
|
1782
2005
|
/**
|
|
1783
2006
|
* Condition that checks if the metric value is within a given range.
|
|
1784
2007
|
*/
|
|
@@ -1962,6 +2185,21 @@ export interface RouteResult {
|
|
|
1962
2185
|
'reasoning': string;
|
|
1963
2186
|
}
|
|
1964
2187
|
export type RouteResultUseCaseEnum = 'INVALID' | 'GENERAL' | 'SEARCH' | 'CREATE_VISUALIZATION' | 'EXTEND_VISUALIZATION' | 'HOWTO' | 'CHANGE_ANALYSIS' | 'ALERT';
|
|
2188
|
+
/**
|
|
2189
|
+
* Request to run an AI Lake Service Command
|
|
2190
|
+
*/
|
|
2191
|
+
export interface RunServiceCommandRequest {
|
|
2192
|
+
/**
|
|
2193
|
+
* The context to pass to the command
|
|
2194
|
+
*/
|
|
2195
|
+
'context'?: {
|
|
2196
|
+
[key: string]: string | null;
|
|
2197
|
+
} | null;
|
|
2198
|
+
/**
|
|
2199
|
+
* The payload to pass to the command
|
|
2200
|
+
*/
|
|
2201
|
+
'payload'?: object | null;
|
|
2202
|
+
}
|
|
1965
2203
|
/**
|
|
1966
2204
|
* Created and saved visualization IDs.
|
|
1967
2205
|
*/
|
|
@@ -1975,6 +2213,10 @@ export interface SavedVisualization {
|
|
|
1975
2213
|
*/
|
|
1976
2214
|
'savedVisualizationId': string;
|
|
1977
2215
|
}
|
|
2216
|
+
export interface SearchKnowledgeResponseDto {
|
|
2217
|
+
'results': Array<KnowledgeSearchResultDto>;
|
|
2218
|
+
'statistics': SearchStatisticsDto;
|
|
2219
|
+
}
|
|
1978
2220
|
export interface SearchRelationshipObject {
|
|
1979
2221
|
/**
|
|
1980
2222
|
* Source workspace ID. If relationship is dashboard->visualization, this is the workspace where the dashboard is located.
|
|
@@ -2119,6 +2361,10 @@ export interface SearchResultObject {
|
|
|
2119
2361
|
*/
|
|
2120
2362
|
'isHidden'?: boolean;
|
|
2121
2363
|
}
|
|
2364
|
+
export interface SearchStatisticsDto {
|
|
2365
|
+
'totalResults': number;
|
|
2366
|
+
'averageSimilarityScore': number;
|
|
2367
|
+
}
|
|
2122
2368
|
/**
|
|
2123
2369
|
* Non-sensitive metadata for an AI Lake pipeline
|
|
2124
2370
|
*/
|
|
@@ -2237,6 +2483,31 @@ export interface Suggestion {
|
|
|
2237
2483
|
*/
|
|
2238
2484
|
'label': string;
|
|
2239
2485
|
}
|
|
2486
|
+
export interface TestLlmProviderDefinitionRequest {
|
|
2487
|
+
'providerConfig': TestLlmProviderDefinitionRequestProviderConfig;
|
|
2488
|
+
/**
|
|
2489
|
+
* Models to test.
|
|
2490
|
+
*/
|
|
2491
|
+
'models'?: Array<LlmModel>;
|
|
2492
|
+
}
|
|
2493
|
+
/**
|
|
2494
|
+
* @type TestLlmProviderDefinitionRequestProviderConfig
|
|
2495
|
+
*/
|
|
2496
|
+
export type TestLlmProviderDefinitionRequestProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
2497
|
+
export interface TestLlmProviderResponse {
|
|
2498
|
+
/**
|
|
2499
|
+
* Whether the LLM provider is reachable.
|
|
2500
|
+
*/
|
|
2501
|
+
'providerReachable': boolean;
|
|
2502
|
+
/**
|
|
2503
|
+
* Message about the provider connectivity test.
|
|
2504
|
+
*/
|
|
2505
|
+
'providerMessage': string;
|
|
2506
|
+
/**
|
|
2507
|
+
* Per-model test results.
|
|
2508
|
+
*/
|
|
2509
|
+
'modelResults': Array<ModelTestResult>;
|
|
2510
|
+
}
|
|
2240
2511
|
/**
|
|
2241
2512
|
* Detailed thoughts/messages within this step.
|
|
2242
2513
|
*/
|
|
@@ -2287,6 +2558,79 @@ export interface TotalExecutionResultHeader {
|
|
|
2287
2558
|
export interface TotalResultHeader {
|
|
2288
2559
|
'function': string;
|
|
2289
2560
|
}
|
|
2561
|
+
/**
|
|
2562
|
+
* Trending analytics catalog objects
|
|
2563
|
+
*/
|
|
2564
|
+
export interface TrendingObjectItem {
|
|
2565
|
+
/**
|
|
2566
|
+
* Object ID.
|
|
2567
|
+
*/
|
|
2568
|
+
'id': string;
|
|
2569
|
+
/**
|
|
2570
|
+
* Object type, e.g. dashboard, visualization, metric.
|
|
2571
|
+
*/
|
|
2572
|
+
'type': string;
|
|
2573
|
+
/**
|
|
2574
|
+
* Workspace ID the object belongs to.
|
|
2575
|
+
*/
|
|
2576
|
+
'workspaceId': string;
|
|
2577
|
+
/**
|
|
2578
|
+
* Object title.
|
|
2579
|
+
*/
|
|
2580
|
+
'title': string;
|
|
2581
|
+
/**
|
|
2582
|
+
* Object description.
|
|
2583
|
+
*/
|
|
2584
|
+
'description'?: string;
|
|
2585
|
+
'tags': Array<string>;
|
|
2586
|
+
/**
|
|
2587
|
+
* Timestamp when object was created.
|
|
2588
|
+
*/
|
|
2589
|
+
'createdAt'?: string;
|
|
2590
|
+
/**
|
|
2591
|
+
* Timestamp when object was last modified.
|
|
2592
|
+
*/
|
|
2593
|
+
'modifiedAt'?: string;
|
|
2594
|
+
/**
|
|
2595
|
+
* ID of the user who created the object.
|
|
2596
|
+
*/
|
|
2597
|
+
'createdBy'?: string;
|
|
2598
|
+
/**
|
|
2599
|
+
* ID of the user who last modified the object.
|
|
2600
|
+
*/
|
|
2601
|
+
'modifiedBy'?: string;
|
|
2602
|
+
/**
|
|
2603
|
+
* If true, this object is hidden from AI search results by default.
|
|
2604
|
+
*/
|
|
2605
|
+
'isHidden'?: boolean;
|
|
2606
|
+
/**
|
|
2607
|
+
* If true, this object is hidden from KDA.
|
|
2608
|
+
*/
|
|
2609
|
+
'isHiddenFromKda'?: boolean;
|
|
2610
|
+
/**
|
|
2611
|
+
* URL of the visualization, if applicable.
|
|
2612
|
+
*/
|
|
2613
|
+
'visualizationUrl'?: string;
|
|
2614
|
+
/**
|
|
2615
|
+
* Type of the metric (e.g. MAQL), if applicable.
|
|
2616
|
+
*/
|
|
2617
|
+
'metricType'?: string;
|
|
2618
|
+
/**
|
|
2619
|
+
* ID of the associated dataset, if applicable.
|
|
2620
|
+
*/
|
|
2621
|
+
'datasetId'?: string;
|
|
2622
|
+
/**
|
|
2623
|
+
* Type of the associated dataset, if applicable.
|
|
2624
|
+
*/
|
|
2625
|
+
'datasetType'?: string;
|
|
2626
|
+
/**
|
|
2627
|
+
* Title of the associated dataset, if applicable.
|
|
2628
|
+
*/
|
|
2629
|
+
'datasetTitle'?: string;
|
|
2630
|
+
}
|
|
2631
|
+
export interface TrendingObjectsResult {
|
|
2632
|
+
'objects': Array<TrendingObjectItem>;
|
|
2633
|
+
}
|
|
2290
2634
|
export interface TriggerQualityIssuesCalculationResponse {
|
|
2291
2635
|
/**
|
|
2292
2636
|
* Process ID for tracking the calculation status
|
|
@@ -2297,7 +2641,20 @@ export interface TriggerQualityIssuesCalculationResponse {
|
|
|
2297
2641
|
*/
|
|
2298
2642
|
'status': TriggerQualityIssuesCalculationResponseStatusEnum;
|
|
2299
2643
|
}
|
|
2300
|
-
export type TriggerQualityIssuesCalculationResponseStatusEnum = 'RUNNING' | 'COMPLETED' | 'FAILED' | 'DISABLED';
|
|
2644
|
+
export type TriggerQualityIssuesCalculationResponseStatusEnum = 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'DISABLED';
|
|
2645
|
+
export interface UpsertKnowledgeDocumentRequestDto {
|
|
2646
|
+
'filename': string;
|
|
2647
|
+
'content': string;
|
|
2648
|
+
'pageBoundaries'?: Array<number>;
|
|
2649
|
+
'title'?: string;
|
|
2650
|
+
'scopes'?: Array<string>;
|
|
2651
|
+
}
|
|
2652
|
+
export interface UpsertKnowledgeDocumentResponseDto {
|
|
2653
|
+
'filename': string;
|
|
2654
|
+
'success': boolean;
|
|
2655
|
+
'message': string;
|
|
2656
|
+
'numChunks': number;
|
|
2657
|
+
}
|
|
2301
2658
|
/**
|
|
2302
2659
|
* User context, which can affect the behavior of the underlying AI features.
|
|
2303
2660
|
*/
|
|
@@ -2377,27 +2734,6 @@ export interface VisualizationConfig {
|
|
|
2377
2734
|
'clustering'?: ClusteringConfig;
|
|
2378
2735
|
'whatIf'?: WhatIfScenarioConfig;
|
|
2379
2736
|
}
|
|
2380
|
-
export interface WorkflowDashboardSummaryRequestDto {
|
|
2381
|
-
'dashboardId': string;
|
|
2382
|
-
'keyMetricIds'?: Array<string>;
|
|
2383
|
-
'referenceQuarter'?: string;
|
|
2384
|
-
'customUserPrompt'?: string;
|
|
2385
|
-
}
|
|
2386
|
-
export interface WorkflowDashboardSummaryResponseDto {
|
|
2387
|
-
'runId': string;
|
|
2388
|
-
'status': string;
|
|
2389
|
-
'message': string;
|
|
2390
|
-
}
|
|
2391
|
-
export interface WorkflowStatusResponseDto {
|
|
2392
|
-
'runId': string;
|
|
2393
|
-
'status': string;
|
|
2394
|
-
'message': string;
|
|
2395
|
-
'result'?: {
|
|
2396
|
-
[key: string]: object;
|
|
2397
|
-
};
|
|
2398
|
-
'error'?: string;
|
|
2399
|
-
'currentPhase'?: string;
|
|
2400
|
-
}
|
|
2401
2737
|
/**
|
|
2402
2738
|
* Measure adjustments for this scenario
|
|
2403
2739
|
*/
|
|
@@ -2441,6 +2777,27 @@ export interface WhatIfScenarioItem {
|
|
|
2441
2777
|
*/
|
|
2442
2778
|
'adjustments': Array<WhatIfMeasureAdjustmentConfig>;
|
|
2443
2779
|
}
|
|
2780
|
+
export interface WorkflowDashboardSummaryRequestDto {
|
|
2781
|
+
'dashboardId': string;
|
|
2782
|
+
'keyMetricIds'?: Array<string>;
|
|
2783
|
+
'referenceQuarter'?: string;
|
|
2784
|
+
'customUserPrompt'?: string;
|
|
2785
|
+
}
|
|
2786
|
+
export interface WorkflowDashboardSummaryResponseDto {
|
|
2787
|
+
'runId': string;
|
|
2788
|
+
'status': string;
|
|
2789
|
+
'message': string;
|
|
2790
|
+
}
|
|
2791
|
+
export interface WorkflowStatusResponseDto {
|
|
2792
|
+
'runId': string;
|
|
2793
|
+
'status': string;
|
|
2794
|
+
'message': string;
|
|
2795
|
+
'result'?: {
|
|
2796
|
+
[key: string]: object;
|
|
2797
|
+
};
|
|
2798
|
+
'error'?: string;
|
|
2799
|
+
'currentPhase'?: string;
|
|
2800
|
+
}
|
|
2444
2801
|
/**
|
|
2445
2802
|
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
2446
2803
|
* @summary (BETA) Delete an existing AILake Database instance
|
|
@@ -2470,13 +2827,27 @@ export declare function AILakeApiAxiosParamCreator_GetAiLakeDatabaseInstance(ins
|
|
|
2470
2827
|
*/
|
|
2471
2828
|
export declare function AILakeApiAxiosParamCreator_GetAiLakeOperation(operationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2472
2829
|
/**
|
|
2473
|
-
* (BETA) Lists
|
|
2830
|
+
* (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
|
+
* @summary (BETA) List AI Lake Database instances
|
|
2832
|
+
* @param {number} [size]
|
|
2833
|
+
* @param {number} [offset]
|
|
2834
|
+
* @param {Array<string>} [metaInclude]
|
|
2835
|
+
* @param {*} [options] Override http request option.
|
|
2836
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2837
|
+
* @throws {RequiredError}
|
|
2838
|
+
*/
|
|
2839
|
+
export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(size?: number, offset?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2840
|
+
/**
|
|
2841
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
2474
2842
|
* @summary (BETA) List AI Lake services
|
|
2843
|
+
* @param {number} [size]
|
|
2844
|
+
* @param {number} [offset]
|
|
2845
|
+
* @param {Array<string>} [metaInclude]
|
|
2475
2846
|
* @param {*} [options] Override http request option.
|
|
2476
2847
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2477
2848
|
* @throws {RequiredError}
|
|
2478
2849
|
*/
|
|
2479
|
-
export declare function AILakeApiAxiosParamCreator_ListAiLakeServices(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2850
|
+
export declare function AILakeApiAxiosParamCreator_ListAiLakeServices(size?: number, offset?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2480
2851
|
/**
|
|
2481
2852
|
* (BETA) Creates a new database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
2482
2853
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -2487,6 +2858,18 @@ export declare function AILakeApiAxiosParamCreator_ListAiLakeServices(options?:
|
|
|
2487
2858
|
* @throws {RequiredError}
|
|
2488
2859
|
*/
|
|
2489
2860
|
export declare function AILakeApiAxiosParamCreator_ProvisionAiLakeDatabaseInstance(provisionDatabaseInstanceRequest: ProvisionDatabaseInstanceRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2861
|
+
/**
|
|
2862
|
+
* (BETA) Runs a specific AI Lake service command.
|
|
2863
|
+
* @summary (BETA) Run an AI Lake services command
|
|
2864
|
+
* @param {string} serviceId
|
|
2865
|
+
* @param {string} commandName
|
|
2866
|
+
* @param {RunServiceCommandRequest} runServiceCommandRequest
|
|
2867
|
+
* @param {string} [operationId]
|
|
2868
|
+
* @param {*} [options] Override http request option.
|
|
2869
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2870
|
+
* @throws {RequiredError}
|
|
2871
|
+
*/
|
|
2872
|
+
export declare function AILakeApiAxiosParamCreator_RunAiLakeServiceCommand(serviceId: string, commandName: string, runServiceCommandRequest: RunServiceCommandRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2490
2873
|
/**
|
|
2491
2874
|
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
2492
2875
|
* @summary (BETA) Delete an existing AILake Database instance
|
|
@@ -2521,15 +2904,27 @@ export declare function AILakeApi_GetAiLakeDatabaseInstance(axios: AxiosInstance
|
|
|
2521
2904
|
*/
|
|
2522
2905
|
export declare function AILakeApi_GetAiLakeOperation(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GetAiLakeOperation200Response>;
|
|
2523
2906
|
/**
|
|
2524
|
-
* (BETA) Lists
|
|
2907
|
+
* (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
|
+
* @summary (BETA) List AI Lake Database instances
|
|
2909
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2910
|
+
* @param {string} basePath Base path.
|
|
2911
|
+
* @param {AILakeApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
2912
|
+
* @param {*} [options] Override http request option.
|
|
2913
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2914
|
+
* @throws {RequiredError}
|
|
2915
|
+
*/
|
|
2916
|
+
export declare function AILakeApi_ListAiLakeDatabaseInstances(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
2917
|
+
/**
|
|
2918
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
2525
2919
|
* @summary (BETA) List AI Lake services
|
|
2526
2920
|
* @param {AxiosInstance} axios Axios instance.
|
|
2527
2921
|
* @param {string} basePath Base path.
|
|
2922
|
+
* @param {AILakeApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
2528
2923
|
* @param {*} [options] Override http request option.
|
|
2529
2924
|
* @param {Configuration} [configuration] Optional configuration.
|
|
2530
2925
|
* @throws {RequiredError}
|
|
2531
2926
|
*/
|
|
2532
|
-
export declare function AILakeApi_ListAiLakeServices(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
2927
|
+
export declare function AILakeApi_ListAiLakeServices(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListServicesResponse>;
|
|
2533
2928
|
/**
|
|
2534
2929
|
* (BETA) Creates a new database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
2535
2930
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -2541,6 +2936,17 @@ export declare function AILakeApi_ListAiLakeServices(axios: AxiosInstance, baseP
|
|
|
2541
2936
|
* @throws {RequiredError}
|
|
2542
2937
|
*/
|
|
2543
2938
|
export declare function AILakeApi_ProvisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
2939
|
+
/**
|
|
2940
|
+
* (BETA) Runs a specific AI Lake service command.
|
|
2941
|
+
* @summary (BETA) Run an AI Lake services command
|
|
2942
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
2943
|
+
* @param {string} basePath Base path.
|
|
2944
|
+
* @param {AILakeApiRunAiLakeServiceCommandRequest} requestParameters Request parameters.
|
|
2945
|
+
* @param {*} [options] Override http request option.
|
|
2946
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
2947
|
+
* @throws {RequiredError}
|
|
2948
|
+
*/
|
|
2949
|
+
export declare function AILakeApi_RunAiLakeServiceCommand(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
2544
2950
|
/**
|
|
2545
2951
|
* AILakeApi - interface
|
|
2546
2952
|
* @export
|
|
@@ -2575,13 +2981,23 @@ export interface AILakeApiInterface {
|
|
|
2575
2981
|
*/
|
|
2576
2982
|
getAiLakeOperation(requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig): AxiosPromise<GetAiLakeOperation200Response>;
|
|
2577
2983
|
/**
|
|
2578
|
-
* (BETA) Lists
|
|
2984
|
+
* (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
|
+
* @summary (BETA) List AI Lake Database instances
|
|
2986
|
+
* @param {AILakeApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
2987
|
+
* @param {*} [options] Override http request option.
|
|
2988
|
+
* @throws {RequiredError}
|
|
2989
|
+
* @memberof AILakeApiInterface
|
|
2990
|
+
*/
|
|
2991
|
+
listAiLakeDatabaseInstances(requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
2992
|
+
/**
|
|
2993
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
2579
2994
|
* @summary (BETA) List AI Lake services
|
|
2995
|
+
* @param {AILakeApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
2580
2996
|
* @param {*} [options] Override http request option.
|
|
2581
2997
|
* @throws {RequiredError}
|
|
2582
2998
|
* @memberof AILakeApiInterface
|
|
2583
2999
|
*/
|
|
2584
|
-
listAiLakeServices(options?: AxiosRequestConfig): AxiosPromise<
|
|
3000
|
+
listAiLakeServices(requestParameters: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<ListServicesResponse>;
|
|
2585
3001
|
/**
|
|
2586
3002
|
* (BETA) Creates a new database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
2587
3003
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -2591,6 +3007,15 @@ export interface AILakeApiInterface {
|
|
|
2591
3007
|
* @memberof AILakeApiInterface
|
|
2592
3008
|
*/
|
|
2593
3009
|
provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3010
|
+
/**
|
|
3011
|
+
* (BETA) Runs a specific AI Lake service command.
|
|
3012
|
+
* @summary (BETA) Run an AI Lake services command
|
|
3013
|
+
* @param {AILakeApiRunAiLakeServiceCommandRequest} requestParameters Request parameters.
|
|
3014
|
+
* @param {*} [options] Override http request option.
|
|
3015
|
+
* @throws {RequiredError}
|
|
3016
|
+
* @memberof AILakeApiInterface
|
|
3017
|
+
*/
|
|
3018
|
+
runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
2594
3019
|
}
|
|
2595
3020
|
/**
|
|
2596
3021
|
* Request parameters for deprovisionAiLakeDatabaseInstance operation in AILakeApi.
|
|
@@ -2638,9 +3063,59 @@ export interface AILakeApiGetAiLakeOperationRequest {
|
|
|
2638
3063
|
readonly operationId: string;
|
|
2639
3064
|
}
|
|
2640
3065
|
/**
|
|
2641
|
-
* Request parameters for
|
|
3066
|
+
* Request parameters for listAiLakeDatabaseInstances operation in AILakeApi.
|
|
2642
3067
|
* @export
|
|
2643
|
-
* @interface
|
|
3068
|
+
* @interface AILakeApiListAiLakeDatabaseInstancesRequest
|
|
3069
|
+
*/
|
|
3070
|
+
export interface AILakeApiListAiLakeDatabaseInstancesRequest {
|
|
3071
|
+
/**
|
|
3072
|
+
*
|
|
3073
|
+
* @type {number}
|
|
3074
|
+
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3075
|
+
*/
|
|
3076
|
+
readonly size?: number;
|
|
3077
|
+
/**
|
|
3078
|
+
*
|
|
3079
|
+
* @type {number}
|
|
3080
|
+
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3081
|
+
*/
|
|
3082
|
+
readonly offset?: number;
|
|
3083
|
+
/**
|
|
3084
|
+
*
|
|
3085
|
+
* @type {Array<string>}
|
|
3086
|
+
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3087
|
+
*/
|
|
3088
|
+
readonly metaInclude?: Array<string>;
|
|
3089
|
+
}
|
|
3090
|
+
/**
|
|
3091
|
+
* Request parameters for listAiLakeServices operation in AILakeApi.
|
|
3092
|
+
* @export
|
|
3093
|
+
* @interface AILakeApiListAiLakeServicesRequest
|
|
3094
|
+
*/
|
|
3095
|
+
export interface AILakeApiListAiLakeServicesRequest {
|
|
3096
|
+
/**
|
|
3097
|
+
*
|
|
3098
|
+
* @type {number}
|
|
3099
|
+
* @memberof AILakeApiListAiLakeServices
|
|
3100
|
+
*/
|
|
3101
|
+
readonly size?: number;
|
|
3102
|
+
/**
|
|
3103
|
+
*
|
|
3104
|
+
* @type {number}
|
|
3105
|
+
* @memberof AILakeApiListAiLakeServices
|
|
3106
|
+
*/
|
|
3107
|
+
readonly offset?: number;
|
|
3108
|
+
/**
|
|
3109
|
+
*
|
|
3110
|
+
* @type {Array<string>}
|
|
3111
|
+
* @memberof AILakeApiListAiLakeServices
|
|
3112
|
+
*/
|
|
3113
|
+
readonly metaInclude?: Array<string>;
|
|
3114
|
+
}
|
|
3115
|
+
/**
|
|
3116
|
+
* Request parameters for provisionAiLakeDatabaseInstance operation in AILakeApi.
|
|
3117
|
+
* @export
|
|
3118
|
+
* @interface AILakeApiProvisionAiLakeDatabaseInstanceRequest
|
|
2644
3119
|
*/
|
|
2645
3120
|
export interface AILakeApiProvisionAiLakeDatabaseInstanceRequest {
|
|
2646
3121
|
/**
|
|
@@ -2656,6 +3131,37 @@ export interface AILakeApiProvisionAiLakeDatabaseInstanceRequest {
|
|
|
2656
3131
|
*/
|
|
2657
3132
|
readonly operationId?: string;
|
|
2658
3133
|
}
|
|
3134
|
+
/**
|
|
3135
|
+
* Request parameters for runAiLakeServiceCommand operation in AILakeApi.
|
|
3136
|
+
* @export
|
|
3137
|
+
* @interface AILakeApiRunAiLakeServiceCommandRequest
|
|
3138
|
+
*/
|
|
3139
|
+
export interface AILakeApiRunAiLakeServiceCommandRequest {
|
|
3140
|
+
/**
|
|
3141
|
+
*
|
|
3142
|
+
* @type {string}
|
|
3143
|
+
* @memberof AILakeApiRunAiLakeServiceCommand
|
|
3144
|
+
*/
|
|
3145
|
+
readonly serviceId: string;
|
|
3146
|
+
/**
|
|
3147
|
+
*
|
|
3148
|
+
* @type {string}
|
|
3149
|
+
* @memberof AILakeApiRunAiLakeServiceCommand
|
|
3150
|
+
*/
|
|
3151
|
+
readonly commandName: string;
|
|
3152
|
+
/**
|
|
3153
|
+
*
|
|
3154
|
+
* @type {RunServiceCommandRequest}
|
|
3155
|
+
* @memberof AILakeApiRunAiLakeServiceCommand
|
|
3156
|
+
*/
|
|
3157
|
+
readonly runServiceCommandRequest: RunServiceCommandRequest;
|
|
3158
|
+
/**
|
|
3159
|
+
*
|
|
3160
|
+
* @type {string}
|
|
3161
|
+
* @memberof AILakeApiRunAiLakeServiceCommand
|
|
3162
|
+
*/
|
|
3163
|
+
readonly operationId?: string;
|
|
3164
|
+
}
|
|
2659
3165
|
/**
|
|
2660
3166
|
* AILakeApi - object-oriented interface
|
|
2661
3167
|
* @export
|
|
@@ -2691,13 +3197,23 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
|
|
|
2691
3197
|
*/
|
|
2692
3198
|
getAiLakeOperation(requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig): AxiosPromise<GetAiLakeOperation200Response>;
|
|
2693
3199
|
/**
|
|
2694
|
-
* (BETA) Lists
|
|
3200
|
+
* (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
|
+
* @summary (BETA) List AI Lake Database instances
|
|
3202
|
+
* @param {AILakeApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
3203
|
+
* @param {*} [options] Override http request option.
|
|
3204
|
+
* @throws {RequiredError}
|
|
3205
|
+
* @memberof AILakeApi
|
|
3206
|
+
*/
|
|
3207
|
+
listAiLakeDatabaseInstances(requestParameters?: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
3208
|
+
/**
|
|
3209
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
2695
3210
|
* @summary (BETA) List AI Lake services
|
|
3211
|
+
* @param {AILakeApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
2696
3212
|
* @param {*} [options] Override http request option.
|
|
2697
3213
|
* @throws {RequiredError}
|
|
2698
3214
|
* @memberof AILakeApi
|
|
2699
3215
|
*/
|
|
2700
|
-
listAiLakeServices(options?: AxiosRequestConfig): AxiosPromise<
|
|
3216
|
+
listAiLakeServices(requestParameters?: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<ListServicesResponse>;
|
|
2701
3217
|
/**
|
|
2702
3218
|
* (BETA) Creates a new database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
2703
3219
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -2707,6 +3223,15 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
|
|
|
2707
3223
|
* @memberof AILakeApi
|
|
2708
3224
|
*/
|
|
2709
3225
|
provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3226
|
+
/**
|
|
3227
|
+
* (BETA) Runs a specific AI Lake service command.
|
|
3228
|
+
* @summary (BETA) Run an AI Lake services command
|
|
3229
|
+
* @param {AILakeApiRunAiLakeServiceCommandRequest} requestParameters Request parameters.
|
|
3230
|
+
* @param {*} [options] Override http request option.
|
|
3231
|
+
* @throws {RequiredError}
|
|
3232
|
+
* @memberof AILakeApi
|
|
3233
|
+
*/
|
|
3234
|
+
runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
2710
3235
|
}
|
|
2711
3236
|
/**
|
|
2712
3237
|
* (BETA) Combines multiple use cases such as search, create visualizations, ...
|
|
@@ -2889,6 +3414,15 @@ export declare function ActionsApiAxiosParamCreator_ComputeValidDescendants(work
|
|
|
2889
3414
|
* @throws {RequiredError}
|
|
2890
3415
|
*/
|
|
2891
3416
|
export declare function ActionsApiAxiosParamCreator_ComputeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3417
|
+
/**
|
|
3418
|
+
*
|
|
3419
|
+
* @param {string} workspaceId Workspace identifier
|
|
3420
|
+
* @param {CreateKnowledgeDocumentRequestDto} createKnowledgeDocumentRequestDto
|
|
3421
|
+
* @param {*} [options] Override http request option.
|
|
3422
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3423
|
+
* @throws {RequiredError}
|
|
3424
|
+
*/
|
|
3425
|
+
export declare function ActionsApiAxiosParamCreator_CreateDocument(workspaceId: string, createKnowledgeDocumentRequestDto: CreateKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2892
3426
|
/**
|
|
2893
3427
|
* Returns a list of Users who created any object for this workspace
|
|
2894
3428
|
* @summary Get Analytics Catalog CreatedBy Users
|
|
@@ -2898,6 +3432,15 @@ export declare function ActionsApiAxiosParamCreator_ComputeValidObjects(workspac
|
|
|
2898
3432
|
* @throws {RequiredError}
|
|
2899
3433
|
*/
|
|
2900
3434
|
export declare function ActionsApiAxiosParamCreator_CreatedBy(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3435
|
+
/**
|
|
3436
|
+
*
|
|
3437
|
+
* @param {string} workspaceId Workspace identifier
|
|
3438
|
+
* @param {string} filename
|
|
3439
|
+
* @param {*} [options] Override http request option.
|
|
3440
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3441
|
+
* @throws {RequiredError}
|
|
3442
|
+
*/
|
|
3443
|
+
export declare function ActionsApiAxiosParamCreator_DeleteDocument(workspaceId: string, filename: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2901
3444
|
/**
|
|
2902
3445
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
2903
3446
|
* @summary AFM explain resource.
|
|
@@ -2952,6 +3495,25 @@ export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary(wor
|
|
|
2952
3495
|
* @throws {RequiredError}
|
|
2953
3496
|
*/
|
|
2954
3497
|
export declare function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId: string, generateDescriptionRequest: GenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3498
|
+
/**
|
|
3499
|
+
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
3500
|
+
* @summary Generate Title for Analytics Object
|
|
3501
|
+
* @param {string} workspaceId Workspace identifier
|
|
3502
|
+
* @param {GenerateTitleRequest} generateTitleRequest
|
|
3503
|
+
* @param {*} [options] Override http request option.
|
|
3504
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3505
|
+
* @throws {RequiredError}
|
|
3506
|
+
*/
|
|
3507
|
+
export declare function ActionsApiAxiosParamCreator_GenerateTitle(workspaceId: string, generateTitleRequest: GenerateTitleRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3508
|
+
/**
|
|
3509
|
+
*
|
|
3510
|
+
* @param {string} workspaceId Workspace identifier
|
|
3511
|
+
* @param {string} filename
|
|
3512
|
+
* @param {*} [options] Override http request option.
|
|
3513
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3514
|
+
* @throws {RequiredError}
|
|
3515
|
+
*/
|
|
3516
|
+
export declare function ActionsApiAxiosParamCreator_GetDocument(workspaceId: string, filename: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2955
3517
|
/**
|
|
2956
3518
|
* Returns metadata quality issues detected by the platform linter.
|
|
2957
3519
|
* @summary Get Quality Issues
|
|
@@ -3003,6 +3565,18 @@ export declare function ActionsApiAxiosParamCreator_KeyDriverAnalysis(workspaceI
|
|
|
3003
3565
|
* @throws {RequiredError}
|
|
3004
3566
|
*/
|
|
3005
3567
|
export declare function ActionsApiAxiosParamCreator_KeyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3568
|
+
/**
|
|
3569
|
+
*
|
|
3570
|
+
* @param {string} workspaceId Workspace identifier
|
|
3571
|
+
* @param {Array<string>} [scopes]
|
|
3572
|
+
* @param {number} [size]
|
|
3573
|
+
* @param {string} [pageToken]
|
|
3574
|
+
* @param {string} [metaInclude]
|
|
3575
|
+
* @param {*} [options] Override http request option.
|
|
3576
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3577
|
+
* @throws {RequiredError}
|
|
3578
|
+
*/
|
|
3579
|
+
export declare function ActionsApiAxiosParamCreator_ListDocuments(workspaceId: string, scopes?: Array<string>, size?: number, pageToken?: string, metaInclude?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3006
3580
|
/**
|
|
3007
3581
|
* Returns a list of Users who created any memory item for this workspace
|
|
3008
3582
|
* @summary Get AI Memory CreatedBy Users
|
|
@@ -3035,6 +3609,16 @@ export declare function ActionsApiAxiosParamCreator_OutlierDetection(workspaceId
|
|
|
3035
3609
|
* @throws {RequiredError}
|
|
3036
3610
|
*/
|
|
3037
3611
|
export declare function ActionsApiAxiosParamCreator_OutlierDetectionResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3612
|
+
/**
|
|
3613
|
+
*
|
|
3614
|
+
* @param {string} workspaceId Workspace identifier
|
|
3615
|
+
* @param {string} filename
|
|
3616
|
+
* @param {PatchKnowledgeDocumentRequestDto} patchKnowledgeDocumentRequestDto
|
|
3617
|
+
* @param {*} [options] Override http request option.
|
|
3618
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3619
|
+
* @throws {RequiredError}
|
|
3620
|
+
*/
|
|
3621
|
+
export declare function ActionsApiAxiosParamCreator_PatchDocument(workspaceId: string, filename: string, patchKnowledgeDocumentRequestDto: PatchKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3038
3622
|
/**
|
|
3039
3623
|
* Returns a list of available LLM Endpoints
|
|
3040
3624
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3068,6 +3652,18 @@ export declare function ActionsApiAxiosParamCreator_RetrieveExecutionMetadata(wo
|
|
|
3068
3652
|
* @throws {RequiredError}
|
|
3069
3653
|
*/
|
|
3070
3654
|
export declare function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3655
|
+
/**
|
|
3656
|
+
*
|
|
3657
|
+
* @param {string} workspaceId Workspace identifier
|
|
3658
|
+
* @param {string} query
|
|
3659
|
+
* @param {number} [limit]
|
|
3660
|
+
* @param {number} [minScore]
|
|
3661
|
+
* @param {Array<string>} [scopes]
|
|
3662
|
+
* @param {*} [options] Override http request option.
|
|
3663
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3664
|
+
* @throws {RequiredError}
|
|
3665
|
+
*/
|
|
3666
|
+
export declare function ActionsApiAxiosParamCreator_SearchKnowledge(workspaceId: string, query: string, limit?: number, minScore?: number, scopes?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3071
3667
|
/**
|
|
3072
3668
|
* Returns a list of tags for this workspace
|
|
3073
3669
|
* @summary Get Analytics Catalog Tags
|
|
@@ -3077,6 +3673,24 @@ export declare function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId:
|
|
|
3077
3673
|
* @throws {RequiredError}
|
|
3078
3674
|
*/
|
|
3079
3675
|
export declare function ActionsApiAxiosParamCreator_Tags(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3676
|
+
/**
|
|
3677
|
+
* Tests LLM provider connectivity with a full definition.
|
|
3678
|
+
* @summary Test LLM Provider
|
|
3679
|
+
* @param {TestLlmProviderDefinitionRequest} testLlmProviderDefinitionRequest
|
|
3680
|
+
* @param {*} [options] Override http request option.
|
|
3681
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3682
|
+
* @throws {RequiredError}
|
|
3683
|
+
*/
|
|
3684
|
+
export declare function ActionsApiAxiosParamCreator_TestLlmProvider(testLlmProviderDefinitionRequest: TestLlmProviderDefinitionRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3685
|
+
/**
|
|
3686
|
+
* Tests an existing LLM provider connectivity by its ID.
|
|
3687
|
+
* @summary Test LLM Provider By Id
|
|
3688
|
+
* @param {string} llmProviderId
|
|
3689
|
+
* @param {*} [options] Override http request option.
|
|
3690
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3691
|
+
* @throws {RequiredError}
|
|
3692
|
+
*/
|
|
3693
|
+
export declare function ActionsApiAxiosParamCreator_TestLlmProviderById(llmProviderId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3080
3694
|
/**
|
|
3081
3695
|
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
3082
3696
|
* @summary Trigger Quality Issues Calculation
|
|
@@ -3086,6 +3700,15 @@ export declare function ActionsApiAxiosParamCreator_Tags(workspaceId: string, op
|
|
|
3086
3700
|
* @throws {RequiredError}
|
|
3087
3701
|
*/
|
|
3088
3702
|
export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3703
|
+
/**
|
|
3704
|
+
*
|
|
3705
|
+
* @param {string} workspaceId Workspace identifier
|
|
3706
|
+
* @param {UpsertKnowledgeDocumentRequestDto} upsertKnowledgeDocumentRequestDto
|
|
3707
|
+
* @param {*} [options] Override http request option.
|
|
3708
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3709
|
+
* @throws {RequiredError}
|
|
3710
|
+
*/
|
|
3711
|
+
export declare function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId: string, upsertKnowledgeDocumentRequestDto: UpsertKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3089
3712
|
/**
|
|
3090
3713
|
* Validates LLM endpoint with provided parameters.
|
|
3091
3714
|
* @summary Validate LLM Endpoint
|
|
@@ -3293,6 +3916,16 @@ export declare function ActionsApi_ComputeValidDescendants(axios: AxiosInstance,
|
|
|
3293
3916
|
* @throws {RequiredError}
|
|
3294
3917
|
*/
|
|
3295
3918
|
export declare function ActionsApi_ComputeValidObjects(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AfmValidObjectsResponse>;
|
|
3919
|
+
/**
|
|
3920
|
+
*
|
|
3921
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
3922
|
+
* @param {string} basePath Base path.
|
|
3923
|
+
* @param {ActionsApiCreateDocumentRequest} requestParameters Request parameters.
|
|
3924
|
+
* @param {*} [options] Override http request option.
|
|
3925
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3926
|
+
* @throws {RequiredError}
|
|
3927
|
+
*/
|
|
3928
|
+
export declare function ActionsApi_CreateDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCreateDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<CreateKnowledgeDocumentResponseDto>;
|
|
3296
3929
|
/**
|
|
3297
3930
|
* Returns a list of Users who created any object for this workspace
|
|
3298
3931
|
* @summary Get Analytics Catalog CreatedBy Users
|
|
@@ -3304,6 +3937,16 @@ export declare function ActionsApi_ComputeValidObjects(axios: AxiosInstance, bas
|
|
|
3304
3937
|
* @throws {RequiredError}
|
|
3305
3938
|
*/
|
|
3306
3939
|
export declare function ActionsApi_CreatedBy(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
3940
|
+
/**
|
|
3941
|
+
*
|
|
3942
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
3943
|
+
* @param {string} basePath Base path.
|
|
3944
|
+
* @param {ActionsApiDeleteDocumentRequest} requestParameters Request parameters.
|
|
3945
|
+
* @param {*} [options] Override http request option.
|
|
3946
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3947
|
+
* @throws {RequiredError}
|
|
3948
|
+
*/
|
|
3949
|
+
export declare function ActionsApi_DeleteDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiDeleteDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DeleteKnowledgeDocumentResponseDto>;
|
|
3307
3950
|
/**
|
|
3308
3951
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
3309
3952
|
* @summary AFM explain resource.
|
|
@@ -3358,6 +4001,27 @@ export declare function ActionsApi_GenerateDashboardSummary(axios: AxiosInstance
|
|
|
3358
4001
|
* @throws {RequiredError}
|
|
3359
4002
|
*/
|
|
3360
4003
|
export declare function ActionsApi_GenerateDescription(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateDescriptionResponse>;
|
|
4004
|
+
/**
|
|
4005
|
+
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
4006
|
+
* @summary Generate Title for Analytics Object
|
|
4007
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4008
|
+
* @param {string} basePath Base path.
|
|
4009
|
+
* @param {ActionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
4010
|
+
* @param {*} [options] Override http request option.
|
|
4011
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4012
|
+
* @throws {RequiredError}
|
|
4013
|
+
*/
|
|
4014
|
+
export declare function ActionsApi_GenerateTitle(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateTitleRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateTitleResponse>;
|
|
4015
|
+
/**
|
|
4016
|
+
*
|
|
4017
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4018
|
+
* @param {string} basePath Base path.
|
|
4019
|
+
* @param {ActionsApiGetDocumentRequest} requestParameters Request parameters.
|
|
4020
|
+
* @param {*} [options] Override http request option.
|
|
4021
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4022
|
+
* @throws {RequiredError}
|
|
4023
|
+
*/
|
|
4024
|
+
export declare function ActionsApi_GetDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
3361
4025
|
/**
|
|
3362
4026
|
* Returns metadata quality issues detected by the platform linter.
|
|
3363
4027
|
* @summary Get Quality Issues
|
|
@@ -3412,6 +4076,16 @@ export declare function ActionsApi_KeyDriverAnalysis(axios: AxiosInstance, baseP
|
|
|
3412
4076
|
* @throws {RequiredError}
|
|
3413
4077
|
*/
|
|
3414
4078
|
export declare function ActionsApi_KeyDriverAnalysisResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KeyDriversResult>;
|
|
4079
|
+
/**
|
|
4080
|
+
*
|
|
4081
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4082
|
+
* @param {string} basePath Base path.
|
|
4083
|
+
* @param {ActionsApiListDocumentsRequest} requestParameters Request parameters.
|
|
4084
|
+
* @param {*} [options] Override http request option.
|
|
4085
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4086
|
+
* @throws {RequiredError}
|
|
4087
|
+
*/
|
|
4088
|
+
export declare function ActionsApi_ListDocuments(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
|
|
3415
4089
|
/**
|
|
3416
4090
|
* Returns a list of Users who created any memory item for this workspace
|
|
3417
4091
|
* @summary Get AI Memory CreatedBy Users
|
|
@@ -3445,6 +4119,16 @@ export declare function ActionsApi_OutlierDetection(axios: AxiosInstance, basePa
|
|
|
3445
4119
|
* @throws {RequiredError}
|
|
3446
4120
|
*/
|
|
3447
4121
|
export declare function ActionsApi_OutlierDetectionResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<OutlierDetectionResult>;
|
|
4122
|
+
/**
|
|
4123
|
+
*
|
|
4124
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4125
|
+
* @param {string} basePath Base path.
|
|
4126
|
+
* @param {ActionsApiPatchDocumentRequest} requestParameters Request parameters.
|
|
4127
|
+
* @param {*} [options] Override http request option.
|
|
4128
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4129
|
+
* @throws {RequiredError}
|
|
4130
|
+
*/
|
|
4131
|
+
export declare function ActionsApi_PatchDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
3448
4132
|
/**
|
|
3449
4133
|
* Returns a list of available LLM Endpoints
|
|
3450
4134
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3478,6 +4162,16 @@ export declare function ActionsApi_RetrieveExecutionMetadata(axios: AxiosInstanc
|
|
|
3478
4162
|
* @throws {RequiredError}
|
|
3479
4163
|
*/
|
|
3480
4164
|
export declare function ActionsApi_RetrieveResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ExecutionResult>;
|
|
4165
|
+
/**
|
|
4166
|
+
*
|
|
4167
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4168
|
+
* @param {string} basePath Base path.
|
|
4169
|
+
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
4170
|
+
* @param {*} [options] Override http request option.
|
|
4171
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4172
|
+
* @throws {RequiredError}
|
|
4173
|
+
*/
|
|
4174
|
+
export declare function ActionsApi_SearchKnowledge(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiSearchKnowledgeRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<SearchKnowledgeResponseDto>;
|
|
3481
4175
|
/**
|
|
3482
4176
|
* Returns a list of tags for this workspace
|
|
3483
4177
|
* @summary Get Analytics Catalog Tags
|
|
@@ -3489,6 +4183,28 @@ export declare function ActionsApi_RetrieveResult(axios: AxiosInstance, basePath
|
|
|
3489
4183
|
* @throws {RequiredError}
|
|
3490
4184
|
*/
|
|
3491
4185
|
export declare function ActionsApi_Tags(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogTags>;
|
|
4186
|
+
/**
|
|
4187
|
+
* Tests LLM provider connectivity with a full definition.
|
|
4188
|
+
* @summary Test LLM Provider
|
|
4189
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4190
|
+
* @param {string} basePath Base path.
|
|
4191
|
+
* @param {ActionsApiTestLlmProviderRequest} requestParameters Request parameters.
|
|
4192
|
+
* @param {*} [options] Override http request option.
|
|
4193
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4194
|
+
* @throws {RequiredError}
|
|
4195
|
+
*/
|
|
4196
|
+
export declare function ActionsApi_TestLlmProvider(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTestLlmProviderRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TestLlmProviderResponse>;
|
|
4197
|
+
/**
|
|
4198
|
+
* Tests an existing LLM provider connectivity by its ID.
|
|
4199
|
+
* @summary Test LLM Provider By Id
|
|
4200
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4201
|
+
* @param {string} basePath Base path.
|
|
4202
|
+
* @param {ActionsApiTestLlmProviderByIdRequest} requestParameters Request parameters.
|
|
4203
|
+
* @param {*} [options] Override http request option.
|
|
4204
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4205
|
+
* @throws {RequiredError}
|
|
4206
|
+
*/
|
|
4207
|
+
export declare function ActionsApi_TestLlmProviderById(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TestLlmProviderResponse>;
|
|
3492
4208
|
/**
|
|
3493
4209
|
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
3494
4210
|
* @summary Trigger Quality Issues Calculation
|
|
@@ -3500,6 +4216,16 @@ export declare function ActionsApi_Tags(axios: AxiosInstance, basePath: string,
|
|
|
3500
4216
|
* @throws {RequiredError}
|
|
3501
4217
|
*/
|
|
3502
4218
|
export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
4219
|
+
/**
|
|
4220
|
+
*
|
|
4221
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4222
|
+
* @param {string} basePath Base path.
|
|
4223
|
+
* @param {ActionsApiUpsertDocumentRequest} 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_UpsertDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
3503
4229
|
/**
|
|
3504
4230
|
* Validates LLM endpoint with provided parameters.
|
|
3505
4231
|
* @summary Validate LLM Endpoint
|
|
@@ -3682,6 +4408,14 @@ export interface ActionsApiInterface {
|
|
|
3682
4408
|
* @memberof ActionsApiInterface
|
|
3683
4409
|
*/
|
|
3684
4410
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
4411
|
+
/**
|
|
4412
|
+
*
|
|
4413
|
+
* @param {ActionsApiCreateDocumentRequest} requestParameters Request parameters.
|
|
4414
|
+
* @param {*} [options] Override http request option.
|
|
4415
|
+
* @throws {RequiredError}
|
|
4416
|
+
* @memberof ActionsApiInterface
|
|
4417
|
+
*/
|
|
4418
|
+
createDocument(requestParameters: ActionsApiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<CreateKnowledgeDocumentResponseDto>;
|
|
3685
4419
|
/**
|
|
3686
4420
|
* Returns a list of Users who created any object for this workspace
|
|
3687
4421
|
* @summary Get Analytics Catalog CreatedBy Users
|
|
@@ -3691,6 +4425,14 @@ export interface ActionsApiInterface {
|
|
|
3691
4425
|
* @memberof ActionsApiInterface
|
|
3692
4426
|
*/
|
|
3693
4427
|
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
4428
|
+
/**
|
|
4429
|
+
*
|
|
4430
|
+
* @param {ActionsApiDeleteDocumentRequest} requestParameters Request parameters.
|
|
4431
|
+
* @param {*} [options] Override http request option.
|
|
4432
|
+
* @throws {RequiredError}
|
|
4433
|
+
* @memberof ActionsApiInterface
|
|
4434
|
+
*/
|
|
4435
|
+
deleteDocument(requestParameters: ActionsApiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<DeleteKnowledgeDocumentResponseDto>;
|
|
3694
4436
|
/**
|
|
3695
4437
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
3696
4438
|
* @summary AFM explain resource.
|
|
@@ -3735,6 +4477,23 @@ export interface ActionsApiInterface {
|
|
|
3735
4477
|
* @memberof ActionsApiInterface
|
|
3736
4478
|
*/
|
|
3737
4479
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
4480
|
+
/**
|
|
4481
|
+
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
4482
|
+
* @summary Generate Title for Analytics Object
|
|
4483
|
+
* @param {ActionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
4484
|
+
* @param {*} [options] Override http request option.
|
|
4485
|
+
* @throws {RequiredError}
|
|
4486
|
+
* @memberof ActionsApiInterface
|
|
4487
|
+
*/
|
|
4488
|
+
generateTitle(requestParameters: ActionsApiGenerateTitleRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateTitleResponse>;
|
|
4489
|
+
/**
|
|
4490
|
+
*
|
|
4491
|
+
* @param {ActionsApiGetDocumentRequest} requestParameters Request parameters.
|
|
4492
|
+
* @param {*} [options] Override http request option.
|
|
4493
|
+
* @throws {RequiredError}
|
|
4494
|
+
* @memberof ActionsApiInterface
|
|
4495
|
+
*/
|
|
4496
|
+
getDocument(requestParameters: ActionsApiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
3738
4497
|
/**
|
|
3739
4498
|
* Returns metadata quality issues detected by the platform linter.
|
|
3740
4499
|
* @summary Get Quality Issues
|
|
@@ -3779,6 +4538,14 @@ export interface ActionsApiInterface {
|
|
|
3779
4538
|
* @memberof ActionsApiInterface
|
|
3780
4539
|
*/
|
|
3781
4540
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
4541
|
+
/**
|
|
4542
|
+
*
|
|
4543
|
+
* @param {ActionsApiListDocumentsRequest} requestParameters Request parameters.
|
|
4544
|
+
* @param {*} [options] Override http request option.
|
|
4545
|
+
* @throws {RequiredError}
|
|
4546
|
+
* @memberof ActionsApiInterface
|
|
4547
|
+
*/
|
|
4548
|
+
listDocuments(requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
|
|
3782
4549
|
/**
|
|
3783
4550
|
* Returns a list of Users who created any memory item for this workspace
|
|
3784
4551
|
* @summary Get AI Memory CreatedBy Users
|
|
@@ -3806,6 +4573,14 @@ export interface ActionsApiInterface {
|
|
|
3806
4573
|
* @memberof ActionsApiInterface
|
|
3807
4574
|
*/
|
|
3808
4575
|
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
4576
|
+
/**
|
|
4577
|
+
*
|
|
4578
|
+
* @param {ActionsApiPatchDocumentRequest} requestParameters Request parameters.
|
|
4579
|
+
* @param {*} [options] Override http request option.
|
|
4580
|
+
* @throws {RequiredError}
|
|
4581
|
+
* @memberof ActionsApiInterface
|
|
4582
|
+
*/
|
|
4583
|
+
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
3809
4584
|
/**
|
|
3810
4585
|
* Returns a list of available LLM Endpoints
|
|
3811
4586
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -3833,6 +4608,14 @@ export interface ActionsApiInterface {
|
|
|
3833
4608
|
* @memberof ActionsApiInterface
|
|
3834
4609
|
*/
|
|
3835
4610
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
4611
|
+
/**
|
|
4612
|
+
*
|
|
4613
|
+
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
4614
|
+
* @param {*} [options] Override http request option.
|
|
4615
|
+
* @throws {RequiredError}
|
|
4616
|
+
* @memberof ActionsApiInterface
|
|
4617
|
+
*/
|
|
4618
|
+
searchKnowledge(requestParameters: ActionsApiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<SearchKnowledgeResponseDto>;
|
|
3836
4619
|
/**
|
|
3837
4620
|
* Returns a list of tags for this workspace
|
|
3838
4621
|
* @summary Get Analytics Catalog Tags
|
|
@@ -3842,6 +4625,24 @@ export interface ActionsApiInterface {
|
|
|
3842
4625
|
* @memberof ActionsApiInterface
|
|
3843
4626
|
*/
|
|
3844
4627
|
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
4628
|
+
/**
|
|
4629
|
+
* Tests LLM provider connectivity with a full definition.
|
|
4630
|
+
* @summary Test LLM Provider
|
|
4631
|
+
* @param {ActionsApiTestLlmProviderRequest} requestParameters Request parameters.
|
|
4632
|
+
* @param {*} [options] Override http request option.
|
|
4633
|
+
* @throws {RequiredError}
|
|
4634
|
+
* @memberof ActionsApiInterface
|
|
4635
|
+
*/
|
|
4636
|
+
testLlmProvider(requestParameters: ActionsApiTestLlmProviderRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
|
|
4637
|
+
/**
|
|
4638
|
+
* Tests an existing LLM provider connectivity by its ID.
|
|
4639
|
+
* @summary Test LLM Provider By Id
|
|
4640
|
+
* @param {ActionsApiTestLlmProviderByIdRequest} requestParameters Request parameters.
|
|
4641
|
+
* @param {*} [options] Override http request option.
|
|
4642
|
+
* @throws {RequiredError}
|
|
4643
|
+
* @memberof ActionsApiInterface
|
|
4644
|
+
*/
|
|
4645
|
+
testLlmProviderById(requestParameters: ActionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
|
|
3845
4646
|
/**
|
|
3846
4647
|
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
3847
4648
|
* @summary Trigger Quality Issues Calculation
|
|
@@ -3851,6 +4652,14 @@ export interface ActionsApiInterface {
|
|
|
3851
4652
|
* @memberof ActionsApiInterface
|
|
3852
4653
|
*/
|
|
3853
4654
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
4655
|
+
/**
|
|
4656
|
+
*
|
|
4657
|
+
* @param {ActionsApiUpsertDocumentRequest} requestParameters Request parameters.
|
|
4658
|
+
* @param {*} [options] Override http request option.
|
|
4659
|
+
* @throws {RequiredError}
|
|
4660
|
+
* @memberof ActionsApiInterface
|
|
4661
|
+
*/
|
|
4662
|
+
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
3854
4663
|
/**
|
|
3855
4664
|
* Validates LLM endpoint with provided parameters.
|
|
3856
4665
|
* @summary Validate LLM Endpoint
|
|
@@ -4265,6 +5074,25 @@ export interface ActionsApiComputeValidObjectsRequest {
|
|
|
4265
5074
|
*/
|
|
4266
5075
|
readonly afmValidObjectsQuery: AfmValidObjectsQuery;
|
|
4267
5076
|
}
|
|
5077
|
+
/**
|
|
5078
|
+
* Request parameters for createDocument operation in ActionsApi.
|
|
5079
|
+
* @export
|
|
5080
|
+
* @interface ActionsApiCreateDocumentRequest
|
|
5081
|
+
*/
|
|
5082
|
+
export interface ActionsApiCreateDocumentRequest {
|
|
5083
|
+
/**
|
|
5084
|
+
* Workspace identifier
|
|
5085
|
+
* @type {string}
|
|
5086
|
+
* @memberof ActionsApiCreateDocument
|
|
5087
|
+
*/
|
|
5088
|
+
readonly workspaceId: string;
|
|
5089
|
+
/**
|
|
5090
|
+
*
|
|
5091
|
+
* @type {CreateKnowledgeDocumentRequestDto}
|
|
5092
|
+
* @memberof ActionsApiCreateDocument
|
|
5093
|
+
*/
|
|
5094
|
+
readonly createKnowledgeDocumentRequestDto: CreateKnowledgeDocumentRequestDto;
|
|
5095
|
+
}
|
|
4268
5096
|
/**
|
|
4269
5097
|
* Request parameters for createdBy operation in ActionsApi.
|
|
4270
5098
|
* @export
|
|
@@ -4278,6 +5106,25 @@ export interface ActionsApiCreatedByRequest {
|
|
|
4278
5106
|
*/
|
|
4279
5107
|
readonly workspaceId: string;
|
|
4280
5108
|
}
|
|
5109
|
+
/**
|
|
5110
|
+
* Request parameters for deleteDocument operation in ActionsApi.
|
|
5111
|
+
* @export
|
|
5112
|
+
* @interface ActionsApiDeleteDocumentRequest
|
|
5113
|
+
*/
|
|
5114
|
+
export interface ActionsApiDeleteDocumentRequest {
|
|
5115
|
+
/**
|
|
5116
|
+
* Workspace identifier
|
|
5117
|
+
* @type {string}
|
|
5118
|
+
* @memberof ActionsApiDeleteDocument
|
|
5119
|
+
*/
|
|
5120
|
+
readonly workspaceId: string;
|
|
5121
|
+
/**
|
|
5122
|
+
*
|
|
5123
|
+
* @type {string}
|
|
5124
|
+
* @memberof ActionsApiDeleteDocument
|
|
5125
|
+
*/
|
|
5126
|
+
readonly filename: string;
|
|
5127
|
+
}
|
|
4281
5128
|
/**
|
|
4282
5129
|
* Request parameters for explainAFM operation in ActionsApi.
|
|
4283
5130
|
* @export
|
|
@@ -4379,29 +5226,67 @@ export interface ActionsApiGenerateDashboardSummaryRequest {
|
|
|
4379
5226
|
readonly workspaceId: string;
|
|
4380
5227
|
/**
|
|
4381
5228
|
*
|
|
4382
|
-
* @type {WorkflowDashboardSummaryRequestDto}
|
|
4383
|
-
* @memberof ActionsApiGenerateDashboardSummary
|
|
5229
|
+
* @type {WorkflowDashboardSummaryRequestDto}
|
|
5230
|
+
* @memberof ActionsApiGenerateDashboardSummary
|
|
5231
|
+
*/
|
|
5232
|
+
readonly workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto;
|
|
5233
|
+
}
|
|
5234
|
+
/**
|
|
5235
|
+
* Request parameters for generateDescription operation in ActionsApi.
|
|
5236
|
+
* @export
|
|
5237
|
+
* @interface ActionsApiGenerateDescriptionRequest
|
|
5238
|
+
*/
|
|
5239
|
+
export interface ActionsApiGenerateDescriptionRequest {
|
|
5240
|
+
/**
|
|
5241
|
+
* Workspace identifier
|
|
5242
|
+
* @type {string}
|
|
5243
|
+
* @memberof ActionsApiGenerateDescription
|
|
5244
|
+
*/
|
|
5245
|
+
readonly workspaceId: string;
|
|
5246
|
+
/**
|
|
5247
|
+
*
|
|
5248
|
+
* @type {GenerateDescriptionRequest}
|
|
5249
|
+
* @memberof ActionsApiGenerateDescription
|
|
5250
|
+
*/
|
|
5251
|
+
readonly generateDescriptionRequest: GenerateDescriptionRequest;
|
|
5252
|
+
}
|
|
5253
|
+
/**
|
|
5254
|
+
* Request parameters for generateTitle operation in ActionsApi.
|
|
5255
|
+
* @export
|
|
5256
|
+
* @interface ActionsApiGenerateTitleRequest
|
|
5257
|
+
*/
|
|
5258
|
+
export interface ActionsApiGenerateTitleRequest {
|
|
5259
|
+
/**
|
|
5260
|
+
* Workspace identifier
|
|
5261
|
+
* @type {string}
|
|
5262
|
+
* @memberof ActionsApiGenerateTitle
|
|
5263
|
+
*/
|
|
5264
|
+
readonly workspaceId: string;
|
|
5265
|
+
/**
|
|
5266
|
+
*
|
|
5267
|
+
* @type {GenerateTitleRequest}
|
|
5268
|
+
* @memberof ActionsApiGenerateTitle
|
|
4384
5269
|
*/
|
|
4385
|
-
readonly
|
|
5270
|
+
readonly generateTitleRequest: GenerateTitleRequest;
|
|
4386
5271
|
}
|
|
4387
5272
|
/**
|
|
4388
|
-
* Request parameters for
|
|
5273
|
+
* Request parameters for getDocument operation in ActionsApi.
|
|
4389
5274
|
* @export
|
|
4390
|
-
* @interface
|
|
5275
|
+
* @interface ActionsApiGetDocumentRequest
|
|
4391
5276
|
*/
|
|
4392
|
-
export interface
|
|
5277
|
+
export interface ActionsApiGetDocumentRequest {
|
|
4393
5278
|
/**
|
|
4394
5279
|
* Workspace identifier
|
|
4395
5280
|
* @type {string}
|
|
4396
|
-
* @memberof
|
|
5281
|
+
* @memberof ActionsApiGetDocument
|
|
4397
5282
|
*/
|
|
4398
5283
|
readonly workspaceId: string;
|
|
4399
5284
|
/**
|
|
4400
5285
|
*
|
|
4401
|
-
* @type {
|
|
4402
|
-
* @memberof
|
|
5286
|
+
* @type {string}
|
|
5287
|
+
* @memberof ActionsApiGetDocument
|
|
4403
5288
|
*/
|
|
4404
|
-
readonly
|
|
5289
|
+
readonly filename: string;
|
|
4405
5290
|
}
|
|
4406
5291
|
/**
|
|
4407
5292
|
* Request parameters for getQualityIssues operation in ActionsApi.
|
|
@@ -4510,6 +5395,43 @@ export interface ActionsApiKeyDriverAnalysisResultRequest {
|
|
|
4510
5395
|
*/
|
|
4511
5396
|
readonly limit?: number;
|
|
4512
5397
|
}
|
|
5398
|
+
/**
|
|
5399
|
+
* Request parameters for listDocuments operation in ActionsApi.
|
|
5400
|
+
* @export
|
|
5401
|
+
* @interface ActionsApiListDocumentsRequest
|
|
5402
|
+
*/
|
|
5403
|
+
export interface ActionsApiListDocumentsRequest {
|
|
5404
|
+
/**
|
|
5405
|
+
* Workspace identifier
|
|
5406
|
+
* @type {string}
|
|
5407
|
+
* @memberof ActionsApiListDocuments
|
|
5408
|
+
*/
|
|
5409
|
+
readonly workspaceId: string;
|
|
5410
|
+
/**
|
|
5411
|
+
*
|
|
5412
|
+
* @type {Array<string>}
|
|
5413
|
+
* @memberof ActionsApiListDocuments
|
|
5414
|
+
*/
|
|
5415
|
+
readonly scopes?: Array<string>;
|
|
5416
|
+
/**
|
|
5417
|
+
*
|
|
5418
|
+
* @type {number}
|
|
5419
|
+
* @memberof ActionsApiListDocuments
|
|
5420
|
+
*/
|
|
5421
|
+
readonly size?: number;
|
|
5422
|
+
/**
|
|
5423
|
+
*
|
|
5424
|
+
* @type {string}
|
|
5425
|
+
* @memberof ActionsApiListDocuments
|
|
5426
|
+
*/
|
|
5427
|
+
readonly pageToken?: string;
|
|
5428
|
+
/**
|
|
5429
|
+
*
|
|
5430
|
+
* @type {string}
|
|
5431
|
+
* @memberof ActionsApiListDocuments
|
|
5432
|
+
*/
|
|
5433
|
+
readonly metaInclude?: string;
|
|
5434
|
+
}
|
|
4513
5435
|
/**
|
|
4514
5436
|
* Request parameters for memoryCreatedByUsers operation in ActionsApi.
|
|
4515
5437
|
* @export
|
|
@@ -4579,6 +5501,31 @@ export interface ActionsApiOutlierDetectionResultRequest {
|
|
|
4579
5501
|
*/
|
|
4580
5502
|
readonly limit?: number;
|
|
4581
5503
|
}
|
|
5504
|
+
/**
|
|
5505
|
+
* Request parameters for patchDocument operation in ActionsApi.
|
|
5506
|
+
* @export
|
|
5507
|
+
* @interface ActionsApiPatchDocumentRequest
|
|
5508
|
+
*/
|
|
5509
|
+
export interface ActionsApiPatchDocumentRequest {
|
|
5510
|
+
/**
|
|
5511
|
+
* Workspace identifier
|
|
5512
|
+
* @type {string}
|
|
5513
|
+
* @memberof ActionsApiPatchDocument
|
|
5514
|
+
*/
|
|
5515
|
+
readonly workspaceId: string;
|
|
5516
|
+
/**
|
|
5517
|
+
*
|
|
5518
|
+
* @type {string}
|
|
5519
|
+
* @memberof ActionsApiPatchDocument
|
|
5520
|
+
*/
|
|
5521
|
+
readonly filename: string;
|
|
5522
|
+
/**
|
|
5523
|
+
*
|
|
5524
|
+
* @type {PatchKnowledgeDocumentRequestDto}
|
|
5525
|
+
* @memberof ActionsApiPatchDocument
|
|
5526
|
+
*/
|
|
5527
|
+
readonly patchKnowledgeDocumentRequestDto: PatchKnowledgeDocumentRequestDto;
|
|
5528
|
+
}
|
|
4582
5529
|
/**
|
|
4583
5530
|
* Request parameters for resolveLlmEndpoints operation in ActionsApi.
|
|
4584
5531
|
* @export
|
|
@@ -4654,6 +5601,43 @@ export interface ActionsApiRetrieveResultRequest {
|
|
|
4654
5601
|
*/
|
|
4655
5602
|
readonly xGDCCANCELTOKEN?: string;
|
|
4656
5603
|
}
|
|
5604
|
+
/**
|
|
5605
|
+
* Request parameters for searchKnowledge operation in ActionsApi.
|
|
5606
|
+
* @export
|
|
5607
|
+
* @interface ActionsApiSearchKnowledgeRequest
|
|
5608
|
+
*/
|
|
5609
|
+
export interface ActionsApiSearchKnowledgeRequest {
|
|
5610
|
+
/**
|
|
5611
|
+
* Workspace identifier
|
|
5612
|
+
* @type {string}
|
|
5613
|
+
* @memberof ActionsApiSearchKnowledge
|
|
5614
|
+
*/
|
|
5615
|
+
readonly workspaceId: string;
|
|
5616
|
+
/**
|
|
5617
|
+
*
|
|
5618
|
+
* @type {string}
|
|
5619
|
+
* @memberof ActionsApiSearchKnowledge
|
|
5620
|
+
*/
|
|
5621
|
+
readonly query: string;
|
|
5622
|
+
/**
|
|
5623
|
+
*
|
|
5624
|
+
* @type {number}
|
|
5625
|
+
* @memberof ActionsApiSearchKnowledge
|
|
5626
|
+
*/
|
|
5627
|
+
readonly limit?: number;
|
|
5628
|
+
/**
|
|
5629
|
+
*
|
|
5630
|
+
* @type {number}
|
|
5631
|
+
* @memberof ActionsApiSearchKnowledge
|
|
5632
|
+
*/
|
|
5633
|
+
readonly minScore?: number;
|
|
5634
|
+
/**
|
|
5635
|
+
*
|
|
5636
|
+
* @type {Array<string>}
|
|
5637
|
+
* @memberof ActionsApiSearchKnowledge
|
|
5638
|
+
*/
|
|
5639
|
+
readonly scopes?: Array<string>;
|
|
5640
|
+
}
|
|
4657
5641
|
/**
|
|
4658
5642
|
* Request parameters for tags operation in ActionsApi.
|
|
4659
5643
|
* @export
|
|
@@ -4667,6 +5651,32 @@ export interface ActionsApiTagsRequest {
|
|
|
4667
5651
|
*/
|
|
4668
5652
|
readonly workspaceId: string;
|
|
4669
5653
|
}
|
|
5654
|
+
/**
|
|
5655
|
+
* Request parameters for testLlmProvider operation in ActionsApi.
|
|
5656
|
+
* @export
|
|
5657
|
+
* @interface ActionsApiTestLlmProviderRequest
|
|
5658
|
+
*/
|
|
5659
|
+
export interface ActionsApiTestLlmProviderRequest {
|
|
5660
|
+
/**
|
|
5661
|
+
*
|
|
5662
|
+
* @type {TestLlmProviderDefinitionRequest}
|
|
5663
|
+
* @memberof ActionsApiTestLlmProvider
|
|
5664
|
+
*/
|
|
5665
|
+
readonly testLlmProviderDefinitionRequest: TestLlmProviderDefinitionRequest;
|
|
5666
|
+
}
|
|
5667
|
+
/**
|
|
5668
|
+
* Request parameters for testLlmProviderById operation in ActionsApi.
|
|
5669
|
+
* @export
|
|
5670
|
+
* @interface ActionsApiTestLlmProviderByIdRequest
|
|
5671
|
+
*/
|
|
5672
|
+
export interface ActionsApiTestLlmProviderByIdRequest {
|
|
5673
|
+
/**
|
|
5674
|
+
*
|
|
5675
|
+
* @type {string}
|
|
5676
|
+
* @memberof ActionsApiTestLlmProviderById
|
|
5677
|
+
*/
|
|
5678
|
+
readonly llmProviderId: string;
|
|
5679
|
+
}
|
|
4670
5680
|
/**
|
|
4671
5681
|
* Request parameters for triggerQualityIssuesCalculation operation in ActionsApi.
|
|
4672
5682
|
* @export
|
|
@@ -4680,6 +5690,25 @@ export interface ActionsApiTriggerQualityIssuesCalculationRequest {
|
|
|
4680
5690
|
*/
|
|
4681
5691
|
readonly workspaceId: string;
|
|
4682
5692
|
}
|
|
5693
|
+
/**
|
|
5694
|
+
* Request parameters for upsertDocument operation in ActionsApi.
|
|
5695
|
+
* @export
|
|
5696
|
+
* @interface ActionsApiUpsertDocumentRequest
|
|
5697
|
+
*/
|
|
5698
|
+
export interface ActionsApiUpsertDocumentRequest {
|
|
5699
|
+
/**
|
|
5700
|
+
* Workspace identifier
|
|
5701
|
+
* @type {string}
|
|
5702
|
+
* @memberof ActionsApiUpsertDocument
|
|
5703
|
+
*/
|
|
5704
|
+
readonly workspaceId: string;
|
|
5705
|
+
/**
|
|
5706
|
+
*
|
|
5707
|
+
* @type {UpsertKnowledgeDocumentRequestDto}
|
|
5708
|
+
* @memberof ActionsApiUpsertDocument
|
|
5709
|
+
*/
|
|
5710
|
+
readonly upsertKnowledgeDocumentRequestDto: UpsertKnowledgeDocumentRequestDto;
|
|
5711
|
+
}
|
|
4683
5712
|
/**
|
|
4684
5713
|
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
4685
5714
|
* @export
|
|
@@ -4873,6 +5902,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4873
5902
|
* @memberof ActionsApi
|
|
4874
5903
|
*/
|
|
4875
5904
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
5905
|
+
/**
|
|
5906
|
+
*
|
|
5907
|
+
* @param {ActionsApiCreateDocumentRequest} requestParameters Request parameters.
|
|
5908
|
+
* @param {*} [options] Override http request option.
|
|
5909
|
+
* @throws {RequiredError}
|
|
5910
|
+
* @memberof ActionsApi
|
|
5911
|
+
*/
|
|
5912
|
+
createDocument(requestParameters: ActionsApiCreateDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<CreateKnowledgeDocumentResponseDto>;
|
|
4876
5913
|
/**
|
|
4877
5914
|
* Returns a list of Users who created any object for this workspace
|
|
4878
5915
|
* @summary Get Analytics Catalog CreatedBy Users
|
|
@@ -4882,6 +5919,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4882
5919
|
* @memberof ActionsApi
|
|
4883
5920
|
*/
|
|
4884
5921
|
createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
|
|
5922
|
+
/**
|
|
5923
|
+
*
|
|
5924
|
+
* @param {ActionsApiDeleteDocumentRequest} requestParameters Request parameters.
|
|
5925
|
+
* @param {*} [options] Override http request option.
|
|
5926
|
+
* @throws {RequiredError}
|
|
5927
|
+
* @memberof ActionsApi
|
|
5928
|
+
*/
|
|
5929
|
+
deleteDocument(requestParameters: ActionsApiDeleteDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<DeleteKnowledgeDocumentResponseDto>;
|
|
4885
5930
|
/**
|
|
4886
5931
|
* The resource provides static structures needed for investigation of a problem with given AFM.
|
|
4887
5932
|
* @summary AFM explain resource.
|
|
@@ -4926,6 +5971,23 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4926
5971
|
* @memberof ActionsApi
|
|
4927
5972
|
*/
|
|
4928
5973
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
5974
|
+
/**
|
|
5975
|
+
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5976
|
+
* @summary Generate Title for Analytics Object
|
|
5977
|
+
* @param {ActionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
5978
|
+
* @param {*} [options] Override http request option.
|
|
5979
|
+
* @throws {RequiredError}
|
|
5980
|
+
* @memberof ActionsApi
|
|
5981
|
+
*/
|
|
5982
|
+
generateTitle(requestParameters: ActionsApiGenerateTitleRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateTitleResponse>;
|
|
5983
|
+
/**
|
|
5984
|
+
*
|
|
5985
|
+
* @param {ActionsApiGetDocumentRequest} requestParameters Request parameters.
|
|
5986
|
+
* @param {*} [options] Override http request option.
|
|
5987
|
+
* @throws {RequiredError}
|
|
5988
|
+
* @memberof ActionsApi
|
|
5989
|
+
*/
|
|
5990
|
+
getDocument(requestParameters: ActionsApiGetDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
4929
5991
|
/**
|
|
4930
5992
|
* Returns metadata quality issues detected by the platform linter.
|
|
4931
5993
|
* @summary Get Quality Issues
|
|
@@ -4970,6 +6032,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4970
6032
|
* @memberof ActionsApi
|
|
4971
6033
|
*/
|
|
4972
6034
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
6035
|
+
/**
|
|
6036
|
+
*
|
|
6037
|
+
* @param {ActionsApiListDocumentsRequest} requestParameters Request parameters.
|
|
6038
|
+
* @param {*} [options] Override http request option.
|
|
6039
|
+
* @throws {RequiredError}
|
|
6040
|
+
* @memberof ActionsApi
|
|
6041
|
+
*/
|
|
6042
|
+
listDocuments(requestParameters: ActionsApiListDocumentsRequest, options?: AxiosRequestConfig): AxiosPromise<ListKnowledgeDocumentsResponseDto>;
|
|
4973
6043
|
/**
|
|
4974
6044
|
* Returns a list of Users who created any memory item for this workspace
|
|
4975
6045
|
* @summary Get AI Memory CreatedBy Users
|
|
@@ -4997,6 +6067,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
4997
6067
|
* @memberof ActionsApi
|
|
4998
6068
|
*/
|
|
4999
6069
|
outlierDetectionResult(requestParameters: ActionsApiOutlierDetectionResultRequest, options?: AxiosRequestConfig): AxiosPromise<OutlierDetectionResult>;
|
|
6070
|
+
/**
|
|
6071
|
+
*
|
|
6072
|
+
* @param {ActionsApiPatchDocumentRequest} requestParameters Request parameters.
|
|
6073
|
+
* @param {*} [options] Override http request option.
|
|
6074
|
+
* @throws {RequiredError}
|
|
6075
|
+
* @memberof ActionsApi
|
|
6076
|
+
*/
|
|
6077
|
+
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
5000
6078
|
/**
|
|
5001
6079
|
* Returns a list of available LLM Endpoints
|
|
5002
6080
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5024,6 +6102,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
5024
6102
|
* @memberof ActionsApi
|
|
5025
6103
|
*/
|
|
5026
6104
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
6105
|
+
/**
|
|
6106
|
+
*
|
|
6107
|
+
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
6108
|
+
* @param {*} [options] Override http request option.
|
|
6109
|
+
* @throws {RequiredError}
|
|
6110
|
+
* @memberof ActionsApi
|
|
6111
|
+
*/
|
|
6112
|
+
searchKnowledge(requestParameters: ActionsApiSearchKnowledgeRequest, options?: AxiosRequestConfig): AxiosPromise<SearchKnowledgeResponseDto>;
|
|
5027
6113
|
/**
|
|
5028
6114
|
* Returns a list of tags for this workspace
|
|
5029
6115
|
* @summary Get Analytics Catalog Tags
|
|
@@ -5033,6 +6119,24 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
5033
6119
|
* @memberof ActionsApi
|
|
5034
6120
|
*/
|
|
5035
6121
|
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
6122
|
+
/**
|
|
6123
|
+
* Tests LLM provider connectivity with a full definition.
|
|
6124
|
+
* @summary Test LLM Provider
|
|
6125
|
+
* @param {ActionsApiTestLlmProviderRequest} requestParameters Request parameters.
|
|
6126
|
+
* @param {*} [options] Override http request option.
|
|
6127
|
+
* @throws {RequiredError}
|
|
6128
|
+
* @memberof ActionsApi
|
|
6129
|
+
*/
|
|
6130
|
+
testLlmProvider(requestParameters: ActionsApiTestLlmProviderRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
|
|
6131
|
+
/**
|
|
6132
|
+
* Tests an existing LLM provider connectivity by its ID.
|
|
6133
|
+
* @summary Test LLM Provider By Id
|
|
6134
|
+
* @param {ActionsApiTestLlmProviderByIdRequest} requestParameters Request parameters.
|
|
6135
|
+
* @param {*} [options] Override http request option.
|
|
6136
|
+
* @throws {RequiredError}
|
|
6137
|
+
* @memberof ActionsApi
|
|
6138
|
+
*/
|
|
6139
|
+
testLlmProviderById(requestParameters: ActionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
|
|
5036
6140
|
/**
|
|
5037
6141
|
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
5038
6142
|
* @summary Trigger Quality Issues Calculation
|
|
@@ -5042,6 +6146,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
5042
6146
|
* @memberof ActionsApi
|
|
5043
6147
|
*/
|
|
5044
6148
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
6149
|
+
/**
|
|
6150
|
+
*
|
|
6151
|
+
* @param {ActionsApiUpsertDocumentRequest} requestParameters Request parameters.
|
|
6152
|
+
* @param {*} [options] Override http request option.
|
|
6153
|
+
* @throws {RequiredError}
|
|
6154
|
+
* @memberof ActionsApi
|
|
6155
|
+
*/
|
|
6156
|
+
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
5045
6157
|
/**
|
|
5046
6158
|
* Validates LLM endpoint with provided parameters.
|
|
5047
6159
|
* @summary Validate LLM Endpoint
|
|
@@ -6140,6 +7252,16 @@ export declare function SmartFunctionsApiAxiosParamCreator_ForecastResult(worksp
|
|
|
6140
7252
|
* @throws {RequiredError}
|
|
6141
7253
|
*/
|
|
6142
7254
|
export declare function SmartFunctionsApiAxiosParamCreator_GenerateDescription(workspaceId: string, generateDescriptionRequest: GenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7255
|
+
/**
|
|
7256
|
+
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
7257
|
+
* @summary Generate Title for Analytics Object
|
|
7258
|
+
* @param {string} workspaceId Workspace identifier
|
|
7259
|
+
* @param {GenerateTitleRequest} generateTitleRequest
|
|
7260
|
+
* @param {*} [options] Override http request option.
|
|
7261
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7262
|
+
* @throws {RequiredError}
|
|
7263
|
+
*/
|
|
7264
|
+
export declare function SmartFunctionsApiAxiosParamCreator_GenerateTitle(workspaceId: string, generateTitleRequest: GenerateTitleRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6143
7265
|
/**
|
|
6144
7266
|
* Returns metadata quality issues detected by the platform linter.
|
|
6145
7267
|
* @summary Get Quality Issues
|
|
@@ -6186,6 +7308,24 @@ export declare function SmartFunctionsApiAxiosParamCreator_ResolveLlmEndpoints(w
|
|
|
6186
7308
|
* @throws {RequiredError}
|
|
6187
7309
|
*/
|
|
6188
7310
|
export declare function SmartFunctionsApiAxiosParamCreator_Tags(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7311
|
+
/**
|
|
7312
|
+
* Tests LLM provider connectivity with a full definition.
|
|
7313
|
+
* @summary Test LLM Provider
|
|
7314
|
+
* @param {TestLlmProviderDefinitionRequest} testLlmProviderDefinitionRequest
|
|
7315
|
+
* @param {*} [options] Override http request option.
|
|
7316
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7317
|
+
* @throws {RequiredError}
|
|
7318
|
+
*/
|
|
7319
|
+
export declare function SmartFunctionsApiAxiosParamCreator_TestLlmProvider(testLlmProviderDefinitionRequest: TestLlmProviderDefinitionRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7320
|
+
/**
|
|
7321
|
+
* Tests an existing LLM provider connectivity by its ID.
|
|
7322
|
+
* @summary Test LLM Provider By Id
|
|
7323
|
+
* @param {string} llmProviderId
|
|
7324
|
+
* @param {*} [options] Override http request option.
|
|
7325
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7326
|
+
* @throws {RequiredError}
|
|
7327
|
+
*/
|
|
7328
|
+
export declare function SmartFunctionsApiAxiosParamCreator_TestLlmProviderById(llmProviderId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6189
7329
|
/**
|
|
6190
7330
|
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
6191
7331
|
* @summary Trigger Quality Issues Calculation
|
|
@@ -6357,6 +7497,17 @@ export declare function SmartFunctionsApi_ForecastResult(axios: AxiosInstance, b
|
|
|
6357
7497
|
* @throws {RequiredError}
|
|
6358
7498
|
*/
|
|
6359
7499
|
export declare function SmartFunctionsApi_GenerateDescription(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateDescriptionResponse>;
|
|
7500
|
+
/**
|
|
7501
|
+
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
7502
|
+
* @summary Generate Title for Analytics Object
|
|
7503
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
7504
|
+
* @param {string} basePath Base path.
|
|
7505
|
+
* @param {SmartFunctionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
7506
|
+
* @param {*} [options] Override http request option.
|
|
7507
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7508
|
+
* @throws {RequiredError}
|
|
7509
|
+
*/
|
|
7510
|
+
export declare function SmartFunctionsApi_GenerateTitle(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiGenerateTitleRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateTitleResponse>;
|
|
6360
7511
|
/**
|
|
6361
7512
|
* Returns metadata quality issues detected by the platform linter.
|
|
6362
7513
|
* @summary Get Quality Issues
|
|
@@ -6412,6 +7563,28 @@ export declare function SmartFunctionsApi_ResolveLlmEndpoints(axios: AxiosInstan
|
|
|
6412
7563
|
* @throws {RequiredError}
|
|
6413
7564
|
*/
|
|
6414
7565
|
export declare function SmartFunctionsApi_Tags(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogTags>;
|
|
7566
|
+
/**
|
|
7567
|
+
* Tests LLM provider connectivity with a full definition.
|
|
7568
|
+
* @summary Test LLM Provider
|
|
7569
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
7570
|
+
* @param {string} basePath Base path.
|
|
7571
|
+
* @param {SmartFunctionsApiTestLlmProviderRequest} requestParameters Request parameters.
|
|
7572
|
+
* @param {*} [options] Override http request option.
|
|
7573
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7574
|
+
* @throws {RequiredError}
|
|
7575
|
+
*/
|
|
7576
|
+
export declare function SmartFunctionsApi_TestLlmProvider(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTestLlmProviderRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TestLlmProviderResponse>;
|
|
7577
|
+
/**
|
|
7578
|
+
* Tests an existing LLM provider connectivity by its ID.
|
|
7579
|
+
* @summary Test LLM Provider By Id
|
|
7580
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
7581
|
+
* @param {string} basePath Base path.
|
|
7582
|
+
* @param {SmartFunctionsApiTestLlmProviderByIdRequest} requestParameters Request parameters.
|
|
7583
|
+
* @param {*} [options] Override http request option.
|
|
7584
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7585
|
+
* @throws {RequiredError}
|
|
7586
|
+
*/
|
|
7587
|
+
export declare function SmartFunctionsApi_TestLlmProviderById(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TestLlmProviderResponse>;
|
|
6415
7588
|
/**
|
|
6416
7589
|
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
6417
7590
|
* @summary Trigger Quality Issues Calculation
|
|
@@ -6568,6 +7741,15 @@ export interface SmartFunctionsApiInterface {
|
|
|
6568
7741
|
* @memberof SmartFunctionsApiInterface
|
|
6569
7742
|
*/
|
|
6570
7743
|
generateDescription(requestParameters: SmartFunctionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
7744
|
+
/**
|
|
7745
|
+
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
7746
|
+
* @summary Generate Title for Analytics Object
|
|
7747
|
+
* @param {SmartFunctionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
7748
|
+
* @param {*} [options] Override http request option.
|
|
7749
|
+
* @throws {RequiredError}
|
|
7750
|
+
* @memberof SmartFunctionsApiInterface
|
|
7751
|
+
*/
|
|
7752
|
+
generateTitle(requestParameters: SmartFunctionsApiGenerateTitleRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateTitleResponse>;
|
|
6571
7753
|
/**
|
|
6572
7754
|
* Returns metadata quality issues detected by the platform linter.
|
|
6573
7755
|
* @summary Get Quality Issues
|
|
@@ -6613,6 +7795,24 @@ export interface SmartFunctionsApiInterface {
|
|
|
6613
7795
|
* @memberof SmartFunctionsApiInterface
|
|
6614
7796
|
*/
|
|
6615
7797
|
tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
7798
|
+
/**
|
|
7799
|
+
* Tests LLM provider connectivity with a full definition.
|
|
7800
|
+
* @summary Test LLM Provider
|
|
7801
|
+
* @param {SmartFunctionsApiTestLlmProviderRequest} requestParameters Request parameters.
|
|
7802
|
+
* @param {*} [options] Override http request option.
|
|
7803
|
+
* @throws {RequiredError}
|
|
7804
|
+
* @memberof SmartFunctionsApiInterface
|
|
7805
|
+
*/
|
|
7806
|
+
testLlmProvider(requestParameters: SmartFunctionsApiTestLlmProviderRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
|
|
7807
|
+
/**
|
|
7808
|
+
* Tests an existing LLM provider connectivity by its ID.
|
|
7809
|
+
* @summary Test LLM Provider By Id
|
|
7810
|
+
* @param {SmartFunctionsApiTestLlmProviderByIdRequest} requestParameters Request parameters.
|
|
7811
|
+
* @param {*} [options] Override http request option.
|
|
7812
|
+
* @throws {RequiredError}
|
|
7813
|
+
* @memberof SmartFunctionsApiInterface
|
|
7814
|
+
*/
|
|
7815
|
+
testLlmProviderById(requestParameters: SmartFunctionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
|
|
6616
7816
|
/**
|
|
6617
7817
|
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
6618
7818
|
* @summary Trigger Quality Issues Calculation
|
|
@@ -6948,6 +8148,25 @@ export interface SmartFunctionsApiGenerateDescriptionRequest {
|
|
|
6948
8148
|
*/
|
|
6949
8149
|
readonly generateDescriptionRequest: GenerateDescriptionRequest;
|
|
6950
8150
|
}
|
|
8151
|
+
/**
|
|
8152
|
+
* Request parameters for generateTitle operation in SmartFunctionsApi.
|
|
8153
|
+
* @export
|
|
8154
|
+
* @interface SmartFunctionsApiGenerateTitleRequest
|
|
8155
|
+
*/
|
|
8156
|
+
export interface SmartFunctionsApiGenerateTitleRequest {
|
|
8157
|
+
/**
|
|
8158
|
+
* Workspace identifier
|
|
8159
|
+
* @type {string}
|
|
8160
|
+
* @memberof SmartFunctionsApiGenerateTitle
|
|
8161
|
+
*/
|
|
8162
|
+
readonly workspaceId: string;
|
|
8163
|
+
/**
|
|
8164
|
+
*
|
|
8165
|
+
* @type {GenerateTitleRequest}
|
|
8166
|
+
* @memberof SmartFunctionsApiGenerateTitle
|
|
8167
|
+
*/
|
|
8168
|
+
readonly generateTitleRequest: GenerateTitleRequest;
|
|
8169
|
+
}
|
|
6951
8170
|
/**
|
|
6952
8171
|
* Request parameters for getQualityIssues operation in SmartFunctionsApi.
|
|
6953
8172
|
* @export
|
|
@@ -7019,6 +8238,32 @@ export interface SmartFunctionsApiTagsRequest {
|
|
|
7019
8238
|
*/
|
|
7020
8239
|
readonly workspaceId: string;
|
|
7021
8240
|
}
|
|
8241
|
+
/**
|
|
8242
|
+
* Request parameters for testLlmProvider operation in SmartFunctionsApi.
|
|
8243
|
+
* @export
|
|
8244
|
+
* @interface SmartFunctionsApiTestLlmProviderRequest
|
|
8245
|
+
*/
|
|
8246
|
+
export interface SmartFunctionsApiTestLlmProviderRequest {
|
|
8247
|
+
/**
|
|
8248
|
+
*
|
|
8249
|
+
* @type {TestLlmProviderDefinitionRequest}
|
|
8250
|
+
* @memberof SmartFunctionsApiTestLlmProvider
|
|
8251
|
+
*/
|
|
8252
|
+
readonly testLlmProviderDefinitionRequest: TestLlmProviderDefinitionRequest;
|
|
8253
|
+
}
|
|
8254
|
+
/**
|
|
8255
|
+
* Request parameters for testLlmProviderById operation in SmartFunctionsApi.
|
|
8256
|
+
* @export
|
|
8257
|
+
* @interface SmartFunctionsApiTestLlmProviderByIdRequest
|
|
8258
|
+
*/
|
|
8259
|
+
export interface SmartFunctionsApiTestLlmProviderByIdRequest {
|
|
8260
|
+
/**
|
|
8261
|
+
*
|
|
8262
|
+
* @type {string}
|
|
8263
|
+
* @memberof SmartFunctionsApiTestLlmProviderById
|
|
8264
|
+
*/
|
|
8265
|
+
readonly llmProviderId: string;
|
|
8266
|
+
}
|
|
7022
8267
|
/**
|
|
7023
8268
|
* Request parameters for triggerQualityIssuesCalculation operation in SmartFunctionsApi.
|
|
7024
8269
|
* @export
|
|
@@ -7188,6 +8433,15 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
7188
8433
|
* @memberof SmartFunctionsApi
|
|
7189
8434
|
*/
|
|
7190
8435
|
generateDescription(requestParameters: SmartFunctionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
8436
|
+
/**
|
|
8437
|
+
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
8438
|
+
* @summary Generate Title for Analytics Object
|
|
8439
|
+
* @param {SmartFunctionsApiGenerateTitleRequest} requestParameters Request parameters.
|
|
8440
|
+
* @param {*} [options] Override http request option.
|
|
8441
|
+
* @throws {RequiredError}
|
|
8442
|
+
* @memberof SmartFunctionsApi
|
|
8443
|
+
*/
|
|
8444
|
+
generateTitle(requestParameters: SmartFunctionsApiGenerateTitleRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateTitleResponse>;
|
|
7191
8445
|
/**
|
|
7192
8446
|
* Returns metadata quality issues detected by the platform linter.
|
|
7193
8447
|
* @summary Get Quality Issues
|
|
@@ -7233,6 +8487,24 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
|
|
|
7233
8487
|
* @memberof SmartFunctionsApi
|
|
7234
8488
|
*/
|
|
7235
8489
|
tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
|
|
8490
|
+
/**
|
|
8491
|
+
* Tests LLM provider connectivity with a full definition.
|
|
8492
|
+
* @summary Test LLM Provider
|
|
8493
|
+
* @param {SmartFunctionsApiTestLlmProviderRequest} requestParameters Request parameters.
|
|
8494
|
+
* @param {*} [options] Override http request option.
|
|
8495
|
+
* @throws {RequiredError}
|
|
8496
|
+
* @memberof SmartFunctionsApi
|
|
8497
|
+
*/
|
|
8498
|
+
testLlmProvider(requestParameters: SmartFunctionsApiTestLlmProviderRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
|
|
8499
|
+
/**
|
|
8500
|
+
* Tests an existing LLM provider connectivity by its ID.
|
|
8501
|
+
* @summary Test LLM Provider By Id
|
|
8502
|
+
* @param {SmartFunctionsApiTestLlmProviderByIdRequest} requestParameters Request parameters.
|
|
8503
|
+
* @param {*} [options] Override http request option.
|
|
8504
|
+
* @throws {RequiredError}
|
|
8505
|
+
* @memberof SmartFunctionsApi
|
|
8506
|
+
*/
|
|
8507
|
+
testLlmProviderById(requestParameters: SmartFunctionsApiTestLlmProviderByIdRequest, options?: AxiosRequestConfig): AxiosPromise<TestLlmProviderResponse>;
|
|
7236
8508
|
/**
|
|
7237
8509
|
* Triggers asynchronous calculation of metadata quality issues and returns a process ID for status tracking.
|
|
7238
8510
|
* @summary Trigger Quality Issues Calculation
|