tencentcloud-sdk-apm 1.0.337 → 1.0.338
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 +13 -3
- 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: 8b69e1a8b5783b5b76032c1f23efcd53cfe23e91
|
4
|
+
data.tar.gz: eb36714692607980280af4a415e29b39adbc25a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d4897b3e6032e39c9a08b52d59dc81237ed1b45ce1594fe48f3a5fd51230c3568560c4d94e0ded43154803da719d8c476c306203d9bd297fbf7e81e9f410ca9
|
7
|
+
data.tar.gz: 2e45bb7ce094f479091bf2a10070a6a0ab782be610ac5819160faec6a0d56437dec0fa2ce83057383a3877c57e81f454e4b501e0b72c4f7f533a9751a8f2c8ad
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.338
|
data/lib/v20210622/models.rb
CHANGED
@@ -140,7 +140,7 @@ module TencentCloud
|
|
140
140
|
# @param CreateUin: 创建人Uin
|
141
141
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
142
142
|
# @type CreateUin: String
|
143
|
-
# @param ServiceCount:
|
143
|
+
# @param ServiceCount: 该实例已上报的服务端应用数量
|
144
144
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
145
145
|
# @type ServiceCount: Integer
|
146
146
|
# @param CountOfReportSpanPerDay: 日均上报Span数
|
@@ -190,10 +190,16 @@ module TencentCloud
|
|
190
190
|
# @param LogTopicID: 日志主题ID
|
191
191
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
192
192
|
# @type LogTopicID: String
|
193
|
+
# @param ClientCount: 该实例已上报的客户端应用数量
|
194
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
195
|
+
# @type ClientCount: Integer
|
196
|
+
# @param TotalCount: 该实例已上报的总应用数量
|
197
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
198
|
+
# @type TotalCount: Integer
|
193
199
|
|
194
|
-
attr_accessor :AmountOfUsedStorage, :Name, :Tags, :InstanceId, :CreateUin, :ServiceCount, :CountOfReportSpanPerDay, :AppId, :TraceDuration, :Description, :Status, :Region, :SpanDailyCounters, :BillingInstance, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :LogRegion, :LogSource, :IsRelatedLog, :LogTopicID
|
200
|
+
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
|
195
201
|
|
196
|
-
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)
|
202
|
+
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)
|
197
203
|
@AmountOfUsedStorage = amountofusedstorage
|
198
204
|
@Name = name
|
199
205
|
@Tags = tags
|
@@ -216,6 +222,8 @@ module TencentCloud
|
|
216
222
|
@LogSource = logsource
|
217
223
|
@IsRelatedLog = isrelatedlog
|
218
224
|
@LogTopicID = logtopicid
|
225
|
+
@ClientCount = clientcount
|
226
|
+
@TotalCount = totalcount
|
219
227
|
end
|
220
228
|
|
221
229
|
def deserialize(params)
|
@@ -248,6 +256,8 @@ module TencentCloud
|
|
248
256
|
@LogSource = params['LogSource']
|
249
257
|
@IsRelatedLog = params['IsRelatedLog']
|
250
258
|
@LogTopicID = params['LogTopicID']
|
259
|
+
@ClientCount = params['ClientCount']
|
260
|
+
@TotalCount = params['TotalCount']
|
251
261
|
end
|
252
262
|
end
|
253
263
|
|