tencentcloud-sdk-ssl 3.0.762 → 3.0.763
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 +8 -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: 10bb68e037fdc8770d068b3ae443789ef90e11fb
|
|
4
|
+
data.tar.gz: b48c64ea0ccb7abaa12c64a169a2d12f520f97ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: adb5e4214a49438e750b44c1f4fa6ef5a2a51b4150c4436a77e1941205436b8a516d93d86b231c4c872966582950f17eb5d0627da99daab9f08b67092e7b4dc6
|
|
7
|
+
data.tar.gz: 8051b6af595da269eafa667dc3ea325c39377a3f60c78ecaefa96cb69da15180c9b283acfef01716edcf096d5e1f8938b2bc8eb1ff96ca7521ed1175411f0286
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.763
|
data/lib/v20191205/models.rb
CHANGED
|
@@ -112,10 +112,12 @@ module TencentCloud
|
|
|
112
112
|
# @type PackageId: String
|
|
113
113
|
# @param DeleteDnsAutoRecord: 签发后是否删除自动域名验证记录, 默认为否;仅域名为DNS_AUTO验证类型支持传参
|
|
114
114
|
# @type DeleteDnsAutoRecord: Boolean
|
|
115
|
+
# @param DnsNames: 域名数组(多域名证书可以上传)。
|
|
116
|
+
# @type DnsNames: Array
|
|
115
117
|
|
|
116
|
-
attr_accessor :DvAuthMethod, :DomainName, :ProjectId, :PackageType, :ContactEmail, :ContactPhone, :ValidityPeriod, :CsrEncryptAlgo, :CsrKeyParameter, :CsrKeyPassword, :Alias, :OldCertificateId, :PackageId, :DeleteDnsAutoRecord
|
|
118
|
+
attr_accessor :DvAuthMethod, :DomainName, :ProjectId, :PackageType, :ContactEmail, :ContactPhone, :ValidityPeriod, :CsrEncryptAlgo, :CsrKeyParameter, :CsrKeyPassword, :Alias, :OldCertificateId, :PackageId, :DeleteDnsAutoRecord, :DnsNames
|
|
117
119
|
|
|
118
|
-
def initialize(dvauthmethod=nil, domainname=nil, projectid=nil, packagetype=nil, contactemail=nil, contactphone=nil, validityperiod=nil, csrencryptalgo=nil, csrkeyparameter=nil, csrkeypassword=nil, _alias=nil, oldcertificateid=nil, packageid=nil, deletednsautorecord=nil)
|
|
120
|
+
def initialize(dvauthmethod=nil, domainname=nil, projectid=nil, packagetype=nil, contactemail=nil, contactphone=nil, validityperiod=nil, csrencryptalgo=nil, csrkeyparameter=nil, csrkeypassword=nil, _alias=nil, oldcertificateid=nil, packageid=nil, deletednsautorecord=nil, dnsnames=nil)
|
|
119
121
|
@DvAuthMethod = dvauthmethod
|
|
120
122
|
@DomainName = domainname
|
|
121
123
|
@ProjectId = projectid
|
|
@@ -130,6 +132,7 @@ module TencentCloud
|
|
|
130
132
|
@OldCertificateId = oldcertificateid
|
|
131
133
|
@PackageId = packageid
|
|
132
134
|
@DeleteDnsAutoRecord = deletednsautorecord
|
|
135
|
+
@DnsNames = dnsnames
|
|
133
136
|
end
|
|
134
137
|
|
|
135
138
|
def deserialize(params)
|
|
@@ -147,6 +150,7 @@ module TencentCloud
|
|
|
147
150
|
@OldCertificateId = params['OldCertificateId']
|
|
148
151
|
@PackageId = params['PackageId']
|
|
149
152
|
@DeleteDnsAutoRecord = params['DeleteDnsAutoRecord']
|
|
153
|
+
@DnsNames = params['DnsNames']
|
|
150
154
|
end
|
|
151
155
|
end
|
|
152
156
|
|
|
@@ -6115,8 +6119,8 @@ module TencentCloud
|
|
|
6115
6119
|
|
|
6116
6120
|
attr_accessor :OldCertificateId, :ResourceTypes, :CertificateId, :Regions, :ResourceTypesRegions, :CertificatePublicKey, :CertificatePrivateKey, :ExpiringNotificationSwitch, :Repeatable, :AllowDownload, :Tags, :ProjectId
|
|
6117
6121
|
extend Gem::Deprecate
|
|
6118
|
-
deprecate :Regions, :none, 2024,
|
|
6119
|
-
deprecate :Regions=, :none, 2024,
|
|
6122
|
+
deprecate :Regions, :none, 2024, 2
|
|
6123
|
+
deprecate :Regions=, :none, 2024, 2
|
|
6120
6124
|
|
|
6121
6125
|
def initialize(oldcertificateid=nil, resourcetypes=nil, certificateid=nil, regions=nil, resourcetypesregions=nil, certificatepublickey=nil, certificateprivatekey=nil, expiringnotificationswitch=nil, repeatable=nil, allowdownload=nil, tags=nil, projectid=nil)
|
|
6122
6126
|
@OldCertificateId = oldcertificateid
|
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.763
|
|
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-02-
|
|
11
|
+
date: 2024-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|