tencentcloud-sdk-vpc 3.0.668 → 3.0.670
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 +69 -5
- 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: 918fdbcd885a83e3eb72e3f7fca98343d9daf7ea
|
4
|
+
data.tar.gz: e2f0ef9cffd67b8f57561b84e29cc0e1908d855c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa2dca92306e597b361e14785265fd9c4be3dcd87e8572f8c5acc8b308b935be8569e28b179544f72f34400ba254dbb9bcd068e7e89982e598ebfdd9a69c2120
|
7
|
+
data.tar.gz: 337a28be560c766c6cef1be5a3df4fd914d2b08051727c60e1f14fb420e0210be8eff754914dabad45673e6ba924840eff4b880b8e65ff509355ac2555e72d6b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.670
|
data/lib/v20170312/models.rb
CHANGED
@@ -4672,27 +4672,69 @@ module TencentCloud
|
|
4672
4672
|
|
4673
4673
|
# CreateVpcPeeringConnection请求参数结构体
|
4674
4674
|
class CreateVpcPeeringConnectionRequest < TencentCloud::Common::AbstractModel
|
4675
|
+
# @param SourceVpcId: 本端VPC唯一ID。
|
4676
|
+
# @type SourceVpcId: String
|
4677
|
+
# @param PeeringConnectionName: 对等连接名称。
|
4678
|
+
# @type PeeringConnectionName: String
|
4679
|
+
# @param DestinationVpcId: 对端VPC唯一ID。
|
4680
|
+
# @type DestinationVpcId: String
|
4681
|
+
# @param DestinationUin: 对端用户UIN。
|
4682
|
+
# @type DestinationUin: String
|
4683
|
+
# @param DestinationRegion: 对端地域。
|
4684
|
+
# @type DestinationRegion: String
|
4685
|
+
# @param Bandwidth: 带宽上限,单位Mbps。
|
4686
|
+
# @type Bandwidth: Integer
|
4687
|
+
# @param Type: 互通类型,VPC_PEER:VPC间互通;VPC_BM_PEER:VPC与黑石网络互通。
|
4688
|
+
# @type Type: String
|
4689
|
+
# @param ChargeType: 计费模式,日峰值POSTPAID_BY_DAY_MAX,月95POSTPAID_BY_MONTH_95。
|
4690
|
+
# @type ChargeType: String
|
4691
|
+
# @param QosLevel: 服务分级:PT、AU、AG。
|
4692
|
+
# @type QosLevel: String
|
4675
4693
|
|
4694
|
+
attr_accessor :SourceVpcId, :PeeringConnectionName, :DestinationVpcId, :DestinationUin, :DestinationRegion, :Bandwidth, :Type, :ChargeType, :QosLevel
|
4676
4695
|
|
4677
|
-
def initialize()
|
4696
|
+
def initialize(sourcevpcid=nil, peeringconnectionname=nil, destinationvpcid=nil, destinationuin=nil, destinationregion=nil, bandwidth=nil, type=nil, chargetype=nil, qoslevel=nil)
|
4697
|
+
@SourceVpcId = sourcevpcid
|
4698
|
+
@PeeringConnectionName = peeringconnectionname
|
4699
|
+
@DestinationVpcId = destinationvpcid
|
4700
|
+
@DestinationUin = destinationuin
|
4701
|
+
@DestinationRegion = destinationregion
|
4702
|
+
@Bandwidth = bandwidth
|
4703
|
+
@Type = type
|
4704
|
+
@ChargeType = chargetype
|
4705
|
+
@QosLevel = qoslevel
|
4678
4706
|
end
|
4679
4707
|
|
4680
4708
|
def deserialize(params)
|
4709
|
+
@SourceVpcId = params['SourceVpcId']
|
4710
|
+
@PeeringConnectionName = params['PeeringConnectionName']
|
4711
|
+
@DestinationVpcId = params['DestinationVpcId']
|
4712
|
+
@DestinationUin = params['DestinationUin']
|
4713
|
+
@DestinationRegion = params['DestinationRegion']
|
4714
|
+
@Bandwidth = params['Bandwidth']
|
4715
|
+
@Type = params['Type']
|
4716
|
+
@ChargeType = params['ChargeType']
|
4717
|
+
@QosLevel = params['QosLevel']
|
4681
4718
|
end
|
4682
4719
|
end
|
4683
4720
|
|
4684
4721
|
# CreateVpcPeeringConnection返回参数结构体
|
4685
4722
|
class CreateVpcPeeringConnectionResponse < TencentCloud::Common::AbstractModel
|
4723
|
+
# @param PeeringConnectionId: 对等连接ID
|
4724
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4725
|
+
# @type PeeringConnectionId: String
|
4686
4726
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4687
4727
|
# @type RequestId: String
|
4688
4728
|
|
4689
|
-
attr_accessor :RequestId
|
4729
|
+
attr_accessor :PeeringConnectionId, :RequestId
|
4690
4730
|
|
4691
|
-
def initialize(requestid=nil)
|
4731
|
+
def initialize(peeringconnectionid=nil, requestid=nil)
|
4732
|
+
@PeeringConnectionId = peeringconnectionid
|
4692
4733
|
@RequestId = requestid
|
4693
4734
|
end
|
4694
4735
|
|
4695
4736
|
def deserialize(params)
|
4737
|
+
@PeeringConnectionId = params['PeeringConnectionId']
|
4696
4738
|
@RequestId = params['RequestId']
|
4697
4739
|
end
|
4698
4740
|
end
|
@@ -16810,12 +16852,29 @@ module TencentCloud
|
|
16810
16852
|
|
16811
16853
|
# ModifyVpcPeeringConnection请求参数结构体
|
16812
16854
|
class ModifyVpcPeeringConnectionRequest < TencentCloud::Common::AbstractModel
|
16855
|
+
# @param PeeringConnectionId: 对等连接ID。
|
16856
|
+
# @type PeeringConnectionId: String
|
16857
|
+
# @param PeeringConnectionName: 对等连接名称。
|
16858
|
+
# @type PeeringConnectionName: String
|
16859
|
+
# @param Bandwidth: 带宽上限,单位Mbps。
|
16860
|
+
# @type Bandwidth: Integer
|
16861
|
+
# @param ChargeType: 计费模式,日峰值POSTPAID_BY_DAY_MAX,月95 POSTPAID_BY_MONTH_95。
|
16862
|
+
# @type ChargeType: String
|
16813
16863
|
|
16864
|
+
attr_accessor :PeeringConnectionId, :PeeringConnectionName, :Bandwidth, :ChargeType
|
16814
16865
|
|
16815
|
-
def initialize()
|
16866
|
+
def initialize(peeringconnectionid=nil, peeringconnectionname=nil, bandwidth=nil, chargetype=nil)
|
16867
|
+
@PeeringConnectionId = peeringconnectionid
|
16868
|
+
@PeeringConnectionName = peeringconnectionname
|
16869
|
+
@Bandwidth = bandwidth
|
16870
|
+
@ChargeType = chargetype
|
16816
16871
|
end
|
16817
16872
|
|
16818
16873
|
def deserialize(params)
|
16874
|
+
@PeeringConnectionId = params['PeeringConnectionId']
|
16875
|
+
@PeeringConnectionName = params['PeeringConnectionName']
|
16876
|
+
@Bandwidth = params['Bandwidth']
|
16877
|
+
@ChargeType = params['ChargeType']
|
16819
16878
|
end
|
16820
16879
|
end
|
16821
16880
|
|
@@ -18255,12 +18314,17 @@ module TencentCloud
|
|
18255
18314
|
|
18256
18315
|
# RejectVpcPeeringConnection请求参数结构体
|
18257
18316
|
class RejectVpcPeeringConnectionRequest < TencentCloud::Common::AbstractModel
|
18317
|
+
# @param PeeringConnectionId: 对等连接唯一ID。
|
18318
|
+
# @type PeeringConnectionId: String
|
18258
18319
|
|
18320
|
+
attr_accessor :PeeringConnectionId
|
18259
18321
|
|
18260
|
-
def initialize()
|
18322
|
+
def initialize(peeringconnectionid=nil)
|
18323
|
+
@PeeringConnectionId = peeringconnectionid
|
18261
18324
|
end
|
18262
18325
|
|
18263
18326
|
def deserialize(params)
|
18327
|
+
@PeeringConnectionId = params['PeeringConnectionId']
|
18264
18328
|
end
|
18265
18329
|
end
|
18266
18330
|
|
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.670
|
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-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|