tencentcloud-sdk-tbaas 3.0.709 → 3.0.710
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/v20180416/models.rb +18 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c6a64b90eaa7e9d4a7a62a1cac5614da79514f2
|
4
|
+
data.tar.gz: f5a210dc380ed90289921805d7aee0da0863df87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1149b71c04431ecb741d90da8f4a50afd0f11a4af3c8fdd5bed978dc9644fa0173d8ae6540fa3485f2a16cbf085fe95859d7b4697957b6171c891c082683a5d8
|
7
|
+
data.tar.gz: c6ad1718748a4e7cc301b068a0ba94e8d50ed4d15aece6f915ab1daf0633687e70a664d9daa60c4a3efdb5f155c0180ec6c78af40c32cd4f5f88f726d80c7047
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.710
|
data/lib/v20180416/models.rb
CHANGED
@@ -454,20 +454,27 @@ module TencentCloud
|
|
454
454
|
# @type CertName: String
|
455
455
|
# @param CertCtx: 证书内容
|
456
456
|
# @type CertCtx: String
|
457
|
+
# @param Cert: 证书内容
|
458
|
+
# @type Cert: String
|
457
459
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
458
460
|
# @type RequestId: String
|
459
461
|
|
460
|
-
attr_accessor :CertName, :CertCtx, :RequestId
|
462
|
+
attr_accessor :CertName, :CertCtx, :Cert, :RequestId
|
463
|
+
extend Gem::Deprecate
|
464
|
+
deprecate :CertCtx, :none, 2023, 11
|
465
|
+
deprecate :CertCtx=, :none, 2023, 11
|
461
466
|
|
462
|
-
def initialize(certname=nil, certctx=nil, requestid=nil)
|
467
|
+
def initialize(certname=nil, certctx=nil, cert=nil, requestid=nil)
|
463
468
|
@CertName = certname
|
464
469
|
@CertCtx = certctx
|
470
|
+
@Cert = cert
|
465
471
|
@RequestId = requestid
|
466
472
|
end
|
467
473
|
|
468
474
|
def deserialize(params)
|
469
475
|
@CertName = params['CertName']
|
470
476
|
@CertCtx = params['CertCtx']
|
477
|
+
@Cert = params['Cert']
|
471
478
|
@RequestId = params['RequestId']
|
472
479
|
end
|
473
480
|
end
|
@@ -1356,20 +1363,27 @@ module TencentCloud
|
|
1356
1363
|
# @type Txid: String
|
1357
1364
|
# @param Events: 交易执行结果
|
1358
1365
|
# @type Events: String
|
1366
|
+
# @param TxId: 交易ID
|
1367
|
+
# @type TxId: String
|
1359
1368
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1360
1369
|
# @type RequestId: String
|
1361
1370
|
|
1362
|
-
attr_accessor :Txid, :Events, :RequestId
|
1371
|
+
attr_accessor :Txid, :Events, :TxId, :RequestId
|
1372
|
+
extend Gem::Deprecate
|
1373
|
+
deprecate :Txid, :none, 2023, 11
|
1374
|
+
deprecate :Txid=, :none, 2023, 11
|
1363
1375
|
|
1364
|
-
def initialize(txid=nil, events=nil, requestid=nil)
|
1376
|
+
def initialize(txid=nil, events=nil, txid=nil, requestid=nil)
|
1365
1377
|
@Txid = txid
|
1366
1378
|
@Events = events
|
1379
|
+
@TxId = txid
|
1367
1380
|
@RequestId = requestid
|
1368
1381
|
end
|
1369
1382
|
|
1370
1383
|
def deserialize(params)
|
1371
1384
|
@Txid = params['Txid']
|
1372
1385
|
@Events = params['Events']
|
1386
|
+
@TxId = params['TxId']
|
1373
1387
|
@RequestId = params['RequestId']
|
1374
1388
|
end
|
1375
1389
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tbaas
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.710
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20180416/models.rb
|
37
|
-
- lib/v20180416/client.rb
|
38
36
|
- lib/tencentcloud-sdk-tbaas.rb
|
37
|
+
- lib/v20180416/client.rb
|
38
|
+
- lib/v20180416/models.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|