tencentcloud-sdk-ssl 3.0.1105 → 3.0.1110
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 +19 -7
- 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: b8e147a20635162862b34a9445a1dbbe10ba81df
|
4
|
+
data.tar.gz: 30e3bfbb7917a5732bf154df373468f2c9c9e90e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 212aae12ac9c42f69f5afa88797fa749d7c9314cf8066137d74f81a88bd25042fe712c509a82bbe68bd45c242cf3f9fad5af5e94374e9bd0ef45ee74535d93df
|
7
|
+
data.tar.gz: 37991554a7e596db4c5ad3a47417e937b79c09941ac982fc6b637b0ad835bafc5e8186b33400a1ce4543ad92066239e7478bcfa4cde9a927771b0dbf7d4bc9d2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1110
|
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
|
|
@@ -6592,7 +6596,7 @@ module TencentCloud
|
|
6592
6596
|
# @type CertificateId: String
|
6593
6597
|
# @param ValidType: 验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
|
6594
6598
|
# @type ValidType: String
|
6595
|
-
# @param CsrType: 类型,默认
|
6599
|
+
# @param CsrType: 类型,默认 original。可选项:original = 原证书 CSR,upload = 手动上传,online = 在线生成。
|
6596
6600
|
# @type CsrType: String
|
6597
6601
|
# @param CsrContent: CSR 内容,手动上传的时候需要。
|
6598
6602
|
# @type CsrContent: String
|
@@ -6605,10 +6609,12 @@ module TencentCloud
|
|
6605
6609
|
# @type CertCSREncryptAlgo: String
|
6606
6610
|
# @param CertCSRKeyParameter: CSR加密参数,CsrEncryptAlgo为RSA时, 可选2048、4096等默认为2048;CsrEncryptAlgo为ECC时,可选prime256v1,secp384r1等,默认为prime256v1;
|
6607
6611
|
# @type CertCSRKeyParameter: String
|
6612
|
+
# @param SignAlgo: 签名算法
|
6613
|
+
# @type SignAlgo: String
|
6608
6614
|
|
6609
|
-
attr_accessor :CertificateId, :ValidType, :CsrType, :CsrContent, :CsrkeyPassword, :Reason, :CertCSREncryptAlgo, :CertCSRKeyParameter
|
6615
|
+
attr_accessor :CertificateId, :ValidType, :CsrType, :CsrContent, :CsrkeyPassword, :Reason, :CertCSREncryptAlgo, :CertCSRKeyParameter, :SignAlgo
|
6610
6616
|
|
6611
|
-
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)
|
6612
6618
|
@CertificateId = certificateid
|
6613
6619
|
@ValidType = validtype
|
6614
6620
|
@CsrType = csrtype
|
@@ -6617,6 +6623,7 @@ module TencentCloud
|
|
6617
6623
|
@Reason = reason
|
6618
6624
|
@CertCSREncryptAlgo = certcsrencryptalgo
|
6619
6625
|
@CertCSRKeyParameter = certcsrkeyparameter
|
6626
|
+
@SignAlgo = signalgo
|
6620
6627
|
end
|
6621
6628
|
|
6622
6629
|
def deserialize(params)
|
@@ -6628,6 +6635,7 @@ module TencentCloud
|
|
6628
6635
|
@Reason = params['Reason']
|
6629
6636
|
@CertCSREncryptAlgo = params['CertCSREncryptAlgo']
|
6630
6637
|
@CertCSRKeyParameter = params['CertCSRKeyParameter']
|
6638
|
+
@SignAlgo = params['SignAlgo']
|
6631
6639
|
end
|
6632
6640
|
end
|
6633
6641
|
|
@@ -8209,10 +8217,12 @@ module TencentCloud
|
|
8209
8217
|
# @type Tags: Array
|
8210
8218
|
# @param Repeatable: 相同的证书是否允许重复上传; true:允许上传相同指纹的证书; false:不允许上传相同指纹的证书; 默认值:true
|
8211
8219
|
# @type Repeatable: Boolean
|
8220
|
+
# @param KeyPassword: 私钥密码
|
8221
|
+
# @type KeyPassword: String
|
8212
8222
|
|
8213
|
-
attr_accessor :CertificatePublicKey, :CertificatePrivateKey, :CertificateType, :Alias, :ProjectId, :CertificateUse, :Tags, :Repeatable
|
8223
|
+
attr_accessor :CertificatePublicKey, :CertificatePrivateKey, :CertificateType, :Alias, :ProjectId, :CertificateUse, :Tags, :Repeatable, :KeyPassword
|
8214
8224
|
|
8215
|
-
def initialize(certificatepublickey=nil, certificateprivatekey=nil, certificatetype=nil, _alias=nil, projectid=nil, certificateuse=nil, tags=nil, repeatable=nil)
|
8225
|
+
def initialize(certificatepublickey=nil, certificateprivatekey=nil, certificatetype=nil, _alias=nil, projectid=nil, certificateuse=nil, tags=nil, repeatable=nil, keypassword=nil)
|
8216
8226
|
@CertificatePublicKey = certificatepublickey
|
8217
8227
|
@CertificatePrivateKey = certificateprivatekey
|
8218
8228
|
@CertificateType = certificatetype
|
@@ -8221,6 +8231,7 @@ module TencentCloud
|
|
8221
8231
|
@CertificateUse = certificateuse
|
8222
8232
|
@Tags = tags
|
8223
8233
|
@Repeatable = repeatable
|
8234
|
+
@KeyPassword = keypassword
|
8224
8235
|
end
|
8225
8236
|
|
8226
8237
|
def deserialize(params)
|
@@ -8239,6 +8250,7 @@ module TencentCloud
|
|
8239
8250
|
end
|
8240
8251
|
end
|
8241
8252
|
@Repeatable = params['Repeatable']
|
8253
|
+
@KeyPassword = params['KeyPassword']
|
8242
8254
|
end
|
8243
8255
|
end
|
8244
8256
|
|
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.1110
|
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-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|