tencentcloud-sdk-ssl 3.0.1101 → 3.0.1109
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 +39 -11
- 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: 2708d61c020adeb8854fe042ecfcb346be8c85bc
|
4
|
+
data.tar.gz: 5a06725d629fc1d3759a2dff583da94b6fba1148
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5853b08b9b5441eafdf5ad0290002463adcea8728d3d482670f67c5128faf5ac8968fc4a11a2e4cff2e0052e7958c77edb1cce0976d63df2a66a12f210c99a16
|
7
|
+
data.tar.gz: f1e54b9122d7639ba0d0fd8b7f4e66c32cba0a17e03807669311d91364151fde63f105a7ebcc084b6acbf95d924d452c5f42490ff57bd7807e31d8bad3f314f1
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1109
|
data/lib/v20191205/models.rb
CHANGED
@@ -643,10 +643,12 @@ module TencentCloud
|
|
643
643
|
# @type Type: Integer
|
644
644
|
# @param CaType: 只针对Dnspod系列证书有效,ca机构类型可为sectigo和digicert
|
645
645
|
# @type CaType: String
|
646
|
+
# @param SignAlgo: 签名算法
|
647
|
+
# @type SignAlgo: String
|
646
648
|
|
647
|
-
attr_accessor :CertId, :GenCsrType, :CertCommonName, :CompanyType, :CompanyId, :OrgIdType, :OrgIdNumber, :AdminIdType, :AdminIdNumber, :TechIdType, :TechIdNumber, :Csr, :DnsNames, :KeyPass, :OrgOrganization, :OrgDivision, :OrgAddress, :OrgCountry, :OrgCity, :OrgRegion, :OrgPhoneArea, :OrgPhoneNumber, :VerifyType, :AdminFirstName, :AdminLastName, :AdminPhone, :AdminEmail, :AdminTitle, :TechFirstName, :TechLastName, :ContactEmail, :AutoRenewFlag, :CsrKeyParameter, :CsrEncryptAlgo, :ManagerId, :TechPhone, :TechEmail, :TechTitle, :Type, :CaType
|
649
|
+
attr_accessor :CertId, :GenCsrType, :CertCommonName, :CompanyType, :CompanyId, :OrgIdType, :OrgIdNumber, :AdminIdType, :AdminIdNumber, :TechIdType, :TechIdNumber, :Csr, :DnsNames, :KeyPass, :OrgOrganization, :OrgDivision, :OrgAddress, :OrgCountry, :OrgCity, :OrgRegion, :OrgPhoneArea, :OrgPhoneNumber, :VerifyType, :AdminFirstName, :AdminLastName, :AdminPhone, :AdminEmail, :AdminTitle, :TechFirstName, :TechLastName, :ContactEmail, :AutoRenewFlag, :CsrKeyParameter, :CsrEncryptAlgo, :ManagerId, :TechPhone, :TechEmail, :TechTitle, :Type, :CaType, :SignAlgo
|
648
650
|
|
649
|
-
def initialize(certid=nil, gencsrtype=nil, certcommonname=nil, companytype=nil, companyid=nil, orgidtype=nil, orgidnumber=nil, adminidtype=nil, adminidnumber=nil, techidtype=nil, techidnumber=nil, csr=nil, dnsnames=nil, keypass=nil, orgorganization=nil, orgdivision=nil, orgaddress=nil, orgcountry=nil, orgcity=nil, orgregion=nil, orgphonearea=nil, orgphonenumber=nil, verifytype=nil, adminfirstname=nil, adminlastname=nil, adminphone=nil, adminemail=nil, admintitle=nil, techfirstname=nil, techlastname=nil, contactemail=nil, autorenewflag=nil, csrkeyparameter=nil, csrencryptalgo=nil, managerid=nil, techphone=nil, techemail=nil, techtitle=nil, type=nil, catype=nil)
|
651
|
+
def initialize(certid=nil, gencsrtype=nil, certcommonname=nil, companytype=nil, companyid=nil, orgidtype=nil, orgidnumber=nil, adminidtype=nil, adminidnumber=nil, techidtype=nil, techidnumber=nil, csr=nil, dnsnames=nil, keypass=nil, orgorganization=nil, orgdivision=nil, orgaddress=nil, orgcountry=nil, orgcity=nil, orgregion=nil, orgphonearea=nil, orgphonenumber=nil, verifytype=nil, adminfirstname=nil, adminlastname=nil, adminphone=nil, adminemail=nil, admintitle=nil, techfirstname=nil, techlastname=nil, contactemail=nil, autorenewflag=nil, csrkeyparameter=nil, csrencryptalgo=nil, managerid=nil, techphone=nil, techemail=nil, techtitle=nil, type=nil, catype=nil, signalgo=nil)
|
650
652
|
@CertId = certid
|
651
653
|
@GenCsrType = gencsrtype
|
652
654
|
@CertCommonName = certcommonname
|
@@ -687,6 +689,7 @@ module TencentCloud
|
|
687
689
|
@TechTitle = techtitle
|
688
690
|
@Type = type
|
689
691
|
@CaType = catype
|
692
|
+
@SignAlgo = signalgo
|
690
693
|
end
|
691
694
|
|
692
695
|
def deserialize(params)
|
@@ -730,6 +733,7 @@ module TencentCloud
|
|
730
733
|
@TechTitle = params['TechTitle']
|
731
734
|
@Type = params['Type']
|
732
735
|
@CaType = params['CaType']
|
736
|
+
@SignAlgo = params['SignAlgo']
|
733
737
|
end
|
734
738
|
end
|
735
739
|
|
@@ -2550,10 +2554,14 @@ module TencentCloud
|
|
2550
2554
|
# @type Region: String
|
2551
2555
|
# @param Url: 部署CLB监听器的Url
|
2552
2556
|
# @type Url: Array
|
2557
|
+
# @param Algorithm: 当前部署证书加密算法
|
2558
|
+
# @type Algorithm: String
|
2559
|
+
# @param OldAlgorithm: 原证书加密算法
|
2560
|
+
# @type OldAlgorithm: String
|
2553
2561
|
|
2554
|
-
attr_accessor :Id, :CertId, :OldCertId, :InstanceId, :InstanceName, :ListenerId, :Domains, :Protocol, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :ListenerName, :SniSwitch, :Bucket, :Namespace, :SecretName, :Port, :EnvId, :TCBType, :Region, :Url
|
2562
|
+
attr_accessor :Id, :CertId, :OldCertId, :InstanceId, :InstanceName, :ListenerId, :Domains, :Protocol, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :ListenerName, :SniSwitch, :Bucket, :Namespace, :SecretName, :Port, :EnvId, :TCBType, :Region, :Url, :Algorithm, :OldAlgorithm
|
2555
2563
|
|
2556
|
-
def initialize(id=nil, certid=nil, oldcertid=nil, instanceid=nil, instancename=nil, listenerid=nil, domains=nil, protocol=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, listenername=nil, sniswitch=nil, bucket=nil, namespace=nil, secretname=nil, port=nil, envid=nil, tcbtype=nil, region=nil, url=nil)
|
2564
|
+
def initialize(id=nil, certid=nil, oldcertid=nil, instanceid=nil, instancename=nil, listenerid=nil, domains=nil, protocol=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, listenername=nil, sniswitch=nil, bucket=nil, namespace=nil, secretname=nil, port=nil, envid=nil, tcbtype=nil, region=nil, url=nil, algorithm=nil, oldalgorithm=nil)
|
2557
2565
|
@Id = id
|
2558
2566
|
@CertId = certid
|
2559
2567
|
@OldCertId = oldcertid
|
@@ -2576,6 +2584,8 @@ module TencentCloud
|
|
2576
2584
|
@TCBType = tcbtype
|
2577
2585
|
@Region = region
|
2578
2586
|
@Url = url
|
2587
|
+
@Algorithm = algorithm
|
2588
|
+
@OldAlgorithm = oldalgorithm
|
2579
2589
|
end
|
2580
2590
|
|
2581
2591
|
def deserialize(params)
|
@@ -2601,6 +2611,8 @@ module TencentCloud
|
|
2601
2611
|
@TCBType = params['TCBType']
|
2602
2612
|
@Region = params['Region']
|
2603
2613
|
@Url = params['Url']
|
2614
|
+
@Algorithm = params['Algorithm']
|
2615
|
+
@OldAlgorithm = params['OldAlgorithm']
|
2604
2616
|
end
|
2605
2617
|
end
|
2606
2618
|
|
@@ -6584,7 +6596,7 @@ module TencentCloud
|
|
6584
6596
|
# @type CertificateId: String
|
6585
6597
|
# @param ValidType: 验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
|
6586
6598
|
# @type ValidType: String
|
6587
|
-
# @param CsrType: 类型,默认
|
6599
|
+
# @param CsrType: 类型,默认 original。可选项:original = 原证书 CSR,upload = 手动上传,online = 在线生成。
|
6588
6600
|
# @type CsrType: String
|
6589
6601
|
# @param CsrContent: CSR 内容,手动上传的时候需要。
|
6590
6602
|
# @type CsrContent: String
|
@@ -6597,10 +6609,12 @@ module TencentCloud
|
|
6597
6609
|
# @type CertCSREncryptAlgo: String
|
6598
6610
|
# @param CertCSRKeyParameter: CSR加密参数,CsrEncryptAlgo为RSA时, 可选2048、4096等默认为2048;CsrEncryptAlgo为ECC时,可选prime256v1,secp384r1等,默认为prime256v1;
|
6599
6611
|
# @type CertCSRKeyParameter: String
|
6612
|
+
# @param SignAlgo: 签名算法
|
6613
|
+
# @type SignAlgo: String
|
6600
6614
|
|
6601
|
-
attr_accessor :CertificateId, :ValidType, :CsrType, :CsrContent, :CsrkeyPassword, :Reason, :CertCSREncryptAlgo, :CertCSRKeyParameter
|
6615
|
+
attr_accessor :CertificateId, :ValidType, :CsrType, :CsrContent, :CsrkeyPassword, :Reason, :CertCSREncryptAlgo, :CertCSRKeyParameter, :SignAlgo
|
6602
6616
|
|
6603
|
-
def initialize(certificateid=nil, validtype=nil, csrtype=nil, csrcontent=nil, csrkeypassword=nil, reason=nil, certcsrencryptalgo=nil, certcsrkeyparameter=nil)
|
6617
|
+
def initialize(certificateid=nil, validtype=nil, csrtype=nil, csrcontent=nil, csrkeypassword=nil, reason=nil, certcsrencryptalgo=nil, certcsrkeyparameter=nil, signalgo=nil)
|
6604
6618
|
@CertificateId = certificateid
|
6605
6619
|
@ValidType = validtype
|
6606
6620
|
@CsrType = csrtype
|
@@ -6609,6 +6623,7 @@ module TencentCloud
|
|
6609
6623
|
@Reason = reason
|
6610
6624
|
@CertCSREncryptAlgo = certcsrencryptalgo
|
6611
6625
|
@CertCSRKeyParameter = certcsrkeyparameter
|
6626
|
+
@SignAlgo = signalgo
|
6612
6627
|
end
|
6613
6628
|
|
6614
6629
|
def deserialize(params)
|
@@ -6620,6 +6635,7 @@ module TencentCloud
|
|
6620
6635
|
@Reason = params['Reason']
|
6621
6636
|
@CertCSREncryptAlgo = params['CertCSREncryptAlgo']
|
6622
6637
|
@CertCSRKeyParameter = params['CertCSRKeyParameter']
|
6638
|
+
@SignAlgo = params['SignAlgo']
|
6623
6639
|
end
|
6624
6640
|
end
|
6625
6641
|
|
@@ -7483,14 +7499,17 @@ module TencentCloud
|
|
7483
7499
|
# failed:申请失败;
|
7484
7500
|
# issued:绑定失败。
|
7485
7501
|
# @type Status: String
|
7502
|
+
# @param Algorithm: 证书加密算法
|
7503
|
+
# @type Algorithm: String
|
7486
7504
|
|
7487
|
-
attr_accessor :Host, :CertId, :ZoneId, :Status
|
7505
|
+
attr_accessor :Host, :CertId, :ZoneId, :Status, :Algorithm
|
7488
7506
|
|
7489
|
-
def initialize(host=nil, certid=nil, zoneid=nil, status=nil)
|
7507
|
+
def initialize(host=nil, certid=nil, zoneid=nil, status=nil, algorithm=nil)
|
7490
7508
|
@Host = host
|
7491
7509
|
@CertId = certid
|
7492
7510
|
@ZoneId = zoneid
|
7493
7511
|
@Status = status
|
7512
|
+
@Algorithm = algorithm
|
7494
7513
|
end
|
7495
7514
|
|
7496
7515
|
def deserialize(params)
|
@@ -7498,6 +7517,7 @@ module TencentCloud
|
|
7498
7517
|
@CertId = params['CertId']
|
7499
7518
|
@ZoneId = params['ZoneId']
|
7500
7519
|
@Status = params['Status']
|
7520
|
+
@Algorithm = params['Algorithm']
|
7501
7521
|
end
|
7502
7522
|
end
|
7503
7523
|
|
@@ -7962,10 +7982,14 @@ module TencentCloud
|
|
7962
7982
|
# @type TCBType: String
|
7963
7983
|
# @param Url: 监听器Url(clb专属)
|
7964
7984
|
# @type Url: String
|
7985
|
+
# @param Algorithm: 新证书加密算法
|
7986
|
+
# @type Algorithm: String
|
7987
|
+
# @param OldAlgorithm: 旧证书加密算法
|
7988
|
+
# @type OldAlgorithm: String
|
7965
7989
|
|
7966
|
-
attr_accessor :Id, :CertId, :OldCertId, :Domains, :ResourceType, :Region, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :InstanceId, :InstanceName, :ListenerId, :ListenerName, :Protocol, :SniSwitch, :Bucket, :Port, :Namespace, :SecretName, :EnvId, :TCBType, :Url
|
7990
|
+
attr_accessor :Id, :CertId, :OldCertId, :Domains, :ResourceType, :Region, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :InstanceId, :InstanceName, :ListenerId, :ListenerName, :Protocol, :SniSwitch, :Bucket, :Port, :Namespace, :SecretName, :EnvId, :TCBType, :Url, :Algorithm, :OldAlgorithm
|
7967
7991
|
|
7968
|
-
def initialize(id=nil, certid=nil, oldcertid=nil, domains=nil, resourcetype=nil, region=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, instanceid=nil, instancename=nil, listenerid=nil, listenername=nil, protocol=nil, sniswitch=nil, bucket=nil, port=nil, namespace=nil, secretname=nil, envid=nil, tcbtype=nil, url=nil)
|
7992
|
+
def initialize(id=nil, certid=nil, oldcertid=nil, domains=nil, resourcetype=nil, region=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, instanceid=nil, instancename=nil, listenerid=nil, listenername=nil, protocol=nil, sniswitch=nil, bucket=nil, port=nil, namespace=nil, secretname=nil, envid=nil, tcbtype=nil, url=nil, algorithm=nil, oldalgorithm=nil)
|
7969
7993
|
@Id = id
|
7970
7994
|
@CertId = certid
|
7971
7995
|
@OldCertId = oldcertid
|
@@ -7989,6 +8013,8 @@ module TencentCloud
|
|
7989
8013
|
@EnvId = envid
|
7990
8014
|
@TCBType = tcbtype
|
7991
8015
|
@Url = url
|
8016
|
+
@Algorithm = algorithm
|
8017
|
+
@OldAlgorithm = oldalgorithm
|
7992
8018
|
end
|
7993
8019
|
|
7994
8020
|
def deserialize(params)
|
@@ -8015,6 +8041,8 @@ module TencentCloud
|
|
8015
8041
|
@EnvId = params['EnvId']
|
8016
8042
|
@TCBType = params['TCBType']
|
8017
8043
|
@Url = params['Url']
|
8044
|
+
@Algorithm = params['Algorithm']
|
8045
|
+
@OldAlgorithm = params['OldAlgorithm']
|
8018
8046
|
end
|
8019
8047
|
end
|
8020
8048
|
|
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.1109
|
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-07-
|
11
|
+
date: 2025-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|