tencentcloud-sdk-vpc 3.0.957 → 3.0.959
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: 4bc584128537b9055c813e451ec18f2d510a8859
|
4
|
+
data.tar.gz: 6384eb140658a441c284914d840afa7e0f2b51db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d03d36ba35c509cd1e8cde02e76e3a59332dbe6f287837961768b0179f0668ede570a36c691f37d52e44f51612c8502a27f440cc4f9650676ab0f17276dcca6
|
7
|
+
data.tar.gz: 128826e89beded72295933c2adad0755131f9d639a1270db9307d66263d1ba6180c88e13421d1ff30295a91b43756c563f505ac3af9dbfecc80b89d63a776f9a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.959
|
data/lib/v20170312/models.rb
CHANGED
@@ -5992,16 +5992,19 @@ module TencentCloud
|
|
5992
5992
|
# @type IsPassService: Boolean
|
5993
5993
|
# @param ServiceType: 挂载的PAAS服务类型,CLB,CDB,CRS,不填默认挂载为CLB。
|
5994
5994
|
# @type ServiceType: String
|
5995
|
+
# @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
5996
|
+
# @type Tags: Array
|
5995
5997
|
|
5996
|
-
attr_accessor :VpcId, :EndPointServiceName, :AutoAcceptFlag, :ServiceInstanceId, :IsPassService, :ServiceType
|
5998
|
+
attr_accessor :VpcId, :EndPointServiceName, :AutoAcceptFlag, :ServiceInstanceId, :IsPassService, :ServiceType, :Tags
|
5997
5999
|
|
5998
|
-
def initialize(vpcid=nil, endpointservicename=nil, autoacceptflag=nil, serviceinstanceid=nil, ispassservice=nil, servicetype=nil)
|
6000
|
+
def initialize(vpcid=nil, endpointservicename=nil, autoacceptflag=nil, serviceinstanceid=nil, ispassservice=nil, servicetype=nil, tags=nil)
|
5999
6001
|
@VpcId = vpcid
|
6000
6002
|
@EndPointServiceName = endpointservicename
|
6001
6003
|
@AutoAcceptFlag = autoacceptflag
|
6002
6004
|
@ServiceInstanceId = serviceinstanceid
|
6003
6005
|
@IsPassService = ispassservice
|
6004
6006
|
@ServiceType = servicetype
|
6007
|
+
@Tags = tags
|
6005
6008
|
end
|
6006
6009
|
|
6007
6010
|
def deserialize(params)
|
@@ -6011,6 +6014,14 @@ module TencentCloud
|
|
6011
6014
|
@ServiceInstanceId = params['ServiceInstanceId']
|
6012
6015
|
@IsPassService = params['IsPassService']
|
6013
6016
|
@ServiceType = params['ServiceType']
|
6017
|
+
unless params['Tags'].nil?
|
6018
|
+
@Tags = []
|
6019
|
+
params['Tags'].each do |i|
|
6020
|
+
tag_tmp = Tag.new
|
6021
|
+
tag_tmp.deserialize(i)
|
6022
|
+
@Tags << tag_tmp
|
6023
|
+
end
|
6024
|
+
end
|
6014
6025
|
end
|
6015
6026
|
end
|
6016
6027
|
|
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.959
|
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-12-
|
11
|
+
date: 2024-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|