tencentcloud-sdk-rum 3.0.467 → 3.0.469
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 +17 -4
- 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: e5f9cc332ea84b2ef915c87d27859e4d40ceec8d
|
4
|
+
data.tar.gz: d3098c8979adb78e1f9a8fd397bda11f3d17e8a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d10401ab1d10d40ff02a2bc696555f97132c2394cb63eab6e4f33fa268310a893cbe7dc866acaa08031040c5ee25403a964c2a15f007c3bd22828633e346e2ee
|
7
|
+
data.tar.gz: a7216f90c03f37c3e9dc53ed3eff7d5c5bfcf94b389f985887859c78a048a6e787e34fa7fcd63b4f0822c9be8be90968a0cea5847e5ab3154cae021205d07e25
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.469
|
data/lib/v20210622/models.rb
CHANGED
@@ -292,10 +292,14 @@ module TencentCloud
|
|
292
292
|
# @type PeriodRetain: String
|
293
293
|
# @param BuyingChannel: 实例购买渠道("cdn" 等)
|
294
294
|
# @type BuyingChannel: String
|
295
|
+
# @param ResourcePackageType: 预付费资源包类型(仅预付费需要)
|
296
|
+
# @type ResourcePackageType: Integer
|
297
|
+
# @param ResourcePackageNum: 预付费资源包数量(仅预付费需要)
|
298
|
+
# @type ResourcePackageNum: Integer
|
295
299
|
|
296
|
-
attr_accessor :AreaId, :ChargeType, :DataRetentionDays, :InstanceName, :Tags, :InstanceDesc, :CountNum, :PeriodRetain, :BuyingChannel
|
300
|
+
attr_accessor :AreaId, :ChargeType, :DataRetentionDays, :InstanceName, :Tags, :InstanceDesc, :CountNum, :PeriodRetain, :BuyingChannel, :ResourcePackageType, :ResourcePackageNum
|
297
301
|
|
298
|
-
def initialize(areaid=nil, chargetype=nil, dataretentiondays=nil, instancename=nil, tags=nil, instancedesc=nil, countnum=nil, periodretain=nil, buyingchannel=nil)
|
302
|
+
def initialize(areaid=nil, chargetype=nil, dataretentiondays=nil, instancename=nil, tags=nil, instancedesc=nil, countnum=nil, periodretain=nil, buyingchannel=nil, resourcepackagetype=nil, resourcepackagenum=nil)
|
299
303
|
@AreaId = areaid
|
300
304
|
@ChargeType = chargetype
|
301
305
|
@DataRetentionDays = dataretentiondays
|
@@ -305,6 +309,8 @@ module TencentCloud
|
|
305
309
|
@CountNum = countnum
|
306
310
|
@PeriodRetain = periodretain
|
307
311
|
@BuyingChannel = buyingchannel
|
312
|
+
@ResourcePackageType = resourcepackagetype
|
313
|
+
@ResourcePackageNum = resourcepackagenum
|
308
314
|
end
|
309
315
|
|
310
316
|
def deserialize(params)
|
@@ -324,6 +330,8 @@ module TencentCloud
|
|
324
330
|
@CountNum = params['CountNum']
|
325
331
|
@PeriodRetain = params['PeriodRetain']
|
326
332
|
@BuyingChannel = params['BuyingChannel']
|
333
|
+
@ResourcePackageType = params['ResourcePackageType']
|
334
|
+
@ResourcePackageNum = params['ResourcePackageNum']
|
327
335
|
end
|
328
336
|
end
|
329
337
|
|
@@ -331,18 +339,23 @@ module TencentCloud
|
|
331
339
|
class CreateTawInstanceResponse < TencentCloud::Common::AbstractModel
|
332
340
|
# @param InstanceId: 实例Id
|
333
341
|
# @type InstanceId: String
|
342
|
+
# @param DealName: 预付费订单 id
|
343
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
344
|
+
# @type DealName: String
|
334
345
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
335
346
|
# @type RequestId: String
|
336
347
|
|
337
|
-
attr_accessor :InstanceId, :RequestId
|
348
|
+
attr_accessor :InstanceId, :DealName, :RequestId
|
338
349
|
|
339
|
-
def initialize(instanceid=nil, requestid=nil)
|
350
|
+
def initialize(instanceid=nil, dealname=nil, requestid=nil)
|
340
351
|
@InstanceId = instanceid
|
352
|
+
@DealName = dealname
|
341
353
|
@RequestId = requestid
|
342
354
|
end
|
343
355
|
|
344
356
|
def deserialize(params)
|
345
357
|
@InstanceId = params['InstanceId']
|
358
|
+
@DealName = params['DealName']
|
346
359
|
@RequestId = params['RequestId']
|
347
360
|
end
|
348
361
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-rum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.469
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|