tencentcloud-sdk-vpc 3.0.667 → 3.0.669
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/v20170312/models.rb +110 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d361df4e8d3a67fb5339dd87ba74e5042738081
|
4
|
+
data.tar.gz: 8ca5fe2710d255d2616698acc11083fce7df217e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89c29e1fcd20546578246110f9924aa931e9a171e9fc4f41ac21349baaea820a47dc3e7d9bb73c821ddca6e62ff637c0f3890e27603b89df44fd049af5802dae
|
7
|
+
data.tar.gz: 63ced199f4996b89cb68f0b6b2eeda655abd7561a34fb6ea5e2da6b74cbefda830dffa551c2bd2d9dfb3351ec481cb0a14d927c35c44a13520fe587acacd2fcc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.669
|
data/lib/v20170312/models.rb
CHANGED
@@ -11553,16 +11553,31 @@ module TencentCloud
|
|
11553
11553
|
|
11554
11554
|
# DescribeVpcPeeringConnections返回参数结构体
|
11555
11555
|
class DescribeVpcPeeringConnectionsResponse < TencentCloud::Common::AbstractModel
|
11556
|
+
# @param TotalCount: 满足条件的对等连接实例个数。
|
11557
|
+
# @type TotalCount: Integer
|
11558
|
+
# @param PeerConnectionSet: 对等连接实例列表。
|
11559
|
+
# @type PeerConnectionSet: Array
|
11556
11560
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
11557
11561
|
# @type RequestId: String
|
11558
11562
|
|
11559
|
-
attr_accessor :RequestId
|
11563
|
+
attr_accessor :TotalCount, :PeerConnectionSet, :RequestId
|
11560
11564
|
|
11561
|
-
def initialize(requestid=nil)
|
11565
|
+
def initialize(totalcount=nil, peerconnectionset=nil, requestid=nil)
|
11566
|
+
@TotalCount = totalcount
|
11567
|
+
@PeerConnectionSet = peerconnectionset
|
11562
11568
|
@RequestId = requestid
|
11563
11569
|
end
|
11564
11570
|
|
11565
11571
|
def deserialize(params)
|
11572
|
+
@TotalCount = params['TotalCount']
|
11573
|
+
unless params['PeerConnectionSet'].nil?
|
11574
|
+
@PeerConnectionSet = []
|
11575
|
+
params['PeerConnectionSet'].each do |i|
|
11576
|
+
peerconnection_tmp = PeerConnection.new
|
11577
|
+
peerconnection_tmp.deserialize(i)
|
11578
|
+
@PeerConnectionSet << peerconnection_tmp
|
11579
|
+
end
|
11580
|
+
end
|
11566
11581
|
@RequestId = params['RequestId']
|
11567
11582
|
end
|
11568
11583
|
end
|
@@ -17901,6 +17916,99 @@ module TencentCloud
|
|
17901
17916
|
end
|
17902
17917
|
end
|
17903
17918
|
|
17919
|
+
# 对等连接实例信息。
|
17920
|
+
class PeerConnection < TencentCloud::Common::AbstractModel
|
17921
|
+
# @param SourceVpcId: 本端VPC唯一ID。
|
17922
|
+
# @type SourceVpcId: String
|
17923
|
+
# @param PeerVpcId: 对端VPC唯一ID。
|
17924
|
+
# @type PeerVpcId: String
|
17925
|
+
# @param PeeringConnectionId: 对等连接唯一ID。
|
17926
|
+
# @type PeeringConnectionId: String
|
17927
|
+
# @param PeeringConnectionName: 对等连接名称。
|
17928
|
+
# @type PeeringConnectionName: String
|
17929
|
+
# @param State: 对等连接状态,PENDING,投放中;ACTIVE,使用中;REJECTED,已拒绝‘DELETED,已删除;FAILED,失败;EXPIRED,已过期;ISOLATED,隔离中。
|
17930
|
+
# @type State: String
|
17931
|
+
# @param IsNgw: 是否是新控制器,true: 是NewAfc;false:不是。
|
17932
|
+
# @type IsNgw: Boolean
|
17933
|
+
# @param Bandwidth: 对等连接带宽值。
|
17934
|
+
# @type Bandwidth: Integer
|
17935
|
+
# @param SourceRegion: 本端地域。
|
17936
|
+
# @type SourceRegion: String
|
17937
|
+
# @param DestinationRegion: 对端地域。
|
17938
|
+
# @type DestinationRegion: String
|
17939
|
+
# @param CreateTime: 创建时间。
|
17940
|
+
# @type CreateTime: String
|
17941
|
+
# @param AppId: 本端APPID。
|
17942
|
+
# @type AppId: Integer
|
17943
|
+
# @param PeerAppId: 对端APPID。
|
17944
|
+
# @type PeerAppId: Integer
|
17945
|
+
# @param ChargeType: 计费类型,POSTPAID_BY_DAY_MAX:日峰值计费;POSTPAID_BY_MONTH_95:月95计费。
|
17946
|
+
# @type ChargeType: String
|
17947
|
+
# @param SourceUin: 本端UIN。
|
17948
|
+
# @type SourceUin: Integer
|
17949
|
+
# @param DestinationUin: 对端UIN。
|
17950
|
+
# @type DestinationUin: Integer
|
17951
|
+
# @param TagSet: 资源标签数据。
|
17952
|
+
# @type TagSet: Array
|
17953
|
+
# @param QosLevel: 服务分级:PT、AU、AG。
|
17954
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17955
|
+
# @type QosLevel: String
|
17956
|
+
# @param Type: 互通类型,VPC_PEER:VPC间互通;VPC_BM_PEER:VPC与黑石网络互通。
|
17957
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
17958
|
+
# @type Type: String
|
17959
|
+
|
17960
|
+
attr_accessor :SourceVpcId, :PeerVpcId, :PeeringConnectionId, :PeeringConnectionName, :State, :IsNgw, :Bandwidth, :SourceRegion, :DestinationRegion, :CreateTime, :AppId, :PeerAppId, :ChargeType, :SourceUin, :DestinationUin, :TagSet, :QosLevel, :Type
|
17961
|
+
|
17962
|
+
def initialize(sourcevpcid=nil, peervpcid=nil, peeringconnectionid=nil, peeringconnectionname=nil, state=nil, isngw=nil, bandwidth=nil, sourceregion=nil, destinationregion=nil, createtime=nil, appid=nil, peerappid=nil, chargetype=nil, sourceuin=nil, destinationuin=nil, tagset=nil, qoslevel=nil, type=nil)
|
17963
|
+
@SourceVpcId = sourcevpcid
|
17964
|
+
@PeerVpcId = peervpcid
|
17965
|
+
@PeeringConnectionId = peeringconnectionid
|
17966
|
+
@PeeringConnectionName = peeringconnectionname
|
17967
|
+
@State = state
|
17968
|
+
@IsNgw = isngw
|
17969
|
+
@Bandwidth = bandwidth
|
17970
|
+
@SourceRegion = sourceregion
|
17971
|
+
@DestinationRegion = destinationregion
|
17972
|
+
@CreateTime = createtime
|
17973
|
+
@AppId = appid
|
17974
|
+
@PeerAppId = peerappid
|
17975
|
+
@ChargeType = chargetype
|
17976
|
+
@SourceUin = sourceuin
|
17977
|
+
@DestinationUin = destinationuin
|
17978
|
+
@TagSet = tagset
|
17979
|
+
@QosLevel = qoslevel
|
17980
|
+
@Type = type
|
17981
|
+
end
|
17982
|
+
|
17983
|
+
def deserialize(params)
|
17984
|
+
@SourceVpcId = params['SourceVpcId']
|
17985
|
+
@PeerVpcId = params['PeerVpcId']
|
17986
|
+
@PeeringConnectionId = params['PeeringConnectionId']
|
17987
|
+
@PeeringConnectionName = params['PeeringConnectionName']
|
17988
|
+
@State = params['State']
|
17989
|
+
@IsNgw = params['IsNgw']
|
17990
|
+
@Bandwidth = params['Bandwidth']
|
17991
|
+
@SourceRegion = params['SourceRegion']
|
17992
|
+
@DestinationRegion = params['DestinationRegion']
|
17993
|
+
@CreateTime = params['CreateTime']
|
17994
|
+
@AppId = params['AppId']
|
17995
|
+
@PeerAppId = params['PeerAppId']
|
17996
|
+
@ChargeType = params['ChargeType']
|
17997
|
+
@SourceUin = params['SourceUin']
|
17998
|
+
@DestinationUin = params['DestinationUin']
|
17999
|
+
unless params['TagSet'].nil?
|
18000
|
+
@TagSet = []
|
18001
|
+
params['TagSet'].each do |i|
|
18002
|
+
tag_tmp = Tag.new
|
18003
|
+
tag_tmp.deserialize(i)
|
18004
|
+
@TagSet << tag_tmp
|
18005
|
+
end
|
18006
|
+
end
|
18007
|
+
@QosLevel = params['QosLevel']
|
18008
|
+
@Type = params['Type']
|
18009
|
+
end
|
18010
|
+
end
|
18011
|
+
|
17904
18012
|
# 价格
|
17905
18013
|
class Price < TencentCloud::Common::AbstractModel
|
17906
18014
|
# @param InstancePrice: 实例价格。
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-vpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.669
|
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-09-
|
11
|
+
date: 2023-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
+
- lib/tencentcloud-sdk-vpc.rb
|
36
37
|
- lib/v20170312/models.rb
|
37
38
|
- lib/v20170312/client.rb
|
38
|
-
- lib/tencentcloud-sdk-vpc.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|