@alicloud/dms-enterprise20181101 1.40.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 +987 -74
- package/dist/client.js +1190 -97
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1908 -156
package/dist/client.d.ts
CHANGED
|
@@ -17450,6 +17450,50 @@ export declare class DLDatabase extends $dara.Model {
|
|
|
17450
17450
|
[key: string]: any;
|
|
17451
17451
|
});
|
|
17452
17452
|
}
|
|
17453
|
+
export declare class DLFunction extends $dara.Model {
|
|
17454
|
+
catalogName?: string;
|
|
17455
|
+
className?: string;
|
|
17456
|
+
createTime?: number;
|
|
17457
|
+
creatorId?: number;
|
|
17458
|
+
dbName?: string;
|
|
17459
|
+
functionName?: string;
|
|
17460
|
+
functionType?: string;
|
|
17461
|
+
modifierId?: number;
|
|
17462
|
+
ownerName?: string;
|
|
17463
|
+
ownerType?: string;
|
|
17464
|
+
resourceUris?: DLResourceUri[];
|
|
17465
|
+
static names(): {
|
|
17466
|
+
[key: string]: string;
|
|
17467
|
+
};
|
|
17468
|
+
static types(): {
|
|
17469
|
+
[key: string]: any;
|
|
17470
|
+
};
|
|
17471
|
+
validate(): void;
|
|
17472
|
+
constructor(map?: {
|
|
17473
|
+
[key: string]: any;
|
|
17474
|
+
});
|
|
17475
|
+
}
|
|
17476
|
+
export declare class DLFunctionInput extends $dara.Model {
|
|
17477
|
+
className?: string;
|
|
17478
|
+
createTime?: number;
|
|
17479
|
+
creatorId?: number;
|
|
17480
|
+
functionName?: string;
|
|
17481
|
+
functionType?: string;
|
|
17482
|
+
modifierId?: number;
|
|
17483
|
+
ownerName?: string;
|
|
17484
|
+
ownerType?: string;
|
|
17485
|
+
resourceUris?: DLResourceUri[];
|
|
17486
|
+
static names(): {
|
|
17487
|
+
[key: string]: string;
|
|
17488
|
+
};
|
|
17489
|
+
static types(): {
|
|
17490
|
+
[key: string]: any;
|
|
17491
|
+
};
|
|
17492
|
+
validate(): void;
|
|
17493
|
+
constructor(map?: {
|
|
17494
|
+
[key: string]: any;
|
|
17495
|
+
});
|
|
17496
|
+
}
|
|
17453
17497
|
export declare class DLOrder extends $dara.Model {
|
|
17454
17498
|
col?: string;
|
|
17455
17499
|
order?: number;
|
|
@@ -17505,6 +17549,20 @@ export declare class DLPartitionInput extends $dara.Model {
|
|
|
17505
17549
|
[key: string]: any;
|
|
17506
17550
|
});
|
|
17507
17551
|
}
|
|
17552
|
+
export declare class DLResourceUri extends $dara.Model {
|
|
17553
|
+
resourceType?: string;
|
|
17554
|
+
uri?: string;
|
|
17555
|
+
static names(): {
|
|
17556
|
+
[key: string]: string;
|
|
17557
|
+
};
|
|
17558
|
+
static types(): {
|
|
17559
|
+
[key: string]: any;
|
|
17560
|
+
};
|
|
17561
|
+
validate(): void;
|
|
17562
|
+
constructor(map?: {
|
|
17563
|
+
[key: string]: any;
|
|
17564
|
+
});
|
|
17565
|
+
}
|
|
17508
17566
|
export declare class DLSerdeInfo extends $dara.Model {
|
|
17509
17567
|
description?: string;
|
|
17510
17568
|
deserializerClass?: string;
|
|
@@ -21826,6 +21884,158 @@ export declare class CreateDataLakeDatabaseResponse extends $dara.Model {
|
|
|
21826
21884
|
[key: string]: any;
|
|
21827
21885
|
});
|
|
21828
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
|
+
}
|
|
21829
22039
|
export declare class CreateDataLakePartitionRequest extends $dara.Model {
|
|
21830
22040
|
/**
|
|
21831
22041
|
* @remarks
|
|
@@ -25286,7 +25496,7 @@ export declare class DeleteDataLakeDatabaseResponse extends $dara.Model {
|
|
|
25286
25496
|
[key: string]: any;
|
|
25287
25497
|
});
|
|
25288
25498
|
}
|
|
25289
|
-
export declare class
|
|
25499
|
+
export declare class DeleteDataLakeFunctionRequest extends $dara.Model {
|
|
25290
25500
|
/**
|
|
25291
25501
|
* @remarks
|
|
25292
25502
|
* This parameter is required.
|
|
@@ -25311,88 +25521,24 @@ export declare class DeleteDataLakePartitionRequest extends $dara.Model {
|
|
|
25311
25521
|
* default
|
|
25312
25522
|
*/
|
|
25313
25523
|
dbName?: string;
|
|
25314
|
-
/**
|
|
25315
|
-
* @example
|
|
25316
|
-
* true
|
|
25317
|
-
*/
|
|
25318
|
-
ifExists?: boolean;
|
|
25319
|
-
/**
|
|
25320
|
-
* @remarks
|
|
25321
|
-
* This parameter is required.
|
|
25322
|
-
*/
|
|
25323
|
-
partitionValues?: string[];
|
|
25324
25524
|
/**
|
|
25325
25525
|
* @remarks
|
|
25326
25526
|
* This parameter is required.
|
|
25327
25527
|
*
|
|
25328
25528
|
* @example
|
|
25329
|
-
*
|
|
25529
|
+
* my_funciton
|
|
25330
25530
|
*/
|
|
25331
|
-
|
|
25531
|
+
functionName?: string;
|
|
25332
25532
|
/**
|
|
25333
25533
|
* @example
|
|
25334
25534
|
* 3***
|
|
25335
25535
|
*/
|
|
25336
25536
|
tid?: number;
|
|
25337
|
-
static names(): {
|
|
25338
|
-
[key: string]: string;
|
|
25339
|
-
};
|
|
25340
|
-
static types(): {
|
|
25341
|
-
[key: string]: any;
|
|
25342
|
-
};
|
|
25343
|
-
validate(): void;
|
|
25344
|
-
constructor(map?: {
|
|
25345
|
-
[key: string]: any;
|
|
25346
|
-
});
|
|
25347
|
-
}
|
|
25348
|
-
export declare class DeleteDataLakePartitionShrinkRequest extends $dara.Model {
|
|
25349
|
-
/**
|
|
25350
|
-
* @remarks
|
|
25351
|
-
* This parameter is required.
|
|
25352
|
-
*
|
|
25353
|
-
* @example
|
|
25354
|
-
* hive
|
|
25355
|
-
*/
|
|
25356
|
-
catalogName?: string;
|
|
25357
|
-
/**
|
|
25358
|
-
* @remarks
|
|
25359
|
-
* This parameter is required.
|
|
25360
|
-
*
|
|
25361
|
-
* @example
|
|
25362
|
-
* cn-hangzhou
|
|
25363
|
-
*/
|
|
25364
|
-
dataRegion?: string;
|
|
25365
|
-
/**
|
|
25366
|
-
* @remarks
|
|
25367
|
-
* This parameter is required.
|
|
25368
|
-
*
|
|
25369
|
-
* @example
|
|
25370
|
-
* default
|
|
25371
|
-
*/
|
|
25372
|
-
dbName?: string;
|
|
25373
25537
|
/**
|
|
25374
25538
|
* @example
|
|
25375
|
-
*
|
|
25376
|
-
*/
|
|
25377
|
-
ifExists?: boolean;
|
|
25378
|
-
/**
|
|
25379
|
-
* @remarks
|
|
25380
|
-
* This parameter is required.
|
|
25381
|
-
*/
|
|
25382
|
-
partitionValuesShrink?: string;
|
|
25383
|
-
/**
|
|
25384
|
-
* @remarks
|
|
25385
|
-
* This parameter is required.
|
|
25386
|
-
*
|
|
25387
|
-
* @example
|
|
25388
|
-
* table_name
|
|
25389
|
-
*/
|
|
25390
|
-
tableName?: string;
|
|
25391
|
-
/**
|
|
25392
|
-
* @example
|
|
25393
|
-
* 3***
|
|
25539
|
+
* 12****
|
|
25394
25540
|
*/
|
|
25395
|
-
|
|
25541
|
+
workspaceId?: number;
|
|
25396
25542
|
static names(): {
|
|
25397
25543
|
[key: string]: string;
|
|
25398
25544
|
};
|
|
@@ -25404,7 +25550,7 @@ export declare class DeleteDataLakePartitionShrinkRequest extends $dara.Model {
|
|
|
25404
25550
|
[key: string]: any;
|
|
25405
25551
|
});
|
|
25406
25552
|
}
|
|
25407
|
-
export declare class
|
|
25553
|
+
export declare class DeleteDataLakeFunctionResponseBody extends $dara.Model {
|
|
25408
25554
|
/**
|
|
25409
25555
|
* @example
|
|
25410
25556
|
* UnknownError
|
|
@@ -25417,7 +25563,7 @@ export declare class DeleteDataLakePartitionResponseBody extends $dara.Model {
|
|
|
25417
25563
|
errorMessage?: string;
|
|
25418
25564
|
/**
|
|
25419
25565
|
* @example
|
|
25420
|
-
*
|
|
25566
|
+
* B4B07137-F6AE-4756-8474-7F92BB6C4E04
|
|
25421
25567
|
*/
|
|
25422
25568
|
requestId?: string;
|
|
25423
25569
|
/**
|
|
@@ -25436,12 +25582,12 @@ export declare class DeleteDataLakePartitionResponseBody extends $dara.Model {
|
|
|
25436
25582
|
[key: string]: any;
|
|
25437
25583
|
});
|
|
25438
25584
|
}
|
|
25439
|
-
export declare class
|
|
25585
|
+
export declare class DeleteDataLakeFunctionResponse extends $dara.Model {
|
|
25440
25586
|
headers?: {
|
|
25441
25587
|
[key: string]: string;
|
|
25442
25588
|
};
|
|
25443
25589
|
statusCode?: number;
|
|
25444
|
-
body?:
|
|
25590
|
+
body?: DeleteDataLakeFunctionResponseBody;
|
|
25445
25591
|
static names(): {
|
|
25446
25592
|
[key: string]: string;
|
|
25447
25593
|
};
|
|
@@ -25453,7 +25599,174 @@ export declare class DeleteDataLakePartitionResponse extends $dara.Model {
|
|
|
25453
25599
|
[key: string]: any;
|
|
25454
25600
|
});
|
|
25455
25601
|
}
|
|
25456
|
-
export declare class
|
|
25602
|
+
export declare class DeleteDataLakePartitionRequest extends $dara.Model {
|
|
25603
|
+
/**
|
|
25604
|
+
* @remarks
|
|
25605
|
+
* This parameter is required.
|
|
25606
|
+
*
|
|
25607
|
+
* @example
|
|
25608
|
+
* hive
|
|
25609
|
+
*/
|
|
25610
|
+
catalogName?: string;
|
|
25611
|
+
/**
|
|
25612
|
+
* @remarks
|
|
25613
|
+
* This parameter is required.
|
|
25614
|
+
*
|
|
25615
|
+
* @example
|
|
25616
|
+
* cn-hangzhou
|
|
25617
|
+
*/
|
|
25618
|
+
dataRegion?: string;
|
|
25619
|
+
/**
|
|
25620
|
+
* @remarks
|
|
25621
|
+
* This parameter is required.
|
|
25622
|
+
*
|
|
25623
|
+
* @example
|
|
25624
|
+
* default
|
|
25625
|
+
*/
|
|
25626
|
+
dbName?: string;
|
|
25627
|
+
/**
|
|
25628
|
+
* @example
|
|
25629
|
+
* true
|
|
25630
|
+
*/
|
|
25631
|
+
ifExists?: boolean;
|
|
25632
|
+
/**
|
|
25633
|
+
* @remarks
|
|
25634
|
+
* This parameter is required.
|
|
25635
|
+
*/
|
|
25636
|
+
partitionValues?: string[];
|
|
25637
|
+
/**
|
|
25638
|
+
* @remarks
|
|
25639
|
+
* This parameter is required.
|
|
25640
|
+
*
|
|
25641
|
+
* @example
|
|
25642
|
+
* table_name
|
|
25643
|
+
*/
|
|
25644
|
+
tableName?: string;
|
|
25645
|
+
/**
|
|
25646
|
+
* @example
|
|
25647
|
+
* 3***
|
|
25648
|
+
*/
|
|
25649
|
+
tid?: number;
|
|
25650
|
+
static names(): {
|
|
25651
|
+
[key: string]: string;
|
|
25652
|
+
};
|
|
25653
|
+
static types(): {
|
|
25654
|
+
[key: string]: any;
|
|
25655
|
+
};
|
|
25656
|
+
validate(): void;
|
|
25657
|
+
constructor(map?: {
|
|
25658
|
+
[key: string]: any;
|
|
25659
|
+
});
|
|
25660
|
+
}
|
|
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 {
|
|
25457
25770
|
/**
|
|
25458
25771
|
* @remarks
|
|
25459
25772
|
* This parameter is required.
|
|
@@ -30303,6 +30616,110 @@ export declare class GetDataLakeDatabaseResponse extends $dara.Model {
|
|
|
30303
30616
|
[key: string]: any;
|
|
30304
30617
|
});
|
|
30305
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
|
+
}
|
|
30306
30723
|
export declare class GetDataLakePartitionRequest extends $dara.Model {
|
|
30307
30724
|
/**
|
|
30308
30725
|
* @remarks
|
|
@@ -37278,6 +37695,241 @@ export declare class ListDataLakeDatabaseResponse extends $dara.Model {
|
|
|
37278
37695
|
[key: string]: any;
|
|
37279
37696
|
});
|
|
37280
37697
|
}
|
|
37698
|
+
export declare class ListDataLakeFunctionRequest extends $dara.Model {
|
|
37699
|
+
/**
|
|
37700
|
+
* @remarks
|
|
37701
|
+
* This parameter is required.
|
|
37702
|
+
*
|
|
37703
|
+
* @example
|
|
37704
|
+
* hive
|
|
37705
|
+
*/
|
|
37706
|
+
catalogName?: string;
|
|
37707
|
+
/**
|
|
37708
|
+
* @remarks
|
|
37709
|
+
* This parameter is required.
|
|
37710
|
+
*
|
|
37711
|
+
* @example
|
|
37712
|
+
* cn-hangzhou
|
|
37713
|
+
*
|
|
37714
|
+
* **if can be null:**
|
|
37715
|
+
* false
|
|
37716
|
+
*/
|
|
37717
|
+
dataRegion?: string;
|
|
37718
|
+
/**
|
|
37719
|
+
* @example
|
|
37720
|
+
* default
|
|
37721
|
+
*/
|
|
37722
|
+
dbName?: string;
|
|
37723
|
+
/**
|
|
37724
|
+
* @example
|
|
37725
|
+
* .*
|
|
37726
|
+
*/
|
|
37727
|
+
functionNamePattern?: string;
|
|
37728
|
+
/**
|
|
37729
|
+
* @example
|
|
37730
|
+
* 20
|
|
37731
|
+
*/
|
|
37732
|
+
maxResults?: number;
|
|
37733
|
+
/**
|
|
37734
|
+
* @example
|
|
37735
|
+
* f056501ada12c1cc
|
|
37736
|
+
*/
|
|
37737
|
+
nextToken?: string;
|
|
37738
|
+
/**
|
|
37739
|
+
* @example
|
|
37740
|
+
* 3***
|
|
37741
|
+
*/
|
|
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 {
|
|
37755
|
+
/**
|
|
37756
|
+
* @example
|
|
37757
|
+
* UnknownError
|
|
37758
|
+
*/
|
|
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;
|
|
37786
|
+
static names(): {
|
|
37787
|
+
[key: string]: string;
|
|
37788
|
+
};
|
|
37789
|
+
static types(): {
|
|
37790
|
+
[key: string]: any;
|
|
37791
|
+
};
|
|
37792
|
+
validate(): void;
|
|
37793
|
+
constructor(map?: {
|
|
37794
|
+
[key: string]: any;
|
|
37795
|
+
});
|
|
37796
|
+
}
|
|
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
|
+
}
|
|
37281
37933
|
export declare class ListDataLakePartitionRequest extends $dara.Model {
|
|
37282
37934
|
/**
|
|
37283
37935
|
* @remarks
|
|
@@ -48252,6 +48904,174 @@ export declare class UpdateDataLakeDatabaseResponse extends $dara.Model {
|
|
|
48252
48904
|
[key: string]: any;
|
|
48253
48905
|
});
|
|
48254
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
|
+
}
|
|
48255
49075
|
export declare class UpdateDataLakePartitionRequest extends $dara.Model {
|
|
48256
49076
|
/**
|
|
48257
49077
|
* @remarks
|
|
@@ -48439,6 +49259,7 @@ export declare class UpdateDataLakeTableRequest extends $dara.Model {
|
|
|
48439
49259
|
* This parameter is required.
|
|
48440
49260
|
*/
|
|
48441
49261
|
tableInput?: OpenStructDLTableInput;
|
|
49262
|
+
tableName?: string;
|
|
48442
49263
|
/**
|
|
48443
49264
|
* @example
|
|
48444
49265
|
* 3***
|
|
@@ -48485,6 +49306,7 @@ export declare class UpdateDataLakeTableShrinkRequest extends $dara.Model {
|
|
|
48485
49306
|
* This parameter is required.
|
|
48486
49307
|
*/
|
|
48487
49308
|
tableInputShrink?: string;
|
|
49309
|
+
tableName?: string;
|
|
48488
49310
|
/**
|
|
48489
49311
|
* @example
|
|
48490
49312
|
* 3***
|
|
@@ -51029,6 +51851,7 @@ export declare class UpdateUserRequest extends $dara.Model {
|
|
|
51029
51851
|
* 123456789
|
|
51030
51852
|
*/
|
|
51031
51853
|
uid?: number;
|
|
51854
|
+
uidString?: string;
|
|
51032
51855
|
/**
|
|
51033
51856
|
* @remarks
|
|
51034
51857
|
* The nickname of the user.
|
|
@@ -51586,6 +52409,21 @@ export default class Client extends OpenApi {
|
|
|
51586
52409
|
* @returns CreateDataLakeDatabaseResponse
|
|
51587
52410
|
*/
|
|
51588
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>;
|
|
51589
52427
|
/**
|
|
51590
52428
|
* 新建湖仓表分区
|
|
51591
52429
|
*
|
|
@@ -52043,6 +52881,21 @@ export default class Client extends OpenApi {
|
|
|
52043
52881
|
* @returns DeleteDataLakeDatabaseResponse
|
|
52044
52882
|
*/
|
|
52045
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>;
|
|
52046
52899
|
/**
|
|
52047
52900
|
* 删除湖仓表分区
|
|
52048
52901
|
*
|
|
@@ -52847,6 +53700,21 @@ export default class Client extends OpenApi {
|
|
|
52847
53700
|
* @returns GetDataLakeDatabaseResponse
|
|
52848
53701
|
*/
|
|
52849
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>;
|
|
52850
53718
|
/**
|
|
52851
53719
|
* 获取湖仓表分区详情
|
|
52852
53720
|
*
|
|
@@ -53906,6 +54774,36 @@ export default class Client extends OpenApi {
|
|
|
53906
54774
|
* @returns ListDataLakeDatabaseResponse
|
|
53907
54775
|
*/
|
|
53908
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>;
|
|
53909
54807
|
/**
|
|
53910
54808
|
* 获取数据湖表分区列表
|
|
53911
54809
|
*
|
|
@@ -55270,6 +56168,21 @@ export default class Client extends OpenApi {
|
|
|
55270
56168
|
* @returns UpdateDataLakeDatabaseResponse
|
|
55271
56169
|
*/
|
|
55272
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>;
|
|
55273
56186
|
/**
|
|
55274
56187
|
* 更新湖仓表分区
|
|
55275
56188
|
*
|