tencentcloud-sdk-vpc 1.0.226 → 1.0.227
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 +40 -8
- 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: cda1cc82dfde8a330d92964320b96b3f40af1468
|
4
|
+
data.tar.gz: 3c0533bd0496cbe8eaf57306cd726fe9ac6a10e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dfbd36b905f09833cb19bec04086ba8551a3088c1645ef74fdce4d8aff70f10e478f7c9770474ca72e2494262797c1883c02edf6d35d5a509e0a99cef921a68
|
7
|
+
data.tar.gz: 2a121b77619de3cd08789ddf57e14143d82003d5c99b92433034eb26c695c4eb90311db934ef932b53debbcd6776b627a2b36a51b2b9ac40ad8d3221b01d8c78
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.227
|
data/lib/v20170312/models.rb
CHANGED
@@ -4041,10 +4041,18 @@ module TencentCloud
|
|
4041
4041
|
# @type HealthCheckRemoteIp: String
|
4042
4042
|
# @param RouteType: 通道类型, 例如:["STATIC", "StaticRoute", "Policy"]
|
4043
4043
|
# @type RouteType: String
|
4044
|
-
|
4045
|
-
|
4046
|
-
|
4047
|
-
|
4044
|
+
# @param NegotiationType: 协商类型,默认为active(主动协商)。可选值:active(主动协商),passive(被动协商),flowTrigger(流量协商)
|
4045
|
+
# @type NegotiationType: String
|
4046
|
+
# @param DpdEnable: DPD探测开关。默认为0,表示关闭DPD探测。可选值:0(关闭),1(开启)
|
4047
|
+
# @type DpdEnable: Integer
|
4048
|
+
# @param DpdTimeout: DPD超时时间。即探测确认对端不存在需要的时间。dpdEnable为1(开启)时有效。默认30,单位为秒
|
4049
|
+
# @type DpdTimeout: String
|
4050
|
+
# @param DpdAction: DPD超时后的动作。默认为clear。dpdEnable为1(开启)时有效。可取值为clear(断开)和restart(重试)
|
4051
|
+
# @type DpdAction: String
|
4052
|
+
|
4053
|
+
attr_accessor :VpnGatewayId, :CustomerGatewayId, :VpnConnectionName, :PreShareKey, :VpcId, :SecurityPolicyDatabases, :IKEOptionsSpecification, :IPSECOptionsSpecification, :Tags, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :RouteType, :NegotiationType, :DpdEnable, :DpdTimeout, :DpdAction
|
4054
|
+
|
4055
|
+
def initialize(vpngatewayid=nil, customergatewayid=nil, vpnconnectionname=nil, presharekey=nil, vpcid=nil, securitypolicydatabases=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, tags=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, routetype=nil, negotiationtype=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil)
|
4048
4056
|
@VpnGatewayId = vpngatewayid
|
4049
4057
|
@CustomerGatewayId = customergatewayid
|
4050
4058
|
@VpnConnectionName = vpnconnectionname
|
@@ -4058,6 +4066,10 @@ module TencentCloud
|
|
4058
4066
|
@HealthCheckLocalIp = healthchecklocalip
|
4059
4067
|
@HealthCheckRemoteIp = healthcheckremoteip
|
4060
4068
|
@RouteType = routetype
|
4069
|
+
@NegotiationType = negotiationtype
|
4070
|
+
@DpdEnable = dpdenable
|
4071
|
+
@DpdTimeout = dpdtimeout
|
4072
|
+
@DpdAction = dpdaction
|
4061
4073
|
end
|
4062
4074
|
|
4063
4075
|
def deserialize(params)
|
@@ -4094,6 +4106,10 @@ module TencentCloud
|
|
4094
4106
|
@HealthCheckLocalIp = params['HealthCheckLocalIp']
|
4095
4107
|
@HealthCheckRemoteIp = params['HealthCheckRemoteIp']
|
4096
4108
|
@RouteType = params['RouteType']
|
4109
|
+
@NegotiationType = params['NegotiationType']
|
4110
|
+
@DpdEnable = params['DpdEnable']
|
4111
|
+
@DpdTimeout = params['DpdTimeout']
|
4112
|
+
@DpdAction = params['DpdAction']
|
4097
4113
|
end
|
4098
4114
|
end
|
4099
4115
|
|
@@ -13855,10 +13871,18 @@ module TencentCloud
|
|
13855
13871
|
# @type HealthCheckLocalIp: String
|
13856
13872
|
# @param HealthCheckRemoteIp: 对端通道探测ip
|
13857
13873
|
# @type HealthCheckRemoteIp: String
|
13858
|
-
|
13859
|
-
|
13860
|
-
|
13861
|
-
|
13874
|
+
# @param NegotiationType: 协商类型,默认为active(主动协商)。可选值:active(主动协商),passive(被动协商),flowTrigger(流量协商)
|
13875
|
+
# @type NegotiationType: String
|
13876
|
+
# @param DpdEnable: DPD探测开关。默认为0,表示关闭DPD探测。可选值:0(关闭),1(开启)
|
13877
|
+
# @type DpdEnable: Integer
|
13878
|
+
# @param DpdTimeout: DPD超时时间。即探测确认对端不存在需要的时间。dpdEnable为1(开启)时有效。默认30,单位为秒
|
13879
|
+
# @type DpdTimeout: String
|
13880
|
+
# @param DpdAction: DPD超时后的动作。默认为clear。dpdEnable为1(开启)时有效。可取值为clear(断开)和restart(重试)
|
13881
|
+
# @type DpdAction: String
|
13882
|
+
|
13883
|
+
attr_accessor :VpnConnectionId, :VpnConnectionName, :PreShareKey, :SecurityPolicyDatabases, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :NegotiationType, :DpdEnable, :DpdTimeout, :DpdAction
|
13884
|
+
|
13885
|
+
def initialize(vpnconnectionid=nil, vpnconnectionname=nil, presharekey=nil, securitypolicydatabases=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, negotiationtype=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil)
|
13862
13886
|
@VpnConnectionId = vpnconnectionid
|
13863
13887
|
@VpnConnectionName = vpnconnectionname
|
13864
13888
|
@PreShareKey = presharekey
|
@@ -13868,6 +13892,10 @@ module TencentCloud
|
|
13868
13892
|
@EnableHealthCheck = enablehealthcheck
|
13869
13893
|
@HealthCheckLocalIp = healthchecklocalip
|
13870
13894
|
@HealthCheckRemoteIp = healthcheckremoteip
|
13895
|
+
@NegotiationType = negotiationtype
|
13896
|
+
@DpdEnable = dpdenable
|
13897
|
+
@DpdTimeout = dpdtimeout
|
13898
|
+
@DpdAction = dpdaction
|
13871
13899
|
end
|
13872
13900
|
|
13873
13901
|
def deserialize(params)
|
@@ -13893,6 +13921,10 @@ module TencentCloud
|
|
13893
13921
|
@EnableHealthCheck = params['EnableHealthCheck']
|
13894
13922
|
@HealthCheckLocalIp = params['HealthCheckLocalIp']
|
13895
13923
|
@HealthCheckRemoteIp = params['HealthCheckRemoteIp']
|
13924
|
+
@NegotiationType = params['NegotiationType']
|
13925
|
+
@DpdEnable = params['DpdEnable']
|
13926
|
+
@DpdTimeout = params['DpdTimeout']
|
13927
|
+
@DpdAction = params['DpdAction']
|
13896
13928
|
end
|
13897
13929
|
end
|
13898
13930
|
|
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: 1.0.
|
4
|
+
version: 1.0.227
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|