tencentcloud-sdk-ssl 3.0.939 → 3.0.941
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 +56 -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: 157e5feed612de33fe2759355e0981d889d5a48b
|
4
|
+
data.tar.gz: 161359b2595927d8fc0496b26170c98afda1bd8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c6135c451a02721287b7c4974f816fde928b47e0f20297404a2f41dfc78b740db557c2689135f054a6d5a77d3673119b1f3c2264c6cb4631ea0a7490f3fb6e1
|
7
|
+
data.tar.gz: 27a7ee060bf98b2a7815624d5305fffed729733b29b73b8c81ed920b46c22a8d143998fdf5363e5fd2b33b00bd9ca834fbfa0e1e3713c29b88892460418ae79d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.941
|
data/lib/v20191205/models.rb
CHANGED
@@ -426,6 +426,38 @@ module TencentCloud
|
|
426
426
|
end
|
427
427
|
end
|
428
428
|
|
429
|
+
# 证书基本信息
|
430
|
+
class CertBasicInfo < TencentCloud::Common::AbstractModel
|
431
|
+
# @param Issuer: 颁发者
|
432
|
+
# @type Issuer: String
|
433
|
+
# @param Subject: 颁发给
|
434
|
+
# @type Subject: String
|
435
|
+
# @param Fingerprint: 证书指纹
|
436
|
+
# @type Fingerprint: String
|
437
|
+
# @param ValidFrom: 证书有效期开始时间
|
438
|
+
# @type ValidFrom: String
|
439
|
+
# @param ValidTo: 证书有效期结束时间
|
440
|
+
# @type ValidTo: String
|
441
|
+
|
442
|
+
attr_accessor :Issuer, :Subject, :Fingerprint, :ValidFrom, :ValidTo
|
443
|
+
|
444
|
+
def initialize(issuer=nil, subject=nil, fingerprint=nil, validfrom=nil, validto=nil)
|
445
|
+
@Issuer = issuer
|
446
|
+
@Subject = subject
|
447
|
+
@Fingerprint = fingerprint
|
448
|
+
@ValidFrom = validfrom
|
449
|
+
@ValidTo = validto
|
450
|
+
end
|
451
|
+
|
452
|
+
def deserialize(params)
|
453
|
+
@Issuer = params['Issuer']
|
454
|
+
@Subject = params['Subject']
|
455
|
+
@Fingerprint = params['Fingerprint']
|
456
|
+
@ValidFrom = params['ValidFrom']
|
457
|
+
@ValidTo = params['ValidTo']
|
458
|
+
end
|
459
|
+
end
|
460
|
+
|
429
461
|
# 证书异步任务ID
|
430
462
|
class CertTaskId < TencentCloud::Common::AbstractModel
|
431
463
|
# @param CertId: 证书ID
|
@@ -2445,12 +2477,15 @@ module TencentCloud
|
|
2445
2477
|
# @param DvRevokeAuthDetail: DV证书吊销验证值
|
2446
2478
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2447
2479
|
# @type DvRevokeAuthDetail: Array
|
2480
|
+
# @param CertChainInfo: 证书链信息
|
2481
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2482
|
+
# @type CertChainInfo: Array
|
2448
2483
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2449
2484
|
# @type RequestId: String
|
2450
2485
|
|
2451
|
-
attr_accessor :OwnerUin, :ProjectId, :From, :CertificateType, :PackageType, :ProductZhName, :Domain, :Alias, :Status, :StatusMsg, :VerifyType, :VulnerabilityStatus, :CertBeginTime, :CertEndTime, :ValidityPeriod, :InsertTime, :OrderId, :CertificateExtra, :CertificatePrivateKey, :CertificatePublicKey, :DvAuthDetail, :VulnerabilityReport, :CertificateId, :TypeName, :StatusName, :SubjectAltName, :IsVip, :IsWildcard, :IsDv, :IsVulnerability, :SubmittedData, :RenewAble, :Deployable, :Tags, :RootCert, :EncryptCert, :EncryptPrivateKey, :CertFingerprint, :EncryptCertFingerprint, :EncryptAlgorithm, :DvRevokeAuthDetail, :RequestId
|
2486
|
+
attr_accessor :OwnerUin, :ProjectId, :From, :CertificateType, :PackageType, :ProductZhName, :Domain, :Alias, :Status, :StatusMsg, :VerifyType, :VulnerabilityStatus, :CertBeginTime, :CertEndTime, :ValidityPeriod, :InsertTime, :OrderId, :CertificateExtra, :CertificatePrivateKey, :CertificatePublicKey, :DvAuthDetail, :VulnerabilityReport, :CertificateId, :TypeName, :StatusName, :SubjectAltName, :IsVip, :IsWildcard, :IsDv, :IsVulnerability, :SubmittedData, :RenewAble, :Deployable, :Tags, :RootCert, :EncryptCert, :EncryptPrivateKey, :CertFingerprint, :EncryptCertFingerprint, :EncryptAlgorithm, :DvRevokeAuthDetail, :CertChainInfo, :RequestId
|
2452
2487
|
|
2453
|
-
def initialize(owneruin=nil, projectid=nil, from=nil, certificatetype=nil, packagetype=nil, productzhname=nil, domain=nil, _alias=nil, status=nil, statusmsg=nil, verifytype=nil, vulnerabilitystatus=nil, certbegintime=nil, certendtime=nil, validityperiod=nil, inserttime=nil, orderid=nil, certificateextra=nil, certificateprivatekey=nil, certificatepublickey=nil, dvauthdetail=nil, vulnerabilityreport=nil, certificateid=nil, typename=nil, statusname=nil, subjectaltname=nil, isvip=nil, iswildcard=nil, isdv=nil, isvulnerability=nil, submitteddata=nil, renewable=nil, deployable=nil, tags=nil, rootcert=nil, encryptcert=nil, encryptprivatekey=nil, certfingerprint=nil, encryptcertfingerprint=nil, encryptalgorithm=nil, dvrevokeauthdetail=nil, requestid=nil)
|
2488
|
+
def initialize(owneruin=nil, projectid=nil, from=nil, certificatetype=nil, packagetype=nil, productzhname=nil, domain=nil, _alias=nil, status=nil, statusmsg=nil, verifytype=nil, vulnerabilitystatus=nil, certbegintime=nil, certendtime=nil, validityperiod=nil, inserttime=nil, orderid=nil, certificateextra=nil, certificateprivatekey=nil, certificatepublickey=nil, dvauthdetail=nil, vulnerabilityreport=nil, certificateid=nil, typename=nil, statusname=nil, subjectaltname=nil, isvip=nil, iswildcard=nil, isdv=nil, isvulnerability=nil, submitteddata=nil, renewable=nil, deployable=nil, tags=nil, rootcert=nil, encryptcert=nil, encryptprivatekey=nil, certfingerprint=nil, encryptcertfingerprint=nil, encryptalgorithm=nil, dvrevokeauthdetail=nil, certchaininfo=nil, requestid=nil)
|
2454
2489
|
@OwnerUin = owneruin
|
2455
2490
|
@ProjectId = projectid
|
2456
2491
|
@From = from
|
@@ -2492,6 +2527,7 @@ module TencentCloud
|
|
2492
2527
|
@EncryptCertFingerprint = encryptcertfingerprint
|
2493
2528
|
@EncryptAlgorithm = encryptalgorithm
|
2494
2529
|
@DvRevokeAuthDetail = dvrevokeauthdetail
|
2530
|
+
@CertChainInfo = certchaininfo
|
2495
2531
|
@RequestId = requestid
|
2496
2532
|
end
|
2497
2533
|
|
@@ -2563,6 +2599,14 @@ module TencentCloud
|
|
2563
2599
|
@DvRevokeAuthDetail << dvauths_tmp
|
2564
2600
|
end
|
2565
2601
|
end
|
2602
|
+
unless params['CertChainInfo'].nil?
|
2603
|
+
@CertChainInfo = []
|
2604
|
+
params['CertChainInfo'].each do |i|
|
2605
|
+
certbasicinfo_tmp = CertBasicInfo.new
|
2606
|
+
certbasicinfo_tmp.deserialize(i)
|
2607
|
+
@CertChainInfo << certbasicinfo_tmp
|
2608
|
+
end
|
2609
|
+
end
|
2566
2610
|
@RequestId = params['RequestId']
|
2567
2611
|
end
|
2568
2612
|
end
|
@@ -4874,17 +4918,25 @@ module TencentCloud
|
|
4874
4918
|
# @param MessageTypes: 托管发送消息类型:0,托管开始前消息提醒(没有续费证书也会收到该提示消息); 1, 托管开始消息提醒(存在续费证书才会收到消息提醒); 2, 托管资源替换失败消息提醒; 3 托管资源替换成功消息提醒
|
4875
4919
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4876
4920
|
# @type MessageTypes: Array
|
4921
|
+
# @param ReplaceStartTime: 资源替换开始时间
|
4922
|
+
# @type ReplaceStartTime: String
|
4923
|
+
# @param ReplaceEndTime: 资源替换结束时间
|
4924
|
+
# @type ReplaceEndTime: String
|
4877
4925
|
|
4878
|
-
attr_accessor :ReplaceTime, :MessageTypes
|
4926
|
+
attr_accessor :ReplaceTime, :MessageTypes, :ReplaceStartTime, :ReplaceEndTime
|
4879
4927
|
|
4880
|
-
def initialize(replacetime=nil, messagetypes=nil)
|
4928
|
+
def initialize(replacetime=nil, messagetypes=nil, replacestarttime=nil, replaceendtime=nil)
|
4881
4929
|
@ReplaceTime = replacetime
|
4882
4930
|
@MessageTypes = messagetypes
|
4931
|
+
@ReplaceStartTime = replacestarttime
|
4932
|
+
@ReplaceEndTime = replaceendtime
|
4883
4933
|
end
|
4884
4934
|
|
4885
4935
|
def deserialize(params)
|
4886
4936
|
@ReplaceTime = params['ReplaceTime']
|
4887
4937
|
@MessageTypes = params['MessageTypes']
|
4938
|
+
@ReplaceStartTime = params['ReplaceStartTime']
|
4939
|
+
@ReplaceEndTime = params['ReplaceEndTime']
|
4888
4940
|
end
|
4889
4941
|
end
|
4890
4942
|
|
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.941
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|