tencentcloud-sdk-pts 3.0.371
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-pts.rb +11 -0
- data/lib/v20210728/client.rb +1068 -0
- data/lib/v20210728/models.rb +4779 -0
- metadata +66 -0
@@ -0,0 +1,1068 @@
|
|
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 Pts
|
21
|
+
module V20210728
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2021-07-28'
|
26
|
+
api_endpoint = 'pts.tencentcloudapi.com'
|
27
|
+
sdk_version = 'PTS_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 停止定时任务
|
33
|
+
|
34
|
+
# @param request: Request instance for AbortCronJobs.
|
35
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::AbortCronJobsRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::AbortCronJobsResponse`
|
37
|
+
def AbortCronJobs(request)
|
38
|
+
body = send_request('AbortCronJobs', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = AbortCronJobsResponse.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
|
+
# 停止任务
|
57
|
+
|
58
|
+
# @param request: Request instance for AbortJob.
|
59
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::AbortJobRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::AbortJobResponse`
|
61
|
+
def AbortJob(request)
|
62
|
+
body = send_request('AbortJob', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = AbortJobResponse.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
|
+
# 调整任务的目标RPS
|
81
|
+
|
82
|
+
# @param request: Request instance for AdjustJobSpeed.
|
83
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::AdjustJobSpeedRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::AdjustJobSpeedResponse`
|
85
|
+
def AdjustJobSpeed(request)
|
86
|
+
body = send_request('AdjustJobSpeed', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = AdjustJobSpeedResponse.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 CopyScenario.
|
107
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::CopyScenarioRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::CopyScenarioResponse`
|
109
|
+
def CopyScenario(request)
|
110
|
+
body = send_request('CopyScenario', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CopyScenarioResponse.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 CreateAlertChannel.
|
131
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::CreateAlertChannelRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::CreateAlertChannelResponse`
|
133
|
+
def CreateAlertChannel(request)
|
134
|
+
body = send_request('CreateAlertChannel', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CreateAlertChannelResponse.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
|
+
# 创建定时任务
|
153
|
+
|
154
|
+
# @param request: Request instance for CreateCronJob.
|
155
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::CreateCronJobRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::CreateCronJobResponse`
|
157
|
+
def CreateCronJob(request)
|
158
|
+
body = send_request('CreateCronJob', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = CreateCronJobResponse.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 CreateFile.
|
179
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::CreateFileRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::CreateFileResponse`
|
181
|
+
def CreateFile(request)
|
182
|
+
body = send_request('CreateFile', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = CreateFileResponse.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 CreateProject.
|
203
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::CreateProjectRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::CreateProjectResponse`
|
205
|
+
def CreateProject(request)
|
206
|
+
body = send_request('CreateProject', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = CreateProjectResponse.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 CreateScenario.
|
227
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::CreateScenarioRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::CreateScenarioResponse`
|
229
|
+
def CreateScenario(request)
|
230
|
+
body = send_request('CreateScenario', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = CreateScenarioResponse.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
|
+
# 删除告警通知接收组
|
249
|
+
|
250
|
+
# @param request: Request instance for DeleteAlertChannel.
|
251
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DeleteAlertChannelRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DeleteAlertChannelResponse`
|
253
|
+
def DeleteAlertChannel(request)
|
254
|
+
body = send_request('DeleteAlertChannel', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DeleteAlertChannelResponse.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
|
+
# 删除定时任务
|
273
|
+
|
274
|
+
# @param request: Request instance for DeleteCronJobs.
|
275
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DeleteCronJobsRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DeleteCronJobsResponse`
|
277
|
+
def DeleteCronJobs(request)
|
278
|
+
body = send_request('DeleteCronJobs', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DeleteCronJobsResponse.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 DeleteFiles.
|
299
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DeleteFilesRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DeleteFilesResponse`
|
301
|
+
def DeleteFiles(request)
|
302
|
+
body = send_request('DeleteFiles', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DeleteFilesResponse.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
|
+
# 删除任务
|
321
|
+
|
322
|
+
# @param request: Request instance for DeleteJobs.
|
323
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DeleteJobsRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DeleteJobsResponse`
|
325
|
+
def DeleteJobs(request)
|
326
|
+
body = send_request('DeleteJobs', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DeleteJobsResponse.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 DeleteProjects.
|
347
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DeleteProjectsRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DeleteProjectsResponse`
|
349
|
+
def DeleteProjects(request)
|
350
|
+
body = send_request('DeleteProjects', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DeleteProjectsResponse.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 DeleteScenarios.
|
371
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DeleteScenariosRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DeleteScenariosResponse`
|
373
|
+
def DeleteScenarios(request)
|
374
|
+
body = send_request('DeleteScenarios', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DeleteScenariosResponse.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 DescribeAlertChannels.
|
395
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeAlertChannelsRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeAlertChannelsResponse`
|
397
|
+
def DescribeAlertChannels(request)
|
398
|
+
body = send_request('DescribeAlertChannels', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = DescribeAlertChannelsResponse.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 DescribeAlertRecords.
|
419
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeAlertRecordsRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeAlertRecordsResponse`
|
421
|
+
def DescribeAlertRecords(request)
|
422
|
+
body = send_request('DescribeAlertRecords', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = DescribeAlertRecordsResponse.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 DescribeAvailableMetrics.
|
443
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeAvailableMetricsRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeAvailableMetricsResponse`
|
445
|
+
def DescribeAvailableMetrics(request)
|
446
|
+
body = send_request('DescribeAvailableMetrics', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = DescribeAvailableMetricsResponse.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 DescribeCheckSummary.
|
467
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeCheckSummaryRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeCheckSummaryResponse`
|
469
|
+
def DescribeCheckSummary(request)
|
470
|
+
body = send_request('DescribeCheckSummary', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = DescribeCheckSummaryResponse.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 DescribeCronJobs.
|
491
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeCronJobsRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeCronJobsResponse`
|
493
|
+
def DescribeCronJobs(request)
|
494
|
+
body = send_request('DescribeCronJobs', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = DescribeCronJobsResponse.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
|
+
# 查询文件列表
|
513
|
+
|
514
|
+
# @param request: Request instance for DescribeFiles.
|
515
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeFilesRequest`
|
516
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeFilesResponse`
|
517
|
+
def DescribeFiles(request)
|
518
|
+
body = send_request('DescribeFiles', request.serialize)
|
519
|
+
response = JSON.parse(body)
|
520
|
+
if response['Response'].key?('Error') == false
|
521
|
+
model = DescribeFilesResponse.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 DescribeJobs.
|
539
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeJobsRequest`
|
540
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeJobsResponse`
|
541
|
+
def DescribeJobs(request)
|
542
|
+
body = send_request('DescribeJobs', request.serialize)
|
543
|
+
response = JSON.parse(body)
|
544
|
+
if response['Response'].key?('Error') == false
|
545
|
+
model = DescribeJobsResponse.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 DescribeLabelValues.
|
563
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeLabelValuesRequest`
|
564
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeLabelValuesResponse`
|
565
|
+
def DescribeLabelValues(request)
|
566
|
+
body = send_request('DescribeLabelValues', request.serialize)
|
567
|
+
response = JSON.parse(body)
|
568
|
+
if response['Response'].key?('Error') == false
|
569
|
+
model = DescribeLabelValuesResponse.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
|
+
# 查询指标所有的label及values值
|
585
|
+
|
586
|
+
# @param request: Request instance for DescribeMetricLabelWithValues.
|
587
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeMetricLabelWithValuesRequest`
|
588
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeMetricLabelWithValuesResponse`
|
589
|
+
def DescribeMetricLabelWithValues(request)
|
590
|
+
body = send_request('DescribeMetricLabelWithValues', request.serialize)
|
591
|
+
response = JSON.parse(body)
|
592
|
+
if response['Response'].key?('Error') == false
|
593
|
+
model = DescribeMetricLabelWithValuesResponse.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 DescribeNormalLogs.
|
611
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeNormalLogsRequest`
|
612
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeNormalLogsResponse`
|
613
|
+
def DescribeNormalLogs(request)
|
614
|
+
body = send_request('DescribeNormalLogs', request.serialize)
|
615
|
+
response = JSON.parse(body)
|
616
|
+
if response['Response'].key?('Error') == false
|
617
|
+
model = DescribeNormalLogsResponse.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 DescribeProjects.
|
635
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeProjectsRequest`
|
636
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeProjectsResponse`
|
637
|
+
def DescribeProjects(request)
|
638
|
+
body = send_request('DescribeProjects', request.serialize)
|
639
|
+
response = JSON.parse(body)
|
640
|
+
if response['Response'].key?('Error') == false
|
641
|
+
model = DescribeProjectsResponse.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 DescribeRegions.
|
659
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeRegionsRequest`
|
660
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeRegionsResponse`
|
661
|
+
def DescribeRegions(request)
|
662
|
+
body = send_request('DescribeRegions', request.serialize)
|
663
|
+
response = JSON.parse(body)
|
664
|
+
if response['Response'].key?('Error') == false
|
665
|
+
model = DescribeRegionsResponse.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 DescribeRequestSummary.
|
683
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeRequestSummaryRequest`
|
684
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeRequestSummaryResponse`
|
685
|
+
def DescribeRequestSummary(request)
|
686
|
+
body = send_request('DescribeRequestSummary', request.serialize)
|
687
|
+
response = JSON.parse(body)
|
688
|
+
if response['Response'].key?('Error') == false
|
689
|
+
model = DescribeRequestSummaryResponse.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 DescribeSampleBatchQuery.
|
707
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeSampleBatchQueryRequest`
|
708
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeSampleBatchQueryResponse`
|
709
|
+
def DescribeSampleBatchQuery(request)
|
710
|
+
body = send_request('DescribeSampleBatchQuery', request.serialize)
|
711
|
+
response = JSON.parse(body)
|
712
|
+
if response['Response'].key?('Error') == false
|
713
|
+
model = DescribeSampleBatchQueryResponse.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 DescribeSampleLogs.
|
731
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeSampleLogsRequest`
|
732
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeSampleLogsResponse`
|
733
|
+
def DescribeSampleLogs(request)
|
734
|
+
body = send_request('DescribeSampleLogs', request.serialize)
|
735
|
+
response = JSON.parse(body)
|
736
|
+
if response['Response'].key?('Error') == false
|
737
|
+
model = DescribeSampleLogsResponse.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 DescribeSampleMatrixBatchQuery.
|
755
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeSampleMatrixBatchQueryRequest`
|
756
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeSampleMatrixBatchQueryResponse`
|
757
|
+
def DescribeSampleMatrixBatchQuery(request)
|
758
|
+
body = send_request('DescribeSampleMatrixBatchQuery', request.serialize)
|
759
|
+
response = JSON.parse(body)
|
760
|
+
if response['Response'].key?('Error') == false
|
761
|
+
model = DescribeSampleMatrixBatchQueryResponse.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 DescribeSampleMatrixQuery.
|
779
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeSampleMatrixQueryRequest`
|
780
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeSampleMatrixQueryResponse`
|
781
|
+
def DescribeSampleMatrixQuery(request)
|
782
|
+
body = send_request('DescribeSampleMatrixQuery', request.serialize)
|
783
|
+
response = JSON.parse(body)
|
784
|
+
if response['Response'].key?('Error') == false
|
785
|
+
model = DescribeSampleMatrixQueryResponse.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
|
+
# 查询指标,返回固定时间点指标内容
|
801
|
+
|
802
|
+
# @param request: Request instance for DescribeSampleQuery.
|
803
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeSampleQueryRequest`
|
804
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeSampleQueryResponse`
|
805
|
+
def DescribeSampleQuery(request)
|
806
|
+
body = send_request('DescribeSampleQuery', request.serialize)
|
807
|
+
response = JSON.parse(body)
|
808
|
+
if response['Response'].key?('Error') == false
|
809
|
+
model = DescribeSampleQueryResponse.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 DescribeScenarioWithJobs.
|
827
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeScenarioWithJobsRequest`
|
828
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeScenarioWithJobsResponse`
|
829
|
+
def DescribeScenarioWithJobs(request)
|
830
|
+
body = send_request('DescribeScenarioWithJobs', request.serialize)
|
831
|
+
response = JSON.parse(body)
|
832
|
+
if response['Response'].key?('Error') == false
|
833
|
+
model = DescribeScenarioWithJobsResponse.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
|
+
# 查询场景列表
|
849
|
+
|
850
|
+
# @param request: Request instance for DescribeScenarios.
|
851
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::DescribeScenariosRequest`
|
852
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::DescribeScenariosResponse`
|
853
|
+
def DescribeScenarios(request)
|
854
|
+
body = send_request('DescribeScenarios', request.serialize)
|
855
|
+
response = JSON.parse(body)
|
856
|
+
if response['Response'].key?('Error') == false
|
857
|
+
model = DescribeScenariosResponse.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
|
+
# 生成临时COS凭证
|
873
|
+
|
874
|
+
# @param request: Request instance for GenerateTmpKey.
|
875
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::GenerateTmpKeyRequest`
|
876
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::GenerateTmpKeyResponse`
|
877
|
+
def GenerateTmpKey(request)
|
878
|
+
body = send_request('GenerateTmpKey', request.serialize)
|
879
|
+
response = JSON.parse(body)
|
880
|
+
if response['Response'].key?('Error') == false
|
881
|
+
model = GenerateTmpKeyResponse.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 RestartCronJobs.
|
899
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::RestartCronJobsRequest`
|
900
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::RestartCronJobsResponse`
|
901
|
+
def RestartCronJobs(request)
|
902
|
+
body = send_request('RestartCronJobs', request.serialize)
|
903
|
+
response = JSON.parse(body)
|
904
|
+
if response['Response'].key?('Error') == false
|
905
|
+
model = RestartCronJobsResponse.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 StartJob.
|
923
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::StartJobRequest`
|
924
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::StartJobResponse`
|
925
|
+
def StartJob(request)
|
926
|
+
body = send_request('StartJob', request.serialize)
|
927
|
+
response = JSON.parse(body)
|
928
|
+
if response['Response'].key?('Error') == false
|
929
|
+
model = StartJobResponse.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 UpdateCronJob.
|
947
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::UpdateCronJobRequest`
|
948
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::UpdateCronJobResponse`
|
949
|
+
def UpdateCronJob(request)
|
950
|
+
body = send_request('UpdateCronJob', request.serialize)
|
951
|
+
response = JSON.parse(body)
|
952
|
+
if response['Response'].key?('Error') == false
|
953
|
+
model = UpdateCronJobResponse.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 UpdateFileScenarioRelation.
|
971
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::UpdateFileScenarioRelationRequest`
|
972
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::UpdateFileScenarioRelationResponse`
|
973
|
+
def UpdateFileScenarioRelation(request)
|
974
|
+
body = send_request('UpdateFileScenarioRelation', request.serialize)
|
975
|
+
response = JSON.parse(body)
|
976
|
+
if response['Response'].key?('Error') == false
|
977
|
+
model = UpdateFileScenarioRelationResponse.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 UpdateJob.
|
995
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::UpdateJobRequest`
|
996
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::UpdateJobResponse`
|
997
|
+
def UpdateJob(request)
|
998
|
+
body = send_request('UpdateJob', request.serialize)
|
999
|
+
response = JSON.parse(body)
|
1000
|
+
if response['Response'].key?('Error') == false
|
1001
|
+
model = UpdateJobResponse.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 UpdateProject.
|
1019
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::UpdateProjectRequest`
|
1020
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::UpdateProjectResponse`
|
1021
|
+
def UpdateProject(request)
|
1022
|
+
body = send_request('UpdateProject', request.serialize)
|
1023
|
+
response = JSON.parse(body)
|
1024
|
+
if response['Response'].key?('Error') == false
|
1025
|
+
model = UpdateProjectResponse.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 UpdateScenario.
|
1043
|
+
# @type request: :class:`Tencentcloud::pts::V20210728::UpdateScenarioRequest`
|
1044
|
+
# @rtype: :class:`Tencentcloud::pts::V20210728::UpdateScenarioResponse`
|
1045
|
+
def UpdateScenario(request)
|
1046
|
+
body = send_request('UpdateScenario', request.serialize)
|
1047
|
+
response = JSON.parse(body)
|
1048
|
+
if response['Response'].key?('Error') == false
|
1049
|
+
model = UpdateScenarioResponse.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
|
+
end
|
1066
|
+
end
|
1067
|
+
end
|
1068
|
+
end
|