tencentcloud-sdk-ssl 3.0.645 → 3.0.647

Sign up to get free protection for your applications and to get access to all the features.
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: 50fefff5abecc8c8ab07879ce140ae8d5232eda9
4
- data.tar.gz: 8fc26678d9f24d073c2666e235622d86fe6cb876
3
+ metadata.gz: 339e0461cb88e0898f8735b1af7ebaabfa75a67b
4
+ data.tar.gz: 2f4553ff38000fdca4aa1dada086787dded0de52
5
5
  SHA512:
6
- metadata.gz: 31527a082ec22b2e4d486b5684012e8eab4fd09f7feff0ea3efb812e354b9ecf882e117937ff46d0a9153cdb1e6c2354228a2dfefa489c786e1a54bc32b0aded
7
- data.tar.gz: c17065eab0b3e04d941c39042cbc8aa8f7bd0388356c81e5dc5a82d6dc5561da4f2d2cd333bb87d220a1fab3a654a8c6b592970c4e5b77916cb68bb7adc7b265
6
+ metadata.gz: ac0cf0026e774607467e89dc43af253c54025e5a9770c6a13607a74dce740e865ed81ca9b088f611668d519ba86498a13a68f4f05301ec8de83536184ba52148
7
+ data.tar.gz: bb718b3cef74a3c2ef46c06e3a7f01a06040a2739235678ccc7217492f0dcda5f0c1a20a3efa85ac730f582066f1c4c8be099a9e6affae20cd8c3f3a820055d3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.645
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.645
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-28 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