tencentcloud-sdk-apm 3.0.722 → 3.0.724

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210622/models.rb +28 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 215688b12b1c29d1b8e29c72d48b431ecba246e2
4
- data.tar.gz: 786c48ce0bafbc735e7c4fe93b61c6326bc54f74
3
+ metadata.gz: ee6731229b730329783aa9c53a3a323efdb89c43
4
+ data.tar.gz: f4cb97a5c88e6e73bf91c0aa4b1cafbb66abc2bc
5
5
  SHA512:
6
- metadata.gz: 7bcfaae6938c43de13b3918a5fef8d3bcb2fee9db3d03e538dba38944042bc26ed5434ef719ebb0cbb08f4f3ff37987a1ab93d577d439ad00e6d77481809c96e
7
- data.tar.gz: 383ce36869b0510d3dd0aa3846de5dace1e079b2015a41be84ea869e4795cca96817718952b9eb483fdd5d1312903f58d452be1a3c512e08018ae2c49d5f470c
6
+ metadata.gz: 1cc5963b63098cf4aa45eb1694dc544a1d542f08a7df2ac67d3e3e0a00419f2fad94abf122e7ffdacb9ff0cef2b7679b47ee27720558013efe987f0eb23b6e9c
7
+ data.tar.gz: b64fb1431b01d6d14e87612c4beb62aa5c5179cb7840e9549f18d5cc746b6dc5ed6dd9ffa60f13d456c2b7b1b94e2e105df5e5f43db4bc6fcd3037c43e6b319c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.722
1
+ 3.0.724
@@ -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.722
4
+ version: 3.0.724
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-06 00:00:00.000000000 Z
11
+ date: 2023-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common