tencentcloud-sdk-apm 3.0.722 → 3.0.723
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210622/models.rb +28 -6
- 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: 445e80d1f526fbb83cedeb37e5c55e1976ce6add
|
4
|
+
data.tar.gz: 92322d75f254ac7adb688b524ba0716762166555
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 553a2b2ca6b83aa778bace9c3a0d9019760c67f8ce0788ffa9ef3c553b1f947b37fd5ce0d910a9eb3286f534fb11975ab9e7ad4e65d0ce3145ccd980c2f7e309
|
7
|
+
data.tar.gz: 452ac9a4caec8e0596c51ae1e1e0cba5ee67f532caf19d03992bf3c786691eaa63053a01d8dd4cc09b93a6d1bc45162805b15a2d26b2480eecad508761aec52e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.723
|
data/lib/v20210622/models.rb
CHANGED
@@ -239,10 +239,18 @@ module TencentCloud
|
|
239
239
|
# @param CustomShowTags: 用户自定义展示标签列表
|
240
240
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
241
241
|
# @type CustomShowTags: Array
|
242
|
+
# @param PayMode: 实例计费模式
|
243
|
+
# 1为预付费
|
244
|
+
# 0为按量付费
|
245
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
246
|
+
# @type PayMode: Integer
|
247
|
+
# @param PayModeEffective: 实例计费模式是否生效
|
248
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
249
|
+
# @type PayModeEffective: Boolean
|
242
250
|
|
243
|
-
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, :CustomShowTags
|
251
|
+
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, :CustomShowTags, :PayMode, :PayModeEffective
|
244
252
|
|
245
|
-
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, customshowtags=nil)
|
253
|
+
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, customshowtags=nil, paymode=nil, paymodeeffective=nil)
|
246
254
|
@AmountOfUsedStorage = amountofusedstorage
|
247
255
|
@Name = name
|
248
256
|
@Tags = tags
|
@@ -270,6 +278,8 @@ module TencentCloud
|
|
270
278
|
@LogSet = logset
|
271
279
|
@MetricDuration = metricduration
|
272
280
|
@CustomShowTags = customshowtags
|
281
|
+
@PayMode = paymode
|
282
|
+
@PayModeEffective = paymodeeffective
|
273
283
|
end
|
274
284
|
|
275
285
|
def deserialize(params)
|
@@ -307,6 +317,8 @@ module TencentCloud
|
|
307
317
|
@LogSet = params['LogSet']
|
308
318
|
@MetricDuration = params['MetricDuration']
|
309
319
|
@CustomShowTags = params['CustomShowTags']
|
320
|
+
@PayMode = params['PayMode']
|
321
|
+
@PayModeEffective = params['PayModeEffective']
|
310
322
|
end
|
311
323
|
end
|
312
324
|
|
@@ -376,15 +388,18 @@ module TencentCloud
|
|
376
388
|
# @type Tags: Array
|
377
389
|
# @param SpanDailyCounters: 实例上报额度值
|
378
390
|
# @type SpanDailyCounters: Integer
|
391
|
+
# @param PayMode: 实例的计费模式
|
392
|
+
# @type PayMode: Integer
|
379
393
|
|
380
|
-
attr_accessor :Name, :Description, :TraceDuration, :Tags, :SpanDailyCounters
|
394
|
+
attr_accessor :Name, :Description, :TraceDuration, :Tags, :SpanDailyCounters, :PayMode
|
381
395
|
|
382
|
-
def initialize(name=nil, description=nil, traceduration=nil, tags=nil, spandailycounters=nil)
|
396
|
+
def initialize(name=nil, description=nil, traceduration=nil, tags=nil, spandailycounters=nil, paymode=nil)
|
383
397
|
@Name = name
|
384
398
|
@Description = description
|
385
399
|
@TraceDuration = traceduration
|
386
400
|
@Tags = tags
|
387
401
|
@SpanDailyCounters = spandailycounters
|
402
|
+
@PayMode = paymode
|
388
403
|
end
|
389
404
|
|
390
405
|
def deserialize(params)
|
@@ -400,6 +415,7 @@ module TencentCloud
|
|
400
415
|
end
|
401
416
|
end
|
402
417
|
@SpanDailyCounters = params['SpanDailyCounters']
|
418
|
+
@PayMode = params['PayMode']
|
403
419
|
end
|
404
420
|
end
|
405
421
|
|
@@ -1075,10 +1091,14 @@ module TencentCloud
|
|
1075
1091
|
# @type LogSource: String
|
1076
1092
|
# @param CustomShowTags: 用户自定义展示标签列表
|
1077
1093
|
# @type CustomShowTags: Array
|
1094
|
+
# @param PayMode: 修改计费模式
|
1095
|
+
# 1为预付费
|
1096
|
+
# 0为按量付费
|
1097
|
+
# @type PayMode: Integer
|
1078
1098
|
|
1079
|
-
attr_accessor :InstanceId, :Name, :Tags, :Description, :TraceDuration, :OpenBilling, :SpanDailyCounters, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :IsRelatedLog, :LogRegion, :LogTopicID, :LogSet, :LogSource, :CustomShowTags
|
1099
|
+
attr_accessor :InstanceId, :Name, :Tags, :Description, :TraceDuration, :OpenBilling, :SpanDailyCounters, :ErrRateThreshold, :SampleRate, :ErrorSample, :SlowRequestSavedThreshold, :IsRelatedLog, :LogRegion, :LogTopicID, :LogSet, :LogSource, :CustomShowTags, :PayMode
|
1080
1100
|
|
1081
|
-
def initialize(instanceid=nil, name=nil, tags=nil, description=nil, traceduration=nil, openbilling=nil, spandailycounters=nil, errratethreshold=nil, samplerate=nil, errorsample=nil, slowrequestsavedthreshold=nil, isrelatedlog=nil, logregion=nil, logtopicid=nil, logset=nil, logsource=nil, customshowtags=nil)
|
1101
|
+
def initialize(instanceid=nil, name=nil, tags=nil, description=nil, traceduration=nil, openbilling=nil, spandailycounters=nil, errratethreshold=nil, samplerate=nil, errorsample=nil, slowrequestsavedthreshold=nil, isrelatedlog=nil, logregion=nil, logtopicid=nil, logset=nil, logsource=nil, customshowtags=nil, paymode=nil)
|
1082
1102
|
@InstanceId = instanceid
|
1083
1103
|
@Name = name
|
1084
1104
|
@Tags = tags
|
@@ -1096,6 +1116,7 @@ module TencentCloud
|
|
1096
1116
|
@LogSet = logset
|
1097
1117
|
@LogSource = logsource
|
1098
1118
|
@CustomShowTags = customshowtags
|
1119
|
+
@PayMode = paymode
|
1099
1120
|
end
|
1100
1121
|
|
1101
1122
|
def deserialize(params)
|
@@ -1123,6 +1144,7 @@ module TencentCloud
|
|
1123
1144
|
@LogSet = params['LogSet']
|
1124
1145
|
@LogSource = params['LogSource']
|
1125
1146
|
@CustomShowTags = params['CustomShowTags']
|
1147
|
+
@PayMode = params['PayMode']
|
1126
1148
|
end
|
1127
1149
|
end
|
1128
1150
|
|
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.723
|
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-12-
|
11
|
+
date: 2023-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|