tencentcloud-sdk-monitor 3.0.381 → 3.0.384

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/v20180724/models.rb +37 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 33c3f1e99858bbe878aaa04b84faa1c1aa5182f4
4
- data.tar.gz: 213c679f729922a63b87c4d071cb451e46e3dd5a
3
+ metadata.gz: b540cf1211ed61433de3a36110d4987c5d961234
4
+ data.tar.gz: 39dda41189aa108037b98395b877ccc3bb5b6d36
5
5
  SHA512:
6
- metadata.gz: f4359b5d21baee7d7efa9206cd23e6e617b7616b6884f8d108b8789ca27a1ceebf455c61909b11466250a5309e90525212cca102f9d2eb16adb5abccdead9230
7
- data.tar.gz: cd114faaee20bf0fbcdb7551e829e025316863b12bf5acb51845da96aebbe616683c73cc41aaf4ba234ee34d264f3435fe7702cd1a5e8ba5ac1d933256b27614
6
+ metadata.gz: 94716e6acb91f94579669cb301391b0d1a544317a27e3225d4cdcbb5f3c2b3fb8f5f3ccaca32b6afbe55e5ffb05a62e150b846d08128de41870c655dd47ecc51
7
+ data.tar.gz: dabb3c6a59cd7f8f0ef1a848699a11e97d58a78e95a2c7462bfc9ceda4da18cc9b2f235af0d9d8b1381af2d5ed088c3ab9c8333765ffb16ebbdc7e1b8ea86680
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.381
1
+ 3.0.384
@@ -3651,18 +3651,29 @@ module TencentCloud
3651
3651
  class DescribeMonitorTypesResponse < TencentCloud::Common::AbstractModel
3652
3652
  # @param MonitorTypes: 监控类型,云产品监控为 MT_QCE
3653
3653
  # @type MonitorTypes: Array
3654
+ # @param MonitorTypeInfos: 监控类型详情
3655
+ # @type MonitorTypeInfos: Array
3654
3656
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3655
3657
  # @type RequestId: String
3656
3658
 
3657
- attr_accessor :MonitorTypes, :RequestId
3659
+ attr_accessor :MonitorTypes, :MonitorTypeInfos, :RequestId
3658
3660
 
3659
- def initialize(monitortypes=nil, requestid=nil)
3661
+ def initialize(monitortypes=nil, monitortypeinfos=nil, requestid=nil)
3660
3662
  @MonitorTypes = monitortypes
3663
+ @MonitorTypeInfos = monitortypeinfos
3661
3664
  @RequestId = requestid
3662
3665
  end
3663
3666
 
3664
3667
  def deserialize(params)
3665
3668
  @MonitorTypes = params['MonitorTypes']
3669
+ unless params['MonitorTypeInfos'].nil?
3670
+ @MonitorTypeInfos = []
3671
+ params['MonitorTypeInfos'].each do |i|
3672
+ monitortypeinfo_tmp = MonitorTypeInfo.new
3673
+ monitortypeinfo_tmp.deserialize(i)
3674
+ @MonitorTypeInfos << monitortypeinfo_tmp
3675
+ end
3676
+ end
3666
3677
  @RequestId = params['RequestId']
3667
3678
  end
3668
3679
  end
@@ -6800,6 +6811,30 @@ module TencentCloud
6800
6811
  end
6801
6812
  end
6802
6813
 
6814
+ # 监控类型详细信息
6815
+ class MonitorTypeInfo < TencentCloud::Common::AbstractModel
6816
+ # @param Id: 监控类型ID
6817
+ # @type Id: String
6818
+ # @param Name: 监控类型
6819
+ # @type Name: String
6820
+ # @param SortId: 排列顺序
6821
+ # @type SortId: Integer
6822
+
6823
+ attr_accessor :Id, :Name, :SortId
6824
+
6825
+ def initialize(id=nil, name=nil, sortid=nil)
6826
+ @Id = id
6827
+ @Name = name
6828
+ @SortId = sortid
6829
+ end
6830
+
6831
+ def deserialize(params)
6832
+ @Id = params['Id']
6833
+ @Name = params['Name']
6834
+ @SortId = params['SortId']
6835
+ end
6836
+ end
6837
+
6803
6838
  # 策略类型
6804
6839
  class MonitorTypeNamespace < TencentCloud::Common::AbstractModel
6805
6840
  # @param MonitorType: 监控类型
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-monitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.381
4
+ version: 3.0.384
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-05 00:00:00.000000000 Z
11
+ date: 2022-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common