tencentcloud-sdk-dc 1.0.293 → 1.0.296

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/v20180410/models.rb +24 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b30e62dd25362867bc0315c98c5223362571734
4
- data.tar.gz: 3eff06da20fe0fa1be567a391d1ff68af3193be2
3
+ metadata.gz: 2187735450411c07bd5125ed07232c331e68c8ef
4
+ data.tar.gz: ee7451c8376c315befd00de25e2043a20f068485
5
5
  SHA512:
6
- metadata.gz: 34e038dd49811002787f088569474b8b3c80d10233f969f24a27d31b57416df2d13f5c2ecc20ed60fcc21537c65e711b435ec2d7069bda650d4534d428992643
7
- data.tar.gz: 6626217ec338fc93949eb1fe57b018bbca78642196dedb15c2bb2907af159aa4b1032f774829d4f588d235a8a6c542d8648be112c20b62857362b44795dbab67
6
+ metadata.gz: c4f1eae9ce572cb311f2c9ca1737fdb8594db48f8f3746471fb18f978ec6742b84b0fa153ed2dcf5c3fe29e1b4c85c746e69d22fce84d7e9adf399db1fa70ba6
7
+ data.tar.gz: f5f3423dce72b05d782e75e38e04da8751b029a9bc25fbda3400fe44e1aaabaffae8768de4ad5521aefeef738b9075a789c043d189e8da9659a4c95f54f491e0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.293
1
+ 1.0.296
@@ -386,10 +386,18 @@ module TencentCloud
386
386
  # @type TencentBackupAddress: String
387
387
  # @param CloudAttachId: 高速上云服务ID
388
388
  # @type CloudAttachId: String
389
+ # @param BfdEnable: 是否开启BFD
390
+ # @type BfdEnable: Integer
391
+ # @param NqaEnable: 是否开启NQA
392
+ # @type NqaEnable: Integer
393
+ # @param BfdInfo: BFD配置信息
394
+ # @type BfdInfo: :class:`Tencentcloud::Dc.v20180410.models.BFDInfo`
395
+ # @param NqaInfo: NQA配置信息
396
+ # @type NqaInfo: :class:`Tencentcloud::Dc.v20180410.models.NQAInfo`
389
397
 
390
- attr_accessor :DirectConnectId, :DirectConnectTunnelName, :DirectConnectOwnerAccount, :NetworkType, :NetworkRegion, :VpcId, :DirectConnectGatewayId, :Bandwidth, :RouteType, :BgpPeer, :RouteFilterPrefixes, :Vlan, :TencentAddress, :CustomerAddress, :TencentBackupAddress, :CloudAttachId
398
+ attr_accessor :DirectConnectId, :DirectConnectTunnelName, :DirectConnectOwnerAccount, :NetworkType, :NetworkRegion, :VpcId, :DirectConnectGatewayId, :Bandwidth, :RouteType, :BgpPeer, :RouteFilterPrefixes, :Vlan, :TencentAddress, :CustomerAddress, :TencentBackupAddress, :CloudAttachId, :BfdEnable, :NqaEnable, :BfdInfo, :NqaInfo
391
399
 
392
- def initialize(directconnectid=nil, directconnecttunnelname=nil, directconnectowneraccount=nil, networktype=nil, networkregion=nil, vpcid=nil, directconnectgatewayid=nil, bandwidth=nil, routetype=nil, bgppeer=nil, routefilterprefixes=nil, vlan=nil, tencentaddress=nil, customeraddress=nil, tencentbackupaddress=nil, cloudattachid=nil)
400
+ def initialize(directconnectid=nil, directconnecttunnelname=nil, directconnectowneraccount=nil, networktype=nil, networkregion=nil, vpcid=nil, directconnectgatewayid=nil, bandwidth=nil, routetype=nil, bgppeer=nil, routefilterprefixes=nil, vlan=nil, tencentaddress=nil, customeraddress=nil, tencentbackupaddress=nil, cloudattachid=nil, bfdenable=nil, nqaenable=nil, bfdinfo=nil, nqainfo=nil)
393
401
  @DirectConnectId = directconnectid
394
402
  @DirectConnectTunnelName = directconnecttunnelname
395
403
  @DirectConnectOwnerAccount = directconnectowneraccount
@@ -406,6 +414,10 @@ module TencentCloud
406
414
  @CustomerAddress = customeraddress
407
415
  @TencentBackupAddress = tencentbackupaddress
408
416
  @CloudAttachId = cloudattachid
417
+ @BfdEnable = bfdenable
418
+ @NqaEnable = nqaenable
419
+ @BfdInfo = bfdinfo
420
+ @NqaInfo = nqainfo
409
421
  end
410
422
 
411
423
  def deserialize(params)
@@ -435,6 +447,16 @@ module TencentCloud
435
447
  @CustomerAddress = params['CustomerAddress']
436
448
  @TencentBackupAddress = params['TencentBackupAddress']
437
449
  @CloudAttachId = params['CloudAttachId']
450
+ @BfdEnable = params['BfdEnable']
451
+ @NqaEnable = params['NqaEnable']
452
+ unless params['BfdInfo'].nil?
453
+ @BfdInfo = BFDInfo.new
454
+ @BfdInfo.deserialize(params['BfdInfo'])
455
+ end
456
+ unless params['NqaInfo'].nil?
457
+ @NqaInfo = NQAInfo.new
458
+ @NqaInfo.deserialize(params['NqaInfo'])
459
+ end
438
460
  end
439
461
  end
440
462
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.293
4
+ version: 1.0.296
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-04-10 00:00:00.000000000 Z
11
+ date: 2022-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common