tencentcloud-sdk-vpc 3.0.896 → 3.0.898
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.
- 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: 278ad39d2878828d12be54c614e72bf4d529e943
|
4
|
+
data.tar.gz: 63126634c244ad0147780f7e6b3a741e33ccc0ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7b29a0d4b76b116231edfe89b2fb92856cb9bc23461fb3c23df49864fb3c97c71d6dee5088d96de3bb45af77b642c85b625ec41ab5989c027aa63f557581c67
|
7
|
+
data.tar.gz: 3ae1e514f1ed28803ce6c8228e6b73e5fc140a61ed4bc78026780a8ff8c20e3f1b1f1c2cb7e1f27837daccb342951b78089c173adf7a7db4c5bc1478bfd2c0bf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.898
|
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.898
|
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-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|