tencentcloud-sdk-nodejs-dlc 4.0.372 → 4.0.375
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/CHANGELOG.md +760 -0
- package/SERVICE_CHANGELOG.md +791 -51
- package/package.json +1 -1
- package/products.md +30 -28
- package/src/services/dlc/v20210125/dlc_client.ts +255 -43
- package/src/services/dlc/v20210125/dlc_models.ts +1551 -264
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +81 -13
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +120 -18
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +1256 -176
|
@@ -12,6 +12,15 @@ export interface DescribeTaskResultResponse {
|
|
|
12
12
|
*/
|
|
13
13
|
RequestId?: string;
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* AlterDMSTable返回参数结构体
|
|
17
|
+
*/
|
|
18
|
+
export interface AlterDMSTableResponse {
|
|
19
|
+
/**
|
|
20
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
21
|
+
*/
|
|
22
|
+
RequestId?: string;
|
|
23
|
+
}
|
|
15
24
|
/**
|
|
16
25
|
* DescribeDatabases请求参数结构体
|
|
17
26
|
*/
|
|
@@ -76,6 +85,30 @@ export interface DeleteUserRequest {
|
|
|
76
85
|
*/
|
|
77
86
|
UserIds: Array<string>;
|
|
78
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
* ListTaskJobLogDetail返回参数结构体
|
|
90
|
+
*/
|
|
91
|
+
export interface ListTaskJobLogDetailResponse {
|
|
92
|
+
/**
|
|
93
|
+
* 下一次分页参数
|
|
94
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
95
|
+
*/
|
|
96
|
+
Context: string;
|
|
97
|
+
/**
|
|
98
|
+
* 是否获取完结
|
|
99
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
100
|
+
*/
|
|
101
|
+
ListOver: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* 日志详情
|
|
104
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
105
|
+
*/
|
|
106
|
+
Results: Array<JobLogResult>;
|
|
107
|
+
/**
|
|
108
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
109
|
+
*/
|
|
110
|
+
RequestId?: string;
|
|
111
|
+
}
|
|
79
112
|
/**
|
|
80
113
|
* DescribeSparkAppJob请求参数结构体
|
|
81
114
|
*/
|
|
@@ -89,6 +122,15 @@ export interface DescribeSparkAppJobRequest {
|
|
|
89
122
|
*/
|
|
90
123
|
JobName?: string;
|
|
91
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* CreateDMSDatabase返回参数结构体
|
|
127
|
+
*/
|
|
128
|
+
export interface CreateDMSDatabaseResponse {
|
|
129
|
+
/**
|
|
130
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
131
|
+
*/
|
|
132
|
+
RequestId?: string;
|
|
133
|
+
}
|
|
92
134
|
/**
|
|
93
135
|
* CreateStoreLocation返回参数结构体
|
|
94
136
|
*/
|
|
@@ -98,6 +140,36 @@ export interface CreateStoreLocationResponse {
|
|
|
98
140
|
*/
|
|
99
141
|
RequestId?: string;
|
|
100
142
|
}
|
|
143
|
+
/**
|
|
144
|
+
* ReportHeartbeatMetaData请求参数结构体
|
|
145
|
+
*/
|
|
146
|
+
export interface ReportHeartbeatMetaDataRequest {
|
|
147
|
+
/**
|
|
148
|
+
* 数据源名称
|
|
149
|
+
*/
|
|
150
|
+
DatasourceConnectionName?: string;
|
|
151
|
+
/**
|
|
152
|
+
* 锁ID
|
|
153
|
+
*/
|
|
154
|
+
LockId?: number;
|
|
155
|
+
/**
|
|
156
|
+
* 事务ID
|
|
157
|
+
*/
|
|
158
|
+
TxnId?: number;
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* DescribeDMSDatabase返回参数结构体
|
|
162
|
+
*/
|
|
163
|
+
export interface DescribeDMSDatabaseResponse {
|
|
164
|
+
/**
|
|
165
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
166
|
+
*/
|
|
167
|
+
RequestId?: string;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* DropDMSDatabase请求参数结构体
|
|
171
|
+
*/
|
|
172
|
+
export declare type DropDMSDatabaseRequest = null;
|
|
101
173
|
/**
|
|
102
174
|
* CreateScript返回参数结构体
|
|
103
175
|
*/
|
|
@@ -384,6 +456,134 @@ export interface DescribeTasksResponse {
|
|
|
384
456
|
*/
|
|
385
457
|
RequestId?: string;
|
|
386
458
|
}
|
|
459
|
+
/**
|
|
460
|
+
* DescribeDMSTable返回参数结构体
|
|
461
|
+
*/
|
|
462
|
+
export interface DescribeDMSTableResponse {
|
|
463
|
+
/**
|
|
464
|
+
* 基础对象
|
|
465
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
466
|
+
*/
|
|
467
|
+
Asset: Asset;
|
|
468
|
+
/**
|
|
469
|
+
* 视图文本
|
|
470
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
471
|
+
*/
|
|
472
|
+
ViewOriginalText: string;
|
|
473
|
+
/**
|
|
474
|
+
* 视图文本
|
|
475
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
476
|
+
*/
|
|
477
|
+
ViewExpandedText: string;
|
|
478
|
+
/**
|
|
479
|
+
* hive维护版本
|
|
480
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
481
|
+
*/
|
|
482
|
+
Retention: number;
|
|
483
|
+
/**
|
|
484
|
+
* 存储对象
|
|
485
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
486
|
+
*/
|
|
487
|
+
Sds: DMSSds;
|
|
488
|
+
/**
|
|
489
|
+
* 分区列
|
|
490
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
491
|
+
*/
|
|
492
|
+
PartitionKeys: Array<DMSColumn>;
|
|
493
|
+
/**
|
|
494
|
+
* 分区
|
|
495
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
496
|
+
*/
|
|
497
|
+
Partitions: Array<DMSPartition>;
|
|
498
|
+
/**
|
|
499
|
+
* 表类型
|
|
500
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
501
|
+
*/
|
|
502
|
+
Type: string;
|
|
503
|
+
/**
|
|
504
|
+
* 数据库名称
|
|
505
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
506
|
+
*/
|
|
507
|
+
DbName: string;
|
|
508
|
+
/**
|
|
509
|
+
* Schame名称
|
|
510
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
511
|
+
*/
|
|
512
|
+
SchemaName: string;
|
|
513
|
+
/**
|
|
514
|
+
* 存储大小
|
|
515
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
516
|
+
*/
|
|
517
|
+
StorageSize: number;
|
|
518
|
+
/**
|
|
519
|
+
* 记录数量
|
|
520
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
521
|
+
*/
|
|
522
|
+
RecordCount: number;
|
|
523
|
+
/**
|
|
524
|
+
* 生命周期
|
|
525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
526
|
+
*/
|
|
527
|
+
LifeTime: number;
|
|
528
|
+
/**
|
|
529
|
+
* 最后访问时间
|
|
530
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
531
|
+
*/
|
|
532
|
+
LastAccessTime: string;
|
|
533
|
+
/**
|
|
534
|
+
* 数据更新时间
|
|
535
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
536
|
+
*/
|
|
537
|
+
DataUpdateTime: string;
|
|
538
|
+
/**
|
|
539
|
+
* 结构更新时间
|
|
540
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
541
|
+
*/
|
|
542
|
+
StructUpdateTime: string;
|
|
543
|
+
/**
|
|
544
|
+
* 列
|
|
545
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
546
|
+
*/
|
|
547
|
+
Columns: Array<DMSColumn>;
|
|
548
|
+
/**
|
|
549
|
+
* 表名称
|
|
550
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
551
|
+
*/
|
|
552
|
+
Name: string;
|
|
553
|
+
/**
|
|
554
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
555
|
+
*/
|
|
556
|
+
RequestId?: string;
|
|
557
|
+
}
|
|
558
|
+
/**
|
|
559
|
+
* DropDMSPartitions请求参数结构体
|
|
560
|
+
*/
|
|
561
|
+
export interface DropDMSPartitionsRequest {
|
|
562
|
+
/**
|
|
563
|
+
* 数据库名称
|
|
564
|
+
*/
|
|
565
|
+
DatabaseName?: string;
|
|
566
|
+
/**
|
|
567
|
+
* 数据库Schema名称
|
|
568
|
+
*/
|
|
569
|
+
SchemaName?: string;
|
|
570
|
+
/**
|
|
571
|
+
* 数据表名称
|
|
572
|
+
*/
|
|
573
|
+
TableName?: string;
|
|
574
|
+
/**
|
|
575
|
+
* 分区名称
|
|
576
|
+
*/
|
|
577
|
+
Name?: string;
|
|
578
|
+
/**
|
|
579
|
+
* 单个分区名称
|
|
580
|
+
*/
|
|
581
|
+
Values?: Array<string>;
|
|
582
|
+
/**
|
|
583
|
+
* 是否删除分区数据
|
|
584
|
+
*/
|
|
585
|
+
DeleteData?: boolean;
|
|
586
|
+
}
|
|
387
587
|
/**
|
|
388
588
|
* CreateTasksInOrder请求参数结构体
|
|
389
589
|
*/
|
|
@@ -401,6 +601,23 @@ export interface CreateTasksInOrderRequest {
|
|
|
401
601
|
*/
|
|
402
602
|
DatasourceConnectionName?: string;
|
|
403
603
|
}
|
|
604
|
+
/**
|
|
605
|
+
* AddDMSPartitions返回参数结构体
|
|
606
|
+
*/
|
|
607
|
+
export interface AddDMSPartitionsResponse {
|
|
608
|
+
/**
|
|
609
|
+
* 成功数量
|
|
610
|
+
*/
|
|
611
|
+
Total: number;
|
|
612
|
+
/**
|
|
613
|
+
* 分区值
|
|
614
|
+
*/
|
|
615
|
+
Partitions: Array<DMSPartition>;
|
|
616
|
+
/**
|
|
617
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
618
|
+
*/
|
|
619
|
+
RequestId?: string;
|
|
620
|
+
}
|
|
404
621
|
/**
|
|
405
622
|
* DetachWorkGroupPolicy返回参数结构体
|
|
406
623
|
*/
|
|
@@ -520,6 +737,55 @@ export interface ModifySparkAppRequest {
|
|
|
520
737
|
*/
|
|
521
738
|
DataSource?: string;
|
|
522
739
|
}
|
|
740
|
+
/**
|
|
741
|
+
* spark流任务统计信息
|
|
742
|
+
*/
|
|
743
|
+
export interface StreamingStatistics {
|
|
744
|
+
/**
|
|
745
|
+
* 任务开始时间
|
|
746
|
+
*/
|
|
747
|
+
StartTime: string;
|
|
748
|
+
/**
|
|
749
|
+
* 数据接收器数
|
|
750
|
+
*/
|
|
751
|
+
Receivers: number;
|
|
752
|
+
/**
|
|
753
|
+
* 运行中的接收器数
|
|
754
|
+
*/
|
|
755
|
+
NumActiveReceivers: number;
|
|
756
|
+
/**
|
|
757
|
+
* 不活跃的接收器数
|
|
758
|
+
*/
|
|
759
|
+
NumInactiveReceivers: number;
|
|
760
|
+
/**
|
|
761
|
+
* 运行中的批数
|
|
762
|
+
*/
|
|
763
|
+
NumActiveBatches: number;
|
|
764
|
+
/**
|
|
765
|
+
* 待处理的批数
|
|
766
|
+
*/
|
|
767
|
+
NumRetainedCompletedBatches: number;
|
|
768
|
+
/**
|
|
769
|
+
* 已完成的批数
|
|
770
|
+
*/
|
|
771
|
+
NumTotalCompletedBatches: number;
|
|
772
|
+
/**
|
|
773
|
+
* 平均输入速率
|
|
774
|
+
*/
|
|
775
|
+
AverageInputRate: number;
|
|
776
|
+
/**
|
|
777
|
+
* 平均等待时长
|
|
778
|
+
*/
|
|
779
|
+
AverageSchedulingDelay: number;
|
|
780
|
+
/**
|
|
781
|
+
* 平均处理时长
|
|
782
|
+
*/
|
|
783
|
+
AverageProcessingTime: number;
|
|
784
|
+
/**
|
|
785
|
+
* 平均延时
|
|
786
|
+
*/
|
|
787
|
+
AverageTotalDelay: number;
|
|
788
|
+
}
|
|
523
789
|
/**
|
|
524
790
|
* CreateDatabase请求参数结构体
|
|
525
791
|
*/
|
|
@@ -533,6 +799,25 @@ export interface CreateDatabaseRequest {
|
|
|
533
799
|
*/
|
|
534
800
|
DatasourceConnectionName?: string;
|
|
535
801
|
}
|
|
802
|
+
/**
|
|
803
|
+
* DescribeDMSTables返回参数结构体
|
|
804
|
+
*/
|
|
805
|
+
export interface DescribeDMSTablesResponse {
|
|
806
|
+
/**
|
|
807
|
+
* DMS元数据列表信息
|
|
808
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
809
|
+
*/
|
|
810
|
+
TableList: Array<DMSTableInfo>;
|
|
811
|
+
/**
|
|
812
|
+
* 统计值
|
|
813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
814
|
+
*/
|
|
815
|
+
TotalCount: number;
|
|
816
|
+
/**
|
|
817
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
818
|
+
*/
|
|
819
|
+
RequestId?: string;
|
|
820
|
+
}
|
|
536
821
|
/**
|
|
537
822
|
* 绑定到同一个工作组的用户Id的集合
|
|
538
823
|
*/
|
|
@@ -546,6 +831,27 @@ export interface UserIdSetOfWorkGroupId {
|
|
|
546
831
|
*/
|
|
547
832
|
UserIds: Array<string>;
|
|
548
833
|
}
|
|
834
|
+
/**
|
|
835
|
+
* AlterDMSPartition请求参数结构体
|
|
836
|
+
*/
|
|
837
|
+
export interface AlterDMSPartitionRequest {
|
|
838
|
+
/**
|
|
839
|
+
* 当前名称,变更前db名称
|
|
840
|
+
*/
|
|
841
|
+
CurrentDbName: string;
|
|
842
|
+
/**
|
|
843
|
+
* 当前名称,变更前table名称
|
|
844
|
+
*/
|
|
845
|
+
CurrentTableName: string;
|
|
846
|
+
/**
|
|
847
|
+
* 当前名称,变更前Part名称
|
|
848
|
+
*/
|
|
849
|
+
CurrentValues: string;
|
|
850
|
+
/**
|
|
851
|
+
* 分区
|
|
852
|
+
*/
|
|
853
|
+
Partition?: DMSPartition;
|
|
854
|
+
}
|
|
549
855
|
/**
|
|
550
856
|
* 视图基本配置信息
|
|
551
857
|
*/
|
|
@@ -559,6 +865,31 @@ export interface ViewBaseInfo {
|
|
|
559
865
|
*/
|
|
560
866
|
ViewName: string;
|
|
561
867
|
}
|
|
868
|
+
/**
|
|
869
|
+
* CheckLockMetaData请求参数结构体
|
|
870
|
+
*/
|
|
871
|
+
export interface CheckLockMetaDataRequest {
|
|
872
|
+
/**
|
|
873
|
+
* 锁ID
|
|
874
|
+
*/
|
|
875
|
+
LockId: number;
|
|
876
|
+
/**
|
|
877
|
+
* 数据源名称
|
|
878
|
+
*/
|
|
879
|
+
DatasourceConnectionName?: string;
|
|
880
|
+
/**
|
|
881
|
+
* 事务ID
|
|
882
|
+
*/
|
|
883
|
+
TxnId?: number;
|
|
884
|
+
/**
|
|
885
|
+
* 过期时间ms
|
|
886
|
+
*/
|
|
887
|
+
ElapsedMs?: number;
|
|
888
|
+
}
|
|
889
|
+
/**
|
|
890
|
+
* 元数据基本对象
|
|
891
|
+
*/
|
|
892
|
+
export declare type Asset = null;
|
|
562
893
|
/**
|
|
563
894
|
* CreateDatabase返回参数结构体
|
|
564
895
|
*/
|
|
@@ -684,6 +1015,19 @@ export interface TableBaseInfo {
|
|
|
684
1015
|
*/
|
|
685
1016
|
TableFormat?: string;
|
|
686
1017
|
}
|
|
1018
|
+
/**
|
|
1019
|
+
* UnlockMetaData请求参数结构体
|
|
1020
|
+
*/
|
|
1021
|
+
export interface UnlockMetaDataRequest {
|
|
1022
|
+
/**
|
|
1023
|
+
* 锁ID
|
|
1024
|
+
*/
|
|
1025
|
+
LockId: number;
|
|
1026
|
+
/**
|
|
1027
|
+
* 数据源名称
|
|
1028
|
+
*/
|
|
1029
|
+
DatasourceConnectionName?: string;
|
|
1030
|
+
}
|
|
687
1031
|
/**
|
|
688
1032
|
* AttachUserPolicy请求参数结构体
|
|
689
1033
|
*/
|
|
@@ -788,23 +1132,109 @@ export interface CreateStoreLocationRequest {
|
|
|
788
1132
|
StoreLocation: string;
|
|
789
1133
|
}
|
|
790
1134
|
/**
|
|
791
|
-
*
|
|
1135
|
+
* 元数据加锁内容
|
|
792
1136
|
*/
|
|
793
|
-
export interface
|
|
1137
|
+
export interface LockComponentInfo {
|
|
794
1138
|
/**
|
|
795
|
-
*
|
|
1139
|
+
* 数据库名称
|
|
796
1140
|
*/
|
|
797
|
-
|
|
1141
|
+
DbName: string;
|
|
798
1142
|
/**
|
|
799
|
-
*
|
|
1143
|
+
* 表名称
|
|
800
1144
|
*/
|
|
801
|
-
|
|
1145
|
+
TableName?: string;
|
|
802
1146
|
/**
|
|
803
|
-
*
|
|
1147
|
+
* 分区
|
|
804
1148
|
*/
|
|
805
|
-
|
|
1149
|
+
Partition?: string;
|
|
806
1150
|
/**
|
|
807
|
-
*
|
|
1151
|
+
* 锁类型:SHARED_READ、SHARED_WRITE、EXCLUSIVE
|
|
1152
|
+
*/
|
|
1153
|
+
LockType?: string;
|
|
1154
|
+
/**
|
|
1155
|
+
* 锁级别:DB、TABLE、PARTITION
|
|
1156
|
+
*/
|
|
1157
|
+
LockLevel?: string;
|
|
1158
|
+
/**
|
|
1159
|
+
* 锁操作:SELECT,INSERT,UPDATE,DELETE,UNSET,NO_TXN
|
|
1160
|
+
*/
|
|
1161
|
+
DataOperationType?: string;
|
|
1162
|
+
/**
|
|
1163
|
+
* 是否保持Acid
|
|
1164
|
+
*/
|
|
1165
|
+
IsAcid?: boolean;
|
|
1166
|
+
/**
|
|
1167
|
+
* 是否动态分区写
|
|
1168
|
+
*/
|
|
1169
|
+
IsDynamicPartitionWrite?: boolean;
|
|
1170
|
+
}
|
|
1171
|
+
/**
|
|
1172
|
+
* DescribeDMSPartitions请求参数结构体
|
|
1173
|
+
*/
|
|
1174
|
+
export interface DescribeDMSPartitionsRequest {
|
|
1175
|
+
/**
|
|
1176
|
+
* 数据库名
|
|
1177
|
+
*/
|
|
1178
|
+
DatabaseName: string;
|
|
1179
|
+
/**
|
|
1180
|
+
* 表名称
|
|
1181
|
+
*/
|
|
1182
|
+
TableName: string;
|
|
1183
|
+
/**
|
|
1184
|
+
* schema名称
|
|
1185
|
+
*/
|
|
1186
|
+
SchemaName?: string;
|
|
1187
|
+
/**
|
|
1188
|
+
* 名称
|
|
1189
|
+
*/
|
|
1190
|
+
Name?: string;
|
|
1191
|
+
/**
|
|
1192
|
+
* 单个分区名称,精准匹配
|
|
1193
|
+
*/
|
|
1194
|
+
Values?: Array<string>;
|
|
1195
|
+
/**
|
|
1196
|
+
* 多个分区名称,精准匹配
|
|
1197
|
+
*/
|
|
1198
|
+
PartitionNames?: Array<string>;
|
|
1199
|
+
/**
|
|
1200
|
+
* 多个分区字段的匹配,模糊匹配
|
|
1201
|
+
*/
|
|
1202
|
+
PartValues?: Array<string>;
|
|
1203
|
+
/**
|
|
1204
|
+
* 过滤SQL
|
|
1205
|
+
*/
|
|
1206
|
+
Filter?: string;
|
|
1207
|
+
/**
|
|
1208
|
+
* 最大分区数量
|
|
1209
|
+
*/
|
|
1210
|
+
MaxParts?: number;
|
|
1211
|
+
/**
|
|
1212
|
+
* 翻页跳过数量
|
|
1213
|
+
*/
|
|
1214
|
+
Offset?: number;
|
|
1215
|
+
/**
|
|
1216
|
+
* 页面数量
|
|
1217
|
+
*/
|
|
1218
|
+
Limit?: number;
|
|
1219
|
+
}
|
|
1220
|
+
/**
|
|
1221
|
+
* DescribeSparkAppJobs请求参数结构体
|
|
1222
|
+
*/
|
|
1223
|
+
export interface DescribeSparkAppJobsRequest {
|
|
1224
|
+
/**
|
|
1225
|
+
* 返回结果按照该字段排序
|
|
1226
|
+
*/
|
|
1227
|
+
SortBy?: string;
|
|
1228
|
+
/**
|
|
1229
|
+
* 正序或者倒序,例如:desc
|
|
1230
|
+
*/
|
|
1231
|
+
Sorting?: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* 按照该参数过滤
|
|
1234
|
+
*/
|
|
1235
|
+
Filters?: Array<Filter>;
|
|
1236
|
+
/**
|
|
1237
|
+
* 更新时间起始点
|
|
808
1238
|
*/
|
|
809
1239
|
StartTime?: string;
|
|
810
1240
|
/**
|
|
@@ -820,6 +1250,15 @@ export interface DescribeSparkAppJobsRequest {
|
|
|
820
1250
|
*/
|
|
821
1251
|
Limit?: number;
|
|
822
1252
|
}
|
|
1253
|
+
/**
|
|
1254
|
+
* CreateDMSTable返回参数结构体
|
|
1255
|
+
*/
|
|
1256
|
+
export interface CreateDMSTableResponse {
|
|
1257
|
+
/**
|
|
1258
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1259
|
+
*/
|
|
1260
|
+
RequestId?: string;
|
|
1261
|
+
}
|
|
823
1262
|
/**
|
|
824
1263
|
* 数据表分块信息。
|
|
825
1264
|
*/
|
|
@@ -932,33 +1371,25 @@ export interface DescribeWorkGroupsResponse {
|
|
|
932
1371
|
RequestId?: string;
|
|
933
1372
|
}
|
|
934
1373
|
/**
|
|
935
|
-
*
|
|
1374
|
+
* CreateImportTask请求参数结构体
|
|
936
1375
|
*/
|
|
937
|
-
export interface
|
|
938
|
-
/**
|
|
939
|
-
* 指定查询的子用户uin,用户需要通过CreateUser接口创建。
|
|
940
|
-
*/
|
|
941
|
-
UserId?: string;
|
|
942
|
-
/**
|
|
943
|
-
* 偏移量,默认为0
|
|
944
|
-
*/
|
|
945
|
-
Offset?: number;
|
|
1376
|
+
export interface CreateImportTaskRequest {
|
|
946
1377
|
/**
|
|
947
|
-
*
|
|
1378
|
+
* 数据来源,cos
|
|
948
1379
|
*/
|
|
949
|
-
|
|
1380
|
+
InputType: string;
|
|
950
1381
|
/**
|
|
951
|
-
*
|
|
1382
|
+
* 输入配置
|
|
952
1383
|
*/
|
|
953
|
-
|
|
1384
|
+
InputConf: Array<KVPair>;
|
|
954
1385
|
/**
|
|
955
|
-
*
|
|
1386
|
+
* 输出配置
|
|
956
1387
|
*/
|
|
957
|
-
|
|
1388
|
+
OutputConf: Array<KVPair>;
|
|
958
1389
|
/**
|
|
959
|
-
*
|
|
1390
|
+
* 目标数据源的类型,目前支持导入到托管存储,即lakefsStorage
|
|
960
1391
|
*/
|
|
961
|
-
|
|
1392
|
+
OutputType?: string;
|
|
962
1393
|
}
|
|
963
1394
|
/**
|
|
964
1395
|
* DescribeScripts请求参数结构体
|
|
@@ -1028,47 +1459,13 @@ export interface AddUsersToWorkGroupRequest {
|
|
|
1028
1459
|
*/
|
|
1029
1460
|
export declare type DescribeStoreLocationRequest = null;
|
|
1030
1461
|
/**
|
|
1031
|
-
*
|
|
1462
|
+
* AddUsersToWorkGroup返回参数结构体
|
|
1032
1463
|
*/
|
|
1033
|
-
export interface
|
|
1034
|
-
/**
|
|
1035
|
-
* 列出该数据库下所属数据表。
|
|
1036
|
-
*/
|
|
1037
|
-
DatabaseName: string;
|
|
1038
|
-
/**
|
|
1039
|
-
* 返回数量,默认为10,最大值为100。
|
|
1040
|
-
*/
|
|
1041
|
-
Limit?: number;
|
|
1042
|
-
/**
|
|
1043
|
-
* 数据偏移量,从0开始,默认为0。
|
|
1044
|
-
*/
|
|
1045
|
-
Offset?: number;
|
|
1046
|
-
/**
|
|
1047
|
-
* 过滤条件,如下支持的过滤类型,传参Name应为其一
|
|
1048
|
-
view-name - String - (过滤条件)数据表名称,形如:view-001。
|
|
1049
|
-
view-id - String - (过滤条件)view id形如:12342。
|
|
1050
|
-
*/
|
|
1051
|
-
Filters?: Array<Filter>;
|
|
1052
|
-
/**
|
|
1053
|
-
* 数据库所属的数据源名称
|
|
1054
|
-
*/
|
|
1055
|
-
DatasourceConnectionName?: string;
|
|
1056
|
-
/**
|
|
1057
|
-
* 排序字段
|
|
1058
|
-
*/
|
|
1059
|
-
Sort?: string;
|
|
1060
|
-
/**
|
|
1061
|
-
* 排序规则,true:升序;false:降序
|
|
1062
|
-
*/
|
|
1063
|
-
Asc?: boolean;
|
|
1064
|
-
/**
|
|
1065
|
-
* 按视图更新时间筛选,开始时间,如2021-11-11 00:00:00
|
|
1066
|
-
*/
|
|
1067
|
-
StartTime?: string;
|
|
1464
|
+
export interface AddUsersToWorkGroupResponse {
|
|
1068
1465
|
/**
|
|
1069
|
-
*
|
|
1466
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1070
1467
|
*/
|
|
1071
|
-
|
|
1468
|
+
RequestId?: string;
|
|
1072
1469
|
}
|
|
1073
1470
|
/**
|
|
1074
1471
|
* 授权用户信息
|
|
@@ -1138,6 +1535,195 @@ export interface CreateExportTaskRequest {
|
|
|
1138
1535
|
*/
|
|
1139
1536
|
OutputType?: string;
|
|
1140
1537
|
}
|
|
1538
|
+
/**
|
|
1539
|
+
* ReportHeartbeatMetaData返回参数结构体
|
|
1540
|
+
*/
|
|
1541
|
+
export interface ReportHeartbeatMetaDataResponse {
|
|
1542
|
+
/**
|
|
1543
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1544
|
+
*/
|
|
1545
|
+
RequestId?: string;
|
|
1546
|
+
}
|
|
1547
|
+
/**
|
|
1548
|
+
* CreateDMSTable请求参数结构体
|
|
1549
|
+
*/
|
|
1550
|
+
export interface CreateDMSTableRequest {
|
|
1551
|
+
/**
|
|
1552
|
+
* 基础对象
|
|
1553
|
+
*/
|
|
1554
|
+
Asset?: Asset;
|
|
1555
|
+
/**
|
|
1556
|
+
* 表类型
|
|
1557
|
+
*/
|
|
1558
|
+
Type?: string;
|
|
1559
|
+
/**
|
|
1560
|
+
* 数据库名称
|
|
1561
|
+
*/
|
|
1562
|
+
DbName?: string;
|
|
1563
|
+
/**
|
|
1564
|
+
* 存储大小
|
|
1565
|
+
*/
|
|
1566
|
+
StorageSize?: number;
|
|
1567
|
+
/**
|
|
1568
|
+
* 记录数量
|
|
1569
|
+
*/
|
|
1570
|
+
RecordCount?: number;
|
|
1571
|
+
/**
|
|
1572
|
+
* 生命周期
|
|
1573
|
+
*/
|
|
1574
|
+
LifeTime?: number;
|
|
1575
|
+
/**
|
|
1576
|
+
* 数据更新时间
|
|
1577
|
+
*/
|
|
1578
|
+
DataUpdateTime?: string;
|
|
1579
|
+
/**
|
|
1580
|
+
* 结构更新时间
|
|
1581
|
+
*/
|
|
1582
|
+
StructUpdateTime?: string;
|
|
1583
|
+
/**
|
|
1584
|
+
* 最后访问时间
|
|
1585
|
+
*/
|
|
1586
|
+
LastAccessTime?: string;
|
|
1587
|
+
/**
|
|
1588
|
+
* 存储对象
|
|
1589
|
+
*/
|
|
1590
|
+
Sds?: DMSSds;
|
|
1591
|
+
/**
|
|
1592
|
+
* 列
|
|
1593
|
+
*/
|
|
1594
|
+
Columns?: Array<DMSColumn>;
|
|
1595
|
+
/**
|
|
1596
|
+
* 分区键值
|
|
1597
|
+
*/
|
|
1598
|
+
PartitionKeys?: Array<DMSColumn>;
|
|
1599
|
+
/**
|
|
1600
|
+
* 视图文本
|
|
1601
|
+
*/
|
|
1602
|
+
ViewOriginalText?: string;
|
|
1603
|
+
/**
|
|
1604
|
+
* 视图文本
|
|
1605
|
+
*/
|
|
1606
|
+
ViewExpandedText?: string;
|
|
1607
|
+
/**
|
|
1608
|
+
* 分区
|
|
1609
|
+
*/
|
|
1610
|
+
Partitions?: Array<DMSPartition>;
|
|
1611
|
+
/**
|
|
1612
|
+
* 表名称
|
|
1613
|
+
*/
|
|
1614
|
+
Name?: string;
|
|
1615
|
+
}
|
|
1616
|
+
/**
|
|
1617
|
+
* DropDMSTable请求参数结构体
|
|
1618
|
+
*/
|
|
1619
|
+
export interface DropDMSTableRequest {
|
|
1620
|
+
/**
|
|
1621
|
+
* 数据库名称
|
|
1622
|
+
*/
|
|
1623
|
+
DbName?: string;
|
|
1624
|
+
/**
|
|
1625
|
+
* 表名称
|
|
1626
|
+
*/
|
|
1627
|
+
Name?: string;
|
|
1628
|
+
/**
|
|
1629
|
+
* 是否删除数据
|
|
1630
|
+
*/
|
|
1631
|
+
DeleteData?: boolean;
|
|
1632
|
+
/**
|
|
1633
|
+
* 环境属性
|
|
1634
|
+
*/
|
|
1635
|
+
EnvProps?: KVPair;
|
|
1636
|
+
}
|
|
1637
|
+
/**
|
|
1638
|
+
* DMSTable基本信息
|
|
1639
|
+
*/
|
|
1640
|
+
export interface DMSTable {
|
|
1641
|
+
/**
|
|
1642
|
+
* 视图文本
|
|
1643
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1644
|
+
*/
|
|
1645
|
+
ViewOriginalText?: string;
|
|
1646
|
+
/**
|
|
1647
|
+
* 视图文本
|
|
1648
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1649
|
+
*/
|
|
1650
|
+
ViewExpandedText?: string;
|
|
1651
|
+
/**
|
|
1652
|
+
* hive维护版本
|
|
1653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1654
|
+
*/
|
|
1655
|
+
Retention?: number;
|
|
1656
|
+
/**
|
|
1657
|
+
* 存储对象
|
|
1658
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1659
|
+
*/
|
|
1660
|
+
Sds?: DMSSds;
|
|
1661
|
+
/**
|
|
1662
|
+
* 分区列
|
|
1663
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1664
|
+
*/
|
|
1665
|
+
PartitionKeys?: Array<DMSColumn>;
|
|
1666
|
+
/**
|
|
1667
|
+
* 分区
|
|
1668
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1669
|
+
*/
|
|
1670
|
+
Partitions?: Array<DMSPartition>;
|
|
1671
|
+
/**
|
|
1672
|
+
* 表类型
|
|
1673
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1674
|
+
*/
|
|
1675
|
+
Type?: string;
|
|
1676
|
+
/**
|
|
1677
|
+
* 数据库名称
|
|
1678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1679
|
+
*/
|
|
1680
|
+
DbName?: string;
|
|
1681
|
+
/**
|
|
1682
|
+
* Schema名称
|
|
1683
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1684
|
+
*/
|
|
1685
|
+
SchemaName?: string;
|
|
1686
|
+
/**
|
|
1687
|
+
* 存储大小
|
|
1688
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1689
|
+
*/
|
|
1690
|
+
StorageSize?: number;
|
|
1691
|
+
/**
|
|
1692
|
+
* 记录数量
|
|
1693
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1694
|
+
*/
|
|
1695
|
+
RecordCount?: number;
|
|
1696
|
+
/**
|
|
1697
|
+
* 生命周期
|
|
1698
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1699
|
+
*/
|
|
1700
|
+
LifeTime?: number;
|
|
1701
|
+
/**
|
|
1702
|
+
* 最后访问时间
|
|
1703
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1704
|
+
*/
|
|
1705
|
+
LastAccessTime?: string;
|
|
1706
|
+
/**
|
|
1707
|
+
* 数据更新时间
|
|
1708
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1709
|
+
*/
|
|
1710
|
+
DataUpdateTime?: string;
|
|
1711
|
+
/**
|
|
1712
|
+
* 结构更新时间
|
|
1713
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1714
|
+
*/
|
|
1715
|
+
StructUpdateTime?: string;
|
|
1716
|
+
/**
|
|
1717
|
+
* 列
|
|
1718
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1719
|
+
*/
|
|
1720
|
+
Columns?: Array<DMSColumn>;
|
|
1721
|
+
/**
|
|
1722
|
+
* 表名
|
|
1723
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1724
|
+
*/
|
|
1725
|
+
Name?: string;
|
|
1726
|
+
}
|
|
1141
1727
|
/**
|
|
1142
1728
|
* AttachWorkGroupPolicy返回参数结构体
|
|
1143
1729
|
*/
|
|
@@ -1157,66 +1743,149 @@ export interface ModifyWorkGroupResponse {
|
|
|
1157
1743
|
RequestId?: string;
|
|
1158
1744
|
}
|
|
1159
1745
|
/**
|
|
1160
|
-
*
|
|
1746
|
+
* DescribeDMSTables请求参数结构体
|
|
1161
1747
|
*/
|
|
1162
|
-
export interface
|
|
1748
|
+
export interface DescribeDMSTablesRequest {
|
|
1163
1749
|
/**
|
|
1164
|
-
*
|
|
1750
|
+
* 数据库名称
|
|
1165
1751
|
*/
|
|
1166
|
-
|
|
1752
|
+
DbName?: string;
|
|
1167
1753
|
/**
|
|
1168
|
-
*
|
|
1754
|
+
* 数据库schema名称
|
|
1169
1755
|
*/
|
|
1170
|
-
|
|
1171
|
-
}
|
|
1172
|
-
/**
|
|
1173
|
-
* spark流任务统计信息
|
|
1174
|
-
*/
|
|
1175
|
-
export interface StreamingStatistics {
|
|
1756
|
+
SchemaName?: string;
|
|
1176
1757
|
/**
|
|
1177
|
-
*
|
|
1758
|
+
* 表名称
|
|
1178
1759
|
*/
|
|
1179
|
-
|
|
1760
|
+
Name?: string;
|
|
1180
1761
|
/**
|
|
1181
|
-
*
|
|
1762
|
+
* 数据目录
|
|
1182
1763
|
*/
|
|
1183
|
-
|
|
1764
|
+
Catalog?: string;
|
|
1184
1765
|
/**
|
|
1185
|
-
*
|
|
1766
|
+
* 查询关键词
|
|
1186
1767
|
*/
|
|
1187
|
-
|
|
1768
|
+
Keyword?: string;
|
|
1188
1769
|
/**
|
|
1189
|
-
*
|
|
1770
|
+
* 查询模式
|
|
1190
1771
|
*/
|
|
1191
|
-
|
|
1772
|
+
Pattern?: string;
|
|
1192
1773
|
/**
|
|
1193
|
-
*
|
|
1774
|
+
* 表类型
|
|
1194
1775
|
*/
|
|
1195
|
-
|
|
1776
|
+
Type?: string;
|
|
1196
1777
|
/**
|
|
1197
|
-
*
|
|
1778
|
+
* 筛选参数:更新开始时间
|
|
1198
1779
|
*/
|
|
1199
|
-
|
|
1780
|
+
StartTime?: string;
|
|
1200
1781
|
/**
|
|
1201
|
-
*
|
|
1782
|
+
* 筛选参数:更新结束时间
|
|
1202
1783
|
*/
|
|
1203
|
-
|
|
1784
|
+
EndTime?: string;
|
|
1204
1785
|
/**
|
|
1205
|
-
*
|
|
1786
|
+
* 分页参数
|
|
1206
1787
|
*/
|
|
1207
|
-
|
|
1788
|
+
Limit?: number;
|
|
1208
1789
|
/**
|
|
1209
|
-
*
|
|
1790
|
+
* 分页参数
|
|
1210
1791
|
*/
|
|
1211
|
-
|
|
1792
|
+
Offset?: number;
|
|
1212
1793
|
/**
|
|
1213
|
-
*
|
|
1794
|
+
* 排序字段:create_time:创建时间
|
|
1214
1795
|
*/
|
|
1215
|
-
|
|
1796
|
+
Sort?: string;
|
|
1216
1797
|
/**
|
|
1217
|
-
*
|
|
1798
|
+
* 排序字段:true:升序(默认),false:降序
|
|
1218
1799
|
*/
|
|
1219
|
-
|
|
1800
|
+
Asc?: boolean;
|
|
1801
|
+
}
|
|
1802
|
+
/**
|
|
1803
|
+
* ModifyUser请求参数结构体
|
|
1804
|
+
*/
|
|
1805
|
+
export interface ModifyUserRequest {
|
|
1806
|
+
/**
|
|
1807
|
+
* 用户Id,和CAM侧Uin匹配
|
|
1808
|
+
*/
|
|
1809
|
+
UserId: string;
|
|
1810
|
+
/**
|
|
1811
|
+
* 用户描述
|
|
1812
|
+
*/
|
|
1813
|
+
UserDescription: string;
|
|
1814
|
+
}
|
|
1815
|
+
/**
|
|
1816
|
+
* 元数据存储描述属性
|
|
1817
|
+
*/
|
|
1818
|
+
export interface DMSSds {
|
|
1819
|
+
/**
|
|
1820
|
+
* 存储地址
|
|
1821
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1822
|
+
*/
|
|
1823
|
+
Location?: string;
|
|
1824
|
+
/**
|
|
1825
|
+
* 输入格式
|
|
1826
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1827
|
+
*/
|
|
1828
|
+
InputFormat?: string;
|
|
1829
|
+
/**
|
|
1830
|
+
* 输出格式
|
|
1831
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1832
|
+
*/
|
|
1833
|
+
OutputFormat?: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* bucket数量
|
|
1836
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1837
|
+
*/
|
|
1838
|
+
NumBuckets?: number;
|
|
1839
|
+
/**
|
|
1840
|
+
* 是是否压缩
|
|
1841
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1842
|
+
*/
|
|
1843
|
+
Compressed?: boolean;
|
|
1844
|
+
/**
|
|
1845
|
+
* 是否有子目录
|
|
1846
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1847
|
+
*/
|
|
1848
|
+
StoredAsSubDirectories?: boolean;
|
|
1849
|
+
/**
|
|
1850
|
+
* 序列化lib
|
|
1851
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1852
|
+
*/
|
|
1853
|
+
SerdeLib?: string;
|
|
1854
|
+
/**
|
|
1855
|
+
* 序列化名称
|
|
1856
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1857
|
+
*/
|
|
1858
|
+
SerdeName?: string;
|
|
1859
|
+
/**
|
|
1860
|
+
* 桶名称
|
|
1861
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1862
|
+
*/
|
|
1863
|
+
BucketCols?: Array<string>;
|
|
1864
|
+
/**
|
|
1865
|
+
* 序列化参数
|
|
1866
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1867
|
+
*/
|
|
1868
|
+
SerdeParams?: Array<KVPair>;
|
|
1869
|
+
/**
|
|
1870
|
+
* 附加参数
|
|
1871
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1872
|
+
*/
|
|
1873
|
+
Params?: Array<KVPair>;
|
|
1874
|
+
/**
|
|
1875
|
+
* 列排序(Expired)
|
|
1876
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1877
|
+
*/
|
|
1878
|
+
SortCols?: DMSColumnOrder;
|
|
1879
|
+
/**
|
|
1880
|
+
* 列
|
|
1881
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1882
|
+
*/
|
|
1883
|
+
Cols?: Array<DMSColumn>;
|
|
1884
|
+
/**
|
|
1885
|
+
* 列排序字段
|
|
1886
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1887
|
+
*/
|
|
1888
|
+
SortColumns?: Array<DMSColumnOrder>;
|
|
1220
1889
|
}
|
|
1221
1890
|
/**
|
|
1222
1891
|
* CreateSparkAppTask返回参数结构体
|
|
@@ -1430,6 +2099,15 @@ export interface DeleteScriptRequest {
|
|
|
1430
2099
|
*/
|
|
1431
2100
|
ScriptIds: Array<string>;
|
|
1432
2101
|
}
|
|
2102
|
+
/**
|
|
2103
|
+
* AddDMSPartitions请求参数结构体
|
|
2104
|
+
*/
|
|
2105
|
+
export interface AddDMSPartitionsRequest {
|
|
2106
|
+
/**
|
|
2107
|
+
* 分区
|
|
2108
|
+
*/
|
|
2109
|
+
Partitions?: Array<DMSPartition>;
|
|
2110
|
+
}
|
|
1433
2111
|
/**
|
|
1434
2112
|
* script实例。
|
|
1435
2113
|
*/
|
|
@@ -1465,6 +2143,79 @@ export interface Script {
|
|
|
1465
2143
|
*/
|
|
1466
2144
|
UpdateTime: number;
|
|
1467
2145
|
}
|
|
2146
|
+
/**
|
|
2147
|
+
* AlterDMSTable请求参数结构体
|
|
2148
|
+
*/
|
|
2149
|
+
export interface AlterDMSTableRequest {
|
|
2150
|
+
/**
|
|
2151
|
+
* 当前名称
|
|
2152
|
+
*/
|
|
2153
|
+
CurrentName: string;
|
|
2154
|
+
/**
|
|
2155
|
+
* 当前数据库名称
|
|
2156
|
+
*/
|
|
2157
|
+
CurrentDbName: string;
|
|
2158
|
+
/**
|
|
2159
|
+
* 基础对象
|
|
2160
|
+
*/
|
|
2161
|
+
Asset?: Asset;
|
|
2162
|
+
/**
|
|
2163
|
+
* 表类型
|
|
2164
|
+
*/
|
|
2165
|
+
Type?: string;
|
|
2166
|
+
/**
|
|
2167
|
+
* 数据库名称
|
|
2168
|
+
*/
|
|
2169
|
+
DbName?: string;
|
|
2170
|
+
/**
|
|
2171
|
+
* 存储大小
|
|
2172
|
+
*/
|
|
2173
|
+
StorageSize?: number;
|
|
2174
|
+
/**
|
|
2175
|
+
* 记录数量
|
|
2176
|
+
*/
|
|
2177
|
+
RecordCount?: number;
|
|
2178
|
+
/**
|
|
2179
|
+
* 生命周期
|
|
2180
|
+
*/
|
|
2181
|
+
LifeTime?: number;
|
|
2182
|
+
/**
|
|
2183
|
+
* 数据更新时间
|
|
2184
|
+
*/
|
|
2185
|
+
DataUpdateTime?: string;
|
|
2186
|
+
/**
|
|
2187
|
+
* 结构更新时间
|
|
2188
|
+
*/
|
|
2189
|
+
StructUpdateTime?: string;
|
|
2190
|
+
/**
|
|
2191
|
+
* 最后访问时间
|
|
2192
|
+
*/
|
|
2193
|
+
LastAccessTime?: string;
|
|
2194
|
+
/**
|
|
2195
|
+
* 存储对象
|
|
2196
|
+
*/
|
|
2197
|
+
Sds?: DMSSds;
|
|
2198
|
+
/**
|
|
2199
|
+
* 列
|
|
2200
|
+
*/
|
|
2201
|
+
Columns?: Array<DMSColumn>;
|
|
2202
|
+
/**
|
|
2203
|
+
* 分区键值
|
|
2204
|
+
*/
|
|
2205
|
+
PartitionKeys?: Array<DMSColumn>;
|
|
2206
|
+
/**
|
|
2207
|
+
* 视图文本
|
|
2208
|
+
*/
|
|
2209
|
+
ViewOriginalText?: string;
|
|
2210
|
+
/**
|
|
2211
|
+
* 视图文本
|
|
2212
|
+
*/
|
|
2213
|
+
ViewExpandedText?: string;
|
|
2214
|
+
/**
|
|
2215
|
+
* 分区
|
|
2216
|
+
*/
|
|
2217
|
+
Partitions?: Array<DMSPartition>;
|
|
2218
|
+
}
|
|
1468
2219
|
/**
|
|
1469
2220
|
* CreateImportTask返回参数结构体
|
|
1470
2221
|
*/
|
|
@@ -1767,6 +2518,15 @@ export interface CancelTaskResponse {
|
|
|
1767
2518
|
*/
|
|
1768
2519
|
RequestId?: string;
|
|
1769
2520
|
}
|
|
2521
|
+
/**
|
|
2522
|
+
* UnlockMetaData返回参数结构体
|
|
2523
|
+
*/
|
|
2524
|
+
export interface UnlockMetaDataResponse {
|
|
2525
|
+
/**
|
|
2526
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2527
|
+
*/
|
|
2528
|
+
RequestId?: string;
|
|
2529
|
+
}
|
|
1770
2530
|
/**
|
|
1771
2531
|
* DeleteWorkGroup返回参数结构体
|
|
1772
2532
|
*/
|
|
@@ -1776,6 +2536,15 @@ export interface DeleteWorkGroupResponse {
|
|
|
1776
2536
|
*/
|
|
1777
2537
|
RequestId?: string;
|
|
1778
2538
|
}
|
|
2539
|
+
/**
|
|
2540
|
+
* DropDMSTable返回参数结构体
|
|
2541
|
+
*/
|
|
2542
|
+
export interface DropDMSTableResponse {
|
|
2543
|
+
/**
|
|
2544
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2545
|
+
*/
|
|
2546
|
+
RequestId?: string;
|
|
2547
|
+
}
|
|
1779
2548
|
/**
|
|
1780
2549
|
* 同一个用户绑定的工作组集合
|
|
1781
2550
|
*/
|
|
@@ -1951,6 +2720,78 @@ export interface DescribeDatabasesResponse {
|
|
|
1951
2720
|
*/
|
|
1952
2721
|
RequestId?: string;
|
|
1953
2722
|
}
|
|
2723
|
+
/**
|
|
2724
|
+
* DMSTable信息
|
|
2725
|
+
*/
|
|
2726
|
+
export interface DMSTableInfo {
|
|
2727
|
+
/**
|
|
2728
|
+
* DMS表信息
|
|
2729
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2730
|
+
*/
|
|
2731
|
+
Table: DMSTable;
|
|
2732
|
+
/**
|
|
2733
|
+
* 基础对象信息
|
|
2734
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2735
|
+
*/
|
|
2736
|
+
Asset: Asset;
|
|
2737
|
+
}
|
|
2738
|
+
/**
|
|
2739
|
+
* 迁移元数据分区对象
|
|
2740
|
+
*/
|
|
2741
|
+
export interface DMSPartition {
|
|
2742
|
+
/**
|
|
2743
|
+
* 数据库名称
|
|
2744
|
+
*/
|
|
2745
|
+
DatabaseName?: string;
|
|
2746
|
+
/**
|
|
2747
|
+
* 数据目录名称
|
|
2748
|
+
*/
|
|
2749
|
+
SchemaName?: string;
|
|
2750
|
+
/**
|
|
2751
|
+
* 表名称
|
|
2752
|
+
*/
|
|
2753
|
+
TableName?: string;
|
|
2754
|
+
/**
|
|
2755
|
+
* 数据版本
|
|
2756
|
+
*/
|
|
2757
|
+
DataVersion?: number;
|
|
2758
|
+
/**
|
|
2759
|
+
* 分区名称
|
|
2760
|
+
*/
|
|
2761
|
+
Name?: string;
|
|
2762
|
+
/**
|
|
2763
|
+
* 值列表
|
|
2764
|
+
*/
|
|
2765
|
+
Values?: Array<string>;
|
|
2766
|
+
/**
|
|
2767
|
+
* 存储大小
|
|
2768
|
+
*/
|
|
2769
|
+
StorageSize?: number;
|
|
2770
|
+
/**
|
|
2771
|
+
* 记录数量
|
|
2772
|
+
*/
|
|
2773
|
+
RecordCount?: number;
|
|
2774
|
+
/**
|
|
2775
|
+
* 创建时间
|
|
2776
|
+
*/
|
|
2777
|
+
CreateTime?: string;
|
|
2778
|
+
/**
|
|
2779
|
+
* 修改时间
|
|
2780
|
+
*/
|
|
2781
|
+
ModifiedTime?: string;
|
|
2782
|
+
/**
|
|
2783
|
+
* 最后访问时间
|
|
2784
|
+
*/
|
|
2785
|
+
LastAccessTime?: string;
|
|
2786
|
+
/**
|
|
2787
|
+
* 附件属性
|
|
2788
|
+
*/
|
|
2789
|
+
Params?: Array<KVPair>;
|
|
2790
|
+
/**
|
|
2791
|
+
* 存储对象
|
|
2792
|
+
*/
|
|
2793
|
+
Sds?: DMSSds;
|
|
2794
|
+
}
|
|
1954
2795
|
/**
|
|
1955
2796
|
* 数据库对象
|
|
1956
2797
|
*/
|
|
@@ -1976,25 +2817,21 @@ export interface DatabaseInfo {
|
|
|
1976
2817
|
Location?: string;
|
|
1977
2818
|
}
|
|
1978
2819
|
/**
|
|
1979
|
-
*
|
|
2820
|
+
* DescribeDMSPartitions返回参数结构体
|
|
1980
2821
|
*/
|
|
1981
|
-
export interface
|
|
1982
|
-
/**
|
|
1983
|
-
* 数据来源,cos
|
|
1984
|
-
*/
|
|
1985
|
-
InputType: string;
|
|
2822
|
+
export interface DescribeDMSPartitionsResponse {
|
|
1986
2823
|
/**
|
|
1987
|
-
*
|
|
2824
|
+
* 分区信息
|
|
1988
2825
|
*/
|
|
1989
|
-
|
|
2826
|
+
Partitions: Array<DMSPartition>;
|
|
1990
2827
|
/**
|
|
1991
|
-
*
|
|
2828
|
+
* 总数
|
|
1992
2829
|
*/
|
|
1993
|
-
|
|
2830
|
+
Total: number;
|
|
1994
2831
|
/**
|
|
1995
|
-
*
|
|
2832
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1996
2833
|
*/
|
|
1997
|
-
|
|
2834
|
+
RequestId?: string;
|
|
1998
2835
|
}
|
|
1999
2836
|
/**
|
|
2000
2837
|
* CreateExportTask返回参数结构体
|
|
@@ -2018,6 +2855,10 @@ export interface UnbindWorkGroupsFromUserRequest {
|
|
|
2018
2855
|
*/
|
|
2019
2856
|
AddInfo: WorkGroupIdSetOfUserId;
|
|
2020
2857
|
}
|
|
2858
|
+
/**
|
|
2859
|
+
* DescribeDMSDatabase请求参数结构体
|
|
2860
|
+
*/
|
|
2861
|
+
export declare type DescribeDMSDatabaseRequest = null;
|
|
2021
2862
|
/**
|
|
2022
2863
|
* DescribeTable请求参数结构体
|
|
2023
2864
|
*/
|
|
@@ -2028,55 +2869,12 @@ export interface DescribeTableRequest {
|
|
|
2028
2869
|
TableName: string;
|
|
2029
2870
|
/**
|
|
2030
2871
|
* 查询表所在的数据库名称。
|
|
2031
|
-
*/
|
|
2032
|
-
DatabaseName: string;
|
|
2033
|
-
/**
|
|
2034
|
-
* 查询表所在的数据源名称
|
|
2035
|
-
*/
|
|
2036
|
-
DatasourceConnectionName?: string;
|
|
2037
|
-
}
|
|
2038
|
-
/**
|
|
2039
|
-
* 日志详情
|
|
2040
|
-
*/
|
|
2041
|
-
export interface JobLogResult {
|
|
2042
|
-
/**
|
|
2043
|
-
* 日志时间戳,毫秒
|
|
2044
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2045
|
-
*/
|
|
2046
|
-
Time: number;
|
|
2047
|
-
/**
|
|
2048
|
-
* 日志topic id
|
|
2049
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2050
|
-
*/
|
|
2051
|
-
TopicId: string;
|
|
2052
|
-
/**
|
|
2053
|
-
* 日志topic name
|
|
2054
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2055
|
-
*/
|
|
2056
|
-
TopicName: string;
|
|
2057
|
-
/**
|
|
2058
|
-
* 日志内容,json字符串
|
|
2059
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2060
|
-
*/
|
|
2061
|
-
LogJson: string;
|
|
2062
|
-
}
|
|
2063
|
-
/**
|
|
2064
|
-
* 数据格式其它类型。
|
|
2065
|
-
*/
|
|
2066
|
-
export interface Other {
|
|
2067
|
-
/**
|
|
2068
|
-
* 枚举类型,默认值为Json,可选值为[Json, Parquet, ORC, AVRD]之一。
|
|
2069
|
-
*/
|
|
2070
|
-
Format: string;
|
|
2071
|
-
}
|
|
2072
|
-
/**
|
|
2073
|
-
* DeleteUsersFromWorkGroup请求参数结构体
|
|
2074
|
-
*/
|
|
2075
|
-
export interface DeleteUsersFromWorkGroupRequest {
|
|
2872
|
+
*/
|
|
2873
|
+
DatabaseName: string;
|
|
2076
2874
|
/**
|
|
2077
|
-
*
|
|
2875
|
+
* 查询表所在的数据源名称
|
|
2078
2876
|
*/
|
|
2079
|
-
|
|
2877
|
+
DatasourceConnectionName?: string;
|
|
2080
2878
|
}
|
|
2081
2879
|
/**
|
|
2082
2880
|
* 权限对象
|
|
@@ -2158,6 +2956,102 @@ export interface Policy {
|
|
|
2158
2956
|
*/
|
|
2159
2957
|
SourceName?: string;
|
|
2160
2958
|
}
|
|
2959
|
+
/**
|
|
2960
|
+
* 日志详情
|
|
2961
|
+
*/
|
|
2962
|
+
export interface JobLogResult {
|
|
2963
|
+
/**
|
|
2964
|
+
* 日志时间戳,毫秒
|
|
2965
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2966
|
+
*/
|
|
2967
|
+
Time: number;
|
|
2968
|
+
/**
|
|
2969
|
+
* 日志topic id
|
|
2970
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2971
|
+
*/
|
|
2972
|
+
TopicId: string;
|
|
2973
|
+
/**
|
|
2974
|
+
* 日志topic name
|
|
2975
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2976
|
+
*/
|
|
2977
|
+
TopicName: string;
|
|
2978
|
+
/**
|
|
2979
|
+
* 日志内容,json字符串
|
|
2980
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2981
|
+
*/
|
|
2982
|
+
LogJson: string;
|
|
2983
|
+
}
|
|
2984
|
+
/**
|
|
2985
|
+
* 数据格式其它类型。
|
|
2986
|
+
*/
|
|
2987
|
+
export interface Other {
|
|
2988
|
+
/**
|
|
2989
|
+
* 枚举类型,默认值为Json,可选值为[Json, Parquet, ORC, AVRD]之一。
|
|
2990
|
+
*/
|
|
2991
|
+
Format: string;
|
|
2992
|
+
}
|
|
2993
|
+
/**
|
|
2994
|
+
* DropDMSDatabase返回参数结构体
|
|
2995
|
+
*/
|
|
2996
|
+
export interface DropDMSDatabaseResponse {
|
|
2997
|
+
/**
|
|
2998
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2999
|
+
*/
|
|
3000
|
+
RequestId?: string;
|
|
3001
|
+
}
|
|
3002
|
+
/**
|
|
3003
|
+
* DescribeUsers请求参数结构体
|
|
3004
|
+
*/
|
|
3005
|
+
export interface DescribeUsersRequest {
|
|
3006
|
+
/**
|
|
3007
|
+
* 指定查询的子用户uin,用户需要通过CreateUser接口创建。
|
|
3008
|
+
*/
|
|
3009
|
+
UserId?: string;
|
|
3010
|
+
/**
|
|
3011
|
+
* 偏移量,默认为0
|
|
3012
|
+
*/
|
|
3013
|
+
Offset?: number;
|
|
3014
|
+
/**
|
|
3015
|
+
* 返回数量,默认20,最大值100
|
|
3016
|
+
*/
|
|
3017
|
+
Limit?: number;
|
|
3018
|
+
/**
|
|
3019
|
+
* 排序字段,支持如下字段类型,create-time
|
|
3020
|
+
*/
|
|
3021
|
+
SortBy?: string;
|
|
3022
|
+
/**
|
|
3023
|
+
* 排序方式,desc表示正序,asc表示反序, 默认为asc
|
|
3024
|
+
*/
|
|
3025
|
+
Sorting?: string;
|
|
3026
|
+
/**
|
|
3027
|
+
* 过滤条件,支持如下字段类型,user-type:根据用户类型过滤。user-keyword:根据用户名称过滤
|
|
3028
|
+
*/
|
|
3029
|
+
Filters?: Array<Filter>;
|
|
3030
|
+
}
|
|
3031
|
+
/**
|
|
3032
|
+
* DeleteUsersFromWorkGroup请求参数结构体
|
|
3033
|
+
*/
|
|
3034
|
+
export interface DeleteUsersFromWorkGroupRequest {
|
|
3035
|
+
/**
|
|
3036
|
+
* 要删除的用户信息
|
|
3037
|
+
*/
|
|
3038
|
+
AddInfo: UserIdSetOfWorkGroupId;
|
|
3039
|
+
}
|
|
3040
|
+
/**
|
|
3041
|
+
* 列排序对象
|
|
3042
|
+
*/
|
|
3043
|
+
export interface DMSColumnOrder {
|
|
3044
|
+
/**
|
|
3045
|
+
* 列名
|
|
3046
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3047
|
+
*/
|
|
3048
|
+
Col?: string;
|
|
3049
|
+
/**
|
|
3050
|
+
* 排序
|
|
3051
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3052
|
+
*/
|
|
3053
|
+
Order?: number;
|
|
3054
|
+
}
|
|
2161
3055
|
/**
|
|
2162
3056
|
* CreateSparkApp返回参数结构体
|
|
2163
3057
|
*/
|
|
@@ -2190,6 +3084,15 @@ export interface DeleteSparkAppResponse {
|
|
|
2190
3084
|
*/
|
|
2191
3085
|
RequestId?: string;
|
|
2192
3086
|
}
|
|
3087
|
+
/**
|
|
3088
|
+
* AlterDMSPartition返回参数结构体
|
|
3089
|
+
*/
|
|
3090
|
+
export interface AlterDMSPartitionResponse {
|
|
3091
|
+
/**
|
|
3092
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3093
|
+
*/
|
|
3094
|
+
RequestId?: string;
|
|
3095
|
+
}
|
|
2193
3096
|
/**
|
|
2194
3097
|
* CreateTasks请求参数结构体
|
|
2195
3098
|
*/
|
|
@@ -2296,13 +3199,72 @@ export interface TableResponseInfo {
|
|
|
2296
3199
|
RecordCount: number;
|
|
2297
3200
|
}
|
|
2298
3201
|
/**
|
|
2299
|
-
*
|
|
3202
|
+
* DescribeViews请求参数结构体
|
|
2300
3203
|
*/
|
|
2301
|
-
export interface
|
|
3204
|
+
export interface DescribeViewsRequest {
|
|
2302
3205
|
/**
|
|
2303
|
-
*
|
|
3206
|
+
* 列出该数据库下所属数据表。
|
|
2304
3207
|
*/
|
|
2305
|
-
|
|
3208
|
+
DatabaseName: string;
|
|
3209
|
+
/**
|
|
3210
|
+
* 返回数量,默认为10,最大值为100。
|
|
3211
|
+
*/
|
|
3212
|
+
Limit?: number;
|
|
3213
|
+
/**
|
|
3214
|
+
* 数据偏移量,从0开始,默认为0。
|
|
3215
|
+
*/
|
|
3216
|
+
Offset?: number;
|
|
3217
|
+
/**
|
|
3218
|
+
* 过滤条件,如下支持的过滤类型,传参Name应为其一
|
|
3219
|
+
view-name - String - (过滤条件)数据表名称,形如:view-001。
|
|
3220
|
+
view-id - String - (过滤条件)view id形如:12342。
|
|
3221
|
+
*/
|
|
3222
|
+
Filters?: Array<Filter>;
|
|
3223
|
+
/**
|
|
3224
|
+
* 数据库所属的数据源名称
|
|
3225
|
+
*/
|
|
3226
|
+
DatasourceConnectionName?: string;
|
|
3227
|
+
/**
|
|
3228
|
+
* 排序字段
|
|
3229
|
+
*/
|
|
3230
|
+
Sort?: string;
|
|
3231
|
+
/**
|
|
3232
|
+
* 排序规则,true:升序;false:降序
|
|
3233
|
+
*/
|
|
3234
|
+
Asc?: boolean;
|
|
3235
|
+
/**
|
|
3236
|
+
* 按视图更新时间筛选,开始时间,如2021-11-11 00:00:00
|
|
3237
|
+
*/
|
|
3238
|
+
StartTime?: string;
|
|
3239
|
+
/**
|
|
3240
|
+
* 按视图更新时间筛选,结束时间,如2021-11-12 00:00:00
|
|
3241
|
+
*/
|
|
3242
|
+
EndTime?: string;
|
|
3243
|
+
}
|
|
3244
|
+
/**
|
|
3245
|
+
* LockMetaData请求参数结构体
|
|
3246
|
+
*/
|
|
3247
|
+
export interface LockMetaDataRequest {
|
|
3248
|
+
/**
|
|
3249
|
+
* 加锁内容
|
|
3250
|
+
*/
|
|
3251
|
+
LockComponentList: Array<LockComponentInfo>;
|
|
3252
|
+
/**
|
|
3253
|
+
* 数据源名称
|
|
3254
|
+
*/
|
|
3255
|
+
DatasourceConnectionName?: string;
|
|
3256
|
+
/**
|
|
3257
|
+
* 事务id
|
|
3258
|
+
*/
|
|
3259
|
+
TxnId?: number;
|
|
3260
|
+
/**
|
|
3261
|
+
* 客户端信息
|
|
3262
|
+
*/
|
|
3263
|
+
AgentInfo?: string;
|
|
3264
|
+
/**
|
|
3265
|
+
* 主机名
|
|
3266
|
+
*/
|
|
3267
|
+
Hostname?: string;
|
|
2306
3268
|
}
|
|
2307
3269
|
/**
|
|
2308
3270
|
* DetachUserPolicy返回参数结构体
|
|
@@ -2458,24 +3420,22 @@ export interface UnbindWorkGroupsFromUserResponse {
|
|
|
2458
3420
|
RequestId?: string;
|
|
2459
3421
|
}
|
|
2460
3422
|
/**
|
|
2461
|
-
*
|
|
3423
|
+
* DropDMSPartitions返回参数结构体
|
|
2462
3424
|
*/
|
|
2463
|
-
export interface
|
|
2464
|
-
/**
|
|
2465
|
-
* 下一次分页参数
|
|
2466
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2467
|
-
*/
|
|
2468
|
-
Context: string;
|
|
3425
|
+
export interface DropDMSPartitionsResponse {
|
|
2469
3426
|
/**
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
ListOver: boolean;
|
|
3427
|
+
* 状态
|
|
3428
|
+
*/
|
|
3429
|
+
Status: boolean;
|
|
2474
3430
|
/**
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
3431
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3432
|
+
*/
|
|
3433
|
+
RequestId?: string;
|
|
3434
|
+
}
|
|
3435
|
+
/**
|
|
3436
|
+
* AlterDMSDatabase返回参数结构体
|
|
3437
|
+
*/
|
|
3438
|
+
export interface AlterDMSDatabaseResponse {
|
|
2479
3439
|
/**
|
|
2480
3440
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2481
3441
|
*/
|
|
@@ -2523,6 +3483,44 @@ export interface DescribeSparkAppTasksRequest {
|
|
|
2523
3483
|
*/
|
|
2524
3484
|
TaskId?: string;
|
|
2525
3485
|
}
|
|
3486
|
+
/**
|
|
3487
|
+
* LockMetaData返回参数结构体
|
|
3488
|
+
*/
|
|
3489
|
+
export interface LockMetaDataResponse {
|
|
3490
|
+
/**
|
|
3491
|
+
* 锁id
|
|
3492
|
+
*/
|
|
3493
|
+
LockId: number;
|
|
3494
|
+
/**
|
|
3495
|
+
* 锁状态:ACQUIRED、WAITING、ABORT、NOT_ACQUIRED
|
|
3496
|
+
*/
|
|
3497
|
+
LockState: string;
|
|
3498
|
+
/**
|
|
3499
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3500
|
+
*/
|
|
3501
|
+
RequestId?: string;
|
|
3502
|
+
}
|
|
3503
|
+
/**
|
|
3504
|
+
* CheckLockMetaData返回参数结构体
|
|
3505
|
+
*/
|
|
3506
|
+
export interface CheckLockMetaDataResponse {
|
|
3507
|
+
/**
|
|
3508
|
+
* 锁ID
|
|
3509
|
+
*/
|
|
3510
|
+
LockId: number;
|
|
3511
|
+
/**
|
|
3512
|
+
* 锁状态:ACQUIRED、WAITING、ABORT、NOT_ACQUIRED
|
|
3513
|
+
*/
|
|
3514
|
+
LockState: string;
|
|
3515
|
+
/**
|
|
3516
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3517
|
+
*/
|
|
3518
|
+
RequestId?: string;
|
|
3519
|
+
}
|
|
3520
|
+
/**
|
|
3521
|
+
* AlterDMSDatabase请求参数结构体
|
|
3522
|
+
*/
|
|
3523
|
+
export declare type AlterDMSDatabaseRequest = null;
|
|
2526
3524
|
/**
|
|
2527
3525
|
* SQL查询任务
|
|
2528
3526
|
*/
|
|
@@ -2584,6 +3582,15 @@ export interface AttachUserPolicyResponse {
|
|
|
2584
3582
|
*/
|
|
2585
3583
|
RequestId?: string;
|
|
2586
3584
|
}
|
|
3585
|
+
/**
|
|
3586
|
+
* CreateDMSDatabase请求参数结构体
|
|
3587
|
+
*/
|
|
3588
|
+
export interface CreateDMSDatabaseRequest {
|
|
3589
|
+
/**
|
|
3590
|
+
* 数据库名称
|
|
3591
|
+
*/
|
|
3592
|
+
Name?: string;
|
|
3593
|
+
}
|
|
2587
3594
|
/**
|
|
2588
3595
|
* DetachWorkGroupPolicy请求参数结构体
|
|
2589
3596
|
*/
|
|
@@ -2597,6 +3604,39 @@ export interface DetachWorkGroupPolicyRequest {
|
|
|
2597
3604
|
*/
|
|
2598
3605
|
PolicySet?: Array<Policy>;
|
|
2599
3606
|
}
|
|
3607
|
+
/**
|
|
3608
|
+
* DescribeDMSTable请求参数结构体
|
|
3609
|
+
*/
|
|
3610
|
+
export interface DescribeDMSTableRequest {
|
|
3611
|
+
/**
|
|
3612
|
+
* 数据库名称
|
|
3613
|
+
*/
|
|
3614
|
+
DbName?: string;
|
|
3615
|
+
/**
|
|
3616
|
+
* 数据库schema名称
|
|
3617
|
+
*/
|
|
3618
|
+
SchemaName?: string;
|
|
3619
|
+
/**
|
|
3620
|
+
* 表名称
|
|
3621
|
+
*/
|
|
3622
|
+
Name?: string;
|
|
3623
|
+
/**
|
|
3624
|
+
* 数据目录
|
|
3625
|
+
*/
|
|
3626
|
+
Catalog?: string;
|
|
3627
|
+
/**
|
|
3628
|
+
* 查询关键词
|
|
3629
|
+
*/
|
|
3630
|
+
Keyword?: string;
|
|
3631
|
+
/**
|
|
3632
|
+
* 查询模式
|
|
3633
|
+
*/
|
|
3634
|
+
Pattern?: string;
|
|
3635
|
+
/**
|
|
3636
|
+
* 表类型
|
|
3637
|
+
*/
|
|
3638
|
+
Type?: string;
|
|
3639
|
+
}
|
|
2600
3640
|
/**
|
|
2601
3641
|
* DescribeViews返回参数结构体
|
|
2602
3642
|
*/
|
|
@@ -2678,3 +3718,43 @@ export interface DatabaseResponseInfo {
|
|
|
2678
3718
|
*/
|
|
2679
3719
|
ModifiedTime?: string;
|
|
2680
3720
|
}
|
|
3721
|
+
/**
|
|
3722
|
+
* 迁移列对象
|
|
3723
|
+
*/
|
|
3724
|
+
export interface DMSColumn {
|
|
3725
|
+
/**
|
|
3726
|
+
* 名称
|
|
3727
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3728
|
+
*/
|
|
3729
|
+
Name?: string;
|
|
3730
|
+
/**
|
|
3731
|
+
* 描述
|
|
3732
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3733
|
+
*/
|
|
3734
|
+
Description?: string;
|
|
3735
|
+
/**
|
|
3736
|
+
* 类型
|
|
3737
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3738
|
+
*/
|
|
3739
|
+
Type?: string;
|
|
3740
|
+
/**
|
|
3741
|
+
* 排序
|
|
3742
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3743
|
+
*/
|
|
3744
|
+
Position?: number;
|
|
3745
|
+
/**
|
|
3746
|
+
* 附加参数
|
|
3747
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3748
|
+
*/
|
|
3749
|
+
Params?: Array<KVPair>;
|
|
3750
|
+
/**
|
|
3751
|
+
* 业务参数
|
|
3752
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3753
|
+
*/
|
|
3754
|
+
BizParams?: Array<KVPair>;
|
|
3755
|
+
/**
|
|
3756
|
+
* 是否分区
|
|
3757
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3758
|
+
*/
|
|
3759
|
+
IsPartition?: boolean;
|
|
3760
|
+
}
|