tencentcloud-sdk-ssl 3.0.853 → 3.0.855
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 +37 -6
- 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: a346080a636df000075973564bb08b4bcf85a3b0
|
4
|
+
data.tar.gz: d13467670cfae5b35a537cede06a5b3e525c9a1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d25921538793c6a3cc8b13ec22f81dd523edcf1e03c689a5e06d3496aece5edd3c986f998baf01c9633b33eea4cff3c6f41a1ad38fc8f82a98f310404747d62
|
7
|
+
data.tar.gz: 6bf7054b72a65636554ef7c2dee1d4efde4bf53a8b2379f31739b6d7da556419f0a5bbb554f24aea19fa862ac72dd3bc75965941766938d77cc1c348ae092870
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.855
|
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
|
|
@@ -4214,6 +4219,11 @@ module TencentCloud
|
|
4214
4219
|
# @type Offset: Integer
|
4215
4220
|
|
4216
4221
|
attr_accessor :ManagerId, :Limit, :Offset
|
4222
|
+
extend Gem::Deprecate
|
4223
|
+
deprecate :Limit, :none, 2024, 7
|
4224
|
+
deprecate :Limit=, :none, 2024, 7
|
4225
|
+
deprecate :Offset, :none, 2024, 7
|
4226
|
+
deprecate :Offset=, :none, 2024, 7
|
4217
4227
|
|
4218
4228
|
def initialize(managerid=nil, limit=nil, offset=nil)
|
4219
4229
|
@ManagerId = managerid
|
@@ -4871,12 +4881,33 @@ module TencentCloud
|
|
4871
4881
|
|
4872
4882
|
# 管理人的四种审核状态
|
4873
4883
|
class ManagerStatusInfo < TencentCloud::Common::AbstractModel
|
4884
|
+
# @param Type: 审核类型,枚举值:ov,ev,cs,ev_cs
|
4885
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4886
|
+
# @type Type: String
|
4887
|
+
# @param Status: 审核状态,枚举值:pending,completed,invalid,submitted,expiring,expired
|
4888
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4889
|
+
# @type Status: String
|
4890
|
+
# @param CreateTime: 创建时间
|
4891
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4892
|
+
# @type CreateTime: String
|
4893
|
+
# @param ExpireTime: 过期时间
|
4894
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4895
|
+
# @type ExpireTime: String
|
4874
4896
|
|
4897
|
+
attr_accessor :Type, :Status, :CreateTime, :ExpireTime
|
4875
4898
|
|
4876
|
-
def initialize()
|
4899
|
+
def initialize(type=nil, status=nil, createtime=nil, expiretime=nil)
|
4900
|
+
@Type = type
|
4901
|
+
@Status = status
|
4902
|
+
@CreateTime = createtime
|
4903
|
+
@ExpireTime = expiretime
|
4877
4904
|
end
|
4878
4905
|
|
4879
4906
|
def deserialize(params)
|
4907
|
+
@Type = params['Type']
|
4908
|
+
@Status = params['Status']
|
4909
|
+
@CreateTime = params['CreateTime']
|
4910
|
+
@ExpireTime = params['ExpireTime']
|
4880
4911
|
end
|
4881
4912
|
end
|
4882
4913
|
|
@@ -6412,7 +6443,7 @@ module TencentCloud
|
|
6412
6443
|
class UpdateCertificateInstanceRequest < TencentCloud::Common::AbstractModel
|
6413
6444
|
# @param OldCertificateId: 一键更新原证书ID, 查询绑定该证书的云资源然后进行证书更新
|
6414
6445
|
# @type OldCertificateId: String
|
6415
|
-
# @param ResourceTypes: 需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse
|
6446
|
+
# @param ResourceTypes: 需要部署的资源类型,参数值可选(小写):clb、cdn、waf、live、ddos、teo、apigateway、vod、tke、tcb、tse、cos
|
6416
6447
|
# @type ResourceTypes: Array
|
6417
6448
|
# @param CertificateId: 一键更新新证书ID,不传该则证书公钥和私钥必传
|
6418
6449
|
# @type CertificateId: String
|
@@ -6437,8 +6468,8 @@ module TencentCloud
|
|
6437
6468
|
|
6438
6469
|
attr_accessor :OldCertificateId, :ResourceTypes, :CertificateId, :Regions, :ResourceTypesRegions, :CertificatePublicKey, :CertificatePrivateKey, :ExpiringNotificationSwitch, :Repeatable, :AllowDownload, :Tags, :ProjectId
|
6439
6470
|
extend Gem::Deprecate
|
6440
|
-
deprecate :Regions, :none, 2024,
|
6441
|
-
deprecate :Regions=, :none, 2024,
|
6471
|
+
deprecate :Regions, :none, 2024, 7
|
6472
|
+
deprecate :Regions=, :none, 2024, 7
|
6442
6473
|
|
6443
6474
|
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
6475
|
@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.855
|
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-
|
11
|
+
date: 2024-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|