tencentcloud-sdk-dc 1.0.294 → 1.0.295
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/v20180410/models.rb +24 -2
- 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: a3ac3bfed8a70866b78a99aab9ad98cdd52ebb54
|
4
|
+
data.tar.gz: 816bed02169a535255cacdf7e281dd492ea87f4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e78b5f442fc17affbbe2cab0f8b4113079d24744685c0951d69888bab09c56c03815b597fb3c0488d95b71a27d768d141f55f8f41fc1094999e636aab70a420
|
7
|
+
data.tar.gz: 3979496f97c1d0735a74213f298a788d29a64ad17ff30b144ad98ac204eb7296d2ba470e4d59d011c215ec26490f3ef2c025f4717d0c4adf563ec28c73d59725
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.295
|
data/lib/v20180410/models.rb
CHANGED
@@ -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.
|
4
|
+
version: 1.0.295
|
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-
|
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
|