tencentcloud-sdk-cdwpg 3.0.1169 → 3.0.1214
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/v20201230/models.rb +107 -16
- 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: 5921fb4b60d76175e960a140f48f34d0cd0ed4e5
|
|
4
|
+
data.tar.gz: 63d687c3759613a63926b149a3638721ce1c65bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb083bda27107952471f41e8965b915bce73c48a27bdbbfa04d2220c8ed201c3aae1e5843ecb4dae40386d522a77cd1492e835e564b8999eaaf2c1b14dc3864a
|
|
7
|
+
data.tar.gz: ff83c08eabe7ea099cff27f072f0e895c143b9a548e04f3d67fc5c50ac748a383f397a71b258c0c709944da49df6ff0d2b8f95edc5eea3d3e71d6d16e65c823a
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1214
|
data/lib/v20201230/models.rb
CHANGED
|
@@ -269,8 +269,8 @@ module TencentCloud
|
|
|
269
269
|
|
|
270
270
|
attr_accessor :InstanceName, :Zone, :UserVPCId, :UserSubnetId, :ChargeProperties, :AdminPassword, :Resources, :Tags, :ProductVersion, :TagItems
|
|
271
271
|
extend Gem::Deprecate
|
|
272
|
-
deprecate :Tags, :none,
|
|
273
|
-
deprecate :Tags=, :none,
|
|
272
|
+
deprecate :Tags, :none, 2026, 2
|
|
273
|
+
deprecate :Tags=, :none, 2026, 2
|
|
274
274
|
|
|
275
275
|
def initialize(instancename=nil, zone=nil, uservpcid=nil, usersubnetid=nil, chargeproperties=nil, adminpassword=nil, resources=nil, tags=nil, productversion=nil, tagitems=nil)
|
|
276
276
|
@InstanceName = instancename
|
|
@@ -713,14 +713,17 @@ module TencentCloud
|
|
|
713
713
|
# @param Operations: 操作记录具体数据
|
|
714
714
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
715
715
|
# @type Operations: Array
|
|
716
|
+
# @param ErrorMsg: 错误信息
|
|
717
|
+
# @type ErrorMsg: String
|
|
716
718
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
717
719
|
# @type RequestId: String
|
|
718
720
|
|
|
719
|
-
attr_accessor :TotalCount, :Operations, :RequestId
|
|
721
|
+
attr_accessor :TotalCount, :Operations, :ErrorMsg, :RequestId
|
|
720
722
|
|
|
721
|
-
def initialize(totalcount=nil, operations=nil, requestid=nil)
|
|
723
|
+
def initialize(totalcount=nil, operations=nil, errormsg=nil, requestid=nil)
|
|
722
724
|
@TotalCount = totalcount
|
|
723
725
|
@Operations = operations
|
|
726
|
+
@ErrorMsg = errormsg
|
|
724
727
|
@RequestId = requestid
|
|
725
728
|
end
|
|
726
729
|
|
|
@@ -734,6 +737,7 @@ module TencentCloud
|
|
|
734
737
|
@Operations << instanceoperation_tmp
|
|
735
738
|
end
|
|
736
739
|
end
|
|
740
|
+
@ErrorMsg = params['ErrorMsg']
|
|
737
741
|
@RequestId = params['RequestId']
|
|
738
742
|
end
|
|
739
743
|
end
|
|
@@ -758,13 +762,16 @@ module TencentCloud
|
|
|
758
762
|
class DescribeInstanceResponse < TencentCloud::Common::AbstractModel
|
|
759
763
|
# @param InstanceInfo: 实例描述信息
|
|
760
764
|
# @type InstanceInfo: :class:`Tencentcloud::Cdwpg.v20201230.models.InstanceInfo`
|
|
765
|
+
# @param ErrorMsg: 错误信息
|
|
766
|
+
# @type ErrorMsg: String
|
|
761
767
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
762
768
|
# @type RequestId: String
|
|
763
769
|
|
|
764
|
-
attr_accessor :InstanceInfo, :RequestId
|
|
770
|
+
attr_accessor :InstanceInfo, :ErrorMsg, :RequestId
|
|
765
771
|
|
|
766
|
-
def initialize(instanceinfo=nil, requestid=nil)
|
|
772
|
+
def initialize(instanceinfo=nil, errormsg=nil, requestid=nil)
|
|
767
773
|
@InstanceInfo = instanceinfo
|
|
774
|
+
@ErrorMsg = errormsg
|
|
768
775
|
@RequestId = requestid
|
|
769
776
|
end
|
|
770
777
|
|
|
@@ -773,6 +780,7 @@ module TencentCloud
|
|
|
773
780
|
@InstanceInfo = InstanceInfo.new
|
|
774
781
|
@InstanceInfo.deserialize(params['InstanceInfo'])
|
|
775
782
|
end
|
|
783
|
+
@ErrorMsg = params['ErrorMsg']
|
|
776
784
|
@RequestId = params['RequestId']
|
|
777
785
|
end
|
|
778
786
|
end
|
|
@@ -811,12 +819,14 @@ module TencentCloud
|
|
|
811
819
|
# @type ProcessName: String
|
|
812
820
|
# @param BackupStatus: 集群备份任务开启状态
|
|
813
821
|
# @type BackupStatus: Integer
|
|
822
|
+
# @param BackupOpenStatus: 集群备份任务开启状态2
|
|
823
|
+
# @type BackupOpenStatus: Integer
|
|
814
824
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
815
825
|
# @type RequestId: String
|
|
816
826
|
|
|
817
|
-
attr_accessor :InstanceState, :FlowCreateTime, :FlowName, :FlowProgress, :InstanceStateDesc, :FlowMsg, :ProcessName, :BackupStatus, :RequestId
|
|
827
|
+
attr_accessor :InstanceState, :FlowCreateTime, :FlowName, :FlowProgress, :InstanceStateDesc, :FlowMsg, :ProcessName, :BackupStatus, :BackupOpenStatus, :RequestId
|
|
818
828
|
|
|
819
|
-
def initialize(instancestate=nil, flowcreatetime=nil, flowname=nil, flowprogress=nil, instancestatedesc=nil, flowmsg=nil, processname=nil, backupstatus=nil, requestid=nil)
|
|
829
|
+
def initialize(instancestate=nil, flowcreatetime=nil, flowname=nil, flowprogress=nil, instancestatedesc=nil, flowmsg=nil, processname=nil, backupstatus=nil, backupopenstatus=nil, requestid=nil)
|
|
820
830
|
@InstanceState = instancestate
|
|
821
831
|
@FlowCreateTime = flowcreatetime
|
|
822
832
|
@FlowName = flowname
|
|
@@ -825,6 +835,7 @@ module TencentCloud
|
|
|
825
835
|
@FlowMsg = flowmsg
|
|
826
836
|
@ProcessName = processname
|
|
827
837
|
@BackupStatus = backupstatus
|
|
838
|
+
@BackupOpenStatus = backupopenstatus
|
|
828
839
|
@RequestId = requestid
|
|
829
840
|
end
|
|
830
841
|
|
|
@@ -837,6 +848,7 @@ module TencentCloud
|
|
|
837
848
|
@FlowMsg = params['FlowMsg']
|
|
838
849
|
@ProcessName = params['ProcessName']
|
|
839
850
|
@BackupStatus = params['BackupStatus']
|
|
851
|
+
@BackupOpenStatus = params['BackupOpenStatus']
|
|
840
852
|
@RequestId = params['RequestId']
|
|
841
853
|
end
|
|
842
854
|
end
|
|
@@ -1097,14 +1109,17 @@ module TencentCloud
|
|
|
1097
1109
|
# @type UpgradeItems: Array
|
|
1098
1110
|
# @param TotalCount: 升级记录总数
|
|
1099
1111
|
# @type TotalCount: String
|
|
1112
|
+
# @param ErrorMsg: 错误信息
|
|
1113
|
+
# @type ErrorMsg: String
|
|
1100
1114
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1101
1115
|
# @type RequestId: String
|
|
1102
1116
|
|
|
1103
|
-
attr_accessor :UpgradeItems, :TotalCount, :RequestId
|
|
1117
|
+
attr_accessor :UpgradeItems, :TotalCount, :ErrorMsg, :RequestId
|
|
1104
1118
|
|
|
1105
|
-
def initialize(upgradeitems=nil, totalcount=nil, requestid=nil)
|
|
1119
|
+
def initialize(upgradeitems=nil, totalcount=nil, errormsg=nil, requestid=nil)
|
|
1106
1120
|
@UpgradeItems = upgradeitems
|
|
1107
1121
|
@TotalCount = totalcount
|
|
1122
|
+
@ErrorMsg = errormsg
|
|
1108
1123
|
@RequestId = requestid
|
|
1109
1124
|
end
|
|
1110
1125
|
|
|
@@ -1118,6 +1133,7 @@ module TencentCloud
|
|
|
1118
1133
|
end
|
|
1119
1134
|
end
|
|
1120
1135
|
@TotalCount = params['TotalCount']
|
|
1136
|
+
@ErrorMsg = params['ErrorMsg']
|
|
1121
1137
|
@RequestId = params['RequestId']
|
|
1122
1138
|
end
|
|
1123
1139
|
end
|
|
@@ -1364,10 +1380,20 @@ module TencentCloud
|
|
|
1364
1380
|
# @type InstanceId: String
|
|
1365
1381
|
# @param AccessDetails: 访问信息
|
|
1366
1382
|
# @type AccessDetails: Array
|
|
1383
|
+
# @param IsAz: 集群是否跨az,为0不跨az;为1跨az
|
|
1384
|
+
# @type IsAz: Integer
|
|
1385
|
+
# @param SecondaryZone: 备可用区
|
|
1386
|
+
# @type SecondaryZone: String
|
|
1387
|
+
# @param SecondarySubnet: 备子网
|
|
1388
|
+
# @type SecondarySubnet: String
|
|
1389
|
+
# @param AccessInfo: 访问信息
|
|
1390
|
+
# @type AccessInfo: String
|
|
1391
|
+
# @param GTMNodes: GTM节点信息
|
|
1392
|
+
# @type GTMNodes: Array
|
|
1367
1393
|
|
|
1368
|
-
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
|
|
1394
|
+
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, :IsAz, :SecondaryZone, :SecondarySubnet, :AccessInfo, :GTMNodes
|
|
1369
1395
|
|
|
1370
|
-
def initialize(id=nil, instancetype=nil, instancename=nil, status=nil, statusdesc=nil, instancestateinfo=nil, instanceid=nil, createtime=nil, region=nil, zone=nil, regiondesc=nil, zonedesc=nil, tags=nil, version=nil, charset=nil, cnnodes=nil, dnnodes=nil, regionid=nil, zoneid=nil, vpcid=nil, subnetid=nil, expiretime=nil, paymode=nil, renewflag=nil, instanceid=nil, accessdetails=nil)
|
|
1396
|
+
def initialize(id=nil, instancetype=nil, instancename=nil, status=nil, statusdesc=nil, instancestateinfo=nil, instanceid=nil, createtime=nil, region=nil, zone=nil, regiondesc=nil, zonedesc=nil, tags=nil, version=nil, charset=nil, cnnodes=nil, dnnodes=nil, regionid=nil, zoneid=nil, vpcid=nil, subnetid=nil, expiretime=nil, paymode=nil, renewflag=nil, instanceid=nil, accessdetails=nil, isaz=nil, secondaryzone=nil, secondarysubnet=nil, accessinfo=nil, gtmnodes=nil)
|
|
1371
1397
|
@ID = id
|
|
1372
1398
|
@InstanceType = instancetype
|
|
1373
1399
|
@InstanceName = instancename
|
|
@@ -1394,6 +1420,11 @@ module TencentCloud
|
|
|
1394
1420
|
@RenewFlag = renewflag
|
|
1395
1421
|
@InstanceId = instanceid
|
|
1396
1422
|
@AccessDetails = accessdetails
|
|
1423
|
+
@IsAz = isaz
|
|
1424
|
+
@SecondaryZone = secondaryzone
|
|
1425
|
+
@SecondarySubnet = secondarysubnet
|
|
1426
|
+
@AccessInfo = accessinfo
|
|
1427
|
+
@GTMNodes = gtmnodes
|
|
1397
1428
|
end
|
|
1398
1429
|
|
|
1399
1430
|
def deserialize(params)
|
|
@@ -1454,6 +1485,18 @@ module TencentCloud
|
|
|
1454
1485
|
@AccessDetails << accessinfo_tmp
|
|
1455
1486
|
end
|
|
1456
1487
|
end
|
|
1488
|
+
@IsAz = params['IsAz']
|
|
1489
|
+
@SecondaryZone = params['SecondaryZone']
|
|
1490
|
+
@SecondarySubnet = params['SecondarySubnet']
|
|
1491
|
+
@AccessInfo = params['AccessInfo']
|
|
1492
|
+
unless params['GTMNodes'].nil?
|
|
1493
|
+
@GTMNodes = []
|
|
1494
|
+
params['GTMNodes'].each do |i|
|
|
1495
|
+
instancenodegroup_tmp = InstanceNodeGroup.new
|
|
1496
|
+
instancenodegroup_tmp.deserialize(i)
|
|
1497
|
+
@GTMNodes << instancenodegroup_tmp
|
|
1498
|
+
end
|
|
1499
|
+
end
|
|
1457
1500
|
end
|
|
1458
1501
|
end
|
|
1459
1502
|
|
|
@@ -1465,19 +1508,63 @@ module TencentCloud
|
|
|
1465
1508
|
# @type NodeType: String
|
|
1466
1509
|
# @param NodeIp: ip
|
|
1467
1510
|
# @type NodeIp: String
|
|
1511
|
+
# @param PrivateNetworkIp: 私有ip
|
|
1512
|
+
# @type PrivateNetworkIp: String
|
|
1513
|
+
# @param NodeRole: 节点角色
|
|
1514
|
+
# @type NodeRole: String
|
|
1515
|
+
# @param NodeName: 节点名称
|
|
1516
|
+
# @type NodeName: String
|
|
1517
|
+
# @param SpecName: 规格名称
|
|
1518
|
+
# @type SpecName: String
|
|
1519
|
+
# @param Cpu: cpu
|
|
1520
|
+
# @type Cpu: Integer
|
|
1521
|
+
# @param Memory: 内存
|
|
1522
|
+
# @type Memory: Integer
|
|
1523
|
+
# @param DataDiskCount: 数据盘数量
|
|
1524
|
+
# @type DataDiskCount: Integer
|
|
1525
|
+
# @param DataDiskSize: 数据盘大小
|
|
1526
|
+
# @type DataDiskSize: Integer
|
|
1527
|
+
# @param DataDiskType: 数据盘类型
|
|
1528
|
+
# @type DataDiskType: String
|
|
1529
|
+
# @param UUID: 唯一uuid
|
|
1530
|
+
# @type UUID: String
|
|
1531
|
+
# @param Zone: 区域
|
|
1532
|
+
# @type Zone: String
|
|
1468
1533
|
|
|
1469
|
-
attr_accessor :NodeId, :NodeType, :NodeIp
|
|
1534
|
+
attr_accessor :NodeId, :NodeType, :NodeIp, :PrivateNetworkIp, :NodeRole, :NodeName, :SpecName, :Cpu, :Memory, :DataDiskCount, :DataDiskSize, :DataDiskType, :UUID, :Zone
|
|
1470
1535
|
|
|
1471
|
-
def initialize(nodeid=nil, nodetype=nil, nodeip=nil)
|
|
1536
|
+
def initialize(nodeid=nil, nodetype=nil, nodeip=nil, privatenetworkip=nil, noderole=nil, nodename=nil, specname=nil, cpu=nil, memory=nil, datadiskcount=nil, datadisksize=nil, datadisktype=nil, uuid=nil, zone=nil)
|
|
1472
1537
|
@NodeId = nodeid
|
|
1473
1538
|
@NodeType = nodetype
|
|
1474
1539
|
@NodeIp = nodeip
|
|
1540
|
+
@PrivateNetworkIp = privatenetworkip
|
|
1541
|
+
@NodeRole = noderole
|
|
1542
|
+
@NodeName = nodename
|
|
1543
|
+
@SpecName = specname
|
|
1544
|
+
@Cpu = cpu
|
|
1545
|
+
@Memory = memory
|
|
1546
|
+
@DataDiskCount = datadiskcount
|
|
1547
|
+
@DataDiskSize = datadisksize
|
|
1548
|
+
@DataDiskType = datadisktype
|
|
1549
|
+
@UUID = uuid
|
|
1550
|
+
@Zone = zone
|
|
1475
1551
|
end
|
|
1476
1552
|
|
|
1477
1553
|
def deserialize(params)
|
|
1478
1554
|
@NodeId = params['NodeId']
|
|
1479
1555
|
@NodeType = params['NodeType']
|
|
1480
1556
|
@NodeIp = params['NodeIp']
|
|
1557
|
+
@PrivateNetworkIp = params['PrivateNetworkIp']
|
|
1558
|
+
@NodeRole = params['NodeRole']
|
|
1559
|
+
@NodeName = params['NodeName']
|
|
1560
|
+
@SpecName = params['SpecName']
|
|
1561
|
+
@Cpu = params['Cpu']
|
|
1562
|
+
@Memory = params['Memory']
|
|
1563
|
+
@DataDiskCount = params['DataDiskCount']
|
|
1564
|
+
@DataDiskSize = params['DataDiskSize']
|
|
1565
|
+
@DataDiskType = params['DataDiskType']
|
|
1566
|
+
@UUID = params['UUID']
|
|
1567
|
+
@Zone = params['Zone']
|
|
1481
1568
|
end
|
|
1482
1569
|
end
|
|
1483
1570
|
|
|
@@ -1947,10 +2034,12 @@ module TencentCloud
|
|
|
1947
2034
|
# @type ShortDesc: String
|
|
1948
2035
|
# @param ParameterName: 参数名
|
|
1949
2036
|
# @type ParameterName: String
|
|
2037
|
+
# @param LatestValue: 最新修改值
|
|
2038
|
+
# @type LatestValue: String
|
|
1950
2039
|
|
|
1951
|
-
attr_accessor :ParamName, :DefaultValue, :NeedRestart, :RunningValue, :ValueRange, :Unit, :ShortDesc, :ParameterName
|
|
2040
|
+
attr_accessor :ParamName, :DefaultValue, :NeedRestart, :RunningValue, :ValueRange, :Unit, :ShortDesc, :ParameterName, :LatestValue
|
|
1952
2041
|
|
|
1953
|
-
def initialize(paramname=nil, defaultvalue=nil, needrestart=nil, runningvalue=nil, valuerange=nil, unit=nil, shortdesc=nil, parametername=nil)
|
|
2042
|
+
def initialize(paramname=nil, defaultvalue=nil, needrestart=nil, runningvalue=nil, valuerange=nil, unit=nil, shortdesc=nil, parametername=nil, latestvalue=nil)
|
|
1954
2043
|
@ParamName = paramname
|
|
1955
2044
|
@DefaultValue = defaultvalue
|
|
1956
2045
|
@NeedRestart = needrestart
|
|
@@ -1959,6 +2048,7 @@ module TencentCloud
|
|
|
1959
2048
|
@Unit = unit
|
|
1960
2049
|
@ShortDesc = shortdesc
|
|
1961
2050
|
@ParameterName = parametername
|
|
2051
|
+
@LatestValue = latestvalue
|
|
1962
2052
|
end
|
|
1963
2053
|
|
|
1964
2054
|
def deserialize(params)
|
|
@@ -1973,6 +2063,7 @@ module TencentCloud
|
|
|
1973
2063
|
@Unit = params['Unit']
|
|
1974
2064
|
@ShortDesc = params['ShortDesc']
|
|
1975
2065
|
@ParameterName = params['ParameterName']
|
|
2066
|
+
@LatestValue = params['LatestValue']
|
|
1976
2067
|
end
|
|
1977
2068
|
end
|
|
1978
2069
|
|
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.
|
|
4
|
+
version: 3.0.1214
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|