tencentcloud-sdk-vpc 3.0.382 → 3.0.386

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +33 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9a4038c597e8aad857dd527a52c820a685dbafd9
4
- data.tar.gz: 1f6d48d8b934e074ecb85095d6729a5889265430
3
+ metadata.gz: f2a94b7253391835a044ac74111d5382f7a0bdec
4
+ data.tar.gz: fa362679f552443accb4e148f8fca3801af5cdb3
5
5
  SHA512:
6
- metadata.gz: a229077e65dffcdd52cc2501b558fc5bb1d5f6fc11d7e6afb191a0ffe25754327378334914e23789dd00736c42a472773530d3a37426cf4a237331f391275ab6
7
- data.tar.gz: 888ff694fe70b311fd7d7938803c653723e6e1d4471907edee872b8c71c151d26f84d5b13d777ed2a20a1bcd634240a07c69bdf77945366390f994d8939f2df6
6
+ metadata.gz: cb8ba85e88075b80777956a885a78729902a042da48a1eb6b3411f86dca92f9fe471f7b7be89a70dea6c44eaf58edaf6710298a50b5800df2d1add8a0a72d9e7
7
+ data.tar.gz: 2e4f79da3d4c30b9ae8f29e595dbd6be8f2f41d8f7f1ab2d070a6e6277033abf7c3e0f9b195fb840ec027397f2b00f7ef5ca1ee9c18433011f5c4ca79b792783
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.382
1
+ 3.0.386
@@ -18523,10 +18523,24 @@ module TencentCloud
18523
18523
  # @type HealthCheckRemoteIp: String
18524
18524
  # @param HealthCheckStatus: 通道健康检查状态,AVAILABLE:正常,UNAVAILABLE:不正常。 未配置健康检查不返回该对象
18525
18525
  # @type HealthCheckStatus: String
18526
+ # @param DpdEnable: DPD探测开关。默认为0,表示关闭DPD探测。可选值:0(关闭),1(开启)
18527
+ # 注意:此字段可能返回 null,表示取不到有效值。
18528
+ # @type DpdEnable: Integer
18529
+ # @param DpdTimeout: DPD超时时间。即探测确认对端不存在需要的时间。
18530
+ # 注意:此字段可能返回 null,表示取不到有效值。
18531
+ # @type DpdTimeout: String
18532
+ # @param DpdAction: DPD超时后的动作。默认为clear。dpdEnable为1(开启)时有效。可取值为clear(断开)和restart(重试)
18533
+ # 注意:此字段可能返回 null,表示取不到有效值。
18534
+ # @type DpdAction: String
18535
+ # @param TagSet: 标签键值对数组
18536
+ # @type TagSet: Array
18537
+ # @param NegotiationType: 协商类型
18538
+ # 注意:此字段可能返回 null,表示取不到有效值。
18539
+ # @type NegotiationType: String
18526
18540
 
18527
- attr_accessor :VpnConnectionId, :VpnConnectionName, :VpcId, :VpnGatewayId, :CustomerGatewayId, :PreShareKey, :VpnProto, :EncryptProto, :RouteType, :CreatedTime, :State, :NetStatus, :SecurityPolicyDatabaseSet, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :HealthCheckStatus
18541
+ attr_accessor :VpnConnectionId, :VpnConnectionName, :VpcId, :VpnGatewayId, :CustomerGatewayId, :PreShareKey, :VpnProto, :EncryptProto, :RouteType, :CreatedTime, :State, :NetStatus, :SecurityPolicyDatabaseSet, :IKEOptionsSpecification, :IPSECOptionsSpecification, :EnableHealthCheck, :HealthCheckLocalIp, :HealthCheckRemoteIp, :HealthCheckStatus, :DpdEnable, :DpdTimeout, :DpdAction, :TagSet, :NegotiationType
18528
18542
 
18529
- def initialize(vpnconnectionid=nil, vpnconnectionname=nil, vpcid=nil, vpngatewayid=nil, customergatewayid=nil, presharekey=nil, vpnproto=nil, encryptproto=nil, routetype=nil, createdtime=nil, state=nil, netstatus=nil, securitypolicydatabaseset=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, healthcheckstatus=nil)
18543
+ def initialize(vpnconnectionid=nil, vpnconnectionname=nil, vpcid=nil, vpngatewayid=nil, customergatewayid=nil, presharekey=nil, vpnproto=nil, encryptproto=nil, routetype=nil, createdtime=nil, state=nil, netstatus=nil, securitypolicydatabaseset=nil, ikeoptionsspecification=nil, ipsecoptionsspecification=nil, enablehealthcheck=nil, healthchecklocalip=nil, healthcheckremoteip=nil, healthcheckstatus=nil, dpdenable=nil, dpdtimeout=nil, dpdaction=nil, tagset=nil, negotiationtype=nil)
18530
18544
  @VpnConnectionId = vpnconnectionid
18531
18545
  @VpnConnectionName = vpnconnectionname
18532
18546
  @VpcId = vpcid
@@ -18546,6 +18560,11 @@ module TencentCloud
18546
18560
  @HealthCheckLocalIp = healthchecklocalip
18547
18561
  @HealthCheckRemoteIp = healthcheckremoteip
18548
18562
  @HealthCheckStatus = healthcheckstatus
18563
+ @DpdEnable = dpdenable
18564
+ @DpdTimeout = dpdtimeout
18565
+ @DpdAction = dpdaction
18566
+ @TagSet = tagset
18567
+ @NegotiationType = negotiationtype
18549
18568
  end
18550
18569
 
18551
18570
  def deserialize(params)
@@ -18581,6 +18600,18 @@ module TencentCloud
18581
18600
  @HealthCheckLocalIp = params['HealthCheckLocalIp']
18582
18601
  @HealthCheckRemoteIp = params['HealthCheckRemoteIp']
18583
18602
  @HealthCheckStatus = params['HealthCheckStatus']
18603
+ @DpdEnable = params['DpdEnable']
18604
+ @DpdTimeout = params['DpdTimeout']
18605
+ @DpdAction = params['DpdAction']
18606
+ unless params['TagSet'].nil?
18607
+ @TagSet = []
18608
+ params['TagSet'].each do |i|
18609
+ tag_tmp = Tag.new
18610
+ tag_tmp.deserialize(i)
18611
+ @TagSet << tag_tmp
18612
+ end
18613
+ end
18614
+ @NegotiationType = params['NegotiationType']
18584
18615
  end
18585
18616
  end
18586
18617
 
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.382
4
+ version: 3.0.386
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-08 00:00:00.000000000 Z
11
+ date: 2022-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common