tencentcloud-sdk-apm 3.0.556 → 3.0.558
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/v20210622/models.rb +12 -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: c5405675f56f760570f78be8ca45ae2a2c933ce2
|
|
4
|
+
data.tar.gz: 04f02a340e3892c7a7981e385e773037d9fe7b4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4df679986f2869b30f77c4024feff7a4ab9cb2c11f260a0a5da2d3383fbbc9a6920f7663e89b31984e7e5cfa0e5546d16a89c74669e285bfd77ee3ce416ed50e
|
|
7
|
+
data.tar.gz: 4779bbd6fa178f87aafdb34610567c5914c3c05dd16a078ad87c3c34a163e97dba41542d0fcb07a5cd01d517bdca169b9e56b735b2a21689fdde160f37af1d84
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.558
|
data/lib/v20210622/models.rb
CHANGED
|
@@ -230,10 +230,16 @@ module TencentCloud
|
|
|
230
230
|
# @param TotalCount: 该实例已上报的总应用数量
|
|
231
231
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
232
232
|
# @type TotalCount: Integer
|
|
233
|
+
# @param LogSet: CLS日志集 | ES集群ID
|
|
234
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
235
|
+
# @type LogSet: String
|
|
236
|
+
# @param MetricDuration: Metric数据保存时长
|
|
237
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
238
|
+
# @type MetricDuration: Integer
|
|
233
239
|
|
|
234
|
-
attr_accessor :AmountOfUsedStorage, :Name, :Tags, :InstanceId, :CreateUin, :ServiceCount, :CountOfReportSpanPerDay, :AppId, :TraceDuration, :Description, :Status, :Region, :SpanDailyCounters, :BillingInstance, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :LogRegion, :LogSource, :IsRelatedLog, :LogTopicID, :ClientCount, :TotalCount
|
|
240
|
+
attr_accessor :AmountOfUsedStorage, :Name, :Tags, :InstanceId, :CreateUin, :ServiceCount, :CountOfReportSpanPerDay, :AppId, :TraceDuration, :Description, :Status, :Region, :SpanDailyCounters, :BillingInstance, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :LogRegion, :LogSource, :IsRelatedLog, :LogTopicID, :ClientCount, :TotalCount, :LogSet, :MetricDuration
|
|
235
241
|
|
|
236
|
-
def initialize(amountofusedstorage=nil, name=nil, tags=nil, instanceid=nil, createuin=nil, servicecount=nil, countofreportspanperday=nil, appid=nil, traceduration=nil, description=nil, status=nil, region=nil, spandailycounters=nil, billinginstance=nil, errratethreshold=nil, samplerate=nil, errorsample=nil, slowrequestsavedthreshold=nil, logregion=nil, logsource=nil, isrelatedlog=nil, logtopicid=nil, clientcount=nil, totalcount=nil)
|
|
242
|
+
def initialize(amountofusedstorage=nil, name=nil, tags=nil, instanceid=nil, createuin=nil, servicecount=nil, countofreportspanperday=nil, appid=nil, traceduration=nil, description=nil, status=nil, region=nil, spandailycounters=nil, billinginstance=nil, errratethreshold=nil, samplerate=nil, errorsample=nil, slowrequestsavedthreshold=nil, logregion=nil, logsource=nil, isrelatedlog=nil, logtopicid=nil, clientcount=nil, totalcount=nil, logset=nil, metricduration=nil)
|
|
237
243
|
@AmountOfUsedStorage = amountofusedstorage
|
|
238
244
|
@Name = name
|
|
239
245
|
@Tags = tags
|
|
@@ -258,6 +264,8 @@ module TencentCloud
|
|
|
258
264
|
@LogTopicID = logtopicid
|
|
259
265
|
@ClientCount = clientcount
|
|
260
266
|
@TotalCount = totalcount
|
|
267
|
+
@LogSet = logset
|
|
268
|
+
@MetricDuration = metricduration
|
|
261
269
|
end
|
|
262
270
|
|
|
263
271
|
def deserialize(params)
|
|
@@ -292,6 +300,8 @@ module TencentCloud
|
|
|
292
300
|
@LogTopicID = params['LogTopicID']
|
|
293
301
|
@ClientCount = params['ClientCount']
|
|
294
302
|
@TotalCount = params['TotalCount']
|
|
303
|
+
@LogSet = params['LogSet']
|
|
304
|
+
@MetricDuration = params['MetricDuration']
|
|
295
305
|
end
|
|
296
306
|
end
|
|
297
307
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-apm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.558
|
|
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-04-
|
|
11
|
+
date: 2023-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|