tencentcloud-sdk-monitor 3.0.381 → 3.0.384
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180724/models.rb +37 -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: b540cf1211ed61433de3a36110d4987c5d961234
|
4
|
+
data.tar.gz: 39dda41189aa108037b98395b877ccc3bb5b6d36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94716e6acb91f94579669cb301391b0d1a544317a27e3225d4cdcbb5f3c2b3fb8f5f3ccaca32b6afbe55e5ffb05a62e150b846d08128de41870c655dd47ecc51
|
7
|
+
data.tar.gz: dabb3c6a59cd7f8f0ef1a848699a11e97d58a78e95a2c7462bfc9ceda4da18cc9b2f235af0d9d8b1381af2d5ed088c3ab9c8333765ffb16ebbdc7e1b8ea86680
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.384
|
data/lib/v20180724/models.rb
CHANGED
@@ -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.
|
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-
|
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
|