tencentcloud-sdk-cdwch 3.0.1023 → 3.0.1025
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200915/models.rb +39 -136
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4352cbab09cdfd0b507a9a68becbab4e23ea73c
|
4
|
+
data.tar.gz: e170b51a9ad89581d7217ffcab4af192cad03c22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd1d86b2b6ffe7507f5063fae8cfe5cb1a9c599c923132071267b68c8cda5990eba9fb7be693f727f24a482359e0c8fbd1ef7c17f31927926848fd719e061f7d
|
7
|
+
data.tar.gz: 13566a39f4b0f2c3a100f90d38e1d55523f22bdea0a52e0599123db51b1e7d54616edbff7e0ce26700b249f04c0c9a872ab44b6fb63c1a8744f3f57219f6cb82
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1025
|
data/lib/v20200915/models.rb
CHANGED
@@ -106,10 +106,14 @@ module TencentCloud
|
|
106
106
|
# @type ExpireTime: String
|
107
107
|
# @param JobStatus: 任务状态
|
108
108
|
# @type JobStatus: String
|
109
|
+
# @param ProcessSize: 处理数据量
|
110
|
+
# @type ProcessSize: Integer
|
111
|
+
# @param ErrorReason: 错误原因
|
112
|
+
# @type ErrorReason: String
|
109
113
|
|
110
|
-
attr_accessor :JobId, :Snapshot, :BackUpType, :BackUpSize, :BackUpTime, :ExpireTime, :JobStatus
|
114
|
+
attr_accessor :JobId, :Snapshot, :BackUpType, :BackUpSize, :BackUpTime, :ExpireTime, :JobStatus, :ProcessSize, :ErrorReason
|
111
115
|
|
112
|
-
def initialize(jobid=nil, snapshot=nil, backuptype=nil, backupsize=nil, backuptime=nil, expiretime=nil, jobstatus=nil)
|
116
|
+
def initialize(jobid=nil, snapshot=nil, backuptype=nil, backupsize=nil, backuptime=nil, expiretime=nil, jobstatus=nil, processsize=nil, errorreason=nil)
|
113
117
|
@JobId = jobid
|
114
118
|
@Snapshot = snapshot
|
115
119
|
@BackUpType = backuptype
|
@@ -117,6 +121,8 @@ module TencentCloud
|
|
117
121
|
@BackUpTime = backuptime
|
118
122
|
@ExpireTime = expiretime
|
119
123
|
@JobStatus = jobstatus
|
124
|
+
@ProcessSize = processsize
|
125
|
+
@ErrorReason = errorreason
|
120
126
|
end
|
121
127
|
|
122
128
|
def deserialize(params)
|
@@ -127,31 +133,26 @@ module TencentCloud
|
|
127
133
|
@BackUpTime = params['BackUpTime']
|
128
134
|
@ExpireTime = params['ExpireTime']
|
129
135
|
@JobStatus = params['JobStatus']
|
136
|
+
@ProcessSize = params['ProcessSize']
|
137
|
+
@ErrorReason = params['ErrorReason']
|
130
138
|
end
|
131
139
|
end
|
132
140
|
|
133
141
|
# 备份表信息
|
134
142
|
class BackupTableContent < TencentCloud::Common::AbstractModel
|
135
143
|
# @param Database: 数据库
|
136
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
137
144
|
# @type Database: String
|
138
145
|
# @param Table: 表
|
139
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
140
146
|
# @type Table: String
|
141
147
|
# @param TotalBytes: 表总字节数
|
142
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
143
148
|
# @type TotalBytes: Integer
|
144
149
|
# @param VCluster: 虚拟cluster
|
145
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
146
150
|
# @type VCluster: String
|
147
151
|
# @param Ips: 表ip
|
148
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
149
152
|
# @type Ips: String
|
150
153
|
# @param ZooPath: zk路径
|
151
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
152
154
|
# @type ZooPath: String
|
153
155
|
# @param Rip: cvm的ip地址
|
154
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
155
156
|
# @type Rip: String
|
156
157
|
|
157
158
|
attr_accessor :Database, :Table, :TotalBytes, :VCluster, :Ips, :ZooPath, :Rip
|
@@ -242,7 +243,6 @@ module TencentCloud
|
|
242
243
|
# @param NeedRestart: 用于表示当前配置文件是不是有过修改后没有重启,提醒用户需要重启
|
243
244
|
# @type NeedRestart: Integer
|
244
245
|
# @param FilePath: 保存配置文件的路径
|
245
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
246
246
|
# @type FilePath: String
|
247
247
|
|
248
248
|
attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath
|
@@ -269,10 +269,8 @@ module TencentCloud
|
|
269
269
|
# clickhouse vcluster信息
|
270
270
|
class ClusterInfo < TencentCloud::Common::AbstractModel
|
271
271
|
# @param ClusterName: vcluster名字
|
272
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
273
272
|
# @type ClusterName: String
|
274
273
|
# @param NodeIps: 当前cluster的IP列表
|
275
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
276
274
|
# @type NodeIps: Array
|
277
275
|
|
278
276
|
attr_accessor :ClusterName, :NodeIps
|
@@ -497,10 +495,8 @@ module TencentCloud
|
|
497
495
|
# CreateInstanceNew返回参数结构体
|
498
496
|
class CreateInstanceNewResponse < TencentCloud::Common::AbstractModel
|
499
497
|
# @param FlowId: 流程ID
|
500
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
501
498
|
# @type FlowId: String
|
502
499
|
# @param InstanceId: 实例ID
|
503
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
504
500
|
# @type InstanceId: String
|
505
501
|
# @param ErrorMsg: 错误信息
|
506
502
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -529,11 +525,9 @@ module TencentCloud
|
|
529
525
|
class DatabasePrivilegeInfo < TencentCloud::Common::AbstractModel
|
530
526
|
# @param DatabaseName: 数据库名称
|
531
527
|
# @type DatabaseName: String
|
532
|
-
# @param DatabasePrivileges:
|
533
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
528
|
+
# @param DatabasePrivileges: 库表权限,SELECT、INSERT_ALL、ALTER、TRUNCATE、DROP_TABLE、CREATE_TABLE、DROP_DATABASE
|
534
529
|
# @type DatabasePrivileges: Array
|
535
|
-
# @param TablePrivilegeList:
|
536
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
530
|
+
# @param TablePrivilegeList: 库下面的表权限
|
537
531
|
# @type TablePrivilegeList: Array
|
538
532
|
|
539
533
|
attr_accessor :DatabaseName, :DatabasePrivileges, :TablePrivilegeList
|
@@ -621,7 +615,6 @@ module TencentCloud
|
|
621
615
|
# DescribeBackUpJobDetail返回参数结构体
|
622
616
|
class DescribeBackUpJobDetailResponse < TencentCloud::Common::AbstractModel
|
623
617
|
# @param TableContents: 备份表详情
|
624
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
625
618
|
# @type TableContents: Array
|
626
619
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
627
620
|
# @type RequestId: String
|
@@ -681,15 +674,20 @@ module TencentCloud
|
|
681
674
|
# DescribeBackUpJob返回参数结构体
|
682
675
|
class DescribeBackUpJobResponse < TencentCloud::Common::AbstractModel
|
683
676
|
# @param BackUpJobs: 任务列表
|
684
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
685
677
|
# @type BackUpJobs: Array
|
678
|
+
# @param ErrorMsg: 错误描述
|
679
|
+
# @type ErrorMsg: String
|
680
|
+
# @param TotalCount: 数量
|
681
|
+
# @type TotalCount: Integer
|
686
682
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
687
683
|
# @type RequestId: String
|
688
684
|
|
689
|
-
attr_accessor :BackUpJobs, :RequestId
|
685
|
+
attr_accessor :BackUpJobs, :ErrorMsg, :TotalCount, :RequestId
|
690
686
|
|
691
|
-
def initialize(backupjobs=nil, requestid=nil)
|
687
|
+
def initialize(backupjobs=nil, errormsg=nil, totalcount=nil, requestid=nil)
|
692
688
|
@BackUpJobs = backupjobs
|
689
|
+
@ErrorMsg = errormsg
|
690
|
+
@TotalCount = totalcount
|
693
691
|
@RequestId = requestid
|
694
692
|
end
|
695
693
|
|
@@ -702,6 +700,8 @@ module TencentCloud
|
|
702
700
|
@BackUpJobs << backupjobdisplay_tmp
|
703
701
|
end
|
704
702
|
end
|
703
|
+
@ErrorMsg = params['ErrorMsg']
|
704
|
+
@TotalCount = params['TotalCount']
|
705
705
|
@RequestId = params['RequestId']
|
706
706
|
end
|
707
707
|
end
|
@@ -799,13 +799,16 @@ module TencentCloud
|
|
799
799
|
class DescribeBackUpTablesResponse < TencentCloud::Common::AbstractModel
|
800
800
|
# @param AvailableTables: 可备份表列表
|
801
801
|
# @type AvailableTables: Array
|
802
|
+
# @param ErrorMsg: 错误描述
|
803
|
+
# @type ErrorMsg: String
|
802
804
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
803
805
|
# @type RequestId: String
|
804
806
|
|
805
|
-
attr_accessor :AvailableTables, :RequestId
|
807
|
+
attr_accessor :AvailableTables, :ErrorMsg, :RequestId
|
806
808
|
|
807
|
-
def initialize(availabletables=nil, requestid=nil)
|
809
|
+
def initialize(availabletables=nil, errormsg=nil, requestid=nil)
|
808
810
|
@AvailableTables = availabletables
|
811
|
+
@ErrorMsg = errormsg
|
809
812
|
@RequestId = requestid
|
810
813
|
end
|
811
814
|
|
@@ -818,6 +821,7 @@ module TencentCloud
|
|
818
821
|
@AvailableTables << backuptablecontent_tmp
|
819
822
|
end
|
820
823
|
end
|
824
|
+
@ErrorMsg = params['ErrorMsg']
|
821
825
|
@RequestId = params['RequestId']
|
822
826
|
end
|
823
827
|
end
|
@@ -868,7 +872,6 @@ module TencentCloud
|
|
868
872
|
# DescribeCkSqlApis返回参数结构体
|
869
873
|
class DescribeCkSqlApisResponse < TencentCloud::Common::AbstractModel
|
870
874
|
# @param ReturnData: 返回的查询数据,大部分情况是list,也可能是bool
|
871
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
872
875
|
# @type ReturnData: String
|
873
876
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
874
877
|
# @type RequestId: String
|
@@ -1178,7 +1181,6 @@ module TencentCloud
|
|
1178
1181
|
# DescribeInstanceShards返回参数结构体
|
1179
1182
|
class DescribeInstanceShardsResponse < TencentCloud::Common::AbstractModel
|
1180
1183
|
# @param InstanceShardsList: 实例shard信息
|
1181
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1182
1184
|
# @type InstanceShardsList: String
|
1183
1185
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1184
1186
|
# @type RequestId: String
|
@@ -1217,32 +1219,33 @@ module TencentCloud
|
|
1217
1219
|
# @param InstanceState: 集群状态,例如:Serving
|
1218
1220
|
# @type InstanceState: String
|
1219
1221
|
# @param FlowCreateTime: 集群操作创建时间
|
1220
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1221
1222
|
# @type FlowCreateTime: String
|
1222
1223
|
# @param FlowName: 集群操作名称
|
1223
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1224
1224
|
# @type FlowName: String
|
1225
1225
|
# @param FlowProgress: 集群操作进度
|
1226
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1227
1226
|
# @type FlowProgress: Float
|
1228
1227
|
# @param InstanceStateDesc: 集群状态描述,例如:运行中
|
1229
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1230
1228
|
# @type InstanceStateDesc: String
|
1231
1229
|
# @param FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
1232
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1233
1230
|
# @type FlowMsg: String
|
1231
|
+
# @param ProcessName: 当前步骤的名称,例如:”购买资源中“
|
1232
|
+
# @type ProcessName: String
|
1233
|
+
# @param ProcessSubName: 当前步骤的名称,例如:”购买资源中“
|
1234
|
+
# @type ProcessSubName: String
|
1234
1235
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1235
1236
|
# @type RequestId: String
|
1236
1237
|
|
1237
|
-
attr_accessor :InstanceState, :FlowCreateTime, :FlowName, :FlowProgress, :InstanceStateDesc, :FlowMsg, :RequestId
|
1238
|
+
attr_accessor :InstanceState, :FlowCreateTime, :FlowName, :FlowProgress, :InstanceStateDesc, :FlowMsg, :ProcessName, :ProcessSubName, :RequestId
|
1238
1239
|
|
1239
|
-
def initialize(instancestate=nil, flowcreatetime=nil, flowname=nil, flowprogress=nil, instancestatedesc=nil, flowmsg=nil, requestid=nil)
|
1240
|
+
def initialize(instancestate=nil, flowcreatetime=nil, flowname=nil, flowprogress=nil, instancestatedesc=nil, flowmsg=nil, processname=nil, processsubname=nil, requestid=nil)
|
1240
1241
|
@InstanceState = instancestate
|
1241
1242
|
@FlowCreateTime = flowcreatetime
|
1242
1243
|
@FlowName = flowname
|
1243
1244
|
@FlowProgress = flowprogress
|
1244
1245
|
@InstanceStateDesc = instancestatedesc
|
1245
1246
|
@FlowMsg = flowmsg
|
1247
|
+
@ProcessName = processname
|
1248
|
+
@ProcessSubName = processsubname
|
1246
1249
|
@RequestId = requestid
|
1247
1250
|
end
|
1248
1251
|
|
@@ -1253,6 +1256,8 @@ module TencentCloud
|
|
1253
1256
|
@FlowProgress = params['FlowProgress']
|
1254
1257
|
@InstanceStateDesc = params['InstanceStateDesc']
|
1255
1258
|
@FlowMsg = params['FlowMsg']
|
1259
|
+
@ProcessName = params['ProcessName']
|
1260
|
+
@ProcessSubName = params['ProcessSubName']
|
1256
1261
|
@RequestId = params['RequestId']
|
1257
1262
|
end
|
1258
1263
|
end
|
@@ -1370,7 +1375,6 @@ module TencentCloud
|
|
1370
1375
|
# @param DataSpec: 数据节点规格描述
|
1371
1376
|
# @type DataSpec: Array
|
1372
1377
|
# @param AttachCBSSpec: 云盘列表
|
1373
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1374
1378
|
# @type AttachCBSSpec: Array
|
1375
1379
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1376
1380
|
# @type RequestId: String
|
@@ -1432,7 +1436,6 @@ module TencentCloud
|
|
1432
1436
|
# DestroyInstance返回参数结构体
|
1433
1437
|
class DestroyInstanceResponse < TencentCloud::Common::AbstractModel
|
1434
1438
|
# @param FlowID: 作业id
|
1435
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1436
1439
|
# @type FlowID: String
|
1437
1440
|
# @param InstanceID: 集群id
|
1438
1441
|
# @type InstanceID: String
|
@@ -1593,7 +1596,6 @@ module TencentCloud
|
|
1593
1596
|
# Instance表detail字段
|
1594
1597
|
class InstanceDetail < TencentCloud::Common::AbstractModel
|
1595
1598
|
# @param EnableAlarmStrategy: 告警策略是否可用
|
1596
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1597
1599
|
# @type EnableAlarmStrategy: Boolean
|
1598
1600
|
|
1599
1601
|
attr_accessor :EnableAlarmStrategy
|
@@ -1610,163 +1612,111 @@ module TencentCloud
|
|
1610
1612
|
# 实例描述信息
|
1611
1613
|
class InstanceInfo < TencentCloud::Common::AbstractModel
|
1612
1614
|
# @param InstanceId: 集群实例ID, "cdw-xxxx" 字符串类型
|
1613
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1614
1615
|
# @type InstanceId: String
|
1615
1616
|
# @param InstanceName: 集群实例名称
|
1616
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1617
1617
|
# @type InstanceName: String
|
1618
1618
|
# @param Status: 状态,
|
1619
1619
|
# Init 创建中; Serving 运行中;
|
1620
1620
|
# Deleted已销毁;Deleting 销毁中;
|
1621
1621
|
# Modify 集群变更中;
|
1622
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1623
1622
|
# @type Status: String
|
1624
1623
|
# @param Version: 版本
|
1625
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1626
1624
|
# @type Version: String
|
1627
1625
|
# @param Region: 地域, ap-guangzhou
|
1628
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1629
1626
|
# @type Region: String
|
1630
1627
|
# @param Zone: 可用区, ap-guangzhou-3
|
1631
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1632
1628
|
# @type Zone: String
|
1633
1629
|
# @param VpcId: 私有网络名称
|
1634
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1635
1630
|
# @type VpcId: String
|
1636
1631
|
# @param SubnetId: 子网名称
|
1637
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1638
1632
|
# @type SubnetId: String
|
1639
1633
|
# @param PayMode: 付费类型,"hour", "prepay"
|
1640
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1641
1634
|
# @type PayMode: String
|
1642
1635
|
# @param CreateTime: 创建时间
|
1643
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1644
1636
|
# @type CreateTime: String
|
1645
1637
|
# @param ExpireTime: 过期时间
|
1646
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1647
1638
|
# @type ExpireTime: String
|
1648
1639
|
# @param MasterSummary: 数据节点描述信息
|
1649
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1650
1640
|
# @type MasterSummary: :class:`Tencentcloud::Cdwch.v20200915.models.NodesSummary`
|
1651
1641
|
# @param CommonSummary: zookeeper节点描述信息
|
1652
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1653
1642
|
# @type CommonSummary: :class:`Tencentcloud::Cdwch.v20200915.models.NodesSummary`
|
1654
1643
|
# @param HA: 高可用,“true" "false"
|
1655
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1656
1644
|
# @type HA: String
|
1657
1645
|
# @param AccessInfo: 访问地址,例如 "10.0.0.1:9000"
|
1658
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1659
1646
|
# @type AccessInfo: String
|
1660
1647
|
# @param Id: 记录ID,数值型
|
1661
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1662
1648
|
# @type Id: Integer
|
1663
1649
|
# @param RegionId: regionId, 表示地域
|
1664
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1665
1650
|
# @type RegionId: Integer
|
1666
1651
|
# @param ZoneDesc: 可用区说明,例如 "广州二区"
|
1667
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1668
1652
|
# @type ZoneDesc: String
|
1669
1653
|
# @param FlowMsg: 错误流程说明信息
|
1670
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1671
1654
|
# @type FlowMsg: String
|
1672
1655
|
# @param StatusDesc: 状态描述,例如“运行中”等
|
1673
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1674
1656
|
# @type StatusDesc: String
|
1675
1657
|
# @param RenewFlag: 自动续费标记
|
1676
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1677
1658
|
# @type RenewFlag: Boolean
|
1678
1659
|
# @param Tags: 标签列表
|
1679
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1680
1660
|
# @type Tags: Array
|
1681
1661
|
# @param Monitor: 监控信息
|
1682
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1683
1662
|
# @type Monitor: String
|
1684
1663
|
# @param HasClsTopic: 是否开通日志
|
1685
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1686
1664
|
# @type HasClsTopic: Boolean
|
1687
1665
|
# @param ClsTopicId: 日志主题ID
|
1688
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1689
1666
|
# @type ClsTopicId: String
|
1690
1667
|
# @param ClsLogSetId: 日志集ID
|
1691
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1692
1668
|
# @type ClsLogSetId: String
|
1693
1669
|
# @param EnableXMLConfig: 是否支持xml配置管理
|
1694
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1695
1670
|
# @type EnableXMLConfig: Integer
|
1696
1671
|
# @param RegionDesc: 区域
|
1697
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1698
1672
|
# @type RegionDesc: String
|
1699
1673
|
# @param Eip: 弹性网卡地址
|
1700
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1701
1674
|
# @type Eip: String
|
1702
1675
|
# @param CosMoveFactor: 冷热分层系数
|
1703
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1704
1676
|
# @type CosMoveFactor: Integer
|
1705
1677
|
# @param Kind: external/local/yunti
|
1706
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1707
1678
|
# @type Kind: String
|
1708
1679
|
# @param IsElastic: 是否弹性ck
|
1709
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1710
1680
|
# @type IsElastic: Boolean
|
1711
1681
|
# @param InstanceStateInfo: 集群详细状态
|
1712
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1713
1682
|
# @type InstanceStateInfo: :class:`Tencentcloud::Cdwch.v20200915.models.InstanceStateInfo`
|
1714
1683
|
# @param HAZk: ZK高可用
|
1715
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1716
1684
|
# @type HAZk: Boolean
|
1717
1685
|
# @param MountDiskType: 挂载盘,默认0:没有类型;1:裸盘;2:lvm
|
1718
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1719
1686
|
# @type MountDiskType: Integer
|
1720
|
-
# @param CHProxyVip:
|
1721
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1687
|
+
# @param CHProxyVip: chproxy连接ip
|
1722
1688
|
# @type CHProxyVip: String
|
1723
1689
|
# @param CosBucketName: cos buket的名字
|
1724
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1725
1690
|
# @type CosBucketName: String
|
1726
1691
|
# @param CanAttachCbs: 是否可以挂载云盘
|
1727
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1728
1692
|
# @type CanAttachCbs: Boolean
|
1729
1693
|
# @param CanAttachCbsLvm: 是否可以挂载云盘阵列
|
1730
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1731
1694
|
# @type CanAttachCbsLvm: Boolean
|
1732
1695
|
# @param CanAttachCos: 是否可以挂载cos
|
1733
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1734
1696
|
# @type CanAttachCos: Boolean
|
1735
1697
|
# @param Components: 服务信息
|
1736
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1737
1698
|
# @type Components: Array
|
1738
1699
|
# @param UpgradeVersions: 可升级的内核版本
|
1739
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1740
1700
|
# @type UpgradeVersions: String
|
1741
1701
|
# @param EsIndexId: ex-index
|
1742
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1743
1702
|
# @type EsIndexId: String
|
1744
1703
|
# @param EsIndexUsername: username
|
1745
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1746
1704
|
# @type EsIndexUsername: String
|
1747
1705
|
# @param EsIndexPassword: password
|
1748
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1749
1706
|
# @type EsIndexPassword: String
|
1750
1707
|
# @param HasEsIndex: true
|
1751
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1752
1708
|
# @type HasEsIndex: Boolean
|
1753
1709
|
# @param IsSecondaryZone: true
|
1754
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1755
1710
|
# @type IsSecondaryZone: Boolean
|
1756
1711
|
# @param SecondaryZoneInfo: desc
|
1757
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1758
1712
|
# @type SecondaryZoneInfo: String
|
1759
1713
|
# @param ClickHouseKeeper: 是否clickhouse-keeper
|
1760
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1761
1714
|
# @type ClickHouseKeeper: Boolean
|
1762
1715
|
# @param Details: 实例扩展信息
|
1763
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1764
1716
|
# @type Details: :class:`Tencentcloud::Cdwch.v20200915.models.InstanceDetail`
|
1765
1717
|
# @param IsWhiteSGs: 安全组白名单
|
1766
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1767
1718
|
# @type IsWhiteSGs: Boolean
|
1768
1719
|
# @param BindSGs: 绑定的安全组
|
1769
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1770
1720
|
# @type BindSGs: Array
|
1771
1721
|
# @param HasPublicCloudClb: 是否开启公网clb
|
1772
1722
|
# @type HasPublicCloudClb: Boolean
|
@@ -1931,22 +1881,16 @@ module TencentCloud
|
|
1931
1881
|
# @param NodeGroups: 节点所属的分组信息
|
1932
1882
|
# @type NodeGroups: Array
|
1933
1883
|
# @param Rip: VPC IP
|
1934
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1935
1884
|
# @type Rip: String
|
1936
1885
|
# @param IsCHProxy: ture的时候表示该节点上部署了chproxy进程
|
1937
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1938
1886
|
# @type IsCHProxy: Boolean
|
1939
1887
|
# @param Status: 节点状态
|
1940
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1941
1888
|
# @type Status: String
|
1942
1889
|
# @param UUID: 节点uuid
|
1943
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1944
1890
|
# @type UUID: String
|
1945
1891
|
# @param Zone: 区
|
1946
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1947
1892
|
# @type Zone: String
|
1948
1893
|
# @param ZoneDesc: 区描述
|
1949
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1950
1894
|
# @type ZoneDesc: String
|
1951
1895
|
# @param RealResourceId: 真实资源id
|
1952
1896
|
# @type RealResourceId: String
|
@@ -2000,31 +1944,22 @@ module TencentCloud
|
|
2000
1944
|
# 集群状态抽象后的结构体
|
2001
1945
|
class InstanceStateInfo < TencentCloud::Common::AbstractModel
|
2002
1946
|
# @param InstanceState: 集群状态,例如:Serving
|
2003
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2004
1947
|
# @type InstanceState: String
|
2005
1948
|
# @param FlowCreateTime: 集群操作创建时间
|
2006
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2007
1949
|
# @type FlowCreateTime: String
|
2008
1950
|
# @param FlowName: 集群操作名称
|
2009
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2010
1951
|
# @type FlowName: String
|
2011
1952
|
# @param FlowProgress: 集群操作进度
|
2012
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2013
1953
|
# @type FlowProgress: Integer
|
2014
1954
|
# @param InstanceStateDesc: 集群状态描述,例如:运行中
|
2015
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2016
1955
|
# @type InstanceStateDesc: String
|
2017
1956
|
# @param FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
2018
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2019
1957
|
# @type FlowMsg: String
|
2020
1958
|
# @param ProcessName: 当前步骤的名称,例如:”购买资源中“
|
2021
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2022
1959
|
# @type ProcessName: String
|
2023
1960
|
# @param RequestId: 请求id
|
2024
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2025
1961
|
# @type RequestId: String
|
2026
1962
|
# @param ProcessSubName: 流程的二级名称
|
2027
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2028
1963
|
# @type ProcessSubName: String
|
2029
1964
|
|
2030
1965
|
attr_accessor :InstanceState, :FlowCreateTime, :FlowName, :FlowProgress, :InstanceStateDesc, :FlowMsg, :ProcessName, :RequestId, :ProcessSubName
|
@@ -2199,7 +2134,6 @@ module TencentCloud
|
|
2199
2134
|
# ModifyInstanceKeyValConfigs返回参数结构体
|
2200
2135
|
class ModifyInstanceKeyValConfigsResponse < TencentCloud::Common::AbstractModel
|
2201
2136
|
# @param ErrorMsg: 错误信息
|
2202
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2203
2137
|
# @type ErrorMsg: String
|
2204
2138
|
# @param FlowId: ID
|
2205
2139
|
# @type FlowId: Integer
|
@@ -2321,25 +2255,18 @@ module TencentCloud
|
|
2321
2255
|
# @param DiskDesc: 磁盘描述
|
2322
2256
|
# @type DiskDesc: String
|
2323
2257
|
# @param AttachCBSSpec: 挂载云盘信息
|
2324
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2325
2258
|
# @type AttachCBSSpec: :class:`Tencentcloud::Cdwch.v20200915.models.AttachCBSSpec`
|
2326
2259
|
# @param SubProductType: 子产品类型
|
2327
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2328
2260
|
# @type SubProductType: String
|
2329
2261
|
# @param SpecCore: 规格对应的核数
|
2330
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2331
2262
|
# @type SpecCore: Integer
|
2332
2263
|
# @param SpecMemory: 规格对应的内存大小
|
2333
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2334
2264
|
# @type SpecMemory: Integer
|
2335
2265
|
# @param DiskCount: 磁盘的数量
|
2336
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2337
2266
|
# @type DiskCount: Integer
|
2338
2267
|
# @param MaxDiskSize: 磁盘的最大大小
|
2339
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2340
2268
|
# @type MaxDiskSize: Integer
|
2341
2269
|
# @param Encrypt: 是否为加密云盘
|
2342
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2343
2270
|
# @type Encrypt: Integer
|
2344
2271
|
|
2345
2272
|
attr_accessor :Spec, :NodeSize, :Core, :Memory, :Disk, :DiskType, :DiskDesc, :AttachCBSSpec, :SubProductType, :SpecCore, :SpecMemory, :DiskCount, :MaxDiskSize, :Encrypt
|
@@ -2485,13 +2412,10 @@ module TencentCloud
|
|
2485
2412
|
# ResizeDisk返回参数结构体
|
2486
2413
|
class ResizeDiskResponse < TencentCloud::Common::AbstractModel
|
2487
2414
|
# @param FlowId: 流程ID
|
2488
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2489
2415
|
# @type FlowId: String
|
2490
2416
|
# @param InstanceId: 实例ID
|
2491
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2492
2417
|
# @type InstanceId: String
|
2493
2418
|
# @param ErrorMsg: 错误信息
|
2494
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2495
2419
|
# @type ErrorMsg: String
|
2496
2420
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2497
2421
|
# @type RequestId: String
|
@@ -2530,16 +2454,12 @@ module TencentCloud
|
|
2530
2454
|
# @param MaxNodeSize: 最大节点数目限制
|
2531
2455
|
# @type MaxNodeSize: Integer
|
2532
2456
|
# @param Available: 是否可用,false代表售罄
|
2533
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2534
2457
|
# @type Available: Boolean
|
2535
2458
|
# @param ComputeSpecDesc: 规格描述信息
|
2536
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2537
2459
|
# @type ComputeSpecDesc: String
|
2538
2460
|
# @param DisplayName: 规格名
|
2539
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2540
2461
|
# @type DisplayName: String
|
2541
2462
|
# @param InstanceQuota: 库存数
|
2542
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2543
2463
|
# @type InstanceQuota: Integer
|
2544
2464
|
|
2545
2465
|
attr_accessor :Name, :Cpu, :Mem, :Type, :SystemDisk, :DataDisk, :MaxNodeSize, :Available, :ComputeSpecDesc, :DisplayName, :InstanceQuota
|
@@ -2614,13 +2534,10 @@ module TencentCloud
|
|
2614
2534
|
# ScaleCNOutUpInstance返回参数结构体
|
2615
2535
|
class ScaleCNOutUpInstanceResponse < TencentCloud::Common::AbstractModel
|
2616
2536
|
# @param FlowId: 流程ID
|
2617
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2618
2537
|
# @type FlowId: String
|
2619
2538
|
# @param InstanceId: 实例ID
|
2620
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2621
2539
|
# @type InstanceId: String
|
2622
2540
|
# @param ErrorMsg: 错误信息
|
2623
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2624
2541
|
# @type ErrorMsg: String
|
2625
2542
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2626
2543
|
# @type RequestId: String
|
@@ -2686,13 +2603,10 @@ module TencentCloud
|
|
2686
2603
|
# ScaleOutInstance返回参数结构体
|
2687
2604
|
class ScaleOutInstanceResponse < TencentCloud::Common::AbstractModel
|
2688
2605
|
# @param FlowId: 流程ID
|
2689
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2690
2606
|
# @type FlowId: String
|
2691
2607
|
# @param InstanceId: 实例ID
|
2692
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2693
2608
|
# @type InstanceId: String
|
2694
2609
|
# @param ErrorMsg: 错误信息
|
2695
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2696
2610
|
# @type ErrorMsg: String
|
2697
2611
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2698
2612
|
# @type RequestId: String
|
@@ -2745,13 +2659,10 @@ module TencentCloud
|
|
2745
2659
|
# ScaleUpInstance返回参数结构体
|
2746
2660
|
class ScaleUpInstanceResponse < TencentCloud::Common::AbstractModel
|
2747
2661
|
# @param FlowId: 流程ID
|
2748
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2749
2662
|
# @type FlowId: String
|
2750
2663
|
# @param InstanceId: 实例ID
|
2751
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2752
2664
|
# @type InstanceId: String
|
2753
2665
|
# @param ErrorMsg: 错误信息
|
2754
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2755
2666
|
# @type ErrorMsg: String
|
2756
2667
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2757
2668
|
# @type RequestId: String
|
@@ -2776,7 +2687,6 @@ module TencentCloud
|
|
2776
2687
|
# 策略详情
|
2777
2688
|
class ScheduleStrategy < TencentCloud::Common::AbstractModel
|
2778
2689
|
# @param CosBucketName: 备份桶名称
|
2779
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2780
2690
|
# @type CosBucketName: String
|
2781
2691
|
# @param RetainDays: 备份保留天数
|
2782
2692
|
# @type RetainDays: Integer
|
@@ -2787,7 +2697,6 @@ module TencentCloud
|
|
2787
2697
|
# @param ScheduleId: 策略id
|
2788
2698
|
# @type ScheduleId: Integer
|
2789
2699
|
# @param NextBackupTime: 下次备份时间
|
2790
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2791
2700
|
# @type NextBackupTime: String
|
2792
2701
|
|
2793
2702
|
attr_accessor :CosBucketName, :RetainDays, :WeekDays, :ExecuteHour, :ScheduleId, :NextBackupTime
|
@@ -2838,16 +2747,12 @@ module TencentCloud
|
|
2838
2747
|
# 副可用区详情
|
2839
2748
|
class SecondaryZoneInfo < TencentCloud::Common::AbstractModel
|
2840
2749
|
# @param SecondaryZone: 副可用区
|
2841
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2842
2750
|
# @type SecondaryZone: String
|
2843
2751
|
# @param SecondarySubnet: 可用区可用的子网id
|
2844
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2845
2752
|
# @type SecondarySubnet: String
|
2846
2753
|
# @param UserIpNum: 可用区可用的子网可用ip的数量
|
2847
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2848
2754
|
# @type UserIpNum: String
|
2849
2755
|
# @param SecondaryUserSubnetIPNum: 可用区可用的子网可用ip的数量
|
2850
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2851
2756
|
# @type SecondaryUserSubnetIPNum: Integer
|
2852
2757
|
|
2853
2758
|
attr_accessor :SecondaryZone, :SecondarySubnet, :UserIpNum, :SecondaryUserSubnetIPNum
|
@@ -2870,10 +2775,8 @@ module TencentCloud
|
|
2870
2775
|
# 服务详细信息描述。
|
2871
2776
|
class ServiceInfo < TencentCloud::Common::AbstractModel
|
2872
2777
|
# @param Name: 服务名称
|
2873
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2874
2778
|
# @type Name: String
|
2875
2779
|
# @param Version: 服务的版本
|
2876
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2877
2780
|
# @type Version: String
|
2878
2781
|
|
2879
2782
|
attr_accessor :Name, :Version
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdwch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1025
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|