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