tencentcloud-sdk-mna 3.0.514 → 3.0.515

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210119/models.rb +37 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b6e2957105e32249a34a2821f831940bef7eb9e2
4
- data.tar.gz: 5a34e852be13c00bddaf3661a1a4f32646d93840
3
+ metadata.gz: 7b70324f7e56230b459377e86c6f81857d1e80f1
4
+ data.tar.gz: be71087c7d9e00ae0d5fdb90b504c31229bbddb0
5
5
  SHA512:
6
- metadata.gz: 927f7bf271f1cc404f3ce3b8ece6274bff5b1160db9fa76ffa65a712fd417898d9b6169292c8643cb301764e9da9d08f2bcc0a3fd836b510422e5a00b7d6b448
7
- data.tar.gz: 9706e82097ac82423d43b0bb6ff1878b1053655aee7965a0878169efd996ea157d1d0e22733972c7cf998f8cd351d60eee74e4c404a1ffa6fbfa4c1ea35b1791
6
+ metadata.gz: bfdd4d0ea4fee636b1de9ee0aa70c6ec0199dec323e7c3029a121e83353835df8bd6d8d30e0f836ae7bf8ba72df34de5ef8bf05c99f8268c88ae160073df016c
7
+ data.tar.gz: 9d77f9eb1cbbf598fe93e0733f6799d832998a6d50feb809d7adc3a808e76851b702d93f3ccbc5aa5adf8dbd27403a0482fb907cd61a0138c1f4529852af7374
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.514
1
+ 3.0.515
@@ -445,12 +445,24 @@ module TencentCloud
445
445
  # @param DeviceNetInfo: 设备网络信息
446
446
  # 注意:此字段可能返回 null,表示取不到有效值。
447
447
  # @type DeviceNetInfo: Array
448
+ # @param GatewaySite: 聚合服务器地址
449
+ # 注意:此字段可能返回 null,表示取不到有效值。
450
+ # @type GatewaySite: String
451
+ # @param BusinessDownRate: 业务下行速率
452
+ # 注意:此字段可能返回 null,表示取不到有效值。
453
+ # @type BusinessDownRate: Float
454
+ # @param BusinessUpRate: 业务上行速率
455
+ # 注意:此字段可能返回 null,表示取不到有效值。
456
+ # @type BusinessUpRate: Float
448
457
 
449
- attr_accessor :DeviceBaseInfo, :DeviceNetInfo
458
+ attr_accessor :DeviceBaseInfo, :DeviceNetInfo, :GatewaySite, :BusinessDownRate, :BusinessUpRate
450
459
 
451
- def initialize(devicebaseinfo=nil, devicenetinfo=nil)
460
+ def initialize(devicebaseinfo=nil, devicenetinfo=nil, gatewaysite=nil, businessdownrate=nil, businessuprate=nil)
452
461
  @DeviceBaseInfo = devicebaseinfo
453
462
  @DeviceNetInfo = devicenetinfo
463
+ @GatewaySite = gatewaysite
464
+ @BusinessDownRate = businessdownrate
465
+ @BusinessUpRate = businessuprate
454
466
  end
455
467
 
456
468
  def deserialize(params)
@@ -466,6 +478,9 @@ module TencentCloud
466
478
  @DeviceNetInfo << devicenetinfo_tmp
467
479
  end
468
480
  end
481
+ @GatewaySite = params['GatewaySite']
482
+ @BusinessDownRate = params['BusinessDownRate']
483
+ @BusinessUpRate = params['BusinessUpRate']
469
484
  end
470
485
  end
471
486
 
@@ -567,10 +582,16 @@ module TencentCloud
567
582
  # @param NetInfoName: 网卡名
568
583
  # 注意:此字段可能返回 null,表示取不到有效值。
569
584
  # @type NetInfoName: String
585
+ # @param DownRate: 下行实时速率(浮点数类型代替上一版本DataRx的整型)
586
+ # 注意:此字段可能返回 null,表示取不到有效值。
587
+ # @type DownRate: Float
588
+ # @param UpRate: 上行实时速率(浮点数类型代替上一版本TxRate的整型)
589
+ # 注意:此字段可能返回 null,表示取不到有效值。
590
+ # @type UpRate: Float
570
591
 
571
- attr_accessor :Type, :DataEnable, :UploadLimit, :DownloadLimit, :DataRx, :DataTx, :Vendor, :State, :PublicIp, :SignalStrength, :Rat, :NetInfoName
592
+ attr_accessor :Type, :DataEnable, :UploadLimit, :DownloadLimit, :DataRx, :DataTx, :Vendor, :State, :PublicIp, :SignalStrength, :Rat, :NetInfoName, :DownRate, :UpRate
572
593
 
573
- def initialize(type=nil, dataenable=nil, uploadlimit=nil, downloadlimit=nil, datarx=nil, datatx=nil, vendor=nil, state=nil, publicip=nil, signalstrength=nil, rat=nil, netinfoname=nil)
594
+ def initialize(type=nil, dataenable=nil, uploadlimit=nil, downloadlimit=nil, datarx=nil, datatx=nil, vendor=nil, state=nil, publicip=nil, signalstrength=nil, rat=nil, netinfoname=nil, downrate=nil, uprate=nil)
574
595
  @Type = type
575
596
  @DataEnable = dataenable
576
597
  @UploadLimit = uploadlimit
@@ -583,6 +604,8 @@ module TencentCloud
583
604
  @SignalStrength = signalstrength
584
605
  @Rat = rat
585
606
  @NetInfoName = netinfoname
607
+ @DownRate = downrate
608
+ @UpRate = uprate
586
609
  end
587
610
 
588
611
  def deserialize(params)
@@ -598,6 +621,8 @@ module TencentCloud
598
621
  @SignalStrength = params['SignalStrength']
599
622
  @Rat = params['Rat']
600
623
  @NetInfoName = params['NetInfoName']
624
+ @DownRate = params['DownRate']
625
+ @UpRate = params['UpRate']
601
626
  end
602
627
  end
603
628
 
@@ -725,7 +750,7 @@ module TencentCloud
725
750
 
726
751
  # GetFlowStatistic请求参数结构体
727
752
  class GetFlowStatisticRequest < TencentCloud::Common::AbstractModel
728
- # @param DeviceId: 设备ID,ID="-1"时默认查找所有设备
753
+ # @param DeviceId: 设备ID
729
754
  # @type DeviceId: String
730
755
  # @param BeginTime: 开始查找时间
731
756
  # @type BeginTime: Integer
@@ -827,7 +852,7 @@ module TencentCloud
827
852
 
828
853
  # GetStatisticData请求参数结构体
829
854
  class GetStatisticDataRequest < TencentCloud::Common::AbstractModel
830
- # @param DeviceId: 设备ID,设备ID="-1"获取所有设备流量统计
855
+ # @param DeviceId: 设备ID
831
856
  # @type DeviceId: String
832
857
  # @param BeginTime: 统计开始时间,单位:s
833
858
  # @type BeginTime: Integer
@@ -877,21 +902,21 @@ module TencentCloud
877
902
 
878
903
  # 网络详细信息
879
904
  class NetDetails < TencentCloud::Common::AbstractModel
880
- # @param Time: 时间点,单位:s
881
- # @type Time: String
882
905
  # @param Current: 流量值(bit)
883
906
  # @type Current: Float
907
+ # @param Time: 时间点,单位:s
908
+ # @type Time: String
884
909
 
885
- attr_accessor :Time, :Current
910
+ attr_accessor :Current, :Time
886
911
 
887
- def initialize(time=nil, current=nil)
888
- @Time = time
912
+ def initialize(current=nil, time=nil)
889
913
  @Current = current
914
+ @Time = time
890
915
  end
891
916
 
892
917
  def deserialize(params)
893
- @Time = params['Time']
894
918
  @Current = params['Current']
919
+ @Time = params['Time']
895
920
  end
896
921
  end
897
922
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-mna
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.514
4
+ version: 3.0.515
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-22 00:00:00.000000000 Z
11
+ date: 2023-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common