tencentcloud-sdk-cdc 3.0.514 → 3.0.516
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/v20201214/models.rb +138 -2
- 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: 0626138a59e61b7407dfa0cc56b408294af45b5d
|
4
|
+
data.tar.gz: a4457cf2bbee19d38b109278903e73c2431f6791
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e68fd5cef311c0cce70d093683c98e6940bf09976d11669639597ea6224a07d779afe42225cbd9f48abee1fecf74a8b9fe6de41f1f0c3b80ccdab80dc856c875
|
7
|
+
data.tar.gz: bbf2092ac026a1b4eef4fab7599556e9a2dc6fe9ec8dc712b5497582f7797b313a9474dabb16f1600e366eba94b6b3ec68d7664445da459c9b3737d1de6f58e6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.516
|
data/lib/v20201214/models.rb
CHANGED
@@ -1050,20 +1050,53 @@ module TencentCloud
|
|
1050
1050
|
# @type CvmCount: Integer
|
1051
1051
|
# @param HostCount: 宿主机数量
|
1052
1052
|
# @type HostCount: Integer
|
1053
|
+
# @param VpnConnectionState: vpn通道状态
|
1054
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1055
|
+
# @type VpnConnectionState: String
|
1056
|
+
# @param VpngwBandwidthData: vpn网关监控数据
|
1057
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1058
|
+
# @type VpngwBandwidthData: :class:`Tencentcloud::Cdc.v20201214.models.VpngwBandwidthData`
|
1059
|
+
# @param LocalNetInfo: 本地网关信息
|
1060
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1061
|
+
# @type LocalNetInfo: :class:`Tencentcloud::Cdc.v20201214.models.LocalNetInfo`
|
1062
|
+
# @param VpnConnectionBandwidthData: vpn网关通道监控数据
|
1063
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1064
|
+
# @type VpnConnectionBandwidthData: Array
|
1053
1065
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1054
1066
|
# @type RequestId: String
|
1055
1067
|
|
1056
|
-
attr_accessor :CvmCount, :HostCount, :RequestId
|
1068
|
+
attr_accessor :CvmCount, :HostCount, :VpnConnectionState, :VpngwBandwidthData, :LocalNetInfo, :VpnConnectionBandwidthData, :RequestId
|
1057
1069
|
|
1058
|
-
def initialize(cvmcount=nil, hostcount=nil, requestid=nil)
|
1070
|
+
def initialize(cvmcount=nil, hostcount=nil, vpnconnectionstate=nil, vpngwbandwidthdata=nil, localnetinfo=nil, vpnconnectionbandwidthdata=nil, requestid=nil)
|
1059
1071
|
@CvmCount = cvmcount
|
1060
1072
|
@HostCount = hostcount
|
1073
|
+
@VpnConnectionState = vpnconnectionstate
|
1074
|
+
@VpngwBandwidthData = vpngwbandwidthdata
|
1075
|
+
@LocalNetInfo = localnetinfo
|
1076
|
+
@VpnConnectionBandwidthData = vpnconnectionbandwidthdata
|
1061
1077
|
@RequestId = requestid
|
1062
1078
|
end
|
1063
1079
|
|
1064
1080
|
def deserialize(params)
|
1065
1081
|
@CvmCount = params['CvmCount']
|
1066
1082
|
@HostCount = params['HostCount']
|
1083
|
+
@VpnConnectionState = params['VpnConnectionState']
|
1084
|
+
unless params['VpngwBandwidthData'].nil?
|
1085
|
+
@VpngwBandwidthData = VpngwBandwidthData.new
|
1086
|
+
@VpngwBandwidthData.deserialize(params['VpngwBandwidthData'])
|
1087
|
+
end
|
1088
|
+
unless params['LocalNetInfo'].nil?
|
1089
|
+
@LocalNetInfo = LocalNetInfo.new
|
1090
|
+
@LocalNetInfo.deserialize(params['LocalNetInfo'])
|
1091
|
+
end
|
1092
|
+
unless params['VpnConnectionBandwidthData'].nil?
|
1093
|
+
@VpnConnectionBandwidthData = []
|
1094
|
+
params['VpnConnectionBandwidthData'].each do |i|
|
1095
|
+
vpngwbandwidthdata_tmp = VpngwBandwidthData.new
|
1096
|
+
vpngwbandwidthdata_tmp.deserialize(i)
|
1097
|
+
@VpnConnectionBandwidthData << vpngwbandwidthdata_tmp
|
1098
|
+
end
|
1099
|
+
end
|
1067
1100
|
@RequestId = params['RequestId']
|
1068
1101
|
end
|
1069
1102
|
end
|
@@ -1452,6 +1485,60 @@ module TencentCloud
|
|
1452
1485
|
end
|
1453
1486
|
end
|
1454
1487
|
|
1488
|
+
# 入带宽数据
|
1489
|
+
class InBandwidth < TencentCloud::Common::AbstractModel
|
1490
|
+
# @param Timestamps: 时间戳
|
1491
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1492
|
+
# @type Timestamps: Array
|
1493
|
+
# @param Values: 时间对应的值
|
1494
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1495
|
+
# @type Values: Array
|
1496
|
+
|
1497
|
+
attr_accessor :Timestamps, :Values
|
1498
|
+
|
1499
|
+
def initialize(timestamps=nil, values=nil)
|
1500
|
+
@Timestamps = timestamps
|
1501
|
+
@Values = values
|
1502
|
+
end
|
1503
|
+
|
1504
|
+
def deserialize(params)
|
1505
|
+
@Timestamps = params['Timestamps']
|
1506
|
+
@Values = params['Values']
|
1507
|
+
end
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
# 本地网络信息
|
1511
|
+
class LocalNetInfo < TencentCloud::Common::AbstractModel
|
1512
|
+
# @param Protocol: 协议
|
1513
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1514
|
+
# @type Protocol: String
|
1515
|
+
# @param VpcId: 网络id
|
1516
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1517
|
+
# @type VpcId: String
|
1518
|
+
# @param BGPRoute: 路由信息
|
1519
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1520
|
+
# @type BGPRoute: String
|
1521
|
+
# @param LocalIp: 本地IP
|
1522
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1523
|
+
# @type LocalIp: String
|
1524
|
+
|
1525
|
+
attr_accessor :Protocol, :VpcId, :BGPRoute, :LocalIp
|
1526
|
+
|
1527
|
+
def initialize(protocol=nil, vpcid=nil, bgproute=nil, localip=nil)
|
1528
|
+
@Protocol = protocol
|
1529
|
+
@VpcId = vpcid
|
1530
|
+
@BGPRoute = bgproute
|
1531
|
+
@LocalIp = localip
|
1532
|
+
end
|
1533
|
+
|
1534
|
+
def deserialize(params)
|
1535
|
+
@Protocol = params['Protocol']
|
1536
|
+
@VpcId = params['VpcId']
|
1537
|
+
@BGPRoute = params['BGPRoute']
|
1538
|
+
@LocalIp = params['LocalIp']
|
1539
|
+
end
|
1540
|
+
end
|
1541
|
+
|
1455
1542
|
# ModifyDedicatedClusterInfo请求参数结构体
|
1456
1543
|
class ModifyDedicatedClusterInfoRequest < TencentCloud::Common::AbstractModel
|
1457
1544
|
# @param DedicatedClusterId: 本地专用集群ID
|
@@ -1700,6 +1787,28 @@ module TencentCloud
|
|
1700
1787
|
end
|
1701
1788
|
end
|
1702
1789
|
|
1790
|
+
# 出带宽数据。
|
1791
|
+
class OutBandwidth < TencentCloud::Common::AbstractModel
|
1792
|
+
# @param Timestamps: 时间戳
|
1793
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1794
|
+
# @type Timestamps: Array
|
1795
|
+
# @param Values: 对应时间的值
|
1796
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1797
|
+
# @type Values: Array
|
1798
|
+
|
1799
|
+
attr_accessor :Timestamps, :Values
|
1800
|
+
|
1801
|
+
def initialize(timestamps=nil, values=nil)
|
1802
|
+
@Timestamps = timestamps
|
1803
|
+
@Values = values
|
1804
|
+
end
|
1805
|
+
|
1806
|
+
def deserialize(params)
|
1807
|
+
@Timestamps = params['Timestamps']
|
1808
|
+
@Values = params['Values']
|
1809
|
+
end
|
1810
|
+
end
|
1811
|
+
|
1703
1812
|
# RegionZoneInfo信息
|
1704
1813
|
class RegionZoneInfo < TencentCloud::Common::AbstractModel
|
1705
1814
|
# @param RegionId: Region id
|
@@ -1872,6 +1981,33 @@ module TencentCloud
|
|
1872
1981
|
end
|
1873
1982
|
end
|
1874
1983
|
|
1984
|
+
# VPN网关的流量监控数据。
|
1985
|
+
class VpngwBandwidthData < TencentCloud::Common::AbstractModel
|
1986
|
+
# @param OutBandwidth: 出带宽流量
|
1987
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1988
|
+
# @type OutBandwidth: :class:`Tencentcloud::Cdc.v20201214.models.OutBandwidth`
|
1989
|
+
# @param InBandwidth: 入带宽流量
|
1990
|
+
# @type InBandwidth: :class:`Tencentcloud::Cdc.v20201214.models.InBandwidth`
|
1991
|
+
|
1992
|
+
attr_accessor :OutBandwidth, :InBandwidth
|
1993
|
+
|
1994
|
+
def initialize(outbandwidth=nil, inbandwidth=nil)
|
1995
|
+
@OutBandwidth = outbandwidth
|
1996
|
+
@InBandwidth = inbandwidth
|
1997
|
+
end
|
1998
|
+
|
1999
|
+
def deserialize(params)
|
2000
|
+
unless params['OutBandwidth'].nil?
|
2001
|
+
@OutBandwidth = OutBandwidth.new
|
2002
|
+
@OutBandwidth.deserialize(params['OutBandwidth'])
|
2003
|
+
end
|
2004
|
+
unless params['InBandwidth'].nil?
|
2005
|
+
@InBandwidth = InBandwidth.new
|
2006
|
+
@InBandwidth.deserialize(params['InBandwidth'])
|
2007
|
+
end
|
2008
|
+
end
|
2009
|
+
end
|
2010
|
+
|
1875
2011
|
# 可用区信息
|
1876
2012
|
class ZoneInfo < TencentCloud::Common::AbstractModel
|
1877
2013
|
# @param Zone: 可用区名称
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.516
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|