tencentcloud-sdk-cdwpg 3.0.1040 → 3.0.1041

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201230/models.rb +14 -101
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a45796855c5bbfde43fede504e33d78339d4c65d
4
- data.tar.gz: fd6394798f54ddb2ddc737be082ea45f6f7d71fe
3
+ metadata.gz: 89fbcf2150d5ba016529436a167300f77b7cad0a
4
+ data.tar.gz: ecc15be3e93c626203dc0337b1b8005b6d32852e
5
5
  SHA512:
6
- metadata.gz: 220ff8f929785c34e0b5595ba50e6f41f4999748a306c24d80157003850488a6b70d8ca444376cf473c1cf56f549da8c7c14314be80191f785e7a92b1d4fdb46
7
- data.tar.gz: b5166ef14e5da8645f3d11ef5882eeace47e4dd9426c3781544ece1eb42c45047f9a14d6b881ae1556fafe2040dbb10e2533ec50217551d8611fcb1d04701971
6
+ metadata.gz: b41de5ae465160924a055efdb790cc21e2e27004e5bdca8399572167d6ecccca2ef1b3131cd6f9dc77cfd00695a96fc00af45b558ba612845348a833af3656b2
7
+ data.tar.gz: 6334d830f5605d791ce38dad3ee80fae837f2a9845af99eb4c93c5c97f28860bd4dfcd174366b4c922ecc8f478f8393dc52d80b378564e1a34243b4038e78490
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1040
1
+ 3.0.1041
@@ -92,13 +92,10 @@ module TencentCloud
92
92
  # 磁盘信息
93
93
  class CBSSpecInfo < TencentCloud::Common::AbstractModel
94
94
  # @param DiskType: 盘类型
95
- # 注意:此字段可能返回 null,表示取不到有效值。
96
95
  # @type DiskType: String
97
96
  # @param DiskSize: 大小
98
- # 注意:此字段可能返回 null,表示取不到有效值。
99
97
  # @type DiskSize: Integer
100
98
  # @param DiskCount: 个数
101
- # 注意:此字段可能返回 null,表示取不到有效值。
102
99
  # @type DiskCount: Integer
103
100
 
104
101
  attr_accessor :DiskType, :DiskSize, :DiskCount
@@ -150,19 +147,14 @@ module TencentCloud
150
147
  # 计费时间参数
151
148
  class ChargeProperties < TencentCloud::Common::AbstractModel
152
149
  # @param RenewFlag: 1-需要自动续期
153
- # 注意:此字段可能返回 null,表示取不到有效值。
154
150
  # @type RenewFlag: Integer
155
151
  # @param TimeSpan: 订单时间范围
156
- # 注意:此字段可能返回 null,表示取不到有效值。
157
152
  # @type TimeSpan: Integer
158
153
  # @param TimeUnit: 时间单位,一般为h和m
159
- # 注意:此字段可能返回 null,表示取不到有效值。
160
154
  # @type TimeUnit: String
161
155
  # @param PayMode: 计费类型0-按量计费,1-包年包月
162
- # 注意:此字段可能返回 null,表示取不到有效值。
163
156
  # @type PayMode: Integer
164
157
  # @param ChargeType: PREPAID、POSTPAID_BY_HOUR
165
- # 注意:此字段可能返回 null,表示取不到有效值。
166
158
  # @type ChargeType: String
167
159
 
168
160
  attr_accessor :RenewFlag, :TimeSpan, :TimeUnit, :PayMode, :ChargeType
@@ -275,14 +267,16 @@ module TencentCloud
275
267
  # @type AdminPassword: String
276
268
  # @param Resources: 资源信息
277
269
  # @type Resources: Array
278
- # @param Tags: 标签列表
270
+ # @param Tags: 废弃,用TagItems
279
271
  # @type Tags: :class:`Tencentcloud::Cdwpg.v20201230.models.Tag`
280
272
  # @param ProductVersion: 版本
281
273
  # @type ProductVersion: String
274
+ # @param TagItems: 标签列表
275
+ # @type TagItems: Array
282
276
 
283
- attr_accessor :InstanceName, :Zone, :UserVPCId, :UserSubnetId, :ChargeProperties, :AdminPassword, :Resources, :Tags, :ProductVersion
277
+ attr_accessor :InstanceName, :Zone, :UserVPCId, :UserSubnetId, :ChargeProperties, :AdminPassword, :Resources, :Tags, :ProductVersion, :TagItems
284
278
 
285
- def initialize(instancename=nil, zone=nil, uservpcid=nil, usersubnetid=nil, chargeproperties=nil, adminpassword=nil, resources=nil, tags=nil, productversion=nil)
279
+ def initialize(instancename=nil, zone=nil, uservpcid=nil, usersubnetid=nil, chargeproperties=nil, adminpassword=nil, resources=nil, tags=nil, productversion=nil, tagitems=nil)
286
280
  @InstanceName = instancename
287
281
  @Zone = zone
288
282
  @UserVPCId = uservpcid
@@ -292,6 +286,7 @@ module TencentCloud
292
286
  @Resources = resources
293
287
  @Tags = tags
294
288
  @ProductVersion = productversion
289
+ @TagItems = tagitems
295
290
  end
296
291
 
297
292
  def deserialize(params)
@@ -317,6 +312,14 @@ module TencentCloud
317
312
  @Tags.deserialize(params['Tags'])
318
313
  end
319
314
  @ProductVersion = params['ProductVersion']
315
+ unless params['TagItems'].nil?
316
+ @TagItems = []
317
+ params['TagItems'].each do |i|
318
+ tag_tmp = Tag.new
319
+ tag_tmp.deserialize(i)
320
+ @TagItems << tag_tmp
321
+ end
322
+ end
320
323
  end
321
324
  end
322
325
 
@@ -376,10 +379,8 @@ module TencentCloud
376
379
  # DescribeAccounts返回参数结构体
377
380
  class DescribeAccountsResponse < TencentCloud::Common::AbstractModel
378
381
  # @param TotalCount: 实例总数
379
- # 注意:此字段可能返回 null,表示取不到有效值。
380
382
  # @type TotalCount: Integer
381
383
  # @param Accounts: 账号数组
382
- # 注意:此字段可能返回 null,表示取不到有效值。
383
384
  # @type Accounts: Array
384
385
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
385
386
  # @type RequestId: String
@@ -817,7 +818,6 @@ module TencentCloud
817
818
  # 注意:此字段可能返回 null,表示取不到有效值。
818
819
  # @type ProcessName: String
819
820
  # @param BackupStatus: 集群备份任务开启状态
820
- # 注意:此字段可能返回 null,表示取不到有效值。
821
821
  # @type BackupStatus: Integer
822
822
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
823
823
  # @type RequestId: String
@@ -891,7 +891,6 @@ module TencentCloud
891
891
  # DescribeInstances返回参数结构体
892
892
  class DescribeInstancesResponse < TencentCloud::Common::AbstractModel
893
893
  # @param TotalCount: 实例总数
894
- # 注意:此字段可能返回 null,表示取不到有效值。
895
894
  # @type TotalCount: Integer
896
895
  # @param InstancesList: 实例数组
897
896
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -961,7 +960,6 @@ module TencentCloud
961
960
  # DescribeSimpleInstances返回参数结构体
962
961
  class DescribeSimpleInstancesResponse < TencentCloud::Common::AbstractModel
963
962
  # @param TotalCount: 集群列表总数
964
- # 注意:此字段可能返回 null,表示取不到有效值。
965
963
  # @type TotalCount: Integer
966
964
  # @param InstancesList: 集群列表详情
967
965
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1146,10 +1144,8 @@ module TencentCloud
1146
1144
  # DescribeUserHbaConfig返回参数结构体
1147
1145
  class DescribeUserHbaConfigResponse < TencentCloud::Common::AbstractModel
1148
1146
  # @param TotalCount: 实例总数
1149
- # 注意:此字段可能返回 null,表示取不到有效值。
1150
1147
  # @type TotalCount: Integer
1151
1148
  # @param HbaConfigs: hba数组
1152
- # 注意:此字段可能返回 null,表示取不到有效值。
1153
1149
  # @type HbaConfigs: Array
1154
1150
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1155
1151
  # @type RequestId: String
@@ -1219,22 +1215,16 @@ module TencentCloud
1219
1215
  # 磁盘规格
1220
1216
  class DiskSpecPlus < TencentCloud::Common::AbstractModel
1221
1217
  # @param DiskCount: 磁盘个数
1222
- # 注意:此字段可能返回 null,表示取不到有效值。
1223
1218
  # @type DiskCount: Integer
1224
1219
  # @param MaxDiskSize: 磁盘最大值
1225
- # 注意:此字段可能返回 null,表示取不到有效值。
1226
1220
  # @type MaxDiskSize: Integer
1227
1221
  # @param MinDiskSize: 磁盘最小值
1228
- # 注意:此字段可能返回 null,表示取不到有效值。
1229
1222
  # @type MinDiskSize: Integer
1230
1223
  # @param DiskType: 磁盘类型
1231
- # 注意:此字段可能返回 null,表示取不到有效值。
1232
1224
  # @type DiskType: String
1233
1225
  # @param DiskDesc: 磁盘类型详情
1234
- # 注意:此字段可能返回 null,表示取不到有效值。
1235
1226
  # @type DiskDesc: String
1236
1227
  # @param CvmClass: 机型类型
1237
- # 注意:此字段可能返回 null,表示取不到有效值。
1238
1228
  # @type CvmClass: String
1239
1229
 
1240
1230
  attr_accessor :DiskCount, :MaxDiskSize, :MinDiskSize, :DiskType, :DiskDesc, :CvmClass
@@ -1261,16 +1251,12 @@ module TencentCloud
1261
1251
  # 错误日志详细信息
1262
1252
  class ErrorLogDetail < TencentCloud::Common::AbstractModel
1263
1253
  # @param UserName: 用户名称
1264
- # 注意:此字段可能返回 null,表示取不到有效值。
1265
1254
  # @type UserName: String
1266
1255
  # @param Database: 数据库
1267
- # 注意:此字段可能返回 null,表示取不到有效值。
1268
1256
  # @type Database: String
1269
1257
  # @param ErrorTime: 报错时间
1270
- # 注意:此字段可能返回 null,表示取不到有效值。
1271
1258
  # @type ErrorTime: String
1272
1259
  # @param ErrorMessage: 报错信息
1273
- # 注意:此字段可能返回 null,表示取不到有效值。
1274
1260
  # @type ErrorMessage: String
1275
1261
 
1276
1262
  attr_accessor :UserName, :Database, :ErrorTime, :ErrorMessage
@@ -1330,13 +1316,10 @@ module TencentCloud
1330
1316
  # 云原生实例详情
1331
1317
  class InstanceInfo < TencentCloud::Common::AbstractModel
1332
1318
  # @param ID: ID值
1333
- # 注意:此字段可能返回 null,表示取不到有效值。
1334
1319
  # @type ID: Integer
1335
1320
  # @param InstanceType: 内核版本类型
1336
- # 注意:此字段可能返回 null,表示取不到有效值。
1337
1321
  # @type InstanceType: String
1338
1322
  # @param InstanceName: 集群名字
1339
- # 注意:此字段可能返回 null,表示取不到有效值。
1340
1323
  # @type InstanceName: String
1341
1324
  # @param Status: 集群状态
1342
1325
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1351,13 +1334,10 @@ module TencentCloud
1351
1334
  # 注意:此字段可能返回 null,表示取不到有效值。
1352
1335
  # @type InstanceID: String
1353
1336
  # @param CreateTime: 创建时间
1354
- # 注意:此字段可能返回 null,表示取不到有效值。
1355
1337
  # @type CreateTime: String
1356
1338
  # @param Region: 地域
1357
- # 注意:此字段可能返回 null,表示取不到有效值。
1358
1339
  # @type Region: String
1359
1340
  # @param Zone: 地区
1360
- # 注意:此字段可能返回 null,表示取不到有效值。
1361
1341
  # @type Zone: String
1362
1342
  # @param RegionDesc: 地域详情
1363
1343
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1369,16 +1349,12 @@ module TencentCloud
1369
1349
  # 注意:此字段可能返回 null,表示取不到有效值。
1370
1350
  # @type Tags: Array
1371
1351
  # @param Version: 内核版本
1372
- # 注意:此字段可能返回 null,表示取不到有效值。
1373
1352
  # @type Version: String
1374
1353
  # @param Charset: 字符集
1375
- # 注意:此字段可能返回 null,表示取不到有效值。
1376
1354
  # @type Charset: String
1377
1355
  # @param CNNodes: CN节点列表
1378
- # 注意:此字段可能返回 null,表示取不到有效值。
1379
1356
  # @type CNNodes: Array
1380
1357
  # @param DNNodes: DN节点列表
1381
- # 注意:此字段可能返回 null,表示取不到有效值。
1382
1358
  # @type DNNodes: Array
1383
1359
  # @param RegionId: 地域id
1384
1360
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1387,25 +1363,18 @@ module TencentCloud
1387
1363
  # 注意:此字段可能返回 null,表示取不到有效值。
1388
1364
  # @type ZoneId: Integer
1389
1365
  # @param VpcId: 私有网络
1390
- # 注意:此字段可能返回 null,表示取不到有效值。
1391
1366
  # @type VpcId: String
1392
1367
  # @param SubnetId: 子网
1393
- # 注意:此字段可能返回 null,表示取不到有效值。
1394
1368
  # @type SubnetId: String
1395
1369
  # @param ExpireTime: 过期时间
1396
- # 注意:此字段可能返回 null,表示取不到有效值。
1397
1370
  # @type ExpireTime: String
1398
1371
  # @param PayMode: 计费方式
1399
- # 注意:此字段可能返回 null,表示取不到有效值。
1400
1372
  # @type PayMode: String
1401
1373
  # @param RenewFlag: 自动续费
1402
- # 注意:此字段可能返回 null,表示取不到有效值。
1403
1374
  # @type RenewFlag: Boolean
1404
1375
  # @param InstanceId: 集群id
1405
- # 注意:此字段可能返回 null,表示取不到有效值。
1406
1376
  # @type InstanceId: String
1407
1377
  # @param AccessDetails: 访问信息
1408
- # 注意:此字段可能返回 null,表示取不到有效值。
1409
1378
  # @type AccessDetails: Array
1410
1379
 
1411
1380
  attr_accessor :ID, :InstanceType, :InstanceName, :Status, :StatusDesc, :InstanceStateInfo, :InstanceID, :CreateTime, :Region, :Zone, :RegionDesc, :ZoneDesc, :Tags, :Version, :Charset, :CNNodes, :DNNodes, :RegionId, :ZoneId, :VpcId, :SubnetId, :ExpireTime, :PayMode, :RenewFlag, :InstanceId, :AccessDetails
@@ -1527,13 +1496,10 @@ module TencentCloud
1527
1496
  # 集群节点信息
1528
1497
  class InstanceNodeGroup < TencentCloud::Common::AbstractModel
1529
1498
  # @param SpecName: 机型
1530
- # 注意:此字段可能返回 null,表示取不到有效值。
1531
1499
  # @type SpecName: String
1532
1500
  # @param DataDisk: 磁盘信息
1533
- # 注意:此字段可能返回 null,表示取不到有效值。
1534
1501
  # @type DataDisk: :class:`Tencentcloud::Cdwpg.v20201230.models.DiskSpecPlus`
1535
1502
  # @param CvmCount: 机器个数
1536
- # 注意:此字段可能返回 null,表示取不到有效值。
1537
1503
  # @type CvmCount: Integer
1538
1504
 
1539
1505
  attr_accessor :SpecName, :DataDisk, :CvmCount
@@ -1559,16 +1525,12 @@ module TencentCloud
1559
1525
  # @param Id: 操作名称,例如“create_instance"、“scaleout_instance”等
1560
1526
  # @type Id: Integer
1561
1527
  # @param InstanceId: 集群ID
1562
- # 注意:此字段可能返回 null,表示取不到有效值。
1563
1528
  # @type InstanceId: String
1564
1529
  # @param Action: 操作名称描述,例如“创建”,“修改集群名称”等
1565
- # 注意:此字段可能返回 null,表示取不到有效值。
1566
1530
  # @type Action: String
1567
1531
  # @param Status: 状态
1568
- # 注意:此字段可能返回 null,表示取不到有效值。
1569
1532
  # @type Status: Integer
1570
1533
  # @param StartTime: 操作开始时间
1571
- # 注意:此字段可能返回 null,表示取不到有效值。
1572
1534
  # @type StartTime: String
1573
1535
  # @param EndTime: 操作结束时间
1574
1536
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1613,19 +1575,14 @@ module TencentCloud
1613
1575
  # 精简集群信息
1614
1576
  class InstanceSimpleInfoNew < TencentCloud::Common::AbstractModel
1615
1577
  # @param ID: ID
1616
- # 注意:此字段可能返回 null,表示取不到有效值。
1617
1578
  # @type ID: Integer
1618
1579
  # @param InstanceId: 集群Id
1619
- # 注意:此字段可能返回 null,表示取不到有效值。
1620
1580
  # @type InstanceId: String
1621
1581
  # @param InstanceName: 集群名字
1622
- # 注意:此字段可能返回 null,表示取不到有效值。
1623
1582
  # @type InstanceName: String
1624
1583
  # @param Version: 内核版本
1625
- # 注意:此字段可能返回 null,表示取不到有效值。
1626
1584
  # @type Version: String
1627
1585
  # @param Region: 地域
1628
- # 注意:此字段可能返回 null,表示取不到有效值。
1629
1586
  # @type Region: String
1630
1587
  # @param RegionId: 地域Id
1631
1588
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1634,7 +1591,6 @@ module TencentCloud
1634
1591
  # 注意:此字段可能返回 null,表示取不到有效值。
1635
1592
  # @type RegionDesc: String
1636
1593
  # @param Zone: 地区
1637
- # 注意:此字段可能返回 null,表示取不到有效值。
1638
1594
  # @type Zone: String
1639
1595
  # @param ZoneId: 地区id
1640
1596
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1643,25 +1599,19 @@ module TencentCloud
1643
1599
  # 注意:此字段可能返回 null,表示取不到有效值。
1644
1600
  # @type ZoneDesc: String
1645
1601
  # @param VpcId: 私有网络
1646
- # 注意:此字段可能返回 null,表示取不到有效值。
1647
1602
  # @type VpcId: String
1648
1603
  # @param SubnetId: 子网
1649
- # 注意:此字段可能返回 null,表示取不到有效值。
1650
1604
  # @type SubnetId: String
1651
1605
  # @param CreateTime: 开始时间
1652
- # 注意:此字段可能返回 null,表示取不到有效值。
1653
1606
  # @type CreateTime: String
1654
1607
  # @param ExpireTime: 过期时间
1655
- # 注意:此字段可能返回 null,表示取不到有效值。
1656
1608
  # @type ExpireTime: String
1657
1609
  # @param AccessInfo: 访问地址
1658
1610
  # 注意:此字段可能返回 null,表示取不到有效值。
1659
1611
  # @type AccessInfo: String
1660
1612
  # @param PayMode: 计费方式
1661
- # 注意:此字段可能返回 null,表示取不到有效值。
1662
1613
  # @type PayMode: String
1663
1614
  # @param RenewFlag: 自动续费
1664
- # 注意:此字段可能返回 null,表示取不到有效值。
1665
1615
  # @type RenewFlag: Boolean
1666
1616
 
1667
1617
  attr_accessor :ID, :InstanceId, :InstanceName, :Version, :Region, :RegionId, :RegionDesc, :Zone, :ZoneId, :ZoneDesc, :VpcId, :SubnetId, :CreateTime, :ExpireTime, :AccessInfo, :PayMode, :RenewFlag
@@ -1710,7 +1660,6 @@ module TencentCloud
1710
1660
  # 集群状态抽象后的结构体
1711
1661
  class InstanceStateInfo < TencentCloud::Common::AbstractModel
1712
1662
  # @param InstanceState: 集群状态,例如:Serving
1713
- # 注意:此字段可能返回 null,表示取不到有效值。
1714
1663
  # @type InstanceState: String
1715
1664
  # @param FlowCreateTime: 集群操作创建时间
1716
1665
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1882,7 +1831,6 @@ module TencentCloud
1882
1831
  # ModifyUserHba返回参数结构体
1883
1832
  class ModifyUserHbaResponse < TencentCloud::Common::AbstractModel
1884
1833
  # @param TaskId: 任务id
1885
- # 注意:此字段可能返回 null,表示取不到有效值。
1886
1834
  # @type TaskId: Integer
1887
1835
  # @param ErrorMsg: 错误信息
1888
1836
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -2032,16 +1980,12 @@ module TencentCloud
2032
1980
  # ParamDetail 详细
2033
1981
  class ParamDetail < TencentCloud::Common::AbstractModel
2034
1982
  # @param ParamName: 参数名
2035
- # 注意:此字段可能返回 null,表示取不到有效值。
2036
1983
  # @type ParamName: String
2037
1984
  # @param DefaultValue: 默认值
2038
- # 注意:此字段可能返回 null,表示取不到有效值。
2039
1985
  # @type DefaultValue: String
2040
1986
  # @param NeedRestart: 是否需要重启
2041
- # 注意:此字段可能返回 null,表示取不到有效值。
2042
1987
  # @type NeedRestart: Boolean
2043
1988
  # @param RunningValue: 当前运行值
2044
- # 注意:此字段可能返回 null,表示取不到有效值。
2045
1989
  # @type RunningValue: String
2046
1990
  # @param ValueRange: 取值范围
2047
1991
  # @type ValueRange: :class:`Tencentcloud::Cdwpg.v20201230.models.ValueRange`
@@ -2086,16 +2030,12 @@ module TencentCloud
2086
2030
  # ParamItem 信息
2087
2031
  class ParamItem < TencentCloud::Common::AbstractModel
2088
2032
  # @param NodeType: 节点类型, cn/dn
2089
- # 注意:此字段可能返回 null,表示取不到有效值。
2090
2033
  # @type NodeType: String
2091
2034
  # @param NodeName: 节点名
2092
- # 注意:此字段可能返回 null,表示取不到有效值。
2093
2035
  # @type NodeName: String
2094
2036
  # @param TotalCount: 参数个数
2095
- # 注意:此字段可能返回 null,表示取不到有效值。
2096
2037
  # @type TotalCount: Integer
2097
2038
  # @param Details: 参数信息
2098
- # 注意:此字段可能返回 null,表示取不到有效值。
2099
2039
  # @type Details: Array
2100
2040
 
2101
2041
  attr_accessor :NodeType, :NodeName, :TotalCount, :Details
@@ -2125,10 +2065,8 @@ module TencentCloud
2125
2065
  # Range范围
2126
2066
  class Range < TencentCloud::Common::AbstractModel
2127
2067
  # @param Min: 最小值
2128
- # 注意:此字段可能返回 null,表示取不到有效值。
2129
2068
  # @type Min: String
2130
2069
  # @param Max: 最大值
2131
- # 注意:此字段可能返回 null,表示取不到有效值。
2132
2070
  # @type Max: String
2133
2071
 
2134
2072
  attr_accessor :Min, :Max
@@ -2192,16 +2130,12 @@ module TencentCloud
2192
2130
  # 资源信息
2193
2131
  class ResourceInfo < TencentCloud::Common::AbstractModel
2194
2132
  # @param SpecName: 资源名称
2195
- # 注意:此字段可能返回 null,表示取不到有效值。
2196
2133
  # @type SpecName: String
2197
2134
  # @param Count: 资源数
2198
- # 注意:此字段可能返回 null,表示取不到有效值。
2199
2135
  # @type Count: Integer
2200
2136
  # @param DiskSpec: 磁盘信息
2201
- # 注意:此字段可能返回 null,表示取不到有效值。
2202
2137
  # @type DiskSpec: :class:`Tencentcloud::Cdwpg.v20201230.models.CBSSpecInfo`
2203
2138
  # @param Type: 节点类型,cn 或dn
2204
- # 注意:此字段可能返回 null,表示取不到有效值。
2205
2139
  # @type Type: String
2206
2140
 
2207
2141
  attr_accessor :SpecName, :Count, :DiskSpec, :Type
@@ -2434,52 +2368,38 @@ module TencentCloud
2434
2368
  # 集群信息
2435
2369
  class SimpleInstanceInfo < TencentCloud::Common::AbstractModel
2436
2370
  # @param ID: ID
2437
- # 注意:此字段可能返回 null,表示取不到有效值。
2438
2371
  # @type ID: Integer
2439
2372
  # @param InstanceId: 集群Id
2440
- # 注意:此字段可能返回 null,表示取不到有效值。
2441
2373
  # @type InstanceId: String
2442
2374
  # @param InstanceName: 集群名字
2443
- # 注意:此字段可能返回 null,表示取不到有效值。
2444
2375
  # @type InstanceName: String
2445
2376
  # @param Version: 内核版本
2446
- # 注意:此字段可能返回 null,表示取不到有效值。
2447
2377
  # @type Version: String
2448
2378
  # @param Region: 地域
2449
- # 注意:此字段可能返回 null,表示取不到有效值。
2450
2379
  # @type Region: String
2451
2380
  # @param Zone: 地区
2452
- # 注意:此字段可能返回 null,表示取不到有效值。
2453
2381
  # @type Zone: String
2454
2382
  # @param UserVPCID: 私有网络
2455
- # 注意:此字段可能返回 null,表示取不到有效值。
2456
2383
  # @type UserVPCID: String
2457
2384
  # @param UserSubnetID: 子网
2458
- # 注意:此字段可能返回 null,表示取不到有效值。
2459
2385
  # @type UserSubnetID: String
2460
2386
  # @param CreateTime: 开始时间
2461
- # 注意:此字段可能返回 null,表示取不到有效值。
2462
2387
  # @type CreateTime: String
2463
2388
  # @param ExpireTime: 到期时间
2464
- # 注意:此字段可能返回 null,表示取不到有效值。
2465
2389
  # @type ExpireTime: String
2466
2390
  # @param AccessInfo: 访问地址
2467
2391
  # 注意:此字段可能返回 null,表示取不到有效值。
2468
2392
  # @type AccessInfo: String
2469
2393
  # @param RenewFlag: 自动续费开关,0为不自动续费,1为自动续费
2470
- # 注意:此字段可能返回 null,表示取不到有效值。
2471
2394
  # @type RenewFlag: Integer
2472
2395
  # @param ChargeProperties: 计费方式
2473
- # 注意:此字段可能返回 null,表示取不到有效值。
2474
2396
  # @type ChargeProperties: :class:`Tencentcloud::Cdwpg.v20201230.models.ChargeProperties`
2475
2397
  # @param Resources: 资源集合
2476
- # 注意:此字段可能返回 null,表示取不到有效值。
2477
2398
  # @type Resources: Array
2478
2399
  # @param Tags: 标签列表
2479
2400
  # 注意:此字段可能返回 null,表示取不到有效值。
2480
2401
  # @type Tags: Array
2481
2402
  # @param Status: 集群状态
2482
- # 注意:此字段可能返回 null,表示取不到有效值。
2483
2403
  # @type Status: Integer
2484
2404
 
2485
2405
  attr_accessor :ID, :InstanceId, :InstanceName, :Version, :Region, :Zone, :UserVPCID, :UserSubnetID, :CreateTime, :ExpireTime, :AccessInfo, :RenewFlag, :ChargeProperties, :Resources, :Tags, :Status
@@ -2638,22 +2558,17 @@ module TencentCloud
2638
2558
  # 升级信息
2639
2559
  class UpgradeItem < TencentCloud::Common::AbstractModel
2640
2560
  # @param TaskName: 任务名称
2641
- # 注意:此字段可能返回 null,表示取不到有效值。
2642
2561
  # @type TaskName: String
2643
2562
  # @param SourceVersion: 原有内核版本
2644
- # 注意:此字段可能返回 null,表示取不到有效值。
2645
2563
  # @type SourceVersion: String
2646
2564
  # @param TargetVersion: 目标内核版本
2647
- # 注意:此字段可能返回 null,表示取不到有效值。
2648
2565
  # @type TargetVersion: String
2649
2566
  # @param CreateTime: 任务创建时间
2650
- # 注意:此字段可能返回 null,表示取不到有效值。
2651
2567
  # @type CreateTime: String
2652
2568
  # @param EndTime: 任务结束时间
2653
2569
  # 注意:此字段可能返回 null,表示取不到有效值。
2654
2570
  # @type EndTime: String
2655
2571
  # @param Status: 任务完成状态
2656
- # 注意:此字段可能返回 null,表示取不到有效值。
2657
2572
  # @type Status: String
2658
2573
  # @param OperateUin: 操作者
2659
2574
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -2685,10 +2600,8 @@ module TencentCloud
2685
2600
  # ValueRange值
2686
2601
  class ValueRange < TencentCloud::Common::AbstractModel
2687
2602
  # @param Type: 参数类型,可以为 enum,string,section; 其中enum表示枚举,类似: utf8,latin1,gbk; string表示返回的参数值是字符串; section表示返回的参数值是一个取值范围,类似:[4-8]
2688
- # 注意:此字段可能返回 null,表示取不到有效值。
2689
2603
  # @type Type: String
2690
2604
  # @param Range: type 取section的时候,返回的参数值
2691
- # 注意:此字段可能返回 null,表示取不到有效值。
2692
2605
  # @type Range: :class:`Tencentcloud::Cdwpg.v20201230.models.Range`
2693
2606
  # @param Enum: type 取enum的时候,返回参数值
2694
2607
  # 注意:此字段可能返回 null,表示取不到有效值。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdwpg
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1040
4
+ version: 3.0.1041
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-04-14 00:00:00.000000000 Z
11
+ date: 2025-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common