@gooddata/api-client-tiger 11.39.0-alpha.3 → 11.39.0-alpha.4
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 +291 -34
- package/esm/gd-tiger-model/TigerTypes.d.ts +4 -25
- package/esm/generated/afm-rest-api/api.d.ts +978 -186
- package/esm/generated/afm-rest-api/api.js +661 -70
- package/esm/generated/ai-json-api/api.d.ts +8 -8
- package/esm/generated/ai-json-api/api.js +6 -6
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +3 -0
- package/esm/generated/export-json-api/api.d.ts +3 -0
- package/esm/generated/metadata-json-api/api.d.ts +3 -0
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/scan-json-api/api.d.ts +1 -1
- package/esm/index.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1077,6 +1077,22 @@ export interface DashboardContext {
|
|
|
1077
1077
|
*/
|
|
1078
1078
|
'widgets': Array<WidgetDescriptor>;
|
|
1079
1079
|
}
|
|
1080
|
+
export interface DashboardSummaryRequestDto {
|
|
1081
|
+
'dashboardId': string;
|
|
1082
|
+
'customUserPrompt'?: string;
|
|
1083
|
+
'gooddataHost'?: string;
|
|
1084
|
+
'gooddataToken'?: string;
|
|
1085
|
+
'keyMetricIds'?: Array<string>;
|
|
1086
|
+
'referenceQuarter'?: string;
|
|
1087
|
+
'dryRun'?: boolean;
|
|
1088
|
+
'temperature'?: number;
|
|
1089
|
+
'aiModel'?: string;
|
|
1090
|
+
}
|
|
1091
|
+
export interface DashboardSummaryResponseDto {
|
|
1092
|
+
'runId': string;
|
|
1093
|
+
'status': string;
|
|
1094
|
+
'message': string;
|
|
1095
|
+
}
|
|
1080
1096
|
/**
|
|
1081
1097
|
* Mapping from dimension items (either \'localIdentifier\' from \'AttributeItem\', or \"measureGroup\") to their respective values. This effectively specifies the path (location) of the data column used for sorting. Therefore values for all dimension items must be specified.
|
|
1082
1098
|
*/
|
|
@@ -1430,6 +1446,23 @@ export interface ExecutionResultGrandTotal {
|
|
|
1430
1446
|
* Abstract execution result header
|
|
1431
1447
|
*/
|
|
1432
1448
|
export type ExecutionResultHeader = AttributeExecutionResultHeader | MeasureExecutionResultHeader | TotalExecutionResultHeader;
|
|
1449
|
+
/**
|
|
1450
|
+
* Describes a limit that was broken, resulting in partial data being returned.
|
|
1451
|
+
*/
|
|
1452
|
+
export interface ExecutionResultLimitBreak {
|
|
1453
|
+
/**
|
|
1454
|
+
* Type of the limit that was broken, e.g. \"rowCount\".
|
|
1455
|
+
*/
|
|
1456
|
+
'limitType': string;
|
|
1457
|
+
/**
|
|
1458
|
+
* The configured threshold value.
|
|
1459
|
+
*/
|
|
1460
|
+
'limit': number;
|
|
1461
|
+
/**
|
|
1462
|
+
* The actual value that triggered the limit; null when it cannot be determined exactly.
|
|
1463
|
+
*/
|
|
1464
|
+
'value'?: number;
|
|
1465
|
+
}
|
|
1433
1466
|
/**
|
|
1434
1467
|
* Additional metadata for the particular execution result.
|
|
1435
1468
|
*/
|
|
@@ -1438,6 +1471,10 @@ export interface ExecutionResultMetadata {
|
|
|
1438
1471
|
* Additional information sent by the underlying data source.
|
|
1439
1472
|
*/
|
|
1440
1473
|
'dataSourceMessages': Array<ExecutionResultDataSourceMessage>;
|
|
1474
|
+
/**
|
|
1475
|
+
* Limits that were broken during result computation, causing the result to be partial. Absent when the result is complete.
|
|
1476
|
+
*/
|
|
1477
|
+
'limitBreaks'?: Array<ExecutionResultLimitBreak>;
|
|
1441
1478
|
}
|
|
1442
1479
|
/**
|
|
1443
1480
|
* A paging information related to the data presented in the execution result. These paging information are multi-dimensional.
|
|
@@ -1475,6 +1512,10 @@ export interface ExecutionSettings {
|
|
|
1475
1512
|
export interface FailedOperation extends Operation {
|
|
1476
1513
|
'error': OperationError;
|
|
1477
1514
|
}
|
|
1515
|
+
export interface FeedbackRequestDto {
|
|
1516
|
+
'sentiment': FeedbackRequestDtoSentimentEnum;
|
|
1517
|
+
}
|
|
1518
|
+
export type FeedbackRequestDtoSentimentEnum = 'POSITIVE' | 'NEGATIVE';
|
|
1478
1519
|
/**
|
|
1479
1520
|
* Specifies what is used for filtering.
|
|
1480
1521
|
*/
|
|
@@ -1706,6 +1747,195 @@ export interface InsightWidgetDescriptor {
|
|
|
1706
1747
|
*/
|
|
1707
1748
|
'visualizationId': string;
|
|
1708
1749
|
}
|
|
1750
|
+
/**
|
|
1751
|
+
* JSON:API-compatible single-resource response envelope
|
|
1752
|
+
*/
|
|
1753
|
+
export interface JsonApiDocumentDatabaseInstance {
|
|
1754
|
+
'data': JsonApiItemDatabaseInstance;
|
|
1755
|
+
'links': JsonApiListLinks;
|
|
1756
|
+
}
|
|
1757
|
+
/**
|
|
1758
|
+
* JSON:API-compatible single-resource response envelope
|
|
1759
|
+
*/
|
|
1760
|
+
export interface JsonApiDocumentPipeTable {
|
|
1761
|
+
'data': JsonApiItemPipeTable;
|
|
1762
|
+
'links': JsonApiListLinks;
|
|
1763
|
+
}
|
|
1764
|
+
/**
|
|
1765
|
+
* A single JSON:API resource item
|
|
1766
|
+
*/
|
|
1767
|
+
export interface JsonApiItemDataSourceInfo {
|
|
1768
|
+
/**
|
|
1769
|
+
* Resource identifier
|
|
1770
|
+
*/
|
|
1771
|
+
'id': string;
|
|
1772
|
+
/**
|
|
1773
|
+
* Resource type
|
|
1774
|
+
*/
|
|
1775
|
+
'type': string;
|
|
1776
|
+
'attributes': DataSourceInfo;
|
|
1777
|
+
}
|
|
1778
|
+
/**
|
|
1779
|
+
* A single JSON:API resource item
|
|
1780
|
+
*/
|
|
1781
|
+
export interface JsonApiItemDatabaseInstance {
|
|
1782
|
+
/**
|
|
1783
|
+
* Resource identifier
|
|
1784
|
+
*/
|
|
1785
|
+
'id': string;
|
|
1786
|
+
/**
|
|
1787
|
+
* Resource type
|
|
1788
|
+
*/
|
|
1789
|
+
'type': string;
|
|
1790
|
+
'attributes': DatabaseInstance;
|
|
1791
|
+
}
|
|
1792
|
+
/**
|
|
1793
|
+
* A single JSON:API resource item
|
|
1794
|
+
*/
|
|
1795
|
+
export interface JsonApiItemObjectStorageInfo {
|
|
1796
|
+
/**
|
|
1797
|
+
* Resource identifier
|
|
1798
|
+
*/
|
|
1799
|
+
'id': string;
|
|
1800
|
+
/**
|
|
1801
|
+
* Resource type
|
|
1802
|
+
*/
|
|
1803
|
+
'type': string;
|
|
1804
|
+
'attributes': ObjectStorageInfo;
|
|
1805
|
+
}
|
|
1806
|
+
/**
|
|
1807
|
+
* A single JSON:API resource item
|
|
1808
|
+
*/
|
|
1809
|
+
export interface JsonApiItemPipeTable {
|
|
1810
|
+
/**
|
|
1811
|
+
* Resource identifier
|
|
1812
|
+
*/
|
|
1813
|
+
'id': string;
|
|
1814
|
+
/**
|
|
1815
|
+
* Resource type
|
|
1816
|
+
*/
|
|
1817
|
+
'type': string;
|
|
1818
|
+
'attributes': PipeTable;
|
|
1819
|
+
}
|
|
1820
|
+
/**
|
|
1821
|
+
* A single JSON:API resource item
|
|
1822
|
+
*/
|
|
1823
|
+
export interface JsonApiItemPipeTableSummary {
|
|
1824
|
+
/**
|
|
1825
|
+
* Resource identifier
|
|
1826
|
+
*/
|
|
1827
|
+
'id': string;
|
|
1828
|
+
/**
|
|
1829
|
+
* Resource type
|
|
1830
|
+
*/
|
|
1831
|
+
'type': string;
|
|
1832
|
+
'attributes': PipeTableSummary;
|
|
1833
|
+
}
|
|
1834
|
+
/**
|
|
1835
|
+
* A single JSON:API resource item
|
|
1836
|
+
*/
|
|
1837
|
+
export interface JsonApiItemServiceInfo {
|
|
1838
|
+
/**
|
|
1839
|
+
* Resource identifier
|
|
1840
|
+
*/
|
|
1841
|
+
'id': string;
|
|
1842
|
+
/**
|
|
1843
|
+
* Resource type
|
|
1844
|
+
*/
|
|
1845
|
+
'type': string;
|
|
1846
|
+
'attributes': ServiceInfo;
|
|
1847
|
+
}
|
|
1848
|
+
/**
|
|
1849
|
+
* JSON:API-compatible list response envelope
|
|
1850
|
+
*/
|
|
1851
|
+
export interface JsonApiListDocumentDataSourceInfo {
|
|
1852
|
+
/**
|
|
1853
|
+
* Array of resource items
|
|
1854
|
+
*/
|
|
1855
|
+
'data': Array<JsonApiItemDataSourceInfo>;
|
|
1856
|
+
'links': JsonApiListLinks;
|
|
1857
|
+
'meta'?: JsonApiListMeta;
|
|
1858
|
+
}
|
|
1859
|
+
/**
|
|
1860
|
+
* JSON:API-compatible list response envelope
|
|
1861
|
+
*/
|
|
1862
|
+
export interface JsonApiListDocumentDatabaseInstance {
|
|
1863
|
+
/**
|
|
1864
|
+
* Array of resource items
|
|
1865
|
+
*/
|
|
1866
|
+
'data': Array<JsonApiItemDatabaseInstance>;
|
|
1867
|
+
'links': JsonApiListLinks;
|
|
1868
|
+
'meta'?: JsonApiListMeta;
|
|
1869
|
+
}
|
|
1870
|
+
/**
|
|
1871
|
+
* JSON:API-compatible list response envelope
|
|
1872
|
+
*/
|
|
1873
|
+
export interface JsonApiListDocumentObjectStorageInfo {
|
|
1874
|
+
/**
|
|
1875
|
+
* Array of resource items
|
|
1876
|
+
*/
|
|
1877
|
+
'data': Array<JsonApiItemObjectStorageInfo>;
|
|
1878
|
+
'links': JsonApiListLinks;
|
|
1879
|
+
'meta'?: JsonApiListMeta;
|
|
1880
|
+
}
|
|
1881
|
+
/**
|
|
1882
|
+
* JSON:API-compatible list response envelope
|
|
1883
|
+
*/
|
|
1884
|
+
export interface JsonApiListDocumentPipeTableSummary {
|
|
1885
|
+
/**
|
|
1886
|
+
* Array of resource items
|
|
1887
|
+
*/
|
|
1888
|
+
'data': Array<JsonApiItemPipeTableSummary>;
|
|
1889
|
+
'links': JsonApiListLinks;
|
|
1890
|
+
'meta'?: JsonApiListMeta;
|
|
1891
|
+
}
|
|
1892
|
+
/**
|
|
1893
|
+
* JSON:API-compatible list response envelope
|
|
1894
|
+
*/
|
|
1895
|
+
export interface JsonApiListDocumentServiceInfo {
|
|
1896
|
+
/**
|
|
1897
|
+
* Array of resource items
|
|
1898
|
+
*/
|
|
1899
|
+
'data': Array<JsonApiItemServiceInfo>;
|
|
1900
|
+
'links': JsonApiListLinks;
|
|
1901
|
+
'meta'?: JsonApiListMeta;
|
|
1902
|
+
}
|
|
1903
|
+
/**
|
|
1904
|
+
* Links object for a list response
|
|
1905
|
+
*/
|
|
1906
|
+
export interface JsonApiListLinks {
|
|
1907
|
+
/**
|
|
1908
|
+
* The URL of this response
|
|
1909
|
+
*/
|
|
1910
|
+
'self': string;
|
|
1911
|
+
}
|
|
1912
|
+
/**
|
|
1913
|
+
* Metadata for a paginated list response
|
|
1914
|
+
*/
|
|
1915
|
+
export interface JsonApiListMeta {
|
|
1916
|
+
'page': JsonApiPageInfo;
|
|
1917
|
+
}
|
|
1918
|
+
/**
|
|
1919
|
+
* Pagination information
|
|
1920
|
+
*/
|
|
1921
|
+
export interface JsonApiPageInfo {
|
|
1922
|
+
/**
|
|
1923
|
+
* Zero-based page number
|
|
1924
|
+
*/
|
|
1925
|
+
'number': number;
|
|
1926
|
+
/**
|
|
1927
|
+
* Page size
|
|
1928
|
+
*/
|
|
1929
|
+
'size': number;
|
|
1930
|
+
/**
|
|
1931
|
+
* Total number of elements; only present when metaInclude=page was requested
|
|
1932
|
+
*/
|
|
1933
|
+
'totalElements'?: number;
|
|
1934
|
+
/**
|
|
1935
|
+
* Total number of pages; only present when metaInclude=page was requested
|
|
1936
|
+
*/
|
|
1937
|
+
'totalPages'?: number;
|
|
1938
|
+
}
|
|
1709
1939
|
/**
|
|
1710
1940
|
* Key configuration for the table data model.
|
|
1711
1941
|
*/
|
|
@@ -1742,27 +1972,30 @@ export interface KeyDriversResponse {
|
|
|
1742
1972
|
export interface KeyDriversResult {
|
|
1743
1973
|
'data': object;
|
|
1744
1974
|
}
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
'
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
'
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1975
|
+
export interface KnowledgeRecommendationsRequestDto {
|
|
1976
|
+
'metricId': string;
|
|
1977
|
+
'direction'?: KnowledgeRecommendationsRequestDtoDirectionEnum;
|
|
1978
|
+
'comparisonType': KnowledgeRecommendationsRequestDtoComparisonTypeEnum;
|
|
1979
|
+
'limit'?: number;
|
|
1980
|
+
'minScore'?: number;
|
|
1981
|
+
'aiModel'?: string;
|
|
1982
|
+
'temperature'?: number;
|
|
1983
|
+
'maxTokens'?: number;
|
|
1984
|
+
'gooddataHost'?: string;
|
|
1985
|
+
'gooddataToken'?: string;
|
|
1986
|
+
'analyticalDashboardId'?: string;
|
|
1987
|
+
'widgetId'?: string;
|
|
1988
|
+
'widgetName'?: string;
|
|
1989
|
+
'dryRun'?: boolean;
|
|
1990
|
+
'referenceValue'?: number;
|
|
1991
|
+
'analyzedValue'?: number;
|
|
1992
|
+
}
|
|
1993
|
+
export type KnowledgeRecommendationsRequestDtoDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
1994
|
+
export type KnowledgeRecommendationsRequestDtoComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
1995
|
+
export interface KnowledgeRecommendationsResponseDto {
|
|
1996
|
+
'runId': string;
|
|
1997
|
+
'status': string;
|
|
1998
|
+
'message': string;
|
|
1766
1999
|
}
|
|
1767
2000
|
export interface ListLlmProviderModelsRequest {
|
|
1768
2001
|
'providerConfig': TestLlmProviderByIdRequestProviderConfig;
|
|
@@ -1781,37 +2014,6 @@ export interface ListLlmProviderModelsResponse {
|
|
|
1781
2014
|
*/
|
|
1782
2015
|
'models': Array<LlmModel>;
|
|
1783
2016
|
}
|
|
1784
|
-
/**
|
|
1785
|
-
* Response for listing ObjectStorages registered for the organization.
|
|
1786
|
-
*/
|
|
1787
|
-
export interface ListObjectStoragesResponse {
|
|
1788
|
-
/**
|
|
1789
|
-
* Registered storages, ordered by name.
|
|
1790
|
-
*/
|
|
1791
|
-
'storages': Array<ObjectStorageInfo>;
|
|
1792
|
-
}
|
|
1793
|
-
/**
|
|
1794
|
-
* List of pipe tables for a database instance
|
|
1795
|
-
*/
|
|
1796
|
-
export interface ListPipeTablesResponse {
|
|
1797
|
-
/**
|
|
1798
|
-
* Pipe tables in the requested database
|
|
1799
|
-
*/
|
|
1800
|
-
'pipeTables': Array<PipeTableSummary>;
|
|
1801
|
-
}
|
|
1802
|
-
/**
|
|
1803
|
-
* Paged response for listing AI Lake services
|
|
1804
|
-
*/
|
|
1805
|
-
export interface ListServicesResponse {
|
|
1806
|
-
/**
|
|
1807
|
-
* List of services
|
|
1808
|
-
*/
|
|
1809
|
-
'services': Array<ServiceInfo>;
|
|
1810
|
-
/**
|
|
1811
|
-
* Total count of items (only set when metaInclude=page)
|
|
1812
|
-
*/
|
|
1813
|
-
'totalCount'?: number;
|
|
1814
|
-
}
|
|
1815
2017
|
/**
|
|
1816
2018
|
* LLM Model configuration (id, family) within a provider.
|
|
1817
2019
|
*/
|
|
@@ -2135,12 +2337,12 @@ export interface Operation {
|
|
|
2135
2337
|
*/
|
|
2136
2338
|
'id': string;
|
|
2137
2339
|
/**
|
|
2138
|
-
* 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. * `create-pipe-table` — Creating a pipe table backed by an S3 data source. * `delete-pipe-table` — Deleting a pipe table. * `analyze-statistics` — Running ANALYZE TABLE for CBO statistics collection.
|
|
2340
|
+
* 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. * `create-pipe-table` — Creating a pipe table backed by an S3 data source. * `delete-pipe-table` — Deleting a pipe table. * `analyze-statistics` — Running ANALYZE TABLE for CBO statistics collection. * `refresh-partition` — Refreshing a specific Hive partition (delete + re-load from S3).
|
|
2139
2341
|
*/
|
|
2140
2342
|
'kind': OperationKindEnum;
|
|
2141
2343
|
'status': string;
|
|
2142
2344
|
}
|
|
2143
|
-
export type OperationKindEnum = 'provision-database' | 'deprovision-database' | 'run-service-command' | 'create-pipe-table' | 'delete-pipe-table' | 'analyze-statistics';
|
|
2345
|
+
export type OperationKindEnum = 'provision-database' | 'deprovision-database' | 'run-service-command' | 'create-pipe-table' | 'delete-pipe-table' | 'analyze-statistics' | 'refresh-partition';
|
|
2144
2346
|
/**
|
|
2145
2347
|
* Error information for a failed operation
|
|
2146
2348
|
*/
|
|
@@ -2580,6 +2782,17 @@ export interface ReasoningStep {
|
|
|
2580
2782
|
*/
|
|
2581
2783
|
'thoughts': Array<Thought>;
|
|
2582
2784
|
}
|
|
2785
|
+
/**
|
|
2786
|
+
* Request to refresh a specific Hive partition in a pipe-backed OLAP table
|
|
2787
|
+
*/
|
|
2788
|
+
export interface RefreshPartitionRequest {
|
|
2789
|
+
/**
|
|
2790
|
+
* Partition column values identifying the partition to refresh. Keys must match the table\'s partition_columns exactly. Example: {\"date\": \"2026-01-01\"}
|
|
2791
|
+
*/
|
|
2792
|
+
'partitionSpec': {
|
|
2793
|
+
[key: string]: string;
|
|
2794
|
+
};
|
|
2795
|
+
}
|
|
2583
2796
|
/**
|
|
2584
2797
|
* A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
|
|
2585
2798
|
*/
|
|
@@ -3480,53 +3693,62 @@ export declare function AILakeApiAxiosParamCreator_GetAiLakePipeTable(instanceId
|
|
|
3480
3693
|
*/
|
|
3481
3694
|
export declare function AILakeApiAxiosParamCreator_GetAiLakeServiceStatus(serviceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3482
3695
|
/**
|
|
3483
|
-
* (BETA) Returns
|
|
3696
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
3484
3697
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
3485
3698
|
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3699
|
+
* @param {string} [page] Zero-based page number.
|
|
3700
|
+
* @param {string} [size] Number of items per page.
|
|
3701
|
+
* @param {Array<string>} [metaInclude]
|
|
3486
3702
|
* @param {*} [options] Override http request option.
|
|
3487
3703
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3488
3704
|
* @throws {RequiredError}
|
|
3489
3705
|
*/
|
|
3490
|
-
export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3706
|
+
export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId: string, page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3491
3707
|
/**
|
|
3492
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
3708
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
3493
3709
|
* @summary (BETA) List AI Lake Database instances
|
|
3494
|
-
* @param {
|
|
3495
|
-
* @param {
|
|
3710
|
+
* @param {string} [page] Zero-based page number.
|
|
3711
|
+
* @param {string} [size] Number of items per page.
|
|
3496
3712
|
* @param {Array<string>} [metaInclude]
|
|
3497
3713
|
* @param {*} [options] Override http request option.
|
|
3498
3714
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3499
3715
|
* @throws {RequiredError}
|
|
3500
3716
|
*/
|
|
3501
|
-
export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(
|
|
3717
|
+
export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3502
3718
|
/**
|
|
3503
3719
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
3504
3720
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
3721
|
+
* @param {string} [page] Zero-based page number.
|
|
3722
|
+
* @param {string} [size] Number of items per page.
|
|
3723
|
+
* @param {Array<string>} [metaInclude]
|
|
3505
3724
|
* @param {*} [options] Override http request option.
|
|
3506
3725
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3507
3726
|
* @throws {RequiredError}
|
|
3508
3727
|
*/
|
|
3509
|
-
export declare function AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3728
|
+
export declare function AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3510
3729
|
/**
|
|
3511
|
-
* (BETA) Lists
|
|
3730
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
3512
3731
|
* @summary (BETA) List AI Lake pipe tables
|
|
3513
3732
|
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3733
|
+
* @param {string} [page] Zero-based page number.
|
|
3734
|
+
* @param {string} [size] Number of items per page.
|
|
3735
|
+
* @param {Array<string>} [metaInclude]
|
|
3514
3736
|
* @param {*} [options] Override http request option.
|
|
3515
3737
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3516
3738
|
* @throws {RequiredError}
|
|
3517
3739
|
*/
|
|
3518
|
-
export declare function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3740
|
+
export declare function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3519
3741
|
/**
|
|
3520
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
3742
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
3521
3743
|
* @summary (BETA) List AI Lake services
|
|
3522
|
-
* @param {
|
|
3523
|
-
* @param {
|
|
3744
|
+
* @param {string} [page] Zero-based page number.
|
|
3745
|
+
* @param {string} [size] Number of items per page.
|
|
3524
3746
|
* @param {Array<string>} [metaInclude]
|
|
3525
3747
|
* @param {*} [options] Override http request option.
|
|
3526
3748
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3527
3749
|
* @throws {RequiredError}
|
|
3528
3750
|
*/
|
|
3529
|
-
export declare function AILakeApiAxiosParamCreator_ListAiLakeServices(
|
|
3751
|
+
export declare function AILakeApiAxiosParamCreator_ListAiLakeServices(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3530
3752
|
/**
|
|
3531
3753
|
* (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.
|
|
3532
3754
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -3537,6 +3759,18 @@ export declare function AILakeApiAxiosParamCreator_ListAiLakeServices(size?: num
|
|
|
3537
3759
|
* @throws {RequiredError}
|
|
3538
3760
|
*/
|
|
3539
3761
|
export declare function AILakeApiAxiosParamCreator_ProvisionAiLakeDatabaseInstance(provisionDatabaseInstanceRequest: ProvisionDatabaseInstanceRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3762
|
+
/**
|
|
3763
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
3764
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
3765
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3766
|
+
* @param {string} tableName Pipe table name.
|
|
3767
|
+
* @param {RefreshPartitionRequest} refreshPartitionRequest
|
|
3768
|
+
* @param {string} [operationId]
|
|
3769
|
+
* @param {*} [options] Override http request option.
|
|
3770
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3771
|
+
* @throws {RequiredError}
|
|
3772
|
+
*/
|
|
3773
|
+
export declare function AILakeApiAxiosParamCreator_RefreshAiLakePipeTablePartition(instanceId: string, tableName: string, refreshPartitionRequest: RefreshPartitionRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3540
3774
|
/**
|
|
3541
3775
|
* (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
|
|
3542
3776
|
* @summary (BETA) Remove a data source from an AILake Database instance
|
|
@@ -3634,7 +3868,7 @@ export declare function AILakeApi_DeprovisionAiLakeDatabaseInstance(axios: Axios
|
|
|
3634
3868
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3635
3869
|
* @throws {RequiredError}
|
|
3636
3870
|
*/
|
|
3637
|
-
export declare function AILakeApi_GetAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
3871
|
+
export declare function AILakeApi_GetAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiDocumentDatabaseInstance>;
|
|
3638
3872
|
/**
|
|
3639
3873
|
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
3640
3874
|
* @summary (BETA) Get Long Running Operation details
|
|
@@ -3656,7 +3890,7 @@ export declare function AILakeApi_GetAiLakeOperation(axios: AxiosInstance, baseP
|
|
|
3656
3890
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3657
3891
|
* @throws {RequiredError}
|
|
3658
3892
|
*/
|
|
3659
|
-
export declare function AILakeApi_GetAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
3893
|
+
export declare function AILakeApi_GetAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiDocumentPipeTable>;
|
|
3660
3894
|
/**
|
|
3661
3895
|
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
3662
3896
|
* @summary (BETA) Get AI Lake service status
|
|
@@ -3669,7 +3903,7 @@ export declare function AILakeApi_GetAiLakePipeTable(axios: AxiosInstance, baseP
|
|
|
3669
3903
|
*/
|
|
3670
3904
|
export declare function AILakeApi_GetAiLakeServiceStatus(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GetServiceStatusResponse>;
|
|
3671
3905
|
/**
|
|
3672
|
-
* (BETA) Returns
|
|
3906
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
3673
3907
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
3674
3908
|
* @param {AxiosInstance} axios Axios instance.
|
|
3675
3909
|
* @param {string} basePath Base path.
|
|
@@ -3678,9 +3912,9 @@ export declare function AILakeApi_GetAiLakeServiceStatus(axios: AxiosInstance, b
|
|
|
3678
3912
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3679
3913
|
* @throws {RequiredError}
|
|
3680
3914
|
*/
|
|
3681
|
-
export declare function AILakeApi_ListAiLakeDatabaseDataSources(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
3915
|
+
export declare function AILakeApi_ListAiLakeDatabaseDataSources(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentDataSourceInfo>;
|
|
3682
3916
|
/**
|
|
3683
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
3917
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
3684
3918
|
* @summary (BETA) List AI Lake Database instances
|
|
3685
3919
|
* @param {AxiosInstance} axios Axios instance.
|
|
3686
3920
|
* @param {string} basePath Base path.
|
|
@@ -3689,19 +3923,20 @@ export declare function AILakeApi_ListAiLakeDatabaseDataSources(axios: AxiosInst
|
|
|
3689
3923
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3690
3924
|
* @throws {RequiredError}
|
|
3691
3925
|
*/
|
|
3692
|
-
export declare function AILakeApi_ListAiLakeDatabaseInstances(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
3926
|
+
export declare function AILakeApi_ListAiLakeDatabaseInstances(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentDatabaseInstance>;
|
|
3693
3927
|
/**
|
|
3694
3928
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
3695
3929
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
3696
3930
|
* @param {AxiosInstance} axios Axios instance.
|
|
3697
3931
|
* @param {string} basePath Base path.
|
|
3932
|
+
* @param {AILakeApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
3698
3933
|
* @param {*} [options] Override http request option.
|
|
3699
3934
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3700
3935
|
* @throws {RequiredError}
|
|
3701
3936
|
*/
|
|
3702
|
-
export declare function AILakeApi_ListAiLakeObjectStorages(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
3937
|
+
export declare function AILakeApi_ListAiLakeObjectStorages(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeObjectStoragesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentObjectStorageInfo>;
|
|
3703
3938
|
/**
|
|
3704
|
-
* (BETA) Lists
|
|
3939
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
3705
3940
|
* @summary (BETA) List AI Lake pipe tables
|
|
3706
3941
|
* @param {AxiosInstance} axios Axios instance.
|
|
3707
3942
|
* @param {string} basePath Base path.
|
|
@@ -3710,9 +3945,9 @@ export declare function AILakeApi_ListAiLakeObjectStorages(axios: AxiosInstance,
|
|
|
3710
3945
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3711
3946
|
* @throws {RequiredError}
|
|
3712
3947
|
*/
|
|
3713
|
-
export declare function AILakeApi_ListAiLakePipeTables(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
3948
|
+
export declare function AILakeApi_ListAiLakePipeTables(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentPipeTableSummary>;
|
|
3714
3949
|
/**
|
|
3715
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
3950
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
3716
3951
|
* @summary (BETA) List AI Lake services
|
|
3717
3952
|
* @param {AxiosInstance} axios Axios instance.
|
|
3718
3953
|
* @param {string} basePath Base path.
|
|
@@ -3721,7 +3956,7 @@ export declare function AILakeApi_ListAiLakePipeTables(axios: AxiosInstance, bas
|
|
|
3721
3956
|
* @param {Configuration} [configuration] Optional configuration.
|
|
3722
3957
|
* @throws {RequiredError}
|
|
3723
3958
|
*/
|
|
3724
|
-
export declare function AILakeApi_ListAiLakeServices(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
3959
|
+
export declare function AILakeApi_ListAiLakeServices(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentServiceInfo>;
|
|
3725
3960
|
/**
|
|
3726
3961
|
* (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.
|
|
3727
3962
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -3733,6 +3968,17 @@ export declare function AILakeApi_ListAiLakeServices(axios: AxiosInstance, baseP
|
|
|
3733
3968
|
* @throws {RequiredError}
|
|
3734
3969
|
*/
|
|
3735
3970
|
export declare function AILakeApi_ProvisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
3971
|
+
/**
|
|
3972
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
3973
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
3974
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
3975
|
+
* @param {string} basePath Base path.
|
|
3976
|
+
* @param {AILakeApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
3977
|
+
* @param {*} [options] Override http request option.
|
|
3978
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3979
|
+
* @throws {RequiredError}
|
|
3980
|
+
*/
|
|
3981
|
+
export declare function AILakeApi_RefreshAiLakePipeTablePartition(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
3736
3982
|
/**
|
|
3737
3983
|
* (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
|
|
3738
3984
|
* @summary (BETA) Remove a data source from an AILake Database instance
|
|
@@ -3825,7 +4071,7 @@ export interface AILakeApiInterface {
|
|
|
3825
4071
|
* @throws {RequiredError}
|
|
3826
4072
|
* @memberof AILakeApiInterface
|
|
3827
4073
|
*/
|
|
3828
|
-
getAiLakeDatabaseInstance(requestParameters: AILakeApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4074
|
+
getAiLakeDatabaseInstance(requestParameters: AILakeApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiDocumentDatabaseInstance>;
|
|
3829
4075
|
/**
|
|
3830
4076
|
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
3831
4077
|
* @summary (BETA) Get Long Running Operation details
|
|
@@ -3843,7 +4089,7 @@ export interface AILakeApiInterface {
|
|
|
3843
4089
|
* @throws {RequiredError}
|
|
3844
4090
|
* @memberof AILakeApiInterface
|
|
3845
4091
|
*/
|
|
3846
|
-
getAiLakePipeTable(requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4092
|
+
getAiLakePipeTable(requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiDocumentPipeTable>;
|
|
3847
4093
|
/**
|
|
3848
4094
|
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
3849
4095
|
* @summary (BETA) Get AI Lake service status
|
|
@@ -3854,49 +4100,50 @@ export interface AILakeApiInterface {
|
|
|
3854
4100
|
*/
|
|
3855
4101
|
getAiLakeServiceStatus(requestParameters: AILakeApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
|
|
3856
4102
|
/**
|
|
3857
|
-
* (BETA) Returns
|
|
4103
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
3858
4104
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
3859
4105
|
* @param {AILakeApiListAiLakeDatabaseDataSourcesRequest} requestParameters Request parameters.
|
|
3860
4106
|
* @param {*} [options] Override http request option.
|
|
3861
4107
|
* @throws {RequiredError}
|
|
3862
4108
|
* @memberof AILakeApiInterface
|
|
3863
4109
|
*/
|
|
3864
|
-
listAiLakeDatabaseDataSources(requestParameters: AILakeApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4110
|
+
listAiLakeDatabaseDataSources(requestParameters: AILakeApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentDataSourceInfo>;
|
|
3865
4111
|
/**
|
|
3866
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4112
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
3867
4113
|
* @summary (BETA) List AI Lake Database instances
|
|
3868
4114
|
* @param {AILakeApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
3869
4115
|
* @param {*} [options] Override http request option.
|
|
3870
4116
|
* @throws {RequiredError}
|
|
3871
4117
|
* @memberof AILakeApiInterface
|
|
3872
4118
|
*/
|
|
3873
|
-
listAiLakeDatabaseInstances(requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4119
|
+
listAiLakeDatabaseInstances(requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentDatabaseInstance>;
|
|
3874
4120
|
/**
|
|
3875
4121
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
3876
4122
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
4123
|
+
* @param {AILakeApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
3877
4124
|
* @param {*} [options] Override http request option.
|
|
3878
4125
|
* @throws {RequiredError}
|
|
3879
4126
|
* @memberof AILakeApiInterface
|
|
3880
4127
|
*/
|
|
3881
|
-
listAiLakeObjectStorages(options?: AxiosRequestConfig): AxiosPromise<
|
|
4128
|
+
listAiLakeObjectStorages(requestParameters: AILakeApiListAiLakeObjectStoragesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentObjectStorageInfo>;
|
|
3882
4129
|
/**
|
|
3883
|
-
* (BETA) Lists
|
|
4130
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
3884
4131
|
* @summary (BETA) List AI Lake pipe tables
|
|
3885
4132
|
* @param {AILakeApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
3886
4133
|
* @param {*} [options] Override http request option.
|
|
3887
4134
|
* @throws {RequiredError}
|
|
3888
4135
|
* @memberof AILakeApiInterface
|
|
3889
4136
|
*/
|
|
3890
|
-
listAiLakePipeTables(requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4137
|
+
listAiLakePipeTables(requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentPipeTableSummary>;
|
|
3891
4138
|
/**
|
|
3892
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
4139
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
3893
4140
|
* @summary (BETA) List AI Lake services
|
|
3894
4141
|
* @param {AILakeApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
3895
4142
|
* @param {*} [options] Override http request option.
|
|
3896
4143
|
* @throws {RequiredError}
|
|
3897
4144
|
* @memberof AILakeApiInterface
|
|
3898
4145
|
*/
|
|
3899
|
-
listAiLakeServices(requestParameters: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4146
|
+
listAiLakeServices(requestParameters: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentServiceInfo>;
|
|
3900
4147
|
/**
|
|
3901
4148
|
* (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.
|
|
3902
4149
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -3906,6 +4153,15 @@ export interface AILakeApiInterface {
|
|
|
3906
4153
|
* @memberof AILakeApiInterface
|
|
3907
4154
|
*/
|
|
3908
4155
|
provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4156
|
+
/**
|
|
4157
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
4158
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
4159
|
+
* @param {AILakeApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
4160
|
+
* @param {*} [options] Override http request option.
|
|
4161
|
+
* @throws {RequiredError}
|
|
4162
|
+
* @memberof AILakeApiInterface
|
|
4163
|
+
*/
|
|
4164
|
+
refreshAiLakePipeTablePartition(requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3909
4165
|
/**
|
|
3910
4166
|
* (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
|
|
3911
4167
|
* @summary (BETA) Remove a data source from an AILake Database instance
|
|
@@ -4117,6 +4373,24 @@ export interface AILakeApiListAiLakeDatabaseDataSourcesRequest {
|
|
|
4117
4373
|
* @memberof AILakeApiListAiLakeDatabaseDataSources
|
|
4118
4374
|
*/
|
|
4119
4375
|
readonly instanceId: string;
|
|
4376
|
+
/**
|
|
4377
|
+
* Zero-based page number.
|
|
4378
|
+
* @type {string}
|
|
4379
|
+
* @memberof AILakeApiListAiLakeDatabaseDataSources
|
|
4380
|
+
*/
|
|
4381
|
+
readonly page?: string;
|
|
4382
|
+
/**
|
|
4383
|
+
* Number of items per page.
|
|
4384
|
+
* @type {string}
|
|
4385
|
+
* @memberof AILakeApiListAiLakeDatabaseDataSources
|
|
4386
|
+
*/
|
|
4387
|
+
readonly size?: string;
|
|
4388
|
+
/**
|
|
4389
|
+
*
|
|
4390
|
+
* @type {Array<string>}
|
|
4391
|
+
* @memberof AILakeApiListAiLakeDatabaseDataSources
|
|
4392
|
+
*/
|
|
4393
|
+
readonly metaInclude?: Array<string>;
|
|
4120
4394
|
}
|
|
4121
4395
|
/**
|
|
4122
4396
|
* Request parameters for listAiLakeDatabaseInstances operation in AILakeApi.
|
|
@@ -4125,17 +4399,17 @@ export interface AILakeApiListAiLakeDatabaseDataSourcesRequest {
|
|
|
4125
4399
|
*/
|
|
4126
4400
|
export interface AILakeApiListAiLakeDatabaseInstancesRequest {
|
|
4127
4401
|
/**
|
|
4128
|
-
*
|
|
4129
|
-
* @type {
|
|
4402
|
+
* Zero-based page number.
|
|
4403
|
+
* @type {string}
|
|
4130
4404
|
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
4131
4405
|
*/
|
|
4132
|
-
readonly
|
|
4406
|
+
readonly page?: string;
|
|
4133
4407
|
/**
|
|
4134
|
-
*
|
|
4135
|
-
* @type {
|
|
4408
|
+
* Number of items per page.
|
|
4409
|
+
* @type {string}
|
|
4136
4410
|
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
4137
4411
|
*/
|
|
4138
|
-
readonly
|
|
4412
|
+
readonly size?: string;
|
|
4139
4413
|
/**
|
|
4140
4414
|
*
|
|
4141
4415
|
* @type {Array<string>}
|
|
@@ -4143,6 +4417,31 @@ export interface AILakeApiListAiLakeDatabaseInstancesRequest {
|
|
|
4143
4417
|
*/
|
|
4144
4418
|
readonly metaInclude?: Array<string>;
|
|
4145
4419
|
}
|
|
4420
|
+
/**
|
|
4421
|
+
* Request parameters for listAiLakeObjectStorages operation in AILakeApi.
|
|
4422
|
+
* @export
|
|
4423
|
+
* @interface AILakeApiListAiLakeObjectStoragesRequest
|
|
4424
|
+
*/
|
|
4425
|
+
export interface AILakeApiListAiLakeObjectStoragesRequest {
|
|
4426
|
+
/**
|
|
4427
|
+
* Zero-based page number.
|
|
4428
|
+
* @type {string}
|
|
4429
|
+
* @memberof AILakeApiListAiLakeObjectStorages
|
|
4430
|
+
*/
|
|
4431
|
+
readonly page?: string;
|
|
4432
|
+
/**
|
|
4433
|
+
* Number of items per page.
|
|
4434
|
+
* @type {string}
|
|
4435
|
+
* @memberof AILakeApiListAiLakeObjectStorages
|
|
4436
|
+
*/
|
|
4437
|
+
readonly size?: string;
|
|
4438
|
+
/**
|
|
4439
|
+
*
|
|
4440
|
+
* @type {Array<string>}
|
|
4441
|
+
* @memberof AILakeApiListAiLakeObjectStorages
|
|
4442
|
+
*/
|
|
4443
|
+
readonly metaInclude?: Array<string>;
|
|
4444
|
+
}
|
|
4146
4445
|
/**
|
|
4147
4446
|
* Request parameters for listAiLakePipeTables operation in AILakeApi.
|
|
4148
4447
|
* @export
|
|
@@ -4155,6 +4454,24 @@ export interface AILakeApiListAiLakePipeTablesRequest {
|
|
|
4155
4454
|
* @memberof AILakeApiListAiLakePipeTables
|
|
4156
4455
|
*/
|
|
4157
4456
|
readonly instanceId: string;
|
|
4457
|
+
/**
|
|
4458
|
+
* Zero-based page number.
|
|
4459
|
+
* @type {string}
|
|
4460
|
+
* @memberof AILakeApiListAiLakePipeTables
|
|
4461
|
+
*/
|
|
4462
|
+
readonly page?: string;
|
|
4463
|
+
/**
|
|
4464
|
+
* Number of items per page.
|
|
4465
|
+
* @type {string}
|
|
4466
|
+
* @memberof AILakeApiListAiLakePipeTables
|
|
4467
|
+
*/
|
|
4468
|
+
readonly size?: string;
|
|
4469
|
+
/**
|
|
4470
|
+
*
|
|
4471
|
+
* @type {Array<string>}
|
|
4472
|
+
* @memberof AILakeApiListAiLakePipeTables
|
|
4473
|
+
*/
|
|
4474
|
+
readonly metaInclude?: Array<string>;
|
|
4158
4475
|
}
|
|
4159
4476
|
/**
|
|
4160
4477
|
* Request parameters for listAiLakeServices operation in AILakeApi.
|
|
@@ -4163,17 +4480,17 @@ export interface AILakeApiListAiLakePipeTablesRequest {
|
|
|
4163
4480
|
*/
|
|
4164
4481
|
export interface AILakeApiListAiLakeServicesRequest {
|
|
4165
4482
|
/**
|
|
4166
|
-
*
|
|
4167
|
-
* @type {
|
|
4483
|
+
* Zero-based page number.
|
|
4484
|
+
* @type {string}
|
|
4168
4485
|
* @memberof AILakeApiListAiLakeServices
|
|
4169
4486
|
*/
|
|
4170
|
-
readonly
|
|
4487
|
+
readonly page?: string;
|
|
4171
4488
|
/**
|
|
4172
|
-
*
|
|
4173
|
-
* @type {
|
|
4489
|
+
* Number of items per page.
|
|
4490
|
+
* @type {string}
|
|
4174
4491
|
* @memberof AILakeApiListAiLakeServices
|
|
4175
4492
|
*/
|
|
4176
|
-
readonly
|
|
4493
|
+
readonly size?: string;
|
|
4177
4494
|
/**
|
|
4178
4495
|
*
|
|
4179
4496
|
* @type {Array<string>}
|
|
@@ -4200,6 +4517,37 @@ export interface AILakeApiProvisionAiLakeDatabaseInstanceRequest {
|
|
|
4200
4517
|
*/
|
|
4201
4518
|
readonly operationId?: string;
|
|
4202
4519
|
}
|
|
4520
|
+
/**
|
|
4521
|
+
* Request parameters for refreshAiLakePipeTablePartition operation in AILakeApi.
|
|
4522
|
+
* @export
|
|
4523
|
+
* @interface AILakeApiRefreshAiLakePipeTablePartitionRequest
|
|
4524
|
+
*/
|
|
4525
|
+
export interface AILakeApiRefreshAiLakePipeTablePartitionRequest {
|
|
4526
|
+
/**
|
|
4527
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4528
|
+
* @type {string}
|
|
4529
|
+
* @memberof AILakeApiRefreshAiLakePipeTablePartition
|
|
4530
|
+
*/
|
|
4531
|
+
readonly instanceId: string;
|
|
4532
|
+
/**
|
|
4533
|
+
* Pipe table name.
|
|
4534
|
+
* @type {string}
|
|
4535
|
+
* @memberof AILakeApiRefreshAiLakePipeTablePartition
|
|
4536
|
+
*/
|
|
4537
|
+
readonly tableName: string;
|
|
4538
|
+
/**
|
|
4539
|
+
*
|
|
4540
|
+
* @type {RefreshPartitionRequest}
|
|
4541
|
+
* @memberof AILakeApiRefreshAiLakePipeTablePartition
|
|
4542
|
+
*/
|
|
4543
|
+
readonly refreshPartitionRequest: RefreshPartitionRequest;
|
|
4544
|
+
/**
|
|
4545
|
+
*
|
|
4546
|
+
* @type {string}
|
|
4547
|
+
* @memberof AILakeApiRefreshAiLakePipeTablePartition
|
|
4548
|
+
*/
|
|
4549
|
+
readonly operationId?: string;
|
|
4550
|
+
}
|
|
4203
4551
|
/**
|
|
4204
4552
|
* Request parameters for removeAiLakeDatabaseDataSource operation in AILakeApi.
|
|
4205
4553
|
* @export
|
|
@@ -4329,7 +4677,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
|
|
|
4329
4677
|
* @throws {RequiredError}
|
|
4330
4678
|
* @memberof AILakeApi
|
|
4331
4679
|
*/
|
|
4332
|
-
getAiLakeDatabaseInstance(requestParameters: AILakeApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4680
|
+
getAiLakeDatabaseInstance(requestParameters: AILakeApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiDocumentDatabaseInstance>;
|
|
4333
4681
|
/**
|
|
4334
4682
|
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
4335
4683
|
* @summary (BETA) Get Long Running Operation details
|
|
@@ -4347,7 +4695,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
|
|
|
4347
4695
|
* @throws {RequiredError}
|
|
4348
4696
|
* @memberof AILakeApi
|
|
4349
4697
|
*/
|
|
4350
|
-
getAiLakePipeTable(requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4698
|
+
getAiLakePipeTable(requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiDocumentPipeTable>;
|
|
4351
4699
|
/**
|
|
4352
4700
|
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
4353
4701
|
* @summary (BETA) Get AI Lake service status
|
|
@@ -4358,49 +4706,50 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
|
|
|
4358
4706
|
*/
|
|
4359
4707
|
getAiLakeServiceStatus(requestParameters: AILakeApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
|
|
4360
4708
|
/**
|
|
4361
|
-
* (BETA) Returns
|
|
4709
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
4362
4710
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
4363
4711
|
* @param {AILakeApiListAiLakeDatabaseDataSourcesRequest} requestParameters Request parameters.
|
|
4364
4712
|
* @param {*} [options] Override http request option.
|
|
4365
4713
|
* @throws {RequiredError}
|
|
4366
4714
|
* @memberof AILakeApi
|
|
4367
4715
|
*/
|
|
4368
|
-
listAiLakeDatabaseDataSources(requestParameters: AILakeApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4716
|
+
listAiLakeDatabaseDataSources(requestParameters: AILakeApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentDataSourceInfo>;
|
|
4369
4717
|
/**
|
|
4370
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4718
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4371
4719
|
* @summary (BETA) List AI Lake Database instances
|
|
4372
4720
|
* @param {AILakeApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
4373
4721
|
* @param {*} [options] Override http request option.
|
|
4374
4722
|
* @throws {RequiredError}
|
|
4375
4723
|
* @memberof AILakeApi
|
|
4376
4724
|
*/
|
|
4377
|
-
listAiLakeDatabaseInstances(requestParameters?: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4725
|
+
listAiLakeDatabaseInstances(requestParameters?: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentDatabaseInstance>;
|
|
4378
4726
|
/**
|
|
4379
4727
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
4380
4728
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
4729
|
+
* @param {AILakeApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
4381
4730
|
* @param {*} [options] Override http request option.
|
|
4382
4731
|
* @throws {RequiredError}
|
|
4383
4732
|
* @memberof AILakeApi
|
|
4384
4733
|
*/
|
|
4385
|
-
listAiLakeObjectStorages(options?: AxiosRequestConfig): AxiosPromise<
|
|
4734
|
+
listAiLakeObjectStorages(requestParameters?: AILakeApiListAiLakeObjectStoragesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentObjectStorageInfo>;
|
|
4386
4735
|
/**
|
|
4387
|
-
* (BETA) Lists
|
|
4736
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
4388
4737
|
* @summary (BETA) List AI Lake pipe tables
|
|
4389
4738
|
* @param {AILakeApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
4390
4739
|
* @param {*} [options] Override http request option.
|
|
4391
4740
|
* @throws {RequiredError}
|
|
4392
4741
|
* @memberof AILakeApi
|
|
4393
4742
|
*/
|
|
4394
|
-
listAiLakePipeTables(requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4743
|
+
listAiLakePipeTables(requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentPipeTableSummary>;
|
|
4395
4744
|
/**
|
|
4396
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
4745
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
4397
4746
|
* @summary (BETA) List AI Lake services
|
|
4398
4747
|
* @param {AILakeApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
4399
4748
|
* @param {*} [options] Override http request option.
|
|
4400
4749
|
* @throws {RequiredError}
|
|
4401
4750
|
* @memberof AILakeApi
|
|
4402
4751
|
*/
|
|
4403
|
-
listAiLakeServices(requestParameters?: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
4752
|
+
listAiLakeServices(requestParameters?: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentServiceInfo>;
|
|
4404
4753
|
/**
|
|
4405
4754
|
* (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.
|
|
4406
4755
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -4410,6 +4759,15 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
|
|
|
4410
4759
|
* @memberof AILakeApi
|
|
4411
4760
|
*/
|
|
4412
4761
|
provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4762
|
+
/**
|
|
4763
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
4764
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
4765
|
+
* @param {AILakeApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
4766
|
+
* @param {*} [options] Override http request option.
|
|
4767
|
+
* @throws {RequiredError}
|
|
4768
|
+
* @memberof AILakeApi
|
|
4769
|
+
*/
|
|
4770
|
+
refreshAiLakePipeTablePartition(requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4413
4771
|
/**
|
|
4414
4772
|
* (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
|
|
4415
4773
|
* @summary (BETA) Remove a data source from an AILake Database instance
|
|
@@ -4468,33 +4826,39 @@ export declare function AILakeDatabasesApiAxiosParamCreator_DeprovisionAiLakeDat
|
|
|
4468
4826
|
*/
|
|
4469
4827
|
export declare function AILakeDatabasesApiAxiosParamCreator_GetAiLakeDatabaseInstance(instanceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4470
4828
|
/**
|
|
4471
|
-
* (BETA) Returns
|
|
4829
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
4472
4830
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
4473
4831
|
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4832
|
+
* @param {string} [page] Zero-based page number.
|
|
4833
|
+
* @param {string} [size] Number of items per page.
|
|
4834
|
+
* @param {Array<string>} [metaInclude]
|
|
4474
4835
|
* @param {*} [options] Override http request option.
|
|
4475
4836
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4476
4837
|
* @throws {RequiredError}
|
|
4477
4838
|
*/
|
|
4478
|
-
export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4839
|
+
export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId: string, page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4479
4840
|
/**
|
|
4480
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4841
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4481
4842
|
* @summary (BETA) List AI Lake Database instances
|
|
4482
|
-
* @param {
|
|
4483
|
-
* @param {
|
|
4843
|
+
* @param {string} [page] Zero-based page number.
|
|
4844
|
+
* @param {string} [size] Number of items per page.
|
|
4484
4845
|
* @param {Array<string>} [metaInclude]
|
|
4485
4846
|
* @param {*} [options] Override http request option.
|
|
4486
4847
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4487
4848
|
* @throws {RequiredError}
|
|
4488
4849
|
*/
|
|
4489
|
-
export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(
|
|
4850
|
+
export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4490
4851
|
/**
|
|
4491
4852
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
4492
4853
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
4854
|
+
* @param {string} [page] Zero-based page number.
|
|
4855
|
+
* @param {string} [size] Number of items per page.
|
|
4856
|
+
* @param {Array<string>} [metaInclude]
|
|
4493
4857
|
* @param {*} [options] Override http request option.
|
|
4494
4858
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4495
4859
|
* @throws {RequiredError}
|
|
4496
4860
|
*/
|
|
4497
|
-
export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorages(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4861
|
+
export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorages(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4498
4862
|
/**
|
|
4499
4863
|
* (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.
|
|
4500
4864
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -4557,9 +4921,9 @@ export declare function AILakeDatabasesApi_DeprovisionAiLakeDatabaseInstance(axi
|
|
|
4557
4921
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4558
4922
|
* @throws {RequiredError}
|
|
4559
4923
|
*/
|
|
4560
|
-
export declare function AILakeDatabasesApi_GetAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
4924
|
+
export declare function AILakeDatabasesApi_GetAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiDocumentDatabaseInstance>;
|
|
4561
4925
|
/**
|
|
4562
|
-
* (BETA) Returns
|
|
4926
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
4563
4927
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
4564
4928
|
* @param {AxiosInstance} axios Axios instance.
|
|
4565
4929
|
* @param {string} basePath Base path.
|
|
@@ -4568,9 +4932,9 @@ export declare function AILakeDatabasesApi_GetAiLakeDatabaseInstance(axios: Axio
|
|
|
4568
4932
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4569
4933
|
* @throws {RequiredError}
|
|
4570
4934
|
*/
|
|
4571
|
-
export declare function AILakeDatabasesApi_ListAiLakeDatabaseDataSources(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
4935
|
+
export declare function AILakeDatabasesApi_ListAiLakeDatabaseDataSources(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentDataSourceInfo>;
|
|
4572
4936
|
/**
|
|
4573
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4937
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4574
4938
|
* @summary (BETA) List AI Lake Database instances
|
|
4575
4939
|
* @param {AxiosInstance} axios Axios instance.
|
|
4576
4940
|
* @param {string} basePath Base path.
|
|
@@ -4579,17 +4943,18 @@ export declare function AILakeDatabasesApi_ListAiLakeDatabaseDataSources(axios:
|
|
|
4579
4943
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4580
4944
|
* @throws {RequiredError}
|
|
4581
4945
|
*/
|
|
4582
|
-
export declare function AILakeDatabasesApi_ListAiLakeDatabaseInstances(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
4946
|
+
export declare function AILakeDatabasesApi_ListAiLakeDatabaseInstances(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentDatabaseInstance>;
|
|
4583
4947
|
/**
|
|
4584
4948
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
4585
4949
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
4586
4950
|
* @param {AxiosInstance} axios Axios instance.
|
|
4587
4951
|
* @param {string} basePath Base path.
|
|
4952
|
+
* @param {AILakeDatabasesApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
4588
4953
|
* @param {*} [options] Override http request option.
|
|
4589
4954
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4590
4955
|
* @throws {RequiredError}
|
|
4591
4956
|
*/
|
|
4592
|
-
export declare function AILakeDatabasesApi_ListAiLakeObjectStorages(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
4957
|
+
export declare function AILakeDatabasesApi_ListAiLakeObjectStorages(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiListAiLakeObjectStoragesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentObjectStorageInfo>;
|
|
4593
4958
|
/**
|
|
4594
4959
|
* (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.
|
|
4595
4960
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -4655,33 +5020,34 @@ export interface AILakeDatabasesApiInterface {
|
|
|
4655
5020
|
* @throws {RequiredError}
|
|
4656
5021
|
* @memberof AILakeDatabasesApiInterface
|
|
4657
5022
|
*/
|
|
4658
|
-
getAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5023
|
+
getAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiDocumentDatabaseInstance>;
|
|
4659
5024
|
/**
|
|
4660
|
-
* (BETA) Returns
|
|
5025
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
4661
5026
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
4662
5027
|
* @param {AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest} requestParameters Request parameters.
|
|
4663
5028
|
* @param {*} [options] Override http request option.
|
|
4664
5029
|
* @throws {RequiredError}
|
|
4665
5030
|
* @memberof AILakeDatabasesApiInterface
|
|
4666
5031
|
*/
|
|
4667
|
-
listAiLakeDatabaseDataSources(requestParameters: AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5032
|
+
listAiLakeDatabaseDataSources(requestParameters: AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentDataSourceInfo>;
|
|
4668
5033
|
/**
|
|
4669
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
5034
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4670
5035
|
* @summary (BETA) List AI Lake Database instances
|
|
4671
5036
|
* @param {AILakeDatabasesApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
4672
5037
|
* @param {*} [options] Override http request option.
|
|
4673
5038
|
* @throws {RequiredError}
|
|
4674
5039
|
* @memberof AILakeDatabasesApiInterface
|
|
4675
5040
|
*/
|
|
4676
|
-
listAiLakeDatabaseInstances(requestParameters: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5041
|
+
listAiLakeDatabaseInstances(requestParameters: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentDatabaseInstance>;
|
|
4677
5042
|
/**
|
|
4678
5043
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
4679
5044
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
5045
|
+
* @param {AILakeDatabasesApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
4680
5046
|
* @param {*} [options] Override http request option.
|
|
4681
5047
|
* @throws {RequiredError}
|
|
4682
5048
|
* @memberof AILakeDatabasesApiInterface
|
|
4683
5049
|
*/
|
|
4684
|
-
listAiLakeObjectStorages(options?: AxiosRequestConfig): AxiosPromise<
|
|
5050
|
+
listAiLakeObjectStorages(requestParameters: AILakeDatabasesApiListAiLakeObjectStoragesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentObjectStorageInfo>;
|
|
4685
5051
|
/**
|
|
4686
5052
|
* (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.
|
|
4687
5053
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -4773,6 +5139,24 @@ export interface AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest {
|
|
|
4773
5139
|
* @memberof AILakeDatabasesApiListAiLakeDatabaseDataSources
|
|
4774
5140
|
*/
|
|
4775
5141
|
readonly instanceId: string;
|
|
5142
|
+
/**
|
|
5143
|
+
* Zero-based page number.
|
|
5144
|
+
* @type {string}
|
|
5145
|
+
* @memberof AILakeDatabasesApiListAiLakeDatabaseDataSources
|
|
5146
|
+
*/
|
|
5147
|
+
readonly page?: string;
|
|
5148
|
+
/**
|
|
5149
|
+
* Number of items per page.
|
|
5150
|
+
* @type {string}
|
|
5151
|
+
* @memberof AILakeDatabasesApiListAiLakeDatabaseDataSources
|
|
5152
|
+
*/
|
|
5153
|
+
readonly size?: string;
|
|
5154
|
+
/**
|
|
5155
|
+
*
|
|
5156
|
+
* @type {Array<string>}
|
|
5157
|
+
* @memberof AILakeDatabasesApiListAiLakeDatabaseDataSources
|
|
5158
|
+
*/
|
|
5159
|
+
readonly metaInclude?: Array<string>;
|
|
4776
5160
|
}
|
|
4777
5161
|
/**
|
|
4778
5162
|
* Request parameters for listAiLakeDatabaseInstances operation in AILakeDatabasesApi.
|
|
@@ -4781,17 +5165,17 @@ export interface AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest {
|
|
|
4781
5165
|
*/
|
|
4782
5166
|
export interface AILakeDatabasesApiListAiLakeDatabaseInstancesRequest {
|
|
4783
5167
|
/**
|
|
4784
|
-
*
|
|
4785
|
-
* @type {
|
|
5168
|
+
* Zero-based page number.
|
|
5169
|
+
* @type {string}
|
|
4786
5170
|
* @memberof AILakeDatabasesApiListAiLakeDatabaseInstances
|
|
4787
5171
|
*/
|
|
4788
|
-
readonly
|
|
5172
|
+
readonly page?: string;
|
|
4789
5173
|
/**
|
|
4790
|
-
*
|
|
4791
|
-
* @type {
|
|
5174
|
+
* Number of items per page.
|
|
5175
|
+
* @type {string}
|
|
4792
5176
|
* @memberof AILakeDatabasesApiListAiLakeDatabaseInstances
|
|
4793
5177
|
*/
|
|
4794
|
-
readonly
|
|
5178
|
+
readonly size?: string;
|
|
4795
5179
|
/**
|
|
4796
5180
|
*
|
|
4797
5181
|
* @type {Array<string>}
|
|
@@ -4799,6 +5183,31 @@ export interface AILakeDatabasesApiListAiLakeDatabaseInstancesRequest {
|
|
|
4799
5183
|
*/
|
|
4800
5184
|
readonly metaInclude?: Array<string>;
|
|
4801
5185
|
}
|
|
5186
|
+
/**
|
|
5187
|
+
* Request parameters for listAiLakeObjectStorages operation in AILakeDatabasesApi.
|
|
5188
|
+
* @export
|
|
5189
|
+
* @interface AILakeDatabasesApiListAiLakeObjectStoragesRequest
|
|
5190
|
+
*/
|
|
5191
|
+
export interface AILakeDatabasesApiListAiLakeObjectStoragesRequest {
|
|
5192
|
+
/**
|
|
5193
|
+
* Zero-based page number.
|
|
5194
|
+
* @type {string}
|
|
5195
|
+
* @memberof AILakeDatabasesApiListAiLakeObjectStorages
|
|
5196
|
+
*/
|
|
5197
|
+
readonly page?: string;
|
|
5198
|
+
/**
|
|
5199
|
+
* Number of items per page.
|
|
5200
|
+
* @type {string}
|
|
5201
|
+
* @memberof AILakeDatabasesApiListAiLakeObjectStorages
|
|
5202
|
+
*/
|
|
5203
|
+
readonly size?: string;
|
|
5204
|
+
/**
|
|
5205
|
+
*
|
|
5206
|
+
* @type {Array<string>}
|
|
5207
|
+
* @memberof AILakeDatabasesApiListAiLakeObjectStorages
|
|
5208
|
+
*/
|
|
5209
|
+
readonly metaInclude?: Array<string>;
|
|
5210
|
+
}
|
|
4802
5211
|
/**
|
|
4803
5212
|
* Request parameters for provisionAiLakeDatabaseInstance operation in AILakeDatabasesApi.
|
|
4804
5213
|
* @export
|
|
@@ -4889,33 +5298,34 @@ export declare class AILakeDatabasesApi extends BaseAPI implements AILakeDatabas
|
|
|
4889
5298
|
* @throws {RequiredError}
|
|
4890
5299
|
* @memberof AILakeDatabasesApi
|
|
4891
5300
|
*/
|
|
4892
|
-
getAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5301
|
+
getAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiDocumentDatabaseInstance>;
|
|
4893
5302
|
/**
|
|
4894
|
-
* (BETA) Returns
|
|
5303
|
+
* (BETA) Returns data source associations for the specified AI Lake database instance.
|
|
4895
5304
|
* @summary (BETA) List data sources of an AILake Database instance
|
|
4896
5305
|
* @param {AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest} requestParameters Request parameters.
|
|
4897
5306
|
* @param {*} [options] Override http request option.
|
|
4898
5307
|
* @throws {RequiredError}
|
|
4899
5308
|
* @memberof AILakeDatabasesApi
|
|
4900
5309
|
*/
|
|
4901
|
-
listAiLakeDatabaseDataSources(requestParameters: AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5310
|
+
listAiLakeDatabaseDataSources(requestParameters: AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentDataSourceInfo>;
|
|
4902
5311
|
/**
|
|
4903
|
-
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
5312
|
+
* (BETA) Lists database instances in the organization\'s AI Lake.
|
|
4904
5313
|
* @summary (BETA) List AI Lake Database instances
|
|
4905
5314
|
* @param {AILakeDatabasesApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
4906
5315
|
* @param {*} [options] Override http request option.
|
|
4907
5316
|
* @throws {RequiredError}
|
|
4908
5317
|
* @memberof AILakeDatabasesApi
|
|
4909
5318
|
*/
|
|
4910
|
-
listAiLakeDatabaseInstances(requestParameters?: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5319
|
+
listAiLakeDatabaseInstances(requestParameters?: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentDatabaseInstance>;
|
|
4911
5320
|
/**
|
|
4912
5321
|
* (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
|
|
4913
5322
|
* @summary (BETA) List registered AI Lake ObjectStorages
|
|
5323
|
+
* @param {AILakeDatabasesApiListAiLakeObjectStoragesRequest} requestParameters Request parameters.
|
|
4914
5324
|
* @param {*} [options] Override http request option.
|
|
4915
5325
|
* @throws {RequiredError}
|
|
4916
5326
|
* @memberof AILakeDatabasesApi
|
|
4917
5327
|
*/
|
|
4918
|
-
listAiLakeObjectStorages(options?: AxiosRequestConfig): AxiosPromise<
|
|
5328
|
+
listAiLakeObjectStorages(requestParameters?: AILakeDatabasesApiListAiLakeObjectStoragesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentObjectStorageInfo>;
|
|
4919
5329
|
/**
|
|
4920
5330
|
* (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.
|
|
4921
5331
|
* @summary (BETA) Create a new AILake Database instance
|
|
@@ -4988,14 +5398,29 @@ export declare function AILakePipeTablesApiAxiosParamCreator_DeleteAiLakePipeTab
|
|
|
4988
5398
|
*/
|
|
4989
5399
|
export declare function AILakePipeTablesApiAxiosParamCreator_GetAiLakePipeTable(instanceId: string, tableName: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4990
5400
|
/**
|
|
4991
|
-
* (BETA) Lists
|
|
5401
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
4992
5402
|
* @summary (BETA) List AI Lake pipe tables
|
|
4993
5403
|
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
5404
|
+
* @param {string} [page] Zero-based page number.
|
|
5405
|
+
* @param {string} [size] Number of items per page.
|
|
5406
|
+
* @param {Array<string>} [metaInclude]
|
|
5407
|
+
* @param {*} [options] Override http request option.
|
|
5408
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5409
|
+
* @throws {RequiredError}
|
|
5410
|
+
*/
|
|
5411
|
+
export declare function AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5412
|
+
/**
|
|
5413
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
5414
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
5415
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
5416
|
+
* @param {string} tableName Pipe table name.
|
|
5417
|
+
* @param {RefreshPartitionRequest} refreshPartitionRequest
|
|
5418
|
+
* @param {string} [operationId]
|
|
4994
5419
|
* @param {*} [options] Override http request option.
|
|
4995
5420
|
* @param {Configuration} [configuration] Optional configuration.
|
|
4996
5421
|
* @throws {RequiredError}
|
|
4997
5422
|
*/
|
|
4998
|
-
export declare function
|
|
5423
|
+
export declare function AILakePipeTablesApiAxiosParamCreator_RefreshAiLakePipeTablePartition(instanceId: string, tableName: string, refreshPartitionRequest: RefreshPartitionRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4999
5424
|
/**
|
|
5000
5425
|
* (BETA) Collects CBO statistics for tables in a StarRocks database. Works for both internal (native/PIPE) and external (Iceberg) catalogs. If tableNames is empty, all tables are analyzed.
|
|
5001
5426
|
* @summary (BETA) Run ANALYZE TABLE for tables in a database instance
|
|
@@ -5039,9 +5464,9 @@ export declare function AILakePipeTablesApi_DeleteAiLakePipeTable(axios: AxiosIn
|
|
|
5039
5464
|
* @param {Configuration} [configuration] Optional configuration.
|
|
5040
5465
|
* @throws {RequiredError}
|
|
5041
5466
|
*/
|
|
5042
|
-
export declare function AILakePipeTablesApi_GetAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
5467
|
+
export declare function AILakePipeTablesApi_GetAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiDocumentPipeTable>;
|
|
5043
5468
|
/**
|
|
5044
|
-
* (BETA) Lists
|
|
5469
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
5045
5470
|
* @summary (BETA) List AI Lake pipe tables
|
|
5046
5471
|
* @param {AxiosInstance} axios Axios instance.
|
|
5047
5472
|
* @param {string} basePath Base path.
|
|
@@ -5050,7 +5475,18 @@ export declare function AILakePipeTablesApi_GetAiLakePipeTable(axios: AxiosInsta
|
|
|
5050
5475
|
* @param {Configuration} [configuration] Optional configuration.
|
|
5051
5476
|
* @throws {RequiredError}
|
|
5052
5477
|
*/
|
|
5053
|
-
export declare function AILakePipeTablesApi_ListAiLakePipeTables(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
5478
|
+
export declare function AILakePipeTablesApi_ListAiLakePipeTables(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentPipeTableSummary>;
|
|
5479
|
+
/**
|
|
5480
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
5481
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
5482
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5483
|
+
* @param {string} basePath Base path.
|
|
5484
|
+
* @param {AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
5485
|
+
* @param {*} [options] Override http request option.
|
|
5486
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5487
|
+
* @throws {RequiredError}
|
|
5488
|
+
*/
|
|
5489
|
+
export declare function AILakePipeTablesApi_RefreshAiLakePipeTablePartition(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
5054
5490
|
/**
|
|
5055
5491
|
* AILakePipeTablesApi - interface
|
|
5056
5492
|
* @export
|
|
@@ -5092,16 +5528,25 @@ export interface AILakePipeTablesApiInterface {
|
|
|
5092
5528
|
* @throws {RequiredError}
|
|
5093
5529
|
* @memberof AILakePipeTablesApiInterface
|
|
5094
5530
|
*/
|
|
5095
|
-
getAiLakePipeTable(requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5531
|
+
getAiLakePipeTable(requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiDocumentPipeTable>;
|
|
5096
5532
|
/**
|
|
5097
|
-
* (BETA) Lists
|
|
5533
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
5098
5534
|
* @summary (BETA) List AI Lake pipe tables
|
|
5099
5535
|
* @param {AILakePipeTablesApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
5100
5536
|
* @param {*} [options] Override http request option.
|
|
5101
5537
|
* @throws {RequiredError}
|
|
5102
5538
|
* @memberof AILakePipeTablesApiInterface
|
|
5103
5539
|
*/
|
|
5104
|
-
listAiLakePipeTables(requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5540
|
+
listAiLakePipeTables(requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentPipeTableSummary>;
|
|
5541
|
+
/**
|
|
5542
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
5543
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
5544
|
+
* @param {AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
5545
|
+
* @param {*} [options] Override http request option.
|
|
5546
|
+
* @throws {RequiredError}
|
|
5547
|
+
* @memberof AILakePipeTablesApiInterface
|
|
5548
|
+
*/
|
|
5549
|
+
refreshAiLakePipeTablePartition(requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
5105
5550
|
}
|
|
5106
5551
|
/**
|
|
5107
5552
|
* Request parameters for analyzeStatistics operation in AILakePipeTablesApi.
|
|
@@ -5176,39 +5621,88 @@ export interface AILakePipeTablesApiDeleteAiLakePipeTableRequest {
|
|
|
5176
5621
|
* @type {string}
|
|
5177
5622
|
* @memberof AILakePipeTablesApiDeleteAiLakePipeTable
|
|
5178
5623
|
*/
|
|
5179
|
-
readonly operationId?: string;
|
|
5624
|
+
readonly operationId?: string;
|
|
5625
|
+
}
|
|
5626
|
+
/**
|
|
5627
|
+
* Request parameters for getAiLakePipeTable operation in AILakePipeTablesApi.
|
|
5628
|
+
* @export
|
|
5629
|
+
* @interface AILakePipeTablesApiGetAiLakePipeTableRequest
|
|
5630
|
+
*/
|
|
5631
|
+
export interface AILakePipeTablesApiGetAiLakePipeTableRequest {
|
|
5632
|
+
/**
|
|
5633
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
5634
|
+
* @type {string}
|
|
5635
|
+
* @memberof AILakePipeTablesApiGetAiLakePipeTable
|
|
5636
|
+
*/
|
|
5637
|
+
readonly instanceId: string;
|
|
5638
|
+
/**
|
|
5639
|
+
* Pipe table name.
|
|
5640
|
+
* @type {string}
|
|
5641
|
+
* @memberof AILakePipeTablesApiGetAiLakePipeTable
|
|
5642
|
+
*/
|
|
5643
|
+
readonly tableName: string;
|
|
5644
|
+
}
|
|
5645
|
+
/**
|
|
5646
|
+
* Request parameters for listAiLakePipeTables operation in AILakePipeTablesApi.
|
|
5647
|
+
* @export
|
|
5648
|
+
* @interface AILakePipeTablesApiListAiLakePipeTablesRequest
|
|
5649
|
+
*/
|
|
5650
|
+
export interface AILakePipeTablesApiListAiLakePipeTablesRequest {
|
|
5651
|
+
/**
|
|
5652
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
5653
|
+
* @type {string}
|
|
5654
|
+
* @memberof AILakePipeTablesApiListAiLakePipeTables
|
|
5655
|
+
*/
|
|
5656
|
+
readonly instanceId: string;
|
|
5657
|
+
/**
|
|
5658
|
+
* Zero-based page number.
|
|
5659
|
+
* @type {string}
|
|
5660
|
+
* @memberof AILakePipeTablesApiListAiLakePipeTables
|
|
5661
|
+
*/
|
|
5662
|
+
readonly page?: string;
|
|
5663
|
+
/**
|
|
5664
|
+
* Number of items per page.
|
|
5665
|
+
* @type {string}
|
|
5666
|
+
* @memberof AILakePipeTablesApiListAiLakePipeTables
|
|
5667
|
+
*/
|
|
5668
|
+
readonly size?: string;
|
|
5669
|
+
/**
|
|
5670
|
+
*
|
|
5671
|
+
* @type {Array<string>}
|
|
5672
|
+
* @memberof AILakePipeTablesApiListAiLakePipeTables
|
|
5673
|
+
*/
|
|
5674
|
+
readonly metaInclude?: Array<string>;
|
|
5180
5675
|
}
|
|
5181
5676
|
/**
|
|
5182
|
-
* Request parameters for
|
|
5677
|
+
* Request parameters for refreshAiLakePipeTablePartition operation in AILakePipeTablesApi.
|
|
5183
5678
|
* @export
|
|
5184
|
-
* @interface
|
|
5679
|
+
* @interface AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest
|
|
5185
5680
|
*/
|
|
5186
|
-
export interface
|
|
5681
|
+
export interface AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest {
|
|
5187
5682
|
/**
|
|
5188
5683
|
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
5189
5684
|
* @type {string}
|
|
5190
|
-
* @memberof
|
|
5685
|
+
* @memberof AILakePipeTablesApiRefreshAiLakePipeTablePartition
|
|
5191
5686
|
*/
|
|
5192
5687
|
readonly instanceId: string;
|
|
5193
5688
|
/**
|
|
5194
5689
|
* Pipe table name.
|
|
5195
5690
|
* @type {string}
|
|
5196
|
-
* @memberof
|
|
5691
|
+
* @memberof AILakePipeTablesApiRefreshAiLakePipeTablePartition
|
|
5197
5692
|
*/
|
|
5198
5693
|
readonly tableName: string;
|
|
5199
|
-
}
|
|
5200
|
-
/**
|
|
5201
|
-
* Request parameters for listAiLakePipeTables operation in AILakePipeTablesApi.
|
|
5202
|
-
* @export
|
|
5203
|
-
* @interface AILakePipeTablesApiListAiLakePipeTablesRequest
|
|
5204
|
-
*/
|
|
5205
|
-
export interface AILakePipeTablesApiListAiLakePipeTablesRequest {
|
|
5206
5694
|
/**
|
|
5207
|
-
*
|
|
5695
|
+
*
|
|
5696
|
+
* @type {RefreshPartitionRequest}
|
|
5697
|
+
* @memberof AILakePipeTablesApiRefreshAiLakePipeTablePartition
|
|
5698
|
+
*/
|
|
5699
|
+
readonly refreshPartitionRequest: RefreshPartitionRequest;
|
|
5700
|
+
/**
|
|
5701
|
+
*
|
|
5208
5702
|
* @type {string}
|
|
5209
|
-
* @memberof
|
|
5703
|
+
* @memberof AILakePipeTablesApiRefreshAiLakePipeTablePartition
|
|
5210
5704
|
*/
|
|
5211
|
-
readonly
|
|
5705
|
+
readonly operationId?: string;
|
|
5212
5706
|
}
|
|
5213
5707
|
/**
|
|
5214
5708
|
* AILakePipeTablesApi - object-oriented interface
|
|
@@ -5252,16 +5746,25 @@ export declare class AILakePipeTablesApi extends BaseAPI implements AILakePipeTa
|
|
|
5252
5746
|
* @throws {RequiredError}
|
|
5253
5747
|
* @memberof AILakePipeTablesApi
|
|
5254
5748
|
*/
|
|
5255
|
-
getAiLakePipeTable(requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5749
|
+
getAiLakePipeTable(requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiDocumentPipeTable>;
|
|
5256
5750
|
/**
|
|
5257
|
-
* (BETA) Lists
|
|
5751
|
+
* (BETA) Lists active pipe tables in the given AI Lake database instance.
|
|
5258
5752
|
* @summary (BETA) List AI Lake pipe tables
|
|
5259
5753
|
* @param {AILakePipeTablesApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
5260
5754
|
* @param {*} [options] Override http request option.
|
|
5261
5755
|
* @throws {RequiredError}
|
|
5262
5756
|
* @memberof AILakePipeTablesApi
|
|
5263
5757
|
*/
|
|
5264
|
-
listAiLakePipeTables(requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5758
|
+
listAiLakePipeTables(requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentPipeTableSummary>;
|
|
5759
|
+
/**
|
|
5760
|
+
* (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
|
|
5761
|
+
* @summary (BETA) Refresh a pipe table partition
|
|
5762
|
+
* @param {AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest} requestParameters Request parameters.
|
|
5763
|
+
* @param {*} [options] Override http request option.
|
|
5764
|
+
* @throws {RequiredError}
|
|
5765
|
+
* @memberof AILakePipeTablesApi
|
|
5766
|
+
*/
|
|
5767
|
+
refreshAiLakePipeTablePartition(requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
5265
5768
|
}
|
|
5266
5769
|
/**
|
|
5267
5770
|
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
@@ -5282,16 +5785,16 @@ export declare function AILakeServicesOperationsApiAxiosParamCreator_GetAiLakeOp
|
|
|
5282
5785
|
*/
|
|
5283
5786
|
export declare function AILakeServicesOperationsApiAxiosParamCreator_GetAiLakeServiceStatus(serviceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5284
5787
|
/**
|
|
5285
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
5788
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
5286
5789
|
* @summary (BETA) List AI Lake services
|
|
5287
|
-
* @param {
|
|
5288
|
-
* @param {
|
|
5790
|
+
* @param {string} [page] Zero-based page number.
|
|
5791
|
+
* @param {string} [size] Number of items per page.
|
|
5289
5792
|
* @param {Array<string>} [metaInclude]
|
|
5290
5793
|
* @param {*} [options] Override http request option.
|
|
5291
5794
|
* @param {Configuration} [configuration] Optional configuration.
|
|
5292
5795
|
* @throws {RequiredError}
|
|
5293
5796
|
*/
|
|
5294
|
-
export declare function AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(
|
|
5797
|
+
export declare function AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5295
5798
|
/**
|
|
5296
5799
|
* (BETA) Runs a specific AI Lake service command.
|
|
5297
5800
|
* @summary (BETA) Run an AI Lake services command
|
|
@@ -5327,7 +5830,7 @@ export declare function AILakeServicesOperationsApi_GetAiLakeOperation(axios: Ax
|
|
|
5327
5830
|
*/
|
|
5328
5831
|
export declare function AILakeServicesOperationsApi_GetAiLakeServiceStatus(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GetServiceStatusResponse>;
|
|
5329
5832
|
/**
|
|
5330
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
5833
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
5331
5834
|
* @summary (BETA) List AI Lake services
|
|
5332
5835
|
* @param {AxiosInstance} axios Axios instance.
|
|
5333
5836
|
* @param {string} basePath Base path.
|
|
@@ -5336,7 +5839,7 @@ export declare function AILakeServicesOperationsApi_GetAiLakeServiceStatus(axios
|
|
|
5336
5839
|
* @param {Configuration} [configuration] Optional configuration.
|
|
5337
5840
|
* @throws {RequiredError}
|
|
5338
5841
|
*/
|
|
5339
|
-
export declare function AILakeServicesOperationsApi_ListAiLakeServices(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<
|
|
5842
|
+
export declare function AILakeServicesOperationsApi_ListAiLakeServices(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiListDocumentServiceInfo>;
|
|
5340
5843
|
/**
|
|
5341
5844
|
* (BETA) Runs a specific AI Lake service command.
|
|
5342
5845
|
* @summary (BETA) Run an AI Lake services command
|
|
@@ -5373,14 +5876,14 @@ export interface AILakeServicesOperationsApiInterface {
|
|
|
5373
5876
|
*/
|
|
5374
5877
|
getAiLakeServiceStatus(requestParameters: AILakeServicesOperationsApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
|
|
5375
5878
|
/**
|
|
5376
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
5879
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
5377
5880
|
* @summary (BETA) List AI Lake services
|
|
5378
5881
|
* @param {AILakeServicesOperationsApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
5379
5882
|
* @param {*} [options] Override http request option.
|
|
5380
5883
|
* @throws {RequiredError}
|
|
5381
5884
|
* @memberof AILakeServicesOperationsApiInterface
|
|
5382
5885
|
*/
|
|
5383
|
-
listAiLakeServices(requestParameters: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
5886
|
+
listAiLakeServices(requestParameters: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentServiceInfo>;
|
|
5384
5887
|
/**
|
|
5385
5888
|
* (BETA) Runs a specific AI Lake service command.
|
|
5386
5889
|
* @summary (BETA) Run an AI Lake services command
|
|
@@ -5424,17 +5927,17 @@ export interface AILakeServicesOperationsApiGetAiLakeServiceStatusRequest {
|
|
|
5424
5927
|
*/
|
|
5425
5928
|
export interface AILakeServicesOperationsApiListAiLakeServicesRequest {
|
|
5426
5929
|
/**
|
|
5427
|
-
*
|
|
5428
|
-
* @type {
|
|
5930
|
+
* Zero-based page number.
|
|
5931
|
+
* @type {string}
|
|
5429
5932
|
* @memberof AILakeServicesOperationsApiListAiLakeServices
|
|
5430
5933
|
*/
|
|
5431
|
-
readonly
|
|
5934
|
+
readonly page?: string;
|
|
5432
5935
|
/**
|
|
5433
|
-
*
|
|
5434
|
-
* @type {
|
|
5936
|
+
* Number of items per page.
|
|
5937
|
+
* @type {string}
|
|
5435
5938
|
* @memberof AILakeServicesOperationsApiListAiLakeServices
|
|
5436
5939
|
*/
|
|
5437
|
-
readonly
|
|
5940
|
+
readonly size?: string;
|
|
5438
5941
|
/**
|
|
5439
5942
|
*
|
|
5440
5943
|
* @type {Array<string>}
|
|
@@ -5499,14 +6002,14 @@ export declare class AILakeServicesOperationsApi extends BaseAPI implements AILa
|
|
|
5499
6002
|
*/
|
|
5500
6003
|
getAiLakeServiceStatus(requestParameters: AILakeServicesOperationsApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
|
|
5501
6004
|
/**
|
|
5502
|
-
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
6005
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
|
|
5503
6006
|
* @summary (BETA) List AI Lake services
|
|
5504
6007
|
* @param {AILakeServicesOperationsApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
5505
6008
|
* @param {*} [options] Override http request option.
|
|
5506
6009
|
* @throws {RequiredError}
|
|
5507
6010
|
* @memberof AILakeServicesOperationsApi
|
|
5508
6011
|
*/
|
|
5509
|
-
listAiLakeServices(requestParameters?: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<
|
|
6012
|
+
listAiLakeServices(requestParameters?: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiListDocumentServiceInfo>;
|
|
5510
6013
|
/**
|
|
5511
6014
|
* (BETA) Runs a specific AI Lake service command.
|
|
5512
6015
|
* @summary (BETA) Run an AI Lake services command
|
|
@@ -5609,6 +6112,15 @@ export declare function ActionsApiAxiosParamCreator_CancelExecutions(workspaceId
|
|
|
5609
6112
|
* @throws {RequiredError}
|
|
5610
6113
|
*/
|
|
5611
6114
|
export declare function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6115
|
+
/**
|
|
6116
|
+
*
|
|
6117
|
+
* @param {string} workspaceId Workspace identifier
|
|
6118
|
+
* @param {string} runId
|
|
6119
|
+
* @param {*} [options] Override http request option.
|
|
6120
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6121
|
+
* @throws {RequiredError}
|
|
6122
|
+
*/
|
|
6123
|
+
export declare function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5612
6124
|
/**
|
|
5613
6125
|
* Computes change analysis for the provided execution definition.
|
|
5614
6126
|
* @summary Compute change analysis
|
|
@@ -5763,6 +6275,15 @@ export declare function ActionsApiAxiosParamCreator_ForecastResult(workspaceId:
|
|
|
5763
6275
|
* @throws {RequiredError}
|
|
5764
6276
|
*/
|
|
5765
6277
|
export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId: string, workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6278
|
+
/**
|
|
6279
|
+
*
|
|
6280
|
+
* @param {string} workspaceId Workspace identifier
|
|
6281
|
+
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
6282
|
+
* @param {*} [options] Override http request option.
|
|
6283
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6284
|
+
* @throws {RequiredError}
|
|
6285
|
+
*/
|
|
6286
|
+
export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId: string, dashboardSummaryRequestDto: DashboardSummaryRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5766
6287
|
/**
|
|
5767
6288
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5768
6289
|
* @summary Generate Description for Analytics Object
|
|
@@ -5773,6 +6294,15 @@ export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary(wor
|
|
|
5773
6294
|
* @throws {RequiredError}
|
|
5774
6295
|
*/
|
|
5775
6296
|
export declare function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId: string, generateDescriptionRequest: GenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6297
|
+
/**
|
|
6298
|
+
*
|
|
6299
|
+
* @param {string} workspaceId Workspace identifier
|
|
6300
|
+
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
6301
|
+
* @param {*} [options] Override http request option.
|
|
6302
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6303
|
+
* @throws {RequiredError}
|
|
6304
|
+
*/
|
|
6305
|
+
export declare function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId: string, knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5776
6306
|
/**
|
|
5777
6307
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5778
6308
|
* @summary Generate Title for Analytics Object
|
|
@@ -5811,6 +6341,15 @@ export declare function ActionsApiAxiosParamCreator_GetQualityIssuesCalculationS
|
|
|
5811
6341
|
* @throws {RequiredError}
|
|
5812
6342
|
*/
|
|
5813
6343
|
export declare function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6344
|
+
/**
|
|
6345
|
+
*
|
|
6346
|
+
* @param {string} workspaceId Workspace identifier
|
|
6347
|
+
* @param {string} runId
|
|
6348
|
+
* @param {*} [options] Override http request option.
|
|
6349
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6350
|
+
* @throws {RequiredError}
|
|
6351
|
+
*/
|
|
6352
|
+
export declare function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5814
6353
|
/**
|
|
5815
6354
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5816
6355
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5983,6 +6522,16 @@ export declare function ActionsApiAxiosParamCreator_TrendingObjects(workspaceId:
|
|
|
5983
6522
|
* @throws {RequiredError}
|
|
5984
6523
|
*/
|
|
5985
6524
|
export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6525
|
+
/**
|
|
6526
|
+
*
|
|
6527
|
+
* @param {string} workspaceId Workspace identifier
|
|
6528
|
+
* @param {string} runId
|
|
6529
|
+
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
6530
|
+
* @param {*} [options] Override http request option.
|
|
6531
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6532
|
+
* @throws {RequiredError}
|
|
6533
|
+
*/
|
|
6534
|
+
export declare function ActionsApiAxiosParamCreator_UserFeedback(workspaceId: string, runId: string, feedbackRequestDto: FeedbackRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
5986
6535
|
/**
|
|
5987
6536
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5988
6537
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -6100,6 +6649,18 @@ export declare function ActionsApi_CancelExecutions(axios: AxiosInstance, basePa
|
|
|
6100
6649
|
export declare function ActionsApi_CancelWorkflow(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
6101
6650
|
[key: string]: string;
|
|
6102
6651
|
}>;
|
|
6652
|
+
/**
|
|
6653
|
+
*
|
|
6654
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
6655
|
+
* @param {string} basePath Base path.
|
|
6656
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
6657
|
+
* @param {*} [options] Override http request option.
|
|
6658
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6659
|
+
* @throws {RequiredError}
|
|
6660
|
+
*/
|
|
6661
|
+
export declare function ActionsApi_CancelWorkflow1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
6662
|
+
[key: string]: string;
|
|
6663
|
+
}>;
|
|
6103
6664
|
/**
|
|
6104
6665
|
* Computes change analysis for the provided execution definition.
|
|
6105
6666
|
* @summary Compute change analysis
|
|
@@ -6253,6 +6814,16 @@ export declare function ActionsApi_ForecastResult(axios: AxiosInstance, basePath
|
|
|
6253
6814
|
* @throws {RequiredError}
|
|
6254
6815
|
*/
|
|
6255
6816
|
export declare function ActionsApi_GenerateDashboardSummary(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
6817
|
+
/**
|
|
6818
|
+
*
|
|
6819
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
6820
|
+
* @param {string} basePath Base path.
|
|
6821
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
6822
|
+
* @param {*} [options] Override http request option.
|
|
6823
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6824
|
+
* @throws {RequiredError}
|
|
6825
|
+
*/
|
|
6826
|
+
export declare function ActionsApi_GenerateDashboardSummary1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DashboardSummaryResponseDto>;
|
|
6256
6827
|
/**
|
|
6257
6828
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
6258
6829
|
* @summary Generate Description for Analytics Object
|
|
@@ -6264,6 +6835,16 @@ export declare function ActionsApi_GenerateDashboardSummary(axios: AxiosInstance
|
|
|
6264
6835
|
* @throws {RequiredError}
|
|
6265
6836
|
*/
|
|
6266
6837
|
export declare function ActionsApi_GenerateDescription(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateDescriptionResponse>;
|
|
6838
|
+
/**
|
|
6839
|
+
*
|
|
6840
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
6841
|
+
* @param {string} basePath Base path.
|
|
6842
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
6843
|
+
* @param {*} [options] Override http request option.
|
|
6844
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6845
|
+
* @throws {RequiredError}
|
|
6846
|
+
*/
|
|
6847
|
+
export declare function ActionsApi_GenerateKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
6267
6848
|
/**
|
|
6268
6849
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
6269
6850
|
* @summary Generate Title for Analytics Object
|
|
@@ -6307,6 +6888,16 @@ export declare function ActionsApi_GetQualityIssuesCalculationStatus(axios: Axio
|
|
|
6307
6888
|
* @throws {RequiredError}
|
|
6308
6889
|
*/
|
|
6309
6890
|
export declare function ActionsApi_GetWorkflowStatus(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6891
|
+
/**
|
|
6892
|
+
*
|
|
6893
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
6894
|
+
* @param {string} basePath Base path.
|
|
6895
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
6896
|
+
* @param {*} [options] Override http request option.
|
|
6897
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
6898
|
+
* @throws {RequiredError}
|
|
6899
|
+
*/
|
|
6900
|
+
export declare function ActionsApi_GetWorkflowStatus1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6310
6901
|
/**
|
|
6311
6902
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6312
6903
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6494,6 +7085,18 @@ export declare function ActionsApi_TrendingObjects(axios: AxiosInstance, basePat
|
|
|
6494
7085
|
* @throws {RequiredError}
|
|
6495
7086
|
*/
|
|
6496
7087
|
export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
7088
|
+
/**
|
|
7089
|
+
*
|
|
7090
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
7091
|
+
* @param {string} basePath Base path.
|
|
7092
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
7093
|
+
* @param {*} [options] Override http request option.
|
|
7094
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7095
|
+
* @throws {RequiredError}
|
|
7096
|
+
*/
|
|
7097
|
+
export declare function ActionsApi_UserFeedback(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
7098
|
+
[key: string]: string;
|
|
7099
|
+
}>;
|
|
6497
7100
|
/**
|
|
6498
7101
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6499
7102
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -6605,6 +7208,16 @@ export interface ActionsApiInterface {
|
|
|
6605
7208
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
6606
7209
|
[key: string]: string;
|
|
6607
7210
|
}>;
|
|
7211
|
+
/**
|
|
7212
|
+
*
|
|
7213
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
7214
|
+
* @param {*} [options] Override http request option.
|
|
7215
|
+
* @throws {RequiredError}
|
|
7216
|
+
* @memberof ActionsApiInterface
|
|
7217
|
+
*/
|
|
7218
|
+
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
7219
|
+
[key: string]: string;
|
|
7220
|
+
}>;
|
|
6608
7221
|
/**
|
|
6609
7222
|
* Computes change analysis for the provided execution definition.
|
|
6610
7223
|
* @summary Compute change analysis
|
|
@@ -6730,6 +7343,14 @@ export interface ActionsApiInterface {
|
|
|
6730
7343
|
* @memberof ActionsApiInterface
|
|
6731
7344
|
*/
|
|
6732
7345
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
7346
|
+
/**
|
|
7347
|
+
*
|
|
7348
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
7349
|
+
* @param {*} [options] Override http request option.
|
|
7350
|
+
* @throws {RequiredError}
|
|
7351
|
+
* @memberof ActionsApiInterface
|
|
7352
|
+
*/
|
|
7353
|
+
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
6733
7354
|
/**
|
|
6734
7355
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
6735
7356
|
* @summary Generate Description for Analytics Object
|
|
@@ -6739,6 +7360,14 @@ export interface ActionsApiInterface {
|
|
|
6739
7360
|
* @memberof ActionsApiInterface
|
|
6740
7361
|
*/
|
|
6741
7362
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
7363
|
+
/**
|
|
7364
|
+
*
|
|
7365
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
7366
|
+
* @param {*} [options] Override http request option.
|
|
7367
|
+
* @throws {RequiredError}
|
|
7368
|
+
* @memberof ActionsApiInterface
|
|
7369
|
+
*/
|
|
7370
|
+
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
6742
7371
|
/**
|
|
6743
7372
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
6744
7373
|
* @summary Generate Title for Analytics Object
|
|
@@ -6774,6 +7403,14 @@ export interface ActionsApiInterface {
|
|
|
6774
7403
|
* @memberof ActionsApiInterface
|
|
6775
7404
|
*/
|
|
6776
7405
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
7406
|
+
/**
|
|
7407
|
+
*
|
|
7408
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
7409
|
+
* @param {*} [options] Override http request option.
|
|
7410
|
+
* @throws {RequiredError}
|
|
7411
|
+
* @memberof ActionsApiInterface
|
|
7412
|
+
*/
|
|
7413
|
+
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6777
7414
|
/**
|
|
6778
7415
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6779
7416
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6928,6 +7565,16 @@ export interface ActionsApiInterface {
|
|
|
6928
7565
|
* @memberof ActionsApiInterface
|
|
6929
7566
|
*/
|
|
6930
7567
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
7568
|
+
/**
|
|
7569
|
+
*
|
|
7570
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
7571
|
+
* @param {*} [options] Override http request option.
|
|
7572
|
+
* @throws {RequiredError}
|
|
7573
|
+
* @memberof ActionsApiInterface
|
|
7574
|
+
*/
|
|
7575
|
+
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
7576
|
+
[key: string]: string;
|
|
7577
|
+
}>;
|
|
6931
7578
|
/**
|
|
6932
7579
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6933
7580
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -7137,6 +7784,25 @@ export interface ActionsApiCancelWorkflowRequest {
|
|
|
7137
7784
|
*/
|
|
7138
7785
|
readonly runId: string;
|
|
7139
7786
|
}
|
|
7787
|
+
/**
|
|
7788
|
+
* Request parameters for cancelWorkflow1 operation in ActionsApi.
|
|
7789
|
+
* @export
|
|
7790
|
+
* @interface ActionsApiCancelWorkflow1Request
|
|
7791
|
+
*/
|
|
7792
|
+
export interface ActionsApiCancelWorkflow1Request {
|
|
7793
|
+
/**
|
|
7794
|
+
* Workspace identifier
|
|
7795
|
+
* @type {string}
|
|
7796
|
+
* @memberof ActionsApiCancelWorkflow1
|
|
7797
|
+
*/
|
|
7798
|
+
readonly workspaceId: string;
|
|
7799
|
+
/**
|
|
7800
|
+
*
|
|
7801
|
+
* @type {string}
|
|
7802
|
+
* @memberof ActionsApiCancelWorkflow1
|
|
7803
|
+
*/
|
|
7804
|
+
readonly runId: string;
|
|
7805
|
+
}
|
|
7140
7806
|
/**
|
|
7141
7807
|
* Request parameters for changeAnalysis operation in ActionsApi.
|
|
7142
7808
|
* @export
|
|
@@ -7493,6 +8159,25 @@ export interface ActionsApiGenerateDashboardSummaryRequest {
|
|
|
7493
8159
|
*/
|
|
7494
8160
|
readonly workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto;
|
|
7495
8161
|
}
|
|
8162
|
+
/**
|
|
8163
|
+
* Request parameters for generateDashboardSummary1 operation in ActionsApi.
|
|
8164
|
+
* @export
|
|
8165
|
+
* @interface ActionsApiGenerateDashboardSummary1Request
|
|
8166
|
+
*/
|
|
8167
|
+
export interface ActionsApiGenerateDashboardSummary1Request {
|
|
8168
|
+
/**
|
|
8169
|
+
* Workspace identifier
|
|
8170
|
+
* @type {string}
|
|
8171
|
+
* @memberof ActionsApiGenerateDashboardSummary1
|
|
8172
|
+
*/
|
|
8173
|
+
readonly workspaceId: string;
|
|
8174
|
+
/**
|
|
8175
|
+
*
|
|
8176
|
+
* @type {DashboardSummaryRequestDto}
|
|
8177
|
+
* @memberof ActionsApiGenerateDashboardSummary1
|
|
8178
|
+
*/
|
|
8179
|
+
readonly dashboardSummaryRequestDto: DashboardSummaryRequestDto;
|
|
8180
|
+
}
|
|
7496
8181
|
/**
|
|
7497
8182
|
* Request parameters for generateDescription operation in ActionsApi.
|
|
7498
8183
|
* @export
|
|
@@ -7512,6 +8197,25 @@ export interface ActionsApiGenerateDescriptionRequest {
|
|
|
7512
8197
|
*/
|
|
7513
8198
|
readonly generateDescriptionRequest: GenerateDescriptionRequest;
|
|
7514
8199
|
}
|
|
8200
|
+
/**
|
|
8201
|
+
* Request parameters for generateKnowledgeRecommendations operation in ActionsApi.
|
|
8202
|
+
* @export
|
|
8203
|
+
* @interface ActionsApiGenerateKnowledgeRecommendationsRequest
|
|
8204
|
+
*/
|
|
8205
|
+
export interface ActionsApiGenerateKnowledgeRecommendationsRequest {
|
|
8206
|
+
/**
|
|
8207
|
+
* Workspace identifier
|
|
8208
|
+
* @type {string}
|
|
8209
|
+
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
8210
|
+
*/
|
|
8211
|
+
readonly workspaceId: string;
|
|
8212
|
+
/**
|
|
8213
|
+
*
|
|
8214
|
+
* @type {KnowledgeRecommendationsRequestDto}
|
|
8215
|
+
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
8216
|
+
*/
|
|
8217
|
+
readonly knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto;
|
|
8218
|
+
}
|
|
7515
8219
|
/**
|
|
7516
8220
|
* Request parameters for generateTitle operation in ActionsApi.
|
|
7517
8221
|
* @export
|
|
@@ -7582,6 +8286,25 @@ export interface ActionsApiGetWorkflowStatusRequest {
|
|
|
7582
8286
|
*/
|
|
7583
8287
|
readonly runId: string;
|
|
7584
8288
|
}
|
|
8289
|
+
/**
|
|
8290
|
+
* Request parameters for getWorkflowStatus1 operation in ActionsApi.
|
|
8291
|
+
* @export
|
|
8292
|
+
* @interface ActionsApiGetWorkflowStatus1Request
|
|
8293
|
+
*/
|
|
8294
|
+
export interface ActionsApiGetWorkflowStatus1Request {
|
|
8295
|
+
/**
|
|
8296
|
+
* Workspace identifier
|
|
8297
|
+
* @type {string}
|
|
8298
|
+
* @memberof ActionsApiGetWorkflowStatus1
|
|
8299
|
+
*/
|
|
8300
|
+
readonly workspaceId: string;
|
|
8301
|
+
/**
|
|
8302
|
+
*
|
|
8303
|
+
* @type {string}
|
|
8304
|
+
* @memberof ActionsApiGetWorkflowStatus1
|
|
8305
|
+
*/
|
|
8306
|
+
readonly runId: string;
|
|
8307
|
+
}
|
|
7585
8308
|
/**
|
|
7586
8309
|
* Request parameters for keyDriverAnalysis operation in ActionsApi.
|
|
7587
8310
|
* @export
|
|
@@ -7917,6 +8640,31 @@ export interface ActionsApiTriggerQualityIssuesCalculationRequest {
|
|
|
7917
8640
|
*/
|
|
7918
8641
|
readonly workspaceId: string;
|
|
7919
8642
|
}
|
|
8643
|
+
/**
|
|
8644
|
+
* Request parameters for userFeedback operation in ActionsApi.
|
|
8645
|
+
* @export
|
|
8646
|
+
* @interface ActionsApiUserFeedbackRequest
|
|
8647
|
+
*/
|
|
8648
|
+
export interface ActionsApiUserFeedbackRequest {
|
|
8649
|
+
/**
|
|
8650
|
+
* Workspace identifier
|
|
8651
|
+
* @type {string}
|
|
8652
|
+
* @memberof ActionsApiUserFeedback
|
|
8653
|
+
*/
|
|
8654
|
+
readonly workspaceId: string;
|
|
8655
|
+
/**
|
|
8656
|
+
*
|
|
8657
|
+
* @type {string}
|
|
8658
|
+
* @memberof ActionsApiUserFeedback
|
|
8659
|
+
*/
|
|
8660
|
+
readonly runId: string;
|
|
8661
|
+
/**
|
|
8662
|
+
*
|
|
8663
|
+
* @type {FeedbackRequestDto}
|
|
8664
|
+
* @memberof ActionsApiUserFeedback
|
|
8665
|
+
*/
|
|
8666
|
+
readonly feedbackRequestDto: FeedbackRequestDto;
|
|
8667
|
+
}
|
|
7920
8668
|
/**
|
|
7921
8669
|
* Request parameters for validateLLMEndpointById operation in ActionsApi.
|
|
7922
8670
|
* @export
|
|
@@ -8021,6 +8769,16 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8021
8769
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
8022
8770
|
[key: string]: string;
|
|
8023
8771
|
}>;
|
|
8772
|
+
/**
|
|
8773
|
+
*
|
|
8774
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
8775
|
+
* @param {*} [options] Override http request option.
|
|
8776
|
+
* @throws {RequiredError}
|
|
8777
|
+
* @memberof ActionsApi
|
|
8778
|
+
*/
|
|
8779
|
+
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
8780
|
+
[key: string]: string;
|
|
8781
|
+
}>;
|
|
8024
8782
|
/**
|
|
8025
8783
|
* Computes change analysis for the provided execution definition.
|
|
8026
8784
|
* @summary Compute change analysis
|
|
@@ -8146,6 +8904,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8146
8904
|
* @memberof ActionsApi
|
|
8147
8905
|
*/
|
|
8148
8906
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
8907
|
+
/**
|
|
8908
|
+
*
|
|
8909
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
8910
|
+
* @param {*} [options] Override http request option.
|
|
8911
|
+
* @throws {RequiredError}
|
|
8912
|
+
* @memberof ActionsApi
|
|
8913
|
+
*/
|
|
8914
|
+
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
8149
8915
|
/**
|
|
8150
8916
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
8151
8917
|
* @summary Generate Description for Analytics Object
|
|
@@ -8155,6 +8921,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8155
8921
|
* @memberof ActionsApi
|
|
8156
8922
|
*/
|
|
8157
8923
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
8924
|
+
/**
|
|
8925
|
+
*
|
|
8926
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
8927
|
+
* @param {*} [options] Override http request option.
|
|
8928
|
+
* @throws {RequiredError}
|
|
8929
|
+
* @memberof ActionsApi
|
|
8930
|
+
*/
|
|
8931
|
+
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
8158
8932
|
/**
|
|
8159
8933
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
8160
8934
|
* @summary Generate Title for Analytics Object
|
|
@@ -8190,6 +8964,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8190
8964
|
* @memberof ActionsApi
|
|
8191
8965
|
*/
|
|
8192
8966
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
8967
|
+
/**
|
|
8968
|
+
*
|
|
8969
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
8970
|
+
* @param {*} [options] Override http request option.
|
|
8971
|
+
* @throws {RequiredError}
|
|
8972
|
+
* @memberof ActionsApi
|
|
8973
|
+
*/
|
|
8974
|
+
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
8193
8975
|
/**
|
|
8194
8976
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
8195
8977
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -8344,6 +9126,16 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
8344
9126
|
* @memberof ActionsApi
|
|
8345
9127
|
*/
|
|
8346
9128
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
|
|
9129
|
+
/**
|
|
9130
|
+
*
|
|
9131
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
9132
|
+
* @param {*} [options] Override http request option.
|
|
9133
|
+
* @throws {RequiredError}
|
|
9134
|
+
* @memberof ActionsApi
|
|
9135
|
+
*/
|
|
9136
|
+
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
9137
|
+
[key: string]: string;
|
|
9138
|
+
}>;
|
|
8347
9139
|
/**
|
|
8348
9140
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
8349
9141
|
* @summary Validate LLM Endpoint (Removed)
|