tencentcloud-sdk-ssl 3.0.532 → 3.0.533
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20191205/models.rb +13 -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: f3a27fc502757373a232ad5744de99fe24279183
|
4
|
+
data.tar.gz: f3e3cfe2a343e8720e885a09372d891ba5bc1f95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bef24f8a9ac3781c221f9d60f01acea474c782af19e9842408a95167fac5a90b8a8fa0d98dcad77422978c459cec241c42ec06b617650bfd3efc6ce44a460748
|
7
|
+
data.tar.gz: c23c9503171894807e2b5391d50c5037fcb7d4be47d5568fed65d6b403755eca00f9e1fcf7b4011577e0fb1ae4e870008887817c3800cb4dca34092bb670d077
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.533
|
data/lib/v20191205/models.rb
CHANGED
@@ -2790,16 +2790,19 @@ module TencentCloud
|
|
2790
2790
|
# @type ProjectId: Integer
|
2791
2791
|
# @param CertificateUse: 证书用途/证书来源。“CLB,CDN,WAF,LIVE,DDOS”
|
2792
2792
|
# @type CertificateUse: String
|
2793
|
+
# @param Repeatable: 相同的证书是否允许重复上传
|
2794
|
+
# @type Repeatable: Boolean
|
2793
2795
|
|
2794
|
-
attr_accessor :CertificatePublicKey, :CertificatePrivateKey, :CertificateType, :Alias, :ProjectId, :CertificateUse
|
2796
|
+
attr_accessor :CertificatePublicKey, :CertificatePrivateKey, :CertificateType, :Alias, :ProjectId, :CertificateUse, :Repeatable
|
2795
2797
|
|
2796
|
-
def initialize(certificatepublickey=nil, certificateprivatekey=nil, certificatetype=nil, _alias=nil, projectid=nil, certificateuse=nil)
|
2798
|
+
def initialize(certificatepublickey=nil, certificateprivatekey=nil, certificatetype=nil, _alias=nil, projectid=nil, certificateuse=nil, repeatable=nil)
|
2797
2799
|
@CertificatePublicKey = certificatepublickey
|
2798
2800
|
@CertificatePrivateKey = certificateprivatekey
|
2799
2801
|
@CertificateType = certificatetype
|
2800
2802
|
@Alias = _alias
|
2801
2803
|
@ProjectId = projectid
|
2802
2804
|
@CertificateUse = certificateuse
|
2805
|
+
@Repeatable = repeatable
|
2803
2806
|
end
|
2804
2807
|
|
2805
2808
|
def deserialize(params)
|
@@ -2809,6 +2812,7 @@ module TencentCloud
|
|
2809
2812
|
@Alias = params['Alias']
|
2810
2813
|
@ProjectId = params['ProjectId']
|
2811
2814
|
@CertificateUse = params['CertificateUse']
|
2815
|
+
@Repeatable = params['Repeatable']
|
2812
2816
|
end
|
2813
2817
|
end
|
2814
2818
|
|
@@ -2816,18 +2820,23 @@ module TencentCloud
|
|
2816
2820
|
class UploadCertificateResponse < TencentCloud::Common::AbstractModel
|
2817
2821
|
# @param CertificateId: 证书 ID。
|
2818
2822
|
# @type CertificateId: String
|
2823
|
+
# @param RepeatCertId: 重复证书的ID
|
2824
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2825
|
+
# @type RepeatCertId: String
|
2819
2826
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2820
2827
|
# @type RequestId: String
|
2821
2828
|
|
2822
|
-
attr_accessor :CertificateId, :RequestId
|
2829
|
+
attr_accessor :CertificateId, :RepeatCertId, :RequestId
|
2823
2830
|
|
2824
|
-
def initialize(certificateid=nil, requestid=nil)
|
2831
|
+
def initialize(certificateid=nil, repeatcertid=nil, requestid=nil)
|
2825
2832
|
@CertificateId = certificateid
|
2833
|
+
@RepeatCertId = repeatcertid
|
2826
2834
|
@RequestId = requestid
|
2827
2835
|
end
|
2828
2836
|
|
2829
2837
|
def deserialize(params)
|
2830
2838
|
@CertificateId = params['CertificateId']
|
2839
|
+
@RepeatCertId = params['RepeatCertId']
|
2831
2840
|
@RequestId = params['RequestId']
|
2832
2841
|
end
|
2833
2842
|
end
|
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.533
|
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-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|