tencentcloud-sdk-vpc 3.0.903 → 3.0.904

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: 7c0226f57afcc9496c46bb838c0d6247888d467c
4
- data.tar.gz: 559d4e451b2ccd2fcd9e4e8abbb2737810267a7b
3
+ metadata.gz: 3e692f9acd1b8f58a27fffe31bce6679aa0690b0
4
+ data.tar.gz: c46beaf4a434cee619e09c1dcd5ef4e83d903664
5
5
  SHA512:
6
- metadata.gz: 75a77b051068d014d4d3dd781c0088352a97eeefd21142c2d2640dd5b33ce45f194306110d57e8cb7d0bc1c0943762c3db6180d993161b876c1236da273b1304
7
- data.tar.gz: ea5116a585fcd7608e5b7c16a9e1c49c9e2c20e802dc89fc69f51d8e27014f3685bd6bcdb49a8e6a3dc1de011988c5f3528e7c77a74c8740aed2fc3701a8e084
6
+ metadata.gz: da35a379570106c8e3916091d38da6265e1b56ff2969b527739f7ca694614ba1959ba0201274b2888dd8f33f4e5057d484bd425bae33377c10baf4e57ed24322
7
+ data.tar.gz: dd53b48b075d6673ce0033da080928c3d65cb0f1337dd2888f0ee033a4a76a51c62623f6cc739b8cf3da665a5202187aa7895e11e0f1497bd60d585616234c21
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.903
1
+ 3.0.904
@@ -4978,14 +4978,17 @@ module TencentCloud
4978
4978
  # @type ProjectId: String
4979
4979
  # @param SecurityGroupPolicySet: 安全组规则集合。
4980
4980
  # @type SecurityGroupPolicySet: :class:`Tencentcloud::Vpc.v20170312.models.SecurityGroupPolicySet`
4981
+ # @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
4982
+ # @type Tags: Array
4981
4983
 
4982
- attr_accessor :GroupName, :GroupDescription, :ProjectId, :SecurityGroupPolicySet
4984
+ attr_accessor :GroupName, :GroupDescription, :ProjectId, :SecurityGroupPolicySet, :Tags
4983
4985
 
4984
- def initialize(groupname=nil, groupdescription=nil, projectid=nil, securitygrouppolicyset=nil)
4986
+ def initialize(groupname=nil, groupdescription=nil, projectid=nil, securitygrouppolicyset=nil, tags=nil)
4985
4987
  @GroupName = groupname
4986
4988
  @GroupDescription = groupdescription
4987
4989
  @ProjectId = projectid
4988
4990
  @SecurityGroupPolicySet = securitygrouppolicyset
4991
+ @Tags = tags
4989
4992
  end
4990
4993
 
4991
4994
  def deserialize(params)
@@ -4996,6 +4999,14 @@ module TencentCloud
4996
4999
  @SecurityGroupPolicySet = SecurityGroupPolicySet.new
4997
5000
  @SecurityGroupPolicySet.deserialize(params['SecurityGroupPolicySet'])
4998
5001
  end
5002
+ unless params['Tags'].nil?
5003
+ @Tags = []
5004
+ params['Tags'].each do |i|
5005
+ tag_tmp = Tag.new
5006
+ tag_tmp.deserialize(i)
5007
+ @Tags << tag_tmp
5008
+ end
5009
+ end
4999
5010
  end
5000
5011
  end
5001
5012
 
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.903
4
+ version: 3.0.904
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-10 00:00:00.000000000 Z
11
+ date: 2024-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common