tencentcloud-sdk-vpc 3.0.895 → 3.0.897
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 +28 -6
- 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: f6d99fa90b074b9fcb9caec758a8caf29fb0ce5b
|
4
|
+
data.tar.gz: 01a012b2274f29d102d5e8dc5015ba26aa4905b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b37cb2e884e925bf69882596a8901b155183a44f935dd463d591b3b29acbc4a8db45055261f5a61f9676d9f936904db0abeb346972bddf1d2c9f68f2078765a
|
7
|
+
data.tar.gz: 62907be2e7ed32dc7938a8f9356ff4a216f2422859a24b16c027a43551a8786836764e469144cac4bce80e1ed3c9110b2756ae7ecc7c49b03beb1691142f922b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.897
|
data/lib/v20170312/models.rb
CHANGED
@@ -5963,19 +5963,30 @@ module TencentCloud
|
|
5963
5963
|
# @type SslVpnClientName: String
|
5964
5964
|
# @param SslVpnClientNames: SSL-VPN-CLIENT实例Name数字。批量创建时使用。不可和SslVpnClientName同时使用。
|
5965
5965
|
# @type SslVpnClientNames: Array
|
5966
|
+
# @param Tags: 指定绑定的标签列表
|
5967
|
+
# @type Tags: Array
|
5966
5968
|
|
5967
|
-
attr_accessor :SslVpnServerId, :SslVpnClientName, :SslVpnClientNames
|
5969
|
+
attr_accessor :SslVpnServerId, :SslVpnClientName, :SslVpnClientNames, :Tags
|
5968
5970
|
|
5969
|
-
def initialize(sslvpnserverid=nil, sslvpnclientname=nil, sslvpnclientnames=nil)
|
5971
|
+
def initialize(sslvpnserverid=nil, sslvpnclientname=nil, sslvpnclientnames=nil, tags=nil)
|
5970
5972
|
@SslVpnServerId = sslvpnserverid
|
5971
5973
|
@SslVpnClientName = sslvpnclientname
|
5972
5974
|
@SslVpnClientNames = sslvpnclientnames
|
5975
|
+
@Tags = tags
|
5973
5976
|
end
|
5974
5977
|
|
5975
5978
|
def deserialize(params)
|
5976
5979
|
@SslVpnServerId = params['SslVpnServerId']
|
5977
5980
|
@SslVpnClientName = params['SslVpnClientName']
|
5978
5981
|
@SslVpnClientNames = params['SslVpnClientNames']
|
5982
|
+
unless params['Tags'].nil?
|
5983
|
+
@Tags = []
|
5984
|
+
params['Tags'].each do |i|
|
5985
|
+
tag_tmp = Tag.new
|
5986
|
+
tag_tmp.deserialize(i)
|
5987
|
+
@Tags << tag_tmp
|
5988
|
+
end
|
5989
|
+
end
|
5979
5990
|
end
|
5980
5991
|
end
|
5981
5992
|
|
@@ -6029,10 +6040,12 @@ module TencentCloud
|
|
6029
6040
|
# @type AccessPolicyEnabled: Boolean
|
6030
6041
|
# @param SamlData: SAML-DATA,开启SSO时传。
|
6031
6042
|
# @type SamlData: String
|
6043
|
+
# @param Tags: 指定绑定的标签列表
|
6044
|
+
# @type Tags: Array
|
6032
6045
|
|
6033
|
-
attr_accessor :VpnGatewayId, :SslVpnServerName, :LocalAddress, :RemoteAddress, :SslVpnProtocol, :SslVpnPort, :IntegrityAlgorithm, :EncryptAlgorithm, :Compress, :SsoEnabled, :AccessPolicyEnabled, :SamlData
|
6046
|
+
attr_accessor :VpnGatewayId, :SslVpnServerName, :LocalAddress, :RemoteAddress, :SslVpnProtocol, :SslVpnPort, :IntegrityAlgorithm, :EncryptAlgorithm, :Compress, :SsoEnabled, :AccessPolicyEnabled, :SamlData, :Tags
|
6034
6047
|
|
6035
|
-
def initialize(vpngatewayid=nil, sslvpnservername=nil, localaddress=nil, remoteaddress=nil, sslvpnprotocol=nil, sslvpnport=nil, integrityalgorithm=nil, encryptalgorithm=nil, compress=nil, ssoenabled=nil, accesspolicyenabled=nil, samldata=nil)
|
6048
|
+
def initialize(vpngatewayid=nil, sslvpnservername=nil, localaddress=nil, remoteaddress=nil, sslvpnprotocol=nil, sslvpnport=nil, integrityalgorithm=nil, encryptalgorithm=nil, compress=nil, ssoenabled=nil, accesspolicyenabled=nil, samldata=nil, tags=nil)
|
6036
6049
|
@VpnGatewayId = vpngatewayid
|
6037
6050
|
@SslVpnServerName = sslvpnservername
|
6038
6051
|
@LocalAddress = localaddress
|
@@ -6045,6 +6058,7 @@ module TencentCloud
|
|
6045
6058
|
@SsoEnabled = ssoenabled
|
6046
6059
|
@AccessPolicyEnabled = accesspolicyenabled
|
6047
6060
|
@SamlData = samldata
|
6061
|
+
@Tags = tags
|
6048
6062
|
end
|
6049
6063
|
|
6050
6064
|
def deserialize(params)
|
@@ -6060,6 +6074,14 @@ module TencentCloud
|
|
6060
6074
|
@SsoEnabled = params['SsoEnabled']
|
6061
6075
|
@AccessPolicyEnabled = params['AccessPolicyEnabled']
|
6062
6076
|
@SamlData = params['SamlData']
|
6077
|
+
unless params['Tags'].nil?
|
6078
|
+
@Tags = []
|
6079
|
+
params['Tags'].each do |i|
|
6080
|
+
tag_tmp = Tag.new
|
6081
|
+
tag_tmp.deserialize(i)
|
6082
|
+
@Tags << tag_tmp
|
6083
|
+
end
|
6084
|
+
end
|
6063
6085
|
end
|
6064
6086
|
end
|
6065
6087
|
|
@@ -16237,8 +16259,8 @@ module TencentCloud
|
|
16237
16259
|
|
16238
16260
|
attr_accessor :EncryptAlgorithm, :IntegrityAlgorith, :IPSECSaLifetimeSeconds, :PfsDhGroup, :IPSECSaLifetimeTraffic, :IntegrityAlgorithm
|
16239
16261
|
extend Gem::Deprecate
|
16240
|
-
deprecate :IntegrityAlgorith, :none, 2024,
|
16241
|
-
deprecate :IntegrityAlgorith=, :none, 2024,
|
16262
|
+
deprecate :IntegrityAlgorith, :none, 2024, 9
|
16263
|
+
deprecate :IntegrityAlgorith=, :none, 2024, 9
|
16242
16264
|
|
16243
16265
|
def initialize(encryptalgorithm=nil, integrityalgorith=nil, ipsecsalifetimeseconds=nil, pfsdhgroup=nil, ipsecsalifetimetraffic=nil, integrityalgorithm=nil)
|
16244
16266
|
@EncryptAlgorithm = encryptalgorithm
|
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.897
|
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-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|