@alicloud/dms-enterprise20181101 1.41.0 → 1.42.0

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/dist/client.d.ts CHANGED
@@ -21884,6 +21884,158 @@ export declare class CreateDataLakeDatabaseResponse extends $dara.Model {
21884
21884
  [key: string]: any;
21885
21885
  });
21886
21886
  }
21887
+ export declare class CreateDataLakeFunctionRequest extends $dara.Model {
21888
+ /**
21889
+ * @remarks
21890
+ * This parameter is required.
21891
+ *
21892
+ * @example
21893
+ * hive
21894
+ */
21895
+ catalogName?: string;
21896
+ /**
21897
+ * @remarks
21898
+ * This parameter is required.
21899
+ *
21900
+ * @example
21901
+ * cn-hangzhou
21902
+ */
21903
+ dataRegion?: string;
21904
+ /**
21905
+ * @remarks
21906
+ * This parameter is required.
21907
+ *
21908
+ * @example
21909
+ * default
21910
+ */
21911
+ dbName?: string;
21912
+ /**
21913
+ * @remarks
21914
+ * This parameter is required.
21915
+ */
21916
+ functionInput?: DLFunctionInput;
21917
+ /**
21918
+ * @example
21919
+ * 3****
21920
+ */
21921
+ tid?: number;
21922
+ /**
21923
+ * @example
21924
+ * 12****
21925
+ */
21926
+ workspaceId?: number;
21927
+ static names(): {
21928
+ [key: string]: string;
21929
+ };
21930
+ static types(): {
21931
+ [key: string]: any;
21932
+ };
21933
+ validate(): void;
21934
+ constructor(map?: {
21935
+ [key: string]: any;
21936
+ });
21937
+ }
21938
+ export declare class CreateDataLakeFunctionShrinkRequest extends $dara.Model {
21939
+ /**
21940
+ * @remarks
21941
+ * This parameter is required.
21942
+ *
21943
+ * @example
21944
+ * hive
21945
+ */
21946
+ catalogName?: string;
21947
+ /**
21948
+ * @remarks
21949
+ * This parameter is required.
21950
+ *
21951
+ * @example
21952
+ * cn-hangzhou
21953
+ */
21954
+ dataRegion?: string;
21955
+ /**
21956
+ * @remarks
21957
+ * This parameter is required.
21958
+ *
21959
+ * @example
21960
+ * default
21961
+ */
21962
+ dbName?: string;
21963
+ /**
21964
+ * @remarks
21965
+ * This parameter is required.
21966
+ */
21967
+ functionInputShrink?: string;
21968
+ /**
21969
+ * @example
21970
+ * 3****
21971
+ */
21972
+ tid?: number;
21973
+ /**
21974
+ * @example
21975
+ * 12****
21976
+ */
21977
+ workspaceId?: number;
21978
+ static names(): {
21979
+ [key: string]: string;
21980
+ };
21981
+ static types(): {
21982
+ [key: string]: any;
21983
+ };
21984
+ validate(): void;
21985
+ constructor(map?: {
21986
+ [key: string]: any;
21987
+ });
21988
+ }
21989
+ export declare class CreateDataLakeFunctionResponseBody extends $dara.Model {
21990
+ /**
21991
+ * @example
21992
+ * UnknownError
21993
+ */
21994
+ errorCode?: string;
21995
+ /**
21996
+ * @example
21997
+ * UnknownError
21998
+ */
21999
+ errorMessage?: string;
22000
+ function?: DLFunction;
22001
+ /**
22002
+ * @example
22003
+ * EE214ECD-4330-503A-82F0-FFB039757DC8
22004
+ */
22005
+ requestId?: string;
22006
+ /**
22007
+ * @example
22008
+ * true
22009
+ */
22010
+ success?: boolean;
22011
+ static names(): {
22012
+ [key: string]: string;
22013
+ };
22014
+ static types(): {
22015
+ [key: string]: any;
22016
+ };
22017
+ validate(): void;
22018
+ constructor(map?: {
22019
+ [key: string]: any;
22020
+ });
22021
+ }
22022
+ export declare class CreateDataLakeFunctionResponse extends $dara.Model {
22023
+ headers?: {
22024
+ [key: string]: string;
22025
+ };
22026
+ statusCode?: number;
22027
+ body?: CreateDataLakeFunctionResponseBody;
22028
+ static names(): {
22029
+ [key: string]: string;
22030
+ };
22031
+ static types(): {
22032
+ [key: string]: any;
22033
+ };
22034
+ validate(): void;
22035
+ constructor(map?: {
22036
+ [key: string]: any;
22037
+ });
22038
+ }
21887
22039
  export declare class CreateDataLakePartitionRequest extends $dara.Model {
21888
22040
  /**
21889
22041
  * @remarks
@@ -25344,7 +25496,7 @@ export declare class DeleteDataLakeDatabaseResponse extends $dara.Model {
25344
25496
  [key: string]: any;
25345
25497
  });
25346
25498
  }
25347
- export declare class DeleteDataLakePartitionRequest extends $dara.Model {
25499
+ export declare class DeleteDataLakeFunctionRequest extends $dara.Model {
25348
25500
  /**
25349
25501
  * @remarks
25350
25502
  * This parameter is required.
@@ -25369,29 +25521,24 @@ export declare class DeleteDataLakePartitionRequest extends $dara.Model {
25369
25521
  * default
25370
25522
  */
25371
25523
  dbName?: string;
25372
- /**
25373
- * @example
25374
- * true
25375
- */
25376
- ifExists?: boolean;
25377
- /**
25378
- * @remarks
25379
- * This parameter is required.
25380
- */
25381
- partitionValues?: string[];
25382
25524
  /**
25383
25525
  * @remarks
25384
25526
  * This parameter is required.
25385
25527
  *
25386
25528
  * @example
25387
- * table_name
25529
+ * my_funciton
25388
25530
  */
25389
- tableName?: string;
25531
+ functionName?: string;
25390
25532
  /**
25391
25533
  * @example
25392
25534
  * 3***
25393
25535
  */
25394
25536
  tid?: number;
25537
+ /**
25538
+ * @example
25539
+ * 12****
25540
+ */
25541
+ workspaceId?: number;
25395
25542
  static names(): {
25396
25543
  [key: string]: string;
25397
25544
  };
@@ -25403,7 +25550,56 @@ export declare class DeleteDataLakePartitionRequest extends $dara.Model {
25403
25550
  [key: string]: any;
25404
25551
  });
25405
25552
  }
25406
- export declare class DeleteDataLakePartitionShrinkRequest extends $dara.Model {
25553
+ export declare class DeleteDataLakeFunctionResponseBody extends $dara.Model {
25554
+ /**
25555
+ * @example
25556
+ * UnknownError
25557
+ */
25558
+ errorCode?: string;
25559
+ /**
25560
+ * @example
25561
+ * UnknownError
25562
+ */
25563
+ errorMessage?: string;
25564
+ /**
25565
+ * @example
25566
+ * B4B07137-F6AE-4756-8474-7F92BB6C4E04
25567
+ */
25568
+ requestId?: string;
25569
+ /**
25570
+ * @example
25571
+ * true
25572
+ */
25573
+ success?: boolean;
25574
+ static names(): {
25575
+ [key: string]: string;
25576
+ };
25577
+ static types(): {
25578
+ [key: string]: any;
25579
+ };
25580
+ validate(): void;
25581
+ constructor(map?: {
25582
+ [key: string]: any;
25583
+ });
25584
+ }
25585
+ export declare class DeleteDataLakeFunctionResponse extends $dara.Model {
25586
+ headers?: {
25587
+ [key: string]: string;
25588
+ };
25589
+ statusCode?: number;
25590
+ body?: DeleteDataLakeFunctionResponseBody;
25591
+ static names(): {
25592
+ [key: string]: string;
25593
+ };
25594
+ static types(): {
25595
+ [key: string]: any;
25596
+ };
25597
+ validate(): void;
25598
+ constructor(map?: {
25599
+ [key: string]: any;
25600
+ });
25601
+ }
25602
+ export declare class DeleteDataLakePartitionRequest extends $dara.Model {
25407
25603
  /**
25408
25604
  * @remarks
25409
25605
  * This parameter is required.
@@ -25437,7 +25633,7 @@ export declare class DeleteDataLakePartitionShrinkRequest extends $dara.Model {
25437
25633
  * @remarks
25438
25634
  * This parameter is required.
25439
25635
  */
25440
- partitionValuesShrink?: string;
25636
+ partitionValues?: string[];
25441
25637
  /**
25442
25638
  * @remarks
25443
25639
  * This parameter is required.
@@ -25462,56 +25658,115 @@ export declare class DeleteDataLakePartitionShrinkRequest extends $dara.Model {
25462
25658
  [key: string]: any;
25463
25659
  });
25464
25660
  }
25465
- export declare class DeleteDataLakePartitionResponseBody extends $dara.Model {
25466
- /**
25467
- * @example
25468
- * UnknownError
25469
- */
25470
- errorCode?: string;
25471
- /**
25472
- * @example
25473
- * UnknownError
25474
- */
25475
- errorMessage?: string;
25476
- /**
25477
- * @example
25478
- * 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
25479
- */
25480
- requestId?: string;
25481
- /**
25482
- * @example
25483
- * true
25484
- */
25485
- success?: boolean;
25486
- static names(): {
25487
- [key: string]: string;
25488
- };
25489
- static types(): {
25490
- [key: string]: any;
25491
- };
25492
- validate(): void;
25493
- constructor(map?: {
25494
- [key: string]: any;
25495
- });
25496
- }
25497
- export declare class DeleteDataLakePartitionResponse extends $dara.Model {
25498
- headers?: {
25499
- [key: string]: string;
25500
- };
25501
- statusCode?: number;
25502
- body?: DeleteDataLakePartitionResponseBody;
25503
- static names(): {
25504
- [key: string]: string;
25505
- };
25506
- static types(): {
25507
- [key: string]: any;
25508
- };
25509
- validate(): void;
25510
- constructor(map?: {
25511
- [key: string]: any;
25512
- });
25513
- }
25514
- export declare class DeleteDataLakeTableRequest extends $dara.Model {
25661
+ export declare class DeleteDataLakePartitionShrinkRequest extends $dara.Model {
25662
+ /**
25663
+ * @remarks
25664
+ * This parameter is required.
25665
+ *
25666
+ * @example
25667
+ * hive
25668
+ */
25669
+ catalogName?: string;
25670
+ /**
25671
+ * @remarks
25672
+ * This parameter is required.
25673
+ *
25674
+ * @example
25675
+ * cn-hangzhou
25676
+ */
25677
+ dataRegion?: string;
25678
+ /**
25679
+ * @remarks
25680
+ * This parameter is required.
25681
+ *
25682
+ * @example
25683
+ * default
25684
+ */
25685
+ dbName?: string;
25686
+ /**
25687
+ * @example
25688
+ * true
25689
+ */
25690
+ ifExists?: boolean;
25691
+ /**
25692
+ * @remarks
25693
+ * This parameter is required.
25694
+ */
25695
+ partitionValuesShrink?: string;
25696
+ /**
25697
+ * @remarks
25698
+ * This parameter is required.
25699
+ *
25700
+ * @example
25701
+ * table_name
25702
+ */
25703
+ tableName?: string;
25704
+ /**
25705
+ * @example
25706
+ * 3***
25707
+ */
25708
+ tid?: number;
25709
+ static names(): {
25710
+ [key: string]: string;
25711
+ };
25712
+ static types(): {
25713
+ [key: string]: any;
25714
+ };
25715
+ validate(): void;
25716
+ constructor(map?: {
25717
+ [key: string]: any;
25718
+ });
25719
+ }
25720
+ export declare class DeleteDataLakePartitionResponseBody extends $dara.Model {
25721
+ /**
25722
+ * @example
25723
+ * UnknownError
25724
+ */
25725
+ errorCode?: string;
25726
+ /**
25727
+ * @example
25728
+ * UnknownError
25729
+ */
25730
+ errorMessage?: string;
25731
+ /**
25732
+ * @example
25733
+ * 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
25734
+ */
25735
+ requestId?: string;
25736
+ /**
25737
+ * @example
25738
+ * true
25739
+ */
25740
+ success?: boolean;
25741
+ static names(): {
25742
+ [key: string]: string;
25743
+ };
25744
+ static types(): {
25745
+ [key: string]: any;
25746
+ };
25747
+ validate(): void;
25748
+ constructor(map?: {
25749
+ [key: string]: any;
25750
+ });
25751
+ }
25752
+ export declare class DeleteDataLakePartitionResponse extends $dara.Model {
25753
+ headers?: {
25754
+ [key: string]: string;
25755
+ };
25756
+ statusCode?: number;
25757
+ body?: DeleteDataLakePartitionResponseBody;
25758
+ static names(): {
25759
+ [key: string]: string;
25760
+ };
25761
+ static types(): {
25762
+ [key: string]: any;
25763
+ };
25764
+ validate(): void;
25765
+ constructor(map?: {
25766
+ [key: string]: any;
25767
+ });
25768
+ }
25769
+ export declare class DeleteDataLakeTableRequest extends $dara.Model {
25515
25770
  /**
25516
25771
  * @remarks
25517
25772
  * This parameter is required.
@@ -30361,6 +30616,110 @@ export declare class GetDataLakeDatabaseResponse extends $dara.Model {
30361
30616
  [key: string]: any;
30362
30617
  });
30363
30618
  }
30619
+ export declare class GetDataLakeFunctionRequest extends $dara.Model {
30620
+ /**
30621
+ * @remarks
30622
+ * This parameter is required.
30623
+ *
30624
+ * @example
30625
+ * hive
30626
+ */
30627
+ catalogName?: string;
30628
+ /**
30629
+ * @remarks
30630
+ * This parameter is required.
30631
+ *
30632
+ * @example
30633
+ * cn-hangzhou
30634
+ */
30635
+ dataRegion?: string;
30636
+ /**
30637
+ * @remarks
30638
+ * This parameter is required.
30639
+ *
30640
+ * @example
30641
+ * default
30642
+ */
30643
+ dbName?: string;
30644
+ /**
30645
+ * @remarks
30646
+ * This parameter is required.
30647
+ *
30648
+ * @example
30649
+ * my_funciton
30650
+ */
30651
+ functionName?: string;
30652
+ /**
30653
+ * @example
30654
+ * 3***
30655
+ */
30656
+ tid?: number;
30657
+ /**
30658
+ * @example
30659
+ * 12****
30660
+ */
30661
+ workspaceId?: number;
30662
+ static names(): {
30663
+ [key: string]: string;
30664
+ };
30665
+ static types(): {
30666
+ [key: string]: any;
30667
+ };
30668
+ validate(): void;
30669
+ constructor(map?: {
30670
+ [key: string]: any;
30671
+ });
30672
+ }
30673
+ export declare class GetDataLakeFunctionResponseBody extends $dara.Model {
30674
+ /**
30675
+ * @example
30676
+ * UnknownError
30677
+ */
30678
+ errorCode?: string;
30679
+ /**
30680
+ * @example
30681
+ * UnknownError
30682
+ */
30683
+ errorMessage?: string;
30684
+ function?: DLFunction;
30685
+ /**
30686
+ * @example
30687
+ * D911009F-3E95-5AFD-8CF1-73F7B4F15D6E
30688
+ */
30689
+ requestId?: string;
30690
+ /**
30691
+ * @example
30692
+ * true
30693
+ */
30694
+ success?: boolean;
30695
+ static names(): {
30696
+ [key: string]: string;
30697
+ };
30698
+ static types(): {
30699
+ [key: string]: any;
30700
+ };
30701
+ validate(): void;
30702
+ constructor(map?: {
30703
+ [key: string]: any;
30704
+ });
30705
+ }
30706
+ export declare class GetDataLakeFunctionResponse extends $dara.Model {
30707
+ headers?: {
30708
+ [key: string]: string;
30709
+ };
30710
+ statusCode?: number;
30711
+ body?: GetDataLakeFunctionResponseBody;
30712
+ static names(): {
30713
+ [key: string]: string;
30714
+ };
30715
+ static types(): {
30716
+ [key: string]: any;
30717
+ };
30718
+ validate(): void;
30719
+ constructor(map?: {
30720
+ [key: string]: any;
30721
+ });
30722
+ }
30364
30723
  export declare class GetDataLakePartitionRequest extends $dara.Model {
30365
30724
  /**
30366
30725
  * @remarks
@@ -37336,7 +37695,7 @@ export declare class ListDataLakeDatabaseResponse extends $dara.Model {
37336
37695
  [key: string]: any;
37337
37696
  });
37338
37697
  }
37339
- export declare class ListDataLakePartitionRequest extends $dara.Model {
37698
+ export declare class ListDataLakeFunctionRequest extends $dara.Model {
37340
37699
  /**
37341
37700
  * @remarks
37342
37701
  * This parameter is required.
@@ -37357,13 +37716,15 @@ export declare class ListDataLakePartitionRequest extends $dara.Model {
37357
37716
  */
37358
37717
  dataRegion?: string;
37359
37718
  /**
37360
- * @remarks
37361
- * This parameter is required.
37362
- *
37363
37719
  * @example
37364
37720
  * default
37365
37721
  */
37366
37722
  dbName?: string;
37723
+ /**
37724
+ * @example
37725
+ * .*
37726
+ */
37727
+ functionNamePattern?: string;
37367
37728
  /**
37368
37729
  * @example
37369
37730
  * 20
@@ -37374,20 +37735,54 @@ export declare class ListDataLakePartitionRequest extends $dara.Model {
37374
37735
  * f056501ada12c1cc
37375
37736
  */
37376
37737
  nextToken?: string;
37377
- partNames?: string[];
37378
37738
  /**
37379
- * @remarks
37380
- * This parameter is required.
37381
- *
37382
37739
  * @example
37383
- * test_table
37740
+ * 3***
37384
37741
  */
37385
- tableName?: string;
37742
+ tid?: number;
37743
+ static names(): {
37744
+ [key: string]: string;
37745
+ };
37746
+ static types(): {
37747
+ [key: string]: any;
37748
+ };
37749
+ validate(): void;
37750
+ constructor(map?: {
37751
+ [key: string]: any;
37752
+ });
37753
+ }
37754
+ export declare class ListDataLakeFunctionResponseBody extends $dara.Model {
37386
37755
  /**
37387
37756
  * @example
37388
- * 3***
37757
+ * UnknownError
37389
37758
  */
37390
- tid?: number;
37759
+ errorCode?: string;
37760
+ /**
37761
+ * @example
37762
+ * UnknownError
37763
+ */
37764
+ errorMessage?: string;
37765
+ functionList?: DLFunction[];
37766
+ /**
37767
+ * @example
37768
+ * 20
37769
+ */
37770
+ maxResults?: number;
37771
+ /**
37772
+ * @example
37773
+ * f056501ada12c1cc
37774
+ */
37775
+ nextToken?: string;
37776
+ /**
37777
+ * @example
37778
+ * 7FAD400F-7A5C-4193-8F9A-39D86C4F0231
37779
+ */
37780
+ requestId?: string;
37781
+ /**
37782
+ * @example
37783
+ * true
37784
+ */
37785
+ success?: boolean;
37391
37786
  static names(): {
37392
37787
  [key: string]: string;
37393
37788
  };
@@ -37399,7 +37794,206 @@ export declare class ListDataLakePartitionRequest extends $dara.Model {
37399
37794
  [key: string]: any;
37400
37795
  });
37401
37796
  }
37402
- export declare class ListDataLakePartitionShrinkRequest extends $dara.Model {
37797
+ export declare class ListDataLakeFunctionResponse extends $dara.Model {
37798
+ headers?: {
37799
+ [key: string]: string;
37800
+ };
37801
+ statusCode?: number;
37802
+ body?: ListDataLakeFunctionResponseBody;
37803
+ static names(): {
37804
+ [key: string]: string;
37805
+ };
37806
+ static types(): {
37807
+ [key: string]: any;
37808
+ };
37809
+ validate(): void;
37810
+ constructor(map?: {
37811
+ [key: string]: any;
37812
+ });
37813
+ }
37814
+ export declare class ListDataLakeFunctionNameRequest extends $dara.Model {
37815
+ /**
37816
+ * @remarks
37817
+ * This parameter is required.
37818
+ *
37819
+ * @example
37820
+ * hive
37821
+ */
37822
+ catalogName?: string;
37823
+ /**
37824
+ * @remarks
37825
+ * This parameter is required.
37826
+ *
37827
+ * @example
37828
+ * cn-hangzhou
37829
+ *
37830
+ * **if can be null:**
37831
+ * false
37832
+ */
37833
+ dataRegion?: string;
37834
+ /**
37835
+ * @remarks
37836
+ * This parameter is required.
37837
+ *
37838
+ * @example
37839
+ * default
37840
+ */
37841
+ dbName?: string;
37842
+ /**
37843
+ * @example
37844
+ * .*
37845
+ */
37846
+ functionNamePattern?: string;
37847
+ /**
37848
+ * @example
37849
+ * 20
37850
+ */
37851
+ maxResults?: number;
37852
+ /**
37853
+ * @example
37854
+ * f056501ada12c1cc
37855
+ */
37856
+ nextToken?: string;
37857
+ /**
37858
+ * @example
37859
+ * 3***
37860
+ */
37861
+ tid?: number;
37862
+ static names(): {
37863
+ [key: string]: string;
37864
+ };
37865
+ static types(): {
37866
+ [key: string]: any;
37867
+ };
37868
+ validate(): void;
37869
+ constructor(map?: {
37870
+ [key: string]: any;
37871
+ });
37872
+ }
37873
+ export declare class ListDataLakeFunctionNameResponseBody extends $dara.Model {
37874
+ /**
37875
+ * @example
37876
+ * UnknownError
37877
+ */
37878
+ errorCode?: string;
37879
+ /**
37880
+ * @example
37881
+ * UnknownError
37882
+ */
37883
+ errorMessage?: string;
37884
+ functionNameList?: string[];
37885
+ /**
37886
+ * @example
37887
+ * 20
37888
+ */
37889
+ maxResults?: number;
37890
+ /**
37891
+ * @example
37892
+ * f056501ada12c1cc
37893
+ */
37894
+ nextToken?: string;
37895
+ /**
37896
+ * @example
37897
+ * F1C78D32-1AFD-58AD-9DD2-C8A0896969DD
37898
+ */
37899
+ requestId?: string;
37900
+ /**
37901
+ * @example
37902
+ * true
37903
+ */
37904
+ success?: boolean;
37905
+ static names(): {
37906
+ [key: string]: string;
37907
+ };
37908
+ static types(): {
37909
+ [key: string]: any;
37910
+ };
37911
+ validate(): void;
37912
+ constructor(map?: {
37913
+ [key: string]: any;
37914
+ });
37915
+ }
37916
+ export declare class ListDataLakeFunctionNameResponse extends $dara.Model {
37917
+ headers?: {
37918
+ [key: string]: string;
37919
+ };
37920
+ statusCode?: number;
37921
+ body?: ListDataLakeFunctionNameResponseBody;
37922
+ static names(): {
37923
+ [key: string]: string;
37924
+ };
37925
+ static types(): {
37926
+ [key: string]: any;
37927
+ };
37928
+ validate(): void;
37929
+ constructor(map?: {
37930
+ [key: string]: any;
37931
+ });
37932
+ }
37933
+ export declare class ListDataLakePartitionRequest extends $dara.Model {
37934
+ /**
37935
+ * @remarks
37936
+ * This parameter is required.
37937
+ *
37938
+ * @example
37939
+ * hive
37940
+ */
37941
+ catalogName?: string;
37942
+ /**
37943
+ * @remarks
37944
+ * This parameter is required.
37945
+ *
37946
+ * @example
37947
+ * cn-hangzhou
37948
+ *
37949
+ * **if can be null:**
37950
+ * false
37951
+ */
37952
+ dataRegion?: string;
37953
+ /**
37954
+ * @remarks
37955
+ * This parameter is required.
37956
+ *
37957
+ * @example
37958
+ * default
37959
+ */
37960
+ dbName?: string;
37961
+ /**
37962
+ * @example
37963
+ * 20
37964
+ */
37965
+ maxResults?: number;
37966
+ /**
37967
+ * @example
37968
+ * f056501ada12c1cc
37969
+ */
37970
+ nextToken?: string;
37971
+ partNames?: string[];
37972
+ /**
37973
+ * @remarks
37974
+ * This parameter is required.
37975
+ *
37976
+ * @example
37977
+ * test_table
37978
+ */
37979
+ tableName?: string;
37980
+ /**
37981
+ * @example
37982
+ * 3***
37983
+ */
37984
+ tid?: number;
37985
+ static names(): {
37986
+ [key: string]: string;
37987
+ };
37988
+ static types(): {
37989
+ [key: string]: any;
37990
+ };
37991
+ validate(): void;
37992
+ constructor(map?: {
37993
+ [key: string]: any;
37994
+ });
37995
+ }
37996
+ export declare class ListDataLakePartitionShrinkRequest extends $dara.Model {
37403
37997
  /**
37404
37998
  * @remarks
37405
37999
  * This parameter is required.
@@ -48310,6 +48904,174 @@ export declare class UpdateDataLakeDatabaseResponse extends $dara.Model {
48310
48904
  [key: string]: any;
48311
48905
  });
48312
48906
  }
48907
+ export declare class UpdateDataLakeFunctionRequest extends $dara.Model {
48908
+ /**
48909
+ * @remarks
48910
+ * This parameter is required.
48911
+ *
48912
+ * @example
48913
+ * hive
48914
+ */
48915
+ catalogName?: string;
48916
+ /**
48917
+ * @remarks
48918
+ * This parameter is required.
48919
+ *
48920
+ * @example
48921
+ * cn-hangzhou
48922
+ */
48923
+ dataRegion?: string;
48924
+ /**
48925
+ * @remarks
48926
+ * This parameter is required.
48927
+ *
48928
+ * @example
48929
+ * default
48930
+ */
48931
+ dbName?: string;
48932
+ /**
48933
+ * @remarks
48934
+ * This parameter is required.
48935
+ */
48936
+ functionInput?: DLFunctionInput;
48937
+ /**
48938
+ * @remarks
48939
+ * This parameter is required.
48940
+ *
48941
+ * @example
48942
+ * my_funciton
48943
+ */
48944
+ functionName?: string;
48945
+ /**
48946
+ * @example
48947
+ * 3***
48948
+ */
48949
+ tid?: number;
48950
+ /**
48951
+ * @example
48952
+ * 12****
48953
+ */
48954
+ workspaceId?: number;
48955
+ static names(): {
48956
+ [key: string]: string;
48957
+ };
48958
+ static types(): {
48959
+ [key: string]: any;
48960
+ };
48961
+ validate(): void;
48962
+ constructor(map?: {
48963
+ [key: string]: any;
48964
+ });
48965
+ }
48966
+ export declare class UpdateDataLakeFunctionShrinkRequest extends $dara.Model {
48967
+ /**
48968
+ * @remarks
48969
+ * This parameter is required.
48970
+ *
48971
+ * @example
48972
+ * hive
48973
+ */
48974
+ catalogName?: string;
48975
+ /**
48976
+ * @remarks
48977
+ * This parameter is required.
48978
+ *
48979
+ * @example
48980
+ * cn-hangzhou
48981
+ */
48982
+ dataRegion?: string;
48983
+ /**
48984
+ * @remarks
48985
+ * This parameter is required.
48986
+ *
48987
+ * @example
48988
+ * default
48989
+ */
48990
+ dbName?: string;
48991
+ /**
48992
+ * @remarks
48993
+ * This parameter is required.
48994
+ */
48995
+ functionInputShrink?: string;
48996
+ /**
48997
+ * @remarks
48998
+ * This parameter is required.
48999
+ *
49000
+ * @example
49001
+ * my_funciton
49002
+ */
49003
+ functionName?: string;
49004
+ /**
49005
+ * @example
49006
+ * 3***
49007
+ */
49008
+ tid?: number;
49009
+ /**
49010
+ * @example
49011
+ * 12****
49012
+ */
49013
+ workspaceId?: number;
49014
+ static names(): {
49015
+ [key: string]: string;
49016
+ };
49017
+ static types(): {
49018
+ [key: string]: any;
49019
+ };
49020
+ validate(): void;
49021
+ constructor(map?: {
49022
+ [key: string]: any;
49023
+ });
49024
+ }
49025
+ export declare class UpdateDataLakeFunctionResponseBody extends $dara.Model {
49026
+ /**
49027
+ * @example
49028
+ * UnknownError
49029
+ */
49030
+ errorCode?: string;
49031
+ /**
49032
+ * @example
49033
+ * UnknownError
49034
+ */
49035
+ errorMessage?: string;
49036
+ function?: DLFunction;
49037
+ /**
49038
+ * @example
49039
+ * C1D39814-9808-47F8-AFE0-AF167239AC9B
49040
+ */
49041
+ requestId?: string;
49042
+ /**
49043
+ * @example
49044
+ * true
49045
+ */
49046
+ success?: boolean;
49047
+ static names(): {
49048
+ [key: string]: string;
49049
+ };
49050
+ static types(): {
49051
+ [key: string]: any;
49052
+ };
49053
+ validate(): void;
49054
+ constructor(map?: {
49055
+ [key: string]: any;
49056
+ });
49057
+ }
49058
+ export declare class UpdateDataLakeFunctionResponse extends $dara.Model {
49059
+ headers?: {
49060
+ [key: string]: string;
49061
+ };
49062
+ statusCode?: number;
49063
+ body?: UpdateDataLakeFunctionResponseBody;
49064
+ static names(): {
49065
+ [key: string]: string;
49066
+ };
49067
+ static types(): {
49068
+ [key: string]: any;
49069
+ };
49070
+ validate(): void;
49071
+ constructor(map?: {
49072
+ [key: string]: any;
49073
+ });
49074
+ }
48313
49075
  export declare class UpdateDataLakePartitionRequest extends $dara.Model {
48314
49076
  /**
48315
49077
  * @remarks
@@ -51647,6 +52409,21 @@ export default class Client extends OpenApi {
51647
52409
  * @returns CreateDataLakeDatabaseResponse
51648
52410
  */
51649
52411
  createDataLakeDatabase(request: CreateDataLakeDatabaseRequest): Promise<CreateDataLakeDatabaseResponse>;
52412
+ /**
52413
+ * 新建湖仓自定义函数
52414
+ *
52415
+ * @param tmpReq - CreateDataLakeFunctionRequest
52416
+ * @param runtime - runtime options for this request RuntimeOptions
52417
+ * @returns CreateDataLakeFunctionResponse
52418
+ */
52419
+ createDataLakeFunctionWithOptions(tmpReq: CreateDataLakeFunctionRequest, runtime: $dara.RuntimeOptions): Promise<CreateDataLakeFunctionResponse>;
52420
+ /**
52421
+ * 新建湖仓自定义函数
52422
+ *
52423
+ * @param request - CreateDataLakeFunctionRequest
52424
+ * @returns CreateDataLakeFunctionResponse
52425
+ */
52426
+ createDataLakeFunction(request: CreateDataLakeFunctionRequest): Promise<CreateDataLakeFunctionResponse>;
51650
52427
  /**
51651
52428
  * 新建湖仓表分区
51652
52429
  *
@@ -52104,6 +52881,21 @@ export default class Client extends OpenApi {
52104
52881
  * @returns DeleteDataLakeDatabaseResponse
52105
52882
  */
52106
52883
  deleteDataLakeDatabase(request: DeleteDataLakeDatabaseRequest): Promise<DeleteDataLakeDatabaseResponse>;
52884
+ /**
52885
+ * 删除湖仓自定义函数
52886
+ *
52887
+ * @param request - DeleteDataLakeFunctionRequest
52888
+ * @param runtime - runtime options for this request RuntimeOptions
52889
+ * @returns DeleteDataLakeFunctionResponse
52890
+ */
52891
+ deleteDataLakeFunctionWithOptions(request: DeleteDataLakeFunctionRequest, runtime: $dara.RuntimeOptions): Promise<DeleteDataLakeFunctionResponse>;
52892
+ /**
52893
+ * 删除湖仓自定义函数
52894
+ *
52895
+ * @param request - DeleteDataLakeFunctionRequest
52896
+ * @returns DeleteDataLakeFunctionResponse
52897
+ */
52898
+ deleteDataLakeFunction(request: DeleteDataLakeFunctionRequest): Promise<DeleteDataLakeFunctionResponse>;
52107
52899
  /**
52108
52900
  * 删除湖仓表分区
52109
52901
  *
@@ -52908,6 +53700,21 @@ export default class Client extends OpenApi {
52908
53700
  * @returns GetDataLakeDatabaseResponse
52909
53701
  */
52910
53702
  getDataLakeDatabase(request: GetDataLakeDatabaseRequest): Promise<GetDataLakeDatabaseResponse>;
53703
+ /**
53704
+ * 获取湖仓自定义函数详细信息
53705
+ *
53706
+ * @param request - GetDataLakeFunctionRequest
53707
+ * @param runtime - runtime options for this request RuntimeOptions
53708
+ * @returns GetDataLakeFunctionResponse
53709
+ */
53710
+ getDataLakeFunctionWithOptions(request: GetDataLakeFunctionRequest, runtime: $dara.RuntimeOptions): Promise<GetDataLakeFunctionResponse>;
53711
+ /**
53712
+ * 获取湖仓自定义函数详细信息
53713
+ *
53714
+ * @param request - GetDataLakeFunctionRequest
53715
+ * @returns GetDataLakeFunctionResponse
53716
+ */
53717
+ getDataLakeFunction(request: GetDataLakeFunctionRequest): Promise<GetDataLakeFunctionResponse>;
52911
53718
  /**
52912
53719
  * 获取湖仓表分区详情
52913
53720
  *
@@ -53967,6 +54774,36 @@ export default class Client extends OpenApi {
53967
54774
  * @returns ListDataLakeDatabaseResponse
53968
54775
  */
53969
54776
  listDataLakeDatabase(request: ListDataLakeDatabaseRequest): Promise<ListDataLakeDatabaseResponse>;
54777
+ /**
54778
+ * 获取数据湖函数列表
54779
+ *
54780
+ * @param request - ListDataLakeFunctionRequest
54781
+ * @param runtime - runtime options for this request RuntimeOptions
54782
+ * @returns ListDataLakeFunctionResponse
54783
+ */
54784
+ listDataLakeFunctionWithOptions(request: ListDataLakeFunctionRequest, runtime: $dara.RuntimeOptions): Promise<ListDataLakeFunctionResponse>;
54785
+ /**
54786
+ * 获取数据湖函数列表
54787
+ *
54788
+ * @param request - ListDataLakeFunctionRequest
54789
+ * @returns ListDataLakeFunctionResponse
54790
+ */
54791
+ listDataLakeFunction(request: ListDataLakeFunctionRequest): Promise<ListDataLakeFunctionResponse>;
54792
+ /**
54793
+ * 获取数据湖函数名列表
54794
+ *
54795
+ * @param request - ListDataLakeFunctionNameRequest
54796
+ * @param runtime - runtime options for this request RuntimeOptions
54797
+ * @returns ListDataLakeFunctionNameResponse
54798
+ */
54799
+ listDataLakeFunctionNameWithOptions(request: ListDataLakeFunctionNameRequest, runtime: $dara.RuntimeOptions): Promise<ListDataLakeFunctionNameResponse>;
54800
+ /**
54801
+ * 获取数据湖函数名列表
54802
+ *
54803
+ * @param request - ListDataLakeFunctionNameRequest
54804
+ * @returns ListDataLakeFunctionNameResponse
54805
+ */
54806
+ listDataLakeFunctionName(request: ListDataLakeFunctionNameRequest): Promise<ListDataLakeFunctionNameResponse>;
53970
54807
  /**
53971
54808
  * 获取数据湖表分区列表
53972
54809
  *
@@ -55331,6 +56168,21 @@ export default class Client extends OpenApi {
55331
56168
  * @returns UpdateDataLakeDatabaseResponse
55332
56169
  */
55333
56170
  updateDataLakeDatabase(request: UpdateDataLakeDatabaseRequest): Promise<UpdateDataLakeDatabaseResponse>;
56171
+ /**
56172
+ * 更新湖仓自定义函数
56173
+ *
56174
+ * @param tmpReq - UpdateDataLakeFunctionRequest
56175
+ * @param runtime - runtime options for this request RuntimeOptions
56176
+ * @returns UpdateDataLakeFunctionResponse
56177
+ */
56178
+ updateDataLakeFunctionWithOptions(tmpReq: UpdateDataLakeFunctionRequest, runtime: $dara.RuntimeOptions): Promise<UpdateDataLakeFunctionResponse>;
56179
+ /**
56180
+ * 更新湖仓自定义函数
56181
+ *
56182
+ * @param request - UpdateDataLakeFunctionRequest
56183
+ * @returns UpdateDataLakeFunctionResponse
56184
+ */
56185
+ updateDataLakeFunction(request: UpdateDataLakeFunctionRequest): Promise<UpdateDataLakeFunctionResponse>;
55334
56186
  /**
55335
56187
  * 更新湖仓表分区
55336
56188
  *