tencentcloud-sdk-pts 3.0.1062 → 3.0.1063
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/v20210728/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13f8a5ae50864680ce071a6c0e58f89874ec2b8c
|
4
|
+
data.tar.gz: 49df36ae28297020e4323cbd90783a4fb2261ffc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e1b8f2a0107778d48a19210075b2297d0586a527ea5ab5f62fbb3bfe4081f297908cc08aaafee832adb40f14d381fe502f7b6424548621f3bb4846b391b8f1b
|
7
|
+
data.tar.gz: 05c948d9befe2135bd521c85d662af8daeb2b122f3029db3c5f7f8a80630d1bb9e908e347f7ce6d17d8de548d26b90892b1728afad9f86594a8389599f2c0651
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1063
|
data/lib/v20210728/models.rb
CHANGED
@@ -1054,14 +1054,17 @@ module TencentCloud
|
|
1054
1054
|
# @param Streams: 指标序列数组
|
1055
1055
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1056
1056
|
# @type Streams: Array
|
1057
|
+
# @param Step: 两个时间点的时间间隔,单位纳秒
|
1058
|
+
# @type Step: Integer
|
1057
1059
|
|
1058
|
-
attr_accessor :Metric, :Aggregation, :Unit, :Streams
|
1060
|
+
attr_accessor :Metric, :Aggregation, :Unit, :Streams, :Step
|
1059
1061
|
|
1060
|
-
def initialize(metric=nil, aggregation=nil, unit=nil, streams=nil)
|
1062
|
+
def initialize(metric=nil, aggregation=nil, unit=nil, streams=nil, step=nil)
|
1061
1063
|
@Metric = metric
|
1062
1064
|
@Aggregation = aggregation
|
1063
1065
|
@Unit = unit
|
1064
1066
|
@Streams = streams
|
1067
|
+
@Step = step
|
1065
1068
|
end
|
1066
1069
|
|
1067
1070
|
def deserialize(params)
|
@@ -1076,6 +1079,7 @@ module TencentCloud
|
|
1076
1079
|
@Streams << samplestream_tmp
|
1077
1080
|
end
|
1078
1081
|
end
|
1082
|
+
@Step = params['Step']
|
1079
1083
|
end
|
1080
1084
|
end
|
1081
1085
|
|