tencentcloud-sdk-nodejs-oceanus 4.1.269 → 4.1.273
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/package.json
CHANGED
|
@@ -1481,62 +1481,77 @@ export interface CreateJobResponse {
|
|
|
1481
1481
|
*/
|
|
1482
1482
|
export interface SqlGatewayItem {
|
|
1483
1483
|
/**
|
|
1484
|
-
*
|
|
1484
|
+
* <p>唯一标识</p>
|
|
1485
1485
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1486
1486
|
*/
|
|
1487
1487
|
SerialId?: string;
|
|
1488
1488
|
/**
|
|
1489
|
-
* Flink
|
|
1489
|
+
* <p>Flink内核版本</p>
|
|
1490
1490
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1491
1491
|
*/
|
|
1492
1492
|
FlinkVersion?: string;
|
|
1493
1493
|
/**
|
|
1494
|
-
*
|
|
1494
|
+
* <p>状态,1.停止 2. 开启中 3. 开启 4. 开启失败 5. 停止中</p>
|
|
1495
1495
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1496
1496
|
*/
|
|
1497
1497
|
Status?: number;
|
|
1498
1498
|
/**
|
|
1499
|
-
*
|
|
1499
|
+
* <p>创建人</p>
|
|
1500
1500
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1501
1501
|
*/
|
|
1502
1502
|
CreatorUin?: string;
|
|
1503
1503
|
/**
|
|
1504
|
-
*
|
|
1504
|
+
* <p>引用资源</p>
|
|
1505
1505
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1506
1506
|
*/
|
|
1507
1507
|
ResourceRefs?: Array<GatewayRefItem>;
|
|
1508
1508
|
/**
|
|
1509
|
-
* Cu
|
|
1509
|
+
* <p>Cu规格</p>
|
|
1510
1510
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1511
1511
|
*/
|
|
1512
1512
|
CuSpec?: number;
|
|
1513
1513
|
/**
|
|
1514
|
-
*
|
|
1514
|
+
* <p>创建时间</p>
|
|
1515
1515
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1516
1516
|
*/
|
|
1517
1517
|
CreateTime?: string;
|
|
1518
1518
|
/**
|
|
1519
|
-
*
|
|
1519
|
+
* <p>更新时间</p>
|
|
1520
1520
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1521
1521
|
*/
|
|
1522
1522
|
UpdateTime?: string;
|
|
1523
1523
|
/**
|
|
1524
|
-
*
|
|
1524
|
+
* <p>配置参数</p>
|
|
1525
1525
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1526
1526
|
*/
|
|
1527
1527
|
Properties?: Array<Property>;
|
|
1528
1528
|
/**
|
|
1529
|
-
* Cpu
|
|
1529
|
+
* <p>Cpu</p>
|
|
1530
1530
|
*/
|
|
1531
1531
|
Cpu?: number;
|
|
1532
1532
|
/**
|
|
1533
|
-
* Mem
|
|
1533
|
+
* <p>Mem</p>
|
|
1534
1534
|
*/
|
|
1535
1535
|
Mem?: number;
|
|
1536
1536
|
/**
|
|
1537
|
-
* jdk
|
|
1537
|
+
* <p>jdk版本</p>
|
|
1538
1538
|
*/
|
|
1539
1539
|
JdkVersion?: string;
|
|
1540
|
+
/**
|
|
1541
|
+
* <p>session id</p>
|
|
1542
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1543
|
+
*/
|
|
1544
|
+
SessionClusterId?: string;
|
|
1545
|
+
/**
|
|
1546
|
+
* <p>pg用户名</p>
|
|
1547
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1548
|
+
*/
|
|
1549
|
+
PgUser?: string;
|
|
1550
|
+
/**
|
|
1551
|
+
* <p>协议</p>
|
|
1552
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1553
|
+
*/
|
|
1554
|
+
Endpoints?: Array<SqlGatewayEndpoint>;
|
|
1540
1555
|
}
|
|
1541
1556
|
/**
|
|
1542
1557
|
* DescribeVariables请求参数结构体
|
|
@@ -5016,6 +5031,27 @@ export interface ExpertModeConfiguration {
|
|
|
5016
5031
|
*/
|
|
5017
5032
|
SlotSharingGroups?: Array<SlotSharingGroup>;
|
|
5018
5033
|
}
|
|
5034
|
+
/**
|
|
5035
|
+
* 对外接口访问信息
|
|
5036
|
+
*/
|
|
5037
|
+
export interface SqlGatewayEndpoint {
|
|
5038
|
+
/**
|
|
5039
|
+
* <p>类型</p><p>枚举值:</p><ul><li>rest: rest</li><li>hiveserver2: hiveserver2</li><li>pg: pg</li></ul>
|
|
5040
|
+
*/
|
|
5041
|
+
Type?: string;
|
|
5042
|
+
/**
|
|
5043
|
+
* <p>地址</p>
|
|
5044
|
+
*/
|
|
5045
|
+
Address?: string;
|
|
5046
|
+
/**
|
|
5047
|
+
* <p>是否开启</p>
|
|
5048
|
+
*/
|
|
5049
|
+
Enabled?: boolean;
|
|
5050
|
+
/**
|
|
5051
|
+
* <p>其他信息</p>
|
|
5052
|
+
*/
|
|
5053
|
+
Extra?: string;
|
|
5054
|
+
}
|
|
5019
5055
|
/**
|
|
5020
5056
|
* 集群购买、扩缩容、续费订单信息
|
|
5021
5057
|
*/
|