@gooddata/api-client-tiger 11.29.0-alpha.5 → 11.29.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +4075 -463
- package/esm/generated/afm-rest-api/api.d.ts +1608 -165
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +1421 -137
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/ai-json-api/api.d.ts +227 -2
- package/esm/generated/ai-json-api/api.d.ts.map +1 -1
- package/esm/generated/ai-json-api/api.js +92 -0
- package/esm/generated/ai-json-api/api.js.map +1 -1
- package/esm/generated/ai-json-api/index.js +1 -1
- package/esm/generated/ai-json-api/index.js.map +1 -1
- package/esm/generated/automation-json-api/api.d.ts +2 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +1 -1
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +3521 -425
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +7181 -4198
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/result-json-api/base.js.map +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -192,6 +192,32 @@ export type AfmValidObjectsQueryTypesEnum = 'facts' | 'attributes' | 'measures';
|
|
|
192
192
|
export interface AfmValidObjectsResponse {
|
|
193
193
|
'items': Array<RestApiIdentifier>;
|
|
194
194
|
}
|
|
195
|
+
/**
|
|
196
|
+
* Aggregate key model — pre-aggregates rows sharing the same key columns.
|
|
197
|
+
*/
|
|
198
|
+
export interface AggregateKeyConfig {
|
|
199
|
+
/**
|
|
200
|
+
* Key columns. Defaults to first inferred column.
|
|
201
|
+
*/
|
|
202
|
+
'columns'?: Array<string>;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* AI usage metadata returned after the interaction (e.g. current query count vs. entitlement limit).
|
|
206
|
+
*/
|
|
207
|
+
export interface AiUsageMetadataItem {
|
|
208
|
+
/**
|
|
209
|
+
* Type of usage counter, e.g. AI_QUERIES.
|
|
210
|
+
*/
|
|
211
|
+
'counterType': string;
|
|
212
|
+
/**
|
|
213
|
+
* Current usage value after this request.
|
|
214
|
+
*/
|
|
215
|
+
'currentValue': number;
|
|
216
|
+
/**
|
|
217
|
+
* Entitlement limit. 0 means unlimited.
|
|
218
|
+
*/
|
|
219
|
+
'limit': number;
|
|
220
|
+
}
|
|
195
221
|
/**
|
|
196
222
|
* An all-time date filter that does not restrict by date range. Controls how rows with empty (null/missing) date values are handled.
|
|
197
223
|
*/
|
|
@@ -715,6 +741,10 @@ export interface ChatResult {
|
|
|
715
741
|
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
716
742
|
*/
|
|
717
743
|
'toolCallEvents'?: Array<ToolCallEventResult>;
|
|
744
|
+
/**
|
|
745
|
+
* AI usage metadata returned after the interaction (e.g. current query count vs. entitlement limit).
|
|
746
|
+
*/
|
|
747
|
+
'usage'?: Array<AiUsageMetadataItem>;
|
|
718
748
|
}
|
|
719
749
|
export interface ChatUsageResponse {
|
|
720
750
|
/**
|
|
@@ -761,6 +791,28 @@ export interface ClusteringResult {
|
|
|
761
791
|
'xcoord': Array<number>;
|
|
762
792
|
'ycoord': Array<number>;
|
|
763
793
|
}
|
|
794
|
+
/**
|
|
795
|
+
* A single column definition inferred from the parquet schema
|
|
796
|
+
*/
|
|
797
|
+
export interface ColumnInfo {
|
|
798
|
+
/**
|
|
799
|
+
* Column name
|
|
800
|
+
*/
|
|
801
|
+
'name': string;
|
|
802
|
+
/**
|
|
803
|
+
* SQL column type (e.g. VARCHAR(200), BIGINT, DOUBLE)
|
|
804
|
+
*/
|
|
805
|
+
'type': string;
|
|
806
|
+
}
|
|
807
|
+
/**
|
|
808
|
+
* Partition by column expression.
|
|
809
|
+
*/
|
|
810
|
+
export interface ColumnPartitionConfig {
|
|
811
|
+
/**
|
|
812
|
+
* Columns to partition by.
|
|
813
|
+
*/
|
|
814
|
+
'columns': Array<string>;
|
|
815
|
+
}
|
|
764
816
|
/**
|
|
765
817
|
* Condition that compares the metric value to a given constant value using a comparison operator.
|
|
766
818
|
*/
|
|
@@ -817,6 +869,46 @@ export interface CompoundMeasureValueFilterCompoundMeasureValueFilter {
|
|
|
817
869
|
'applyOnResult'?: boolean;
|
|
818
870
|
'measure': AfmIdentifier;
|
|
819
871
|
}
|
|
872
|
+
/**
|
|
873
|
+
* Request to create a new pipe-backed OLAP table in the AI Lake
|
|
874
|
+
*/
|
|
875
|
+
export interface CreatePipeTableRequest {
|
|
876
|
+
/**
|
|
877
|
+
* Name of the OLAP table to create. Must match ^[a-z][a-z0-9_]{0,62}$
|
|
878
|
+
*/
|
|
879
|
+
'tableName': string;
|
|
880
|
+
/**
|
|
881
|
+
* Name of the pre-configured S3/MinIO ObjectStorage source
|
|
882
|
+
*/
|
|
883
|
+
'sourceStorageName': string;
|
|
884
|
+
/**
|
|
885
|
+
* Path prefix to the parquet files (e.g. \'my-dataset/year=2024/\'). All parquet files must be at a uniform depth under the prefix — either all directly under the prefix, or all under a consistent Hive partition hierarchy (e.g. year=2024/month=01/). Mixed layouts (files at multiple depths) are not supported.
|
|
886
|
+
*/
|
|
887
|
+
'pathPrefix': string;
|
|
888
|
+
'keyConfig'?: KeyConfig;
|
|
889
|
+
'distributionConfig'?: DistributionConfig;
|
|
890
|
+
'partitionConfig'?: PartitionConfig;
|
|
891
|
+
/**
|
|
892
|
+
* CREATE TABLE PROPERTIES key-value pairs. Defaults to {\"replication_num\": \"1\"}.
|
|
893
|
+
*/
|
|
894
|
+
'tableProperties'?: {
|
|
895
|
+
[key: string]: string;
|
|
896
|
+
};
|
|
897
|
+
/**
|
|
898
|
+
* Cap VARCHAR(N) to this length when N exceeds it. 0 = no cap.
|
|
899
|
+
*/
|
|
900
|
+
'maxVarcharLength'?: number;
|
|
901
|
+
/**
|
|
902
|
+
* Override inferred column types. Maps column names to SQL type strings (e.g. {\"year\": \"INT\", \"event_date\": \"DATE\"}). Applied after parquet schema inference.
|
|
903
|
+
*/
|
|
904
|
+
'columnOverrides'?: {
|
|
905
|
+
[key: string]: string;
|
|
906
|
+
};
|
|
907
|
+
/**
|
|
908
|
+
* How often (in seconds) the pipe polls for new files. 0 or null = use server default.
|
|
909
|
+
*/
|
|
910
|
+
'pollingIntervalSeconds'?: number;
|
|
911
|
+
}
|
|
820
912
|
/**
|
|
821
913
|
* List of created visualization objects
|
|
822
914
|
*/
|
|
@@ -946,6 +1038,20 @@ export interface DateRelativeFilter {
|
|
|
946
1038
|
'to': number;
|
|
947
1039
|
}
|
|
948
1040
|
export type DateRelativeFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
|
|
1041
|
+
/**
|
|
1042
|
+
* Partition by date_trunc() expression.
|
|
1043
|
+
*/
|
|
1044
|
+
export interface DateTruncPartitionConfig {
|
|
1045
|
+
/**
|
|
1046
|
+
* Column to partition on.
|
|
1047
|
+
*/
|
|
1048
|
+
'column': string;
|
|
1049
|
+
/**
|
|
1050
|
+
* Date/time unit for partition granularity
|
|
1051
|
+
*/
|
|
1052
|
+
'unit': DateTruncPartitionConfigUnitEnum;
|
|
1053
|
+
}
|
|
1054
|
+
export type DateTruncPartitionConfigUnitEnum = 'year' | 'quarter' | 'month' | 'week' | 'day' | 'hour' | 'minute' | 'second' | 'millisecond' | 'microsecond';
|
|
949
1055
|
/**
|
|
950
1056
|
* Filter definition type specified by label and values.
|
|
951
1057
|
*/
|
|
@@ -969,6 +1075,12 @@ export interface DependsOn {
|
|
|
969
1075
|
export interface DependsOnDateFilter {
|
|
970
1076
|
'dateFilter': DateFilter;
|
|
971
1077
|
}
|
|
1078
|
+
/**
|
|
1079
|
+
* Filter definition for string matching.
|
|
1080
|
+
*/
|
|
1081
|
+
export interface DependsOnMatchFilter {
|
|
1082
|
+
'matchFilter': MatchAttributeFilter;
|
|
1083
|
+
}
|
|
972
1084
|
/**
|
|
973
1085
|
* List of attributes representing the dimensionality of the new visualization
|
|
974
1086
|
*/
|
|
@@ -1013,6 +1125,21 @@ export interface DimensionHeader {
|
|
|
1013
1125
|
*/
|
|
1014
1126
|
'headerGroups': Array<HeaderGroup>;
|
|
1015
1127
|
}
|
|
1128
|
+
/**
|
|
1129
|
+
* Distribution configuration for the OLAP table.
|
|
1130
|
+
*/
|
|
1131
|
+
export interface DistributionConfig {
|
|
1132
|
+
'type': string;
|
|
1133
|
+
}
|
|
1134
|
+
/**
|
|
1135
|
+
* Duplicate key model — allows duplicate rows for the given key columns.
|
|
1136
|
+
*/
|
|
1137
|
+
export interface DuplicateKeyConfig {
|
|
1138
|
+
/**
|
|
1139
|
+
* Key columns. Defaults to first inferred column.
|
|
1140
|
+
*/
|
|
1141
|
+
'columns'?: Array<string>;
|
|
1142
|
+
}
|
|
1016
1143
|
/**
|
|
1017
1144
|
* List of returned elements.
|
|
1018
1145
|
*/
|
|
@@ -1074,7 +1201,7 @@ export type ElementsRequestSortOrderEnum = 'ASC' | 'DESC';
|
|
|
1074
1201
|
/**
|
|
1075
1202
|
* @type ElementsRequestDependsOnInner
|
|
1076
1203
|
*/
|
|
1077
|
-
export type ElementsRequestDependsOnInner = DependsOn | DependsOnDateFilter;
|
|
1204
|
+
export type ElementsRequestDependsOnInner = DependsOn | DependsOnDateFilter | DependsOnMatchFilter;
|
|
1078
1205
|
/**
|
|
1079
1206
|
* Entity holding list of sorted & filtered label elements, related primary label of attribute owning requested label and paging.
|
|
1080
1207
|
*/
|
|
@@ -1377,6 +1504,19 @@ export interface GetServiceStatusResponse {
|
|
|
1377
1504
|
*/
|
|
1378
1505
|
'status': object | null;
|
|
1379
1506
|
}
|
|
1507
|
+
/**
|
|
1508
|
+
* Hash-based distribution across buckets.
|
|
1509
|
+
*/
|
|
1510
|
+
export interface HashDistributionConfig {
|
|
1511
|
+
/**
|
|
1512
|
+
* Columns to distribute by. Defaults to first column.
|
|
1513
|
+
*/
|
|
1514
|
+
'columns'?: Array<string>;
|
|
1515
|
+
/**
|
|
1516
|
+
* Number of hash buckets. Defaults to 1.
|
|
1517
|
+
*/
|
|
1518
|
+
'buckets'?: number;
|
|
1519
|
+
}
|
|
1380
1520
|
/**
|
|
1381
1521
|
* Contains the information specific for a group of headers. These groups correlate to attributes and metric groups.
|
|
1382
1522
|
*/
|
|
@@ -1424,6 +1564,10 @@ export interface InsightWidgetDescriptor {
|
|
|
1424
1564
|
* Widget title as displayed on the dashboard.
|
|
1425
1565
|
*/
|
|
1426
1566
|
'title': string;
|
|
1567
|
+
/**
|
|
1568
|
+
* Filters currently applied to the dashboard.
|
|
1569
|
+
*/
|
|
1570
|
+
'filters'?: Array<FilterDefinition>;
|
|
1427
1571
|
/**
|
|
1428
1572
|
* Signed result ID for this widget\'s cached execution result.
|
|
1429
1573
|
*/
|
|
@@ -1433,6 +1577,12 @@ export interface InsightWidgetDescriptor {
|
|
|
1433
1577
|
*/
|
|
1434
1578
|
'visualizationId': string;
|
|
1435
1579
|
}
|
|
1580
|
+
/**
|
|
1581
|
+
* Key configuration for the table data model.
|
|
1582
|
+
*/
|
|
1583
|
+
export interface KeyConfig {
|
|
1584
|
+
'type': string;
|
|
1585
|
+
}
|
|
1436
1586
|
export interface KeyDriversDimension {
|
|
1437
1587
|
'label': RestApiIdentifier;
|
|
1438
1588
|
'labelName': string;
|
|
@@ -1493,6 +1643,15 @@ export interface ListLlmProviderModelsResponse {
|
|
|
1493
1643
|
*/
|
|
1494
1644
|
'models': Array<LlmModel>;
|
|
1495
1645
|
}
|
|
1646
|
+
/**
|
|
1647
|
+
* List of pipe tables for a database instance
|
|
1648
|
+
*/
|
|
1649
|
+
export interface ListPipeTablesResponse {
|
|
1650
|
+
/**
|
|
1651
|
+
* Pipe tables in the requested database
|
|
1652
|
+
*/
|
|
1653
|
+
'pipeTables': Array<PipeTableSummary>;
|
|
1654
|
+
}
|
|
1496
1655
|
/**
|
|
1497
1656
|
* Paged response for listing AI Lake services
|
|
1498
1657
|
*/
|
|
@@ -1806,12 +1965,12 @@ export interface Operation {
|
|
|
1806
1965
|
*/
|
|
1807
1966
|
'id': string;
|
|
1808
1967
|
/**
|
|
1809
|
-
* 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.
|
|
1968
|
+
* 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.
|
|
1810
1969
|
*/
|
|
1811
1970
|
'kind': OperationKindEnum;
|
|
1812
1971
|
'status': string;
|
|
1813
1972
|
}
|
|
1814
|
-
export type OperationKindEnum = 'provision-database' | 'deprovision-database' | 'run-service-command';
|
|
1973
|
+
export type OperationKindEnum = 'provision-database' | 'deprovision-database' | 'run-service-command' | 'create-pipe-table' | 'delete-pipe-table';
|
|
1815
1974
|
/**
|
|
1816
1975
|
* Error information for a failed operation
|
|
1817
1976
|
*/
|
|
@@ -1894,11 +2053,96 @@ export interface Paging {
|
|
|
1894
2053
|
*/
|
|
1895
2054
|
'next'?: string;
|
|
1896
2055
|
}
|
|
2056
|
+
/**
|
|
2057
|
+
* Partition configuration for the table.
|
|
2058
|
+
*/
|
|
2059
|
+
export interface PartitionConfig {
|
|
2060
|
+
'type': string;
|
|
2061
|
+
}
|
|
1897
2062
|
/**
|
|
1898
2063
|
* Operation that is still pending
|
|
1899
2064
|
*/
|
|
1900
2065
|
export interface PendingOperation extends Operation {
|
|
1901
2066
|
}
|
|
2067
|
+
/**
|
|
2068
|
+
* Full details of a pipe-backed OLAP table
|
|
2069
|
+
*/
|
|
2070
|
+
export interface PipeTable {
|
|
2071
|
+
/**
|
|
2072
|
+
* Internal UUID of the pipe table record
|
|
2073
|
+
*/
|
|
2074
|
+
'pipeTableId': string;
|
|
2075
|
+
/**
|
|
2076
|
+
* OLAP table name
|
|
2077
|
+
*/
|
|
2078
|
+
'tableName': string;
|
|
2079
|
+
/**
|
|
2080
|
+
* Database name
|
|
2081
|
+
*/
|
|
2082
|
+
'databaseName': string;
|
|
2083
|
+
/**
|
|
2084
|
+
* Source ObjectStorage name
|
|
2085
|
+
*/
|
|
2086
|
+
'sourceStorageName': string;
|
|
2087
|
+
/**
|
|
2088
|
+
* Path prefix to the parquet files
|
|
2089
|
+
*/
|
|
2090
|
+
'pathPrefix': string;
|
|
2091
|
+
/**
|
|
2092
|
+
* Hive partition columns detected from the path structure
|
|
2093
|
+
*/
|
|
2094
|
+
'partitionColumns': Array<string>;
|
|
2095
|
+
/**
|
|
2096
|
+
* Inferred column schema
|
|
2097
|
+
*/
|
|
2098
|
+
'columns': Array<ColumnInfo>;
|
|
2099
|
+
'keyConfig': PipeTableKeyConfig;
|
|
2100
|
+
'distributionConfig': PipeTableDistributionConfig;
|
|
2101
|
+
'partitionConfig'?: PipeTablePartitionConfig;
|
|
2102
|
+
/**
|
|
2103
|
+
* CREATE TABLE PROPERTIES key-value pairs
|
|
2104
|
+
*/
|
|
2105
|
+
'tableProperties': {
|
|
2106
|
+
[key: string]: string;
|
|
2107
|
+
};
|
|
2108
|
+
/**
|
|
2109
|
+
* How often (in seconds) the pipe polls for new files. 0 = server default.
|
|
2110
|
+
*/
|
|
2111
|
+
'pollingIntervalSeconds': number;
|
|
2112
|
+
}
|
|
2113
|
+
/**
|
|
2114
|
+
* @type PipeTableDistributionConfig
|
|
2115
|
+
*/
|
|
2116
|
+
export type PipeTableDistributionConfig = HashDistributionConfig | RandomDistributionConfig;
|
|
2117
|
+
/**
|
|
2118
|
+
* @type PipeTableKeyConfig
|
|
2119
|
+
*/
|
|
2120
|
+
export type PipeTableKeyConfig = AggregateKeyConfig | DuplicateKeyConfig | PrimaryKeyConfig | UniqueKeyConfig;
|
|
2121
|
+
/**
|
|
2122
|
+
* @type PipeTablePartitionConfig
|
|
2123
|
+
*/
|
|
2124
|
+
export type PipeTablePartitionConfig = ColumnPartitionConfig | DateTruncPartitionConfig | TimeSlicePartitionConfig;
|
|
2125
|
+
/**
|
|
2126
|
+
* Lightweight pipe table entry used in list responses
|
|
2127
|
+
*/
|
|
2128
|
+
export interface PipeTableSummary {
|
|
2129
|
+
/**
|
|
2130
|
+
* Internal UUID of the pipe table record
|
|
2131
|
+
*/
|
|
2132
|
+
'pipeTableId': string;
|
|
2133
|
+
/**
|
|
2134
|
+
* OLAP table name
|
|
2135
|
+
*/
|
|
2136
|
+
'tableName': string;
|
|
2137
|
+
/**
|
|
2138
|
+
* Path prefix to the parquet files
|
|
2139
|
+
*/
|
|
2140
|
+
'pathPrefix': string;
|
|
2141
|
+
/**
|
|
2142
|
+
* Inferred column schema
|
|
2143
|
+
*/
|
|
2144
|
+
'columns': Array<ColumnInfo>;
|
|
2145
|
+
}
|
|
1902
2146
|
/**
|
|
1903
2147
|
* Combination of the date data set to use and how many periods ago to calculate the previous period for.
|
|
1904
2148
|
*/
|
|
@@ -1965,6 +2209,15 @@ export interface PositiveAttributeFilterPositiveAttributeFilter {
|
|
|
1965
2209
|
'usesArbitraryValues'?: boolean;
|
|
1966
2210
|
'label': AfmIdentifier;
|
|
1967
2211
|
}
|
|
2212
|
+
/**
|
|
2213
|
+
* Primary key model — enforces uniqueness, replaces on conflict.
|
|
2214
|
+
*/
|
|
2215
|
+
export interface PrimaryKeyConfig {
|
|
2216
|
+
/**
|
|
2217
|
+
* Key columns. Defaults to first inferred column.
|
|
2218
|
+
*/
|
|
2219
|
+
'columns'?: Array<string>;
|
|
2220
|
+
}
|
|
1968
2221
|
/**
|
|
1969
2222
|
* Request to provision a new AILake Database instance
|
|
1970
2223
|
*/
|
|
@@ -2042,6 +2295,15 @@ export interface QualityIssuesCalculationStatusResponse {
|
|
|
2042
2295
|
'error'?: string;
|
|
2043
2296
|
}
|
|
2044
2297
|
export type QualityIssuesCalculationStatusResponseStatusEnum = 'RUNNING' | 'SYNCING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'NOT_FOUND' | 'DISABLED';
|
|
2298
|
+
/**
|
|
2299
|
+
* Random distribution across buckets.
|
|
2300
|
+
*/
|
|
2301
|
+
export interface RandomDistributionConfig {
|
|
2302
|
+
/**
|
|
2303
|
+
* Number of random distribution buckets. Defaults to 1.
|
|
2304
|
+
*/
|
|
2305
|
+
'buckets'?: number;
|
|
2306
|
+
}
|
|
2045
2307
|
/**
|
|
2046
2308
|
* Condition that checks if the metric value is within a given range.
|
|
2047
2309
|
*/
|
|
@@ -2248,6 +2510,10 @@ export interface RichTextWidgetDescriptor {
|
|
|
2248
2510
|
* Widget title as displayed on the dashboard.
|
|
2249
2511
|
*/
|
|
2250
2512
|
'title': string;
|
|
2513
|
+
/**
|
|
2514
|
+
* Filters currently applied to the dashboard.
|
|
2515
|
+
*/
|
|
2516
|
+
'filters'?: Array<FilterDefinition>;
|
|
2251
2517
|
}
|
|
2252
2518
|
/**
|
|
2253
2519
|
* Question -> Use Case routing. May contain final answer is a special use case is not required.
|
|
@@ -2594,6 +2860,24 @@ export interface Thought {
|
|
|
2594
2860
|
*/
|
|
2595
2861
|
'text': string;
|
|
2596
2862
|
}
|
|
2863
|
+
/**
|
|
2864
|
+
* Partition by time_slice() expression.
|
|
2865
|
+
*/
|
|
2866
|
+
export interface TimeSlicePartitionConfig {
|
|
2867
|
+
/**
|
|
2868
|
+
* Column to partition on.
|
|
2869
|
+
*/
|
|
2870
|
+
'column': string;
|
|
2871
|
+
/**
|
|
2872
|
+
* Date/time unit for partition granularity
|
|
2873
|
+
*/
|
|
2874
|
+
'unit': TimeSlicePartitionConfigUnitEnum;
|
|
2875
|
+
/**
|
|
2876
|
+
* How many units per slice.
|
|
2877
|
+
*/
|
|
2878
|
+
'slices': number;
|
|
2879
|
+
}
|
|
2880
|
+
export type TimeSlicePartitionConfigUnitEnum = 'year' | 'quarter' | 'month' | 'week' | 'day' | 'hour' | 'minute' | 'second' | 'millisecond' | 'microsecond';
|
|
2597
2881
|
/**
|
|
2598
2882
|
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
2599
2883
|
*/
|
|
@@ -2746,6 +3030,15 @@ export type TriggerQualityIssuesCalculationResponseStatusEnum = 'RUNNING' | 'COM
|
|
|
2746
3030
|
export interface UIContext {
|
|
2747
3031
|
'dashboard'?: DashboardContext;
|
|
2748
3032
|
}
|
|
3033
|
+
/**
|
|
3034
|
+
* Unique key model — enforces uniqueness, replaces on conflict.
|
|
3035
|
+
*/
|
|
3036
|
+
export interface UniqueKeyConfig {
|
|
3037
|
+
/**
|
|
3038
|
+
* Key columns. Defaults to first inferred column.
|
|
3039
|
+
*/
|
|
3040
|
+
'columns'?: Array<string>;
|
|
3041
|
+
}
|
|
2749
3042
|
/**
|
|
2750
3043
|
* User context with ambient UI state (view) and explicitly referenced objects.
|
|
2751
3044
|
*/
|
|
@@ -2830,6 +3123,13 @@ export interface VisualizationConfig {
|
|
|
2830
3123
|
'clustering'?: ClusteringConfig;
|
|
2831
3124
|
'whatIf'?: WhatIfScenarioConfig;
|
|
2832
3125
|
}
|
|
3126
|
+
export interface VisualizationObjectExecution {
|
|
3127
|
+
/**
|
|
3128
|
+
* Additional AFM filters merged on top of the visualization object\'s own filters.
|
|
3129
|
+
*/
|
|
3130
|
+
'filters'?: Array<FilterDefinition>;
|
|
3131
|
+
'settings'?: ExecutionSettings;
|
|
3132
|
+
}
|
|
2833
3133
|
/**
|
|
2834
3134
|
* Visualization switcher widget allowing users to toggle between multiple visualizations.
|
|
2835
3135
|
*/
|
|
@@ -2842,6 +3142,10 @@ export interface VisualizationSwitcherWidgetDescriptor {
|
|
|
2842
3142
|
* Widget title as displayed on the dashboard.
|
|
2843
3143
|
*/
|
|
2844
3144
|
'title': string;
|
|
3145
|
+
/**
|
|
3146
|
+
* Filters currently applied to the dashboard.
|
|
3147
|
+
*/
|
|
3148
|
+
'filters'?: Array<FilterDefinition>;
|
|
2845
3149
|
/**
|
|
2846
3150
|
* Signed result ID for the currently active visualization\'s execution result.
|
|
2847
3151
|
*/
|
|
@@ -2902,6 +3206,7 @@ export interface WhatIfScenarioItem {
|
|
|
2902
3206
|
* Descriptor for a widget on the dashboard.
|
|
2903
3207
|
*/
|
|
2904
3208
|
export interface WidgetDescriptor {
|
|
3209
|
+
'filters'?: Array<OutlierDetectionRequestFiltersInner>;
|
|
2905
3210
|
'title': string;
|
|
2906
3211
|
'widgetId': string;
|
|
2907
3212
|
'widgetType': string;
|
|
@@ -2927,6 +3232,28 @@ export interface WorkflowStatusResponseDto {
|
|
|
2927
3232
|
'error'?: string;
|
|
2928
3233
|
'currentPhase'?: string;
|
|
2929
3234
|
}
|
|
3235
|
+
/**
|
|
3236
|
+
* (BETA) Creates a pipe-backed OLAP table in the given AI Lake database instance. Infers schema from parquet files. Returns an operation-id header the client can use to poll for progress.
|
|
3237
|
+
* @summary (BETA) Create a new AI Lake pipe table
|
|
3238
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3239
|
+
* @param {CreatePipeTableRequest} createPipeTableRequest
|
|
3240
|
+
* @param {string} [operationId]
|
|
3241
|
+
* @param {*} [options] Override http request option.
|
|
3242
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3243
|
+
* @throws {RequiredError}
|
|
3244
|
+
*/
|
|
3245
|
+
export declare function AILakeApiAxiosParamCreator_CreateAiLakePipeTable(instanceId: string, createPipeTableRequest: CreatePipeTableRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3246
|
+
/**
|
|
3247
|
+
* (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
|
|
3248
|
+
* @summary (BETA) Delete an AI Lake pipe table
|
|
3249
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3250
|
+
* @param {string} tableName Pipe table name.
|
|
3251
|
+
* @param {string} [operationId]
|
|
3252
|
+
* @param {*} [options] Override http request option.
|
|
3253
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3254
|
+
* @throws {RequiredError}
|
|
3255
|
+
*/
|
|
3256
|
+
export declare function AILakeApiAxiosParamCreator_DeleteAiLakePipeTable(instanceId: string, tableName: string, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2930
3257
|
/**
|
|
2931
3258
|
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
2932
3259
|
* @summary (BETA) Delete an existing AILake Database instance
|
|
@@ -2955,6 +3282,16 @@ export declare function AILakeApiAxiosParamCreator_GetAiLakeDatabaseInstance(ins
|
|
|
2955
3282
|
* @throws {RequiredError}
|
|
2956
3283
|
*/
|
|
2957
3284
|
export declare function AILakeApiAxiosParamCreator_GetAiLakeOperation(operationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3285
|
+
/**
|
|
3286
|
+
* (BETA) Returns full details of the specified pipe table.
|
|
3287
|
+
* @summary (BETA) Get an AI Lake pipe table
|
|
3288
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3289
|
+
* @param {string} tableName Pipe table name.
|
|
3290
|
+
* @param {*} [options] Override http request option.
|
|
3291
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3292
|
+
* @throws {RequiredError}
|
|
3293
|
+
*/
|
|
3294
|
+
export declare function AILakeApiAxiosParamCreator_GetAiLakePipeTable(instanceId: string, tableName: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2958
3295
|
/**
|
|
2959
3296
|
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
2960
3297
|
* @summary (BETA) Get AI Lake service status
|
|
@@ -2975,6 +3312,15 @@ export declare function AILakeApiAxiosParamCreator_GetAiLakeServiceStatus(servic
|
|
|
2975
3312
|
* @throws {RequiredError}
|
|
2976
3313
|
*/
|
|
2977
3314
|
export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(size?: number, offset?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3315
|
+
/**
|
|
3316
|
+
* (BETA) Lists all active pipe tables in the given AI Lake database instance.
|
|
3317
|
+
* @summary (BETA) List AI Lake pipe tables
|
|
3318
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3319
|
+
* @param {*} [options] Override http request option.
|
|
3320
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3321
|
+
* @throws {RequiredError}
|
|
3322
|
+
*/
|
|
3323
|
+
export declare function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
2978
3324
|
/**
|
|
2979
3325
|
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
2980
3326
|
* @summary (BETA) List AI Lake services
|
|
@@ -3008,6 +3354,28 @@ export declare function AILakeApiAxiosParamCreator_ProvisionAiLakeDatabaseInstan
|
|
|
3008
3354
|
* @throws {RequiredError}
|
|
3009
3355
|
*/
|
|
3010
3356
|
export declare function AILakeApiAxiosParamCreator_RunAiLakeServiceCommand(serviceId: string, commandName: string, runServiceCommandRequest: RunServiceCommandRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3357
|
+
/**
|
|
3358
|
+
* (BETA) Creates a pipe-backed OLAP table in the given AI Lake database instance. Infers schema from parquet files. Returns an operation-id header the client can use to poll for progress.
|
|
3359
|
+
* @summary (BETA) Create a new AI Lake pipe table
|
|
3360
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
3361
|
+
* @param {string} basePath Base path.
|
|
3362
|
+
* @param {AILakeApiCreateAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3363
|
+
* @param {*} [options] Override http request option.
|
|
3364
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3365
|
+
* @throws {RequiredError}
|
|
3366
|
+
*/
|
|
3367
|
+
export declare function AILakeApi_CreateAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
3368
|
+
/**
|
|
3369
|
+
* (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
|
|
3370
|
+
* @summary (BETA) Delete an AI Lake pipe table
|
|
3371
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
3372
|
+
* @param {string} basePath Base path.
|
|
3373
|
+
* @param {AILakeApiDeleteAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3374
|
+
* @param {*} [options] Override http request option.
|
|
3375
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3376
|
+
* @throws {RequiredError}
|
|
3377
|
+
*/
|
|
3378
|
+
export declare function AILakeApi_DeleteAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
3011
3379
|
/**
|
|
3012
3380
|
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
3013
3381
|
* @summary (BETA) Delete an existing AILake Database instance
|
|
@@ -3041,6 +3409,17 @@ export declare function AILakeApi_GetAiLakeDatabaseInstance(axios: AxiosInstance
|
|
|
3041
3409
|
* @throws {RequiredError}
|
|
3042
3410
|
*/
|
|
3043
3411
|
export declare function AILakeApi_GetAiLakeOperation(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GetAiLakeOperation200Response>;
|
|
3412
|
+
/**
|
|
3413
|
+
* (BETA) Returns full details of the specified pipe table.
|
|
3414
|
+
* @summary (BETA) Get an AI Lake pipe table
|
|
3415
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
3416
|
+
* @param {string} basePath Base path.
|
|
3417
|
+
* @param {AILakeApiGetAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3418
|
+
* @param {*} [options] Override http request option.
|
|
3419
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3420
|
+
* @throws {RequiredError}
|
|
3421
|
+
*/
|
|
3422
|
+
export declare function AILakeApi_GetAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<PipeTable>;
|
|
3044
3423
|
/**
|
|
3045
3424
|
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
3046
3425
|
* @summary (BETA) Get AI Lake service status
|
|
@@ -3063,6 +3442,17 @@ export declare function AILakeApi_GetAiLakeServiceStatus(axios: AxiosInstance, b
|
|
|
3063
3442
|
* @throws {RequiredError}
|
|
3064
3443
|
*/
|
|
3065
3444
|
export declare function AILakeApi_ListAiLakeDatabaseInstances(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
3445
|
+
/**
|
|
3446
|
+
* (BETA) Lists all active pipe tables in the given AI Lake database instance.
|
|
3447
|
+
* @summary (BETA) List AI Lake pipe tables
|
|
3448
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
3449
|
+
* @param {string} basePath Base path.
|
|
3450
|
+
* @param {AILakeApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
3451
|
+
* @param {*} [options] Override http request option.
|
|
3452
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3453
|
+
* @throws {RequiredError}
|
|
3454
|
+
*/
|
|
3455
|
+
export declare function AILakeApi_ListAiLakePipeTables(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListPipeTablesResponse>;
|
|
3066
3456
|
/**
|
|
3067
3457
|
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
3068
3458
|
* @summary (BETA) List AI Lake services
|
|
@@ -3102,6 +3492,24 @@ export declare function AILakeApi_RunAiLakeServiceCommand(axios: AxiosInstance,
|
|
|
3102
3492
|
* @interface AILakeApi
|
|
3103
3493
|
*/
|
|
3104
3494
|
export interface AILakeApiInterface {
|
|
3495
|
+
/**
|
|
3496
|
+
* (BETA) Creates a pipe-backed OLAP table in the given AI Lake database instance. Infers schema from parquet files. Returns an operation-id header the client can use to poll for progress.
|
|
3497
|
+
* @summary (BETA) Create a new AI Lake pipe table
|
|
3498
|
+
* @param {AILakeApiCreateAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3499
|
+
* @param {*} [options] Override http request option.
|
|
3500
|
+
* @throws {RequiredError}
|
|
3501
|
+
* @memberof AILakeApiInterface
|
|
3502
|
+
*/
|
|
3503
|
+
createAiLakePipeTable(requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3504
|
+
/**
|
|
3505
|
+
* (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
|
|
3506
|
+
* @summary (BETA) Delete an AI Lake pipe table
|
|
3507
|
+
* @param {AILakeApiDeleteAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3508
|
+
* @param {*} [options] Override http request option.
|
|
3509
|
+
* @throws {RequiredError}
|
|
3510
|
+
* @memberof AILakeApiInterface
|
|
3511
|
+
*/
|
|
3512
|
+
deleteAiLakePipeTable(requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3105
3513
|
/**
|
|
3106
3514
|
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
3107
3515
|
* @summary (BETA) Delete an existing AILake Database instance
|
|
@@ -3129,6 +3537,15 @@ export interface AILakeApiInterface {
|
|
|
3129
3537
|
* @memberof AILakeApiInterface
|
|
3130
3538
|
*/
|
|
3131
3539
|
getAiLakeOperation(requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig): AxiosPromise<GetAiLakeOperation200Response>;
|
|
3540
|
+
/**
|
|
3541
|
+
* (BETA) Returns full details of the specified pipe table.
|
|
3542
|
+
* @summary (BETA) Get an AI Lake pipe table
|
|
3543
|
+
* @param {AILakeApiGetAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3544
|
+
* @param {*} [options] Override http request option.
|
|
3545
|
+
* @throws {RequiredError}
|
|
3546
|
+
* @memberof AILakeApiInterface
|
|
3547
|
+
*/
|
|
3548
|
+
getAiLakePipeTable(requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<PipeTable>;
|
|
3132
3549
|
/**
|
|
3133
3550
|
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
3134
3551
|
* @summary (BETA) Get AI Lake service status
|
|
@@ -3146,272 +3563,1154 @@ export interface AILakeApiInterface {
|
|
|
3146
3563
|
* @throws {RequiredError}
|
|
3147
3564
|
* @memberof AILakeApiInterface
|
|
3148
3565
|
*/
|
|
3149
|
-
listAiLakeDatabaseInstances(requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
3566
|
+
listAiLakeDatabaseInstances(requestParameters: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
3567
|
+
/**
|
|
3568
|
+
* (BETA) Lists all active pipe tables in the given AI Lake database instance.
|
|
3569
|
+
* @summary (BETA) List AI Lake pipe tables
|
|
3570
|
+
* @param {AILakeApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
3571
|
+
* @param {*} [options] Override http request option.
|
|
3572
|
+
* @throws {RequiredError}
|
|
3573
|
+
* @memberof AILakeApiInterface
|
|
3574
|
+
*/
|
|
3575
|
+
listAiLakePipeTables(requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<ListPipeTablesResponse>;
|
|
3576
|
+
/**
|
|
3577
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
3578
|
+
* @summary (BETA) List AI Lake services
|
|
3579
|
+
* @param {AILakeApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
3580
|
+
* @param {*} [options] Override http request option.
|
|
3581
|
+
* @throws {RequiredError}
|
|
3582
|
+
* @memberof AILakeApiInterface
|
|
3583
|
+
*/
|
|
3584
|
+
listAiLakeServices(requestParameters: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<ListServicesResponse>;
|
|
3585
|
+
/**
|
|
3586
|
+
* (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.
|
|
3587
|
+
* @summary (BETA) Create a new AILake Database instance
|
|
3588
|
+
* @param {AILakeApiProvisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
3589
|
+
* @param {*} [options] Override http request option.
|
|
3590
|
+
* @throws {RequiredError}
|
|
3591
|
+
* @memberof AILakeApiInterface
|
|
3592
|
+
*/
|
|
3593
|
+
provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3594
|
+
/**
|
|
3595
|
+
* (BETA) Runs a specific AI Lake service command.
|
|
3596
|
+
* @summary (BETA) Run an AI Lake services command
|
|
3597
|
+
* @param {AILakeApiRunAiLakeServiceCommandRequest} requestParameters Request parameters.
|
|
3598
|
+
* @param {*} [options] Override http request option.
|
|
3599
|
+
* @throws {RequiredError}
|
|
3600
|
+
* @memberof AILakeApiInterface
|
|
3601
|
+
*/
|
|
3602
|
+
runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3603
|
+
}
|
|
3604
|
+
/**
|
|
3605
|
+
* Request parameters for createAiLakePipeTable operation in AILakeApi.
|
|
3606
|
+
* @export
|
|
3607
|
+
* @interface AILakeApiCreateAiLakePipeTableRequest
|
|
3608
|
+
*/
|
|
3609
|
+
export interface AILakeApiCreateAiLakePipeTableRequest {
|
|
3610
|
+
/**
|
|
3611
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3612
|
+
* @type {string}
|
|
3613
|
+
* @memberof AILakeApiCreateAiLakePipeTable
|
|
3614
|
+
*/
|
|
3615
|
+
readonly instanceId: string;
|
|
3616
|
+
/**
|
|
3617
|
+
*
|
|
3618
|
+
* @type {CreatePipeTableRequest}
|
|
3619
|
+
* @memberof AILakeApiCreateAiLakePipeTable
|
|
3620
|
+
*/
|
|
3621
|
+
readonly createPipeTableRequest: CreatePipeTableRequest;
|
|
3622
|
+
/**
|
|
3623
|
+
*
|
|
3624
|
+
* @type {string}
|
|
3625
|
+
* @memberof AILakeApiCreateAiLakePipeTable
|
|
3626
|
+
*/
|
|
3627
|
+
readonly operationId?: string;
|
|
3628
|
+
}
|
|
3629
|
+
/**
|
|
3630
|
+
* Request parameters for deleteAiLakePipeTable operation in AILakeApi.
|
|
3631
|
+
* @export
|
|
3632
|
+
* @interface AILakeApiDeleteAiLakePipeTableRequest
|
|
3633
|
+
*/
|
|
3634
|
+
export interface AILakeApiDeleteAiLakePipeTableRequest {
|
|
3635
|
+
/**
|
|
3636
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3637
|
+
* @type {string}
|
|
3638
|
+
* @memberof AILakeApiDeleteAiLakePipeTable
|
|
3639
|
+
*/
|
|
3640
|
+
readonly instanceId: string;
|
|
3641
|
+
/**
|
|
3642
|
+
* Pipe table name.
|
|
3643
|
+
* @type {string}
|
|
3644
|
+
* @memberof AILakeApiDeleteAiLakePipeTable
|
|
3645
|
+
*/
|
|
3646
|
+
readonly tableName: string;
|
|
3647
|
+
/**
|
|
3648
|
+
*
|
|
3649
|
+
* @type {string}
|
|
3650
|
+
* @memberof AILakeApiDeleteAiLakePipeTable
|
|
3651
|
+
*/
|
|
3652
|
+
readonly operationId?: string;
|
|
3653
|
+
}
|
|
3654
|
+
/**
|
|
3655
|
+
* Request parameters for deprovisionAiLakeDatabaseInstance operation in AILakeApi.
|
|
3656
|
+
* @export
|
|
3657
|
+
* @interface AILakeApiDeprovisionAiLakeDatabaseInstanceRequest
|
|
3658
|
+
*/
|
|
3659
|
+
export interface AILakeApiDeprovisionAiLakeDatabaseInstanceRequest {
|
|
3660
|
+
/**
|
|
3661
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3662
|
+
* @type {string}
|
|
3663
|
+
* @memberof AILakeApiDeprovisionAiLakeDatabaseInstance
|
|
3664
|
+
*/
|
|
3665
|
+
readonly instanceId: string;
|
|
3666
|
+
/**
|
|
3667
|
+
*
|
|
3668
|
+
* @type {string}
|
|
3669
|
+
* @memberof AILakeApiDeprovisionAiLakeDatabaseInstance
|
|
3670
|
+
*/
|
|
3671
|
+
readonly operationId?: string;
|
|
3672
|
+
}
|
|
3673
|
+
/**
|
|
3674
|
+
* Request parameters for getAiLakeDatabaseInstance operation in AILakeApi.
|
|
3675
|
+
* @export
|
|
3676
|
+
* @interface AILakeApiGetAiLakeDatabaseInstanceRequest
|
|
3677
|
+
*/
|
|
3678
|
+
export interface AILakeApiGetAiLakeDatabaseInstanceRequest {
|
|
3679
|
+
/**
|
|
3680
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3681
|
+
* @type {string}
|
|
3682
|
+
* @memberof AILakeApiGetAiLakeDatabaseInstance
|
|
3683
|
+
*/
|
|
3684
|
+
readonly instanceId: string;
|
|
3685
|
+
}
|
|
3686
|
+
/**
|
|
3687
|
+
* Request parameters for getAiLakeOperation operation in AILakeApi.
|
|
3688
|
+
* @export
|
|
3689
|
+
* @interface AILakeApiGetAiLakeOperationRequest
|
|
3690
|
+
*/
|
|
3691
|
+
export interface AILakeApiGetAiLakeOperationRequest {
|
|
3692
|
+
/**
|
|
3693
|
+
* Operation ID
|
|
3694
|
+
* @type {string}
|
|
3695
|
+
* @memberof AILakeApiGetAiLakeOperation
|
|
3696
|
+
*/
|
|
3697
|
+
readonly operationId: string;
|
|
3698
|
+
}
|
|
3699
|
+
/**
|
|
3700
|
+
* Request parameters for getAiLakePipeTable operation in AILakeApi.
|
|
3701
|
+
* @export
|
|
3702
|
+
* @interface AILakeApiGetAiLakePipeTableRequest
|
|
3703
|
+
*/
|
|
3704
|
+
export interface AILakeApiGetAiLakePipeTableRequest {
|
|
3705
|
+
/**
|
|
3706
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3707
|
+
* @type {string}
|
|
3708
|
+
* @memberof AILakeApiGetAiLakePipeTable
|
|
3709
|
+
*/
|
|
3710
|
+
readonly instanceId: string;
|
|
3711
|
+
/**
|
|
3712
|
+
* Pipe table name.
|
|
3713
|
+
* @type {string}
|
|
3714
|
+
* @memberof AILakeApiGetAiLakePipeTable
|
|
3715
|
+
*/
|
|
3716
|
+
readonly tableName: string;
|
|
3717
|
+
}
|
|
3718
|
+
/**
|
|
3719
|
+
* Request parameters for getAiLakeServiceStatus operation in AILakeApi.
|
|
3720
|
+
* @export
|
|
3721
|
+
* @interface AILakeApiGetAiLakeServiceStatusRequest
|
|
3722
|
+
*/
|
|
3723
|
+
export interface AILakeApiGetAiLakeServiceStatusRequest {
|
|
3724
|
+
/**
|
|
3725
|
+
*
|
|
3726
|
+
* @type {string}
|
|
3727
|
+
* @memberof AILakeApiGetAiLakeServiceStatus
|
|
3728
|
+
*/
|
|
3729
|
+
readonly serviceId: string;
|
|
3730
|
+
}
|
|
3731
|
+
/**
|
|
3732
|
+
* Request parameters for listAiLakeDatabaseInstances operation in AILakeApi.
|
|
3733
|
+
* @export
|
|
3734
|
+
* @interface AILakeApiListAiLakeDatabaseInstancesRequest
|
|
3735
|
+
*/
|
|
3736
|
+
export interface AILakeApiListAiLakeDatabaseInstancesRequest {
|
|
3737
|
+
/**
|
|
3738
|
+
*
|
|
3739
|
+
* @type {number}
|
|
3740
|
+
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3741
|
+
*/
|
|
3742
|
+
readonly size?: number;
|
|
3743
|
+
/**
|
|
3744
|
+
*
|
|
3745
|
+
* @type {number}
|
|
3746
|
+
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3747
|
+
*/
|
|
3748
|
+
readonly offset?: number;
|
|
3749
|
+
/**
|
|
3750
|
+
*
|
|
3751
|
+
* @type {Array<string>}
|
|
3752
|
+
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3753
|
+
*/
|
|
3754
|
+
readonly metaInclude?: Array<string>;
|
|
3755
|
+
}
|
|
3756
|
+
/**
|
|
3757
|
+
* Request parameters for listAiLakePipeTables operation in AILakeApi.
|
|
3758
|
+
* @export
|
|
3759
|
+
* @interface AILakeApiListAiLakePipeTablesRequest
|
|
3760
|
+
*/
|
|
3761
|
+
export interface AILakeApiListAiLakePipeTablesRequest {
|
|
3762
|
+
/**
|
|
3763
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3764
|
+
* @type {string}
|
|
3765
|
+
* @memberof AILakeApiListAiLakePipeTables
|
|
3766
|
+
*/
|
|
3767
|
+
readonly instanceId: string;
|
|
3768
|
+
}
|
|
3769
|
+
/**
|
|
3770
|
+
* Request parameters for listAiLakeServices operation in AILakeApi.
|
|
3771
|
+
* @export
|
|
3772
|
+
* @interface AILakeApiListAiLakeServicesRequest
|
|
3773
|
+
*/
|
|
3774
|
+
export interface AILakeApiListAiLakeServicesRequest {
|
|
3775
|
+
/**
|
|
3776
|
+
*
|
|
3777
|
+
* @type {number}
|
|
3778
|
+
* @memberof AILakeApiListAiLakeServices
|
|
3779
|
+
*/
|
|
3780
|
+
readonly size?: number;
|
|
3781
|
+
/**
|
|
3782
|
+
*
|
|
3783
|
+
* @type {number}
|
|
3784
|
+
* @memberof AILakeApiListAiLakeServices
|
|
3785
|
+
*/
|
|
3786
|
+
readonly offset?: number;
|
|
3787
|
+
/**
|
|
3788
|
+
*
|
|
3789
|
+
* @type {Array<string>}
|
|
3790
|
+
* @memberof AILakeApiListAiLakeServices
|
|
3791
|
+
*/
|
|
3792
|
+
readonly metaInclude?: Array<string>;
|
|
3793
|
+
}
|
|
3794
|
+
/**
|
|
3795
|
+
* Request parameters for provisionAiLakeDatabaseInstance operation in AILakeApi.
|
|
3796
|
+
* @export
|
|
3797
|
+
* @interface AILakeApiProvisionAiLakeDatabaseInstanceRequest
|
|
3798
|
+
*/
|
|
3799
|
+
export interface AILakeApiProvisionAiLakeDatabaseInstanceRequest {
|
|
3800
|
+
/**
|
|
3801
|
+
*
|
|
3802
|
+
* @type {ProvisionDatabaseInstanceRequest}
|
|
3803
|
+
* @memberof AILakeApiProvisionAiLakeDatabaseInstance
|
|
3804
|
+
*/
|
|
3805
|
+
readonly provisionDatabaseInstanceRequest: ProvisionDatabaseInstanceRequest;
|
|
3806
|
+
/**
|
|
3807
|
+
*
|
|
3808
|
+
* @type {string}
|
|
3809
|
+
* @memberof AILakeApiProvisionAiLakeDatabaseInstance
|
|
3810
|
+
*/
|
|
3811
|
+
readonly operationId?: string;
|
|
3812
|
+
}
|
|
3813
|
+
/**
|
|
3814
|
+
* Request parameters for runAiLakeServiceCommand operation in AILakeApi.
|
|
3815
|
+
* @export
|
|
3816
|
+
* @interface AILakeApiRunAiLakeServiceCommandRequest
|
|
3817
|
+
*/
|
|
3818
|
+
export interface AILakeApiRunAiLakeServiceCommandRequest {
|
|
3819
|
+
/**
|
|
3820
|
+
*
|
|
3821
|
+
* @type {string}
|
|
3822
|
+
* @memberof AILakeApiRunAiLakeServiceCommand
|
|
3823
|
+
*/
|
|
3824
|
+
readonly serviceId: string;
|
|
3825
|
+
/**
|
|
3826
|
+
*
|
|
3827
|
+
* @type {string}
|
|
3828
|
+
* @memberof AILakeApiRunAiLakeServiceCommand
|
|
3829
|
+
*/
|
|
3830
|
+
readonly commandName: string;
|
|
3831
|
+
/**
|
|
3832
|
+
*
|
|
3833
|
+
* @type {RunServiceCommandRequest}
|
|
3834
|
+
* @memberof AILakeApiRunAiLakeServiceCommand
|
|
3835
|
+
*/
|
|
3836
|
+
readonly runServiceCommandRequest: RunServiceCommandRequest;
|
|
3837
|
+
/**
|
|
3838
|
+
*
|
|
3839
|
+
* @type {string}
|
|
3840
|
+
* @memberof AILakeApiRunAiLakeServiceCommand
|
|
3841
|
+
*/
|
|
3842
|
+
readonly operationId?: string;
|
|
3843
|
+
}
|
|
3844
|
+
/**
|
|
3845
|
+
* AILakeApi - object-oriented interface
|
|
3846
|
+
* @export
|
|
3847
|
+
* @class AILakeApi
|
|
3848
|
+
* @extends {BaseAPI}
|
|
3849
|
+
*/
|
|
3850
|
+
export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
|
|
3851
|
+
/**
|
|
3852
|
+
* (BETA) Creates a pipe-backed OLAP table in the given AI Lake database instance. Infers schema from parquet files. Returns an operation-id header the client can use to poll for progress.
|
|
3853
|
+
* @summary (BETA) Create a new AI Lake pipe table
|
|
3854
|
+
* @param {AILakeApiCreateAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3855
|
+
* @param {*} [options] Override http request option.
|
|
3856
|
+
* @throws {RequiredError}
|
|
3857
|
+
* @memberof AILakeApi
|
|
3858
|
+
*/
|
|
3859
|
+
createAiLakePipeTable(requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3860
|
+
/**
|
|
3861
|
+
* (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
|
|
3862
|
+
* @summary (BETA) Delete an AI Lake pipe table
|
|
3863
|
+
* @param {AILakeApiDeleteAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3864
|
+
* @param {*} [options] Override http request option.
|
|
3865
|
+
* @throws {RequiredError}
|
|
3866
|
+
* @memberof AILakeApi
|
|
3867
|
+
*/
|
|
3868
|
+
deleteAiLakePipeTable(requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3869
|
+
/**
|
|
3870
|
+
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
3871
|
+
* @summary (BETA) Delete an existing AILake Database instance
|
|
3872
|
+
* @param {AILakeApiDeprovisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
3873
|
+
* @param {*} [options] Override http request option.
|
|
3874
|
+
* @throws {RequiredError}
|
|
3875
|
+
* @memberof AILakeApi
|
|
3876
|
+
*/
|
|
3877
|
+
deprovisionAiLakeDatabaseInstance(requestParameters: AILakeApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3878
|
+
/**
|
|
3879
|
+
* (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
|
|
3880
|
+
* @summary (BETA) Get the specified AILake Database instance
|
|
3881
|
+
* @param {AILakeApiGetAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
3882
|
+
* @param {*} [options] Override http request option.
|
|
3883
|
+
* @throws {RequiredError}
|
|
3884
|
+
* @memberof AILakeApi
|
|
3885
|
+
*/
|
|
3886
|
+
getAiLakeDatabaseInstance(requestParameters: AILakeApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<DatabaseInstance>;
|
|
3887
|
+
/**
|
|
3888
|
+
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
3889
|
+
* @summary (BETA) Get Long Running Operation details
|
|
3890
|
+
* @param {AILakeApiGetAiLakeOperationRequest} requestParameters Request parameters.
|
|
3891
|
+
* @param {*} [options] Override http request option.
|
|
3892
|
+
* @throws {RequiredError}
|
|
3893
|
+
* @memberof AILakeApi
|
|
3894
|
+
*/
|
|
3895
|
+
getAiLakeOperation(requestParameters: AILakeApiGetAiLakeOperationRequest, options?: AxiosRequestConfig): AxiosPromise<GetAiLakeOperation200Response>;
|
|
3896
|
+
/**
|
|
3897
|
+
* (BETA) Returns full details of the specified pipe table.
|
|
3898
|
+
* @summary (BETA) Get an AI Lake pipe table
|
|
3899
|
+
* @param {AILakeApiGetAiLakePipeTableRequest} requestParameters Request parameters.
|
|
3900
|
+
* @param {*} [options] Override http request option.
|
|
3901
|
+
* @throws {RequiredError}
|
|
3902
|
+
* @memberof AILakeApi
|
|
3903
|
+
*/
|
|
3904
|
+
getAiLakePipeTable(requestParameters: AILakeApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<PipeTable>;
|
|
3905
|
+
/**
|
|
3906
|
+
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
3907
|
+
* @summary (BETA) Get AI Lake service status
|
|
3908
|
+
* @param {AILakeApiGetAiLakeServiceStatusRequest} requestParameters Request parameters.
|
|
3909
|
+
* @param {*} [options] Override http request option.
|
|
3910
|
+
* @throws {RequiredError}
|
|
3911
|
+
* @memberof AILakeApi
|
|
3912
|
+
*/
|
|
3913
|
+
getAiLakeServiceStatus(requestParameters: AILakeApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
|
|
3914
|
+
/**
|
|
3915
|
+
* (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
3916
|
+
* @summary (BETA) List AI Lake Database instances
|
|
3917
|
+
* @param {AILakeApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
3918
|
+
* @param {*} [options] Override http request option.
|
|
3919
|
+
* @throws {RequiredError}
|
|
3920
|
+
* @memberof AILakeApi
|
|
3921
|
+
*/
|
|
3922
|
+
listAiLakeDatabaseInstances(requestParameters?: AILakeApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
3923
|
+
/**
|
|
3924
|
+
* (BETA) Lists all active pipe tables in the given AI Lake database instance.
|
|
3925
|
+
* @summary (BETA) List AI Lake pipe tables
|
|
3926
|
+
* @param {AILakeApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
3927
|
+
* @param {*} [options] Override http request option.
|
|
3928
|
+
* @throws {RequiredError}
|
|
3929
|
+
* @memberof AILakeApi
|
|
3930
|
+
*/
|
|
3931
|
+
listAiLakePipeTables(requestParameters: AILakeApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<ListPipeTablesResponse>;
|
|
3932
|
+
/**
|
|
3933
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
3934
|
+
* @summary (BETA) List AI Lake services
|
|
3935
|
+
* @param {AILakeApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
3936
|
+
* @param {*} [options] Override http request option.
|
|
3937
|
+
* @throws {RequiredError}
|
|
3938
|
+
* @memberof AILakeApi
|
|
3939
|
+
*/
|
|
3940
|
+
listAiLakeServices(requestParameters?: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<ListServicesResponse>;
|
|
3941
|
+
/**
|
|
3942
|
+
* (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.
|
|
3943
|
+
* @summary (BETA) Create a new AILake Database instance
|
|
3944
|
+
* @param {AILakeApiProvisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
3945
|
+
* @param {*} [options] Override http request option.
|
|
3946
|
+
* @throws {RequiredError}
|
|
3947
|
+
* @memberof AILakeApi
|
|
3948
|
+
*/
|
|
3949
|
+
provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3950
|
+
/**
|
|
3951
|
+
* (BETA) Runs a specific AI Lake service command.
|
|
3952
|
+
* @summary (BETA) Run an AI Lake services command
|
|
3953
|
+
* @param {AILakeApiRunAiLakeServiceCommandRequest} requestParameters Request parameters.
|
|
3954
|
+
* @param {*} [options] Override http request option.
|
|
3955
|
+
* @throws {RequiredError}
|
|
3956
|
+
* @memberof AILakeApi
|
|
3957
|
+
*/
|
|
3958
|
+
runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3959
|
+
}
|
|
3960
|
+
/**
|
|
3961
|
+
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
3962
|
+
* @summary (BETA) Delete an existing AILake Database instance
|
|
3963
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3964
|
+
* @param {string} [operationId]
|
|
3965
|
+
* @param {*} [options] Override http request option.
|
|
3966
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3967
|
+
* @throws {RequiredError}
|
|
3968
|
+
*/
|
|
3969
|
+
export declare function AILakeDatabasesApiAxiosParamCreator_DeprovisionAiLakeDatabaseInstance(instanceId: string, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3970
|
+
/**
|
|
3971
|
+
* (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
|
|
3972
|
+
* @summary (BETA) Get the specified AILake Database instance
|
|
3973
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3974
|
+
* @param {*} [options] Override http request option.
|
|
3975
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3976
|
+
* @throws {RequiredError}
|
|
3977
|
+
*/
|
|
3978
|
+
export declare function AILakeDatabasesApiAxiosParamCreator_GetAiLakeDatabaseInstance(instanceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3979
|
+
/**
|
|
3980
|
+
* (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
3981
|
+
* @summary (BETA) List AI Lake Database instances
|
|
3982
|
+
* @param {number} [size]
|
|
3983
|
+
* @param {number} [offset]
|
|
3984
|
+
* @param {Array<string>} [metaInclude]
|
|
3985
|
+
* @param {*} [options] Override http request option.
|
|
3986
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3987
|
+
* @throws {RequiredError}
|
|
3988
|
+
*/
|
|
3989
|
+
export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(size?: number, offset?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3990
|
+
/**
|
|
3991
|
+
* (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.
|
|
3992
|
+
* @summary (BETA) Create a new AILake Database instance
|
|
3993
|
+
* @param {ProvisionDatabaseInstanceRequest} provisionDatabaseInstanceRequest
|
|
3994
|
+
* @param {string} [operationId]
|
|
3995
|
+
* @param {*} [options] Override http request option.
|
|
3996
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3997
|
+
* @throws {RequiredError}
|
|
3998
|
+
*/
|
|
3999
|
+
export declare function AILakeDatabasesApiAxiosParamCreator_ProvisionAiLakeDatabaseInstance(provisionDatabaseInstanceRequest: ProvisionDatabaseInstanceRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4000
|
+
/**
|
|
4001
|
+
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
4002
|
+
* @summary (BETA) Delete an existing AILake Database instance
|
|
4003
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4004
|
+
* @param {string} basePath Base path.
|
|
4005
|
+
* @param {AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4006
|
+
* @param {*} [options] Override http request option.
|
|
4007
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4008
|
+
* @throws {RequiredError}
|
|
4009
|
+
*/
|
|
4010
|
+
export declare function AILakeDatabasesApi_DeprovisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
4011
|
+
/**
|
|
4012
|
+
* (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
|
|
4013
|
+
* @summary (BETA) Get the specified AILake Database instance
|
|
4014
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4015
|
+
* @param {string} basePath Base path.
|
|
4016
|
+
* @param {AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4017
|
+
* @param {*} [options] Override http request option.
|
|
4018
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4019
|
+
* @throws {RequiredError}
|
|
4020
|
+
*/
|
|
4021
|
+
export declare function AILakeDatabasesApi_GetAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DatabaseInstance>;
|
|
4022
|
+
/**
|
|
4023
|
+
* (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
4024
|
+
* @summary (BETA) List AI Lake Database instances
|
|
4025
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4026
|
+
* @param {string} basePath Base path.
|
|
4027
|
+
* @param {AILakeDatabasesApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
4028
|
+
* @param {*} [options] Override http request option.
|
|
4029
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4030
|
+
* @throws {RequiredError}
|
|
4031
|
+
*/
|
|
4032
|
+
export declare function AILakeDatabasesApi_ListAiLakeDatabaseInstances(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
4033
|
+
/**
|
|
4034
|
+
* (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.
|
|
4035
|
+
* @summary (BETA) Create a new AILake Database instance
|
|
4036
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4037
|
+
* @param {string} basePath Base path.
|
|
4038
|
+
* @param {AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4039
|
+
* @param {*} [options] Override http request option.
|
|
4040
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4041
|
+
* @throws {RequiredError}
|
|
4042
|
+
*/
|
|
4043
|
+
export declare function AILakeDatabasesApi_ProvisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
4044
|
+
/**
|
|
4045
|
+
* AILakeDatabasesApi - interface
|
|
4046
|
+
* @export
|
|
4047
|
+
* @interface AILakeDatabasesApi
|
|
4048
|
+
*/
|
|
4049
|
+
export interface AILakeDatabasesApiInterface {
|
|
4050
|
+
/**
|
|
4051
|
+
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
4052
|
+
* @summary (BETA) Delete an existing AILake Database instance
|
|
4053
|
+
* @param {AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4054
|
+
* @param {*} [options] Override http request option.
|
|
4055
|
+
* @throws {RequiredError}
|
|
4056
|
+
* @memberof AILakeDatabasesApiInterface
|
|
4057
|
+
*/
|
|
4058
|
+
deprovisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4059
|
+
/**
|
|
4060
|
+
* (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
|
|
4061
|
+
* @summary (BETA) Get the specified AILake Database instance
|
|
4062
|
+
* @param {AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4063
|
+
* @param {*} [options] Override http request option.
|
|
4064
|
+
* @throws {RequiredError}
|
|
4065
|
+
* @memberof AILakeDatabasesApiInterface
|
|
4066
|
+
*/
|
|
4067
|
+
getAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<DatabaseInstance>;
|
|
4068
|
+
/**
|
|
4069
|
+
* (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
4070
|
+
* @summary (BETA) List AI Lake Database instances
|
|
4071
|
+
* @param {AILakeDatabasesApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
4072
|
+
* @param {*} [options] Override http request option.
|
|
4073
|
+
* @throws {RequiredError}
|
|
4074
|
+
* @memberof AILakeDatabasesApiInterface
|
|
4075
|
+
*/
|
|
4076
|
+
listAiLakeDatabaseInstances(requestParameters: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
4077
|
+
/**
|
|
4078
|
+
* (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.
|
|
4079
|
+
* @summary (BETA) Create a new AILake Database instance
|
|
4080
|
+
* @param {AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4081
|
+
* @param {*} [options] Override http request option.
|
|
4082
|
+
* @throws {RequiredError}
|
|
4083
|
+
* @memberof AILakeDatabasesApiInterface
|
|
4084
|
+
*/
|
|
4085
|
+
provisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4086
|
+
}
|
|
4087
|
+
/**
|
|
4088
|
+
* Request parameters for deprovisionAiLakeDatabaseInstance operation in AILakeDatabasesApi.
|
|
4089
|
+
* @export
|
|
4090
|
+
* @interface AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest
|
|
4091
|
+
*/
|
|
4092
|
+
export interface AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest {
|
|
4093
|
+
/**
|
|
4094
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4095
|
+
* @type {string}
|
|
4096
|
+
* @memberof AILakeDatabasesApiDeprovisionAiLakeDatabaseInstance
|
|
4097
|
+
*/
|
|
4098
|
+
readonly instanceId: string;
|
|
4099
|
+
/**
|
|
4100
|
+
*
|
|
4101
|
+
* @type {string}
|
|
4102
|
+
* @memberof AILakeDatabasesApiDeprovisionAiLakeDatabaseInstance
|
|
4103
|
+
*/
|
|
4104
|
+
readonly operationId?: string;
|
|
4105
|
+
}
|
|
4106
|
+
/**
|
|
4107
|
+
* Request parameters for getAiLakeDatabaseInstance operation in AILakeDatabasesApi.
|
|
4108
|
+
* @export
|
|
4109
|
+
* @interface AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest
|
|
4110
|
+
*/
|
|
4111
|
+
export interface AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest {
|
|
4112
|
+
/**
|
|
4113
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4114
|
+
* @type {string}
|
|
4115
|
+
* @memberof AILakeDatabasesApiGetAiLakeDatabaseInstance
|
|
4116
|
+
*/
|
|
4117
|
+
readonly instanceId: string;
|
|
4118
|
+
}
|
|
4119
|
+
/**
|
|
4120
|
+
* Request parameters for listAiLakeDatabaseInstances operation in AILakeDatabasesApi.
|
|
4121
|
+
* @export
|
|
4122
|
+
* @interface AILakeDatabasesApiListAiLakeDatabaseInstancesRequest
|
|
4123
|
+
*/
|
|
4124
|
+
export interface AILakeDatabasesApiListAiLakeDatabaseInstancesRequest {
|
|
4125
|
+
/**
|
|
4126
|
+
*
|
|
4127
|
+
* @type {number}
|
|
4128
|
+
* @memberof AILakeDatabasesApiListAiLakeDatabaseInstances
|
|
4129
|
+
*/
|
|
4130
|
+
readonly size?: number;
|
|
4131
|
+
/**
|
|
4132
|
+
*
|
|
4133
|
+
* @type {number}
|
|
4134
|
+
* @memberof AILakeDatabasesApiListAiLakeDatabaseInstances
|
|
4135
|
+
*/
|
|
4136
|
+
readonly offset?: number;
|
|
4137
|
+
/**
|
|
4138
|
+
*
|
|
4139
|
+
* @type {Array<string>}
|
|
4140
|
+
* @memberof AILakeDatabasesApiListAiLakeDatabaseInstances
|
|
4141
|
+
*/
|
|
4142
|
+
readonly metaInclude?: Array<string>;
|
|
4143
|
+
}
|
|
4144
|
+
/**
|
|
4145
|
+
* Request parameters for provisionAiLakeDatabaseInstance operation in AILakeDatabasesApi.
|
|
4146
|
+
* @export
|
|
4147
|
+
* @interface AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest
|
|
4148
|
+
*/
|
|
4149
|
+
export interface AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest {
|
|
4150
|
+
/**
|
|
4151
|
+
*
|
|
4152
|
+
* @type {ProvisionDatabaseInstanceRequest}
|
|
4153
|
+
* @memberof AILakeDatabasesApiProvisionAiLakeDatabaseInstance
|
|
4154
|
+
*/
|
|
4155
|
+
readonly provisionDatabaseInstanceRequest: ProvisionDatabaseInstanceRequest;
|
|
4156
|
+
/**
|
|
4157
|
+
*
|
|
4158
|
+
* @type {string}
|
|
4159
|
+
* @memberof AILakeDatabasesApiProvisionAiLakeDatabaseInstance
|
|
4160
|
+
*/
|
|
4161
|
+
readonly operationId?: string;
|
|
4162
|
+
}
|
|
4163
|
+
/**
|
|
4164
|
+
* AILakeDatabasesApi - object-oriented interface
|
|
4165
|
+
* @export
|
|
4166
|
+
* @class AILakeDatabasesApi
|
|
4167
|
+
* @extends {BaseAPI}
|
|
4168
|
+
*/
|
|
4169
|
+
export declare class AILakeDatabasesApi extends BaseAPI implements AILakeDatabasesApiInterface {
|
|
4170
|
+
/**
|
|
4171
|
+
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
4172
|
+
* @summary (BETA) Delete an existing AILake Database instance
|
|
4173
|
+
* @param {AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4174
|
+
* @param {*} [options] Override http request option.
|
|
4175
|
+
* @throws {RequiredError}
|
|
4176
|
+
* @memberof AILakeDatabasesApi
|
|
4177
|
+
*/
|
|
4178
|
+
deprovisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4179
|
+
/**
|
|
4180
|
+
* (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
|
|
4181
|
+
* @summary (BETA) Get the specified AILake Database instance
|
|
4182
|
+
* @param {AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4183
|
+
* @param {*} [options] Override http request option.
|
|
4184
|
+
* @throws {RequiredError}
|
|
4185
|
+
* @memberof AILakeDatabasesApi
|
|
4186
|
+
*/
|
|
4187
|
+
getAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<DatabaseInstance>;
|
|
4188
|
+
/**
|
|
4189
|
+
* (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
4190
|
+
* @summary (BETA) List AI Lake Database instances
|
|
4191
|
+
* @param {AILakeDatabasesApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
4192
|
+
* @param {*} [options] Override http request option.
|
|
4193
|
+
* @throws {RequiredError}
|
|
4194
|
+
* @memberof AILakeDatabasesApi
|
|
4195
|
+
*/
|
|
4196
|
+
listAiLakeDatabaseInstances(requestParameters?: AILakeDatabasesApiListAiLakeDatabaseInstancesRequest, options?: AxiosRequestConfig): AxiosPromise<ListDatabaseInstancesResponse>;
|
|
4197
|
+
/**
|
|
4198
|
+
* (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.
|
|
4199
|
+
* @summary (BETA) Create a new AILake Database instance
|
|
4200
|
+
* @param {AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4201
|
+
* @param {*} [options] Override http request option.
|
|
4202
|
+
* @throws {RequiredError}
|
|
4203
|
+
* @memberof AILakeDatabasesApi
|
|
4204
|
+
*/
|
|
4205
|
+
provisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4206
|
+
}
|
|
4207
|
+
/**
|
|
4208
|
+
* (BETA) Creates a pipe-backed OLAP table in the given AI Lake database instance. Infers schema from parquet files. Returns an operation-id header the client can use to poll for progress.
|
|
4209
|
+
* @summary (BETA) Create a new AI Lake pipe table
|
|
4210
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4211
|
+
* @param {CreatePipeTableRequest} createPipeTableRequest
|
|
4212
|
+
* @param {string} [operationId]
|
|
4213
|
+
* @param {*} [options] Override http request option.
|
|
4214
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4215
|
+
* @throws {RequiredError}
|
|
4216
|
+
*/
|
|
4217
|
+
export declare function AILakePipeTablesApiAxiosParamCreator_CreateAiLakePipeTable(instanceId: string, createPipeTableRequest: CreatePipeTableRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4218
|
+
/**
|
|
4219
|
+
* (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
|
|
4220
|
+
* @summary (BETA) Delete an AI Lake pipe table
|
|
4221
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4222
|
+
* @param {string} tableName Pipe table name.
|
|
4223
|
+
* @param {string} [operationId]
|
|
4224
|
+
* @param {*} [options] Override http request option.
|
|
4225
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4226
|
+
* @throws {RequiredError}
|
|
4227
|
+
*/
|
|
4228
|
+
export declare function AILakePipeTablesApiAxiosParamCreator_DeleteAiLakePipeTable(instanceId: string, tableName: string, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4229
|
+
/**
|
|
4230
|
+
* (BETA) Returns full details of the specified pipe table.
|
|
4231
|
+
* @summary (BETA) Get an AI Lake pipe table
|
|
4232
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4233
|
+
* @param {string} tableName Pipe table name.
|
|
4234
|
+
* @param {*} [options] Override http request option.
|
|
4235
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4236
|
+
* @throws {RequiredError}
|
|
4237
|
+
*/
|
|
4238
|
+
export declare function AILakePipeTablesApiAxiosParamCreator_GetAiLakePipeTable(instanceId: string, tableName: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4239
|
+
/**
|
|
4240
|
+
* (BETA) Lists all active pipe tables in the given AI Lake database instance.
|
|
4241
|
+
* @summary (BETA) List AI Lake pipe tables
|
|
4242
|
+
* @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4243
|
+
* @param {*} [options] Override http request option.
|
|
4244
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4245
|
+
* @throws {RequiredError}
|
|
4246
|
+
*/
|
|
4247
|
+
export declare function AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4248
|
+
/**
|
|
4249
|
+
* (BETA) Creates a pipe-backed OLAP table in the given AI Lake database instance. Infers schema from parquet files. Returns an operation-id header the client can use to poll for progress.
|
|
4250
|
+
* @summary (BETA) Create a new AI Lake pipe table
|
|
4251
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4252
|
+
* @param {string} basePath Base path.
|
|
4253
|
+
* @param {AILakePipeTablesApiCreateAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4254
|
+
* @param {*} [options] Override http request option.
|
|
4255
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4256
|
+
* @throws {RequiredError}
|
|
4257
|
+
*/
|
|
4258
|
+
export declare function AILakePipeTablesApi_CreateAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
4259
|
+
/**
|
|
4260
|
+
* (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
|
|
4261
|
+
* @summary (BETA) Delete an AI Lake pipe table
|
|
4262
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4263
|
+
* @param {string} basePath Base path.
|
|
4264
|
+
* @param {AILakePipeTablesApiDeleteAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4265
|
+
* @param {*} [options] Override http request option.
|
|
4266
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4267
|
+
* @throws {RequiredError}
|
|
4268
|
+
*/
|
|
4269
|
+
export declare function AILakePipeTablesApi_DeleteAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
4270
|
+
/**
|
|
4271
|
+
* (BETA) Returns full details of the specified pipe table.
|
|
4272
|
+
* @summary (BETA) Get an AI Lake pipe table
|
|
4273
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4274
|
+
* @param {string} basePath Base path.
|
|
4275
|
+
* @param {AILakePipeTablesApiGetAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4276
|
+
* @param {*} [options] Override http request option.
|
|
4277
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4278
|
+
* @throws {RequiredError}
|
|
4279
|
+
*/
|
|
4280
|
+
export declare function AILakePipeTablesApi_GetAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<PipeTable>;
|
|
4281
|
+
/**
|
|
4282
|
+
* (BETA) Lists all active pipe tables in the given AI Lake database instance.
|
|
4283
|
+
* @summary (BETA) List AI Lake pipe tables
|
|
4284
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4285
|
+
* @param {string} basePath Base path.
|
|
4286
|
+
* @param {AILakePipeTablesApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
4287
|
+
* @param {*} [options] Override http request option.
|
|
4288
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4289
|
+
* @throws {RequiredError}
|
|
4290
|
+
*/
|
|
4291
|
+
export declare function AILakePipeTablesApi_ListAiLakePipeTables(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListPipeTablesResponse>;
|
|
4292
|
+
/**
|
|
4293
|
+
* AILakePipeTablesApi - interface
|
|
4294
|
+
* @export
|
|
4295
|
+
* @interface AILakePipeTablesApi
|
|
4296
|
+
*/
|
|
4297
|
+
export interface AILakePipeTablesApiInterface {
|
|
4298
|
+
/**
|
|
4299
|
+
* (BETA) Creates a pipe-backed OLAP table in the given AI Lake database instance. Infers schema from parquet files. Returns an operation-id header the client can use to poll for progress.
|
|
4300
|
+
* @summary (BETA) Create a new AI Lake pipe table
|
|
4301
|
+
* @param {AILakePipeTablesApiCreateAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4302
|
+
* @param {*} [options] Override http request option.
|
|
4303
|
+
* @throws {RequiredError}
|
|
4304
|
+
* @memberof AILakePipeTablesApiInterface
|
|
4305
|
+
*/
|
|
4306
|
+
createAiLakePipeTable(requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4307
|
+
/**
|
|
4308
|
+
* (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
|
|
4309
|
+
* @summary (BETA) Delete an AI Lake pipe table
|
|
4310
|
+
* @param {AILakePipeTablesApiDeleteAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4311
|
+
* @param {*} [options] Override http request option.
|
|
4312
|
+
* @throws {RequiredError}
|
|
4313
|
+
* @memberof AILakePipeTablesApiInterface
|
|
4314
|
+
*/
|
|
4315
|
+
deleteAiLakePipeTable(requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4316
|
+
/**
|
|
4317
|
+
* (BETA) Returns full details of the specified pipe table.
|
|
4318
|
+
* @summary (BETA) Get an AI Lake pipe table
|
|
4319
|
+
* @param {AILakePipeTablesApiGetAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4320
|
+
* @param {*} [options] Override http request option.
|
|
4321
|
+
* @throws {RequiredError}
|
|
4322
|
+
* @memberof AILakePipeTablesApiInterface
|
|
4323
|
+
*/
|
|
4324
|
+
getAiLakePipeTable(requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<PipeTable>;
|
|
4325
|
+
/**
|
|
4326
|
+
* (BETA) Lists all active pipe tables in the given AI Lake database instance.
|
|
4327
|
+
* @summary (BETA) List AI Lake pipe tables
|
|
4328
|
+
* @param {AILakePipeTablesApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
4329
|
+
* @param {*} [options] Override http request option.
|
|
4330
|
+
* @throws {RequiredError}
|
|
4331
|
+
* @memberof AILakePipeTablesApiInterface
|
|
4332
|
+
*/
|
|
4333
|
+
listAiLakePipeTables(requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<ListPipeTablesResponse>;
|
|
4334
|
+
}
|
|
4335
|
+
/**
|
|
4336
|
+
* Request parameters for createAiLakePipeTable operation in AILakePipeTablesApi.
|
|
4337
|
+
* @export
|
|
4338
|
+
* @interface AILakePipeTablesApiCreateAiLakePipeTableRequest
|
|
4339
|
+
*/
|
|
4340
|
+
export interface AILakePipeTablesApiCreateAiLakePipeTableRequest {
|
|
4341
|
+
/**
|
|
4342
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4343
|
+
* @type {string}
|
|
4344
|
+
* @memberof AILakePipeTablesApiCreateAiLakePipeTable
|
|
4345
|
+
*/
|
|
4346
|
+
readonly instanceId: string;
|
|
4347
|
+
/**
|
|
4348
|
+
*
|
|
4349
|
+
* @type {CreatePipeTableRequest}
|
|
4350
|
+
* @memberof AILakePipeTablesApiCreateAiLakePipeTable
|
|
4351
|
+
*/
|
|
4352
|
+
readonly createPipeTableRequest: CreatePipeTableRequest;
|
|
4353
|
+
/**
|
|
4354
|
+
*
|
|
4355
|
+
* @type {string}
|
|
4356
|
+
* @memberof AILakePipeTablesApiCreateAiLakePipeTable
|
|
4357
|
+
*/
|
|
4358
|
+
readonly operationId?: string;
|
|
4359
|
+
}
|
|
4360
|
+
/**
|
|
4361
|
+
* Request parameters for deleteAiLakePipeTable operation in AILakePipeTablesApi.
|
|
4362
|
+
* @export
|
|
4363
|
+
* @interface AILakePipeTablesApiDeleteAiLakePipeTableRequest
|
|
4364
|
+
*/
|
|
4365
|
+
export interface AILakePipeTablesApiDeleteAiLakePipeTableRequest {
|
|
4366
|
+
/**
|
|
4367
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4368
|
+
* @type {string}
|
|
4369
|
+
* @memberof AILakePipeTablesApiDeleteAiLakePipeTable
|
|
4370
|
+
*/
|
|
4371
|
+
readonly instanceId: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* Pipe table name.
|
|
4374
|
+
* @type {string}
|
|
4375
|
+
* @memberof AILakePipeTablesApiDeleteAiLakePipeTable
|
|
4376
|
+
*/
|
|
4377
|
+
readonly tableName: string;
|
|
4378
|
+
/**
|
|
4379
|
+
*
|
|
4380
|
+
* @type {string}
|
|
4381
|
+
* @memberof AILakePipeTablesApiDeleteAiLakePipeTable
|
|
4382
|
+
*/
|
|
4383
|
+
readonly operationId?: string;
|
|
4384
|
+
}
|
|
4385
|
+
/**
|
|
4386
|
+
* Request parameters for getAiLakePipeTable operation in AILakePipeTablesApi.
|
|
4387
|
+
* @export
|
|
4388
|
+
* @interface AILakePipeTablesApiGetAiLakePipeTableRequest
|
|
4389
|
+
*/
|
|
4390
|
+
export interface AILakePipeTablesApiGetAiLakePipeTableRequest {
|
|
4391
|
+
/**
|
|
4392
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4393
|
+
* @type {string}
|
|
4394
|
+
* @memberof AILakePipeTablesApiGetAiLakePipeTable
|
|
4395
|
+
*/
|
|
4396
|
+
readonly instanceId: string;
|
|
4397
|
+
/**
|
|
4398
|
+
* Pipe table name.
|
|
4399
|
+
* @type {string}
|
|
4400
|
+
* @memberof AILakePipeTablesApiGetAiLakePipeTable
|
|
4401
|
+
*/
|
|
4402
|
+
readonly tableName: string;
|
|
4403
|
+
}
|
|
4404
|
+
/**
|
|
4405
|
+
* Request parameters for listAiLakePipeTables operation in AILakePipeTablesApi.
|
|
4406
|
+
* @export
|
|
4407
|
+
* @interface AILakePipeTablesApiListAiLakePipeTablesRequest
|
|
4408
|
+
*/
|
|
4409
|
+
export interface AILakePipeTablesApiListAiLakePipeTablesRequest {
|
|
4410
|
+
/**
|
|
4411
|
+
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
4412
|
+
* @type {string}
|
|
4413
|
+
* @memberof AILakePipeTablesApiListAiLakePipeTables
|
|
4414
|
+
*/
|
|
4415
|
+
readonly instanceId: string;
|
|
4416
|
+
}
|
|
4417
|
+
/**
|
|
4418
|
+
* AILakePipeTablesApi - object-oriented interface
|
|
4419
|
+
* @export
|
|
4420
|
+
* @class AILakePipeTablesApi
|
|
4421
|
+
* @extends {BaseAPI}
|
|
4422
|
+
*/
|
|
4423
|
+
export declare class AILakePipeTablesApi extends BaseAPI implements AILakePipeTablesApiInterface {
|
|
4424
|
+
/**
|
|
4425
|
+
* (BETA) Creates a pipe-backed OLAP table in the given AI Lake database instance. Infers schema from parquet files. Returns an operation-id header the client can use to poll for progress.
|
|
4426
|
+
* @summary (BETA) Create a new AI Lake pipe table
|
|
4427
|
+
* @param {AILakePipeTablesApiCreateAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4428
|
+
* @param {*} [options] Override http request option.
|
|
4429
|
+
* @throws {RequiredError}
|
|
4430
|
+
* @memberof AILakePipeTablesApi
|
|
4431
|
+
*/
|
|
4432
|
+
createAiLakePipeTable(requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4433
|
+
/**
|
|
4434
|
+
* (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
|
|
4435
|
+
* @summary (BETA) Delete an AI Lake pipe table
|
|
4436
|
+
* @param {AILakePipeTablesApiDeleteAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4437
|
+
* @param {*} [options] Override http request option.
|
|
4438
|
+
* @throws {RequiredError}
|
|
4439
|
+
* @memberof AILakePipeTablesApi
|
|
4440
|
+
*/
|
|
4441
|
+
deleteAiLakePipeTable(requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
4442
|
+
/**
|
|
4443
|
+
* (BETA) Returns full details of the specified pipe table.
|
|
4444
|
+
* @summary (BETA) Get an AI Lake pipe table
|
|
4445
|
+
* @param {AILakePipeTablesApiGetAiLakePipeTableRequest} requestParameters Request parameters.
|
|
4446
|
+
* @param {*} [options] Override http request option.
|
|
4447
|
+
* @throws {RequiredError}
|
|
4448
|
+
* @memberof AILakePipeTablesApi
|
|
4449
|
+
*/
|
|
4450
|
+
getAiLakePipeTable(requestParameters: AILakePipeTablesApiGetAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<PipeTable>;
|
|
4451
|
+
/**
|
|
4452
|
+
* (BETA) Lists all active pipe tables in the given AI Lake database instance.
|
|
4453
|
+
* @summary (BETA) List AI Lake pipe tables
|
|
4454
|
+
* @param {AILakePipeTablesApiListAiLakePipeTablesRequest} requestParameters Request parameters.
|
|
4455
|
+
* @param {*} [options] Override http request option.
|
|
4456
|
+
* @throws {RequiredError}
|
|
4457
|
+
* @memberof AILakePipeTablesApi
|
|
4458
|
+
*/
|
|
4459
|
+
listAiLakePipeTables(requestParameters: AILakePipeTablesApiListAiLakePipeTablesRequest, options?: AxiosRequestConfig): AxiosPromise<ListPipeTablesResponse>;
|
|
4460
|
+
}
|
|
4461
|
+
/**
|
|
4462
|
+
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
4463
|
+
* @summary (BETA) Get Long Running Operation details
|
|
4464
|
+
* @param {string} operationId Operation ID
|
|
4465
|
+
* @param {*} [options] Override http request option.
|
|
4466
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4467
|
+
* @throws {RequiredError}
|
|
4468
|
+
*/
|
|
4469
|
+
export declare function AILakeServicesOperationsApiAxiosParamCreator_GetAiLakeOperation(operationId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4470
|
+
/**
|
|
4471
|
+
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
4472
|
+
* @summary (BETA) Get AI Lake service status
|
|
4473
|
+
* @param {string} serviceId
|
|
4474
|
+
* @param {*} [options] Override http request option.
|
|
4475
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4476
|
+
* @throws {RequiredError}
|
|
4477
|
+
*/
|
|
4478
|
+
export declare function AILakeServicesOperationsApiAxiosParamCreator_GetAiLakeServiceStatus(serviceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4479
|
+
/**
|
|
4480
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
4481
|
+
* @summary (BETA) List AI Lake services
|
|
4482
|
+
* @param {number} [size]
|
|
4483
|
+
* @param {number} [offset]
|
|
4484
|
+
* @param {Array<string>} [metaInclude]
|
|
4485
|
+
* @param {*} [options] Override http request option.
|
|
4486
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4487
|
+
* @throws {RequiredError}
|
|
4488
|
+
*/
|
|
4489
|
+
export declare function AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(size?: number, offset?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4490
|
+
/**
|
|
4491
|
+
* (BETA) Runs a specific AI Lake service command.
|
|
4492
|
+
* @summary (BETA) Run an AI Lake services command
|
|
4493
|
+
* @param {string} serviceId
|
|
4494
|
+
* @param {string} commandName
|
|
4495
|
+
* @param {RunServiceCommandRequest} runServiceCommandRequest
|
|
4496
|
+
* @param {string} [operationId]
|
|
4497
|
+
* @param {*} [options] Override http request option.
|
|
4498
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4499
|
+
* @throws {RequiredError}
|
|
4500
|
+
*/
|
|
4501
|
+
export declare function AILakeServicesOperationsApiAxiosParamCreator_RunAiLakeServiceCommand(serviceId: string, commandName: string, runServiceCommandRequest: RunServiceCommandRequest, operationId?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4502
|
+
/**
|
|
4503
|
+
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
4504
|
+
* @summary (BETA) Get Long Running Operation details
|
|
4505
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4506
|
+
* @param {string} basePath Base path.
|
|
4507
|
+
* @param {AILakeServicesOperationsApiGetAiLakeOperationRequest} requestParameters Request parameters.
|
|
4508
|
+
* @param {*} [options] Override http request option.
|
|
4509
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4510
|
+
* @throws {RequiredError}
|
|
4511
|
+
*/
|
|
4512
|
+
export declare function AILakeServicesOperationsApi_GetAiLakeOperation(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiGetAiLakeOperationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GetAiLakeOperation200Response>;
|
|
4513
|
+
/**
|
|
4514
|
+
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
4515
|
+
* @summary (BETA) Get AI Lake service status
|
|
4516
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4517
|
+
* @param {string} basePath Base path.
|
|
4518
|
+
* @param {AILakeServicesOperationsApiGetAiLakeServiceStatusRequest} requestParameters Request parameters.
|
|
4519
|
+
* @param {*} [options] Override http request option.
|
|
4520
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4521
|
+
* @throws {RequiredError}
|
|
4522
|
+
*/
|
|
4523
|
+
export declare function AILakeServicesOperationsApi_GetAiLakeServiceStatus(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GetServiceStatusResponse>;
|
|
4524
|
+
/**
|
|
4525
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
4526
|
+
* @summary (BETA) List AI Lake services
|
|
4527
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4528
|
+
* @param {string} basePath Base path.
|
|
4529
|
+
* @param {AILakeServicesOperationsApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
4530
|
+
* @param {*} [options] Override http request option.
|
|
4531
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4532
|
+
* @throws {RequiredError}
|
|
4533
|
+
*/
|
|
4534
|
+
export declare function AILakeServicesOperationsApi_ListAiLakeServices(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ListServicesResponse>;
|
|
4535
|
+
/**
|
|
4536
|
+
* (BETA) Runs a specific AI Lake service command.
|
|
4537
|
+
* @summary (BETA) Run an AI Lake services command
|
|
4538
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4539
|
+
* @param {string} basePath Base path.
|
|
4540
|
+
* @param {AILakeServicesOperationsApiRunAiLakeServiceCommandRequest} requestParameters Request parameters.
|
|
4541
|
+
* @param {*} [options] Override http request option.
|
|
4542
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4543
|
+
* @throws {RequiredError}
|
|
4544
|
+
*/
|
|
4545
|
+
export declare function AILakeServicesOperationsApi_RunAiLakeServiceCommand(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
|
|
4546
|
+
/**
|
|
4547
|
+
* AILakeServicesOperationsApi - interface
|
|
4548
|
+
* @export
|
|
4549
|
+
* @interface AILakeServicesOperationsApi
|
|
4550
|
+
*/
|
|
4551
|
+
export interface AILakeServicesOperationsApiInterface {
|
|
4552
|
+
/**
|
|
4553
|
+
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
4554
|
+
* @summary (BETA) Get Long Running Operation details
|
|
4555
|
+
* @param {AILakeServicesOperationsApiGetAiLakeOperationRequest} requestParameters Request parameters.
|
|
4556
|
+
* @param {*} [options] Override http request option.
|
|
4557
|
+
* @throws {RequiredError}
|
|
4558
|
+
* @memberof AILakeServicesOperationsApiInterface
|
|
4559
|
+
*/
|
|
4560
|
+
getAiLakeOperation(requestParameters: AILakeServicesOperationsApiGetAiLakeOperationRequest, options?: AxiosRequestConfig): AxiosPromise<GetAiLakeOperation200Response>;
|
|
3150
4561
|
/**
|
|
3151
|
-
* (BETA)
|
|
3152
|
-
* @summary (BETA)
|
|
3153
|
-
* @param {
|
|
4562
|
+
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
4563
|
+
* @summary (BETA) Get AI Lake service status
|
|
4564
|
+
* @param {AILakeServicesOperationsApiGetAiLakeServiceStatusRequest} requestParameters Request parameters.
|
|
3154
4565
|
* @param {*} [options] Override http request option.
|
|
3155
4566
|
* @throws {RequiredError}
|
|
3156
|
-
* @memberof
|
|
4567
|
+
* @memberof AILakeServicesOperationsApiInterface
|
|
3157
4568
|
*/
|
|
3158
|
-
|
|
4569
|
+
getAiLakeServiceStatus(requestParameters: AILakeServicesOperationsApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
|
|
3159
4570
|
/**
|
|
3160
|
-
* (BETA)
|
|
3161
|
-
* @summary (BETA)
|
|
3162
|
-
* @param {
|
|
4571
|
+
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
4572
|
+
* @summary (BETA) List AI Lake services
|
|
4573
|
+
* @param {AILakeServicesOperationsApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
3163
4574
|
* @param {*} [options] Override http request option.
|
|
3164
4575
|
* @throws {RequiredError}
|
|
3165
|
-
* @memberof
|
|
4576
|
+
* @memberof AILakeServicesOperationsApiInterface
|
|
3166
4577
|
*/
|
|
3167
|
-
|
|
4578
|
+
listAiLakeServices(requestParameters: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<ListServicesResponse>;
|
|
3168
4579
|
/**
|
|
3169
4580
|
* (BETA) Runs a specific AI Lake service command.
|
|
3170
4581
|
* @summary (BETA) Run an AI Lake services command
|
|
3171
|
-
* @param {
|
|
4582
|
+
* @param {AILakeServicesOperationsApiRunAiLakeServiceCommandRequest} requestParameters Request parameters.
|
|
3172
4583
|
* @param {*} [options] Override http request option.
|
|
3173
4584
|
* @throws {RequiredError}
|
|
3174
|
-
* @memberof
|
|
3175
|
-
*/
|
|
3176
|
-
runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3177
|
-
}
|
|
3178
|
-
/**
|
|
3179
|
-
* Request parameters for deprovisionAiLakeDatabaseInstance operation in AILakeApi.
|
|
3180
|
-
* @export
|
|
3181
|
-
* @interface AILakeApiDeprovisionAiLakeDatabaseInstanceRequest
|
|
3182
|
-
*/
|
|
3183
|
-
export interface AILakeApiDeprovisionAiLakeDatabaseInstanceRequest {
|
|
3184
|
-
/**
|
|
3185
|
-
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3186
|
-
* @type {string}
|
|
3187
|
-
* @memberof AILakeApiDeprovisionAiLakeDatabaseInstance
|
|
3188
|
-
*/
|
|
3189
|
-
readonly instanceId: string;
|
|
3190
|
-
/**
|
|
3191
|
-
*
|
|
3192
|
-
* @type {string}
|
|
3193
|
-
* @memberof AILakeApiDeprovisionAiLakeDatabaseInstance
|
|
3194
|
-
*/
|
|
3195
|
-
readonly operationId?: string;
|
|
3196
|
-
}
|
|
3197
|
-
/**
|
|
3198
|
-
* Request parameters for getAiLakeDatabaseInstance operation in AILakeApi.
|
|
3199
|
-
* @export
|
|
3200
|
-
* @interface AILakeApiGetAiLakeDatabaseInstanceRequest
|
|
3201
|
-
*/
|
|
3202
|
-
export interface AILakeApiGetAiLakeDatabaseInstanceRequest {
|
|
3203
|
-
/**
|
|
3204
|
-
* Database instance identifier. Accepts the database name (preferred) or UUID.
|
|
3205
|
-
* @type {string}
|
|
3206
|
-
* @memberof AILakeApiGetAiLakeDatabaseInstance
|
|
4585
|
+
* @memberof AILakeServicesOperationsApiInterface
|
|
3207
4586
|
*/
|
|
3208
|
-
|
|
4587
|
+
runAiLakeServiceCommand(requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3209
4588
|
}
|
|
3210
4589
|
/**
|
|
3211
|
-
* Request parameters for getAiLakeOperation operation in
|
|
4590
|
+
* Request parameters for getAiLakeOperation operation in AILakeServicesOperationsApi.
|
|
3212
4591
|
* @export
|
|
3213
|
-
* @interface
|
|
4592
|
+
* @interface AILakeServicesOperationsApiGetAiLakeOperationRequest
|
|
3214
4593
|
*/
|
|
3215
|
-
export interface
|
|
4594
|
+
export interface AILakeServicesOperationsApiGetAiLakeOperationRequest {
|
|
3216
4595
|
/**
|
|
3217
4596
|
* Operation ID
|
|
3218
4597
|
* @type {string}
|
|
3219
|
-
* @memberof
|
|
4598
|
+
* @memberof AILakeServicesOperationsApiGetAiLakeOperation
|
|
3220
4599
|
*/
|
|
3221
4600
|
readonly operationId: string;
|
|
3222
4601
|
}
|
|
3223
4602
|
/**
|
|
3224
|
-
* Request parameters for getAiLakeServiceStatus operation in
|
|
4603
|
+
* Request parameters for getAiLakeServiceStatus operation in AILakeServicesOperationsApi.
|
|
3225
4604
|
* @export
|
|
3226
|
-
* @interface
|
|
4605
|
+
* @interface AILakeServicesOperationsApiGetAiLakeServiceStatusRequest
|
|
3227
4606
|
*/
|
|
3228
|
-
export interface
|
|
4607
|
+
export interface AILakeServicesOperationsApiGetAiLakeServiceStatusRequest {
|
|
3229
4608
|
/**
|
|
3230
4609
|
*
|
|
3231
4610
|
* @type {string}
|
|
3232
|
-
* @memberof
|
|
4611
|
+
* @memberof AILakeServicesOperationsApiGetAiLakeServiceStatus
|
|
3233
4612
|
*/
|
|
3234
4613
|
readonly serviceId: string;
|
|
3235
4614
|
}
|
|
3236
4615
|
/**
|
|
3237
|
-
* Request parameters for
|
|
3238
|
-
* @export
|
|
3239
|
-
* @interface AILakeApiListAiLakeDatabaseInstancesRequest
|
|
3240
|
-
*/
|
|
3241
|
-
export interface AILakeApiListAiLakeDatabaseInstancesRequest {
|
|
3242
|
-
/**
|
|
3243
|
-
*
|
|
3244
|
-
* @type {number}
|
|
3245
|
-
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3246
|
-
*/
|
|
3247
|
-
readonly size?: number;
|
|
3248
|
-
/**
|
|
3249
|
-
*
|
|
3250
|
-
* @type {number}
|
|
3251
|
-
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3252
|
-
*/
|
|
3253
|
-
readonly offset?: number;
|
|
3254
|
-
/**
|
|
3255
|
-
*
|
|
3256
|
-
* @type {Array<string>}
|
|
3257
|
-
* @memberof AILakeApiListAiLakeDatabaseInstances
|
|
3258
|
-
*/
|
|
3259
|
-
readonly metaInclude?: Array<string>;
|
|
3260
|
-
}
|
|
3261
|
-
/**
|
|
3262
|
-
* Request parameters for listAiLakeServices operation in AILakeApi.
|
|
4616
|
+
* Request parameters for listAiLakeServices operation in AILakeServicesOperationsApi.
|
|
3263
4617
|
* @export
|
|
3264
|
-
* @interface
|
|
4618
|
+
* @interface AILakeServicesOperationsApiListAiLakeServicesRequest
|
|
3265
4619
|
*/
|
|
3266
|
-
export interface
|
|
4620
|
+
export interface AILakeServicesOperationsApiListAiLakeServicesRequest {
|
|
3267
4621
|
/**
|
|
3268
4622
|
*
|
|
3269
4623
|
* @type {number}
|
|
3270
|
-
* @memberof
|
|
4624
|
+
* @memberof AILakeServicesOperationsApiListAiLakeServices
|
|
3271
4625
|
*/
|
|
3272
4626
|
readonly size?: number;
|
|
3273
4627
|
/**
|
|
3274
4628
|
*
|
|
3275
4629
|
* @type {number}
|
|
3276
|
-
* @memberof
|
|
4630
|
+
* @memberof AILakeServicesOperationsApiListAiLakeServices
|
|
3277
4631
|
*/
|
|
3278
4632
|
readonly offset?: number;
|
|
3279
4633
|
/**
|
|
3280
4634
|
*
|
|
3281
4635
|
* @type {Array<string>}
|
|
3282
|
-
* @memberof
|
|
4636
|
+
* @memberof AILakeServicesOperationsApiListAiLakeServices
|
|
3283
4637
|
*/
|
|
3284
4638
|
readonly metaInclude?: Array<string>;
|
|
3285
4639
|
}
|
|
3286
4640
|
/**
|
|
3287
|
-
* Request parameters for
|
|
3288
|
-
* @export
|
|
3289
|
-
* @interface AILakeApiProvisionAiLakeDatabaseInstanceRequest
|
|
3290
|
-
*/
|
|
3291
|
-
export interface AILakeApiProvisionAiLakeDatabaseInstanceRequest {
|
|
3292
|
-
/**
|
|
3293
|
-
*
|
|
3294
|
-
* @type {ProvisionDatabaseInstanceRequest}
|
|
3295
|
-
* @memberof AILakeApiProvisionAiLakeDatabaseInstance
|
|
3296
|
-
*/
|
|
3297
|
-
readonly provisionDatabaseInstanceRequest: ProvisionDatabaseInstanceRequest;
|
|
3298
|
-
/**
|
|
3299
|
-
*
|
|
3300
|
-
* @type {string}
|
|
3301
|
-
* @memberof AILakeApiProvisionAiLakeDatabaseInstance
|
|
3302
|
-
*/
|
|
3303
|
-
readonly operationId?: string;
|
|
3304
|
-
}
|
|
3305
|
-
/**
|
|
3306
|
-
* Request parameters for runAiLakeServiceCommand operation in AILakeApi.
|
|
4641
|
+
* Request parameters for runAiLakeServiceCommand operation in AILakeServicesOperationsApi.
|
|
3307
4642
|
* @export
|
|
3308
|
-
* @interface
|
|
4643
|
+
* @interface AILakeServicesOperationsApiRunAiLakeServiceCommandRequest
|
|
3309
4644
|
*/
|
|
3310
|
-
export interface
|
|
4645
|
+
export interface AILakeServicesOperationsApiRunAiLakeServiceCommandRequest {
|
|
3311
4646
|
/**
|
|
3312
4647
|
*
|
|
3313
4648
|
* @type {string}
|
|
3314
|
-
* @memberof
|
|
4649
|
+
* @memberof AILakeServicesOperationsApiRunAiLakeServiceCommand
|
|
3315
4650
|
*/
|
|
3316
4651
|
readonly serviceId: string;
|
|
3317
4652
|
/**
|
|
3318
4653
|
*
|
|
3319
4654
|
* @type {string}
|
|
3320
|
-
* @memberof
|
|
4655
|
+
* @memberof AILakeServicesOperationsApiRunAiLakeServiceCommand
|
|
3321
4656
|
*/
|
|
3322
4657
|
readonly commandName: string;
|
|
3323
4658
|
/**
|
|
3324
4659
|
*
|
|
3325
4660
|
* @type {RunServiceCommandRequest}
|
|
3326
|
-
* @memberof
|
|
4661
|
+
* @memberof AILakeServicesOperationsApiRunAiLakeServiceCommand
|
|
3327
4662
|
*/
|
|
3328
4663
|
readonly runServiceCommandRequest: RunServiceCommandRequest;
|
|
3329
4664
|
/**
|
|
3330
4665
|
*
|
|
3331
4666
|
* @type {string}
|
|
3332
|
-
* @memberof
|
|
4667
|
+
* @memberof AILakeServicesOperationsApiRunAiLakeServiceCommand
|
|
3333
4668
|
*/
|
|
3334
4669
|
readonly operationId?: string;
|
|
3335
4670
|
}
|
|
3336
4671
|
/**
|
|
3337
|
-
*
|
|
4672
|
+
* AILakeServicesOperationsApi - object-oriented interface
|
|
3338
4673
|
* @export
|
|
3339
|
-
* @class
|
|
4674
|
+
* @class AILakeServicesOperationsApi
|
|
3340
4675
|
* @extends {BaseAPI}
|
|
3341
4676
|
*/
|
|
3342
|
-
export declare class
|
|
3343
|
-
/**
|
|
3344
|
-
* (BETA) Deletes an existing database in the organization\'s AI Lake. Returns an operation-id in the operation-id header the client can use to poll for the progress.
|
|
3345
|
-
* @summary (BETA) Delete an existing AILake Database instance
|
|
3346
|
-
* @param {AILakeApiDeprovisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
3347
|
-
* @param {*} [options] Override http request option.
|
|
3348
|
-
* @throws {RequiredError}
|
|
3349
|
-
* @memberof AILakeApi
|
|
3350
|
-
*/
|
|
3351
|
-
deprovisionAiLakeDatabaseInstance(requestParameters: AILakeApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3352
|
-
/**
|
|
3353
|
-
* (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
|
|
3354
|
-
* @summary (BETA) Get the specified AILake Database instance
|
|
3355
|
-
* @param {AILakeApiGetAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
3356
|
-
* @param {*} [options] Override http request option.
|
|
3357
|
-
* @throws {RequiredError}
|
|
3358
|
-
* @memberof AILakeApi
|
|
3359
|
-
*/
|
|
3360
|
-
getAiLakeDatabaseInstance(requestParameters: AILakeApiGetAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<DatabaseInstance>;
|
|
4677
|
+
export declare class AILakeServicesOperationsApi extends BaseAPI implements AILakeServicesOperationsApiInterface {
|
|
3361
4678
|
/**
|
|
3362
4679
|
* (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
|
|
3363
4680
|
* @summary (BETA) Get Long Running Operation details
|
|
3364
|
-
* @param {
|
|
4681
|
+
* @param {AILakeServicesOperationsApiGetAiLakeOperationRequest} requestParameters Request parameters.
|
|
3365
4682
|
* @param {*} [options] Override http request option.
|
|
3366
4683
|
* @throws {RequiredError}
|
|
3367
|
-
* @memberof
|
|
4684
|
+
* @memberof AILakeServicesOperationsApi
|
|
3368
4685
|
*/
|
|
3369
|
-
getAiLakeOperation(requestParameters:
|
|
4686
|
+
getAiLakeOperation(requestParameters: AILakeServicesOperationsApiGetAiLakeOperationRequest, options?: AxiosRequestConfig): AxiosPromise<GetAiLakeOperation200Response>;
|
|
3370
4687
|
/**
|
|
3371
4688
|
* (BETA) Returns the status of a service in the organization\'s AI Lake. The status is controller-specific (e.g., available commands, readiness).
|
|
3372
4689
|
* @summary (BETA) Get AI Lake service status
|
|
3373
|
-
* @param {
|
|
3374
|
-
* @param {*} [options] Override http request option.
|
|
3375
|
-
* @throws {RequiredError}
|
|
3376
|
-
* @memberof AILakeApi
|
|
3377
|
-
*/
|
|
3378
|
-
getAiLakeServiceStatus(requestParameters: AILakeApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
|
|
3379
|
-
/**
|
|
3380
|
-
* (BETA) Lists database instances in the organization\'s AI Lake. Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
3381
|
-
* @summary (BETA) List AI Lake Database instances
|
|
3382
|
-
* @param {AILakeApiListAiLakeDatabaseInstancesRequest} requestParameters Request parameters.
|
|
4690
|
+
* @param {AILakeServicesOperationsApiGetAiLakeServiceStatusRequest} requestParameters Request parameters.
|
|
3383
4691
|
* @param {*} [options] Override http request option.
|
|
3384
4692
|
* @throws {RequiredError}
|
|
3385
|
-
* @memberof
|
|
4693
|
+
* @memberof AILakeServicesOperationsApi
|
|
3386
4694
|
*/
|
|
3387
|
-
|
|
4695
|
+
getAiLakeServiceStatus(requestParameters: AILakeServicesOperationsApiGetAiLakeServiceStatusRequest, options?: AxiosRequestConfig): AxiosPromise<GetServiceStatusResponse>;
|
|
3388
4696
|
/**
|
|
3389
4697
|
* (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name). Supports paging via size and offset query parameters. Use metaInclude=page to get total count.
|
|
3390
4698
|
* @summary (BETA) List AI Lake services
|
|
3391
|
-
* @param {
|
|
3392
|
-
* @param {*} [options] Override http request option.
|
|
3393
|
-
* @throws {RequiredError}
|
|
3394
|
-
* @memberof AILakeApi
|
|
3395
|
-
*/
|
|
3396
|
-
listAiLakeServices(requestParameters?: AILakeApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<ListServicesResponse>;
|
|
3397
|
-
/**
|
|
3398
|
-
* (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.
|
|
3399
|
-
* @summary (BETA) Create a new AILake Database instance
|
|
3400
|
-
* @param {AILakeApiProvisionAiLakeDatabaseInstanceRequest} requestParameters Request parameters.
|
|
4699
|
+
* @param {AILakeServicesOperationsApiListAiLakeServicesRequest} requestParameters Request parameters.
|
|
3401
4700
|
* @param {*} [options] Override http request option.
|
|
3402
4701
|
* @throws {RequiredError}
|
|
3403
|
-
* @memberof
|
|
4702
|
+
* @memberof AILakeServicesOperationsApi
|
|
3404
4703
|
*/
|
|
3405
|
-
|
|
4704
|
+
listAiLakeServices(requestParameters?: AILakeServicesOperationsApiListAiLakeServicesRequest, options?: AxiosRequestConfig): AxiosPromise<ListServicesResponse>;
|
|
3406
4705
|
/**
|
|
3407
4706
|
* (BETA) Runs a specific AI Lake service command.
|
|
3408
4707
|
* @summary (BETA) Run an AI Lake services command
|
|
3409
|
-
* @param {
|
|
4708
|
+
* @param {AILakeServicesOperationsApiRunAiLakeServiceCommandRequest} requestParameters Request parameters.
|
|
3410
4709
|
* @param {*} [options] Override http request option.
|
|
3411
4710
|
* @throws {RequiredError}
|
|
3412
|
-
* @memberof
|
|
4711
|
+
* @memberof AILakeServicesOperationsApi
|
|
3413
4712
|
*/
|
|
3414
|
-
runAiLakeServiceCommand(requestParameters:
|
|
4713
|
+
runAiLakeServiceCommand(requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
|
|
3415
4714
|
}
|
|
3416
4715
|
/**
|
|
3417
4716
|
* (BETA) Combines multiple use cases such as search, create visualizations, ...
|
|
@@ -3574,6 +4873,18 @@ export declare function ActionsApiAxiosParamCreator_ComputeLabelElementsPost(wor
|
|
|
3574
4873
|
* @throws {RequiredError}
|
|
3575
4874
|
*/
|
|
3576
4875
|
export declare function ActionsApiAxiosParamCreator_ComputeReport(workspaceId: string, afmExecution: AfmExecution, skipCache?: boolean, timestamp?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4876
|
+
/**
|
|
4877
|
+
* (BETA) Fetches a stored visualization object by ID, converts it to an AFM execution, and returns a link to the result. Optionally accepts additional AFM filters merged on top of the visualization\'s own filters.
|
|
4878
|
+
* @summary (BETA) Executes a visualization object and returns link to the result
|
|
4879
|
+
* @param {string} workspaceId Workspace identifier
|
|
4880
|
+
* @param {string} visualizationObjectId
|
|
4881
|
+
* @param {boolean} [skipCache] Ignore all caches during execution of current request.
|
|
4882
|
+
* @param {VisualizationObjectExecution} [visualizationObjectExecution]
|
|
4883
|
+
* @param {*} [options] Override http request option.
|
|
4884
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4885
|
+
* @throws {RequiredError}
|
|
4886
|
+
*/
|
|
4887
|
+
export declare function ActionsApiAxiosParamCreator_ComputeReportForVisualizationObject(workspaceId: string, visualizationObjectId: string, skipCache?: boolean, visualizationObjectExecution?: VisualizationObjectExecution, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3577
4888
|
/**
|
|
3578
4889
|
* (BETA) Returns map of lists of attributes that can be used as descendants of the given attributes.
|
|
3579
4890
|
* @summary (BETA) Valid descendants
|
|
@@ -4052,6 +5363,17 @@ export declare function ActionsApi_ComputeLabelElementsPost(axios: AxiosInstance
|
|
|
4052
5363
|
* @throws {RequiredError}
|
|
4053
5364
|
*/
|
|
4054
5365
|
export declare function ActionsApi_ComputeReport(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiComputeReportRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AfmExecutionResponse>;
|
|
5366
|
+
/**
|
|
5367
|
+
* (BETA) Fetches a stored visualization object by ID, converts it to an AFM execution, and returns a link to the result. Optionally accepts additional AFM filters merged on top of the visualization\'s own filters.
|
|
5368
|
+
* @summary (BETA) Executes a visualization object and returns link to the result
|
|
5369
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
5370
|
+
* @param {string} basePath Base path.
|
|
5371
|
+
* @param {ActionsApiComputeReportForVisualizationObjectRequest} requestParameters Request parameters.
|
|
5372
|
+
* @param {*} [options] Override http request option.
|
|
5373
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
5374
|
+
* @throws {RequiredError}
|
|
5375
|
+
*/
|
|
5376
|
+
export declare function ActionsApi_ComputeReportForVisualizationObject(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiComputeReportForVisualizationObjectRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AfmExecutionResponse>;
|
|
4055
5377
|
/**
|
|
4056
5378
|
* (BETA) Returns map of lists of attributes that can be used as descendants of the given attributes.
|
|
4057
5379
|
* @summary (BETA) Valid descendants
|
|
@@ -4533,6 +5855,15 @@ export interface ActionsApiInterface {
|
|
|
4533
5855
|
* @memberof ActionsApiInterface
|
|
4534
5856
|
*/
|
|
4535
5857
|
computeReport(requestParameters: ActionsApiComputeReportRequest, options?: AxiosRequestConfig): AxiosPromise<AfmExecutionResponse>;
|
|
5858
|
+
/**
|
|
5859
|
+
* (BETA) Fetches a stored visualization object by ID, converts it to an AFM execution, and returns a link to the result. Optionally accepts additional AFM filters merged on top of the visualization\'s own filters.
|
|
5860
|
+
* @summary (BETA) Executes a visualization object and returns link to the result
|
|
5861
|
+
* @param {ActionsApiComputeReportForVisualizationObjectRequest} requestParameters Request parameters.
|
|
5862
|
+
* @param {*} [options] Override http request option.
|
|
5863
|
+
* @throws {RequiredError}
|
|
5864
|
+
* @memberof ActionsApiInterface
|
|
5865
|
+
*/
|
|
5866
|
+
computeReportForVisualizationObject(requestParameters: ActionsApiComputeReportForVisualizationObjectRequest, options?: AxiosRequestConfig): AxiosPromise<AfmExecutionResponse>;
|
|
4536
5867
|
/**
|
|
4537
5868
|
* (BETA) Returns map of lists of attributes that can be used as descendants of the given attributes.
|
|
4538
5869
|
* @summary (BETA) Valid descendants
|
|
@@ -5171,6 +6502,37 @@ export interface ActionsApiComputeReportRequest {
|
|
|
5171
6502
|
*/
|
|
5172
6503
|
readonly timestamp?: string;
|
|
5173
6504
|
}
|
|
6505
|
+
/**
|
|
6506
|
+
* Request parameters for computeReportForVisualizationObject operation in ActionsApi.
|
|
6507
|
+
* @export
|
|
6508
|
+
* @interface ActionsApiComputeReportForVisualizationObjectRequest
|
|
6509
|
+
*/
|
|
6510
|
+
export interface ActionsApiComputeReportForVisualizationObjectRequest {
|
|
6511
|
+
/**
|
|
6512
|
+
* Workspace identifier
|
|
6513
|
+
* @type {string}
|
|
6514
|
+
* @memberof ActionsApiComputeReportForVisualizationObject
|
|
6515
|
+
*/
|
|
6516
|
+
readonly workspaceId: string;
|
|
6517
|
+
/**
|
|
6518
|
+
*
|
|
6519
|
+
* @type {string}
|
|
6520
|
+
* @memberof ActionsApiComputeReportForVisualizationObject
|
|
6521
|
+
*/
|
|
6522
|
+
readonly visualizationObjectId: string;
|
|
6523
|
+
/**
|
|
6524
|
+
* Ignore all caches during execution of current request.
|
|
6525
|
+
* @type {boolean}
|
|
6526
|
+
* @memberof ActionsApiComputeReportForVisualizationObject
|
|
6527
|
+
*/
|
|
6528
|
+
readonly skipCache?: boolean;
|
|
6529
|
+
/**
|
|
6530
|
+
*
|
|
6531
|
+
* @type {VisualizationObjectExecution}
|
|
6532
|
+
* @memberof ActionsApiComputeReportForVisualizationObject
|
|
6533
|
+
*/
|
|
6534
|
+
readonly visualizationObjectExecution?: VisualizationObjectExecution;
|
|
6535
|
+
}
|
|
5174
6536
|
/**
|
|
5175
6537
|
* Request parameters for computeValidDescendants operation in ActionsApi.
|
|
5176
6538
|
* @export
|
|
@@ -5927,6 +7289,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
5927
7289
|
* @memberof ActionsApi
|
|
5928
7290
|
*/
|
|
5929
7291
|
computeReport(requestParameters: ActionsApiComputeReportRequest, options?: AxiosRequestConfig): AxiosPromise<AfmExecutionResponse>;
|
|
7292
|
+
/**
|
|
7293
|
+
* (BETA) Fetches a stored visualization object by ID, converts it to an AFM execution, and returns a link to the result. Optionally accepts additional AFM filters merged on top of the visualization\'s own filters.
|
|
7294
|
+
* @summary (BETA) Executes a visualization object and returns link to the result
|
|
7295
|
+
* @param {ActionsApiComputeReportForVisualizationObjectRequest} requestParameters Request parameters.
|
|
7296
|
+
* @param {*} [options] Override http request option.
|
|
7297
|
+
* @throws {RequiredError}
|
|
7298
|
+
* @memberof ActionsApi
|
|
7299
|
+
*/
|
|
7300
|
+
computeReportForVisualizationObject(requestParameters: ActionsApiComputeReportForVisualizationObjectRequest, options?: AxiosRequestConfig): AxiosPromise<AfmExecutionResponse>;
|
|
5930
7301
|
/**
|
|
5931
7302
|
* (BETA) Returns map of lists of attributes that can be used as descendants of the given attributes.
|
|
5932
7303
|
* @summary (BETA) Valid descendants
|
|
@@ -6263,6 +7634,18 @@ export declare function ComputationApiAxiosParamCreator_ComputeLabelElementsPost
|
|
|
6263
7634
|
* @throws {RequiredError}
|
|
6264
7635
|
*/
|
|
6265
7636
|
export declare function ComputationApiAxiosParamCreator_ComputeReport(workspaceId: string, afmExecution: AfmExecution, skipCache?: boolean, timestamp?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
7637
|
+
/**
|
|
7638
|
+
* (BETA) Fetches a stored visualization object by ID, converts it to an AFM execution, and returns a link to the result. Optionally accepts additional AFM filters merged on top of the visualization\'s own filters.
|
|
7639
|
+
* @summary (BETA) Executes a visualization object and returns link to the result
|
|
7640
|
+
* @param {string} workspaceId Workspace identifier
|
|
7641
|
+
* @param {string} visualizationObjectId
|
|
7642
|
+
* @param {boolean} [skipCache] Ignore all caches during execution of current request.
|
|
7643
|
+
* @param {VisualizationObjectExecution} [visualizationObjectExecution]
|
|
7644
|
+
* @param {*} [options] Override http request option.
|
|
7645
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7646
|
+
* @throws {RequiredError}
|
|
7647
|
+
*/
|
|
7648
|
+
export declare function ComputationApiAxiosParamCreator_ComputeReportForVisualizationObject(workspaceId: string, visualizationObjectId: string, skipCache?: boolean, visualizationObjectExecution?: VisualizationObjectExecution, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
6266
7649
|
/**
|
|
6267
7650
|
* (BETA) Returns map of lists of attributes that can be used as descendants of the given attributes.
|
|
6268
7651
|
* @summary (BETA) Valid descendants
|
|
@@ -6430,6 +7813,17 @@ export declare function ComputationApi_ComputeLabelElementsPost(axios: AxiosInst
|
|
|
6430
7813
|
* @throws {RequiredError}
|
|
6431
7814
|
*/
|
|
6432
7815
|
export declare function ComputationApi_ComputeReport(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiComputeReportRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AfmExecutionResponse>;
|
|
7816
|
+
/**
|
|
7817
|
+
* (BETA) Fetches a stored visualization object by ID, converts it to an AFM execution, and returns a link to the result. Optionally accepts additional AFM filters merged on top of the visualization\'s own filters.
|
|
7818
|
+
* @summary (BETA) Executes a visualization object and returns link to the result
|
|
7819
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
7820
|
+
* @param {string} basePath Base path.
|
|
7821
|
+
* @param {ComputationApiComputeReportForVisualizationObjectRequest} requestParameters Request parameters.
|
|
7822
|
+
* @param {*} [options] Override http request option.
|
|
7823
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
7824
|
+
* @throws {RequiredError}
|
|
7825
|
+
*/
|
|
7826
|
+
export declare function ComputationApi_ComputeReportForVisualizationObject(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiComputeReportForVisualizationObjectRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AfmExecutionResponse>;
|
|
6433
7827
|
/**
|
|
6434
7828
|
* (BETA) Returns map of lists of attributes that can be used as descendants of the given attributes.
|
|
6435
7829
|
* @summary (BETA) Valid descendants
|
|
@@ -6591,6 +7985,15 @@ export interface ComputationApiInterface {
|
|
|
6591
7985
|
* @memberof ComputationApiInterface
|
|
6592
7986
|
*/
|
|
6593
7987
|
computeReport(requestParameters: ComputationApiComputeReportRequest, options?: AxiosRequestConfig): AxiosPromise<AfmExecutionResponse>;
|
|
7988
|
+
/**
|
|
7989
|
+
* (BETA) Fetches a stored visualization object by ID, converts it to an AFM execution, and returns a link to the result. Optionally accepts additional AFM filters merged on top of the visualization\'s own filters.
|
|
7990
|
+
* @summary (BETA) Executes a visualization object and returns link to the result
|
|
7991
|
+
* @param {ComputationApiComputeReportForVisualizationObjectRequest} requestParameters Request parameters.
|
|
7992
|
+
* @param {*} [options] Override http request option.
|
|
7993
|
+
* @throws {RequiredError}
|
|
7994
|
+
* @memberof ComputationApiInterface
|
|
7995
|
+
*/
|
|
7996
|
+
computeReportForVisualizationObject(requestParameters: ComputationApiComputeReportForVisualizationObjectRequest, options?: AxiosRequestConfig): AxiosPromise<AfmExecutionResponse>;
|
|
6594
7997
|
/**
|
|
6595
7998
|
* (BETA) Returns map of lists of attributes that can be used as descendants of the given attributes.
|
|
6596
7999
|
* @summary (BETA) Valid descendants
|
|
@@ -6807,6 +8210,37 @@ export interface ComputationApiComputeReportRequest {
|
|
|
6807
8210
|
*/
|
|
6808
8211
|
readonly timestamp?: string;
|
|
6809
8212
|
}
|
|
8213
|
+
/**
|
|
8214
|
+
* Request parameters for computeReportForVisualizationObject operation in ComputationApi.
|
|
8215
|
+
* @export
|
|
8216
|
+
* @interface ComputationApiComputeReportForVisualizationObjectRequest
|
|
8217
|
+
*/
|
|
8218
|
+
export interface ComputationApiComputeReportForVisualizationObjectRequest {
|
|
8219
|
+
/**
|
|
8220
|
+
* Workspace identifier
|
|
8221
|
+
* @type {string}
|
|
8222
|
+
* @memberof ComputationApiComputeReportForVisualizationObject
|
|
8223
|
+
*/
|
|
8224
|
+
readonly workspaceId: string;
|
|
8225
|
+
/**
|
|
8226
|
+
*
|
|
8227
|
+
* @type {string}
|
|
8228
|
+
* @memberof ComputationApiComputeReportForVisualizationObject
|
|
8229
|
+
*/
|
|
8230
|
+
readonly visualizationObjectId: string;
|
|
8231
|
+
/**
|
|
8232
|
+
* Ignore all caches during execution of current request.
|
|
8233
|
+
* @type {boolean}
|
|
8234
|
+
* @memberof ComputationApiComputeReportForVisualizationObject
|
|
8235
|
+
*/
|
|
8236
|
+
readonly skipCache?: boolean;
|
|
8237
|
+
/**
|
|
8238
|
+
*
|
|
8239
|
+
* @type {VisualizationObjectExecution}
|
|
8240
|
+
* @memberof ComputationApiComputeReportForVisualizationObject
|
|
8241
|
+
*/
|
|
8242
|
+
readonly visualizationObjectExecution?: VisualizationObjectExecution;
|
|
8243
|
+
}
|
|
6810
8244
|
/**
|
|
6811
8245
|
* Request parameters for computeValidDescendants operation in ComputationApi.
|
|
6812
8246
|
* @export
|
|
@@ -7121,6 +8555,15 @@ export declare class ComputationApi extends BaseAPI implements ComputationApiInt
|
|
|
7121
8555
|
* @memberof ComputationApi
|
|
7122
8556
|
*/
|
|
7123
8557
|
computeReport(requestParameters: ComputationApiComputeReportRequest, options?: AxiosRequestConfig): AxiosPromise<AfmExecutionResponse>;
|
|
8558
|
+
/**
|
|
8559
|
+
* (BETA) Fetches a stored visualization object by ID, converts it to an AFM execution, and returns a link to the result. Optionally accepts additional AFM filters merged on top of the visualization\'s own filters.
|
|
8560
|
+
* @summary (BETA) Executes a visualization object and returns link to the result
|
|
8561
|
+
* @param {ComputationApiComputeReportForVisualizationObjectRequest} requestParameters Request parameters.
|
|
8562
|
+
* @param {*} [options] Override http request option.
|
|
8563
|
+
* @throws {RequiredError}
|
|
8564
|
+
* @memberof ComputationApi
|
|
8565
|
+
*/
|
|
8566
|
+
computeReportForVisualizationObject(requestParameters: ComputationApiComputeReportForVisualizationObjectRequest, options?: AxiosRequestConfig): AxiosPromise<AfmExecutionResponse>;
|
|
7124
8567
|
/**
|
|
7125
8568
|
* (BETA) Returns map of lists of attributes that can be used as descendants of the given attributes.
|
|
7126
8569
|
* @summary (BETA) Valid descendants
|