tencentcloud-sdk-ssl 3.0.681 → 3.0.683
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 +118 -3
- 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: 6ce4ba69c26191568a4ef159da60605330756fa3
|
4
|
+
data.tar.gz: a7f0fcbf3d744330a2ccc25035657a334126a36b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6a01d9bf409cabfd87919af9cc8a14b71f93dc66319a1275157c095cd8a81fdb73ca9ac10b0f1d75bd31e5f7d210ba9ea95f664bf1023287485b7671904d027
|
7
|
+
data.tar.gz: 1f657517e4022d1349a8462230d59a0f8db38a2fcf01abfef9f2246fd663efb8ab32238abf0bbdc7b01a919bacce215ebadae4cf9c4daaa142da38fe31d6fc0d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.683
|
data/lib/v20191205/models.rb
CHANGED
@@ -100,7 +100,7 @@ module TencentCloud
|
|
100
100
|
# @type ValidityPeriod: String
|
101
101
|
# @param CsrEncryptAlgo: 加密算法,支持 RSA及ECC。
|
102
102
|
# @type CsrEncryptAlgo: String
|
103
|
-
# @param CsrKeyParameter: 密钥对参数,RSA仅支持2048。ECC仅支持prime256v1
|
103
|
+
# @param CsrKeyParameter: 密钥对参数,RSA仅支持2048。ECC仅支持prime256v1。加密算法选择ECC时,此参数必填
|
104
104
|
# @type CsrKeyParameter: String
|
105
105
|
# @param CsrKeyPassword: CSR 的加密密码。
|
106
106
|
# @type CsrKeyPassword: String
|
@@ -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.683
|
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-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -34,8 +34,8 @@ extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
36
|
- lib/tencentcloud-sdk-ssl.rb
|
37
|
-
- lib/v20191205/client.rb
|
38
37
|
- lib/v20191205/models.rb
|
38
|
+
- lib/v20191205/client.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|