tencentcloud-sdk-iecp 1.0.230
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-iecp.rb +11 -0
- data/lib/v20210914/client.rb +1980 -0
- data/lib/v20210914/models.rb +7073 -0
- metadata +66 -0
@@ -0,0 +1,1980 @@
|
|
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 Iecp
|
21
|
+
module V20210914
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2021-09-14'
|
26
|
+
api_endpoint = 'iecp.tencentcloudapi.com'
|
27
|
+
sdk_version = 'IECP_' + 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 ApplyMarketComponent.
|
35
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ApplyMarketComponentRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ApplyMarketComponentResponse`
|
37
|
+
def ApplyMarketComponent(request)
|
38
|
+
body = send_request('ApplyMarketComponent', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = ApplyMarketComponentResponse.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 CreateApplicationVisualization.
|
59
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateApplicationVisualizationRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateApplicationVisualizationResponse`
|
61
|
+
def CreateApplicationVisualization(request)
|
62
|
+
body = send_request('CreateApplicationVisualization', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = CreateApplicationVisualizationResponse.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
|
+
# 创建ConfigMap
|
81
|
+
|
82
|
+
# @param request: Request instance for CreateConfigMap.
|
83
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateConfigMapRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateConfigMapResponse`
|
85
|
+
def CreateConfigMap(request)
|
86
|
+
body = send_request('CreateConfigMap', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = CreateConfigMapResponse.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 CreateEdgeNode.
|
107
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateEdgeNodeRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateEdgeNodeResponse`
|
109
|
+
def CreateEdgeNode(request)
|
110
|
+
body = send_request('CreateEdgeNode', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = CreateEdgeNodeResponse.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
|
+
# 创建边缘单元NodeGroup
|
129
|
+
|
130
|
+
# @param request: Request instance for CreateEdgeNodeGroup.
|
131
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateEdgeNodeGroupRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateEdgeNodeGroupResponse`
|
133
|
+
def CreateEdgeNodeGroup(request)
|
134
|
+
body = send_request('CreateEdgeNodeGroup', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = CreateEdgeNodeGroupResponse.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
|
+
# 创建边缘单元NodeUnit模版
|
153
|
+
|
154
|
+
# @param request: Request instance for CreateEdgeNodeUnitTemplate.
|
155
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateEdgeNodeUnitTemplateRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateEdgeNodeUnitTemplateResponse`
|
157
|
+
def CreateEdgeNodeUnitTemplate(request)
|
158
|
+
body = send_request('CreateEdgeNodeUnitTemplate', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = CreateEdgeNodeUnitTemplateResponse.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 CreateEdgeUnitApplicationVisualization.
|
179
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateEdgeUnitApplicationVisualizationRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateEdgeUnitApplicationVisualizationResponse`
|
181
|
+
def CreateEdgeUnitApplicationVisualization(request)
|
182
|
+
body = send_request('CreateEdgeUnitApplicationVisualization', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = CreateEdgeUnitApplicationVisualizationResponse.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
|
+
# yaml方式创建应用
|
201
|
+
|
202
|
+
# @param request: Request instance for CreateEdgeUnitApplicationYaml.
|
203
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateEdgeUnitApplicationYamlRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateEdgeUnitApplicationYamlResponse`
|
205
|
+
def CreateEdgeUnitApplicationYaml(request)
|
206
|
+
body = send_request('CreateEdgeUnitApplicationYaml', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = CreateEdgeUnitApplicationYamlResponse.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 CreateEdgeUnitCloud.
|
227
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateEdgeUnitCloudRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateEdgeUnitCloudResponse`
|
229
|
+
def CreateEdgeUnitCloud(request)
|
230
|
+
body = send_request('CreateEdgeUnitCloud', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = CreateEdgeUnitCloudResponse.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 CreateNamespace.
|
251
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateNamespaceRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateNamespaceResponse`
|
253
|
+
def CreateNamespace(request)
|
254
|
+
body = send_request('CreateNamespace', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = CreateNamespaceResponse.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
|
+
# 创建Secret
|
273
|
+
|
274
|
+
# @param request: Request instance for CreateSecret.
|
275
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateSecretRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateSecretResponse`
|
277
|
+
def CreateSecret(request)
|
278
|
+
body = send_request('CreateSecret', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = CreateSecretResponse.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
|
+
# 创建或更新边缘单元NodeUnit
|
297
|
+
|
298
|
+
# @param request: Request instance for CreateUpdateNodeUnit.
|
299
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::CreateUpdateNodeUnitRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::CreateUpdateNodeUnitResponse`
|
301
|
+
def CreateUpdateNodeUnit(request)
|
302
|
+
body = send_request('CreateUpdateNodeUnit', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = CreateUpdateNodeUnitResponse.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 DeleteApplications.
|
323
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteApplicationsRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteApplicationsResponse`
|
325
|
+
def DeleteApplications(request)
|
326
|
+
body = send_request('DeleteApplications', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DeleteApplicationsResponse.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
|
+
# 删除ConfigMap
|
345
|
+
|
346
|
+
# @param request: Request instance for DeleteConfigMap.
|
347
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteConfigMapRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteConfigMapResponse`
|
349
|
+
def DeleteConfigMap(request)
|
350
|
+
body = send_request('DeleteConfigMap', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = DeleteConfigMapResponse.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
|
+
# 删除边缘单元NodeGroup
|
369
|
+
|
370
|
+
# @param request: Request instance for DeleteEdgeNodeGroup.
|
371
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeNodeGroupRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeNodeGroupResponse`
|
373
|
+
def DeleteEdgeNodeGroup(request)
|
374
|
+
body = send_request('DeleteEdgeNodeGroup', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = DeleteEdgeNodeGroupResponse.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
|
+
# 删除边缘单元NodeUnit模版
|
393
|
+
|
394
|
+
# @param request: Request instance for DeleteEdgeNodeUnitTemplates.
|
395
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeNodeUnitTemplatesRequest`
|
396
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeNodeUnitTemplatesResponse`
|
397
|
+
def DeleteEdgeNodeUnitTemplates(request)
|
398
|
+
body = send_request('DeleteEdgeNodeUnitTemplates', request.serialize)
|
399
|
+
response = JSON.parse(body)
|
400
|
+
if response['Response'].key?('Error') == false
|
401
|
+
model = DeleteEdgeNodeUnitTemplatesResponse.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 DeleteEdgeNodes.
|
419
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeNodesRequest`
|
420
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeNodesResponse`
|
421
|
+
def DeleteEdgeNodes(request)
|
422
|
+
body = send_request('DeleteEdgeNodes', request.serialize)
|
423
|
+
response = JSON.parse(body)
|
424
|
+
if response['Response'].key?('Error') == false
|
425
|
+
model = DeleteEdgeNodesResponse.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 DeleteEdgeUnitApplications.
|
443
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeUnitApplicationsRequest`
|
444
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeUnitApplicationsResponse`
|
445
|
+
def DeleteEdgeUnitApplications(request)
|
446
|
+
body = send_request('DeleteEdgeUnitApplications', request.serialize)
|
447
|
+
response = JSON.parse(body)
|
448
|
+
if response['Response'].key?('Error') == false
|
449
|
+
model = DeleteEdgeUnitApplicationsResponse.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 DeleteEdgeUnitCloud.
|
467
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeUnitCloudRequest`
|
468
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeUnitCloudResponse`
|
469
|
+
def DeleteEdgeUnitCloud(request)
|
470
|
+
body = send_request('DeleteEdgeUnitCloud', request.serialize)
|
471
|
+
response = JSON.parse(body)
|
472
|
+
if response['Response'].key?('Error') == false
|
473
|
+
model = DeleteEdgeUnitCloudResponse.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
|
+
# 重新部署边缘单元指定Grid下应用
|
489
|
+
|
490
|
+
# @param request: Request instance for DeleteEdgeUnitDeployGridItem.
|
491
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeUnitDeployGridItemRequest`
|
492
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeUnitDeployGridItemResponse`
|
493
|
+
def DeleteEdgeUnitDeployGridItem(request)
|
494
|
+
body = send_request('DeleteEdgeUnitDeployGridItem', request.serialize)
|
495
|
+
response = JSON.parse(body)
|
496
|
+
if response['Response'].key?('Error') == false
|
497
|
+
model = DeleteEdgeUnitDeployGridItemResponse.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
|
+
# 删除指定pod
|
513
|
+
|
514
|
+
# @param request: Request instance for DeleteEdgeUnitPod.
|
515
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeUnitPodRequest`
|
516
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteEdgeUnitPodResponse`
|
517
|
+
def DeleteEdgeUnitPod(request)
|
518
|
+
body = send_request('DeleteEdgeUnitPod', request.serialize)
|
519
|
+
response = JSON.parse(body)
|
520
|
+
if response['Response'].key?('Error') == false
|
521
|
+
model = DeleteEdgeUnitPodResponse.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 DeleteNamespace.
|
539
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteNamespaceRequest`
|
540
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteNamespaceResponse`
|
541
|
+
def DeleteNamespace(request)
|
542
|
+
body = send_request('DeleteNamespace', request.serialize)
|
543
|
+
response = JSON.parse(body)
|
544
|
+
if response['Response'].key?('Error') == false
|
545
|
+
model = DeleteNamespaceResponse.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
|
+
# 删除边缘单元NodeUnit
|
561
|
+
|
562
|
+
# @param request: Request instance for DeleteNodeUnit.
|
563
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteNodeUnitRequest`
|
564
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteNodeUnitResponse`
|
565
|
+
def DeleteNodeUnit(request)
|
566
|
+
body = send_request('DeleteNodeUnit', request.serialize)
|
567
|
+
response = JSON.parse(body)
|
568
|
+
if response['Response'].key?('Error') == false
|
569
|
+
model = DeleteNodeUnitResponse.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
|
+
# 删除Secret
|
585
|
+
|
586
|
+
# @param request: Request instance for DeleteSecret.
|
587
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DeleteSecretRequest`
|
588
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DeleteSecretResponse`
|
589
|
+
def DeleteSecret(request)
|
590
|
+
body = send_request('DeleteSecret', request.serialize)
|
591
|
+
response = JSON.parse(body)
|
592
|
+
if response['Response'].key?('Error') == false
|
593
|
+
model = DeleteSecretResponse.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 DescribeApplicationVisualization.
|
611
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeApplicationVisualizationRequest`
|
612
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeApplicationVisualizationResponse`
|
613
|
+
def DescribeApplicationVisualization(request)
|
614
|
+
body = send_request('DescribeApplicationVisualization', request.serialize)
|
615
|
+
response = JSON.parse(body)
|
616
|
+
if response['Response'].key?('Error') == false
|
617
|
+
model = DescribeApplicationVisualizationResponse.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
|
+
# 查询应用模板Yaml
|
633
|
+
|
634
|
+
# @param request: Request instance for DescribeApplicationYaml.
|
635
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeApplicationYamlRequest`
|
636
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeApplicationYamlResponse`
|
637
|
+
def DescribeApplicationYaml(request)
|
638
|
+
body = send_request('DescribeApplicationYaml', request.serialize)
|
639
|
+
response = JSON.parse(body)
|
640
|
+
if response['Response'].key?('Error') == false
|
641
|
+
model = DescribeApplicationYamlResponse.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
|
+
# 检查应用模板的Yaml配置
|
657
|
+
|
658
|
+
# @param request: Request instance for DescribeApplicationYamlError.
|
659
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeApplicationYamlErrorRequest`
|
660
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeApplicationYamlErrorResponse`
|
661
|
+
def DescribeApplicationYamlError(request)
|
662
|
+
body = send_request('DescribeApplicationYamlError', request.serialize)
|
663
|
+
response = JSON.parse(body)
|
664
|
+
if response['Response'].key?('Error') == false
|
665
|
+
model = DescribeApplicationYamlErrorResponse.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 DescribeApplications.
|
683
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeApplicationsRequest`
|
684
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeApplicationsResponse`
|
685
|
+
def DescribeApplications(request)
|
686
|
+
body = send_request('DescribeApplications', request.serialize)
|
687
|
+
response = JSON.parse(body)
|
688
|
+
if response['Response'].key?('Error') == false
|
689
|
+
model = DescribeApplicationsResponse.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
|
+
# 获取ConfigMap详情
|
705
|
+
|
706
|
+
# @param request: Request instance for DescribeConfigMap.
|
707
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeConfigMapRequest`
|
708
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeConfigMapResponse`
|
709
|
+
def DescribeConfigMap(request)
|
710
|
+
body = send_request('DescribeConfigMap', request.serialize)
|
711
|
+
response = JSON.parse(body)
|
712
|
+
if response['Response'].key?('Error') == false
|
713
|
+
model = DescribeConfigMapResponse.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
|
+
# 校验ConfigMap的Yaml语法
|
729
|
+
|
730
|
+
# @param request: Request instance for DescribeConfigMapYamlError.
|
731
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeConfigMapYamlErrorRequest`
|
732
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeConfigMapYamlErrorResponse`
|
733
|
+
def DescribeConfigMapYamlError(request)
|
734
|
+
body = send_request('DescribeConfigMapYamlError', request.serialize)
|
735
|
+
response = JSON.parse(body)
|
736
|
+
if response['Response'].key?('Error') == false
|
737
|
+
model = DescribeConfigMapYamlErrorResponse.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
|
+
# 获取ConfigMap列表
|
753
|
+
|
754
|
+
# @param request: Request instance for DescribeConfigMaps.
|
755
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeConfigMapsRequest`
|
756
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeConfigMapsResponse`
|
757
|
+
def DescribeConfigMaps(request)
|
758
|
+
body = send_request('DescribeConfigMaps', request.serialize)
|
759
|
+
response = JSON.parse(body)
|
760
|
+
if response['Response'].key?('Error') == false
|
761
|
+
model = DescribeConfigMapsResponse.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 DescribeEdgeAgentNodeInstaller.
|
779
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeAgentNodeInstallerRequest`
|
780
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeAgentNodeInstallerResponse`
|
781
|
+
def DescribeEdgeAgentNodeInstaller(request)
|
782
|
+
body = send_request('DescribeEdgeAgentNodeInstaller', request.serialize)
|
783
|
+
response = JSON.parse(body)
|
784
|
+
if response['Response'].key?('Error') == false
|
785
|
+
model = DescribeEdgeAgentNodeInstallerResponse.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
|
+
# 获取边缘集群默认VPC信息
|
801
|
+
|
802
|
+
# @param request: Request instance for DescribeEdgeDefaultVpc.
|
803
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeDefaultVpcRequest`
|
804
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeDefaultVpcResponse`
|
805
|
+
def DescribeEdgeDefaultVpc(request)
|
806
|
+
body = send_request('DescribeEdgeDefaultVpc', request.serialize)
|
807
|
+
response = JSON.parse(body)
|
808
|
+
if response['Response'].key?('Error') == false
|
809
|
+
model = DescribeEdgeDefaultVpcResponse.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 DescribeEdgeNode.
|
827
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeNodeRequest`
|
828
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeNodeResponse`
|
829
|
+
def DescribeEdgeNode(request)
|
830
|
+
body = send_request('DescribeEdgeNode', request.serialize)
|
831
|
+
response = JSON.parse(body)
|
832
|
+
if response['Response'].key?('Error') == false
|
833
|
+
model = DescribeEdgeNodeResponse.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
|
+
# 查询节点Pod内的容器列表
|
849
|
+
|
850
|
+
# @param request: Request instance for DescribeEdgeNodePodContainers.
|
851
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeNodePodContainersRequest`
|
852
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeNodePodContainersResponse`
|
853
|
+
def DescribeEdgeNodePodContainers(request)
|
854
|
+
body = send_request('DescribeEdgeNodePodContainers', request.serialize)
|
855
|
+
response = JSON.parse(body)
|
856
|
+
if response['Response'].key?('Error') == false
|
857
|
+
model = DescribeEdgeNodePodContainersResponse.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
|
+
# 查询节点Pod列表
|
873
|
+
|
874
|
+
# @param request: Request instance for DescribeEdgeNodePods.
|
875
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeNodePodsRequest`
|
876
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeNodePodsResponse`
|
877
|
+
def DescribeEdgeNodePods(request)
|
878
|
+
body = send_request('DescribeEdgeNodePods', request.serialize)
|
879
|
+
response = JSON.parse(body)
|
880
|
+
if response['Response'].key?('Error') == false
|
881
|
+
model = DescribeEdgeNodePodsResponse.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 DescribeEdgeNodes.
|
899
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeNodesRequest`
|
900
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeNodesResponse`
|
901
|
+
def DescribeEdgeNodes(request)
|
902
|
+
body = send_request('DescribeEdgeNodes', request.serialize)
|
903
|
+
response = JSON.parse(body)
|
904
|
+
if response['Response'].key?('Error') == false
|
905
|
+
model = DescribeEdgeNodesResponse.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 DescribeEdgeOperationLogs.
|
923
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeOperationLogsRequest`
|
924
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeOperationLogsResponse`
|
925
|
+
def DescribeEdgeOperationLogs(request)
|
926
|
+
body = send_request('DescribeEdgeOperationLogs', request.serialize)
|
927
|
+
response = JSON.parse(body)
|
928
|
+
if response['Response'].key?('Error') == false
|
929
|
+
model = DescribeEdgeOperationLogsResponse.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
|
+
# 查询边缘单元Pod
|
945
|
+
|
946
|
+
# @param request: Request instance for DescribeEdgePod.
|
947
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgePodRequest`
|
948
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgePodResponse`
|
949
|
+
def DescribeEdgePod(request)
|
950
|
+
body = send_request('DescribeEdgePod', request.serialize)
|
951
|
+
response = JSON.parse(body)
|
952
|
+
if response['Response'].key?('Error') == false
|
953
|
+
model = DescribeEdgePodResponse.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 DescribeEdgeUnitApplicationEvents.
|
971
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationEventsRequest`
|
972
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationEventsResponse`
|
973
|
+
def DescribeEdgeUnitApplicationEvents(request)
|
974
|
+
body = send_request('DescribeEdgeUnitApplicationEvents', request.serialize)
|
975
|
+
response = JSON.parse(body)
|
976
|
+
if response['Response'].key?('Error') == false
|
977
|
+
model = DescribeEdgeUnitApplicationEventsResponse.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 DescribeEdgeUnitApplicationLogs.
|
995
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationLogsRequest`
|
996
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationLogsResponse`
|
997
|
+
def DescribeEdgeUnitApplicationLogs(request)
|
998
|
+
body = send_request('DescribeEdgeUnitApplicationLogs', request.serialize)
|
999
|
+
response = JSON.parse(body)
|
1000
|
+
if response['Response'].key?('Error') == false
|
1001
|
+
model = DescribeEdgeUnitApplicationLogsResponse.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 DescribeEdgeUnitApplicationPodContainers.
|
1019
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationPodContainersRequest`
|
1020
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationPodContainersResponse`
|
1021
|
+
def DescribeEdgeUnitApplicationPodContainers(request)
|
1022
|
+
body = send_request('DescribeEdgeUnitApplicationPodContainers', request.serialize)
|
1023
|
+
response = JSON.parse(body)
|
1024
|
+
if response['Response'].key?('Error') == false
|
1025
|
+
model = DescribeEdgeUnitApplicationPodContainersResponse.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
|
+
# 获取应用下Pod状态
|
1041
|
+
|
1042
|
+
# @param request: Request instance for DescribeEdgeUnitApplicationPods.
|
1043
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationPodsRequest`
|
1044
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationPodsResponse`
|
1045
|
+
def DescribeEdgeUnitApplicationPods(request)
|
1046
|
+
body = send_request('DescribeEdgeUnitApplicationPods', request.serialize)
|
1047
|
+
response = JSON.parse(body)
|
1048
|
+
if response['Response'].key?('Error') == false
|
1049
|
+
model = DescribeEdgeUnitApplicationPodsResponse.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 DescribeEdgeUnitApplicationVisualization.
|
1067
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationVisualizationRequest`
|
1068
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationVisualizationResponse`
|
1069
|
+
def DescribeEdgeUnitApplicationVisualization(request)
|
1070
|
+
body = send_request('DescribeEdgeUnitApplicationVisualization', request.serialize)
|
1071
|
+
response = JSON.parse(body)
|
1072
|
+
if response['Response'].key?('Error') == false
|
1073
|
+
model = DescribeEdgeUnitApplicationVisualizationResponse.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
|
+
# 获取应用的Yaml配置
|
1089
|
+
|
1090
|
+
# @param request: Request instance for DescribeEdgeUnitApplicationYaml.
|
1091
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationYamlRequest`
|
1092
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationYamlResponse`
|
1093
|
+
def DescribeEdgeUnitApplicationYaml(request)
|
1094
|
+
body = send_request('DescribeEdgeUnitApplicationYaml', request.serialize)
|
1095
|
+
response = JSON.parse(body)
|
1096
|
+
if response['Response'].key?('Error') == false
|
1097
|
+
model = DescribeEdgeUnitApplicationYamlResponse.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
|
+
# 检查单元应用的Yaml配置
|
1113
|
+
|
1114
|
+
# @param request: Request instance for DescribeEdgeUnitApplicationYamlError.
|
1115
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationYamlErrorRequest`
|
1116
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationYamlErrorResponse`
|
1117
|
+
def DescribeEdgeUnitApplicationYamlError(request)
|
1118
|
+
body = send_request('DescribeEdgeUnitApplicationYamlError', request.serialize)
|
1119
|
+
response = JSON.parse(body)
|
1120
|
+
if response['Response'].key?('Error') == false
|
1121
|
+
model = DescribeEdgeUnitApplicationYamlErrorResponse.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 DescribeEdgeUnitApplications.
|
1139
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationsRequest`
|
1140
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitApplicationsResponse`
|
1141
|
+
def DescribeEdgeUnitApplications(request)
|
1142
|
+
body = send_request('DescribeEdgeUnitApplications', request.serialize)
|
1143
|
+
response = JSON.parse(body)
|
1144
|
+
if response['Response'].key?('Error') == false
|
1145
|
+
model = DescribeEdgeUnitApplicationsResponse.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 DescribeEdgeUnitCloud.
|
1163
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitCloudRequest`
|
1164
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitCloudResponse`
|
1165
|
+
def DescribeEdgeUnitCloud(request)
|
1166
|
+
body = send_request('DescribeEdgeUnitCloud', request.serialize)
|
1167
|
+
response = JSON.parse(body)
|
1168
|
+
if response['Response'].key?('Error') == false
|
1169
|
+
model = DescribeEdgeUnitCloudResponse.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
|
+
# 查询边缘单元Grid列表
|
1185
|
+
|
1186
|
+
# @param request: Request instance for DescribeEdgeUnitDeployGrid.
|
1187
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitDeployGridRequest`
|
1188
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitDeployGridResponse`
|
1189
|
+
def DescribeEdgeUnitDeployGrid(request)
|
1190
|
+
body = send_request('DescribeEdgeUnitDeployGrid', request.serialize)
|
1191
|
+
response = JSON.parse(body)
|
1192
|
+
if response['Response'].key?('Error') == false
|
1193
|
+
model = DescribeEdgeUnitDeployGridResponse.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
|
+
# 查询边缘单元指定Grid下的部署应用列表
|
1209
|
+
|
1210
|
+
# @param request: Request instance for DescribeEdgeUnitDeployGridItem.
|
1211
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitDeployGridItemRequest`
|
1212
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitDeployGridItemResponse`
|
1213
|
+
def DescribeEdgeUnitDeployGridItem(request)
|
1214
|
+
body = send_request('DescribeEdgeUnitDeployGridItem', request.serialize)
|
1215
|
+
response = JSON.parse(body)
|
1216
|
+
if response['Response'].key?('Error') == false
|
1217
|
+
model = DescribeEdgeUnitDeployGridItemResponse.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
|
+
# 查询指定Grid下应用的Yaml
|
1233
|
+
|
1234
|
+
# @param request: Request instance for DescribeEdgeUnitDeployGridItemYaml.
|
1235
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitDeployGridItemYamlRequest`
|
1236
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitDeployGridItemYamlResponse`
|
1237
|
+
def DescribeEdgeUnitDeployGridItemYaml(request)
|
1238
|
+
body = send_request('DescribeEdgeUnitDeployGridItemYaml', request.serialize)
|
1239
|
+
response = JSON.parse(body)
|
1240
|
+
if response['Response'].key?('Error') == false
|
1241
|
+
model = DescribeEdgeUnitDeployGridItemYamlResponse.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 DescribeEdgeUnitExtra.
|
1259
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitExtraRequest`
|
1260
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitExtraResponse`
|
1261
|
+
def DescribeEdgeUnitExtra(request)
|
1262
|
+
body = send_request('DescribeEdgeUnitExtra', request.serialize)
|
1263
|
+
response = JSON.parse(body)
|
1264
|
+
if response['Response'].key?('Error') == false
|
1265
|
+
model = DescribeEdgeUnitExtraResponse.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
|
+
# 查询边缘单元Grid事件列表
|
1281
|
+
|
1282
|
+
# @param request: Request instance for DescribeEdgeUnitGridEvents.
|
1283
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitGridEventsRequest`
|
1284
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitGridEventsResponse`
|
1285
|
+
def DescribeEdgeUnitGridEvents(request)
|
1286
|
+
body = send_request('DescribeEdgeUnitGridEvents', request.serialize)
|
1287
|
+
response = JSON.parse(body)
|
1288
|
+
if response['Response'].key?('Error') == false
|
1289
|
+
model = DescribeEdgeUnitGridEventsResponse.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
|
+
# 查询边缘单元Grid的Pod列表
|
1305
|
+
|
1306
|
+
# @param request: Request instance for DescribeEdgeUnitGridPods.
|
1307
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitGridPodsRequest`
|
1308
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitGridPodsResponse`
|
1309
|
+
def DescribeEdgeUnitGridPods(request)
|
1310
|
+
body = send_request('DescribeEdgeUnitGridPods', request.serialize)
|
1311
|
+
response = JSON.parse(body)
|
1312
|
+
if response['Response'].key?('Error') == false
|
1313
|
+
model = DescribeEdgeUnitGridPodsResponse.new
|
1314
|
+
model.deserialize(response['Response'])
|
1315
|
+
model
|
1316
|
+
else
|
1317
|
+
code = response['Response']['Error']['Code']
|
1318
|
+
message = response['Response']['Error']['Message']
|
1319
|
+
reqid = response['Response']['RequestId']
|
1320
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1321
|
+
end
|
1322
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1323
|
+
raise e
|
1324
|
+
rescue StandardError => e
|
1325
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
# 查询边缘集群监控状态
|
1329
|
+
|
1330
|
+
# @param request: Request instance for DescribeEdgeUnitMonitorStatus.
|
1331
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitMonitorStatusRequest`
|
1332
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitMonitorStatusResponse`
|
1333
|
+
def DescribeEdgeUnitMonitorStatus(request)
|
1334
|
+
body = send_request('DescribeEdgeUnitMonitorStatus', request.serialize)
|
1335
|
+
response = JSON.parse(body)
|
1336
|
+
if response['Response'].key?('Error') == false
|
1337
|
+
model = DescribeEdgeUnitMonitorStatusResponse.new
|
1338
|
+
model.deserialize(response['Response'])
|
1339
|
+
model
|
1340
|
+
else
|
1341
|
+
code = response['Response']['Error']['Code']
|
1342
|
+
message = response['Response']['Error']['Message']
|
1343
|
+
reqid = response['Response']['RequestId']
|
1344
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1345
|
+
end
|
1346
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1347
|
+
raise e
|
1348
|
+
rescue StandardError => e
|
1349
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
# 查询边缘集群NodeGroup
|
1353
|
+
|
1354
|
+
# @param request: Request instance for DescribeEdgeUnitNodeGroup.
|
1355
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitNodeGroupRequest`
|
1356
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitNodeGroupResponse`
|
1357
|
+
def DescribeEdgeUnitNodeGroup(request)
|
1358
|
+
body = send_request('DescribeEdgeUnitNodeGroup', request.serialize)
|
1359
|
+
response = JSON.parse(body)
|
1360
|
+
if response['Response'].key?('Error') == false
|
1361
|
+
model = DescribeEdgeUnitNodeGroupResponse.new
|
1362
|
+
model.deserialize(response['Response'])
|
1363
|
+
model
|
1364
|
+
else
|
1365
|
+
code = response['Response']['Error']['Code']
|
1366
|
+
message = response['Response']['Error']['Message']
|
1367
|
+
reqid = response['Response']['RequestId']
|
1368
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1369
|
+
end
|
1370
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1371
|
+
raise e
|
1372
|
+
rescue StandardError => e
|
1373
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
# 查询边缘单元EdgeUnit模版列表
|
1377
|
+
|
1378
|
+
# @param request: Request instance for DescribeEdgeUnitNodeUnitTemplates.
|
1379
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitNodeUnitTemplatesRequest`
|
1380
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitNodeUnitTemplatesResponse`
|
1381
|
+
def DescribeEdgeUnitNodeUnitTemplates(request)
|
1382
|
+
body = send_request('DescribeEdgeUnitNodeUnitTemplates', request.serialize)
|
1383
|
+
response = JSON.parse(body)
|
1384
|
+
if response['Response'].key?('Error') == false
|
1385
|
+
model = DescribeEdgeUnitNodeUnitTemplatesResponse.new
|
1386
|
+
model.deserialize(response['Response'])
|
1387
|
+
model
|
1388
|
+
else
|
1389
|
+
code = response['Response']['Error']['Code']
|
1390
|
+
message = response['Response']['Error']['Message']
|
1391
|
+
reqid = response['Response']['RequestId']
|
1392
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1393
|
+
end
|
1394
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1395
|
+
raise e
|
1396
|
+
rescue StandardError => e
|
1397
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
# 查询边缘单元列表
|
1401
|
+
|
1402
|
+
# @param request: Request instance for DescribeEdgeUnitsCloud.
|
1403
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitsCloudRequest`
|
1404
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeEdgeUnitsCloudResponse`
|
1405
|
+
def DescribeEdgeUnitsCloud(request)
|
1406
|
+
body = send_request('DescribeEdgeUnitsCloud', request.serialize)
|
1407
|
+
response = JSON.parse(body)
|
1408
|
+
if response['Response'].key?('Error') == false
|
1409
|
+
model = DescribeEdgeUnitsCloudResponse.new
|
1410
|
+
model.deserialize(response['Response'])
|
1411
|
+
model
|
1412
|
+
else
|
1413
|
+
code = response['Response']['Error']['Code']
|
1414
|
+
message = response['Response']['Error']['Message']
|
1415
|
+
reqid = response['Response']['RequestId']
|
1416
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1417
|
+
end
|
1418
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1419
|
+
raise e
|
1420
|
+
rescue StandardError => e
|
1421
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
# 查询边缘单元监控数据
|
1425
|
+
|
1426
|
+
# @param request: Request instance for DescribeMonitorMetrics.
|
1427
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeMonitorMetricsRequest`
|
1428
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeMonitorMetricsResponse`
|
1429
|
+
def DescribeMonitorMetrics(request)
|
1430
|
+
body = send_request('DescribeMonitorMetrics', request.serialize)
|
1431
|
+
response = JSON.parse(body)
|
1432
|
+
if response['Response'].key?('Error') == false
|
1433
|
+
model = DescribeMonitorMetricsResponse.new
|
1434
|
+
model.deserialize(response['Response'])
|
1435
|
+
model
|
1436
|
+
else
|
1437
|
+
code = response['Response']['Error']['Code']
|
1438
|
+
message = response['Response']['Error']['Message']
|
1439
|
+
reqid = response['Response']['RequestId']
|
1440
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1441
|
+
end
|
1442
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1443
|
+
raise e
|
1444
|
+
rescue StandardError => e
|
1445
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
# 获取命名空间
|
1449
|
+
|
1450
|
+
# @param request: Request instance for DescribeNamespace.
|
1451
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeNamespaceRequest`
|
1452
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeNamespaceResponse`
|
1453
|
+
def DescribeNamespace(request)
|
1454
|
+
body = send_request('DescribeNamespace', request.serialize)
|
1455
|
+
response = JSON.parse(body)
|
1456
|
+
if response['Response'].key?('Error') == false
|
1457
|
+
model = DescribeNamespaceResponse.new
|
1458
|
+
model.deserialize(response['Response'])
|
1459
|
+
model
|
1460
|
+
else
|
1461
|
+
code = response['Response']['Error']['Code']
|
1462
|
+
message = response['Response']['Error']['Message']
|
1463
|
+
reqid = response['Response']['RequestId']
|
1464
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1465
|
+
end
|
1466
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1467
|
+
raise e
|
1468
|
+
rescue StandardError => e
|
1469
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
# 获取命名空间下的资源信息
|
1473
|
+
|
1474
|
+
# @param request: Request instance for DescribeNamespaceResources.
|
1475
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeNamespaceResourcesRequest`
|
1476
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeNamespaceResourcesResponse`
|
1477
|
+
def DescribeNamespaceResources(request)
|
1478
|
+
body = send_request('DescribeNamespaceResources', request.serialize)
|
1479
|
+
response = JSON.parse(body)
|
1480
|
+
if response['Response'].key?('Error') == false
|
1481
|
+
model = DescribeNamespaceResourcesResponse.new
|
1482
|
+
model.deserialize(response['Response'])
|
1483
|
+
model
|
1484
|
+
else
|
1485
|
+
code = response['Response']['Error']['Code']
|
1486
|
+
message = response['Response']['Error']['Message']
|
1487
|
+
reqid = response['Response']['RequestId']
|
1488
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1489
|
+
end
|
1490
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1491
|
+
raise e
|
1492
|
+
rescue StandardError => e
|
1493
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
# 获取命名空间列表信息
|
1497
|
+
|
1498
|
+
# @param request: Request instance for DescribeNamespaces.
|
1499
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeNamespacesRequest`
|
1500
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeNamespacesResponse`
|
1501
|
+
def DescribeNamespaces(request)
|
1502
|
+
body = send_request('DescribeNamespaces', request.serialize)
|
1503
|
+
response = JSON.parse(body)
|
1504
|
+
if response['Response'].key?('Error') == false
|
1505
|
+
model = DescribeNamespacesResponse.new
|
1506
|
+
model.deserialize(response['Response'])
|
1507
|
+
model
|
1508
|
+
else
|
1509
|
+
code = response['Response']['Error']['Code']
|
1510
|
+
message = response['Response']['Error']['Message']
|
1511
|
+
reqid = response['Response']['RequestId']
|
1512
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1513
|
+
end
|
1514
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1515
|
+
raise e
|
1516
|
+
rescue StandardError => e
|
1517
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1518
|
+
end
|
1519
|
+
|
1520
|
+
# 查询边缘单元NodeUnit列表
|
1521
|
+
|
1522
|
+
# @param request: Request instance for DescribeNodeUnit.
|
1523
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeNodeUnitRequest`
|
1524
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeNodeUnitResponse`
|
1525
|
+
def DescribeNodeUnit(request)
|
1526
|
+
body = send_request('DescribeNodeUnit', request.serialize)
|
1527
|
+
response = JSON.parse(body)
|
1528
|
+
if response['Response'].key?('Error') == false
|
1529
|
+
model = DescribeNodeUnitResponse.new
|
1530
|
+
model.deserialize(response['Response'])
|
1531
|
+
model
|
1532
|
+
else
|
1533
|
+
code = response['Response']['Error']['Code']
|
1534
|
+
message = response['Response']['Error']['Message']
|
1535
|
+
reqid = response['Response']['RequestId']
|
1536
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1537
|
+
end
|
1538
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1539
|
+
raise e
|
1540
|
+
rescue StandardError => e
|
1541
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
# 查询指定NodeGroup下NodeUnit模版列表
|
1545
|
+
|
1546
|
+
# @param request: Request instance for DescribeNodeUnitTemplateOnNodeGroup.
|
1547
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeNodeUnitTemplateOnNodeGroupRequest`
|
1548
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeNodeUnitTemplateOnNodeGroupResponse`
|
1549
|
+
def DescribeNodeUnitTemplateOnNodeGroup(request)
|
1550
|
+
body = send_request('DescribeNodeUnitTemplateOnNodeGroup', request.serialize)
|
1551
|
+
response = JSON.parse(body)
|
1552
|
+
if response['Response'].key?('Error') == false
|
1553
|
+
model = DescribeNodeUnitTemplateOnNodeGroupResponse.new
|
1554
|
+
model.deserialize(response['Response'])
|
1555
|
+
model
|
1556
|
+
else
|
1557
|
+
code = response['Response']['Error']['Code']
|
1558
|
+
message = response['Response']['Error']['Message']
|
1559
|
+
reqid = response['Response']['RequestId']
|
1560
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1561
|
+
end
|
1562
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1563
|
+
raise e
|
1564
|
+
rescue StandardError => e
|
1565
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1566
|
+
end
|
1567
|
+
|
1568
|
+
# 获取Secret详情
|
1569
|
+
|
1570
|
+
# @param request: Request instance for DescribeSecret.
|
1571
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeSecretRequest`
|
1572
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeSecretResponse`
|
1573
|
+
def DescribeSecret(request)
|
1574
|
+
body = send_request('DescribeSecret', request.serialize)
|
1575
|
+
response = JSON.parse(body)
|
1576
|
+
if response['Response'].key?('Error') == false
|
1577
|
+
model = DescribeSecretResponse.new
|
1578
|
+
model.deserialize(response['Response'])
|
1579
|
+
model
|
1580
|
+
else
|
1581
|
+
code = response['Response']['Error']['Code']
|
1582
|
+
message = response['Response']['Error']['Message']
|
1583
|
+
reqid = response['Response']['RequestId']
|
1584
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1585
|
+
end
|
1586
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1587
|
+
raise e
|
1588
|
+
rescue StandardError => e
|
1589
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1590
|
+
end
|
1591
|
+
|
1592
|
+
# 校验Secret的Yaml语法
|
1593
|
+
|
1594
|
+
# @param request: Request instance for DescribeSecretYamlError.
|
1595
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeSecretYamlErrorRequest`
|
1596
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeSecretYamlErrorResponse`
|
1597
|
+
def DescribeSecretYamlError(request)
|
1598
|
+
body = send_request('DescribeSecretYamlError', request.serialize)
|
1599
|
+
response = JSON.parse(body)
|
1600
|
+
if response['Response'].key?('Error') == false
|
1601
|
+
model = DescribeSecretYamlErrorResponse.new
|
1602
|
+
model.deserialize(response['Response'])
|
1603
|
+
model
|
1604
|
+
else
|
1605
|
+
code = response['Response']['Error']['Code']
|
1606
|
+
message = response['Response']['Error']['Message']
|
1607
|
+
reqid = response['Response']['RequestId']
|
1608
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1609
|
+
end
|
1610
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1611
|
+
raise e
|
1612
|
+
rescue StandardError => e
|
1613
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1614
|
+
end
|
1615
|
+
|
1616
|
+
# 获取Secrets列表
|
1617
|
+
|
1618
|
+
# @param request: Request instance for DescribeSecrets.
|
1619
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::DescribeSecretsRequest`
|
1620
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::DescribeSecretsResponse`
|
1621
|
+
def DescribeSecrets(request)
|
1622
|
+
body = send_request('DescribeSecrets', request.serialize)
|
1623
|
+
response = JSON.parse(body)
|
1624
|
+
if response['Response'].key?('Error') == false
|
1625
|
+
model = DescribeSecretsResponse.new
|
1626
|
+
model.deserialize(response['Response'])
|
1627
|
+
model
|
1628
|
+
else
|
1629
|
+
code = response['Response']['Error']['Code']
|
1630
|
+
message = response['Response']['Error']['Message']
|
1631
|
+
reqid = response['Response']['RequestId']
|
1632
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1633
|
+
end
|
1634
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1635
|
+
raise e
|
1636
|
+
rescue StandardError => e
|
1637
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1638
|
+
end
|
1639
|
+
|
1640
|
+
# 获取组件市场的组件信息
|
1641
|
+
|
1642
|
+
# @param request: Request instance for GetMarketComponent.
|
1643
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::GetMarketComponentRequest`
|
1644
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::GetMarketComponentResponse`
|
1645
|
+
def GetMarketComponent(request)
|
1646
|
+
body = send_request('GetMarketComponent', request.serialize)
|
1647
|
+
response = JSON.parse(body)
|
1648
|
+
if response['Response'].key?('Error') == false
|
1649
|
+
model = GetMarketComponentResponse.new
|
1650
|
+
model.deserialize(response['Response'])
|
1651
|
+
model
|
1652
|
+
else
|
1653
|
+
code = response['Response']['Error']['Code']
|
1654
|
+
message = response['Response']['Error']['Message']
|
1655
|
+
reqid = response['Response']['RequestId']
|
1656
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1657
|
+
end
|
1658
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1659
|
+
raise e
|
1660
|
+
rescue StandardError => e
|
1661
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
# 获取组件市场组件列表
|
1665
|
+
|
1666
|
+
# @param request: Request instance for GetMarketComponentList.
|
1667
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::GetMarketComponentListRequest`
|
1668
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::GetMarketComponentListResponse`
|
1669
|
+
def GetMarketComponentList(request)
|
1670
|
+
body = send_request('GetMarketComponentList', request.serialize)
|
1671
|
+
response = JSON.parse(body)
|
1672
|
+
if response['Response'].key?('Error') == false
|
1673
|
+
model = GetMarketComponentListResponse.new
|
1674
|
+
model.deserialize(response['Response'])
|
1675
|
+
model
|
1676
|
+
else
|
1677
|
+
code = response['Response']['Error']['Code']
|
1678
|
+
message = response['Response']['Error']['Message']
|
1679
|
+
reqid = response['Response']['RequestId']
|
1680
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1681
|
+
end
|
1682
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1683
|
+
raise e
|
1684
|
+
rescue StandardError => e
|
1685
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
# 修改应用模板基本信息
|
1689
|
+
|
1690
|
+
# @param request: Request instance for ModifyApplicationBasicInfo.
|
1691
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyApplicationBasicInfoRequest`
|
1692
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyApplicationBasicInfoResponse`
|
1693
|
+
def ModifyApplicationBasicInfo(request)
|
1694
|
+
body = send_request('ModifyApplicationBasicInfo', request.serialize)
|
1695
|
+
response = JSON.parse(body)
|
1696
|
+
if response['Response'].key?('Error') == false
|
1697
|
+
model = ModifyApplicationBasicInfoResponse.new
|
1698
|
+
model.deserialize(response['Response'])
|
1699
|
+
model
|
1700
|
+
else
|
1701
|
+
code = response['Response']['Error']['Code']
|
1702
|
+
message = response['Response']['Error']['Message']
|
1703
|
+
reqid = response['Response']['RequestId']
|
1704
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1705
|
+
end
|
1706
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1707
|
+
raise e
|
1708
|
+
rescue StandardError => e
|
1709
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1710
|
+
end
|
1711
|
+
|
1712
|
+
# 修改应用模板配置
|
1713
|
+
|
1714
|
+
# @param request: Request instance for ModifyApplicationVisualization.
|
1715
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyApplicationVisualizationRequest`
|
1716
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyApplicationVisualizationResponse`
|
1717
|
+
def ModifyApplicationVisualization(request)
|
1718
|
+
body = send_request('ModifyApplicationVisualization', request.serialize)
|
1719
|
+
response = JSON.parse(body)
|
1720
|
+
if response['Response'].key?('Error') == false
|
1721
|
+
model = ModifyApplicationVisualizationResponse.new
|
1722
|
+
model.deserialize(response['Response'])
|
1723
|
+
model
|
1724
|
+
else
|
1725
|
+
code = response['Response']['Error']['Code']
|
1726
|
+
message = response['Response']['Error']['Message']
|
1727
|
+
reqid = response['Response']['RequestId']
|
1728
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1729
|
+
end
|
1730
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1731
|
+
raise e
|
1732
|
+
rescue StandardError => e
|
1733
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1734
|
+
end
|
1735
|
+
|
1736
|
+
# 修改ConfigMap
|
1737
|
+
|
1738
|
+
# @param request: Request instance for ModifyConfigMap.
|
1739
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyConfigMapRequest`
|
1740
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyConfigMapResponse`
|
1741
|
+
def ModifyConfigMap(request)
|
1742
|
+
body = send_request('ModifyConfigMap', request.serialize)
|
1743
|
+
response = JSON.parse(body)
|
1744
|
+
if response['Response'].key?('Error') == false
|
1745
|
+
model = ModifyConfigMapResponse.new
|
1746
|
+
model.deserialize(response['Response'])
|
1747
|
+
model
|
1748
|
+
else
|
1749
|
+
code = response['Response']['Error']['Code']
|
1750
|
+
message = response['Response']['Error']['Message']
|
1751
|
+
reqid = response['Response']['RequestId']
|
1752
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1753
|
+
end
|
1754
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1755
|
+
raise e
|
1756
|
+
rescue StandardError => e
|
1757
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
# 编辑边缘节点标签
|
1761
|
+
|
1762
|
+
# @param request: Request instance for ModifyEdgeNodeLabels.
|
1763
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeNodeLabelsRequest`
|
1764
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeNodeLabelsResponse`
|
1765
|
+
def ModifyEdgeNodeLabels(request)
|
1766
|
+
body = send_request('ModifyEdgeNodeLabels', request.serialize)
|
1767
|
+
response = JSON.parse(body)
|
1768
|
+
if response['Response'].key?('Error') == false
|
1769
|
+
model = ModifyEdgeNodeLabelsResponse.new
|
1770
|
+
model.deserialize(response['Response'])
|
1771
|
+
model
|
1772
|
+
else
|
1773
|
+
code = response['Response']['Error']['Code']
|
1774
|
+
message = response['Response']['Error']['Message']
|
1775
|
+
reqid = response['Response']['RequestId']
|
1776
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1777
|
+
end
|
1778
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1779
|
+
raise e
|
1780
|
+
rescue StandardError => e
|
1781
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1782
|
+
end
|
1783
|
+
|
1784
|
+
# 修改边缘集群
|
1785
|
+
|
1786
|
+
# @param request: Request instance for ModifyEdgeUnit.
|
1787
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitRequest`
|
1788
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitResponse`
|
1789
|
+
def ModifyEdgeUnit(request)
|
1790
|
+
body = send_request('ModifyEdgeUnit', request.serialize)
|
1791
|
+
response = JSON.parse(body)
|
1792
|
+
if response['Response'].key?('Error') == false
|
1793
|
+
model = ModifyEdgeUnitResponse.new
|
1794
|
+
model.deserialize(response['Response'])
|
1795
|
+
model
|
1796
|
+
else
|
1797
|
+
code = response['Response']['Error']['Code']
|
1798
|
+
message = response['Response']['Error']['Message']
|
1799
|
+
reqid = response['Response']['RequestId']
|
1800
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1801
|
+
end
|
1802
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1803
|
+
raise e
|
1804
|
+
rescue StandardError => e
|
1805
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1806
|
+
end
|
1807
|
+
|
1808
|
+
# 修改单元应用基本信息
|
1809
|
+
|
1810
|
+
# @param request: Request instance for ModifyEdgeUnitApplicationBasicInfo.
|
1811
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitApplicationBasicInfoRequest`
|
1812
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitApplicationBasicInfoResponse`
|
1813
|
+
def ModifyEdgeUnitApplicationBasicInfo(request)
|
1814
|
+
body = send_request('ModifyEdgeUnitApplicationBasicInfo', request.serialize)
|
1815
|
+
response = JSON.parse(body)
|
1816
|
+
if response['Response'].key?('Error') == false
|
1817
|
+
model = ModifyEdgeUnitApplicationBasicInfoResponse.new
|
1818
|
+
model.deserialize(response['Response'])
|
1819
|
+
model
|
1820
|
+
else
|
1821
|
+
code = response['Response']['Error']['Code']
|
1822
|
+
message = response['Response']['Error']['Message']
|
1823
|
+
reqid = response['Response']['RequestId']
|
1824
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1825
|
+
end
|
1826
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1827
|
+
raise e
|
1828
|
+
rescue StandardError => e
|
1829
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1830
|
+
end
|
1831
|
+
|
1832
|
+
# 可视化修改应用配置
|
1833
|
+
|
1834
|
+
# @param request: Request instance for ModifyEdgeUnitApplicationVisualization.
|
1835
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitApplicationVisualizationRequest`
|
1836
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitApplicationVisualizationResponse`
|
1837
|
+
def ModifyEdgeUnitApplicationVisualization(request)
|
1838
|
+
body = send_request('ModifyEdgeUnitApplicationVisualization', request.serialize)
|
1839
|
+
response = JSON.parse(body)
|
1840
|
+
if response['Response'].key?('Error') == false
|
1841
|
+
model = ModifyEdgeUnitApplicationVisualizationResponse.new
|
1842
|
+
model.deserialize(response['Response'])
|
1843
|
+
model
|
1844
|
+
else
|
1845
|
+
code = response['Response']['Error']['Code']
|
1846
|
+
message = response['Response']['Error']['Message']
|
1847
|
+
reqid = response['Response']['RequestId']
|
1848
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1849
|
+
end
|
1850
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1851
|
+
raise e
|
1852
|
+
rescue StandardError => e
|
1853
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1854
|
+
end
|
1855
|
+
|
1856
|
+
# Yaml方式修改应用配置
|
1857
|
+
|
1858
|
+
# @param request: Request instance for ModifyEdgeUnitApplicationYaml.
|
1859
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitApplicationYamlRequest`
|
1860
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitApplicationYamlResponse`
|
1861
|
+
def ModifyEdgeUnitApplicationYaml(request)
|
1862
|
+
body = send_request('ModifyEdgeUnitApplicationYaml', request.serialize)
|
1863
|
+
response = JSON.parse(body)
|
1864
|
+
if response['Response'].key?('Error') == false
|
1865
|
+
model = ModifyEdgeUnitApplicationYamlResponse.new
|
1866
|
+
model.deserialize(response['Response'])
|
1867
|
+
model
|
1868
|
+
else
|
1869
|
+
code = response['Response']['Error']['Code']
|
1870
|
+
message = response['Response']['Error']['Message']
|
1871
|
+
reqid = response['Response']['RequestId']
|
1872
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1873
|
+
end
|
1874
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1875
|
+
raise e
|
1876
|
+
rescue StandardError => e
|
1877
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1878
|
+
end
|
1879
|
+
|
1880
|
+
# 修改边缘单元Grid部署应用副本数
|
1881
|
+
|
1882
|
+
# @param request: Request instance for ModifyEdgeUnitDeployGridItem.
|
1883
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitDeployGridItemRequest`
|
1884
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyEdgeUnitDeployGridItemResponse`
|
1885
|
+
def ModifyEdgeUnitDeployGridItem(request)
|
1886
|
+
body = send_request('ModifyEdgeUnitDeployGridItem', request.serialize)
|
1887
|
+
response = JSON.parse(body)
|
1888
|
+
if response['Response'].key?('Error') == false
|
1889
|
+
model = ModifyEdgeUnitDeployGridItemResponse.new
|
1890
|
+
model.deserialize(response['Response'])
|
1891
|
+
model
|
1892
|
+
else
|
1893
|
+
code = response['Response']['Error']['Code']
|
1894
|
+
message = response['Response']['Error']['Message']
|
1895
|
+
reqid = response['Response']['RequestId']
|
1896
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1897
|
+
end
|
1898
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1899
|
+
raise e
|
1900
|
+
rescue StandardError => e
|
1901
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
# 修改边缘单元NodeUnit模版
|
1905
|
+
|
1906
|
+
# @param request: Request instance for ModifyNodeUnitTemplate.
|
1907
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifyNodeUnitTemplateRequest`
|
1908
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifyNodeUnitTemplateResponse`
|
1909
|
+
def ModifyNodeUnitTemplate(request)
|
1910
|
+
body = send_request('ModifyNodeUnitTemplate', request.serialize)
|
1911
|
+
response = JSON.parse(body)
|
1912
|
+
if response['Response'].key?('Error') == false
|
1913
|
+
model = ModifyNodeUnitTemplateResponse.new
|
1914
|
+
model.deserialize(response['Response'])
|
1915
|
+
model
|
1916
|
+
else
|
1917
|
+
code = response['Response']['Error']['Code']
|
1918
|
+
message = response['Response']['Error']['Message']
|
1919
|
+
reqid = response['Response']['RequestId']
|
1920
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1921
|
+
end
|
1922
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1923
|
+
raise e
|
1924
|
+
rescue StandardError => e
|
1925
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1926
|
+
end
|
1927
|
+
|
1928
|
+
# 修改Secret
|
1929
|
+
|
1930
|
+
# @param request: Request instance for ModifySecret.
|
1931
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::ModifySecretRequest`
|
1932
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::ModifySecretResponse`
|
1933
|
+
def ModifySecret(request)
|
1934
|
+
body = send_request('ModifySecret', request.serialize)
|
1935
|
+
response = JSON.parse(body)
|
1936
|
+
if response['Response'].key?('Error') == false
|
1937
|
+
model = ModifySecretResponse.new
|
1938
|
+
model.deserialize(response['Response'])
|
1939
|
+
model
|
1940
|
+
else
|
1941
|
+
code = response['Response']['Error']['Code']
|
1942
|
+
message = response['Response']['Error']['Message']
|
1943
|
+
reqid = response['Response']['RequestId']
|
1944
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1945
|
+
end
|
1946
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1947
|
+
raise e
|
1948
|
+
rescue StandardError => e
|
1949
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1950
|
+
end
|
1951
|
+
|
1952
|
+
# 单元应用重部署
|
1953
|
+
|
1954
|
+
# @param request: Request instance for RedeployEdgeUnitApplication.
|
1955
|
+
# @type request: :class:`Tencentcloud::iecp::V20210914::RedeployEdgeUnitApplicationRequest`
|
1956
|
+
# @rtype: :class:`Tencentcloud::iecp::V20210914::RedeployEdgeUnitApplicationResponse`
|
1957
|
+
def RedeployEdgeUnitApplication(request)
|
1958
|
+
body = send_request('RedeployEdgeUnitApplication', request.serialize)
|
1959
|
+
response = JSON.parse(body)
|
1960
|
+
if response['Response'].key?('Error') == false
|
1961
|
+
model = RedeployEdgeUnitApplicationResponse.new
|
1962
|
+
model.deserialize(response['Response'])
|
1963
|
+
model
|
1964
|
+
else
|
1965
|
+
code = response['Response']['Error']['Code']
|
1966
|
+
message = response['Response']['Error']['Message']
|
1967
|
+
reqid = response['Response']['RequestId']
|
1968
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1969
|
+
end
|
1970
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1971
|
+
raise e
|
1972
|
+
rescue StandardError => e
|
1973
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1974
|
+
end
|
1975
|
+
|
1976
|
+
|
1977
|
+
end
|
1978
|
+
end
|
1979
|
+
end
|
1980
|
+
end
|