tencentcloud-sdk-monitor 3.0.832 → 3.0.833
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 +14 -4
- 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: 3ff584a19b6fcadc697eeaae92265af8e5ed0449
|
4
|
+
data.tar.gz: 8f456ec104d1dee1ed89ef563b7c89ea3701a027
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c130f5875c343b5038415f7bb9b427fcedc84ecd2158f72678dc9851372f7fa0b431f5f686b06711944c069a4393c91383afd34a9bc642bf6f581165fa569789
|
7
|
+
data.tar.gz: 4bb41179101cb7f5c4bb587ecb4db5dd58a0d3beee43435ed04dc2f20a26d782df47e7d5fe049bc70d974beeaaa02f9b3bab7f8999ce5a5e2c8e44915cde2194
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.833
|
data/lib/v20180724/models.rb
CHANGED
@@ -858,10 +858,13 @@ module TencentCloud
|
|
858
858
|
# @param HierarchicalValue: 告警分级阈值配置
|
859
859
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
860
860
|
# @type HierarchicalValue: :class:`Tencentcloud::Monitor.v20180724.models.AlarmHierarchicalValue`
|
861
|
+
# @param IsLatenessMetric: 是否延迟指标
|
862
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
863
|
+
# @type IsLatenessMetric: Integer
|
861
864
|
|
862
|
-
attr_accessor :MetricName, :Period, :Operator, :Value, :ContinuePeriod, :NoticeFrequency, :IsPowerNotice, :Filter, :Description, :Unit, :RuleType, :IsAdvanced, :IsOpen, :ProductId, :ValueMax, :ValueMin, :HierarchicalValue
|
865
|
+
attr_accessor :MetricName, :Period, :Operator, :Value, :ContinuePeriod, :NoticeFrequency, :IsPowerNotice, :Filter, :Description, :Unit, :RuleType, :IsAdvanced, :IsOpen, :ProductId, :ValueMax, :ValueMin, :HierarchicalValue, :IsLatenessMetric
|
863
866
|
|
864
|
-
def initialize(metricname=nil, period=nil, operator=nil, value=nil, continueperiod=nil, noticefrequency=nil, ispowernotice=nil, filter=nil, description=nil, unit=nil, ruletype=nil, isadvanced=nil, isopen=nil, productid=nil, valuemax=nil, valuemin=nil, hierarchicalvalue=nil)
|
867
|
+
def initialize(metricname=nil, period=nil, operator=nil, value=nil, continueperiod=nil, noticefrequency=nil, ispowernotice=nil, filter=nil, description=nil, unit=nil, ruletype=nil, isadvanced=nil, isopen=nil, productid=nil, valuemax=nil, valuemin=nil, hierarchicalvalue=nil, islatenessmetric=nil)
|
865
868
|
@MetricName = metricname
|
866
869
|
@Period = period
|
867
870
|
@Operator = operator
|
@@ -879,6 +882,7 @@ module TencentCloud
|
|
879
882
|
@ValueMax = valuemax
|
880
883
|
@ValueMin = valuemin
|
881
884
|
@HierarchicalValue = hierarchicalvalue
|
885
|
+
@IsLatenessMetric = islatenessmetric
|
882
886
|
end
|
883
887
|
|
884
888
|
def deserialize(params)
|
@@ -905,6 +909,7 @@ module TencentCloud
|
|
905
909
|
@HierarchicalValue = AlarmHierarchicalValue.new
|
906
910
|
@HierarchicalValue.deserialize(params['HierarchicalValue'])
|
907
911
|
end
|
912
|
+
@IsLatenessMetric = params['IsLatenessMetric']
|
908
913
|
end
|
909
914
|
end
|
910
915
|
|
@@ -10094,10 +10099,13 @@ module TencentCloud
|
|
10094
10099
|
# @param Periods: 指标触发
|
10095
10100
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10096
10101
|
# @type Periods: Array
|
10102
|
+
# @param IsLatenessMetric: 是否延迟指标
|
10103
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10104
|
+
# @type IsLatenessMetric: Integer
|
10097
10105
|
|
10098
|
-
attr_accessor :Namespace, :MetricName, :Description, :Min, :Max, :Dimensions, :Unit, :MetricConfig, :IsAdvanced, :IsOpen, :ProductId, :Operators, :Periods
|
10106
|
+
attr_accessor :Namespace, :MetricName, :Description, :Min, :Max, :Dimensions, :Unit, :MetricConfig, :IsAdvanced, :IsOpen, :ProductId, :Operators, :Periods, :IsLatenessMetric
|
10099
10107
|
|
10100
|
-
def initialize(namespace=nil, metricname=nil, description=nil, min=nil, max=nil, dimensions=nil, unit=nil, metricconfig=nil, isadvanced=nil, isopen=nil, productid=nil, operators=nil, periods=nil)
|
10108
|
+
def initialize(namespace=nil, metricname=nil, description=nil, min=nil, max=nil, dimensions=nil, unit=nil, metricconfig=nil, isadvanced=nil, isopen=nil, productid=nil, operators=nil, periods=nil, islatenessmetric=nil)
|
10101
10109
|
@Namespace = namespace
|
10102
10110
|
@MetricName = metricname
|
10103
10111
|
@Description = description
|
@@ -10111,6 +10119,7 @@ module TencentCloud
|
|
10111
10119
|
@ProductId = productid
|
10112
10120
|
@Operators = operators
|
10113
10121
|
@Periods = periods
|
10122
|
+
@IsLatenessMetric = islatenessmetric
|
10114
10123
|
end
|
10115
10124
|
|
10116
10125
|
def deserialize(params)
|
@@ -10137,6 +10146,7 @@ module TencentCloud
|
|
10137
10146
|
end
|
10138
10147
|
end
|
10139
10148
|
@Periods = params['Periods']
|
10149
|
+
@IsLatenessMetric = params['IsLatenessMetric']
|
10140
10150
|
end
|
10141
10151
|
end
|
10142
10152
|
|
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.833
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|