tencentcloud-sdk-vpc 3.0.907 → 3.0.908

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.
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: 82e1acb1fce1595c591ccdc2e706ada72f375e9d
4
- data.tar.gz: cca8ce68d44fe801cfe088f7982320e210384b0b
3
+ metadata.gz: c305c6d30d29196914dc6b0aa67376895bb12046
4
+ data.tar.gz: 76b528e3bc1534dddc44d35778218287ae044ced
5
5
  SHA512:
6
- metadata.gz: 5148e0b0ffeeb87a4e0a10459e9b577cbfb3067ea87610265180dc35725c995b9db02616ce6b96ae02271b4b48484af4bbb52052d9acaa734916edcdfef1bcc1
7
- data.tar.gz: 83885d028a71becb9f1fafc4f7b456d907b80df98a7a27f90ab71a4421d55793847d4925a8bf0e86d7e3ceee20c2fd5caa7e1d850f0676c704a4b9a5aa488aba
6
+ metadata.gz: a85be6779f22025496ddddd03209a8ac5b5864c003515098d48f6057f364bcfb5770021a43aec5f9007d0ce47d371bf88de690c48bd1cb4fcd91949e150f2a27
7
+ data.tar.gz: 9b60e0a5b5cf695c9ba77ece33ee536ec3538a1ab0338dc9ff0da499c958a1e508625219290911dea013bbff258ca749768511661c88d810f9f15ada18086d55
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.907
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.907
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-17 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