tencentcloud-sdk-vpc 3.0.907 → 3.0.909
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20170312/models.rb +13 -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: fe16d1a57243ffa1230087d9e83c0b672fb491ee
|
4
|
+
data.tar.gz: 4435e9b87629309008c23034afa688bf574e2660
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 461bd03c9482a7cca3daa8714dce54cfd0aeba3dd5c96f8b208bd2633536fa772661b9348a098bb1522afd01cce3c40f85c60d8d76943331a21584beea5cb45a
|
7
|
+
data.tar.gz: 387985130822a34cd55dff67c2abfb1ef4d1d445e6bc2aea4e8b0d7b09a567a763e78f0cfbd339ac6d79f87dbf776200206ed7f643d1f76e760a61b6ad343523
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.909
|
data/lib/v20170312/models.rb
CHANGED
@@ -5383,16 +5383,19 @@ module TencentCloud
|
|
5383
5383
|
# @type EndPointVip: String
|
5384
5384
|
# @param SecurityGroupId: 安全组ID。
|
5385
5385
|
# @type SecurityGroupId: String
|
5386
|
+
# @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
5387
|
+
# @type Tags: Array
|
5386
5388
|
|
5387
|
-
attr_accessor :VpcId, :SubnetId, :EndPointName, :EndPointServiceId, :EndPointVip, :SecurityGroupId
|
5389
|
+
attr_accessor :VpcId, :SubnetId, :EndPointName, :EndPointServiceId, :EndPointVip, :SecurityGroupId, :Tags
|
5388
5390
|
|
5389
|
-
def initialize(vpcid=nil, subnetid=nil, endpointname=nil, endpointserviceid=nil, endpointvip=nil, securitygroupid=nil)
|
5391
|
+
def initialize(vpcid=nil, subnetid=nil, endpointname=nil, endpointserviceid=nil, endpointvip=nil, securitygroupid=nil, tags=nil)
|
5390
5392
|
@VpcId = vpcid
|
5391
5393
|
@SubnetId = subnetid
|
5392
5394
|
@EndPointName = endpointname
|
5393
5395
|
@EndPointServiceId = endpointserviceid
|
5394
5396
|
@EndPointVip = endpointvip
|
5395
5397
|
@SecurityGroupId = securitygroupid
|
5398
|
+
@Tags = tags
|
5396
5399
|
end
|
5397
5400
|
|
5398
5401
|
def deserialize(params)
|
@@ -5402,6 +5405,14 @@ module TencentCloud
|
|
5402
5405
|
@EndPointServiceId = params['EndPointServiceId']
|
5403
5406
|
@EndPointVip = params['EndPointVip']
|
5404
5407
|
@SecurityGroupId = params['SecurityGroupId']
|
5408
|
+
unless params['Tags'].nil?
|
5409
|
+
@Tags = []
|
5410
|
+
params['Tags'].each do |i|
|
5411
|
+
tag_tmp = Tag.new
|
5412
|
+
tag_tmp.deserialize(i)
|
5413
|
+
@Tags << tag_tmp
|
5414
|
+
end
|
5415
|
+
end
|
5405
5416
|
end
|
5406
5417
|
end
|
5407
5418
|
|
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.909
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|