tencentcloud-sdk-ssl 3.0.680 → 3.0.682
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 +117 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b5243ad16b9dea13a773553819817272eba0adf
|
4
|
+
data.tar.gz: 3504eb262a4e354c7a8c4563b000f6214efc6845
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d974987a68ede87f5fa0bffc7e45212e88d63a65f81ceb1b3f389fc116902e3413e21f798dc2d26dc3535c71cc47c3236d412228720c7edfd3ab518c95df241d
|
7
|
+
data.tar.gz: e6125a503e5cbdfbe3795b1bfb48eb5e3504bed26dd54c80a7a5bd09c2573839d1e9db4fd091f355b96e0e2339c0bc47de03423dc967f22cdcfce4ccf3ad7cd6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.682
|
data/lib/v20191205/models.rb
CHANGED
@@ -1785,12 +1785,15 @@ module TencentCloud
|
|
1785
1785
|
# @type Status: Integer
|
1786
1786
|
# @param CacheTime: 当前结果缓存时间
|
1787
1787
|
# @type CacheTime: String
|
1788
|
+
# @param TSE: 关联tse资源详情
|
1789
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1790
|
+
# @type TSE: Array
|
1788
1791
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1789
1792
|
# @type RequestId: String
|
1790
1793
|
|
1791
|
-
attr_accessor :CLB, :CDN, :WAF, :DDOS, :LIVE, :VOD, :TKE, :APIGATEWAY, :TCB, :TEO, :Status, :CacheTime, :RequestId
|
1794
|
+
attr_accessor :CLB, :CDN, :WAF, :DDOS, :LIVE, :VOD, :TKE, :APIGATEWAY, :TCB, :TEO, :Status, :CacheTime, :TSE, :RequestId
|
1792
1795
|
|
1793
|
-
def initialize(clb=nil, cdn=nil, waf=nil, ddos=nil, live=nil, vod=nil, tke=nil, apigateway=nil, tcb=nil, teo=nil, status=nil, cachetime=nil, requestid=nil)
|
1796
|
+
def initialize(clb=nil, cdn=nil, waf=nil, ddos=nil, live=nil, vod=nil, tke=nil, apigateway=nil, tcb=nil, teo=nil, status=nil, cachetime=nil, tse=nil, requestid=nil)
|
1794
1797
|
@CLB = clb
|
1795
1798
|
@CDN = cdn
|
1796
1799
|
@WAF = waf
|
@@ -1803,6 +1806,7 @@ module TencentCloud
|
|
1803
1806
|
@TEO = teo
|
1804
1807
|
@Status = status
|
1805
1808
|
@CacheTime = cachetime
|
1809
|
+
@TSE = tse
|
1806
1810
|
@RequestId = requestid
|
1807
1811
|
end
|
1808
1812
|
|
@@ -1889,6 +1893,14 @@ module TencentCloud
|
|
1889
1893
|
end
|
1890
1894
|
@Status = params['Status']
|
1891
1895
|
@CacheTime = params['CacheTime']
|
1896
|
+
unless params['TSE'].nil?
|
1897
|
+
@TSE = []
|
1898
|
+
params['TSE'].each do |i|
|
1899
|
+
tseinstancelist_tmp = TSEInstanceList.new
|
1900
|
+
tseinstancelist_tmp.deserialize(i)
|
1901
|
+
@TSE << tseinstancelist_tmp
|
1902
|
+
end
|
1903
|
+
end
|
1892
1904
|
@RequestId = params['RequestId']
|
1893
1905
|
end
|
1894
1906
|
end
|
@@ -4291,6 +4303,43 @@ module TencentCloud
|
|
4291
4303
|
end
|
4292
4304
|
end
|
4293
4305
|
|
4306
|
+
# 云原生网关证书信息
|
4307
|
+
class GatewayCertificate < TencentCloud::Common::AbstractModel
|
4308
|
+
# @param Id: 网关证书ID
|
4309
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4310
|
+
# @type Id: String
|
4311
|
+
# @param Name: 网关证书名称
|
4312
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4313
|
+
# @type Name: String
|
4314
|
+
# @param BindDomains: 绑定域名
|
4315
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4316
|
+
# @type BindDomains: Array
|
4317
|
+
# @param CertSource: 证书来源
|
4318
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4319
|
+
# @type CertSource: String
|
4320
|
+
# @param CertId: 当前绑定的SSL证书ID
|
4321
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4322
|
+
# @type CertId: String
|
4323
|
+
|
4324
|
+
attr_accessor :Id, :Name, :BindDomains, :CertSource, :CertId
|
4325
|
+
|
4326
|
+
def initialize(id=nil, name=nil, binddomains=nil, certsource=nil, certid=nil)
|
4327
|
+
@Id = id
|
4328
|
+
@Name = name
|
4329
|
+
@BindDomains = binddomains
|
4330
|
+
@CertSource = certsource
|
4331
|
+
@CertId = certid
|
4332
|
+
end
|
4333
|
+
|
4334
|
+
def deserialize(params)
|
4335
|
+
@Id = params['Id']
|
4336
|
+
@Name = params['Name']
|
4337
|
+
@BindDomains = params['BindDomains']
|
4338
|
+
@CertSource = params['CertSource']
|
4339
|
+
@CertId = params['CertId']
|
4340
|
+
end
|
4341
|
+
end
|
4342
|
+
|
4294
4343
|
# HostCertificate请求参数结构体
|
4295
4344
|
class HostCertificateRequest < TencentCloud::Common::AbstractModel
|
4296
4345
|
# @param CertificateId: 证书ID
|
@@ -5659,6 +5708,72 @@ module TencentCloud
|
|
5659
5708
|
end
|
5660
5709
|
end
|
5661
5710
|
|
5711
|
+
# tse实例详情
|
5712
|
+
class TSEInstanceDetail < TencentCloud::Common::AbstractModel
|
5713
|
+
# @param GatewayId: 网关ID
|
5714
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5715
|
+
# @type GatewayId: String
|
5716
|
+
# @param GatewayName: 网关名称
|
5717
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5718
|
+
# @type GatewayName: String
|
5719
|
+
# @param CertificateList: 网关证书列表
|
5720
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5721
|
+
# @type CertificateList: Array
|
5722
|
+
|
5723
|
+
attr_accessor :GatewayId, :GatewayName, :CertificateList
|
5724
|
+
|
5725
|
+
def initialize(gatewayid=nil, gatewayname=nil, certificatelist=nil)
|
5726
|
+
@GatewayId = gatewayid
|
5727
|
+
@GatewayName = gatewayname
|
5728
|
+
@CertificateList = certificatelist
|
5729
|
+
end
|
5730
|
+
|
5731
|
+
def deserialize(params)
|
5732
|
+
@GatewayId = params['GatewayId']
|
5733
|
+
@GatewayName = params['GatewayName']
|
5734
|
+
unless params['CertificateList'].nil?
|
5735
|
+
@CertificateList = []
|
5736
|
+
params['CertificateList'].each do |i|
|
5737
|
+
gatewaycertificate_tmp = GatewayCertificate.new
|
5738
|
+
gatewaycertificate_tmp.deserialize(i)
|
5739
|
+
@CertificateList << gatewaycertificate_tmp
|
5740
|
+
end
|
5741
|
+
end
|
5742
|
+
end
|
5743
|
+
end
|
5744
|
+
|
5745
|
+
# TSE实例详情 - 异步关联云资源数据结构
|
5746
|
+
class TSEInstanceList < TencentCloud::Common::AbstractModel
|
5747
|
+
# @param InstanceList: TSE实例详情
|
5748
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5749
|
+
# @type InstanceList: Array
|
5750
|
+
# @param TotalCount: 该地域下TSE实例总数
|
5751
|
+
# @type TotalCount: Integer
|
5752
|
+
# @param Region: 地域
|
5753
|
+
# @type Region: String
|
5754
|
+
|
5755
|
+
attr_accessor :InstanceList, :TotalCount, :Region
|
5756
|
+
|
5757
|
+
def initialize(instancelist=nil, totalcount=nil, region=nil)
|
5758
|
+
@InstanceList = instancelist
|
5759
|
+
@TotalCount = totalcount
|
5760
|
+
@Region = region
|
5761
|
+
end
|
5762
|
+
|
5763
|
+
def deserialize(params)
|
5764
|
+
unless params['InstanceList'].nil?
|
5765
|
+
@InstanceList = []
|
5766
|
+
params['InstanceList'].each do |i|
|
5767
|
+
tseinstancedetail_tmp = TSEInstanceDetail.new
|
5768
|
+
tseinstancedetail_tmp.deserialize(i)
|
5769
|
+
@InstanceList << tseinstancedetail_tmp
|
5770
|
+
end
|
5771
|
+
end
|
5772
|
+
@TotalCount = params['TotalCount']
|
5773
|
+
@Region = params['Region']
|
5774
|
+
end
|
5775
|
+
end
|
5776
|
+
|
5662
5777
|
# 标签
|
5663
5778
|
class Tags < TencentCloud::Common::AbstractModel
|
5664
5779
|
# @param TagKey: 标签键
|
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.682
|
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-10-
|
11
|
+
date: 2023-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/tencentcloud-sdk-ssl.rb
|
37
36
|
- lib/v20191205/client.rb
|
38
37
|
- lib/v20191205/models.rb
|
38
|
+
- lib/tencentcloud-sdk-ssl.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|