tencentcloud-sdk-nodejs-dlc 4.0.533 → 4.0.535

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.
@@ -77,13 +77,33 @@ export interface DescribeTaskResultResponse {
77
77
  }
78
78
 
79
79
  /**
80
- * AlterDMSTable返回参数结构体
80
+ * DescribeNotebookSessionStatement请求参数结构体
81
81
  */
82
- export interface AlterDMSTableResponse {
82
+ export interface DescribeNotebookSessionStatementRequest {
83
83
  /**
84
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
84
+ * Session唯一标识
85
85
  */
86
- RequestId?: string
86
+ SessionId: string
87
+
88
+ /**
89
+ * Session Statement唯一标识
90
+ */
91
+ StatementId: string
92
+ }
93
+
94
+ /**
95
+ * CancelNotebookSessionStatement请求参数结构体
96
+ */
97
+ export interface CancelNotebookSessionStatementRequest {
98
+ /**
99
+ * Session唯一标识
100
+ */
101
+ SessionId: string
102
+
103
+ /**
104
+ * Session Statement唯一标识
105
+ */
106
+ StatementId: string
87
107
  }
88
108
 
89
109
  /**
@@ -294,6 +314,41 @@ export interface ModifyGovernEventRuleResponse {
294
314
  RequestId?: string
295
315
  }
296
316
 
317
+ /**
318
+ * DescribeNotebookSessions请求参数结构体
319
+ */
320
+ export interface DescribeNotebookSessionsRequest {
321
+ /**
322
+ * DLC Spark作业引擎名称
323
+ */
324
+ DataEngineName: string
325
+
326
+ /**
327
+ * Session状态,包含:not_started(未启动)、starting(已启动)、idle(等待输入)、busy(正在运行statement)、shutting_down(停止)、error(异常)、dead(已退出)、killed(被杀死)、success(正常停止)
328
+ */
329
+ State?: Array<string>
330
+
331
+ /**
332
+ * 排序字段(默认按创建时间)
333
+ */
334
+ SortFields?: Array<string>
335
+
336
+ /**
337
+ * 排序字段:true:升序、false:降序(默认)
338
+ */
339
+ Asc?: boolean
340
+
341
+ /**
342
+ * 分页字段
343
+ */
344
+ Limit?: number
345
+
346
+ /**
347
+ * 分页字段
348
+ */
349
+ Offset?: number
350
+ }
351
+
297
352
  /**
298
353
  * CreateDMSDatabase返回参数结构体
299
354
  */
@@ -363,6 +418,16 @@ export interface DescribeDMSDatabaseResponse {
363
418
  RequestId?: string
364
419
  }
365
420
 
421
+ /**
422
+ * UnbindWorkGroupsFromUser返回参数结构体
423
+ */
424
+ export interface UnbindWorkGroupsFromUserResponse {
425
+ /**
426
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
427
+ */
428
+ RequestId?: string
429
+ }
430
+
366
431
  /**
367
432
  * DropDMSDatabase请求参数结构体
368
433
  */
@@ -735,26 +800,32 @@ export interface DetachUserPolicyRequest {
735
800
  }
736
801
 
737
802
  /**
738
- * DescribeSparkAppTasks返回参数结构体
803
+ * 定时启停策略信息
739
804
  */
740
- export interface DescribeSparkAppTasksResponse {
805
+ export interface CrontabResumeSuspendStrategy {
741
806
  /**
742
- * 任务结果(该字段已废弃)
807
+ * 定时拉起时间:如:周一8点
743
808
  注意:此字段可能返回 null,表示取不到有效值。
744
809
  */
745
- Tasks: TaskResponseInfo
810
+ ResumeTime?: string
746
811
 
747
812
  /**
748
- * 任务总数
749
- */
750
- TotalCount: number
813
+ * 定时挂起时间:如:周一20点
814
+ 注意:此字段可能返回 null,表示取不到有效值。
815
+ */
816
+ SuspendTime?: string
751
817
 
752
818
  /**
753
- * 任务结果列表
819
+ * 挂起配置:0(默认):等待任务结束后挂起、1:强制挂起
754
820
  注意:此字段可能返回 null,表示取不到有效值。
755
821
  */
756
- SparkAppTasks: Array<TaskResponseInfo>
822
+ SuspendStrategy?: number
823
+ }
757
824
 
825
+ /**
826
+ * AlterDMSTable返回参数结构体
827
+ */
828
+ export interface AlterDMSTableResponse {
758
829
  /**
759
830
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
760
831
  */
@@ -940,6 +1011,95 @@ export interface DropDMSPartitionsRequest {
940
1011
  DeleteData?: boolean
941
1012
  }
942
1013
 
1014
+ /**
1015
+ * notebook session列表信息。
1016
+ */
1017
+ export interface NotebookSessions {
1018
+ /**
1019
+ * 类型,当前支持:spark、pyspark、sparkr、sql
1020
+ */
1021
+ Kind: string
1022
+
1023
+ /**
1024
+ * Session唯一标识
1025
+ */
1026
+ SessionId: string
1027
+
1028
+ /**
1029
+ * 代理用户,默认为root
1030
+ 注意:此字段可能返回 null,表示取不到有效值。
1031
+ */
1032
+ ProxyUser: string
1033
+
1034
+ /**
1035
+ * Session状态,包含:not_started(未启动)、starting(已启动)、idle(等待输入)、busy(正在运行statement)、shutting_down(停止)、error(异常)、dead(已退出)、killed(被杀死)、success(正常停止)
1036
+ */
1037
+ State: string
1038
+
1039
+ /**
1040
+ * Spark任务返回的AppId
1041
+ 注意:此字段可能返回 null,表示取不到有效值。
1042
+ */
1043
+ SparkAppId: string
1044
+
1045
+ /**
1046
+ * Session名称
1047
+ */
1048
+ Name: string
1049
+
1050
+ /**
1051
+ * Session创建时间
1052
+ */
1053
+ CreateTime: string
1054
+
1055
+ /**
1056
+ * 引擎名称
1057
+ */
1058
+ DataEngineName: string
1059
+
1060
+ /**
1061
+ * 最新的运行时间
1062
+ 注意:此字段可能返回 null,表示取不到有效值。
1063
+ */
1064
+ LastRunningTime: string
1065
+
1066
+ /**
1067
+ * 创建者
1068
+ */
1069
+ Creator: string
1070
+
1071
+ /**
1072
+ * spark ui地址
1073
+ 注意:此字段可能返回 null,表示取不到有效值。
1074
+ */
1075
+ SparkUiUrl: string
1076
+ }
1077
+
1078
+ /**
1079
+ * CreateNotebookSessionStatementSupportBatchSQL请求参数结构体
1080
+ */
1081
+ export interface CreateNotebookSessionStatementSupportBatchSQLRequest {
1082
+ /**
1083
+ * Session唯一标识
1084
+ */
1085
+ SessionId: string
1086
+
1087
+ /**
1088
+ * 执行的代码
1089
+ */
1090
+ Code: string
1091
+
1092
+ /**
1093
+ * 类型,当前支持:spark、pyspark、sparkr、sql
1094
+ */
1095
+ Kind: string
1096
+
1097
+ /**
1098
+ * 是否保存运行结果
1099
+ */
1100
+ SaveResult: boolean
1101
+ }
1102
+
943
1103
  /**
944
1104
  * CreateTasksInOrder请求参数结构体
945
1105
  */
@@ -990,6 +1150,11 @@ export interface DetachWorkGroupPolicyResponse {
990
1150
  RequestId?: string
991
1151
  }
992
1152
 
1153
+ /**
1154
+ * GenerateCreateMangedTableSql请求参数结构体
1155
+ */
1156
+ export type GenerateCreateMangedTableSqlRequest = null
1157
+
993
1158
  /**
994
1159
  * CSV序列化及反序列化数据结构
995
1160
  */
@@ -1225,6 +1390,16 @@ export interface CreateDatabaseRequest {
1225
1390
  DatasourceConnectionName?: string
1226
1391
  }
1227
1392
 
1393
+ /**
1394
+ * GenerateCreateMangedTableSql返回参数结构体
1395
+ */
1396
+ export interface GenerateCreateMangedTableSqlResponse {
1397
+ /**
1398
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1399
+ */
1400
+ RequestId?: string
1401
+ }
1402
+
1228
1403
  /**
1229
1404
  * DescribeDMSTables返回参数结构体
1230
1405
  */
@@ -1433,13 +1608,13 @@ export interface CreateSparkAppTaskRequest {
1433
1608
  }
1434
1609
 
1435
1610
  /**
1436
- * DeleteWorkGroup请求参数结构体
1611
+ * CancelNotebookSessionStatementBatch返回参数结构体
1437
1612
  */
1438
- export interface DeleteWorkGroupRequest {
1613
+ export interface CancelNotebookSessionStatementBatchResponse {
1439
1614
  /**
1440
- * 要删除的工作组Id集合
1615
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1441
1616
  */
1442
- WorkGroupIds: Array<number>
1617
+ RequestId?: string
1443
1618
  }
1444
1619
 
1445
1620
  /**
@@ -1546,6 +1721,31 @@ export interface AttachUserPolicyRequest {
1546
1721
  PolicySet?: Array<Policy>
1547
1722
  }
1548
1723
 
1724
+ /**
1725
+ * CreateInternalTable请求参数结构体
1726
+ */
1727
+ export interface CreateInternalTableRequest {
1728
+ /**
1729
+ * 表基本信息
1730
+ */
1731
+ TableBaseInfo: TableBaseInfo
1732
+
1733
+ /**
1734
+ * 表字段信息
1735
+ */
1736
+ Columns: Array<TColumn>
1737
+
1738
+ /**
1739
+ * 表分区信息
1740
+ */
1741
+ Partitions?: Array<TPartition>
1742
+
1743
+ /**
1744
+ * 表属性信息
1745
+ */
1746
+ Properties?: Array<Property>
1747
+ }
1748
+
1549
1749
  /**
1550
1750
  * ListTaskJobLogDetail请求参数结构体
1551
1751
  */
@@ -1631,6 +1831,70 @@ export interface AttachWorkGroupPolicyRequest {
1631
1831
  PolicySet?: Array<Policy>
1632
1832
  }
1633
1833
 
1834
+ /**
1835
+ * notebook session statement输出信息。
1836
+ */
1837
+ export interface StatementOutput {
1838
+ /**
1839
+ * 执行总数
1840
+ 注意:此字段可能返回 null,表示取不到有效值。
1841
+ */
1842
+ ExecutionCount: number
1843
+
1844
+ /**
1845
+ * Statement数据
1846
+ 注意:此字段可能返回 null,表示取不到有效值。
1847
+ */
1848
+ Data: Array<KVPair>
1849
+
1850
+ /**
1851
+ * Statement状态:ok,error
1852
+ 注意:此字段可能返回 null,表示取不到有效值。
1853
+ */
1854
+ Status: string
1855
+
1856
+ /**
1857
+ * 错误名称
1858
+ 注意:此字段可能返回 null,表示取不到有效值。
1859
+ */
1860
+ ErrorName: string
1861
+
1862
+ /**
1863
+ * 错误类型
1864
+ 注意:此字段可能返回 null,表示取不到有效值。
1865
+ */
1866
+ ErrorValue: string
1867
+
1868
+ /**
1869
+ * 错误堆栈信息
1870
+ 注意:此字段可能返回 null,表示取不到有效值。
1871
+ */
1872
+ ErrorMessage: Array<string>
1873
+
1874
+ /**
1875
+ * SQL类型任务结果返回
1876
+ 注意:此字段可能返回 null,表示取不到有效值。
1877
+ */
1878
+ SQLResult?: string
1879
+ }
1880
+
1881
+ /**
1882
+ * 标签对信息
1883
+ */
1884
+ export interface TagInfo {
1885
+ /**
1886
+ * 标签键
1887
+ 注意:此字段可能返回 null,表示取不到有效值。
1888
+ */
1889
+ TagKey?: string
1890
+
1891
+ /**
1892
+ * 标签值
1893
+ 注意:此字段可能返回 null,表示取不到有效值。
1894
+ */
1895
+ TagValue?: string
1896
+ }
1897
+
1634
1898
  /**
1635
1899
  * CreateUser返回参数结构体
1636
1900
  */
@@ -1641,6 +1905,21 @@ export interface CreateUserResponse {
1641
1905
  RequestId?: string
1642
1906
  }
1643
1907
 
1908
+ /**
1909
+ * DescribeNotebookSessionStatements请求参数结构体
1910
+ */
1911
+ export interface DescribeNotebookSessionStatementsRequest {
1912
+ /**
1913
+ * Session唯一标识
1914
+ */
1915
+ SessionId: string
1916
+
1917
+ /**
1918
+ * 批任务id
1919
+ */
1920
+ BatchId: string
1921
+ }
1922
+
1644
1923
  /**
1645
1924
  * DeleteUser返回参数结构体
1646
1925
  */
@@ -1717,38 +1996,73 @@ export interface LockComponentInfo {
1717
1996
  }
1718
1997
 
1719
1998
  /**
1720
- * DescribeDMSPartitions请求参数结构体
1999
+ * DescribeNotebookSessions返回参数结构体
1721
2000
  */
1722
- export interface DescribeDMSPartitionsRequest {
2001
+ export interface DescribeNotebookSessionsResponse {
1723
2002
  /**
1724
- * 数据库名
2003
+ * session总数量
1725
2004
  */
1726
- DatabaseName: string
2005
+ TotalElements: number
1727
2006
 
1728
2007
  /**
1729
- * 表名称
2008
+ * 总页数
1730
2009
  */
1731
- TableName: string
2010
+ TotalPages: number
1732
2011
 
1733
2012
  /**
1734
- * schema名称
2013
+ * 当前页码
1735
2014
  */
1736
- SchemaName?: string
2015
+ Page: number
1737
2016
 
1738
2017
  /**
1739
- * 名称
2018
+ * 当前页数量
1740
2019
  */
1741
- Name?: string
2020
+ Size: number
1742
2021
 
1743
2022
  /**
1744
- * 单个分区名称,精准匹配
2023
+ * session列表信息
1745
2024
  */
1746
- Values?: Array<string>
2025
+ Sessions: Array<NotebookSessions>
1747
2026
 
1748
2027
  /**
1749
- * 多个分区名称,精准匹配
2028
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1750
2029
  */
1751
- PartitionNames?: Array<string>
2030
+ RequestId?: string
2031
+ }
2032
+
2033
+ /**
2034
+ * DescribeDMSPartitions请求参数结构体
2035
+ */
2036
+ export interface DescribeDMSPartitionsRequest {
2037
+ /**
2038
+ * 数据库名
2039
+ */
2040
+ DatabaseName: string
2041
+
2042
+ /**
2043
+ * 表名称
2044
+ */
2045
+ TableName: string
2046
+
2047
+ /**
2048
+ * schema名称
2049
+ */
2050
+ SchemaName?: string
2051
+
2052
+ /**
2053
+ * 名称
2054
+ */
2055
+ Name?: string
2056
+
2057
+ /**
2058
+ * 单个分区名称,精准匹配
2059
+ */
2060
+ Values?: Array<string>
2061
+
2062
+ /**
2063
+ * 多个分区名称,精准匹配
2064
+ */
2065
+ PartitionNames?: Array<string>
1752
2066
 
1753
2067
  /**
1754
2068
  * 多个分区字段的匹配,模糊匹配
@@ -1781,6 +2095,51 @@ export interface DescribeDMSPartitionsRequest {
1781
2095
  Expression?: string
1782
2096
  }
1783
2097
 
2098
+ /**
2099
+ * 表分区字段信息
2100
+ */
2101
+ export interface TPartition {
2102
+ /**
2103
+ * 字段名称
2104
+ */
2105
+ Name: string
2106
+
2107
+ /**
2108
+ * 字段类型
2109
+ */
2110
+ Type?: string
2111
+
2112
+ /**
2113
+ * 字段描述
2114
+ */
2115
+ Comment?: string
2116
+
2117
+ /**
2118
+ * 分区类型
2119
+ */
2120
+ PartitionType?: string
2121
+
2122
+ /**
2123
+ * 分区格式
2124
+ */
2125
+ PartitionFormat?: string
2126
+
2127
+ /**
2128
+ * 分区分隔数
2129
+ */
2130
+ PartitionDot?: number
2131
+
2132
+ /**
2133
+ * 分区转换策略
2134
+ */
2135
+ Transform?: string
2136
+
2137
+ /**
2138
+ * 策略参数
2139
+ */
2140
+ TransformArgs?: Array<string>
2141
+ }
2142
+
1784
2143
  /**
1785
2144
  * DescribeSparkAppJobs请求参数结构体
1786
2145
  */
@@ -1821,6 +2180,16 @@ export interface DescribeSparkAppJobsRequest {
1821
2180
  Limit?: number
1822
2181
  }
1823
2182
 
2183
+ /**
2184
+ * DeleteNotebookSession请求参数结构体
2185
+ */
2186
+ export interface DeleteNotebookSessionRequest {
2187
+ /**
2188
+ * Session唯一标识
2189
+ */
2190
+ SessionId: string
2191
+ }
2192
+
1824
2193
  /**
1825
2194
  * CreateDMSTable返回参数结构体
1826
2195
  */
@@ -2006,6 +2375,63 @@ export interface CSV {
2006
2375
  Format?: string
2007
2376
  }
2008
2377
 
2378
+ /**
2379
+ * NotebookSessionStatement详情。
2380
+ */
2381
+ export interface NotebookSessionStatementInfo {
2382
+ /**
2383
+ * 完成时间戳
2384
+ 注意:此字段可能返回 null,表示取不到有效值。
2385
+ */
2386
+ Completed: number
2387
+
2388
+ /**
2389
+ * 开始时间戳
2390
+ 注意:此字段可能返回 null,表示取不到有效值。
2391
+ */
2392
+ Started: number
2393
+
2394
+ /**
2395
+ * 完成进度,百分制
2396
+ 注意:此字段可能返回 null,表示取不到有效值。
2397
+ */
2398
+ Progress: number
2399
+
2400
+ /**
2401
+ * Session Statement唯一标识
2402
+ */
2403
+ StatementId: string
2404
+
2405
+ /**
2406
+ * Session Statement状态,包含:waiting(排队中)、running(运行中)、available(正常)、error(异常)、cancelling(取消中)、cancelled(已取消)
2407
+ */
2408
+ State: string
2409
+
2410
+ /**
2411
+ * Statement输出信息
2412
+ 注意:此字段可能返回 null,表示取不到有效值。
2413
+ */
2414
+ OutPut: StatementOutput
2415
+
2416
+ /**
2417
+ * 批任务id
2418
+ 注意:此字段可能返回 null,表示取不到有效值。
2419
+ */
2420
+ BatchId?: string
2421
+
2422
+ /**
2423
+ * 运行语句
2424
+ 注意:此字段可能返回 null,表示取不到有效值。
2425
+ */
2426
+ Code?: string
2427
+
2428
+ /**
2429
+ * 任务ID
2430
+ 注意:此字段可能返回 null,表示取不到有效值。
2431
+ */
2432
+ TaskId?: string
2433
+ }
2434
+
2009
2435
  /**
2010
2436
  * CreateTable请求参数结构体
2011
2437
  */
@@ -2016,6 +2442,26 @@ export interface CreateTableRequest {
2016
2442
  TableInfo: TableInfo
2017
2443
  }
2018
2444
 
2445
+ /**
2446
+ * CreateNotebookSessionStatement请求参数结构体
2447
+ */
2448
+ export interface CreateNotebookSessionStatementRequest {
2449
+ /**
2450
+ * Session唯一标识
2451
+ */
2452
+ SessionId: string
2453
+
2454
+ /**
2455
+ * 执行的代码
2456
+ */
2457
+ Code: string
2458
+
2459
+ /**
2460
+ * 类型,当前支持:spark、pyspark、sparkr、sql
2461
+ */
2462
+ Kind: string
2463
+ }
2464
+
2019
2465
  /**
2020
2466
  * DescribeWorkGroups返回参数结构体
2021
2467
  */
@@ -2115,9 +2561,14 @@ export interface DescribeSparkAppJobResponse {
2115
2561
  }
2116
2562
 
2117
2563
  /**
2118
- * DeleteUsersFromWorkGroup返回参数结构体
2564
+ * CreateExportTask返回参数结构体
2119
2565
  */
2120
- export interface DeleteUsersFromWorkGroupResponse {
2566
+ export interface CreateExportTaskResponse {
2567
+ /**
2568
+ * 任务id
2569
+ */
2570
+ TaskId: string
2571
+
2121
2572
  /**
2122
2573
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2123
2574
  */
@@ -2149,6 +2600,26 @@ export interface AddUsersToWorkGroupResponse {
2149
2600
  RequestId?: string
2150
2601
  }
2151
2602
 
2603
+ /**
2604
+ * DescribeNotebookSessionLog请求参数结构体
2605
+ */
2606
+ export interface DescribeNotebookSessionLogRequest {
2607
+ /**
2608
+ * Session唯一标识
2609
+ */
2610
+ SessionId: string
2611
+
2612
+ /**
2613
+ * 分页参数,默认200
2614
+ */
2615
+ Limit?: number
2616
+
2617
+ /**
2618
+ * 分页参数,默认0
2619
+ */
2620
+ Offset?: number
2621
+ }
2622
+
2152
2623
  /**
2153
2624
  * 授权用户信息
2154
2625
  */
@@ -2230,6 +2701,21 @@ export interface CreateExportTaskRequest {
2230
2701
  OutputType?: string
2231
2702
  }
2232
2703
 
2704
+ /**
2705
+ * DescribeNotebookSessionStatement返回参数结构体
2706
+ */
2707
+ export interface DescribeNotebookSessionStatementResponse {
2708
+ /**
2709
+ * Session Statement详情
2710
+ */
2711
+ NotebookSessionStatement?: NotebookSessionStatementInfo
2712
+
2713
+ /**
2714
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2715
+ */
2716
+ RequestId?: string
2717
+ }
2718
+
2233
2719
  /**
2234
2720
  * ReportHeartbeatMetaData返回参数结构体
2235
2721
  */
@@ -2346,28 +2832,13 @@ export interface CreateDMSTableRequest {
2346
2832
  }
2347
2833
 
2348
2834
  /**
2349
- * DropDMSTable请求参数结构体
2835
+ * CancelNotebookSessionStatement返回参数结构体
2350
2836
  */
2351
- export interface DropDMSTableRequest {
2352
- /**
2353
- * 数据库名称
2354
- */
2355
- DbName?: string
2356
-
2357
- /**
2358
- * 表名称
2359
- */
2360
- Name?: string
2361
-
2837
+ export interface CancelNotebookSessionStatementResponse {
2362
2838
  /**
2363
- * 是否删除数据
2364
- */
2365
- DeleteData?: boolean
2366
-
2367
- /**
2368
- * 环境属性
2839
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2369
2840
  */
2370
- EnvProps?: KVPair
2841
+ RequestId?: string
2371
2842
  }
2372
2843
 
2373
2844
  /**
@@ -2909,6 +3380,21 @@ export interface BindWorkGroupsToUserResponse {
2909
3380
  RequestId?: string
2910
3381
  }
2911
3382
 
3383
+ /**
3384
+ * CreateNotebookSessionStatement返回参数结构体
3385
+ */
3386
+ export interface CreateNotebookSessionStatementResponse {
3387
+ /**
3388
+ * Session Statement详情
3389
+ */
3390
+ NotebookSessionStatement?: NotebookSessionStatementInfo
3391
+
3392
+ /**
3393
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3394
+ */
3395
+ RequestId?: string
3396
+ }
3397
+
2912
3398
  /**
2913
3399
  * DescribeStoreLocation返回参数结构体
2914
3400
  */
@@ -2986,6 +3472,65 @@ export interface Script {
2986
3472
  UpdateTime: number
2987
3473
  }
2988
3474
 
3475
+ /**
3476
+ * 按批提交Statement运行SQL任务。
3477
+ */
3478
+ export interface NotebookSessionStatementBatchInformation {
3479
+ /**
3480
+ * 任务详情列表
3481
+ 注意:此字段可能返回 null,表示取不到有效值。
3482
+ */
3483
+ NotebookSessionStatementBatch?: Array<NotebookSessionStatementInfo>
3484
+
3485
+ /**
3486
+ * 当前批任务是否运行完成
3487
+ 注意:此字段可能返回 null,表示取不到有效值。
3488
+ */
3489
+ IsAvailable?: boolean
3490
+
3491
+ /**
3492
+ * Session唯一标识
3493
+ 注意:此字段可能返回 null,表示取不到有效值。
3494
+ */
3495
+ SessionId?: string
3496
+
3497
+ /**
3498
+ * Batch唯一标识
3499
+ 注意:此字段可能返回 null,表示取不到有效值。
3500
+ */
3501
+ BatchId?: string
3502
+ }
3503
+
3504
+ /**
3505
+ * DescribeNotebookSessionStatementSqlResult请求参数结构体
3506
+ */
3507
+ export interface DescribeNotebookSessionStatementSqlResultRequest {
3508
+ /**
3509
+ * 任务唯一ID
3510
+ */
3511
+ TaskId: string
3512
+
3513
+ /**
3514
+ * 返回结果的最大行数,范围0~1000,默认为1000.
3515
+ */
3516
+ MaxResults?: number
3517
+
3518
+ /**
3519
+ * 上一次请求响应返回的分页信息。第一次可以不带,从头开始返回数据,每次返回MaxResults字段设置的数据量。
3520
+ */
3521
+ NextToken?: string
3522
+ }
3523
+
3524
+ /**
3525
+ * ModifySparkApp返回参数结构体
3526
+ */
3527
+ export interface ModifySparkAppResponse {
3528
+ /**
3529
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3530
+ */
3531
+ RequestId?: string
3532
+ }
3533
+
2989
3534
  /**
2990
3535
  * AlterDMSTable请求参数结构体
2991
3536
  */
@@ -3288,6 +3833,21 @@ export interface WorkGroupInfo {
3288
3833
  CreateTime: string
3289
3834
  }
3290
3835
 
3836
+ /**
3837
+ * CreateNotebookSessionStatementSupportBatchSQL返回参数结构体
3838
+ */
3839
+ export interface CreateNotebookSessionStatementSupportBatchSQLResponse {
3840
+ /**
3841
+ * Session Statement详情
3842
+ */
3843
+ NotebookSessionStatementBatches?: NotebookSessionStatementBatchInformation
3844
+
3845
+ /**
3846
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3847
+ */
3848
+ RequestId?: string
3849
+ }
3850
+
3291
3851
  /**
3292
3852
  * CreateScript请求参数结构体
3293
3853
  */
@@ -3388,7 +3948,17 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
3388
3948
  }
3389
3949
 
3390
3950
  /**
3391
- * DescribeTaskResult请求参数结构体
3951
+ * DeleteWorkGroup请求参数结构体
3952
+ */
3953
+ export interface DeleteWorkGroupRequest {
3954
+ /**
3955
+ * 要删除的工作组Id集合
3956
+ */
3957
+ WorkGroupIds: Array<number>
3958
+ }
3959
+
3960
+ /**
3961
+ * DescribeTaskResult请求参数结构体
3392
3962
  */
3393
3963
  export interface DescribeTaskResultRequest {
3394
3964
  /**
@@ -3483,6 +4053,31 @@ export interface DataFormat {
3483
4053
  AVRO: Other
3484
4054
  }
3485
4055
 
4056
+ /**
4057
+ * DescribeNotebookSessionLog返回参数结构体
4058
+ */
4059
+ export interface DescribeNotebookSessionLogResponse {
4060
+ /**
4061
+ * 日志信息,默认获取最新的200条
4062
+ */
4063
+ Logs: Array<string>
4064
+
4065
+ /**
4066
+ * 分页参数,默认200
4067
+ */
4068
+ Limit: number
4069
+
4070
+ /**
4071
+ * 分页参数,默认0
4072
+ */
4073
+ Offset: number
4074
+
4075
+ /**
4076
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4077
+ */
4078
+ RequestId?: string
4079
+ }
4080
+
3486
4081
  /**
3487
4082
  * 查询视图信息对象
3488
4083
  */
@@ -3515,6 +4110,119 @@ export interface ViewResponseInfo {
3515
4110
  ModifiedTime: string
3516
4111
  }
3517
4112
 
4113
+ /**
4114
+ * 网络配置
4115
+ */
4116
+ export interface NetworkConnection {
4117
+ /**
4118
+ * 网络配置id
4119
+ 注意:此字段可能返回 null,表示取不到有效值。
4120
+ */
4121
+ Id?: number
4122
+
4123
+ /**
4124
+ * 网络配置唯一标志符
4125
+ 注意:此字段可能返回 null,表示取不到有效值。
4126
+ */
4127
+ AssociateId?: string
4128
+
4129
+ /**
4130
+ * 计算引擎id
4131
+ 注意:此字段可能返回 null,表示取不到有效值。
4132
+ */
4133
+ HouseId?: string
4134
+
4135
+ /**
4136
+ * 数据源id(已废弃)
4137
+ 注意:此字段可能返回 null,表示取不到有效值。
4138
+ */
4139
+ DatasourceConnectionId?: string
4140
+
4141
+ /**
4142
+ * 网络配置状态(0-初始化,1-正常)
4143
+ 注意:此字段可能返回 null,表示取不到有效值。
4144
+ */
4145
+ State?: number
4146
+
4147
+ /**
4148
+ * 创建时间
4149
+ 注意:此字段可能返回 null,表示取不到有效值。
4150
+ */
4151
+ CreateTime?: number
4152
+
4153
+ /**
4154
+ * 修改时间
4155
+ 注意:此字段可能返回 null,表示取不到有效值。
4156
+ */
4157
+ UpdateTime?: number
4158
+
4159
+ /**
4160
+ * 创建用户Appid
4161
+ 注意:此字段可能返回 null,表示取不到有效值。
4162
+ */
4163
+ Appid?: number
4164
+
4165
+ /**
4166
+ * 计算引擎名称
4167
+ 注意:此字段可能返回 null,表示取不到有效值。
4168
+ */
4169
+ HouseName?: string
4170
+
4171
+ /**
4172
+ * 网络配置名称
4173
+ 注意:此字段可能返回 null,表示取不到有效值。
4174
+ */
4175
+ DatasourceConnectionName?: string
4176
+
4177
+ /**
4178
+ * 网络配置类型
4179
+ 注意:此字段可能返回 null,表示取不到有效值。
4180
+ */
4181
+ NetworkConnectionType?: number
4182
+
4183
+ /**
4184
+ * 创建用户uin
4185
+ 注意:此字段可能返回 null,表示取不到有效值。
4186
+ */
4187
+ Uin?: string
4188
+
4189
+ /**
4190
+ * 创建用户SubAccountUin
4191
+ 注意:此字段可能返回 null,表示取不到有效值。
4192
+ */
4193
+ SubAccountUin?: string
4194
+
4195
+ /**
4196
+ * 网络配置描述
4197
+ 注意:此字段可能返回 null,表示取不到有效值。
4198
+ */
4199
+ NetworkConnectionDesc?: string
4200
+
4201
+ /**
4202
+ * 数据源vpcid
4203
+ 注意:此字段可能返回 null,表示取不到有效值。
4204
+ */
4205
+ DatasourceConnectionVpcId?: string
4206
+
4207
+ /**
4208
+ * 数据源SubnetId
4209
+ 注意:此字段可能返回 null,表示取不到有效值。
4210
+ */
4211
+ DatasourceConnectionSubnetId?: string
4212
+
4213
+ /**
4214
+ * 数据源SubnetId
4215
+ 注意:此字段可能返回 null,表示取不到有效值。
4216
+ */
4217
+ DatasourceConnectionCidrBlock?: string
4218
+
4219
+ /**
4220
+ * 数据源SubnetCidrBlock
4221
+ 注意:此字段可能返回 null,表示取不到有效值。
4222
+ */
4223
+ DatasourceConnectionSubnetCidrBlock?: string
4224
+ }
4225
+
3518
4226
  /**
3519
4227
  * CreateUser请求参数结构体
3520
4228
  */
@@ -3807,9 +4515,9 @@ table-id - String - (过滤条件)table id形如:12342。
3807
4515
  }
3808
4516
 
3809
4517
  /**
3810
- * ModifySparkApp返回参数结构体
4518
+ * DeleteNotebookSession返回参数结构体
3811
4519
  */
3812
- export interface ModifySparkAppResponse {
4520
+ export interface DeleteNotebookSessionResponse {
3813
4521
  /**
3814
4522
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3815
4523
  */
@@ -3843,6 +4551,21 @@ export interface DMSTableInfo {
3843
4551
  Asset: Asset
3844
4552
  }
3845
4553
 
4554
+ /**
4555
+ * DescribeNotebookSessionStatements返回参数结构体
4556
+ */
4557
+ export interface DescribeNotebookSessionStatementsResponse {
4558
+ /**
4559
+ * Session Statement详情
4560
+ */
4561
+ NotebookSessionStatements?: NotebookSessionStatementBatchInformation
4562
+
4563
+ /**
4564
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4565
+ */
4566
+ RequestId?: string
4567
+ }
4568
+
3846
4569
  /**
3847
4570
  * AttachUserPolicy返回参数结构体
3848
4571
  */
@@ -3853,6 +4576,68 @@ export interface AttachUserPolicyResponse {
3853
4576
  RequestId?: string
3854
4577
  }
3855
4578
 
4579
+ /**
4580
+ * DropDMSTable请求参数结构体
4581
+ */
4582
+ export interface DropDMSTableRequest {
4583
+ /**
4584
+ * 数据库名称
4585
+ */
4586
+ DbName?: string
4587
+
4588
+ /**
4589
+ * 表名称
4590
+ */
4591
+ Name?: string
4592
+
4593
+ /**
4594
+ * 是否删除数据
4595
+ */
4596
+ DeleteData?: boolean
4597
+
4598
+ /**
4599
+ * 环境属性
4600
+ */
4601
+ EnvProps?: KVPair
4602
+ }
4603
+
4604
+ /**
4605
+ * DescribeNotebookSessionStatementSqlResult返回参数结构体
4606
+ */
4607
+ export interface DescribeNotebookSessionStatementSqlResultResponse {
4608
+ /**
4609
+ * 任务Id
4610
+ */
4611
+ TaskId?: string
4612
+
4613
+ /**
4614
+ * 结果数据
4615
+ */
4616
+ ResultSet?: string
4617
+
4618
+ /**
4619
+ * schema
4620
+ */
4621
+ ResultSchema?: Array<Column>
4622
+
4623
+ /**
4624
+ * 分页信息
4625
+ 注意:此字段可能返回 null,表示取不到有效值。
4626
+ */
4627
+ NextToken?: string
4628
+
4629
+ /**
4630
+ * 存储结果地址
4631
+ 注意:此字段可能返回 null,表示取不到有效值。
4632
+ */
4633
+ OutputPath?: string
4634
+
4635
+ /**
4636
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4637
+ */
4638
+ RequestId?: string
4639
+ }
4640
+
3856
4641
  /**
3857
4642
  * 迁移元数据分区对象
3858
4643
  */
@@ -3972,14 +4757,9 @@ export interface DescribeDMSPartitionsResponse {
3972
4757
  }
3973
4758
 
3974
4759
  /**
3975
- * CreateExportTask返回参数结构体
4760
+ * DeleteUsersFromWorkGroup返回参数结构体
3976
4761
  */
3977
- export interface CreateExportTaskResponse {
3978
- /**
3979
- * 任务id
3980
- */
3981
- TaskId: string
3982
-
4762
+ export interface DeleteUsersFromWorkGroupResponse {
3983
4763
  /**
3984
4764
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3985
4765
  */
@@ -4370,6 +5150,33 @@ export interface DescribeSparkAppJobsResponse {
4370
5150
  RequestId?: string
4371
5151
  }
4372
5152
 
5153
+ /**
5154
+ * DescribeSparkAppTasks返回参数结构体
5155
+ */
5156
+ export interface DescribeSparkAppTasksResponse {
5157
+ /**
5158
+ * 任务结果(该字段已废弃)
5159
+ 注意:此字段可能返回 null,表示取不到有效值。
5160
+ */
5161
+ Tasks: TaskResponseInfo
5162
+
5163
+ /**
5164
+ * 任务总数
5165
+ */
5166
+ TotalCount: number
5167
+
5168
+ /**
5169
+ * 任务结果列表
5170
+ 注意:此字段可能返回 null,表示取不到有效值。
5171
+ */
5172
+ SparkAppTasks: Array<TaskResponseInfo>
5173
+
5174
+ /**
5175
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5176
+ */
5177
+ RequestId?: string
5178
+ }
5179
+
4373
5180
  /**
4374
5181
  * 查询表信息对象
4375
5182
  */
@@ -4768,13 +5575,69 @@ export interface CreateSparkAppRequest {
4768
5575
  }
4769
5576
 
4770
5577
  /**
4771
- * UnbindWorkGroupsFromUser返回参数结构体
5578
+ * DescribeDataEngines请求参数结构体
4772
5579
  */
4773
- export interface UnbindWorkGroupsFromUserResponse {
5580
+ export interface DescribeDataEnginesRequest {
4774
5581
  /**
4775
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
5582
+ * 偏移量,默认为0
4776
5583
  */
4777
- RequestId?: string
5584
+ Offset?: number
5585
+
5586
+ /**
5587
+ * 滤类型,传参Name应为以下其中一个,
5588
+ data-engine-name - String
5589
+ engine-type - String
5590
+ state - String
5591
+ mode - String
5592
+ create-time - String
5593
+ message - String
5594
+ */
5595
+ Filters?: Array<Filter>
5596
+
5597
+ /**
5598
+ * 排序字段,支持如下字段类型,create-time
5599
+ */
5600
+ SortBy?: string
5601
+
5602
+ /**
5603
+ * 排序方式,desc表示正序,asc表示反序, 默认为asc。
5604
+ */
5605
+ Sorting?: string
5606
+
5607
+ /**
5608
+ * 返回数量,默认为10,最大值为100。
5609
+ */
5610
+ Limit?: number
5611
+
5612
+ /**
5613
+ * 已废弃,请使用DatasourceConnectionNameSet
5614
+ */
5615
+ DatasourceConnectionName?: string
5616
+
5617
+ /**
5618
+ * 是否不返回共享引擎,true不返回共享引擎,false可以返回共享引擎
5619
+ */
5620
+ ExcludePublicEngine?: boolean
5621
+
5622
+ /**
5623
+ * 参数应该为引擎权限类型,有效类型:"USE", "MODIFY", "OPERATE", "MONITOR", "DELETE"
5624
+ */
5625
+ AccessTypes?: Array<string>
5626
+
5627
+ /**
5628
+ * 引擎执行任务类型,有效值:SQL/BATCH
5629
+ */
5630
+ EngineExecType?: string
5631
+
5632
+ /**
5633
+ * 引擎类型,有效值:spark/presto
5634
+ */
5635
+ EngineType?: string
5636
+
5637
+ /**
5638
+ * 网络配置列表,若传入该参数,则返回网络配置关联的计算引擎
5639
+ */
5640
+ DatasourceConnectionNameSet?: Array<string>
4778
5641
  }
4779
5642
 
4780
5643
  /**
@@ -4827,6 +5690,205 @@ export interface CreateWorkGroupRequest {
4827
5690
  UserIds?: Array<string>
4828
5691
  }
4829
5692
 
5693
+ /**
5694
+ * CreateInternalTable返回参数结构体
5695
+ */
5696
+ export interface CreateInternalTableResponse {
5697
+ /**
5698
+ * 创建托管存储内表sql语句描述
5699
+ */
5700
+ Execution: string
5701
+
5702
+ /**
5703
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5704
+ */
5705
+ RequestId?: string
5706
+ }
5707
+
5708
+ /**
5709
+ * DataEngine详细信息
5710
+ */
5711
+ export interface DataEngineInfo {
5712
+ /**
5713
+ * DataEngine名称
5714
+ */
5715
+ DataEngineName: string
5716
+
5717
+ /**
5718
+ * 引擎类型 spark/presto
5719
+ */
5720
+ EngineType: string
5721
+
5722
+ /**
5723
+ * 集群资源类型 spark_private/presto_private/presto_cu/spark_cu
5724
+ */
5725
+ ClusterType: string
5726
+
5727
+ /**
5728
+ * 引用ID
5729
+ */
5730
+ QuotaId?: string
5731
+
5732
+ /**
5733
+ * 数据引擎状态 -2已删除 -1失败 0初始化中 1挂起 2运行中 3准备删除 4删除中
5734
+ */
5735
+ State?: number
5736
+
5737
+ /**
5738
+ * 创建时间
5739
+ */
5740
+ CreateTime?: number
5741
+
5742
+ /**
5743
+ * 更新时间
5744
+ */
5745
+ UpdateTime?: number
5746
+
5747
+ /**
5748
+ * 集群规格
5749
+ 注意:此字段可能返回 null,表示取不到有效值。
5750
+ */
5751
+ Size?: number
5752
+
5753
+ /**
5754
+ * 计费模式 0共享模式 1按量计费 2包年包月
5755
+ */
5756
+ Mode?: number
5757
+
5758
+ /**
5759
+ * 最小集群数
5760
+ 注意:此字段可能返回 null,表示取不到有效值。
5761
+ */
5762
+ MinClusters?: number
5763
+
5764
+ /**
5765
+ * 最大集群数
5766
+ 注意:此字段可能返回 null,表示取不到有效值。
5767
+ */
5768
+ MaxClusters?: number
5769
+
5770
+ /**
5771
+ * 是否自动恢复
5772
+ 注意:此字段可能返回 null,表示取不到有效值。
5773
+ */
5774
+ AutoResume?: boolean
5775
+
5776
+ /**
5777
+ * 自动恢复时间
5778
+ 注意:此字段可能返回 null,表示取不到有效值。
5779
+ */
5780
+ SpendAfter?: number
5781
+
5782
+ /**
5783
+ * 集群网段
5784
+ 注意:此字段可能返回 null,表示取不到有效值。
5785
+ */
5786
+ CidrBlock?: string
5787
+
5788
+ /**
5789
+ * 是否为默认引擎
5790
+ 注意:此字段可能返回 null,表示取不到有效值。
5791
+ */
5792
+ DefaultDataEngine?: boolean
5793
+
5794
+ /**
5795
+ * 返回信息
5796
+ 注意:此字段可能返回 null,表示取不到有效值。
5797
+ */
5798
+ Message?: string
5799
+
5800
+ /**
5801
+ * 引擎id
5802
+ */
5803
+ DataEngineId?: string
5804
+
5805
+ /**
5806
+ * 操作者
5807
+ */
5808
+ SubAccountUin?: string
5809
+
5810
+ /**
5811
+ * 到期时间
5812
+ */
5813
+ ExpireTime?: string
5814
+
5815
+ /**
5816
+ * 隔离时间
5817
+ */
5818
+ IsolatedTime?: string
5819
+
5820
+ /**
5821
+ * 冲正时间
5822
+ */
5823
+ ReversalTime?: string
5824
+
5825
+ /**
5826
+ * 用户名称
5827
+ 注意:此字段可能返回 null,表示取不到有效值。
5828
+ */
5829
+ UserAlias?: string
5830
+
5831
+ /**
5832
+ * 标签对集合
5833
+ 注意:此字段可能返回 null,表示取不到有效值。
5834
+ */
5835
+ TagList?: Array<TagInfo>
5836
+
5837
+ /**
5838
+ * 引擎拥有的权限
5839
+ 注意:此字段可能返回 null,表示取不到有效值。
5840
+ */
5841
+ Permissions?: Array<string>
5842
+
5843
+ /**
5844
+ * 是否自定挂起集群:false(默认):不自动挂起、true:自动挂起
5845
+ 注意:此字段可能返回 null,表示取不到有效值。
5846
+ */
5847
+ AutoSuspend?: boolean
5848
+
5849
+ /**
5850
+ * 定时启停集群策略:0(默认):关闭定时策略、1:开启定时策略(注:定时启停策略与自动挂起策略互斥)
5851
+ 注意:此字段可能返回 null,表示取不到有效值。
5852
+ */
5853
+ CrontabResumeSuspend?: number
5854
+
5855
+ /**
5856
+ * 定时启停策略,复杂类型:包含启停时间、挂起集群策略
5857
+ 注意:此字段可能返回 null,表示取不到有效值。
5858
+ */
5859
+ CrontabResumeSuspendStrategy?: CrontabResumeSuspendStrategy
5860
+
5861
+ /**
5862
+ * 引擎执行任务类型,有效值:SQL/BATCH
5863
+ 注意:此字段可能返回 null,表示取不到有效值。
5864
+ */
5865
+ EngineExecType?: string
5866
+
5867
+ /**
5868
+ * 自动续费标志,0,初始状态,默认不自动续费,若用户有预付费不停服特权,自动续费。1:自动续费。2:明确不自动续费
5869
+ 注意:此字段可能返回 null,表示取不到有效值。
5870
+ */
5871
+ RenewFlag?: number
5872
+
5873
+ /**
5874
+ * 集群自动挂起时间
5875
+ 注意:此字段可能返回 null,表示取不到有效值。
5876
+ */
5877
+ AutoSuspendTime?: number
5878
+
5879
+ /**
5880
+ * 网络连接配置
5881
+ 注意:此字段可能返回 null,表示取不到有效值。
5882
+ */
5883
+ NetworkConnectionSet?: Array<NetworkConnection>
5884
+
5885
+ /**
5886
+ * ui的跳转地址
5887
+ 注意:此字段可能返回 null,表示取不到有效值。
5888
+ */
5889
+ UiURL?: string
5890
+ }
5891
+
4830
5892
  /**
4831
5893
  * DescribeSparkAppTasks请求参数结构体
4832
5894
  */
@@ -4978,6 +6040,26 @@ export interface UserMessage {
4978
6040
  UserAlias: string
4979
6041
  }
4980
6042
 
6043
+ /**
6044
+ * DescribeViews返回参数结构体
6045
+ */
6046
+ export interface DescribeViewsResponse {
6047
+ /**
6048
+ * 视图对象列表。
6049
+ */
6050
+ ViewList: Array<ViewResponseInfo>
6051
+
6052
+ /**
6053
+ * 实例总数。
6054
+ */
6055
+ TotalCount: number
6056
+
6057
+ /**
6058
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6059
+ */
6060
+ RequestId?: string
6061
+ }
6062
+
4981
6063
  /**
4982
6064
  * 数据库和数据表属性信息
4983
6065
  */
@@ -5099,17 +6181,34 @@ export interface DescribeDMSTableRequest {
5099
6181
  export type ModifyGovernEventRuleRequest = null
5100
6182
 
5101
6183
  /**
5102
- * DescribeViews返回参数结构体
6184
+ * CancelNotebookSessionStatementBatch请求参数结构体
5103
6185
  */
5104
- export interface DescribeViewsResponse {
6186
+ export interface CancelNotebookSessionStatementBatchRequest {
5105
6187
  /**
5106
- * 视图对象列表。
6188
+ * Session唯一标识
5107
6189
  */
5108
- ViewList: Array<ViewResponseInfo>
6190
+ SessionId: string
5109
6191
 
5110
6192
  /**
5111
- * 实例总数。
6193
+ * 批任务唯一标识
5112
6194
  */
6195
+ BatchId: string
6196
+ }
6197
+
6198
+ /**
6199
+ * DescribeDataEngines返回参数结构体
6200
+ */
6201
+ export interface DescribeDataEnginesResponse {
6202
+ /**
6203
+ * 数据引擎列表
6204
+ 注意:此字段可能返回 null,表示取不到有效值。
6205
+ */
6206
+ DataEngines: Array<DataEngineInfo>
6207
+
6208
+ /**
6209
+ * 总条数
6210
+ 注意:此字段可能返回 null,表示取不到有效值。
6211
+ */
5113
6212
  TotalCount: number
5114
6213
 
5115
6214
  /**
@@ -5250,6 +6349,36 @@ export interface DMSColumn {
5250
6349
  IsPartition?: boolean
5251
6350
  }
5252
6351
 
6352
+ /**
6353
+ * 表字段描述信息
6354
+ */
6355
+ export interface TColumn {
6356
+ /**
6357
+ * 字段名称
6358
+ */
6359
+ Name: string
6360
+
6361
+ /**
6362
+ * 字段类型
6363
+ */
6364
+ Type: string
6365
+
6366
+ /**
6367
+ * 字段描述
6368
+ */
6369
+ Comment?: string
6370
+
6371
+ /**
6372
+ * 字段默认值
6373
+ */
6374
+ Default?: string
6375
+
6376
+ /**
6377
+ * 字段是否是非空
6378
+ */
6379
+ NotNull?: boolean
6380
+ }
6381
+
5253
6382
  /**
5254
6383
  * DescribeResultDownload请求参数结构体
5255
6384
  */