tencentcloud-sdk-vpc 3.0.957 → 3.0.958
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: 929fa64d9c66b181115f3449f0c6836d5cba8413
|
4
|
+
data.tar.gz: 8f290531cef0fc22eb03d219363fa2050da0c27e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 952701010310dd7c9e963b51b2074b5330a0f99b1d148c01f11788fed2bb78badb5ff924378b00ab6847f426fddf545a98a0c57708a1a71e2fa93555736682c6
|
7
|
+
data.tar.gz: 06eec76d78c94a6d764092e29136123e5e347c3a2b3be7ec7ccf731dad839f9d4b28d4b6eee56d7d5cabdfe3a79de56b28903edca39c974a395eb977289939da
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.958
|
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.958
|
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-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|