tencentcloud-sdk-vpc 3.0.906 → 3.0.908

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +13 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 38307121e9da8ae1fcca7d25bbc7e9f7fd1b8a67
4
- data.tar.gz: 1d63c4fb5552add5213253c5c1ee6e1b92c5ef62
3
+ metadata.gz: c305c6d30d29196914dc6b0aa67376895bb12046
4
+ data.tar.gz: 76b528e3bc1534dddc44d35778218287ae044ced
5
5
  SHA512:
6
- metadata.gz: 17369e339f9ca0d2bc739b18301ce25301c4232c1774f905df63eedc4f3ad67534fe3f9f3cbea361a9e37429cbe70dcb1afda68002c512466730c59f5f72f710
7
- data.tar.gz: 64da0ebebf343c36453741207463ce12d5c35c4e7ccea1d370dedf1e87e97c119196228725488de8af68001bdce4f8a5eb172772ffc2c4897248348238c0b498
6
+ metadata.gz: a85be6779f22025496ddddd03209a8ac5b5864c003515098d48f6057f364bcfb5770021a43aec5f9007d0ce47d371bf88de690c48bd1cb4fcd91949e150f2a27
7
+ data.tar.gz: 9b60e0a5b5cf695c9ba77ece33ee536ec3538a1ab0338dc9ff0da499c958a1e508625219290911dea013bbff258ca749768511661c88d810f9f15ada18086d55
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.906
1
+ 3.0.908
@@ -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.906
4
+ version: 3.0.908
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-15 00:00:00.000000000 Z
11
+ date: 2024-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common