tencentcloud-sdk-cdwch 3.0.1024 → 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 -81
- 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,6 +133,8 @@ 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
|
|
@@ -487,10 +495,8 @@ module TencentCloud
|
|
487
495
|
# CreateInstanceNew返回参数结构体
|
488
496
|
class CreateInstanceNewResponse < TencentCloud::Common::AbstractModel
|
489
497
|
# @param FlowId: 流程ID
|
490
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
491
498
|
# @type FlowId: String
|
492
499
|
# @param InstanceId: 实例ID
|
493
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
494
500
|
# @type InstanceId: String
|
495
501
|
# @param ErrorMsg: 错误信息
|
496
502
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -519,11 +525,9 @@ module TencentCloud
|
|
519
525
|
class DatabasePrivilegeInfo < TencentCloud::Common::AbstractModel
|
520
526
|
# @param DatabaseName: 数据库名称
|
521
527
|
# @type DatabaseName: String
|
522
|
-
# @param DatabasePrivileges:
|
523
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
528
|
+
# @param DatabasePrivileges: 库表权限,SELECT、INSERT_ALL、ALTER、TRUNCATE、DROP_TABLE、CREATE_TABLE、DROP_DATABASE
|
524
529
|
# @type DatabasePrivileges: Array
|
525
|
-
# @param TablePrivilegeList:
|
526
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
530
|
+
# @param TablePrivilegeList: 库下面的表权限
|
527
531
|
# @type TablePrivilegeList: Array
|
528
532
|
|
529
533
|
attr_accessor :DatabaseName, :DatabasePrivileges, :TablePrivilegeList
|
@@ -670,15 +674,20 @@ module TencentCloud
|
|
670
674
|
# DescribeBackUpJob返回参数结构体
|
671
675
|
class DescribeBackUpJobResponse < TencentCloud::Common::AbstractModel
|
672
676
|
# @param BackUpJobs: 任务列表
|
673
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
674
677
|
# @type BackUpJobs: Array
|
678
|
+
# @param ErrorMsg: 错误描述
|
679
|
+
# @type ErrorMsg: String
|
680
|
+
# @param TotalCount: 数量
|
681
|
+
# @type TotalCount: Integer
|
675
682
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
676
683
|
# @type RequestId: String
|
677
684
|
|
678
|
-
attr_accessor :BackUpJobs, :RequestId
|
685
|
+
attr_accessor :BackUpJobs, :ErrorMsg, :TotalCount, :RequestId
|
679
686
|
|
680
|
-
def initialize(backupjobs=nil, requestid=nil)
|
687
|
+
def initialize(backupjobs=nil, errormsg=nil, totalcount=nil, requestid=nil)
|
681
688
|
@BackUpJobs = backupjobs
|
689
|
+
@ErrorMsg = errormsg
|
690
|
+
@TotalCount = totalcount
|
682
691
|
@RequestId = requestid
|
683
692
|
end
|
684
693
|
|
@@ -691,6 +700,8 @@ module TencentCloud
|
|
691
700
|
@BackUpJobs << backupjobdisplay_tmp
|
692
701
|
end
|
693
702
|
end
|
703
|
+
@ErrorMsg = params['ErrorMsg']
|
704
|
+
@TotalCount = params['TotalCount']
|
694
705
|
@RequestId = params['RequestId']
|
695
706
|
end
|
696
707
|
end
|
@@ -788,13 +799,16 @@ module TencentCloud
|
|
788
799
|
class DescribeBackUpTablesResponse < TencentCloud::Common::AbstractModel
|
789
800
|
# @param AvailableTables: 可备份表列表
|
790
801
|
# @type AvailableTables: Array
|
802
|
+
# @param ErrorMsg: 错误描述
|
803
|
+
# @type ErrorMsg: String
|
791
804
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
792
805
|
# @type RequestId: String
|
793
806
|
|
794
|
-
attr_accessor :AvailableTables, :RequestId
|
807
|
+
attr_accessor :AvailableTables, :ErrorMsg, :RequestId
|
795
808
|
|
796
|
-
def initialize(availabletables=nil, requestid=nil)
|
809
|
+
def initialize(availabletables=nil, errormsg=nil, requestid=nil)
|
797
810
|
@AvailableTables = availabletables
|
811
|
+
@ErrorMsg = errormsg
|
798
812
|
@RequestId = requestid
|
799
813
|
end
|
800
814
|
|
@@ -807,6 +821,7 @@ module TencentCloud
|
|
807
821
|
@AvailableTables << backuptablecontent_tmp
|
808
822
|
end
|
809
823
|
end
|
824
|
+
@ErrorMsg = params['ErrorMsg']
|
810
825
|
@RequestId = params['RequestId']
|
811
826
|
end
|
812
827
|
end
|
@@ -1204,32 +1219,33 @@ module TencentCloud
|
|
1204
1219
|
# @param InstanceState: 集群状态,例如:Serving
|
1205
1220
|
# @type InstanceState: String
|
1206
1221
|
# @param FlowCreateTime: 集群操作创建时间
|
1207
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1208
1222
|
# @type FlowCreateTime: String
|
1209
1223
|
# @param FlowName: 集群操作名称
|
1210
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1211
1224
|
# @type FlowName: String
|
1212
1225
|
# @param FlowProgress: 集群操作进度
|
1213
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1214
1226
|
# @type FlowProgress: Float
|
1215
1227
|
# @param InstanceStateDesc: 集群状态描述,例如:运行中
|
1216
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1217
1228
|
# @type InstanceStateDesc: String
|
1218
1229
|
# @param FlowMsg: 集群流程错误信息,例如:“创建失败,资源不足”
|
1219
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1220
1230
|
# @type FlowMsg: String
|
1231
|
+
# @param ProcessName: 当前步骤的名称,例如:”购买资源中“
|
1232
|
+
# @type ProcessName: String
|
1233
|
+
# @param ProcessSubName: 当前步骤的名称,例如:”购买资源中“
|
1234
|
+
# @type ProcessSubName: String
|
1221
1235
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1222
1236
|
# @type RequestId: String
|
1223
1237
|
|
1224
|
-
attr_accessor :InstanceState, :FlowCreateTime, :FlowName, :FlowProgress, :InstanceStateDesc, :FlowMsg, :RequestId
|
1238
|
+
attr_accessor :InstanceState, :FlowCreateTime, :FlowName, :FlowProgress, :InstanceStateDesc, :FlowMsg, :ProcessName, :ProcessSubName, :RequestId
|
1225
1239
|
|
1226
|
-
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)
|
1227
1241
|
@InstanceState = instancestate
|
1228
1242
|
@FlowCreateTime = flowcreatetime
|
1229
1243
|
@FlowName = flowname
|
1230
1244
|
@FlowProgress = flowprogress
|
1231
1245
|
@InstanceStateDesc = instancestatedesc
|
1232
1246
|
@FlowMsg = flowmsg
|
1247
|
+
@ProcessName = processname
|
1248
|
+
@ProcessSubName = processsubname
|
1233
1249
|
@RequestId = requestid
|
1234
1250
|
end
|
1235
1251
|
|
@@ -1240,6 +1256,8 @@ module TencentCloud
|
|
1240
1256
|
@FlowProgress = params['FlowProgress']
|
1241
1257
|
@InstanceStateDesc = params['InstanceStateDesc']
|
1242
1258
|
@FlowMsg = params['FlowMsg']
|
1259
|
+
@ProcessName = params['ProcessName']
|
1260
|
+
@ProcessSubName = params['ProcessSubName']
|
1243
1261
|
@RequestId = params['RequestId']
|
1244
1262
|
end
|
1245
1263
|
end
|
@@ -1357,7 +1375,6 @@ module TencentCloud
|
|
1357
1375
|
# @param DataSpec: 数据节点规格描述
|
1358
1376
|
# @type DataSpec: Array
|
1359
1377
|
# @param AttachCBSSpec: 云盘列表
|
1360
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1361
1378
|
# @type AttachCBSSpec: Array
|
1362
1379
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1363
1380
|
# @type RequestId: String
|
@@ -1595,163 +1612,111 @@ module TencentCloud
|
|
1595
1612
|
# 实例描述信息
|
1596
1613
|
class InstanceInfo < TencentCloud::Common::AbstractModel
|
1597
1614
|
# @param InstanceId: 集群实例ID, "cdw-xxxx" 字符串类型
|
1598
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1599
1615
|
# @type InstanceId: String
|
1600
1616
|
# @param InstanceName: 集群实例名称
|
1601
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1602
1617
|
# @type InstanceName: String
|
1603
1618
|
# @param Status: 状态,
|
1604
1619
|
# Init 创建中; Serving 运行中;
|
1605
1620
|
# Deleted已销毁;Deleting 销毁中;
|
1606
1621
|
# Modify 集群变更中;
|
1607
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1608
1622
|
# @type Status: String
|
1609
1623
|
# @param Version: 版本
|
1610
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1611
1624
|
# @type Version: String
|
1612
1625
|
# @param Region: 地域, ap-guangzhou
|
1613
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1614
1626
|
# @type Region: String
|
1615
1627
|
# @param Zone: 可用区, ap-guangzhou-3
|
1616
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1617
1628
|
# @type Zone: String
|
1618
1629
|
# @param VpcId: 私有网络名称
|
1619
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1620
1630
|
# @type VpcId: String
|
1621
1631
|
# @param SubnetId: 子网名称
|
1622
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1623
1632
|
# @type SubnetId: String
|
1624
1633
|
# @param PayMode: 付费类型,"hour", "prepay"
|
1625
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1626
1634
|
# @type PayMode: String
|
1627
1635
|
# @param CreateTime: 创建时间
|
1628
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1629
1636
|
# @type CreateTime: String
|
1630
1637
|
# @param ExpireTime: 过期时间
|
1631
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1632
1638
|
# @type ExpireTime: String
|
1633
1639
|
# @param MasterSummary: 数据节点描述信息
|
1634
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1635
1640
|
# @type MasterSummary: :class:`Tencentcloud::Cdwch.v20200915.models.NodesSummary`
|
1636
1641
|
# @param CommonSummary: zookeeper节点描述信息
|
1637
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1638
1642
|
# @type CommonSummary: :class:`Tencentcloud::Cdwch.v20200915.models.NodesSummary`
|
1639
1643
|
# @param HA: 高可用,“true" "false"
|
1640
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1641
1644
|
# @type HA: String
|
1642
1645
|
# @param AccessInfo: 访问地址,例如 "10.0.0.1:9000"
|
1643
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1644
1646
|
# @type AccessInfo: String
|
1645
1647
|
# @param Id: 记录ID,数值型
|
1646
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1647
1648
|
# @type Id: Integer
|
1648
1649
|
# @param RegionId: regionId, 表示地域
|
1649
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1650
1650
|
# @type RegionId: Integer
|
1651
1651
|
# @param ZoneDesc: 可用区说明,例如 "广州二区"
|
1652
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1653
1652
|
# @type ZoneDesc: String
|
1654
1653
|
# @param FlowMsg: 错误流程说明信息
|
1655
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1656
1654
|
# @type FlowMsg: String
|
1657
1655
|
# @param StatusDesc: 状态描述,例如“运行中”等
|
1658
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1659
1656
|
# @type StatusDesc: String
|
1660
1657
|
# @param RenewFlag: 自动续费标记
|
1661
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1662
1658
|
# @type RenewFlag: Boolean
|
1663
1659
|
# @param Tags: 标签列表
|
1664
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1665
1660
|
# @type Tags: Array
|
1666
1661
|
# @param Monitor: 监控信息
|
1667
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1668
1662
|
# @type Monitor: String
|
1669
1663
|
# @param HasClsTopic: 是否开通日志
|
1670
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1671
1664
|
# @type HasClsTopic: Boolean
|
1672
1665
|
# @param ClsTopicId: 日志主题ID
|
1673
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1674
1666
|
# @type ClsTopicId: String
|
1675
1667
|
# @param ClsLogSetId: 日志集ID
|
1676
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1677
1668
|
# @type ClsLogSetId: String
|
1678
1669
|
# @param EnableXMLConfig: 是否支持xml配置管理
|
1679
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1680
1670
|
# @type EnableXMLConfig: Integer
|
1681
1671
|
# @param RegionDesc: 区域
|
1682
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1683
1672
|
# @type RegionDesc: String
|
1684
1673
|
# @param Eip: 弹性网卡地址
|
1685
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1686
1674
|
# @type Eip: String
|
1687
1675
|
# @param CosMoveFactor: 冷热分层系数
|
1688
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1689
1676
|
# @type CosMoveFactor: Integer
|
1690
1677
|
# @param Kind: external/local/yunti
|
1691
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1692
1678
|
# @type Kind: String
|
1693
1679
|
# @param IsElastic: 是否弹性ck
|
1694
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1695
1680
|
# @type IsElastic: Boolean
|
1696
1681
|
# @param InstanceStateInfo: 集群详细状态
|
1697
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1698
1682
|
# @type InstanceStateInfo: :class:`Tencentcloud::Cdwch.v20200915.models.InstanceStateInfo`
|
1699
1683
|
# @param HAZk: ZK高可用
|
1700
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1701
1684
|
# @type HAZk: Boolean
|
1702
1685
|
# @param MountDiskType: 挂载盘,默认0:没有类型;1:裸盘;2:lvm
|
1703
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1704
1686
|
# @type MountDiskType: Integer
|
1705
|
-
# @param CHProxyVip:
|
1706
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1687
|
+
# @param CHProxyVip: chproxy连接ip
|
1707
1688
|
# @type CHProxyVip: String
|
1708
1689
|
# @param CosBucketName: cos buket的名字
|
1709
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1710
1690
|
# @type CosBucketName: String
|
1711
1691
|
# @param CanAttachCbs: 是否可以挂载云盘
|
1712
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1713
1692
|
# @type CanAttachCbs: Boolean
|
1714
1693
|
# @param CanAttachCbsLvm: 是否可以挂载云盘阵列
|
1715
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1716
1694
|
# @type CanAttachCbsLvm: Boolean
|
1717
1695
|
# @param CanAttachCos: 是否可以挂载cos
|
1718
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1719
1696
|
# @type CanAttachCos: Boolean
|
1720
1697
|
# @param Components: 服务信息
|
1721
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1722
1698
|
# @type Components: Array
|
1723
1699
|
# @param UpgradeVersions: 可升级的内核版本
|
1724
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1725
1700
|
# @type UpgradeVersions: String
|
1726
1701
|
# @param EsIndexId: ex-index
|
1727
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1728
1702
|
# @type EsIndexId: String
|
1729
1703
|
# @param EsIndexUsername: username
|
1730
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1731
1704
|
# @type EsIndexUsername: String
|
1732
1705
|
# @param EsIndexPassword: password
|
1733
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1734
1706
|
# @type EsIndexPassword: String
|
1735
1707
|
# @param HasEsIndex: true
|
1736
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1737
1708
|
# @type HasEsIndex: Boolean
|
1738
1709
|
# @param IsSecondaryZone: true
|
1739
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1740
1710
|
# @type IsSecondaryZone: Boolean
|
1741
1711
|
# @param SecondaryZoneInfo: desc
|
1742
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1743
1712
|
# @type SecondaryZoneInfo: String
|
1744
1713
|
# @param ClickHouseKeeper: 是否clickhouse-keeper
|
1745
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1746
1714
|
# @type ClickHouseKeeper: Boolean
|
1747
1715
|
# @param Details: 实例扩展信息
|
1748
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1749
1716
|
# @type Details: :class:`Tencentcloud::Cdwch.v20200915.models.InstanceDetail`
|
1750
1717
|
# @param IsWhiteSGs: 安全组白名单
|
1751
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1752
1718
|
# @type IsWhiteSGs: Boolean
|
1753
1719
|
# @param BindSGs: 绑定的安全组
|
1754
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1755
1720
|
# @type BindSGs: Array
|
1756
1721
|
# @param HasPublicCloudClb: 是否开启公网clb
|
1757
1722
|
# @type HasPublicCloudClb: Boolean
|
@@ -2290,25 +2255,18 @@ module TencentCloud
|
|
2290
2255
|
# @param DiskDesc: 磁盘描述
|
2291
2256
|
# @type DiskDesc: String
|
2292
2257
|
# @param AttachCBSSpec: 挂载云盘信息
|
2293
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2294
2258
|
# @type AttachCBSSpec: :class:`Tencentcloud::Cdwch.v20200915.models.AttachCBSSpec`
|
2295
2259
|
# @param SubProductType: 子产品类型
|
2296
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2297
2260
|
# @type SubProductType: String
|
2298
2261
|
# @param SpecCore: 规格对应的核数
|
2299
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2300
2262
|
# @type SpecCore: Integer
|
2301
2263
|
# @param SpecMemory: 规格对应的内存大小
|
2302
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2303
2264
|
# @type SpecMemory: Integer
|
2304
2265
|
# @param DiskCount: 磁盘的数量
|
2305
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2306
2266
|
# @type DiskCount: Integer
|
2307
2267
|
# @param MaxDiskSize: 磁盘的最大大小
|
2308
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2309
2268
|
# @type MaxDiskSize: Integer
|
2310
2269
|
# @param Encrypt: 是否为加密云盘
|
2311
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
2312
2270
|
# @type Encrypt: Integer
|
2313
2271
|
|
2314
2272
|
attr_accessor :Spec, :NodeSize, :Core, :Memory, :Disk, :DiskType, :DiskDesc, :AttachCBSSpec, :SubProductType, :SpecCore, :SpecMemory, :DiskCount, :MaxDiskSize, :Encrypt
|
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
|