tencentcloud-sdk-tcb 1.0.200
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 +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-tcb.rb +11 -0
- data/lib/v20180608/client.rb +1815 -0
- data/lib/v20180608/models.rb +6920 -0
- metadata +66 -0
|
@@ -0,0 +1,1815 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
require 'json'
|
|
18
|
+
|
|
19
|
+
module TencentCloud
|
|
20
|
+
module Tcb
|
|
21
|
+
module V20180608
|
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
|
23
|
+
|
|
24
|
+
def initialize(credential, region, profile = nil)
|
|
25
|
+
api_version = '2018-06-08'
|
|
26
|
+
api_endpoint = 'tcb.tencentcloudapi.com'
|
|
27
|
+
sdk_version = 'TCB_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# 绑定另外一个环境下的网关,callContainer请求可以访问到该网关
|
|
33
|
+
|
|
34
|
+
# @param request: Request instance for BindEnvGateway.
|
|
35
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::BindEnvGatewayRequest`
|
|
36
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::BindEnvGatewayResponse`
|
|
37
|
+
def BindEnvGateway(request)
|
|
38
|
+
body = send_request('BindEnvGateway', request.serialize)
|
|
39
|
+
response = JSON.parse(body)
|
|
40
|
+
if response['Response'].key?('Error') == false
|
|
41
|
+
model = BindEnvGatewayResponse.new
|
|
42
|
+
model.deserialize(response['Response'])
|
|
43
|
+
model
|
|
44
|
+
else
|
|
45
|
+
code = response['Response']['Error']['Code']
|
|
46
|
+
message = response['Response']['Error']['Message']
|
|
47
|
+
reqid = response['Response']['RequestId']
|
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
49
|
+
end
|
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
51
|
+
raise e
|
|
52
|
+
rescue StandardError => e
|
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# 检查是否开通Tcb服务
|
|
57
|
+
|
|
58
|
+
# @param request: Request instance for CheckTcbService.
|
|
59
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CheckTcbServiceRequest`
|
|
60
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CheckTcbServiceResponse`
|
|
61
|
+
def CheckTcbService(request)
|
|
62
|
+
body = send_request('CheckTcbService', request.serialize)
|
|
63
|
+
response = JSON.parse(body)
|
|
64
|
+
if response['Response'].key?('Error') == false
|
|
65
|
+
model = CheckTcbServiceResponse.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
|
+
|
|
80
|
+
# TCB云API统一入口
|
|
81
|
+
|
|
82
|
+
# @param request: Request instance for CommonServiceAPI.
|
|
83
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CommonServiceAPIRequest`
|
|
84
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CommonServiceAPIResponse`
|
|
85
|
+
def CommonServiceAPI(request)
|
|
86
|
+
body = send_request('CommonServiceAPI', request.serialize)
|
|
87
|
+
response = JSON.parse(body)
|
|
88
|
+
if response['Response'].key?('Error') == false
|
|
89
|
+
model = CommonServiceAPIResponse.new
|
|
90
|
+
model.deserialize(response['Response'])
|
|
91
|
+
model
|
|
92
|
+
else
|
|
93
|
+
code = response['Response']['Error']['Code']
|
|
94
|
+
message = response['Response']['Error']['Message']
|
|
95
|
+
reqid = response['Response']['RequestId']
|
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
97
|
+
end
|
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
99
|
+
raise e
|
|
100
|
+
rescue StandardError => e
|
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
# 创建云开发项目
|
|
105
|
+
|
|
106
|
+
# @param request: Request instance for CreateAndDeployCloudBaseProject.
|
|
107
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateAndDeployCloudBaseProjectRequest`
|
|
108
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateAndDeployCloudBaseProjectResponse`
|
|
109
|
+
def CreateAndDeployCloudBaseProject(request)
|
|
110
|
+
body = send_request('CreateAndDeployCloudBaseProject', request.serialize)
|
|
111
|
+
response = JSON.parse(body)
|
|
112
|
+
if response['Response'].key?('Error') == false
|
|
113
|
+
model = CreateAndDeployCloudBaseProjectResponse.new
|
|
114
|
+
model.deserialize(response['Response'])
|
|
115
|
+
model
|
|
116
|
+
else
|
|
117
|
+
code = response['Response']['Error']['Code']
|
|
118
|
+
message = response['Response']['Error']['Message']
|
|
119
|
+
reqid = response['Response']['RequestId']
|
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
121
|
+
end
|
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
123
|
+
raise e
|
|
124
|
+
rescue StandardError => e
|
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
# 增加安全域名
|
|
129
|
+
|
|
130
|
+
# @param request: Request instance for CreateAuthDomain.
|
|
131
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateAuthDomainRequest`
|
|
132
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateAuthDomainResponse`
|
|
133
|
+
def CreateAuthDomain(request)
|
|
134
|
+
body = send_request('CreateAuthDomain', request.serialize)
|
|
135
|
+
response = JSON.parse(body)
|
|
136
|
+
if response['Response'].key?('Error') == false
|
|
137
|
+
model = CreateAuthDomainResponse.new
|
|
138
|
+
model.deserialize(response['Response'])
|
|
139
|
+
model
|
|
140
|
+
else
|
|
141
|
+
code = response['Response']['Error']['Code']
|
|
142
|
+
message = response['Response']['Error']['Message']
|
|
143
|
+
reqid = response['Response']['RequestId']
|
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
145
|
+
end
|
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
147
|
+
raise e
|
|
148
|
+
rescue StandardError => e
|
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
# 开通容器托管的资源,包括集群创建,VPC配置,异步任务创建,镜像托管,Coding等,查看创建结果需要根据DescribeCloudBaseRunResource接口来查看
|
|
153
|
+
|
|
154
|
+
# @param request: Request instance for CreateCloudBaseRunResource.
|
|
155
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateCloudBaseRunResourceRequest`
|
|
156
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateCloudBaseRunResourceResponse`
|
|
157
|
+
def CreateCloudBaseRunResource(request)
|
|
158
|
+
body = send_request('CreateCloudBaseRunResource', request.serialize)
|
|
159
|
+
response = JSON.parse(body)
|
|
160
|
+
if response['Response'].key?('Error') == false
|
|
161
|
+
model = CreateCloudBaseRunResourceResponse.new
|
|
162
|
+
model.deserialize(response['Response'])
|
|
163
|
+
model
|
|
164
|
+
else
|
|
165
|
+
code = response['Response']['Error']['Code']
|
|
166
|
+
message = response['Response']['Error']['Message']
|
|
167
|
+
reqid = response['Response']['RequestId']
|
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
169
|
+
end
|
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
171
|
+
raise e
|
|
172
|
+
rescue StandardError => e
|
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
# 创建服务版本
|
|
177
|
+
|
|
178
|
+
# @param request: Request instance for CreateCloudBaseRunServerVersion.
|
|
179
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateCloudBaseRunServerVersionRequest`
|
|
180
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateCloudBaseRunServerVersionResponse`
|
|
181
|
+
def CreateCloudBaseRunServerVersion(request)
|
|
182
|
+
body = send_request('CreateCloudBaseRunServerVersion', request.serialize)
|
|
183
|
+
response = JSON.parse(body)
|
|
184
|
+
if response['Response'].key?('Error') == false
|
|
185
|
+
model = CreateCloudBaseRunServerVersionResponse.new
|
|
186
|
+
model.deserialize(response['Response'])
|
|
187
|
+
model
|
|
188
|
+
else
|
|
189
|
+
code = response['Response']['Error']['Code']
|
|
190
|
+
message = response['Response']['Error']['Message']
|
|
191
|
+
reqid = response['Response']['RequestId']
|
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
193
|
+
end
|
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
195
|
+
raise e
|
|
196
|
+
rescue StandardError => e
|
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
# 创建托管域名
|
|
201
|
+
|
|
202
|
+
# @param request: Request instance for CreateHostingDomain.
|
|
203
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateHostingDomainRequest`
|
|
204
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateHostingDomainResponse`
|
|
205
|
+
def CreateHostingDomain(request)
|
|
206
|
+
body = send_request('CreateHostingDomain', request.serialize)
|
|
207
|
+
response = JSON.parse(body)
|
|
208
|
+
if response['Response'].key?('Error') == false
|
|
209
|
+
model = CreateHostingDomainResponse.new
|
|
210
|
+
model.deserialize(response['Response'])
|
|
211
|
+
model
|
|
212
|
+
else
|
|
213
|
+
code = response['Response']['Error']['Code']
|
|
214
|
+
message = response['Response']['Error']['Message']
|
|
215
|
+
reqid = response['Response']['RequestId']
|
|
216
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
217
|
+
end
|
|
218
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
219
|
+
raise e
|
|
220
|
+
rescue StandardError => e
|
|
221
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
# 开通后付费资源
|
|
225
|
+
|
|
226
|
+
# @param request: Request instance for CreatePostpayPackage.
|
|
227
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreatePostpayPackageRequest`
|
|
228
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreatePostpayPackageResponse`
|
|
229
|
+
def CreatePostpayPackage(request)
|
|
230
|
+
body = send_request('CreatePostpayPackage', request.serialize)
|
|
231
|
+
response = JSON.parse(body)
|
|
232
|
+
if response['Response'].key?('Error') == false
|
|
233
|
+
model = CreatePostpayPackageResponse.new
|
|
234
|
+
model.deserialize(response['Response'])
|
|
235
|
+
model
|
|
236
|
+
else
|
|
237
|
+
code = response['Response']['Error']['Code']
|
|
238
|
+
message = response['Response']['Error']['Message']
|
|
239
|
+
reqid = response['Response']['RequestId']
|
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
241
|
+
end
|
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
243
|
+
raise e
|
|
244
|
+
rescue StandardError => e
|
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
246
|
+
end
|
|
247
|
+
|
|
248
|
+
# 本接口(CreateStandaloneGateway)用于创建独立网关。
|
|
249
|
+
|
|
250
|
+
# @param request: Request instance for CreateStandaloneGateway.
|
|
251
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateStandaloneGatewayRequest`
|
|
252
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateStandaloneGatewayResponse`
|
|
253
|
+
def CreateStandaloneGateway(request)
|
|
254
|
+
body = send_request('CreateStandaloneGateway', request.serialize)
|
|
255
|
+
response = JSON.parse(body)
|
|
256
|
+
if response['Response'].key?('Error') == false
|
|
257
|
+
model = CreateStandaloneGatewayResponse.new
|
|
258
|
+
model.deserialize(response['Response'])
|
|
259
|
+
model
|
|
260
|
+
else
|
|
261
|
+
code = response['Response']['Error']['Code']
|
|
262
|
+
message = response['Response']['Error']['Message']
|
|
263
|
+
reqid = response['Response']['RequestId']
|
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
265
|
+
end
|
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
267
|
+
raise e
|
|
268
|
+
rescue StandardError => e
|
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
# 创建静态托管资源,包括COS和CDN,异步任务创建,查看创建结果需要根据DescribeStaticStore接口来查看
|
|
273
|
+
|
|
274
|
+
# @param request: Request instance for CreateStaticStore.
|
|
275
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateStaticStoreRequest`
|
|
276
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateStaticStoreResponse`
|
|
277
|
+
def CreateStaticStore(request)
|
|
278
|
+
body = send_request('CreateStaticStore', request.serialize)
|
|
279
|
+
response = JSON.parse(body)
|
|
280
|
+
if response['Response'].key?('Error') == false
|
|
281
|
+
model = CreateStaticStoreResponse.new
|
|
282
|
+
model.deserialize(response['Response'])
|
|
283
|
+
model
|
|
284
|
+
else
|
|
285
|
+
code = response['Response']['Error']['Code']
|
|
286
|
+
message = response['Response']['Error']['Message']
|
|
287
|
+
reqid = response['Response']['RequestId']
|
|
288
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
289
|
+
end
|
|
290
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
291
|
+
raise e
|
|
292
|
+
rescue StandardError => e
|
|
293
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
294
|
+
end
|
|
295
|
+
|
|
296
|
+
# 创建微信云托管
|
|
297
|
+
|
|
298
|
+
# @param request: Request instance for CreateWxCloudBaseRunEnv.
|
|
299
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateWxCloudBaseRunEnvRequest`
|
|
300
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateWxCloudBaseRunEnvResponse`
|
|
301
|
+
def CreateWxCloudBaseRunEnv(request)
|
|
302
|
+
body = send_request('CreateWxCloudBaseRunEnv', request.serialize)
|
|
303
|
+
response = JSON.parse(body)
|
|
304
|
+
if response['Response'].key?('Error') == false
|
|
305
|
+
model = CreateWxCloudBaseRunEnvResponse.new
|
|
306
|
+
model.deserialize(response['Response'])
|
|
307
|
+
model
|
|
308
|
+
else
|
|
309
|
+
code = response['Response']['Error']['Code']
|
|
310
|
+
message = response['Response']['Error']['Message']
|
|
311
|
+
reqid = response['Response']['RequestId']
|
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
313
|
+
end
|
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
315
|
+
raise e
|
|
316
|
+
rescue StandardError => e
|
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
318
|
+
end
|
|
319
|
+
|
|
320
|
+
# 开通微信云托管MySQL数据库服务
|
|
321
|
+
|
|
322
|
+
# @param request: Request instance for CreateWxCloudBaseRunServerDBCluster.
|
|
323
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::CreateWxCloudBaseRunServerDBClusterRequest`
|
|
324
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::CreateWxCloudBaseRunServerDBClusterResponse`
|
|
325
|
+
def CreateWxCloudBaseRunServerDBCluster(request)
|
|
326
|
+
body = send_request('CreateWxCloudBaseRunServerDBCluster', request.serialize)
|
|
327
|
+
response = JSON.parse(body)
|
|
328
|
+
if response['Response'].key?('Error') == false
|
|
329
|
+
model = CreateWxCloudBaseRunServerDBClusterResponse.new
|
|
330
|
+
model.deserialize(response['Response'])
|
|
331
|
+
model
|
|
332
|
+
else
|
|
333
|
+
code = response['Response']['Error']['Code']
|
|
334
|
+
message = response['Response']['Error']['Message']
|
|
335
|
+
reqid = response['Response']['RequestId']
|
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
337
|
+
end
|
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
339
|
+
raise e
|
|
340
|
+
rescue StandardError => e
|
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
342
|
+
end
|
|
343
|
+
|
|
344
|
+
# 删除云项目
|
|
345
|
+
|
|
346
|
+
# @param request: Request instance for DeleteCloudBaseProjectLatestVersion.
|
|
347
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DeleteCloudBaseProjectLatestVersionRequest`
|
|
348
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DeleteCloudBaseProjectLatestVersionResponse`
|
|
349
|
+
def DeleteCloudBaseProjectLatestVersion(request)
|
|
350
|
+
body = send_request('DeleteCloudBaseProjectLatestVersion', request.serialize)
|
|
351
|
+
response = JSON.parse(body)
|
|
352
|
+
if response['Response'].key?('Error') == false
|
|
353
|
+
model = DeleteCloudBaseProjectLatestVersionResponse.new
|
|
354
|
+
model.deserialize(response['Response'])
|
|
355
|
+
model
|
|
356
|
+
else
|
|
357
|
+
code = response['Response']['Error']['Code']
|
|
358
|
+
message = response['Response']['Error']['Message']
|
|
359
|
+
reqid = response['Response']['RequestId']
|
|
360
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
361
|
+
end
|
|
362
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
363
|
+
raise e
|
|
364
|
+
rescue StandardError => e
|
|
365
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
366
|
+
end
|
|
367
|
+
|
|
368
|
+
# 删除服务版本
|
|
369
|
+
|
|
370
|
+
# @param request: Request instance for DeleteCloudBaseRunServerVersion.
|
|
371
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DeleteCloudBaseRunServerVersionRequest`
|
|
372
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DeleteCloudBaseRunServerVersionResponse`
|
|
373
|
+
def DeleteCloudBaseRunServerVersion(request)
|
|
374
|
+
body = send_request('DeleteCloudBaseRunServerVersion', request.serialize)
|
|
375
|
+
response = JSON.parse(body)
|
|
376
|
+
if response['Response'].key?('Error') == false
|
|
377
|
+
model = DeleteCloudBaseRunServerVersionResponse.new
|
|
378
|
+
model.deserialize(response['Response'])
|
|
379
|
+
model
|
|
380
|
+
else
|
|
381
|
+
code = response['Response']['Error']['Code']
|
|
382
|
+
message = response['Response']['Error']['Message']
|
|
383
|
+
reqid = response['Response']['RequestId']
|
|
384
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
385
|
+
end
|
|
386
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
387
|
+
raise e
|
|
388
|
+
rescue StandardError => e
|
|
389
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
# 删除终端用户
|
|
393
|
+
|
|
394
|
+
# @param request: Request instance for DeleteEndUser.
|
|
395
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DeleteEndUserRequest`
|
|
396
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DeleteEndUserResponse`
|
|
397
|
+
def DeleteEndUser(request)
|
|
398
|
+
body = send_request('DeleteEndUser', request.serialize)
|
|
399
|
+
response = JSON.parse(body)
|
|
400
|
+
if response['Response'].key?('Error') == false
|
|
401
|
+
model = DeleteEndUserResponse.new
|
|
402
|
+
model.deserialize(response['Response'])
|
|
403
|
+
model
|
|
404
|
+
else
|
|
405
|
+
code = response['Response']['Error']['Code']
|
|
406
|
+
message = response['Response']['Error']['Message']
|
|
407
|
+
reqid = response['Response']['RequestId']
|
|
408
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
409
|
+
end
|
|
410
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
411
|
+
raise e
|
|
412
|
+
rescue StandardError => e
|
|
413
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
414
|
+
end
|
|
415
|
+
|
|
416
|
+
# 删除安全网关路由
|
|
417
|
+
|
|
418
|
+
# @param request: Request instance for DeleteWxGatewayRoute.
|
|
419
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DeleteWxGatewayRouteRequest`
|
|
420
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DeleteWxGatewayRouteResponse`
|
|
421
|
+
def DeleteWxGatewayRoute(request)
|
|
422
|
+
body = send_request('DeleteWxGatewayRoute', request.serialize)
|
|
423
|
+
response = JSON.parse(body)
|
|
424
|
+
if response['Response'].key?('Error') == false
|
|
425
|
+
model = DeleteWxGatewayRouteResponse.new
|
|
426
|
+
model.deserialize(response['Response'])
|
|
427
|
+
model
|
|
428
|
+
else
|
|
429
|
+
code = response['Response']['Error']['Code']
|
|
430
|
+
message = response['Response']['Error']['Message']
|
|
431
|
+
reqid = response['Response']['RequestId']
|
|
432
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
433
|
+
end
|
|
434
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
435
|
+
raise e
|
|
436
|
+
rescue StandardError => e
|
|
437
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
438
|
+
end
|
|
439
|
+
|
|
440
|
+
# 查询活动信息
|
|
441
|
+
|
|
442
|
+
# @param request: Request instance for DescribeActivityInfo.
|
|
443
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeActivityInfoRequest`
|
|
444
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeActivityInfoResponse`
|
|
445
|
+
def DescribeActivityInfo(request)
|
|
446
|
+
body = send_request('DescribeActivityInfo', request.serialize)
|
|
447
|
+
response = JSON.parse(body)
|
|
448
|
+
if response['Response'].key?('Error') == false
|
|
449
|
+
model = DescribeActivityInfoResponse.new
|
|
450
|
+
model.deserialize(response['Response'])
|
|
451
|
+
model
|
|
452
|
+
else
|
|
453
|
+
code = response['Response']['Error']['Code']
|
|
454
|
+
message = response['Response']['Error']['Message']
|
|
455
|
+
reqid = response['Response']['RequestId']
|
|
456
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
457
|
+
end
|
|
458
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
459
|
+
raise e
|
|
460
|
+
rescue StandardError => e
|
|
461
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
462
|
+
end
|
|
463
|
+
|
|
464
|
+
# 查询活动记录信息
|
|
465
|
+
|
|
466
|
+
# @param request: Request instance for DescribeActivityRecord.
|
|
467
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeActivityRecordRequest`
|
|
468
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeActivityRecordResponse`
|
|
469
|
+
def DescribeActivityRecord(request)
|
|
470
|
+
body = send_request('DescribeActivityRecord', request.serialize)
|
|
471
|
+
response = JSON.parse(body)
|
|
472
|
+
if response['Response'].key?('Error') == false
|
|
473
|
+
model = DescribeActivityRecordResponse.new
|
|
474
|
+
model.deserialize(response['Response'])
|
|
475
|
+
model
|
|
476
|
+
else
|
|
477
|
+
code = response['Response']['Error']['Code']
|
|
478
|
+
message = response['Response']['Error']['Message']
|
|
479
|
+
reqid = response['Response']['RequestId']
|
|
480
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
481
|
+
end
|
|
482
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
483
|
+
raise e
|
|
484
|
+
rescue StandardError => e
|
|
485
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
486
|
+
end
|
|
487
|
+
|
|
488
|
+
# 获取安全域名列表
|
|
489
|
+
|
|
490
|
+
# @param request: Request instance for DescribeAuthDomains.
|
|
491
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeAuthDomainsRequest`
|
|
492
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeAuthDomainsResponse`
|
|
493
|
+
def DescribeAuthDomains(request)
|
|
494
|
+
body = send_request('DescribeAuthDomains', request.serialize)
|
|
495
|
+
response = JSON.parse(body)
|
|
496
|
+
if response['Response'].key?('Error') == false
|
|
497
|
+
model = DescribeAuthDomainsResponse.new
|
|
498
|
+
model.deserialize(response['Response'])
|
|
499
|
+
model
|
|
500
|
+
else
|
|
501
|
+
code = response['Response']['Error']['Code']
|
|
502
|
+
message = response['Response']['Error']['Message']
|
|
503
|
+
reqid = response['Response']['RequestId']
|
|
504
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
505
|
+
end
|
|
506
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
507
|
+
raise e
|
|
508
|
+
rescue StandardError => e
|
|
509
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
510
|
+
end
|
|
511
|
+
|
|
512
|
+
# 获取云托管代码上传url
|
|
513
|
+
|
|
514
|
+
# @param request: Request instance for DescribeCloudBaseBuildService.
|
|
515
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseBuildServiceRequest`
|
|
516
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseBuildServiceResponse`
|
|
517
|
+
def DescribeCloudBaseBuildService(request)
|
|
518
|
+
body = send_request('DescribeCloudBaseBuildService', request.serialize)
|
|
519
|
+
response = JSON.parse(body)
|
|
520
|
+
if response['Response'].key?('Error') == false
|
|
521
|
+
model = DescribeCloudBaseBuildServiceResponse.new
|
|
522
|
+
model.deserialize(response['Response'])
|
|
523
|
+
model
|
|
524
|
+
else
|
|
525
|
+
code = response['Response']['Error']['Code']
|
|
526
|
+
message = response['Response']['Error']['Message']
|
|
527
|
+
reqid = response['Response']['RequestId']
|
|
528
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
529
|
+
end
|
|
530
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
531
|
+
raise e
|
|
532
|
+
rescue StandardError => e
|
|
533
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
534
|
+
end
|
|
535
|
+
|
|
536
|
+
# 获取云开发项目列表
|
|
537
|
+
|
|
538
|
+
# @param request: Request instance for DescribeCloudBaseProjectLatestVersionList.
|
|
539
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseProjectLatestVersionListRequest`
|
|
540
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseProjectLatestVersionListResponse`
|
|
541
|
+
def DescribeCloudBaseProjectLatestVersionList(request)
|
|
542
|
+
body = send_request('DescribeCloudBaseProjectLatestVersionList', request.serialize)
|
|
543
|
+
response = JSON.parse(body)
|
|
544
|
+
if response['Response'].key?('Error') == false
|
|
545
|
+
model = DescribeCloudBaseProjectLatestVersionListResponse.new
|
|
546
|
+
model.deserialize(response['Response'])
|
|
547
|
+
model
|
|
548
|
+
else
|
|
549
|
+
code = response['Response']['Error']['Code']
|
|
550
|
+
message = response['Response']['Error']['Message']
|
|
551
|
+
reqid = response['Response']['RequestId']
|
|
552
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
553
|
+
end
|
|
554
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
555
|
+
raise e
|
|
556
|
+
rescue StandardError => e
|
|
557
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
558
|
+
end
|
|
559
|
+
|
|
560
|
+
# 云项目部署列表
|
|
561
|
+
|
|
562
|
+
# @param request: Request instance for DescribeCloudBaseProjectVersionList.
|
|
563
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseProjectVersionListRequest`
|
|
564
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseProjectVersionListResponse`
|
|
565
|
+
def DescribeCloudBaseProjectVersionList(request)
|
|
566
|
+
body = send_request('DescribeCloudBaseProjectVersionList', request.serialize)
|
|
567
|
+
response = JSON.parse(body)
|
|
568
|
+
if response['Response'].key?('Error') == false
|
|
569
|
+
model = DescribeCloudBaseProjectVersionListResponse.new
|
|
570
|
+
model.deserialize(response['Response'])
|
|
571
|
+
model
|
|
572
|
+
else
|
|
573
|
+
code = response['Response']['Error']['Code']
|
|
574
|
+
message = response['Response']['Error']['Message']
|
|
575
|
+
reqid = response['Response']['RequestId']
|
|
576
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
577
|
+
end
|
|
578
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
579
|
+
raise e
|
|
580
|
+
rescue StandardError => e
|
|
581
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
582
|
+
end
|
|
583
|
+
|
|
584
|
+
# 查询环境下所有的vpc列表
|
|
585
|
+
|
|
586
|
+
# @param request: Request instance for DescribeCloudBaseRunAllVpcs.
|
|
587
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunAllVpcsRequest`
|
|
588
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunAllVpcsResponse`
|
|
589
|
+
def DescribeCloudBaseRunAllVpcs(request)
|
|
590
|
+
body = send_request('DescribeCloudBaseRunAllVpcs', request.serialize)
|
|
591
|
+
response = JSON.parse(body)
|
|
592
|
+
if response['Response'].key?('Error') == false
|
|
593
|
+
model = DescribeCloudBaseRunAllVpcsResponse.new
|
|
594
|
+
model.deserialize(response['Response'])
|
|
595
|
+
model
|
|
596
|
+
else
|
|
597
|
+
code = response['Response']['Error']['Code']
|
|
598
|
+
message = response['Response']['Error']['Message']
|
|
599
|
+
reqid = response['Response']['RequestId']
|
|
600
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
601
|
+
end
|
|
602
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
603
|
+
raise e
|
|
604
|
+
rescue StandardError => e
|
|
605
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
606
|
+
end
|
|
607
|
+
|
|
608
|
+
# 独立网关中拉取云托管服务对应的配置信息
|
|
609
|
+
|
|
610
|
+
# @param request: Request instance for DescribeCloudBaseRunConfForGateWay.
|
|
611
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunConfForGateWayRequest`
|
|
612
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunConfForGateWayResponse`
|
|
613
|
+
def DescribeCloudBaseRunConfForGateWay(request)
|
|
614
|
+
body = send_request('DescribeCloudBaseRunConfForGateWay', request.serialize)
|
|
615
|
+
response = JSON.parse(body)
|
|
616
|
+
if response['Response'].key?('Error') == false
|
|
617
|
+
model = DescribeCloudBaseRunConfForGateWayResponse.new
|
|
618
|
+
model.deserialize(response['Response'])
|
|
619
|
+
model
|
|
620
|
+
else
|
|
621
|
+
code = response['Response']['Error']['Code']
|
|
622
|
+
message = response['Response']['Error']['Message']
|
|
623
|
+
reqid = response['Response']['RequestId']
|
|
624
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
625
|
+
end
|
|
626
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
627
|
+
raise e
|
|
628
|
+
rescue StandardError => e
|
|
629
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
630
|
+
end
|
|
631
|
+
|
|
632
|
+
# 查询一键部署任务 (特定接口:外部查询使用)
|
|
633
|
+
|
|
634
|
+
# @param request: Request instance for DescribeCloudBaseRunOneClickTaskExternal.
|
|
635
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunOneClickTaskExternalRequest`
|
|
636
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunOneClickTaskExternalResponse`
|
|
637
|
+
def DescribeCloudBaseRunOneClickTaskExternal(request)
|
|
638
|
+
body = send_request('DescribeCloudBaseRunOneClickTaskExternal', request.serialize)
|
|
639
|
+
response = JSON.parse(body)
|
|
640
|
+
if response['Response'].key?('Error') == false
|
|
641
|
+
model = DescribeCloudBaseRunOneClickTaskExternalResponse.new
|
|
642
|
+
model.deserialize(response['Response'])
|
|
643
|
+
model
|
|
644
|
+
else
|
|
645
|
+
code = response['Response']['Error']['Code']
|
|
646
|
+
message = response['Response']['Error']['Message']
|
|
647
|
+
reqid = response['Response']['RequestId']
|
|
648
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
649
|
+
end
|
|
650
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
651
|
+
raise e
|
|
652
|
+
rescue StandardError => e
|
|
653
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
# 查询服务、版本和操作类型
|
|
657
|
+
|
|
658
|
+
# @param request: Request instance for DescribeCloudBaseRunOperationTypes.
|
|
659
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunOperationTypesRequest`
|
|
660
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunOperationTypesResponse`
|
|
661
|
+
def DescribeCloudBaseRunOperationTypes(request)
|
|
662
|
+
body = send_request('DescribeCloudBaseRunOperationTypes', request.serialize)
|
|
663
|
+
response = JSON.parse(body)
|
|
664
|
+
if response['Response'].key?('Error') == false
|
|
665
|
+
model = DescribeCloudBaseRunOperationTypesResponse.new
|
|
666
|
+
model.deserialize(response['Response'])
|
|
667
|
+
model
|
|
668
|
+
else
|
|
669
|
+
code = response['Response']['Error']['Code']
|
|
670
|
+
message = response['Response']['Error']['Message']
|
|
671
|
+
reqid = response['Response']['RequestId']
|
|
672
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
673
|
+
end
|
|
674
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
675
|
+
raise e
|
|
676
|
+
rescue StandardError => e
|
|
677
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
678
|
+
end
|
|
679
|
+
|
|
680
|
+
# 查询云应用服务版本容器列表
|
|
681
|
+
|
|
682
|
+
# @param request: Request instance for DescribeCloudBaseRunPodList.
|
|
683
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunPodListRequest`
|
|
684
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunPodListResponse`
|
|
685
|
+
def DescribeCloudBaseRunPodList(request)
|
|
686
|
+
body = send_request('DescribeCloudBaseRunPodList', request.serialize)
|
|
687
|
+
response = JSON.parse(body)
|
|
688
|
+
if response['Response'].key?('Error') == false
|
|
689
|
+
model = DescribeCloudBaseRunPodListResponse.new
|
|
690
|
+
model.deserialize(response['Response'])
|
|
691
|
+
model
|
|
692
|
+
else
|
|
693
|
+
code = response['Response']['Error']['Code']
|
|
694
|
+
message = response['Response']['Error']['Message']
|
|
695
|
+
reqid = response['Response']['RequestId']
|
|
696
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
697
|
+
end
|
|
698
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
699
|
+
raise e
|
|
700
|
+
rescue StandardError => e
|
|
701
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
702
|
+
end
|
|
703
|
+
|
|
704
|
+
# 查看容器托管的集群状态
|
|
705
|
+
|
|
706
|
+
# @param request: Request instance for DescribeCloudBaseRunResource.
|
|
707
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunResourceRequest`
|
|
708
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunResourceResponse`
|
|
709
|
+
def DescribeCloudBaseRunResource(request)
|
|
710
|
+
body = send_request('DescribeCloudBaseRunResource', request.serialize)
|
|
711
|
+
response = JSON.parse(body)
|
|
712
|
+
if response['Response'].key?('Error') == false
|
|
713
|
+
model = DescribeCloudBaseRunResourceResponse.new
|
|
714
|
+
model.deserialize(response['Response'])
|
|
715
|
+
model
|
|
716
|
+
else
|
|
717
|
+
code = response['Response']['Error']['Code']
|
|
718
|
+
message = response['Response']['Error']['Message']
|
|
719
|
+
reqid = response['Response']['RequestId']
|
|
720
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
721
|
+
end
|
|
722
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
723
|
+
raise e
|
|
724
|
+
rescue StandardError => e
|
|
725
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
726
|
+
end
|
|
727
|
+
|
|
728
|
+
# 查看容器托管的集群状态扩展使用
|
|
729
|
+
|
|
730
|
+
# @param request: Request instance for DescribeCloudBaseRunResourceForExtend.
|
|
731
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunResourceForExtendRequest`
|
|
732
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunResourceForExtendResponse`
|
|
733
|
+
def DescribeCloudBaseRunResourceForExtend(request)
|
|
734
|
+
body = send_request('DescribeCloudBaseRunResourceForExtend', request.serialize)
|
|
735
|
+
response = JSON.parse(body)
|
|
736
|
+
if response['Response'].key?('Error') == false
|
|
737
|
+
model = DescribeCloudBaseRunResourceForExtendResponse.new
|
|
738
|
+
model.deserialize(response['Response'])
|
|
739
|
+
model
|
|
740
|
+
else
|
|
741
|
+
code = response['Response']['Error']['Code']
|
|
742
|
+
message = response['Response']['Error']['Message']
|
|
743
|
+
reqid = response['Response']['RequestId']
|
|
744
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
745
|
+
end
|
|
746
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
747
|
+
raise e
|
|
748
|
+
rescue StandardError => e
|
|
749
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
750
|
+
end
|
|
751
|
+
|
|
752
|
+
# 查询单个服务的详情,版本以及详情
|
|
753
|
+
|
|
754
|
+
# @param request: Request instance for DescribeCloudBaseRunServer.
|
|
755
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunServerRequest`
|
|
756
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunServerResponse`
|
|
757
|
+
def DescribeCloudBaseRunServer(request)
|
|
758
|
+
body = send_request('DescribeCloudBaseRunServer', request.serialize)
|
|
759
|
+
response = JSON.parse(body)
|
|
760
|
+
if response['Response'].key?('Error') == false
|
|
761
|
+
model = DescribeCloudBaseRunServerResponse.new
|
|
762
|
+
model.deserialize(response['Response'])
|
|
763
|
+
model
|
|
764
|
+
else
|
|
765
|
+
code = response['Response']['Error']['Code']
|
|
766
|
+
message = response['Response']['Error']['Message']
|
|
767
|
+
reqid = response['Response']['RequestId']
|
|
768
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
769
|
+
end
|
|
770
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
771
|
+
raise e
|
|
772
|
+
rescue StandardError => e
|
|
773
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
774
|
+
end
|
|
775
|
+
|
|
776
|
+
# 查询微信云托管服务域名
|
|
777
|
+
|
|
778
|
+
# @param request: Request instance for DescribeCloudBaseRunServerDomainName.
|
|
779
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunServerDomainNameRequest`
|
|
780
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunServerDomainNameResponse`
|
|
781
|
+
def DescribeCloudBaseRunServerDomainName(request)
|
|
782
|
+
body = send_request('DescribeCloudBaseRunServerDomainName', request.serialize)
|
|
783
|
+
response = JSON.parse(body)
|
|
784
|
+
if response['Response'].key?('Error') == false
|
|
785
|
+
model = DescribeCloudBaseRunServerDomainNameResponse.new
|
|
786
|
+
model.deserialize(response['Response'])
|
|
787
|
+
model
|
|
788
|
+
else
|
|
789
|
+
code = response['Response']['Error']['Code']
|
|
790
|
+
message = response['Response']['Error']['Message']
|
|
791
|
+
reqid = response['Response']['RequestId']
|
|
792
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
793
|
+
end
|
|
794
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
795
|
+
raise e
|
|
796
|
+
rescue StandardError => e
|
|
797
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
798
|
+
end
|
|
799
|
+
|
|
800
|
+
# 查询服务版本的详情,CPU和MEM 请使用CPUSize和MemSize
|
|
801
|
+
|
|
802
|
+
# @param request: Request instance for DescribeCloudBaseRunServerVersion.
|
|
803
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunServerVersionRequest`
|
|
804
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunServerVersionResponse`
|
|
805
|
+
def DescribeCloudBaseRunServerVersion(request)
|
|
806
|
+
body = send_request('DescribeCloudBaseRunServerVersion', request.serialize)
|
|
807
|
+
response = JSON.parse(body)
|
|
808
|
+
if response['Response'].key?('Error') == false
|
|
809
|
+
model = DescribeCloudBaseRunServerVersionResponse.new
|
|
810
|
+
model.deserialize(response['Response'])
|
|
811
|
+
model
|
|
812
|
+
else
|
|
813
|
+
code = response['Response']['Error']['Code']
|
|
814
|
+
message = response['Response']['Error']['Message']
|
|
815
|
+
reqid = response['Response']['RequestId']
|
|
816
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
817
|
+
end
|
|
818
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
819
|
+
raise e
|
|
820
|
+
rescue StandardError => e
|
|
821
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
822
|
+
end
|
|
823
|
+
|
|
824
|
+
# 查询服务版本详情(新)
|
|
825
|
+
|
|
826
|
+
# @param request: Request instance for DescribeCloudBaseRunVersion.
|
|
827
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunVersionRequest`
|
|
828
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunVersionResponse`
|
|
829
|
+
def DescribeCloudBaseRunVersion(request)
|
|
830
|
+
body = send_request('DescribeCloudBaseRunVersion', request.serialize)
|
|
831
|
+
response = JSON.parse(body)
|
|
832
|
+
if response['Response'].key?('Error') == false
|
|
833
|
+
model = DescribeCloudBaseRunVersionResponse.new
|
|
834
|
+
model.deserialize(response['Response'])
|
|
835
|
+
model
|
|
836
|
+
else
|
|
837
|
+
code = response['Response']['Error']['Code']
|
|
838
|
+
message = response['Response']['Error']['Message']
|
|
839
|
+
reqid = response['Response']['RequestId']
|
|
840
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
841
|
+
end
|
|
842
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
843
|
+
raise e
|
|
844
|
+
rescue StandardError => e
|
|
845
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
846
|
+
end
|
|
847
|
+
|
|
848
|
+
# DescribeCloudBaseRunVersionRsByCondition 获取云托管详情
|
|
849
|
+
|
|
850
|
+
# @param request: Request instance for DescribeCloudBaseRunVersionRsByCondition.
|
|
851
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunVersionRsByConditionRequest`
|
|
852
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunVersionRsByConditionResponse`
|
|
853
|
+
def DescribeCloudBaseRunVersionRsByCondition(request)
|
|
854
|
+
body = send_request('DescribeCloudBaseRunVersionRsByCondition', request.serialize)
|
|
855
|
+
response = JSON.parse(body)
|
|
856
|
+
if response['Response'].key?('Error') == false
|
|
857
|
+
model = DescribeCloudBaseRunVersionRsByConditionResponse.new
|
|
858
|
+
model.deserialize(response['Response'])
|
|
859
|
+
model
|
|
860
|
+
else
|
|
861
|
+
code = response['Response']['Error']['Code']
|
|
862
|
+
message = response['Response']['Error']['Message']
|
|
863
|
+
reqid = response['Response']['RequestId']
|
|
864
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
865
|
+
end
|
|
866
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
867
|
+
raise e
|
|
868
|
+
rescue StandardError => e
|
|
869
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
870
|
+
end
|
|
871
|
+
|
|
872
|
+
# 查询版本历史
|
|
873
|
+
|
|
874
|
+
# @param request: Request instance for DescribeCloudBaseRunVersionSnapshot.
|
|
875
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunVersionSnapshotRequest`
|
|
876
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCloudBaseRunVersionSnapshotResponse`
|
|
877
|
+
def DescribeCloudBaseRunVersionSnapshot(request)
|
|
878
|
+
body = send_request('DescribeCloudBaseRunVersionSnapshot', request.serialize)
|
|
879
|
+
response = JSON.parse(body)
|
|
880
|
+
if response['Response'].key?('Error') == false
|
|
881
|
+
model = DescribeCloudBaseRunVersionSnapshotResponse.new
|
|
882
|
+
model.deserialize(response['Response'])
|
|
883
|
+
model
|
|
884
|
+
else
|
|
885
|
+
code = response['Response']['Error']['Code']
|
|
886
|
+
message = response['Response']['Error']['Message']
|
|
887
|
+
reqid = response['Response']['RequestId']
|
|
888
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
889
|
+
end
|
|
890
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
891
|
+
raise e
|
|
892
|
+
rescue StandardError => e
|
|
893
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
894
|
+
end
|
|
895
|
+
|
|
896
|
+
# 根据用户传入的指标, 拉取一段时间内的监控数据。
|
|
897
|
+
|
|
898
|
+
# @param request: Request instance for DescribeCurveData.
|
|
899
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeCurveDataRequest`
|
|
900
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeCurveDataResponse`
|
|
901
|
+
def DescribeCurveData(request)
|
|
902
|
+
body = send_request('DescribeCurveData', request.serialize)
|
|
903
|
+
response = JSON.parse(body)
|
|
904
|
+
if response['Response'].key?('Error') == false
|
|
905
|
+
model = DescribeCurveDataResponse.new
|
|
906
|
+
model.deserialize(response['Response'])
|
|
907
|
+
model
|
|
908
|
+
else
|
|
909
|
+
code = response['Response']['Error']['Code']
|
|
910
|
+
message = response['Response']['Error']['Message']
|
|
911
|
+
reqid = response['Response']['RequestId']
|
|
912
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
913
|
+
end
|
|
914
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
915
|
+
raise e
|
|
916
|
+
rescue StandardError => e
|
|
917
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
918
|
+
end
|
|
919
|
+
|
|
920
|
+
# 获取数据库权限
|
|
921
|
+
|
|
922
|
+
# @param request: Request instance for DescribeDatabaseACL.
|
|
923
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeDatabaseACLRequest`
|
|
924
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeDatabaseACLResponse`
|
|
925
|
+
def DescribeDatabaseACL(request)
|
|
926
|
+
body = send_request('DescribeDatabaseACL', request.serialize)
|
|
927
|
+
response = JSON.parse(body)
|
|
928
|
+
if response['Response'].key?('Error') == false
|
|
929
|
+
model = DescribeDatabaseACLResponse.new
|
|
930
|
+
model.deserialize(response['Response'])
|
|
931
|
+
model
|
|
932
|
+
else
|
|
933
|
+
code = response['Response']['Error']['Code']
|
|
934
|
+
message = response['Response']['Error']['Message']
|
|
935
|
+
reqid = response['Response']['RequestId']
|
|
936
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
937
|
+
end
|
|
938
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
939
|
+
raise e
|
|
940
|
+
rescue StandardError => e
|
|
941
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
942
|
+
end
|
|
943
|
+
|
|
944
|
+
# 获取下载文件信息
|
|
945
|
+
|
|
946
|
+
# @param request: Request instance for DescribeDownloadFile.
|
|
947
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeDownloadFileRequest`
|
|
948
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeDownloadFileResponse`
|
|
949
|
+
def DescribeDownloadFile(request)
|
|
950
|
+
body = send_request('DescribeDownloadFile', request.serialize)
|
|
951
|
+
response = JSON.parse(body)
|
|
952
|
+
if response['Response'].key?('Error') == false
|
|
953
|
+
model = DescribeDownloadFileResponse.new
|
|
954
|
+
model.deserialize(response['Response'])
|
|
955
|
+
model
|
|
956
|
+
else
|
|
957
|
+
code = response['Response']['Error']['Code']
|
|
958
|
+
message = response['Response']['Error']['Message']
|
|
959
|
+
reqid = response['Response']['RequestId']
|
|
960
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
961
|
+
end
|
|
962
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
963
|
+
raise e
|
|
964
|
+
rescue StandardError => e
|
|
965
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
966
|
+
end
|
|
967
|
+
|
|
968
|
+
# 获取环境终端用户新增与登录信息
|
|
969
|
+
|
|
970
|
+
# @param request: Request instance for DescribeEndUserLoginStatistic.
|
|
971
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEndUserLoginStatisticRequest`
|
|
972
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEndUserLoginStatisticResponse`
|
|
973
|
+
def DescribeEndUserLoginStatistic(request)
|
|
974
|
+
body = send_request('DescribeEndUserLoginStatistic', request.serialize)
|
|
975
|
+
response = JSON.parse(body)
|
|
976
|
+
if response['Response'].key?('Error') == false
|
|
977
|
+
model = DescribeEndUserLoginStatisticResponse.new
|
|
978
|
+
model.deserialize(response['Response'])
|
|
979
|
+
model
|
|
980
|
+
else
|
|
981
|
+
code = response['Response']['Error']['Code']
|
|
982
|
+
message = response['Response']['Error']['Message']
|
|
983
|
+
reqid = response['Response']['RequestId']
|
|
984
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
985
|
+
end
|
|
986
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
987
|
+
raise e
|
|
988
|
+
rescue StandardError => e
|
|
989
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
990
|
+
end
|
|
991
|
+
|
|
992
|
+
# 获取终端用户总量与平台分布情况
|
|
993
|
+
|
|
994
|
+
# @param request: Request instance for DescribeEndUserStatistic.
|
|
995
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEndUserStatisticRequest`
|
|
996
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEndUserStatisticResponse`
|
|
997
|
+
def DescribeEndUserStatistic(request)
|
|
998
|
+
body = send_request('DescribeEndUserStatistic', request.serialize)
|
|
999
|
+
response = JSON.parse(body)
|
|
1000
|
+
if response['Response'].key?('Error') == false
|
|
1001
|
+
model = DescribeEndUserStatisticResponse.new
|
|
1002
|
+
model.deserialize(response['Response'])
|
|
1003
|
+
model
|
|
1004
|
+
else
|
|
1005
|
+
code = response['Response']['Error']['Code']
|
|
1006
|
+
message = response['Response']['Error']['Message']
|
|
1007
|
+
reqid = response['Response']['RequestId']
|
|
1008
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1009
|
+
end
|
|
1010
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1011
|
+
raise e
|
|
1012
|
+
rescue StandardError => e
|
|
1013
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1014
|
+
end
|
|
1015
|
+
|
|
1016
|
+
# 获取终端用户列表
|
|
1017
|
+
|
|
1018
|
+
# @param request: Request instance for DescribeEndUsers.
|
|
1019
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEndUsersRequest`
|
|
1020
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEndUsersResponse`
|
|
1021
|
+
def DescribeEndUsers(request)
|
|
1022
|
+
body = send_request('DescribeEndUsers', request.serialize)
|
|
1023
|
+
response = JSON.parse(body)
|
|
1024
|
+
if response['Response'].key?('Error') == false
|
|
1025
|
+
model = DescribeEndUsersResponse.new
|
|
1026
|
+
model.deserialize(response['Response'])
|
|
1027
|
+
model
|
|
1028
|
+
else
|
|
1029
|
+
code = response['Response']['Error']['Code']
|
|
1030
|
+
message = response['Response']['Error']['Message']
|
|
1031
|
+
reqid = response['Response']['RequestId']
|
|
1032
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1033
|
+
end
|
|
1034
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1035
|
+
raise e
|
|
1036
|
+
rescue StandardError => e
|
|
1037
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1038
|
+
end
|
|
1039
|
+
|
|
1040
|
+
# 获取环境下单地域
|
|
1041
|
+
|
|
1042
|
+
# @param request: Request instance for DescribeEnvDealRegion.
|
|
1043
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEnvDealRegionRequest`
|
|
1044
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEnvDealRegionResponse`
|
|
1045
|
+
def DescribeEnvDealRegion(request)
|
|
1046
|
+
body = send_request('DescribeEnvDealRegion', request.serialize)
|
|
1047
|
+
response = JSON.parse(body)
|
|
1048
|
+
if response['Response'].key?('Error') == false
|
|
1049
|
+
model = DescribeEnvDealRegionResponse.new
|
|
1050
|
+
model.deserialize(response['Response'])
|
|
1051
|
+
model
|
|
1052
|
+
else
|
|
1053
|
+
code = response['Response']['Error']['Code']
|
|
1054
|
+
message = response['Response']['Error']['Message']
|
|
1055
|
+
reqid = response['Response']['RequestId']
|
|
1056
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1057
|
+
end
|
|
1058
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1059
|
+
raise e
|
|
1060
|
+
rescue StandardError => e
|
|
1061
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1062
|
+
end
|
|
1063
|
+
|
|
1064
|
+
# 查询后付费免费配额信息
|
|
1065
|
+
|
|
1066
|
+
# @param request: Request instance for DescribeEnvFreeQuota.
|
|
1067
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEnvFreeQuotaRequest`
|
|
1068
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEnvFreeQuotaResponse`
|
|
1069
|
+
def DescribeEnvFreeQuota(request)
|
|
1070
|
+
body = send_request('DescribeEnvFreeQuota', request.serialize)
|
|
1071
|
+
response = JSON.parse(body)
|
|
1072
|
+
if response['Response'].key?('Error') == false
|
|
1073
|
+
model = DescribeEnvFreeQuotaResponse.new
|
|
1074
|
+
model.deserialize(response['Response'])
|
|
1075
|
+
model
|
|
1076
|
+
else
|
|
1077
|
+
code = response['Response']['Error']['Code']
|
|
1078
|
+
message = response['Response']['Error']['Message']
|
|
1079
|
+
reqid = response['Response']['RequestId']
|
|
1080
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1081
|
+
end
|
|
1082
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1083
|
+
raise e
|
|
1084
|
+
rescue StandardError => e
|
|
1085
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1086
|
+
end
|
|
1087
|
+
|
|
1088
|
+
# 查询环境个数上限
|
|
1089
|
+
|
|
1090
|
+
# @param request: Request instance for DescribeEnvLimit.
|
|
1091
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEnvLimitRequest`
|
|
1092
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEnvLimitResponse`
|
|
1093
|
+
def DescribeEnvLimit(request)
|
|
1094
|
+
body = send_request('DescribeEnvLimit', request.serialize)
|
|
1095
|
+
response = JSON.parse(body)
|
|
1096
|
+
if response['Response'].key?('Error') == false
|
|
1097
|
+
model = DescribeEnvLimitResponse.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
|
+
|
|
1112
|
+
# 查询环境后付费计费详情
|
|
1113
|
+
|
|
1114
|
+
# @param request: Request instance for DescribeEnvPostpaidDeduct.
|
|
1115
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEnvPostpaidDeductRequest`
|
|
1116
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEnvPostpaidDeductResponse`
|
|
1117
|
+
def DescribeEnvPostpaidDeduct(request)
|
|
1118
|
+
body = send_request('DescribeEnvPostpaidDeduct', request.serialize)
|
|
1119
|
+
response = JSON.parse(body)
|
|
1120
|
+
if response['Response'].key?('Error') == false
|
|
1121
|
+
model = DescribeEnvPostpaidDeductResponse.new
|
|
1122
|
+
model.deserialize(response['Response'])
|
|
1123
|
+
model
|
|
1124
|
+
else
|
|
1125
|
+
code = response['Response']['Error']['Code']
|
|
1126
|
+
message = response['Response']['Error']['Message']
|
|
1127
|
+
reqid = response['Response']['RequestId']
|
|
1128
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1129
|
+
end
|
|
1130
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1131
|
+
raise e
|
|
1132
|
+
rescue StandardError => e
|
|
1133
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1134
|
+
end
|
|
1135
|
+
|
|
1136
|
+
# 获取环境列表,含环境下的各个资源信息。尤其是各资源的唯一标识,是请求各资源的关键参数
|
|
1137
|
+
|
|
1138
|
+
# @param request: Request instance for DescribeEnvs.
|
|
1139
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEnvsRequest`
|
|
1140
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEnvsResponse`
|
|
1141
|
+
def DescribeEnvs(request)
|
|
1142
|
+
body = send_request('DescribeEnvs', request.serialize)
|
|
1143
|
+
response = JSON.parse(body)
|
|
1144
|
+
if response['Response'].key?('Error') == false
|
|
1145
|
+
model = DescribeEnvsResponse.new
|
|
1146
|
+
model.deserialize(response['Response'])
|
|
1147
|
+
model
|
|
1148
|
+
else
|
|
1149
|
+
code = response['Response']['Error']['Code']
|
|
1150
|
+
message = response['Response']['Error']['Message']
|
|
1151
|
+
reqid = response['Response']['RequestId']
|
|
1152
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1153
|
+
end
|
|
1154
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1155
|
+
raise e
|
|
1156
|
+
rescue StandardError => e
|
|
1157
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1158
|
+
end
|
|
1159
|
+
|
|
1160
|
+
# 描述扩展上传文件信息
|
|
1161
|
+
|
|
1162
|
+
# @param request: Request instance for DescribeExtensionUploadInfo.
|
|
1163
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeExtensionUploadInfoRequest`
|
|
1164
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeExtensionUploadInfoResponse`
|
|
1165
|
+
def DescribeExtensionUploadInfo(request)
|
|
1166
|
+
body = send_request('DescribeExtensionUploadInfo', request.serialize)
|
|
1167
|
+
response = JSON.parse(body)
|
|
1168
|
+
if response['Response'].key?('Error') == false
|
|
1169
|
+
model = DescribeExtensionUploadInfoResponse.new
|
|
1170
|
+
model.deserialize(response['Response'])
|
|
1171
|
+
model
|
|
1172
|
+
else
|
|
1173
|
+
code = response['Response']['Error']['Code']
|
|
1174
|
+
message = response['Response']['Error']['Message']
|
|
1175
|
+
reqid = response['Response']['RequestId']
|
|
1176
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1177
|
+
end
|
|
1178
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1179
|
+
raise e
|
|
1180
|
+
rescue StandardError => e
|
|
1181
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1182
|
+
end
|
|
1183
|
+
|
|
1184
|
+
# 获取增值包计费相关信息
|
|
1185
|
+
|
|
1186
|
+
# @param request: Request instance for DescribeExtraPkgBillingInfo.
|
|
1187
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeExtraPkgBillingInfoRequest`
|
|
1188
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeExtraPkgBillingInfoResponse`
|
|
1189
|
+
def DescribeExtraPkgBillingInfo(request)
|
|
1190
|
+
body = send_request('DescribeExtraPkgBillingInfo', request.serialize)
|
|
1191
|
+
response = JSON.parse(body)
|
|
1192
|
+
if response['Response'].key?('Error') == false
|
|
1193
|
+
model = DescribeExtraPkgBillingInfoResponse.new
|
|
1194
|
+
model.deserialize(response['Response'])
|
|
1195
|
+
model
|
|
1196
|
+
else
|
|
1197
|
+
code = response['Response']['Error']['Code']
|
|
1198
|
+
message = response['Response']['Error']['Message']
|
|
1199
|
+
reqid = response['Response']['RequestId']
|
|
1200
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1201
|
+
end
|
|
1202
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1203
|
+
raise e
|
|
1204
|
+
rescue StandardError => e
|
|
1205
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1206
|
+
end
|
|
1207
|
+
|
|
1208
|
+
# 查询静态托管域名任务状态
|
|
1209
|
+
|
|
1210
|
+
# @param request: Request instance for DescribeHostingDomainTask.
|
|
1211
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeHostingDomainTaskRequest`
|
|
1212
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeHostingDomainTaskResponse`
|
|
1213
|
+
def DescribeHostingDomainTask(request)
|
|
1214
|
+
body = send_request('DescribeHostingDomainTask', request.serialize)
|
|
1215
|
+
response = JSON.parse(body)
|
|
1216
|
+
if response['Response'].key?('Error') == false
|
|
1217
|
+
model = DescribeHostingDomainTaskResponse.new
|
|
1218
|
+
model.deserialize(response['Response'])
|
|
1219
|
+
model
|
|
1220
|
+
else
|
|
1221
|
+
code = response['Response']['Error']['Code']
|
|
1222
|
+
message = response['Response']['Error']['Message']
|
|
1223
|
+
reqid = response['Response']['RequestId']
|
|
1224
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1225
|
+
end
|
|
1226
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1227
|
+
raise e
|
|
1228
|
+
rescue StandardError => e
|
|
1229
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1230
|
+
end
|
|
1231
|
+
|
|
1232
|
+
# 查询后付费资源免费量
|
|
1233
|
+
|
|
1234
|
+
# @param request: Request instance for DescribePostpayFreeQuotas.
|
|
1235
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribePostpayFreeQuotasRequest`
|
|
1236
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribePostpayFreeQuotasResponse`
|
|
1237
|
+
def DescribePostpayFreeQuotas(request)
|
|
1238
|
+
body = send_request('DescribePostpayFreeQuotas', request.serialize)
|
|
1239
|
+
response = JSON.parse(body)
|
|
1240
|
+
if response['Response'].key?('Error') == false
|
|
1241
|
+
model = DescribePostpayFreeQuotasResponse.new
|
|
1242
|
+
model.deserialize(response['Response'])
|
|
1243
|
+
model
|
|
1244
|
+
else
|
|
1245
|
+
code = response['Response']['Error']['Code']
|
|
1246
|
+
message = response['Response']['Error']['Message']
|
|
1247
|
+
reqid = response['Response']['RequestId']
|
|
1248
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1249
|
+
end
|
|
1250
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1251
|
+
raise e
|
|
1252
|
+
rescue StandardError => e
|
|
1253
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1254
|
+
end
|
|
1255
|
+
|
|
1256
|
+
# 获取后付费免费额度
|
|
1257
|
+
|
|
1258
|
+
# @param request: Request instance for DescribePostpayPackageFreeQuotas.
|
|
1259
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribePostpayPackageFreeQuotasRequest`
|
|
1260
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribePostpayPackageFreeQuotasResponse`
|
|
1261
|
+
def DescribePostpayPackageFreeQuotas(request)
|
|
1262
|
+
body = send_request('DescribePostpayPackageFreeQuotas', request.serialize)
|
|
1263
|
+
response = JSON.parse(body)
|
|
1264
|
+
if response['Response'].key?('Error') == false
|
|
1265
|
+
model = DescribePostpayPackageFreeQuotasResponse.new
|
|
1266
|
+
model.deserialize(response['Response'])
|
|
1267
|
+
model
|
|
1268
|
+
else
|
|
1269
|
+
code = response['Response']['Error']['Code']
|
|
1270
|
+
message = response['Response']['Error']['Message']
|
|
1271
|
+
reqid = response['Response']['RequestId']
|
|
1272
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1273
|
+
end
|
|
1274
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1275
|
+
raise e
|
|
1276
|
+
rescue StandardError => e
|
|
1277
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1278
|
+
end
|
|
1279
|
+
|
|
1280
|
+
# 查询指定指标的配额使用量
|
|
1281
|
+
|
|
1282
|
+
# @param request: Request instance for DescribeQuotaData.
|
|
1283
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeQuotaDataRequest`
|
|
1284
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeQuotaDataResponse`
|
|
1285
|
+
def DescribeQuotaData(request)
|
|
1286
|
+
body = send_request('DescribeQuotaData', request.serialize)
|
|
1287
|
+
response = JSON.parse(body)
|
|
1288
|
+
if response['Response'].key?('Error') == false
|
|
1289
|
+
model = DescribeQuotaDataResponse.new
|
|
1290
|
+
model.deserialize(response['Response'])
|
|
1291
|
+
model
|
|
1292
|
+
else
|
|
1293
|
+
code = response['Response']['Error']['Code']
|
|
1294
|
+
message = response['Response']['Error']['Message']
|
|
1295
|
+
reqid = response['Response']['RequestId']
|
|
1296
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1297
|
+
end
|
|
1298
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1299
|
+
raise e
|
|
1300
|
+
rescue StandardError => e
|
|
1301
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1302
|
+
end
|
|
1303
|
+
|
|
1304
|
+
# 查询后付费短信资源量
|
|
1305
|
+
# 1 有免费包的返回SmsFreeQuota结构所有字段
|
|
1306
|
+
# 2 没有免费包,有付费包,付费返回复用SmsFreeQuota结构,其中只有 TodayUsedQuota 字段有效
|
|
1307
|
+
# 3 都没有返回为空数组
|
|
1308
|
+
|
|
1309
|
+
# @param request: Request instance for DescribeSmsQuotas.
|
|
1310
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeSmsQuotasRequest`
|
|
1311
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeSmsQuotasResponse`
|
|
1312
|
+
def DescribeSmsQuotas(request)
|
|
1313
|
+
body = send_request('DescribeSmsQuotas', request.serialize)
|
|
1314
|
+
response = JSON.parse(body)
|
|
1315
|
+
if response['Response'].key?('Error') == false
|
|
1316
|
+
model = DescribeSmsQuotasResponse.new
|
|
1317
|
+
model.deserialize(response['Response'])
|
|
1318
|
+
model
|
|
1319
|
+
else
|
|
1320
|
+
code = response['Response']['Error']['Code']
|
|
1321
|
+
message = response['Response']['Error']['Message']
|
|
1322
|
+
reqid = response['Response']['RequestId']
|
|
1323
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1324
|
+
end
|
|
1325
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1326
|
+
raise e
|
|
1327
|
+
rescue StandardError => e
|
|
1328
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1329
|
+
end
|
|
1330
|
+
|
|
1331
|
+
# 查询环境1分钱抵扣信息
|
|
1332
|
+
|
|
1333
|
+
# @param request: Request instance for DescribeSpecialCostItems.
|
|
1334
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeSpecialCostItemsRequest`
|
|
1335
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeSpecialCostItemsResponse`
|
|
1336
|
+
def DescribeSpecialCostItems(request)
|
|
1337
|
+
body = send_request('DescribeSpecialCostItems', request.serialize)
|
|
1338
|
+
response = JSON.parse(body)
|
|
1339
|
+
if response['Response'].key?('Error') == false
|
|
1340
|
+
model = DescribeSpecialCostItemsResponse.new
|
|
1341
|
+
model.deserialize(response['Response'])
|
|
1342
|
+
model
|
|
1343
|
+
else
|
|
1344
|
+
code = response['Response']['Error']['Code']
|
|
1345
|
+
message = response['Response']['Error']['Message']
|
|
1346
|
+
reqid = response['Response']['RequestId']
|
|
1347
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1348
|
+
end
|
|
1349
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1350
|
+
raise e
|
|
1351
|
+
rescue StandardError => e
|
|
1352
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1353
|
+
end
|
|
1354
|
+
|
|
1355
|
+
# 本接口(DescribeStandaloneGateway)查询小租户网关套餐信息。
|
|
1356
|
+
|
|
1357
|
+
# @param request: Request instance for DescribeStandaloneGateway.
|
|
1358
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeStandaloneGatewayRequest`
|
|
1359
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeStandaloneGatewayResponse`
|
|
1360
|
+
def DescribeStandaloneGateway(request)
|
|
1361
|
+
body = send_request('DescribeStandaloneGateway', request.serialize)
|
|
1362
|
+
response = JSON.parse(body)
|
|
1363
|
+
if response['Response'].key?('Error') == false
|
|
1364
|
+
model = DescribeStandaloneGatewayResponse.new
|
|
1365
|
+
model.deserialize(response['Response'])
|
|
1366
|
+
model
|
|
1367
|
+
else
|
|
1368
|
+
code = response['Response']['Error']['Code']
|
|
1369
|
+
message = response['Response']['Error']['Message']
|
|
1370
|
+
reqid = response['Response']['RequestId']
|
|
1371
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1372
|
+
end
|
|
1373
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1374
|
+
raise e
|
|
1375
|
+
rescue StandardError => e
|
|
1376
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1377
|
+
end
|
|
1378
|
+
|
|
1379
|
+
# 本接口(DescribeStandaloneGatewayPackage)用于查询小租户网关套餐信息。
|
|
1380
|
+
|
|
1381
|
+
# @param request: Request instance for DescribeStandaloneGatewayPackage.
|
|
1382
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeStandaloneGatewayPackageRequest`
|
|
1383
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeStandaloneGatewayPackageResponse`
|
|
1384
|
+
def DescribeStandaloneGatewayPackage(request)
|
|
1385
|
+
body = send_request('DescribeStandaloneGatewayPackage', request.serialize)
|
|
1386
|
+
response = JSON.parse(body)
|
|
1387
|
+
if response['Response'].key?('Error') == false
|
|
1388
|
+
model = DescribeStandaloneGatewayPackageResponse.new
|
|
1389
|
+
model.deserialize(response['Response'])
|
|
1390
|
+
model
|
|
1391
|
+
else
|
|
1392
|
+
code = response['Response']['Error']['Code']
|
|
1393
|
+
message = response['Response']['Error']['Message']
|
|
1394
|
+
reqid = response['Response']['RequestId']
|
|
1395
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1396
|
+
end
|
|
1397
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1398
|
+
raise e
|
|
1399
|
+
rescue StandardError => e
|
|
1400
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1401
|
+
end
|
|
1402
|
+
|
|
1403
|
+
# 查询用户活动信息
|
|
1404
|
+
|
|
1405
|
+
# @param request: Request instance for DescribeUserActivityInfo.
|
|
1406
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeUserActivityInfoRequest`
|
|
1407
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeUserActivityInfoResponse`
|
|
1408
|
+
def DescribeUserActivityInfo(request)
|
|
1409
|
+
body = send_request('DescribeUserActivityInfo', request.serialize)
|
|
1410
|
+
response = JSON.parse(body)
|
|
1411
|
+
if response['Response'].key?('Error') == false
|
|
1412
|
+
model = DescribeUserActivityInfoResponse.new
|
|
1413
|
+
model.deserialize(response['Response'])
|
|
1414
|
+
model
|
|
1415
|
+
else
|
|
1416
|
+
code = response['Response']['Error']['Code']
|
|
1417
|
+
message = response['Response']['Error']['Message']
|
|
1418
|
+
reqid = response['Response']['RequestId']
|
|
1419
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1420
|
+
end
|
|
1421
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1422
|
+
raise e
|
|
1423
|
+
rescue StandardError => e
|
|
1424
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1425
|
+
end
|
|
1426
|
+
|
|
1427
|
+
# 查询微信云托管环境信息
|
|
1428
|
+
|
|
1429
|
+
# @param request: Request instance for DescribeWxCloudBaseRunEnvs.
|
|
1430
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeWxCloudBaseRunEnvsRequest`
|
|
1431
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeWxCloudBaseRunEnvsResponse`
|
|
1432
|
+
def DescribeWxCloudBaseRunEnvs(request)
|
|
1433
|
+
body = send_request('DescribeWxCloudBaseRunEnvs', request.serialize)
|
|
1434
|
+
response = JSON.parse(body)
|
|
1435
|
+
if response['Response'].key?('Error') == false
|
|
1436
|
+
model = DescribeWxCloudBaseRunEnvsResponse.new
|
|
1437
|
+
model.deserialize(response['Response'])
|
|
1438
|
+
model
|
|
1439
|
+
else
|
|
1440
|
+
code = response['Response']['Error']['Code']
|
|
1441
|
+
message = response['Response']['Error']['Message']
|
|
1442
|
+
reqid = response['Response']['RequestId']
|
|
1443
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1444
|
+
end
|
|
1445
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1446
|
+
raise e
|
|
1447
|
+
rescue StandardError => e
|
|
1448
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1449
|
+
end
|
|
1450
|
+
|
|
1451
|
+
# 查询微信云托管子网
|
|
1452
|
+
|
|
1453
|
+
# @param request: Request instance for DescribeWxCloudBaseRunSubNets.
|
|
1454
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeWxCloudBaseRunSubNetsRequest`
|
|
1455
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeWxCloudBaseRunSubNetsResponse`
|
|
1456
|
+
def DescribeWxCloudBaseRunSubNets(request)
|
|
1457
|
+
body = send_request('DescribeWxCloudBaseRunSubNets', request.serialize)
|
|
1458
|
+
response = JSON.parse(body)
|
|
1459
|
+
if response['Response'].key?('Error') == false
|
|
1460
|
+
model = DescribeWxCloudBaseRunSubNetsResponse.new
|
|
1461
|
+
model.deserialize(response['Response'])
|
|
1462
|
+
model
|
|
1463
|
+
else
|
|
1464
|
+
code = response['Response']['Error']['Code']
|
|
1465
|
+
message = response['Response']['Error']['Message']
|
|
1466
|
+
reqid = response['Response']['RequestId']
|
|
1467
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1468
|
+
end
|
|
1469
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1470
|
+
raise e
|
|
1471
|
+
rescue StandardError => e
|
|
1472
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1473
|
+
end
|
|
1474
|
+
|
|
1475
|
+
# 销毁环境
|
|
1476
|
+
|
|
1477
|
+
# @param request: Request instance for DestroyEnv.
|
|
1478
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DestroyEnvRequest`
|
|
1479
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DestroyEnvResponse`
|
|
1480
|
+
def DestroyEnv(request)
|
|
1481
|
+
body = send_request('DestroyEnv', request.serialize)
|
|
1482
|
+
response = JSON.parse(body)
|
|
1483
|
+
if response['Response'].key?('Error') == false
|
|
1484
|
+
model = DestroyEnvResponse.new
|
|
1485
|
+
model.deserialize(response['Response'])
|
|
1486
|
+
model
|
|
1487
|
+
else
|
|
1488
|
+
code = response['Response']['Error']['Code']
|
|
1489
|
+
message = response['Response']['Error']['Message']
|
|
1490
|
+
reqid = response['Response']['RequestId']
|
|
1491
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1492
|
+
end
|
|
1493
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1494
|
+
raise e
|
|
1495
|
+
rescue StandardError => e
|
|
1496
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1497
|
+
end
|
|
1498
|
+
|
|
1499
|
+
# 本接口(DestroyStandaloneGateway)用于销毁小租户网关。
|
|
1500
|
+
|
|
1501
|
+
# @param request: Request instance for DestroyStandaloneGateway.
|
|
1502
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DestroyStandaloneGatewayRequest`
|
|
1503
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DestroyStandaloneGatewayResponse`
|
|
1504
|
+
def DestroyStandaloneGateway(request)
|
|
1505
|
+
body = send_request('DestroyStandaloneGateway', request.serialize)
|
|
1506
|
+
response = JSON.parse(body)
|
|
1507
|
+
if response['Response'].key?('Error') == false
|
|
1508
|
+
model = DestroyStandaloneGatewayResponse.new
|
|
1509
|
+
model.deserialize(response['Response'])
|
|
1510
|
+
model
|
|
1511
|
+
else
|
|
1512
|
+
code = response['Response']['Error']['Code']
|
|
1513
|
+
message = response['Response']['Error']['Message']
|
|
1514
|
+
reqid = response['Response']['RequestId']
|
|
1515
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1516
|
+
end
|
|
1517
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1518
|
+
raise e
|
|
1519
|
+
rescue StandardError => e
|
|
1520
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1521
|
+
end
|
|
1522
|
+
|
|
1523
|
+
# 销毁静态托管资源,该接口创建异步销毁任务,资源最终状态可从DestroyStaticStore接口查看
|
|
1524
|
+
|
|
1525
|
+
# @param request: Request instance for DestroyStaticStore.
|
|
1526
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::DestroyStaticStoreRequest`
|
|
1527
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::DestroyStaticStoreResponse`
|
|
1528
|
+
def DestroyStaticStore(request)
|
|
1529
|
+
body = send_request('DestroyStaticStore', request.serialize)
|
|
1530
|
+
response = JSON.parse(body)
|
|
1531
|
+
if response['Response'].key?('Error') == false
|
|
1532
|
+
model = DestroyStaticStoreResponse.new
|
|
1533
|
+
model.deserialize(response['Response'])
|
|
1534
|
+
model
|
|
1535
|
+
else
|
|
1536
|
+
code = response['Response']['Error']['Code']
|
|
1537
|
+
message = response['Response']['Error']['Message']
|
|
1538
|
+
reqid = response['Response']['RequestId']
|
|
1539
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1540
|
+
end
|
|
1541
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1542
|
+
raise e
|
|
1543
|
+
rescue StandardError => e
|
|
1544
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1545
|
+
end
|
|
1546
|
+
|
|
1547
|
+
# 创建云应用服务
|
|
1548
|
+
|
|
1549
|
+
# @param request: Request instance for EstablishCloudBaseRunServer.
|
|
1550
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::EstablishCloudBaseRunServerRequest`
|
|
1551
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::EstablishCloudBaseRunServerResponse`
|
|
1552
|
+
def EstablishCloudBaseRunServer(request)
|
|
1553
|
+
body = send_request('EstablishCloudBaseRunServer', request.serialize)
|
|
1554
|
+
response = JSON.parse(body)
|
|
1555
|
+
if response['Response'].key?('Error') == false
|
|
1556
|
+
model = EstablishCloudBaseRunServerResponse.new
|
|
1557
|
+
model.deserialize(response['Response'])
|
|
1558
|
+
model
|
|
1559
|
+
else
|
|
1560
|
+
code = response['Response']['Error']['Code']
|
|
1561
|
+
message = response['Response']['Error']['Message']
|
|
1562
|
+
reqid = response['Response']['RequestId']
|
|
1563
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1564
|
+
end
|
|
1565
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1566
|
+
raise e
|
|
1567
|
+
rescue StandardError => e
|
|
1568
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1569
|
+
end
|
|
1570
|
+
|
|
1571
|
+
# 创建或修改安全网关路由
|
|
1572
|
+
|
|
1573
|
+
# @param request: Request instance for EstablishWxGatewayRoute.
|
|
1574
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::EstablishWxGatewayRouteRequest`
|
|
1575
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::EstablishWxGatewayRouteResponse`
|
|
1576
|
+
def EstablishWxGatewayRoute(request)
|
|
1577
|
+
body = send_request('EstablishWxGatewayRoute', request.serialize)
|
|
1578
|
+
response = JSON.parse(body)
|
|
1579
|
+
if response['Response'].key?('Error') == false
|
|
1580
|
+
model = EstablishWxGatewayRouteResponse.new
|
|
1581
|
+
model.deserialize(response['Response'])
|
|
1582
|
+
model
|
|
1583
|
+
else
|
|
1584
|
+
code = response['Response']['Error']['Code']
|
|
1585
|
+
message = response['Response']['Error']['Message']
|
|
1586
|
+
reqid = response['Response']['RequestId']
|
|
1587
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1588
|
+
end
|
|
1589
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1590
|
+
raise e
|
|
1591
|
+
rescue StandardError => e
|
|
1592
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1593
|
+
end
|
|
1594
|
+
|
|
1595
|
+
# 修改容器内的版本流量配置
|
|
1596
|
+
|
|
1597
|
+
# @param request: Request instance for ModifyCloudBaseRunServerFlowConf.
|
|
1598
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::ModifyCloudBaseRunServerFlowConfRequest`
|
|
1599
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::ModifyCloudBaseRunServerFlowConfResponse`
|
|
1600
|
+
def ModifyCloudBaseRunServerFlowConf(request)
|
|
1601
|
+
body = send_request('ModifyCloudBaseRunServerFlowConf', request.serialize)
|
|
1602
|
+
response = JSON.parse(body)
|
|
1603
|
+
if response['Response'].key?('Error') == false
|
|
1604
|
+
model = ModifyCloudBaseRunServerFlowConfResponse.new
|
|
1605
|
+
model.deserialize(response['Response'])
|
|
1606
|
+
model
|
|
1607
|
+
else
|
|
1608
|
+
code = response['Response']['Error']['Code']
|
|
1609
|
+
message = response['Response']['Error']['Message']
|
|
1610
|
+
reqid = response['Response']['RequestId']
|
|
1611
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1612
|
+
end
|
|
1613
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1614
|
+
raise e
|
|
1615
|
+
rescue StandardError => e
|
|
1616
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1617
|
+
end
|
|
1618
|
+
|
|
1619
|
+
# 修改数据库权限
|
|
1620
|
+
|
|
1621
|
+
# @param request: Request instance for ModifyDatabaseACL.
|
|
1622
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::ModifyDatabaseACLRequest`
|
|
1623
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::ModifyDatabaseACLResponse`
|
|
1624
|
+
def ModifyDatabaseACL(request)
|
|
1625
|
+
body = send_request('ModifyDatabaseACL', request.serialize)
|
|
1626
|
+
response = JSON.parse(body)
|
|
1627
|
+
if response['Response'].key?('Error') == false
|
|
1628
|
+
model = ModifyDatabaseACLResponse.new
|
|
1629
|
+
model.deserialize(response['Response'])
|
|
1630
|
+
model
|
|
1631
|
+
else
|
|
1632
|
+
code = response['Response']['Error']['Code']
|
|
1633
|
+
message = response['Response']['Error']['Message']
|
|
1634
|
+
reqid = response['Response']['RequestId']
|
|
1635
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1636
|
+
end
|
|
1637
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1638
|
+
raise e
|
|
1639
|
+
rescue StandardError => e
|
|
1640
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1641
|
+
end
|
|
1642
|
+
|
|
1643
|
+
# 管理终端用户
|
|
1644
|
+
|
|
1645
|
+
# @param request: Request instance for ModifyEndUser.
|
|
1646
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::ModifyEndUserRequest`
|
|
1647
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::ModifyEndUserResponse`
|
|
1648
|
+
def ModifyEndUser(request)
|
|
1649
|
+
body = send_request('ModifyEndUser', request.serialize)
|
|
1650
|
+
response = JSON.parse(body)
|
|
1651
|
+
if response['Response'].key?('Error') == false
|
|
1652
|
+
model = ModifyEndUserResponse.new
|
|
1653
|
+
model.deserialize(response['Response'])
|
|
1654
|
+
model
|
|
1655
|
+
else
|
|
1656
|
+
code = response['Response']['Error']['Code']
|
|
1657
|
+
message = response['Response']['Error']['Message']
|
|
1658
|
+
reqid = response['Response']['RequestId']
|
|
1659
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1660
|
+
end
|
|
1661
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1662
|
+
raise e
|
|
1663
|
+
rescue StandardError => e
|
|
1664
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1665
|
+
end
|
|
1666
|
+
|
|
1667
|
+
# 更新环境信息
|
|
1668
|
+
|
|
1669
|
+
# @param request: Request instance for ModifyEnv.
|
|
1670
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::ModifyEnvRequest`
|
|
1671
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::ModifyEnvResponse`
|
|
1672
|
+
def ModifyEnv(request)
|
|
1673
|
+
body = send_request('ModifyEnv', request.serialize)
|
|
1674
|
+
response = JSON.parse(body)
|
|
1675
|
+
if response['Response'].key?('Error') == false
|
|
1676
|
+
model = ModifyEnvResponse.new
|
|
1677
|
+
model.deserialize(response['Response'])
|
|
1678
|
+
model
|
|
1679
|
+
else
|
|
1680
|
+
code = response['Response']['Error']['Code']
|
|
1681
|
+
message = response['Response']['Error']['Message']
|
|
1682
|
+
reqid = response['Response']['RequestId']
|
|
1683
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1684
|
+
end
|
|
1685
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1686
|
+
raise e
|
|
1687
|
+
rescue StandardError => e
|
|
1688
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1689
|
+
end
|
|
1690
|
+
|
|
1691
|
+
# 针对已隔离的免费环境,可以通过本接口将其恢复访问。
|
|
1692
|
+
|
|
1693
|
+
# @param request: Request instance for ReinstateEnv.
|
|
1694
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::ReinstateEnvRequest`
|
|
1695
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::ReinstateEnvResponse`
|
|
1696
|
+
def ReinstateEnv(request)
|
|
1697
|
+
body = send_request('ReinstateEnv', request.serialize)
|
|
1698
|
+
response = JSON.parse(body)
|
|
1699
|
+
if response['Response'].key?('Error') == false
|
|
1700
|
+
model = ReinstateEnvResponse.new
|
|
1701
|
+
model.deserialize(response['Response'])
|
|
1702
|
+
model
|
|
1703
|
+
else
|
|
1704
|
+
code = response['Response']['Error']['Code']
|
|
1705
|
+
message = response['Response']['Error']['Message']
|
|
1706
|
+
reqid = response['Response']['RequestId']
|
|
1707
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1708
|
+
end
|
|
1709
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1710
|
+
raise e
|
|
1711
|
+
rescue StandardError => e
|
|
1712
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1713
|
+
end
|
|
1714
|
+
|
|
1715
|
+
# 更新活动详情
|
|
1716
|
+
|
|
1717
|
+
# @param request: Request instance for ReplaceActivityRecord.
|
|
1718
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::ReplaceActivityRecordRequest`
|
|
1719
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::ReplaceActivityRecordResponse`
|
|
1720
|
+
def ReplaceActivityRecord(request)
|
|
1721
|
+
body = send_request('ReplaceActivityRecord', request.serialize)
|
|
1722
|
+
response = JSON.parse(body)
|
|
1723
|
+
if response['Response'].key?('Error') == false
|
|
1724
|
+
model = ReplaceActivityRecordResponse.new
|
|
1725
|
+
model.deserialize(response['Response'])
|
|
1726
|
+
model
|
|
1727
|
+
else
|
|
1728
|
+
code = response['Response']['Error']['Code']
|
|
1729
|
+
message = response['Response']['Error']['Message']
|
|
1730
|
+
reqid = response['Response']['RequestId']
|
|
1731
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1732
|
+
end
|
|
1733
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1734
|
+
raise e
|
|
1735
|
+
rescue StandardError => e
|
|
1736
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1737
|
+
end
|
|
1738
|
+
|
|
1739
|
+
# 针对特定的版本,进行滚动更新
|
|
1740
|
+
|
|
1741
|
+
# @param request: Request instance for RollUpdateCloudBaseRunServerVersion.
|
|
1742
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::RollUpdateCloudBaseRunServerVersionRequest`
|
|
1743
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::RollUpdateCloudBaseRunServerVersionResponse`
|
|
1744
|
+
def RollUpdateCloudBaseRunServerVersion(request)
|
|
1745
|
+
body = send_request('RollUpdateCloudBaseRunServerVersion', request.serialize)
|
|
1746
|
+
response = JSON.parse(body)
|
|
1747
|
+
if response['Response'].key?('Error') == false
|
|
1748
|
+
model = RollUpdateCloudBaseRunServerVersionResponse.new
|
|
1749
|
+
model.deserialize(response['Response'])
|
|
1750
|
+
model
|
|
1751
|
+
else
|
|
1752
|
+
code = response['Response']['Error']['Code']
|
|
1753
|
+
message = response['Response']['Error']['Message']
|
|
1754
|
+
reqid = response['Response']['RequestId']
|
|
1755
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1756
|
+
end
|
|
1757
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1758
|
+
raise e
|
|
1759
|
+
rescue StandardError => e
|
|
1760
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1761
|
+
end
|
|
1762
|
+
|
|
1763
|
+
# 本接口(TurnOffStandaloneGateway)用于关闭小租户网关。
|
|
1764
|
+
|
|
1765
|
+
# @param request: Request instance for TurnOffStandaloneGateway.
|
|
1766
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::TurnOffStandaloneGatewayRequest`
|
|
1767
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::TurnOffStandaloneGatewayResponse`
|
|
1768
|
+
def TurnOffStandaloneGateway(request)
|
|
1769
|
+
body = send_request('TurnOffStandaloneGateway', request.serialize)
|
|
1770
|
+
response = JSON.parse(body)
|
|
1771
|
+
if response['Response'].key?('Error') == false
|
|
1772
|
+
model = TurnOffStandaloneGatewayResponse.new
|
|
1773
|
+
model.deserialize(response['Response'])
|
|
1774
|
+
model
|
|
1775
|
+
else
|
|
1776
|
+
code = response['Response']['Error']['Code']
|
|
1777
|
+
message = response['Response']['Error']['Message']
|
|
1778
|
+
reqid = response['Response']['RequestId']
|
|
1779
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1780
|
+
end
|
|
1781
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1782
|
+
raise e
|
|
1783
|
+
rescue StandardError => e
|
|
1784
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1785
|
+
end
|
|
1786
|
+
|
|
1787
|
+
# 本接口(TurnOnStandaloneGateway)用于开启小租户网关。
|
|
1788
|
+
|
|
1789
|
+
# @param request: Request instance for TurnOnStandaloneGateway.
|
|
1790
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::TurnOnStandaloneGatewayRequest`
|
|
1791
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::TurnOnStandaloneGatewayResponse`
|
|
1792
|
+
def TurnOnStandaloneGateway(request)
|
|
1793
|
+
body = send_request('TurnOnStandaloneGateway', request.serialize)
|
|
1794
|
+
response = JSON.parse(body)
|
|
1795
|
+
if response['Response'].key?('Error') == false
|
|
1796
|
+
model = TurnOnStandaloneGatewayResponse.new
|
|
1797
|
+
model.deserialize(response['Response'])
|
|
1798
|
+
model
|
|
1799
|
+
else
|
|
1800
|
+
code = response['Response']['Error']['Code']
|
|
1801
|
+
message = response['Response']['Error']['Message']
|
|
1802
|
+
reqid = response['Response']['RequestId']
|
|
1803
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
1804
|
+
end
|
|
1805
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
1806
|
+
raise e
|
|
1807
|
+
rescue StandardError => e
|
|
1808
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1809
|
+
end
|
|
1810
|
+
|
|
1811
|
+
|
|
1812
|
+
end
|
|
1813
|
+
end
|
|
1814
|
+
end
|
|
1815
|
+
end
|