tencentcloud-sdk-ssl 3.0.533 → 3.0.535
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 +10 -3
- 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: aa6ba08f71c87c92f049d49ea38d9d32e226c805
|
4
|
+
data.tar.gz: 2baed452c4efa9f700e9301622618bc252a17475
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96640b8764046dcf09cb94d3a29a47285cc97449d76fecba5db37881fef0a53e2b98162d732e686d8cc0c37363eacad6a384b47d34c01ae3e1d9d268066cbb77
|
7
|
+
data.tar.gz: cfa37166d3d8baaf61dea77d5aa2df31245151563322bb819465e51ac09e95a209d7998b3c25286c97535d78a1918ca9f60b84f1f23b7dfe095e321589482a23
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.535
|
data/lib/v20191205/models.rb
CHANGED
@@ -189,15 +189,19 @@ module TencentCloud
|
|
189
189
|
# @param RenewOrder: 新订单证书 ID。
|
190
190
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
191
191
|
# @type RenewOrder: String
|
192
|
+
# @param SMCert: 是否是国密证书
|
193
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
194
|
+
# @type SMCert: Integer
|
192
195
|
|
193
|
-
attr_accessor :DomainNumber, :OriginCertificateId, :ReplacedBy, :ReplacedFor, :RenewOrder
|
196
|
+
attr_accessor :DomainNumber, :OriginCertificateId, :ReplacedBy, :ReplacedFor, :RenewOrder, :SMCert
|
194
197
|
|
195
|
-
def initialize(domainnumber=nil, origincertificateid=nil, replacedby=nil, replacedfor=nil, reneworder=nil)
|
198
|
+
def initialize(domainnumber=nil, origincertificateid=nil, replacedby=nil, replacedfor=nil, reneworder=nil, smcert=nil)
|
196
199
|
@DomainNumber = domainnumber
|
197
200
|
@OriginCertificateId = origincertificateid
|
198
201
|
@ReplacedBy = replacedby
|
199
202
|
@ReplacedFor = replacedfor
|
200
203
|
@RenewOrder = reneworder
|
204
|
+
@SMCert = smcert
|
201
205
|
end
|
202
206
|
|
203
207
|
def deserialize(params)
|
@@ -206,6 +210,7 @@ module TencentCloud
|
|
206
210
|
@ReplacedBy = params['ReplacedBy']
|
207
211
|
@ReplacedFor = params['ReplacedFor']
|
208
212
|
@RenewOrder = params['RenewOrder']
|
213
|
+
@SMCert = params['SMCert']
|
209
214
|
end
|
210
215
|
end
|
211
216
|
|
@@ -220,7 +225,9 @@ module TencentCloud
|
|
220
225
|
# @param From: 证书来源。
|
221
226
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
222
227
|
# @type From: String
|
223
|
-
# @param PackageType: 证书套餐类型:
|
228
|
+
# @param PackageType: 证书套餐类型:
|
229
|
+
# null = 用户上传证书(没有套餐类型),
|
230
|
+
# 1 = GeoTrust DV SSL CA - G3, 2 = TrustAsia TLS RSA CA, 3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书。
|
224
231
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
225
232
|
# @type PackageType: String
|
226
233
|
# @param CertificateType: 证书类型:CA = 客户端证书,SVR = 服务器证书。
|
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.535
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|