tencentcloud-sdk-ssl 3.0.659 → 3.0.660
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/client.rb +48 -0
- data/lib/v20191205/models.rb +72 -0
- 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: 452a7df717712caaebec56f0668d69b76aef9cb1
|
4
|
+
data.tar.gz: 1cf111814fa757e4c1b67a5923a9309ff2839a2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 083112dfc96f39be429453165b01b5a57056a1daf5e30f7ba5e572a0571dbc0c1b548dff7a64e5e6e42a86139b556bbe6a3c030b79a9d039596221bd428e6109
|
7
|
+
data.tar.gz: 57d0bfe47308fbd7f5c3d863fde52f3941c9cd5b416e01bb4abcb53b04928b6f609a969e56638a4cf8e56af06e1f6b700a8c2da0d74d33f649e067fb398e5c15
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.660
|
data/lib/v20191205/client.rb
CHANGED
@@ -53,6 +53,30 @@ module TencentCloud
|
|
53
53
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
54
|
end
|
55
55
|
|
56
|
+
# 取消证书审核
|
57
|
+
|
58
|
+
# @param request: Request instance for CancelAuditCertificate.
|
59
|
+
# @type request: :class:`Tencentcloud::ssl::V20191205::CancelAuditCertificateRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::ssl::V20191205::CancelAuditCertificateResponse`
|
61
|
+
def CancelAuditCertificate(request)
|
62
|
+
body = send_request('CancelAuditCertificate', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CancelAuditCertificateResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
56
80
|
# 取消证书订单。
|
57
81
|
|
58
82
|
# @param request: Request instance for CancelCertificateOrder.
|
@@ -1061,6 +1085,30 @@ module TencentCloud
|
|
1061
1085
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1062
1086
|
end
|
1063
1087
|
|
1088
|
+
# 针对审核失败或审核取消的付费证书,重新发起审核
|
1089
|
+
|
1090
|
+
# @param request: Request instance for ModifyCertificateResubmit.
|
1091
|
+
# @type request: :class:`Tencentcloud::ssl::V20191205::ModifyCertificateResubmitRequest`
|
1092
|
+
# @rtype: :class:`Tencentcloud::ssl::V20191205::ModifyCertificateResubmitResponse`
|
1093
|
+
def ModifyCertificateResubmit(request)
|
1094
|
+
body = send_request('ModifyCertificateResubmit', request.serialize)
|
1095
|
+
response = JSON.parse(body)
|
1096
|
+
if response['Response'].key?('Error') == false
|
1097
|
+
model = ModifyCertificateResubmitResponse.new
|
1098
|
+
model.deserialize(response['Response'])
|
1099
|
+
model
|
1100
|
+
else
|
1101
|
+
code = response['Response']['Error']['Code']
|
1102
|
+
message = response['Response']['Error']['Message']
|
1103
|
+
reqid = response['Response']['RequestId']
|
1104
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1105
|
+
end
|
1106
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1107
|
+
raise e
|
1108
|
+
rescue StandardError => e
|
1109
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1110
|
+
end
|
1111
|
+
|
1064
1112
|
# 修改忽略证书到期通知。打开或关闭证书到期通知。
|
1065
1113
|
|
1066
1114
|
# @param request: Request instance for ModifyCertificatesExpiringNotificationSwitch.
|
data/lib/v20191205/models.rb
CHANGED
@@ -218,6 +218,42 @@ module TencentCloud
|
|
218
218
|
end
|
219
219
|
end
|
220
220
|
|
221
|
+
# CancelAuditCertificate请求参数结构体
|
222
|
+
class CancelAuditCertificateRequest < TencentCloud::Common::AbstractModel
|
223
|
+
# @param CertificateId: 证书ID
|
224
|
+
# @type CertificateId: String
|
225
|
+
|
226
|
+
attr_accessor :CertificateId
|
227
|
+
|
228
|
+
def initialize(certificateid=nil)
|
229
|
+
@CertificateId = certificateid
|
230
|
+
end
|
231
|
+
|
232
|
+
def deserialize(params)
|
233
|
+
@CertificateId = params['CertificateId']
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
# CancelAuditCertificate返回参数结构体
|
238
|
+
class CancelAuditCertificateResponse < TencentCloud::Common::AbstractModel
|
239
|
+
# @param Result: 操作是否成功
|
240
|
+
# @type Result: Boolean
|
241
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
242
|
+
# @type RequestId: String
|
243
|
+
|
244
|
+
attr_accessor :Result, :RequestId
|
245
|
+
|
246
|
+
def initialize(result=nil, requestid=nil)
|
247
|
+
@Result = result
|
248
|
+
@RequestId = requestid
|
249
|
+
end
|
250
|
+
|
251
|
+
def deserialize(params)
|
252
|
+
@Result = params['Result']
|
253
|
+
@RequestId = params['RequestId']
|
254
|
+
end
|
255
|
+
end
|
256
|
+
|
221
257
|
# CancelCertificateOrder请求参数结构体
|
222
258
|
class CancelCertificateOrderRequest < TencentCloud::Common::AbstractModel
|
223
259
|
# @param CertificateId: 证书 ID。
|
@@ -4562,6 +4598,42 @@ module TencentCloud
|
|
4562
4598
|
end
|
4563
4599
|
end
|
4564
4600
|
|
4601
|
+
# ModifyCertificateResubmit请求参数结构体
|
4602
|
+
class ModifyCertificateResubmitRequest < TencentCloud::Common::AbstractModel
|
4603
|
+
# @param CertificateId: 证书ID。
|
4604
|
+
# @type CertificateId: String
|
4605
|
+
|
4606
|
+
attr_accessor :CertificateId
|
4607
|
+
|
4608
|
+
def initialize(certificateid=nil)
|
4609
|
+
@CertificateId = certificateid
|
4610
|
+
end
|
4611
|
+
|
4612
|
+
def deserialize(params)
|
4613
|
+
@CertificateId = params['CertificateId']
|
4614
|
+
end
|
4615
|
+
end
|
4616
|
+
|
4617
|
+
# ModifyCertificateResubmit返回参数结构体
|
4618
|
+
class ModifyCertificateResubmitResponse < TencentCloud::Common::AbstractModel
|
4619
|
+
# @param CertificateId: 证书ID。
|
4620
|
+
# @type CertificateId: String
|
4621
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4622
|
+
# @type RequestId: String
|
4623
|
+
|
4624
|
+
attr_accessor :CertificateId, :RequestId
|
4625
|
+
|
4626
|
+
def initialize(certificateid=nil, requestid=nil)
|
4627
|
+
@CertificateId = certificateid
|
4628
|
+
@RequestId = requestid
|
4629
|
+
end
|
4630
|
+
|
4631
|
+
def deserialize(params)
|
4632
|
+
@CertificateId = params['CertificateId']
|
4633
|
+
@RequestId = params['RequestId']
|
4634
|
+
end
|
4635
|
+
end
|
4636
|
+
|
4565
4637
|
# ModifyCertificatesExpiringNotificationSwitch请求参数结构体
|
4566
4638
|
class ModifyCertificatesExpiringNotificationSwitchRequest < TencentCloud::Common::AbstractModel
|
4567
4639
|
# @param CertificateIds: 证书ID列表。最多50个
|
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.660
|
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-09-
|
11
|
+
date: 2023-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|