tencentcloud-sdk-tbaas 3.0.709 → 3.0.711
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/v20180416/models.rb +18 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: acc42ed38e9c8b6c17ad5cc748e596f759c7ad3e
|
4
|
+
data.tar.gz: 789e7df5d1038a3034e15653064253691e1c0756
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80a41831858e9717daf2ed95737ad88ddc2074e12d31969849a4610d3b9d1058515cdeb873e3c7058eeab8bdda855e2349f029b79fd4caa422f1757f943c8467
|
7
|
+
data.tar.gz: 9c4db99a31e3f38e988ad4c4c801e16d948711e4b11419be186c89ff7363b1dd78082ab937ec0d061e064e3904f3f4d5f3d6899934bd3a4bc20e488acbe8115c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.711
|
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,14 +1,14 @@
|
|
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.711
|
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-11-
|
11
|
+
date: 2023-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -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:
|