@gooddata/api-client-tiger 11.52.0-alpha.6 → 11.52.0-alpha.7

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.
@@ -263,7 +263,9 @@ export interface AggregateKeyConfig {
263
263
  * Key columns. Defaults to first inferred column.
264
264
  */
265
265
  'columns'?: Array<string>;
266
+ 'type': AggregateKeyConfigTypeEnum;
266
267
  }
268
+ export type AggregateKeyConfigTypeEnum = 'aggregate';
267
269
  /**
268
270
  * AI usage metadata returned after the interaction (e.g. current query count vs. entitlement limit).
269
271
  */
@@ -599,7 +601,7 @@ export interface ChangeAnalysisParams {
599
601
  /**
600
602
  * Optional filters to apply
601
603
  */
602
- 'filters': Array<ChangeAnalysisParamsFiltersInner>;
604
+ 'filters': Array<FilterDefinition>;
603
605
  'measure': MeasureItem;
604
606
  /**
605
607
  * The title of the measure being analyzed
@@ -614,10 +616,6 @@ export interface ChangeAnalysisParams {
614
616
  */
615
617
  'useSmartAttributeSelection': boolean;
616
618
  }
617
- /**
618
- * @type ChangeAnalysisParamsFiltersInner
619
- */
620
- export type ChangeAnalysisParamsFiltersInner = AbstractMeasureValueFilter | FilterDefinitionForSimpleMeasure | InlineFilterDefinition;
621
619
  /**
622
620
  * Request for change analysis computation
623
621
  */
@@ -642,7 +640,7 @@ export interface ChangeAnalysisRequest {
642
640
  /**
643
641
  * Optional filters to apply.
644
642
  */
645
- 'filters'?: Array<ChangeAnalysisRequestFiltersInner>;
643
+ 'filters'?: Array<FilterDefinition>;
646
644
  /**
647
645
  * Only include attributes with at least one of these tags. If empty, no inclusion filter is applied. This filter applies to both auto-discovered and explicitly provided attributes.
648
646
  */
@@ -657,10 +655,6 @@ export interface ChangeAnalysisRequest {
657
655
  */
658
656
  'useSmartAttributeSelection'?: boolean;
659
657
  }
660
- /**
661
- * @type ChangeAnalysisRequestFiltersInner
662
- */
663
- export type ChangeAnalysisRequestFiltersInner = AbstractMeasureValueFilter | FilterDefinitionForSimpleMeasure | InlineFilterDefinition;
664
658
  /**
665
659
  * Response for change analysis computation
666
660
  */
@@ -911,7 +905,9 @@ export interface ColumnPartitionConfig {
911
905
  * Columns to partition by.
912
906
  */
913
907
  'columns': Array<string>;
908
+ 'type': ColumnPartitionConfigTypeEnum;
914
909
  }
910
+ export type ColumnPartitionConfigTypeEnum = 'column';
915
911
  /**
916
912
  * Condition that compares the metric value to a given constant value using a comparison operator.
917
913
  */
@@ -956,7 +952,7 @@ export interface CompoundMeasureValueFilterCompoundMeasureValueFilter {
956
952
  /**
957
953
  * List of conditions to apply. Conditions are combined with OR logic. Each condition can be either a comparison (e.g., > 100) or a range (e.g., BETWEEN 10 AND 50). If empty, no filtering is applied and all rows are returned.
958
954
  */
959
- 'conditions': Array<MeasureValueCondition>;
955
+ 'conditions'?: Array<MeasureValueCondition>;
960
956
  /**
961
957
  * References to the attributes to be used when filtering.
962
958
  */
@@ -990,13 +986,13 @@ export interface CreatePipeTableRequest {
990
986
  'columnOverrides'?: {
991
987
  [key: string]: string;
992
988
  };
993
- 'distributionConfig'?: DistributionConfig;
994
- 'keyConfig'?: KeyConfig;
989
+ 'distributionConfig'?: CreatePipeTableRequestDistributionConfig;
990
+ 'keyConfig'?: CreatePipeTableRequestKeyConfig;
995
991
  /**
996
992
  * Cap VARCHAR(N) to this length when N exceeds it. 0 = no cap.
997
993
  */
998
994
  'maxVarcharLength'?: number;
999
- 'partitionConfig'?: PartitionConfig;
995
+ 'partitionConfig'?: CreatePipeTableRequestPartitionConfig;
1000
996
  /**
1001
997
  * 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.
1002
998
  */
@@ -1020,6 +1016,18 @@ export interface CreatePipeTableRequest {
1020
1016
  [key: string]: string;
1021
1017
  };
1022
1018
  }
1019
+ /**
1020
+ * @type CreatePipeTableRequestDistributionConfig
1021
+ */
1022
+ export type CreatePipeTableRequestDistributionConfig = HashDistributionConfig | RandomDistributionConfig;
1023
+ /**
1024
+ * @type CreatePipeTableRequestKeyConfig
1025
+ */
1026
+ export type CreatePipeTableRequestKeyConfig = AggregateKeyConfig | DuplicateKeyConfig | PrimaryKeyConfig | UniqueKeyConfig;
1027
+ /**
1028
+ * @type CreatePipeTableRequestPartitionConfig
1029
+ */
1030
+ export type CreatePipeTableRequestPartitionConfig = ColumnPartitionConfig | DateTruncPartitionConfig | TimeSlicePartitionConfig;
1023
1031
  /**
1024
1032
  * List of created visualization objects
1025
1033
  */
@@ -1062,7 +1070,7 @@ export type CreatedVisualizationVisualizationTypeEnum = 'TABLE' | 'HEADLINE' | '
1062
1070
  /**
1063
1071
  * @type CreatedVisualizationFiltersInner
1064
1072
  */
1065
- export type CreatedVisualizationFiltersInner = AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter | RankingFilter;
1073
+ export type CreatedVisualizationFiltersInner = AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter | GenAiRankingFilter;
1066
1074
  /**
1067
1075
  * Visualization definitions created by AI.
1068
1076
  */
@@ -1073,6 +1081,7 @@ export interface CreatedVisualizations {
1073
1081
  'objects': Array<CreatedVisualization>;
1074
1082
  /**
1075
1083
  * DEPRECATED: Use top-level reasoning.steps instead. Reasoning from LLM. Description of how and why the answer was generated.
1084
+ * @deprecated
1076
1085
  */
1077
1086
  'reasoning': string;
1078
1087
  /**
@@ -1194,11 +1203,13 @@ export interface DateTruncPartitionConfig {
1194
1203
  * Column to partition on.
1195
1204
  */
1196
1205
  'column': string;
1206
+ 'type': DateTruncPartitionConfigTypeEnum;
1197
1207
  /**
1198
1208
  * Date/time unit for partition granularity
1199
1209
  */
1200
1210
  'unit': DateTruncPartitionConfigUnitEnum;
1201
1211
  }
1212
+ export type DateTruncPartitionConfigTypeEnum = 'dateTrunc';
1202
1213
  export type DateTruncPartitionConfigUnitEnum = 'year' | 'quarter' | 'month' | 'week' | 'day' | 'hour' | 'minute' | 'second' | 'millisecond' | 'microsecond';
1203
1214
  /**
1204
1215
  * Filter definition type specified by label and values.
@@ -1287,7 +1298,9 @@ export interface DuplicateKeyConfig {
1287
1298
  * Key columns. Defaults to first inferred column.
1288
1299
  */
1289
1300
  'columns'?: Array<string>;
1301
+ 'type': DuplicateKeyConfigTypeEnum;
1290
1302
  }
1303
+ export type DuplicateKeyConfigTypeEnum = 'duplicate';
1291
1304
  /**
1292
1305
  * List of returned elements.
1293
1306
  */
@@ -1534,8 +1547,10 @@ export interface ExecutionSettings {
1534
1547
  * Operation that has failed
1535
1548
  */
1536
1549
  export interface FailedOperation extends Operation {
1550
+ 'status': FailedOperationStatusEnum;
1537
1551
  'error': OperationError;
1538
1552
  }
1553
+ export type FailedOperationStatusEnum = 'failed';
1539
1554
  export interface FeedbackRequestDto {
1540
1555
  'sentiment': FeedbackRequestDtoSentimentEnum;
1541
1556
  }
@@ -1608,9 +1623,17 @@ export interface FoundObjects {
1608
1623
  'objects': Array<SearchResultObject>;
1609
1624
  /**
1610
1625
  * DEPRECATED: Use top-level reasoning.steps instead. Reasoning from LLM. Description of how and why the answer was generated.
1626
+ * @deprecated
1611
1627
  */
1612
1628
  'reasoning': string;
1613
1629
  }
1630
+ export interface GenAiRankingFilter {
1631
+ 'dimensionality'?: Array<string>;
1632
+ 'measures': Array<string>;
1633
+ 'operator': GenAiRankingFilterOperatorEnum;
1634
+ 'value': number;
1635
+ }
1636
+ export type GenAiRankingFilterOperatorEnum = 'TOP' | 'BOTTOM';
1614
1637
  export interface GenerateDescriptionRequest {
1615
1638
  /**
1616
1639
  * Identifier of the object to describe
@@ -1710,7 +1733,9 @@ export interface HashDistributionConfig {
1710
1733
  * Columns to distribute by. Defaults to first column.
1711
1734
  */
1712
1735
  'columns'?: Array<string>;
1736
+ 'type': HashDistributionConfigTypeEnum;
1713
1737
  }
1738
+ export type HashDistributionConfigTypeEnum = 'hash';
1714
1739
  /**
1715
1740
  * Contains the information specific for a group of headers. These groups correlate to attributes and metric groups.
1716
1741
  */
@@ -1770,7 +1795,9 @@ export interface InsightWidgetDescriptor {
1770
1795
  * Widget object ID.
1771
1796
  */
1772
1797
  'widgetId': string;
1798
+ 'widgetType': InsightWidgetDescriptorWidgetTypeEnum;
1773
1799
  }
1800
+ export type InsightWidgetDescriptorWidgetTypeEnum = 'insight';
1774
1801
  /**
1775
1802
  * JSON:API-compatible single-resource response envelope
1776
1803
  */
@@ -2022,12 +2049,8 @@ export interface KnowledgeRecommendationsResponseDto {
2022
2049
  'status': string;
2023
2050
  }
2024
2051
  export interface ListLlmProviderModelsRequest {
2025
- 'providerConfig': ListLlmProviderModelsRequestProviderConfig;
2052
+ 'providerConfig': LlmProviderConfig;
2026
2053
  }
2027
- /**
2028
- * @type ListLlmProviderModelsRequestProviderConfig
2029
- */
2030
- export type ListLlmProviderModelsRequestProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
2031
2054
  export interface ListLlmProviderModelsResponse {
2032
2055
  /**
2033
2056
  * Message about the listing result.
@@ -2400,7 +2423,7 @@ export interface OutlierDetectionRequest {
2400
2423
  /**
2401
2424
  * Various filter types to filter the execution result.
2402
2425
  */
2403
- 'filters': Array<OutlierDetectionRequestFiltersInner>;
2426
+ 'filters'?: Array<FilterDefinition>;
2404
2427
  /**
2405
2428
  * Date granularity for anomaly detection. Only time-based granularities are supported (HOUR, DAY, WEEK, MONTH, QUARTER, YEAR).
2406
2429
  */
@@ -2413,10 +2436,6 @@ export interface OutlierDetectionRequest {
2413
2436
  }
2414
2437
  export type OutlierDetectionRequestGranularityEnum = 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
2415
2438
  export type OutlierDetectionRequestSensitivityEnum = 'LOW' | 'MEDIUM' | 'HIGH';
2416
- /**
2417
- * @type OutlierDetectionRequestFiltersInner
2418
- */
2419
- export type OutlierDetectionRequestFiltersInner = AbstractMeasureValueFilter | FilterDefinitionForSimpleMeasure | InlineFilterDefinition;
2420
2439
  export interface OutlierDetectionResponse {
2421
2440
  'links': ExecutionLinks;
2422
2441
  }
@@ -2474,7 +2493,9 @@ export interface PartitionConfig {
2474
2493
  * Operation that is still pending
2475
2494
  */
2476
2495
  export interface PendingOperation extends Operation {
2496
+ 'status': PendingOperationStatusEnum;
2477
2497
  }
2498
+ export type PendingOperationStatusEnum = 'pending';
2478
2499
  /**
2479
2500
  * Full details of a pipe-backed OLAP table
2480
2501
  */
@@ -2628,7 +2649,9 @@ export interface PrimaryKeyConfig {
2628
2649
  * Key columns. Defaults to first inferred column.
2629
2650
  */
2630
2651
  'columns'?: Array<string>;
2652
+ 'type': PrimaryKeyConfigTypeEnum;
2631
2653
  }
2654
+ export type PrimaryKeyConfigTypeEnum = 'primary';
2632
2655
  /**
2633
2656
  * Request to provision a new AILake Database instance
2634
2657
  */
@@ -2722,7 +2745,9 @@ export interface RandomDistributionConfig {
2722
2745
  * Number of random distribution buckets. Defaults to 1.
2723
2746
  */
2724
2747
  'buckets'?: number;
2748
+ 'type': RandomDistributionConfigTypeEnum;
2725
2749
  }
2750
+ export type RandomDistributionConfigTypeEnum = 'random';
2726
2751
  /**
2727
2752
  * Condition that checks if the metric value is within a given range.
2728
2753
  */
@@ -2944,7 +2969,9 @@ export interface RichTextWidgetDescriptor {
2944
2969
  * Widget object ID.
2945
2970
  */
2946
2971
  'widgetId': string;
2972
+ 'widgetType': RichTextWidgetDescriptorWidgetTypeEnum;
2947
2973
  }
2974
+ export type RichTextWidgetDescriptorWidgetTypeEnum = 'richText';
2948
2975
  /**
2949
2976
  * Question -> Use Case routing. May contain final answer is a special use case is not required.
2950
2977
  */
@@ -3072,6 +3099,7 @@ export interface SearchResult {
3072
3099
  'error'?: ErrorInfo;
3073
3100
  /**
3074
3101
  * DEPRECATED: Use top-level reasoning.steps instead. If something is not working properly this field will contain explanation.
3102
+ * @deprecated
3075
3103
  */
3076
3104
  'reasoning': string;
3077
3105
  'relationships': Array<SearchRelationshipObject>;
@@ -3233,11 +3261,13 @@ export type SortKeyValueValueDirectionEnum = 'ASC' | 'DESC';
3233
3261
  * Operation that has succeeded
3234
3262
  */
3235
3263
  export interface SucceededOperation extends Operation {
3264
+ 'status': SucceededOperationStatusEnum;
3236
3265
  /**
3237
3266
  * Operation-specific result payload, can be missing for operations like delete
3238
3267
  */
3239
3268
  'result'?: object;
3240
3269
  }
3270
+ export type SucceededOperationStatusEnum = 'succeeded';
3241
3271
  /**
3242
3272
  * List of suggestions for next steps. Filled when no visualization was created, suggests alternatives.
3243
3273
  */
@@ -3256,23 +3286,15 @@ export interface TestLlmProviderByIdRequest {
3256
3286
  * Models overrides.
3257
3287
  */
3258
3288
  'models'?: Array<LlmModel>;
3259
- 'providerConfig'?: TestLlmProviderByIdRequestProviderConfig;
3289
+ 'providerConfig'?: LlmProviderConfig;
3260
3290
  }
3261
- /**
3262
- * @type TestLlmProviderByIdRequestProviderConfig
3263
- */
3264
- export type TestLlmProviderByIdRequestProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
3265
3291
  export interface TestLlmProviderDefinitionRequest {
3266
3292
  /**
3267
3293
  * Models to test.
3268
3294
  */
3269
3295
  'models'?: Array<LlmModel>;
3270
- 'providerConfig': TestLlmProviderDefinitionRequestProviderConfig;
3296
+ 'providerConfig': LlmProviderConfig;
3271
3297
  }
3272
- /**
3273
- * @type TestLlmProviderDefinitionRequestProviderConfig
3274
- */
3275
- export type TestLlmProviderDefinitionRequestProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
3276
3298
  export interface TestLlmProviderResponse {
3277
3299
  /**
3278
3300
  * Per-model test results.
@@ -3308,11 +3330,13 @@ export interface TimeSlicePartitionConfig {
3308
3330
  * How many units per slice.
3309
3331
  */
3310
3332
  'slices': number;
3333
+ 'type': TimeSlicePartitionConfigTypeEnum;
3311
3334
  /**
3312
3335
  * Date/time unit for partition granularity
3313
3336
  */
3314
3337
  'unit': TimeSlicePartitionConfigUnitEnum;
3315
3338
  }
3339
+ export type TimeSlicePartitionConfigTypeEnum = 'timeSlice';
3316
3340
  export type TimeSlicePartitionConfigUnitEnum = 'year' | 'quarter' | 'month' | 'week' | 'day' | 'hour' | 'minute' | 'second' | 'millisecond' | 'microsecond';
3317
3341
  /**
3318
3342
  * Definition of a total. There are two types of totals: grand totals and subtotals. Grand total data will be returned in a separate section of the result structure while subtotals are fully integrated into the main result data. The mechanism for this distinction is automatic and it\'s described in `TotalDimension`
@@ -3457,7 +3481,9 @@ export interface UniqueKeyConfig {
3457
3481
  * Key columns. Defaults to first inferred column.
3458
3482
  */
3459
3483
  'columns'?: Array<string>;
3484
+ 'type': UniqueKeyConfigTypeEnum;
3460
3485
  }
3486
+ export type UniqueKeyConfigTypeEnum = 'unique';
3461
3487
  /**
3462
3488
  * Request to update the data source associated with an AI Lake Database instance
3463
3489
  */
@@ -3553,7 +3579,9 @@ export interface VisualizationSwitcherWidgetDescriptor {
3553
3579
  * Widget object ID.
3554
3580
  */
3555
3581
  'widgetId': string;
3582
+ 'widgetType': VisualizationSwitcherWidgetDescriptorWidgetTypeEnum;
3556
3583
  }
3584
+ export type VisualizationSwitcherWidgetDescriptorWidgetTypeEnum = 'visualizationSwitcher';
3557
3585
  /**
3558
3586
  * Measure adjustments for this scenario
3559
3587
  */
@@ -3601,15 +3629,11 @@ export interface WhatIfScenarioItem {
3601
3629
  * Descriptor for a widget on the dashboard.
3602
3630
  */
3603
3631
  export interface WidgetDescriptor {
3604
- 'filters'?: Array<WidgetDescriptorFiltersInner>;
3632
+ 'filters'?: Array<FilterDefinition>;
3605
3633
  'title': string;
3606
3634
  'widgetId': string;
3607
3635
  'widgetType': string;
3608
3636
  }
3609
- /**
3610
- * @type WidgetDescriptorFiltersInner
3611
- */
3612
- export type WidgetDescriptorFiltersInner = AbstractMeasureValueFilter | FilterDefinitionForSimpleMeasure | InlineFilterDefinition;
3613
3637
  export interface WorkflowDashboardSummaryRequestDto {
3614
3638
  'customUserPrompt'?: string;
3615
3639
  'dashboardId': string;
@@ -3725,59 +3749,59 @@ export declare function AILakeApiAxiosParamCreator_GetAiLakeServiceStatus(servic
3725
3749
  * (BETA) Returns data source associations for the specified AI Lake database instance.
3726
3750
  * @summary (BETA) List data sources of an AILake Database instance
3727
3751
  * @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
3728
- * @param {string} [page] Zero-based page number.
3729
- * @param {string} [size] Number of items per page.
3752
+ * @param {number} [page] Zero-based page number.
3753
+ * @param {number} [size] Number of items per page.
3730
3754
  * @param {Array<string>} [metaInclude]
3731
3755
  * @param {*} [options] Override http request option.
3732
3756
  * @param {Configuration} [configuration] Optional configuration.
3733
3757
  * @throws {RequiredError}
3734
3758
  */
3735
- export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId: string, page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3759
+ export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId: string, page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3736
3760
  /**
3737
3761
  * (BETA) Lists database instances in the organization\'s AI Lake.
3738
3762
  * @summary (BETA) List AI Lake Database instances
3739
- * @param {string} [page] Zero-based page number.
3740
- * @param {string} [size] Number of items per page.
3763
+ * @param {number} [page] Zero-based page number.
3764
+ * @param {number} [size] Number of items per page.
3741
3765
  * @param {Array<string>} [metaInclude]
3742
3766
  * @param {*} [options] Override http request option.
3743
3767
  * @param {Configuration} [configuration] Optional configuration.
3744
3768
  * @throws {RequiredError}
3745
3769
  */
3746
- export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3770
+ export declare function AILakeApiAxiosParamCreator_ListAiLakeDatabaseInstances(page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3747
3771
  /**
3748
3772
  * (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
3749
3773
  * @summary (BETA) List registered AI Lake ObjectStorages
3750
- * @param {string} [page] Zero-based page number.
3751
- * @param {string} [size] Number of items per page.
3774
+ * @param {number} [page] Zero-based page number.
3775
+ * @param {number} [size] Number of items per page.
3752
3776
  * @param {Array<string>} [metaInclude]
3753
3777
  * @param {*} [options] Override http request option.
3754
3778
  * @param {Configuration} [configuration] Optional configuration.
3755
3779
  * @throws {RequiredError}
3756
3780
  */
3757
- export declare function AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3781
+ export declare function AILakeApiAxiosParamCreator_ListAiLakeObjectStorages(page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3758
3782
  /**
3759
3783
  * (BETA) Lists active pipe tables in the given AI Lake database instance.
3760
3784
  * @summary (BETA) List AI Lake pipe tables
3761
3785
  * @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
3762
- * @param {string} [page] Zero-based page number.
3763
- * @param {string} [size] Number of items per page.
3786
+ * @param {number} [page] Zero-based page number.
3787
+ * @param {number} [size] Number of items per page.
3764
3788
  * @param {Array<string>} [metaInclude]
3765
3789
  * @param {*} [options] Override http request option.
3766
3790
  * @param {Configuration} [configuration] Optional configuration.
3767
3791
  * @throws {RequiredError}
3768
3792
  */
3769
- export declare function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3793
+ export declare function AILakeApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3770
3794
  /**
3771
3795
  * (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
3772
3796
  * @summary (BETA) List AI Lake services
3773
- * @param {string} [page] Zero-based page number.
3774
- * @param {string} [size] Number of items per page.
3797
+ * @param {number} [page] Zero-based page number.
3798
+ * @param {number} [size] Number of items per page.
3775
3799
  * @param {Array<string>} [metaInclude]
3776
3800
  * @param {*} [options] Override http request option.
3777
3801
  * @param {Configuration} [configuration] Optional configuration.
3778
3802
  * @throws {RequiredError}
3779
3803
  */
3780
- export declare function AILakeApiAxiosParamCreator_ListAiLakeServices(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3804
+ export declare function AILakeApiAxiosParamCreator_ListAiLakeServices(page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3781
3805
  /**
3782
3806
  * (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.
3783
3807
  * @summary (BETA) Create a new AILake Database instance
@@ -3853,7 +3877,7 @@ export declare function AILakeApi_AddAiLakeDatabaseDataSource(axios: AxiosInstan
3853
3877
  * @param {Configuration} [configuration] Optional configuration.
3854
3878
  * @throws {RequiredError}
3855
3879
  */
3856
- export declare function AILakeApi_AnalyzeStatistics(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
3880
+ export declare function AILakeApi_AnalyzeStatistics(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
3857
3881
  /**
3858
3882
  * (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.
3859
3883
  * @summary (BETA) Create a new AI Lake pipe table
@@ -3864,7 +3888,7 @@ export declare function AILakeApi_AnalyzeStatistics(axios: AxiosInstance, basePa
3864
3888
  * @param {Configuration} [configuration] Optional configuration.
3865
3889
  * @throws {RequiredError}
3866
3890
  */
3867
- export declare function AILakeApi_CreateAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
3891
+ export declare function AILakeApi_CreateAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
3868
3892
  /**
3869
3893
  * (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
3870
3894
  * @summary (BETA) Delete an AI Lake pipe table
@@ -3875,7 +3899,7 @@ export declare function AILakeApi_CreateAiLakePipeTable(axios: AxiosInstance, ba
3875
3899
  * @param {Configuration} [configuration] Optional configuration.
3876
3900
  * @throws {RequiredError}
3877
3901
  */
3878
- export declare function AILakeApi_DeleteAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
3902
+ export declare function AILakeApi_DeleteAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
3879
3903
  /**
3880
3904
  * (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.
3881
3905
  * @summary (BETA) Delete an existing AILake Database instance
@@ -3886,7 +3910,7 @@ export declare function AILakeApi_DeleteAiLakePipeTable(axios: AxiosInstance, ba
3886
3910
  * @param {Configuration} [configuration] Optional configuration.
3887
3911
  * @throws {RequiredError}
3888
3912
  */
3889
- export declare function AILakeApi_DeprovisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
3913
+ export declare function AILakeApi_DeprovisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
3890
3914
  /**
3891
3915
  * (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
3892
3916
  * @summary (BETA) Get the specified AILake Database instance
@@ -3996,7 +4020,7 @@ export declare function AILakeApi_ListAiLakeServices(axios: AxiosInstance, baseP
3996
4020
  * @param {Configuration} [configuration] Optional configuration.
3997
4021
  * @throws {RequiredError}
3998
4022
  */
3999
- export declare function AILakeApi_ProvisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
4023
+ export declare function AILakeApi_ProvisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
4000
4024
  /**
4001
4025
  * (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
4002
4026
  * @summary (BETA) Refresh a pipe table partition
@@ -4007,7 +4031,7 @@ export declare function AILakeApi_ProvisionAiLakeDatabaseInstance(axios: AxiosIn
4007
4031
  * @param {Configuration} [configuration] Optional configuration.
4008
4032
  * @throws {RequiredError}
4009
4033
  */
4010
- export declare function AILakeApi_RefreshAiLakePipeTablePartition(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
4034
+ export declare function AILakeApi_RefreshAiLakePipeTablePartition(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
4011
4035
  /**
4012
4036
  * (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
4013
4037
  * @summary (BETA) Remove a data source from an AILake Database instance
@@ -4029,7 +4053,7 @@ export declare function AILakeApi_RemoveAiLakeDatabaseDataSource(axios: AxiosIns
4029
4053
  * @param {Configuration} [configuration] Optional configuration.
4030
4054
  * @throws {RequiredError}
4031
4055
  */
4032
- export declare function AILakeApi_RunAiLakeServiceCommand(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
4056
+ export declare function AILakeApi_RunAiLakeServiceCommand(axios: AxiosInstance, basePath: string, requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
4033
4057
  /**
4034
4058
  * (BETA) Updates the data source ID and name for an existing AI Lake database instance without deleting the underlying database. Use this to recover from a wrong data source ID provisioned on an existing database instance.
4035
4059
  * @summary (BETA) Update the data source of an AILake Database instance
@@ -4064,7 +4088,7 @@ export interface AILakeApiInterface {
4064
4088
  * @throws {RequiredError}
4065
4089
  * @memberof AILakeApiInterface
4066
4090
  */
4067
- analyzeStatistics(requestParameters: AILakeApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4091
+ analyzeStatistics(requestParameters: AILakeApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4068
4092
  /**
4069
4093
  * (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.
4070
4094
  * @summary (BETA) Create a new AI Lake pipe table
@@ -4073,7 +4097,7 @@ export interface AILakeApiInterface {
4073
4097
  * @throws {RequiredError}
4074
4098
  * @memberof AILakeApiInterface
4075
4099
  */
4076
- createAiLakePipeTable(requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4100
+ createAiLakePipeTable(requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4077
4101
  /**
4078
4102
  * (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
4079
4103
  * @summary (BETA) Delete an AI Lake pipe table
@@ -4082,7 +4106,7 @@ export interface AILakeApiInterface {
4082
4106
  * @throws {RequiredError}
4083
4107
  * @memberof AILakeApiInterface
4084
4108
  */
4085
- deleteAiLakePipeTable(requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4109
+ deleteAiLakePipeTable(requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4086
4110
  /**
4087
4111
  * (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.
4088
4112
  * @summary (BETA) Delete an existing AILake Database instance
@@ -4091,7 +4115,7 @@ export interface AILakeApiInterface {
4091
4115
  * @throws {RequiredError}
4092
4116
  * @memberof AILakeApiInterface
4093
4117
  */
4094
- deprovisionAiLakeDatabaseInstance(requestParameters: AILakeApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4118
+ deprovisionAiLakeDatabaseInstance(requestParameters: AILakeApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4095
4119
  /**
4096
4120
  * (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
4097
4121
  * @summary (BETA) Get the specified AILake Database instance
@@ -4181,7 +4205,7 @@ export interface AILakeApiInterface {
4181
4205
  * @throws {RequiredError}
4182
4206
  * @memberof AILakeApiInterface
4183
4207
  */
4184
- provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4208
+ provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4185
4209
  /**
4186
4210
  * (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
4187
4211
  * @summary (BETA) Refresh a pipe table partition
@@ -4190,7 +4214,7 @@ export interface AILakeApiInterface {
4190
4214
  * @throws {RequiredError}
4191
4215
  * @memberof AILakeApiInterface
4192
4216
  */
4193
- refreshAiLakePipeTablePartition(requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4217
+ refreshAiLakePipeTablePartition(requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4194
4218
  /**
4195
4219
  * (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
4196
4220
  * @summary (BETA) Remove a data source from an AILake Database instance
@@ -4208,7 +4232,7 @@ export interface AILakeApiInterface {
4208
4232
  * @throws {RequiredError}
4209
4233
  * @memberof AILakeApiInterface
4210
4234
  */
4211
- runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4235
+ runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4212
4236
  /**
4213
4237
  * (BETA) Updates the data source ID and name for an existing AI Lake database instance without deleting the underlying database. Use this to recover from a wrong data source ID provisioned on an existing database instance.
4214
4238
  * @summary (BETA) Update the data source of an AILake Database instance
@@ -4404,16 +4428,16 @@ export interface AILakeApiListAiLakeDatabaseDataSourcesRequest {
4404
4428
  readonly instanceId: string;
4405
4429
  /**
4406
4430
  * Zero-based page number.
4407
- * @type {string}
4431
+ * @type {number}
4408
4432
  * @memberof AILakeApiListAiLakeDatabaseDataSources
4409
4433
  */
4410
- readonly page?: string;
4434
+ readonly page?: number;
4411
4435
  /**
4412
4436
  * Number of items per page.
4413
- * @type {string}
4437
+ * @type {number}
4414
4438
  * @memberof AILakeApiListAiLakeDatabaseDataSources
4415
4439
  */
4416
- readonly size?: string;
4440
+ readonly size?: number;
4417
4441
  /**
4418
4442
  *
4419
4443
  * @type {Array<string>}
@@ -4429,16 +4453,16 @@ export interface AILakeApiListAiLakeDatabaseDataSourcesRequest {
4429
4453
  export interface AILakeApiListAiLakeDatabaseInstancesRequest {
4430
4454
  /**
4431
4455
  * Zero-based page number.
4432
- * @type {string}
4456
+ * @type {number}
4433
4457
  * @memberof AILakeApiListAiLakeDatabaseInstances
4434
4458
  */
4435
- readonly page?: string;
4459
+ readonly page?: number;
4436
4460
  /**
4437
4461
  * Number of items per page.
4438
- * @type {string}
4462
+ * @type {number}
4439
4463
  * @memberof AILakeApiListAiLakeDatabaseInstances
4440
4464
  */
4441
- readonly size?: string;
4465
+ readonly size?: number;
4442
4466
  /**
4443
4467
  *
4444
4468
  * @type {Array<string>}
@@ -4454,16 +4478,16 @@ export interface AILakeApiListAiLakeDatabaseInstancesRequest {
4454
4478
  export interface AILakeApiListAiLakeObjectStoragesRequest {
4455
4479
  /**
4456
4480
  * Zero-based page number.
4457
- * @type {string}
4481
+ * @type {number}
4458
4482
  * @memberof AILakeApiListAiLakeObjectStorages
4459
4483
  */
4460
- readonly page?: string;
4484
+ readonly page?: number;
4461
4485
  /**
4462
4486
  * Number of items per page.
4463
- * @type {string}
4487
+ * @type {number}
4464
4488
  * @memberof AILakeApiListAiLakeObjectStorages
4465
4489
  */
4466
- readonly size?: string;
4490
+ readonly size?: number;
4467
4491
  /**
4468
4492
  *
4469
4493
  * @type {Array<string>}
@@ -4485,16 +4509,16 @@ export interface AILakeApiListAiLakePipeTablesRequest {
4485
4509
  readonly instanceId: string;
4486
4510
  /**
4487
4511
  * Zero-based page number.
4488
- * @type {string}
4512
+ * @type {number}
4489
4513
  * @memberof AILakeApiListAiLakePipeTables
4490
4514
  */
4491
- readonly page?: string;
4515
+ readonly page?: number;
4492
4516
  /**
4493
4517
  * Number of items per page.
4494
- * @type {string}
4518
+ * @type {number}
4495
4519
  * @memberof AILakeApiListAiLakePipeTables
4496
4520
  */
4497
- readonly size?: string;
4521
+ readonly size?: number;
4498
4522
  /**
4499
4523
  *
4500
4524
  * @type {Array<string>}
@@ -4510,16 +4534,16 @@ export interface AILakeApiListAiLakePipeTablesRequest {
4510
4534
  export interface AILakeApiListAiLakeServicesRequest {
4511
4535
  /**
4512
4536
  * Zero-based page number.
4513
- * @type {string}
4537
+ * @type {number}
4514
4538
  * @memberof AILakeApiListAiLakeServices
4515
4539
  */
4516
- readonly page?: string;
4540
+ readonly page?: number;
4517
4541
  /**
4518
4542
  * Number of items per page.
4519
- * @type {string}
4543
+ * @type {number}
4520
4544
  * @memberof AILakeApiListAiLakeServices
4521
4545
  */
4522
- readonly size?: string;
4546
+ readonly size?: number;
4523
4547
  /**
4524
4548
  *
4525
4549
  * @type {Array<string>}
@@ -4670,7 +4694,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
4670
4694
  * @throws {RequiredError}
4671
4695
  * @memberof AILakeApi
4672
4696
  */
4673
- analyzeStatistics(requestParameters: AILakeApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4697
+ analyzeStatistics(requestParameters: AILakeApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4674
4698
  /**
4675
4699
  * (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.
4676
4700
  * @summary (BETA) Create a new AI Lake pipe table
@@ -4679,7 +4703,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
4679
4703
  * @throws {RequiredError}
4680
4704
  * @memberof AILakeApi
4681
4705
  */
4682
- createAiLakePipeTable(requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4706
+ createAiLakePipeTable(requestParameters: AILakeApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4683
4707
  /**
4684
4708
  * (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
4685
4709
  * @summary (BETA) Delete an AI Lake pipe table
@@ -4688,7 +4712,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
4688
4712
  * @throws {RequiredError}
4689
4713
  * @memberof AILakeApi
4690
4714
  */
4691
- deleteAiLakePipeTable(requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4715
+ deleteAiLakePipeTable(requestParameters: AILakeApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4692
4716
  /**
4693
4717
  * (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.
4694
4718
  * @summary (BETA) Delete an existing AILake Database instance
@@ -4697,7 +4721,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
4697
4721
  * @throws {RequiredError}
4698
4722
  * @memberof AILakeApi
4699
4723
  */
4700
- deprovisionAiLakeDatabaseInstance(requestParameters: AILakeApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4724
+ deprovisionAiLakeDatabaseInstance(requestParameters: AILakeApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4701
4725
  /**
4702
4726
  * (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
4703
4727
  * @summary (BETA) Get the specified AILake Database instance
@@ -4787,7 +4811,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
4787
4811
  * @throws {RequiredError}
4788
4812
  * @memberof AILakeApi
4789
4813
  */
4790
- provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4814
+ provisionAiLakeDatabaseInstance(requestParameters: AILakeApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4791
4815
  /**
4792
4816
  * (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
4793
4817
  * @summary (BETA) Refresh a pipe table partition
@@ -4796,7 +4820,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
4796
4820
  * @throws {RequiredError}
4797
4821
  * @memberof AILakeApi
4798
4822
  */
4799
- refreshAiLakePipeTablePartition(requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4823
+ refreshAiLakePipeTablePartition(requestParameters: AILakeApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4800
4824
  /**
4801
4825
  * (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
4802
4826
  * @summary (BETA) Remove a data source from an AILake Database instance
@@ -4814,7 +4838,7 @@ export declare class AILakeApi extends BaseAPI implements AILakeApiInterface {
4814
4838
  * @throws {RequiredError}
4815
4839
  * @memberof AILakeApi
4816
4840
  */
4817
- runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
4841
+ runAiLakeServiceCommand(requestParameters: AILakeApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
4818
4842
  /**
4819
4843
  * (BETA) Updates the data source ID and name for an existing AI Lake database instance without deleting the underlying database. Use this to recover from a wrong data source ID provisioned on an existing database instance.
4820
4844
  * @summary (BETA) Update the data source of an AILake Database instance
@@ -4858,36 +4882,36 @@ export declare function AILakeDatabasesApiAxiosParamCreator_GetAiLakeDatabaseIns
4858
4882
  * (BETA) Returns data source associations for the specified AI Lake database instance.
4859
4883
  * @summary (BETA) List data sources of an AILake Database instance
4860
4884
  * @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
4861
- * @param {string} [page] Zero-based page number.
4862
- * @param {string} [size] Number of items per page.
4885
+ * @param {number} [page] Zero-based page number.
4886
+ * @param {number} [size] Number of items per page.
4863
4887
  * @param {Array<string>} [metaInclude]
4864
4888
  * @param {*} [options] Override http request option.
4865
4889
  * @param {Configuration} [configuration] Optional configuration.
4866
4890
  * @throws {RequiredError}
4867
4891
  */
4868
- export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId: string, page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
4892
+ export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseDataSources(instanceId: string, page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
4869
4893
  /**
4870
4894
  * (BETA) Lists database instances in the organization\'s AI Lake.
4871
4895
  * @summary (BETA) List AI Lake Database instances
4872
- * @param {string} [page] Zero-based page number.
4873
- * @param {string} [size] Number of items per page.
4896
+ * @param {number} [page] Zero-based page number.
4897
+ * @param {number} [size] Number of items per page.
4874
4898
  * @param {Array<string>} [metaInclude]
4875
4899
  * @param {*} [options] Override http request option.
4876
4900
  * @param {Configuration} [configuration] Optional configuration.
4877
4901
  * @throws {RequiredError}
4878
4902
  */
4879
- export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
4903
+ export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeDatabaseInstances(page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
4880
4904
  /**
4881
4905
  * (BETA) Lists ObjectStorages registered for the organization. Use the returned `name` as `sourceStorageName` in CreatePipeTable, or pass `storageId` to the ProvisionDatabase `storageIds` list. Provider credentials are stripped — only safe descriptors (id, name, type, bucket, region, endpoint, …) are returned.
4882
4906
  * @summary (BETA) List registered AI Lake ObjectStorages
4883
- * @param {string} [page] Zero-based page number.
4884
- * @param {string} [size] Number of items per page.
4907
+ * @param {number} [page] Zero-based page number.
4908
+ * @param {number} [size] Number of items per page.
4885
4909
  * @param {Array<string>} [metaInclude]
4886
4910
  * @param {*} [options] Override http request option.
4887
4911
  * @param {Configuration} [configuration] Optional configuration.
4888
4912
  * @throws {RequiredError}
4889
4913
  */
4890
- export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorages(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
4914
+ export declare function AILakeDatabasesApiAxiosParamCreator_ListAiLakeObjectStorages(page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
4891
4915
  /**
4892
4916
  * (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.
4893
4917
  * @summary (BETA) Create a new AILake Database instance
@@ -4939,7 +4963,7 @@ export declare function AILakeDatabasesApi_AddAiLakeDatabaseDataSource(axios: Ax
4939
4963
  * @param {Configuration} [configuration] Optional configuration.
4940
4964
  * @throws {RequiredError}
4941
4965
  */
4942
- export declare function AILakeDatabasesApi_DeprovisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
4966
+ export declare function AILakeDatabasesApi_DeprovisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
4943
4967
  /**
4944
4968
  * (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
4945
4969
  * @summary (BETA) Get the specified AILake Database instance
@@ -4994,7 +5018,7 @@ export declare function AILakeDatabasesApi_ListAiLakeObjectStorages(axios: Axios
4994
5018
  * @param {Configuration} [configuration] Optional configuration.
4995
5019
  * @throws {RequiredError}
4996
5020
  */
4997
- export declare function AILakeDatabasesApi_ProvisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
5021
+ export declare function AILakeDatabasesApi_ProvisionAiLakeDatabaseInstance(axios: AxiosInstance, basePath: string, requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
4998
5022
  /**
4999
5023
  * (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
5000
5024
  * @summary (BETA) Remove a data source from an AILake Database instance
@@ -5040,7 +5064,7 @@ export interface AILakeDatabasesApiInterface {
5040
5064
  * @throws {RequiredError}
5041
5065
  * @memberof AILakeDatabasesApiInterface
5042
5066
  */
5043
- deprovisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5067
+ deprovisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5044
5068
  /**
5045
5069
  * (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
5046
5070
  * @summary (BETA) Get the specified AILake Database instance
@@ -5085,7 +5109,7 @@ export interface AILakeDatabasesApiInterface {
5085
5109
  * @throws {RequiredError}
5086
5110
  * @memberof AILakeDatabasesApiInterface
5087
5111
  */
5088
- provisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5112
+ provisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5089
5113
  /**
5090
5114
  * (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
5091
5115
  * @summary (BETA) Remove a data source from an AILake Database instance
@@ -5170,16 +5194,16 @@ export interface AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest {
5170
5194
  readonly instanceId: string;
5171
5195
  /**
5172
5196
  * Zero-based page number.
5173
- * @type {string}
5197
+ * @type {number}
5174
5198
  * @memberof AILakeDatabasesApiListAiLakeDatabaseDataSources
5175
5199
  */
5176
- readonly page?: string;
5200
+ readonly page?: number;
5177
5201
  /**
5178
5202
  * Number of items per page.
5179
- * @type {string}
5203
+ * @type {number}
5180
5204
  * @memberof AILakeDatabasesApiListAiLakeDatabaseDataSources
5181
5205
  */
5182
- readonly size?: string;
5206
+ readonly size?: number;
5183
5207
  /**
5184
5208
  *
5185
5209
  * @type {Array<string>}
@@ -5195,16 +5219,16 @@ export interface AILakeDatabasesApiListAiLakeDatabaseDataSourcesRequest {
5195
5219
  export interface AILakeDatabasesApiListAiLakeDatabaseInstancesRequest {
5196
5220
  /**
5197
5221
  * Zero-based page number.
5198
- * @type {string}
5222
+ * @type {number}
5199
5223
  * @memberof AILakeDatabasesApiListAiLakeDatabaseInstances
5200
5224
  */
5201
- readonly page?: string;
5225
+ readonly page?: number;
5202
5226
  /**
5203
5227
  * Number of items per page.
5204
- * @type {string}
5228
+ * @type {number}
5205
5229
  * @memberof AILakeDatabasesApiListAiLakeDatabaseInstances
5206
5230
  */
5207
- readonly size?: string;
5231
+ readonly size?: number;
5208
5232
  /**
5209
5233
  *
5210
5234
  * @type {Array<string>}
@@ -5220,16 +5244,16 @@ export interface AILakeDatabasesApiListAiLakeDatabaseInstancesRequest {
5220
5244
  export interface AILakeDatabasesApiListAiLakeObjectStoragesRequest {
5221
5245
  /**
5222
5246
  * Zero-based page number.
5223
- * @type {string}
5247
+ * @type {number}
5224
5248
  * @memberof AILakeDatabasesApiListAiLakeObjectStorages
5225
5249
  */
5226
- readonly page?: string;
5250
+ readonly page?: number;
5227
5251
  /**
5228
5252
  * Number of items per page.
5229
- * @type {string}
5253
+ * @type {number}
5230
5254
  * @memberof AILakeDatabasesApiListAiLakeObjectStorages
5231
5255
  */
5232
- readonly size?: string;
5256
+ readonly size?: number;
5233
5257
  /**
5234
5258
  *
5235
5259
  * @type {Array<string>}
@@ -5318,7 +5342,7 @@ export declare class AILakeDatabasesApi extends BaseAPI implements AILakeDatabas
5318
5342
  * @throws {RequiredError}
5319
5343
  * @memberof AILakeDatabasesApi
5320
5344
  */
5321
- deprovisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5345
+ deprovisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiDeprovisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5322
5346
  /**
5323
5347
  * (BETA) Retrieve details of the specified AI Lake database instance in the organization\'s AI Lake.
5324
5348
  * @summary (BETA) Get the specified AILake Database instance
@@ -5363,7 +5387,7 @@ export declare class AILakeDatabasesApi extends BaseAPI implements AILakeDatabas
5363
5387
  * @throws {RequiredError}
5364
5388
  * @memberof AILakeDatabasesApi
5365
5389
  */
5366
- provisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5390
+ provisionAiLakeDatabaseInstance(requestParameters: AILakeDatabasesApiProvisionAiLakeDatabaseInstanceRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5367
5391
  /**
5368
5392
  * (BETA) Removes a data source association from an AI Lake database instance and deletes the corresponding data source from metadata-api. Fails if removing the data source would leave the instance with no data sources.
5369
5393
  * @summary (BETA) Remove a data source from an AILake Database instance
@@ -5430,14 +5454,14 @@ export declare function AILakePipeTablesApiAxiosParamCreator_GetAiLakePipeTable(
5430
5454
  * (BETA) Lists active pipe tables in the given AI Lake database instance.
5431
5455
  * @summary (BETA) List AI Lake pipe tables
5432
5456
  * @param {string} instanceId Database instance identifier. Accepts the database name (preferred) or UUID.
5433
- * @param {string} [page] Zero-based page number.
5434
- * @param {string} [size] Number of items per page.
5457
+ * @param {number} [page] Zero-based page number.
5458
+ * @param {number} [size] Number of items per page.
5435
5459
  * @param {Array<string>} [metaInclude]
5436
5460
  * @param {*} [options] Override http request option.
5437
5461
  * @param {Configuration} [configuration] Optional configuration.
5438
5462
  * @throws {RequiredError}
5439
5463
  */
5440
- export declare function AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
5464
+ export declare function AILakePipeTablesApiAxiosParamCreator_ListAiLakePipeTables(instanceId: string, page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
5441
5465
  /**
5442
5466
  * (BETA) Deletes all rows for the specified Hive partition and re-loads them from S3. Use after overwriting a partition file in object storage with corrected data. Returns an operation-id header the client can use to poll for progress.
5443
5467
  * @summary (BETA) Refresh a pipe table partition
@@ -5460,7 +5484,7 @@ export declare function AILakePipeTablesApiAxiosParamCreator_RefreshAiLakePipeTa
5460
5484
  * @param {Configuration} [configuration] Optional configuration.
5461
5485
  * @throws {RequiredError}
5462
5486
  */
5463
- export declare function AILakePipeTablesApi_AnalyzeStatistics(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
5487
+ export declare function AILakePipeTablesApi_AnalyzeStatistics(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
5464
5488
  /**
5465
5489
  * (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.
5466
5490
  * @summary (BETA) Create a new AI Lake pipe table
@@ -5471,7 +5495,7 @@ export declare function AILakePipeTablesApi_AnalyzeStatistics(axios: AxiosInstan
5471
5495
  * @param {Configuration} [configuration] Optional configuration.
5472
5496
  * @throws {RequiredError}
5473
5497
  */
5474
- export declare function AILakePipeTablesApi_CreateAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
5498
+ export declare function AILakePipeTablesApi_CreateAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
5475
5499
  /**
5476
5500
  * (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
5477
5501
  * @summary (BETA) Delete an AI Lake pipe table
@@ -5482,7 +5506,7 @@ export declare function AILakePipeTablesApi_CreateAiLakePipeTable(axios: AxiosIn
5482
5506
  * @param {Configuration} [configuration] Optional configuration.
5483
5507
  * @throws {RequiredError}
5484
5508
  */
5485
- export declare function AILakePipeTablesApi_DeleteAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
5509
+ export declare function AILakePipeTablesApi_DeleteAiLakePipeTable(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
5486
5510
  /**
5487
5511
  * (BETA) Returns full details of the specified pipe table.
5488
5512
  * @summary (BETA) Get an AI Lake pipe table
@@ -5515,7 +5539,7 @@ export declare function AILakePipeTablesApi_ListAiLakePipeTables(axios: AxiosIns
5515
5539
  * @param {Configuration} [configuration] Optional configuration.
5516
5540
  * @throws {RequiredError}
5517
5541
  */
5518
- export declare function AILakePipeTablesApi_RefreshAiLakePipeTablePartition(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
5542
+ export declare function AILakePipeTablesApi_RefreshAiLakePipeTablePartition(axios: AxiosInstance, basePath: string, requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
5519
5543
  /**
5520
5544
  * AILakePipeTablesApi - interface
5521
5545
  * @export
@@ -5530,7 +5554,7 @@ export interface AILakePipeTablesApiInterface {
5530
5554
  * @throws {RequiredError}
5531
5555
  * @memberof AILakePipeTablesApiInterface
5532
5556
  */
5533
- analyzeStatistics(requestParameters: AILakePipeTablesApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5557
+ analyzeStatistics(requestParameters: AILakePipeTablesApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5534
5558
  /**
5535
5559
  * (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.
5536
5560
  * @summary (BETA) Create a new AI Lake pipe table
@@ -5539,7 +5563,7 @@ export interface AILakePipeTablesApiInterface {
5539
5563
  * @throws {RequiredError}
5540
5564
  * @memberof AILakePipeTablesApiInterface
5541
5565
  */
5542
- createAiLakePipeTable(requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5566
+ createAiLakePipeTable(requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5543
5567
  /**
5544
5568
  * (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
5545
5569
  * @summary (BETA) Delete an AI Lake pipe table
@@ -5548,7 +5572,7 @@ export interface AILakePipeTablesApiInterface {
5548
5572
  * @throws {RequiredError}
5549
5573
  * @memberof AILakePipeTablesApiInterface
5550
5574
  */
5551
- deleteAiLakePipeTable(requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5575
+ deleteAiLakePipeTable(requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5552
5576
  /**
5553
5577
  * (BETA) Returns full details of the specified pipe table.
5554
5578
  * @summary (BETA) Get an AI Lake pipe table
@@ -5575,7 +5599,7 @@ export interface AILakePipeTablesApiInterface {
5575
5599
  * @throws {RequiredError}
5576
5600
  * @memberof AILakePipeTablesApiInterface
5577
5601
  */
5578
- refreshAiLakePipeTablePartition(requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5602
+ refreshAiLakePipeTablePartition(requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5579
5603
  }
5580
5604
  /**
5581
5605
  * Request parameters for analyzeStatistics operation in AILakePipeTablesApi.
@@ -5685,16 +5709,16 @@ export interface AILakePipeTablesApiListAiLakePipeTablesRequest {
5685
5709
  readonly instanceId: string;
5686
5710
  /**
5687
5711
  * Zero-based page number.
5688
- * @type {string}
5712
+ * @type {number}
5689
5713
  * @memberof AILakePipeTablesApiListAiLakePipeTables
5690
5714
  */
5691
- readonly page?: string;
5715
+ readonly page?: number;
5692
5716
  /**
5693
5717
  * Number of items per page.
5694
- * @type {string}
5718
+ * @type {number}
5695
5719
  * @memberof AILakePipeTablesApiListAiLakePipeTables
5696
5720
  */
5697
- readonly size?: string;
5721
+ readonly size?: number;
5698
5722
  /**
5699
5723
  *
5700
5724
  * @type {Array<string>}
@@ -5748,7 +5772,7 @@ export declare class AILakePipeTablesApi extends BaseAPI implements AILakePipeTa
5748
5772
  * @throws {RequiredError}
5749
5773
  * @memberof AILakePipeTablesApi
5750
5774
  */
5751
- analyzeStatistics(requestParameters: AILakePipeTablesApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5775
+ analyzeStatistics(requestParameters: AILakePipeTablesApiAnalyzeStatisticsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5752
5776
  /**
5753
5777
  * (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.
5754
5778
  * @summary (BETA) Create a new AI Lake pipe table
@@ -5757,7 +5781,7 @@ export declare class AILakePipeTablesApi extends BaseAPI implements AILakePipeTa
5757
5781
  * @throws {RequiredError}
5758
5782
  * @memberof AILakePipeTablesApi
5759
5783
  */
5760
- createAiLakePipeTable(requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5784
+ createAiLakePipeTable(requestParameters: AILakePipeTablesApiCreateAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5761
5785
  /**
5762
5786
  * (BETA) Drops the pipe and OLAP table and removes the record. Returns an operation-id header the client can use to poll for progress.
5763
5787
  * @summary (BETA) Delete an AI Lake pipe table
@@ -5766,7 +5790,7 @@ export declare class AILakePipeTablesApi extends BaseAPI implements AILakePipeTa
5766
5790
  * @throws {RequiredError}
5767
5791
  * @memberof AILakePipeTablesApi
5768
5792
  */
5769
- deleteAiLakePipeTable(requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5793
+ deleteAiLakePipeTable(requestParameters: AILakePipeTablesApiDeleteAiLakePipeTableRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5770
5794
  /**
5771
5795
  * (BETA) Returns full details of the specified pipe table.
5772
5796
  * @summary (BETA) Get an AI Lake pipe table
@@ -5793,7 +5817,7 @@ export declare class AILakePipeTablesApi extends BaseAPI implements AILakePipeTa
5793
5817
  * @throws {RequiredError}
5794
5818
  * @memberof AILakePipeTablesApi
5795
5819
  */
5796
- refreshAiLakePipeTablePartition(requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5820
+ refreshAiLakePipeTablePartition(requestParameters: AILakePipeTablesApiRefreshAiLakePipeTablePartitionRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5797
5821
  }
5798
5822
  /**
5799
5823
  * (BETA) Retrieves details of a Long Running Operation specified by the operation-id.
@@ -5816,14 +5840,14 @@ export declare function AILakeServicesOperationsApiAxiosParamCreator_GetAiLakeSe
5816
5840
  /**
5817
5841
  * (BETA) Lists services configured for the organization\'s AI Lake. Returns only non-sensitive fields (id, name).
5818
5842
  * @summary (BETA) List AI Lake services
5819
- * @param {string} [page] Zero-based page number.
5820
- * @param {string} [size] Number of items per page.
5843
+ * @param {number} [page] Zero-based page number.
5844
+ * @param {number} [size] Number of items per page.
5821
5845
  * @param {Array<string>} [metaInclude]
5822
5846
  * @param {*} [options] Override http request option.
5823
5847
  * @param {Configuration} [configuration] Optional configuration.
5824
5848
  * @throws {RequiredError}
5825
5849
  */
5826
- export declare function AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(page?: string, size?: string, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
5850
+ export declare function AILakeServicesOperationsApiAxiosParamCreator_ListAiLakeServices(page?: number, size?: number, metaInclude?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
5827
5851
  /**
5828
5852
  * (BETA) Runs a specific AI Lake service command.
5829
5853
  * @summary (BETA) Run an AI Lake services command
@@ -5879,7 +5903,7 @@ export declare function AILakeServicesOperationsApi_ListAiLakeServices(axios: Ax
5879
5903
  * @param {Configuration} [configuration] Optional configuration.
5880
5904
  * @throws {RequiredError}
5881
5905
  */
5882
- export declare function AILakeServicesOperationsApi_RunAiLakeServiceCommand(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<object>;
5906
+ export declare function AILakeServicesOperationsApi_RunAiLakeServiceCommand(axios: AxiosInstance, basePath: string, requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
5883
5907
  /**
5884
5908
  * AILakeServicesOperationsApi - interface
5885
5909
  * @export
@@ -5921,7 +5945,7 @@ export interface AILakeServicesOperationsApiInterface {
5921
5945
  * @throws {RequiredError}
5922
5946
  * @memberof AILakeServicesOperationsApiInterface
5923
5947
  */
5924
- runAiLakeServiceCommand(requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
5948
+ runAiLakeServiceCommand(requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
5925
5949
  }
5926
5950
  /**
5927
5951
  * Request parameters for getAiLakeOperation operation in AILakeServicesOperationsApi.
@@ -5957,16 +5981,16 @@ export interface AILakeServicesOperationsApiGetAiLakeServiceStatusRequest {
5957
5981
  export interface AILakeServicesOperationsApiListAiLakeServicesRequest {
5958
5982
  /**
5959
5983
  * Zero-based page number.
5960
- * @type {string}
5984
+ * @type {number}
5961
5985
  * @memberof AILakeServicesOperationsApiListAiLakeServices
5962
5986
  */
5963
- readonly page?: string;
5987
+ readonly page?: number;
5964
5988
  /**
5965
5989
  * Number of items per page.
5966
- * @type {string}
5990
+ * @type {number}
5967
5991
  * @memberof AILakeServicesOperationsApiListAiLakeServices
5968
5992
  */
5969
- readonly size?: string;
5993
+ readonly size?: number;
5970
5994
  /**
5971
5995
  *
5972
5996
  * @type {Array<string>}
@@ -6047,7 +6071,7 @@ export declare class AILakeServicesOperationsApi extends BaseAPI implements AILa
6047
6071
  * @throws {RequiredError}
6048
6072
  * @memberof AILakeServicesOperationsApi
6049
6073
  */
6050
- runAiLakeServiceCommand(requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<object>;
6074
+ runAiLakeServiceCommand(requestParameters: AILakeServicesOperationsApiRunAiLakeServiceCommandRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
6051
6075
  }
6052
6076
  /**
6053
6077
  * (BETA) Combines multiple use cases such as search, create visualizations, ...