tencentcloud-sdk-ssl 3.0.853 → 3.0.854
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/client.rb +2 -2
- data/lib/v20191205/models.rb +10 -5
- 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: 3bc65ac8f6ae73bddcf6143c4152fe60d17fe912
|
4
|
+
data.tar.gz: 89d68460db1108e3bfb5ba7462a5417c05ff4f95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46bd95df75f980b6bd3de6f0efbf2b74e2a6416812ba60a11e52fe578719620655376b29a89e9a2519a13f23ba346b584db795d59c73305d5d04f06216f5e13a
|
7
|
+
data.tar.gz: 798e11a930f5e51ae08b2efd8fb3455f8f156c79ac57d545c5d240bb5ee475c6cdcc4974bdc3edb5fc18916ec3e1c38bf340d34551224d65dfdde8aed7b382c0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.854
|
data/lib/v20191205/client.rb
CHANGED
@@ -197,7 +197,7 @@ module TencentCloud
|
|
197
197
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
198
|
end
|
199
199
|
|
200
|
-
# 创建证书绑定关联云资源异步任务, 该接口用于查询证书关联云资源。 若证书ID已存在查询云资源任务,则结果返回该任务ID。关联云资源类型,支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne
|
200
|
+
# 创建证书绑定关联云资源异步任务, 该接口用于查询证书关联云资源。 若证书ID已存在查询云资源任务,则结果返回该任务ID。关联云资源类型,支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos。查询关联云资源结果使用DescribeCertificateBindResourceTaskResult接口
|
201
201
|
|
202
202
|
# @param request: Request instance for CreateCertificateBindResourceSyncTask.
|
203
203
|
# @type request: :class:`Tencentcloud::ssl::V20191205::CreateCertificateBindResourceSyncTaskRequest`
|
@@ -437,7 +437,7 @@ module TencentCloud
|
|
437
437
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
438
438
|
end
|
439
439
|
|
440
|
-
# 查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne
|
440
|
+
# 查询CreateCertificateBindResourceSyncTask任务结果, 返回证书关联云资源异步任务结果, 支持以下云资源:clb、cdn、waf、live、vod、ddos、tke、apigateway、tcb、teo(edgeOne)、cos
|
441
441
|
|
442
442
|
# @param request: Request instance for DescribeCertificateBindResourceTaskResult.
|
443
443
|
# @type request: :class:`Tencentcloud::ssl::V20191205::DescribeCertificateBindResourceTaskResultRequest`
|
data/lib/v20191205/models.rb
CHANGED
@@ -208,17 +208,22 @@ module TencentCloud
|
|
208
208
|
# @type Region: String
|
209
209
|
# @param TotalCount: 关联资源总数
|
210
210
|
# @type TotalCount: Integer
|
211
|
+
# @param Error: 是否查询异常
|
212
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
213
|
+
# @type Error: String
|
211
214
|
|
212
|
-
attr_accessor :Region, :TotalCount
|
215
|
+
attr_accessor :Region, :TotalCount, :Error
|
213
216
|
|
214
|
-
def initialize(region=nil, totalcount=nil)
|
217
|
+
def initialize(region=nil, totalcount=nil, error=nil)
|
215
218
|
@Region = region
|
216
219
|
@TotalCount = totalcount
|
220
|
+
@Error = error
|
217
221
|
end
|
218
222
|
|
219
223
|
def deserialize(params)
|
220
224
|
@Region = params['Region']
|
221
225
|
@TotalCount = params['TotalCount']
|
226
|
+
@Error = params['Error']
|
222
227
|
end
|
223
228
|
end
|
224
229
|
|
@@ -6412,7 +6417,7 @@ module TencentCloud
|
|
6412
6417
|
class UpdateCertificateInstanceRequest < TencentCloud::Common::AbstractModel
|
6413
6418
|
# @param OldCertificateId: 一键更新原证书ID, 查询绑定该证书的云资源然后进行证书更新
|
6414
6419
|
# @type OldCertificateId: String
|
6415
|
-
# @param ResourceTypes: 需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse
|
6420
|
+
# @param ResourceTypes: 需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse、cos
|
6416
6421
|
# @type ResourceTypes: Array
|
6417
6422
|
# @param CertificateId: 一键更新新证书ID,不传该则证书公钥和私钥必传
|
6418
6423
|
# @type CertificateId: String
|
@@ -6437,8 +6442,8 @@ module TencentCloud
|
|
6437
6442
|
|
6438
6443
|
attr_accessor :OldCertificateId, :ResourceTypes, :CertificateId, :Regions, :ResourceTypesRegions, :CertificatePublicKey, :CertificatePrivateKey, :ExpiringNotificationSwitch, :Repeatable, :AllowDownload, :Tags, :ProjectId
|
6439
6444
|
extend Gem::Deprecate
|
6440
|
-
deprecate :Regions, :none, 2024,
|
6441
|
-
deprecate :Regions=, :none, 2024,
|
6445
|
+
deprecate :Regions, :none, 2024, 7
|
6446
|
+
deprecate :Regions=, :none, 2024, 7
|
6442
6447
|
|
6443
6448
|
def initialize(oldcertificateid=nil, resourcetypes=nil, certificateid=nil, regions=nil, resourcetypesregions=nil, certificatepublickey=nil, certificateprivatekey=nil, expiringnotificationswitch=nil, repeatable=nil, allowdownload=nil, tags=nil, projectid=nil)
|
6444
6449
|
@OldCertificateId = oldcertificateid
|
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.854
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|