tencentcloud-sdk-ssl 3.0.1115 → 3.0.1118
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/v20191205/models.rb +18 -2
- 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: b4d3d0c7d13cba60479ca512bcf51620a928a573
|
4
|
+
data.tar.gz: cb4d474a1116b51b60e5af68384fd96d8de7c6e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a161b808326776697325f3cabbf639bb87d1d15c18ac9f055388cc9c88cc5b3d6bd1d60d940416b8434367e8fa9c7a400a42403ea95a16a9ec78f98c312fba5
|
7
|
+
data.tar.gz: bac89e2259230cc6ff6892ebdb7332e94fa849333e4254ebbeadb1a9a41d7fa377382d04f0b05f248ff3d20340974a77742b8f4b315527d5038e1d7130074648
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1118
|
data/lib/v20191205/models.rb
CHANGED
@@ -5459,15 +5459,23 @@ module TencentCloud
|
|
5459
5459
|
# @type ManagerId: Integer
|
5460
5460
|
# @param StatusInfo: 审核状态详细信息
|
5461
5461
|
# @type StatusInfo: Array
|
5462
|
+
# @param ManagerIdType: 管理员证件类型,SFZ代表身份证,HZ代表护照
|
5463
|
+
# @type ManagerIdType: String
|
5464
|
+
# @param ManagerIdNumber: 管理员证件号码
|
5465
|
+
# @type ManagerIdNumber: String
|
5466
|
+
# @param ContactIdType: 联系人证件类型,SFZ代表身份证,HZ代表护照
|
5467
|
+
# @type ContactIdType: String
|
5468
|
+
# @param ContactIdNumber: 联系人证件号码
|
5469
|
+
# @type ContactIdNumber: String
|
5462
5470
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5463
5471
|
# @type RequestId: String
|
5464
5472
|
|
5465
|
-
attr_accessor :Status, :ManagerFirstName, :ManagerMail, :ContactFirstName, :ManagerLastName, :ContactPosition, :ManagerPosition, :VerifyTime, :CreateTime, :ExpireTime, :ContactLastName, :ManagerPhone, :ContactPhone, :ContactMail, :ManagerDepartment, :CompanyInfo, :CompanyId, :ManagerId, :StatusInfo, :RequestId
|
5473
|
+
attr_accessor :Status, :ManagerFirstName, :ManagerMail, :ContactFirstName, :ManagerLastName, :ContactPosition, :ManagerPosition, :VerifyTime, :CreateTime, :ExpireTime, :ContactLastName, :ManagerPhone, :ContactPhone, :ContactMail, :ManagerDepartment, :CompanyInfo, :CompanyId, :ManagerId, :StatusInfo, :ManagerIdType, :ManagerIdNumber, :ContactIdType, :ContactIdNumber, :RequestId
|
5466
5474
|
extend Gem::Deprecate
|
5467
5475
|
deprecate :Status, :none, 2025, 8
|
5468
5476
|
deprecate :Status=, :none, 2025, 8
|
5469
5477
|
|
5470
|
-
def initialize(status=nil, managerfirstname=nil, managermail=nil, contactfirstname=nil, managerlastname=nil, contactposition=nil, managerposition=nil, verifytime=nil, createtime=nil, expiretime=nil, contactlastname=nil, managerphone=nil, contactphone=nil, contactmail=nil, managerdepartment=nil, companyinfo=nil, companyid=nil, managerid=nil, statusinfo=nil, requestid=nil)
|
5478
|
+
def initialize(status=nil, managerfirstname=nil, managermail=nil, contactfirstname=nil, managerlastname=nil, contactposition=nil, managerposition=nil, verifytime=nil, createtime=nil, expiretime=nil, contactlastname=nil, managerphone=nil, contactphone=nil, contactmail=nil, managerdepartment=nil, companyinfo=nil, companyid=nil, managerid=nil, statusinfo=nil, manageridtype=nil, manageridnumber=nil, contactidtype=nil, contactidnumber=nil, requestid=nil)
|
5471
5479
|
@Status = status
|
5472
5480
|
@ManagerFirstName = managerfirstname
|
5473
5481
|
@ManagerMail = managermail
|
@@ -5487,6 +5495,10 @@ module TencentCloud
|
|
5487
5495
|
@CompanyId = companyid
|
5488
5496
|
@ManagerId = managerid
|
5489
5497
|
@StatusInfo = statusinfo
|
5498
|
+
@ManagerIdType = manageridtype
|
5499
|
+
@ManagerIdNumber = manageridnumber
|
5500
|
+
@ContactIdType = contactidtype
|
5501
|
+
@ContactIdNumber = contactidnumber
|
5490
5502
|
@RequestId = requestid
|
5491
5503
|
end
|
5492
5504
|
|
@@ -5520,6 +5532,10 @@ module TencentCloud
|
|
5520
5532
|
@StatusInfo << managerstatusinfo_tmp
|
5521
5533
|
end
|
5522
5534
|
end
|
5535
|
+
@ManagerIdType = params['ManagerIdType']
|
5536
|
+
@ManagerIdNumber = params['ManagerIdNumber']
|
5537
|
+
@ContactIdType = params['ContactIdType']
|
5538
|
+
@ContactIdNumber = params['ContactIdNumber']
|
5523
5539
|
@RequestId = params['RequestId']
|
5524
5540
|
end
|
5525
5541
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ssl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1118
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|