tencentcloud-sdk-ssl 3.0.646 → 3.0.647

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20191205/models.rb +28 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7cac2676d2628984bd5ca9d339d6f489e590c9eb
4
- data.tar.gz: 8413f164375a9926a5a7b73b9081a4ef2f4b55bb
3
+ metadata.gz: 339e0461cb88e0898f8735b1af7ebaabfa75a67b
4
+ data.tar.gz: 2f4553ff38000fdca4aa1dada086787dded0de52
5
5
  SHA512:
6
- metadata.gz: c257338b5f7a92c9678694aacce62f0cf74aa8310a37edef3f3723f9d529a0dc66a4cd108bb7d44278ea72ee71eaff614db06adc786ef8830108522d3a56cbaa
7
- data.tar.gz: f97ac6475e573ff532a909d8c249ca1a543023b47e3898c055b75ebdf745caf9ed7876774e791dd8827a5ee37e6aa42646b308dd5c7ecd88e114eccd032af965
6
+ metadata.gz: ac0cf0026e774607467e89dc43af253c54025e5a9770c6a13607a74dce740e865ed81ca9b088f611668d519ba86498a13a68f4f05301ec8de83536184ba52148
7
+ data.tar.gz: bb718b3cef74a3c2ef46c06e3a7f01a06040a2739235678ccc7217492f0dcda5f0c1a20a3efa85ac730f582066f1c4c8be099a9e6affae20cd8c3f3a820055d3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.646
1
+ 3.0.647
@@ -182,19 +182,23 @@ module TencentCloud
182
182
  # @type CertId: String
183
183
  # @param Status: 域名状态
184
184
  # @type Status: String
185
+ # @param HttpsBillingSwitch: 域名计费状态
186
+ # @type HttpsBillingSwitch: String
185
187
 
186
- attr_accessor :Domain, :CertId, :Status
188
+ attr_accessor :Domain, :CertId, :Status, :HttpsBillingSwitch
187
189
 
188
- def initialize(domain=nil, certid=nil, status=nil)
190
+ def initialize(domain=nil, certid=nil, status=nil, httpsbillingswitch=nil)
189
191
  @Domain = domain
190
192
  @CertId = certid
191
193
  @Status = status
194
+ @HttpsBillingSwitch = httpsbillingswitch
192
195
  end
193
196
 
194
197
  def deserialize(params)
195
198
  @Domain = params['Domain']
196
199
  @CertId = params['CertId']
197
200
  @Status = params['Status']
201
+ @HttpsBillingSwitch = params['HttpsBillingSwitch']
198
202
  end
199
203
  end
200
204
 
@@ -235,17 +239,27 @@ module TencentCloud
235
239
  # @type CertId: String
236
240
  # @param DnsNames: 证书绑定的域名
237
241
  # @type DnsNames: Array
242
+ # @param CertCaId: 根证书ID
243
+ # 注意:此字段可能返回 null,表示取不到有效值。
244
+ # @type CertCaId: String
245
+ # @param SSLMode: 证书认证模式:UNIDIRECTIONAL单向认证,MUTUAL双向认证
246
+ # 注意:此字段可能返回 null,表示取不到有效值。
247
+ # @type SSLMode: String
238
248
 
239
- attr_accessor :CertId, :DnsNames
249
+ attr_accessor :CertId, :DnsNames, :CertCaId, :SSLMode
240
250
 
241
- def initialize(certid=nil, dnsnames=nil)
251
+ def initialize(certid=nil, dnsnames=nil, certcaid=nil, sslmode=nil)
242
252
  @CertId = certid
243
253
  @DnsNames = dnsnames
254
+ @CertCaId = certcaid
255
+ @SSLMode = sslmode
244
256
  end
245
257
 
246
258
  def deserialize(params)
247
259
  @CertId = params['CertId']
248
260
  @DnsNames = params['DnsNames']
261
+ @CertCaId = params['CertCaId']
262
+ @SSLMode = params['SSLMode']
249
263
  end
250
264
  end
251
265
 
@@ -4847,13 +4861,19 @@ module TencentCloud
4847
4861
  # @type ClusterName: String
4848
4862
  # @param NamespaceList: 集群命名空间列表
4849
4863
  # @type NamespaceList: Array
4864
+ # @param ClusterType: 集群类型
4865
+ # @type ClusterType: String
4866
+ # @param ClusterVersion: 集群版本
4867
+ # @type ClusterVersion: String
4850
4868
 
4851
- attr_accessor :ClusterId, :ClusterName, :NamespaceList
4869
+ attr_accessor :ClusterId, :ClusterName, :NamespaceList, :ClusterType, :ClusterVersion
4852
4870
 
4853
- def initialize(clusterid=nil, clustername=nil, namespacelist=nil)
4871
+ def initialize(clusterid=nil, clustername=nil, namespacelist=nil, clustertype=nil, clusterversion=nil)
4854
4872
  @ClusterId = clusterid
4855
4873
  @ClusterName = clustername
4856
4874
  @NamespaceList = namespacelist
4875
+ @ClusterType = clustertype
4876
+ @ClusterVersion = clusterversion
4857
4877
  end
4858
4878
 
4859
4879
  def deserialize(params)
@@ -4867,6 +4887,8 @@ module TencentCloud
4867
4887
  @NamespaceList << tkenamespacedetail_tmp
4868
4888
  end
4869
4889
  end
4890
+ @ClusterType = params['ClusterType']
4891
+ @ClusterVersion = params['ClusterVersion']
4870
4892
  end
4871
4893
  end
4872
4894
 
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.646
4
+ version: 3.0.647
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-08-29 00:00:00.000000000 Z
11
+ date: 2023-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common