|
11 | 11 | // 'serviceId' => 'assistant', |
12 | 12 | ], |
13 | 13 | 'operations' => [ |
14 | | - 'DescribeAssistants' => [ |
15 | | - 'name' => 'DescribeAssistants', |
16 | | - 'http' => [ |
17 | | - 'method' => 'POST', |
18 | | - 'requestUri' => '/v1/regions/{regionId}/describeAssistants', |
19 | | - ], |
20 | | - 'input' => [ 'shape' => 'DescribeAssistantsRequestShape', ], |
21 | | - 'output' => [ 'shape' => 'DescribeAssistantsResponseShape', ], |
22 | | - ], |
23 | 14 | 'CreateCommand' => [ |
24 | 15 | 'name' => 'CreateCommand', |
25 | 16 | 'http' => [ |
|
38 | 29 | 'input' => [ 'shape' => 'DescribeCommandsRequestShape', ], |
39 | 30 | 'output' => [ 'shape' => 'DescribeCommandsResponseShape', ], |
40 | 31 | ], |
41 | | - 'ModifyCommand' => [ |
42 | | - 'name' => 'ModifyCommand', |
43 | | - 'http' => [ |
44 | | - 'method' => 'POST', |
45 | | - 'requestUri' => '/v1/regions/{regionId}/modifyCommand', |
46 | | - ], |
47 | | - 'input' => [ 'shape' => 'ModifyCommandRequestShape', ], |
48 | | - 'output' => [ 'shape' => 'ModifyCommandResponseShape', ], |
49 | | - ], |
50 | 32 | 'DeleteCommands' => [ |
51 | 33 | 'name' => 'DeleteCommands', |
52 | 34 | 'http' => [ |
|
65 | 47 | 'input' => [ 'shape' => 'InvokeCommandRequestShape', ], |
66 | 48 | 'output' => [ 'shape' => 'InvokeCommandResponseShape', ], |
67 | 49 | ], |
68 | | - 'RunCommand' => [ |
69 | | - 'name' => 'RunCommand', |
70 | | - 'http' => [ |
71 | | - 'method' => 'POST', |
72 | | - 'requestUri' => '/v1/regions/{regionId}/runCommand', |
73 | | - ], |
74 | | - 'input' => [ 'shape' => 'RunCommandRequestShape', ], |
75 | | - 'output' => [ 'shape' => 'RunCommandResponseShape', ], |
76 | | - ], |
77 | 50 | 'DescribeInvocations' => [ |
78 | 51 | 'name' => 'DescribeInvocations', |
79 | 52 | 'http' => [ |
|
83 | 56 | 'input' => [ 'shape' => 'DescribeInvocationsRequestShape', ], |
84 | 57 | 'output' => [ 'shape' => 'DescribeInvocationsResponseShape', ], |
85 | 58 | ], |
86 | | - 'StopInvocation' => [ |
87 | | - 'name' => 'StopInvocation', |
88 | | - 'http' => [ |
89 | | - 'method' => 'POST', |
90 | | - 'requestUri' => '/v1/regions/{regionId}/stopInvocation', |
91 | | - ], |
92 | | - 'input' => [ 'shape' => 'StopInvocationRequestShape', ], |
93 | | - 'output' => [ 'shape' => 'StopInvocationResponseShape', ], |
94 | | - ], |
95 | 59 | 'AddLogConfig' => [ |
96 | 60 | 'name' => 'AddLogConfig', |
97 | 61 | 'http' => [ |
|
101 | 65 | 'input' => [ 'shape' => 'AddLogConfigRequestShape', ], |
102 | 66 | 'output' => [ 'shape' => 'AddLogConfigResponseShape', ], |
103 | 67 | ], |
104 | | - 'ModifyLogConfig' => [ |
105 | | - 'name' => 'ModifyLogConfig', |
106 | | - 'http' => [ |
107 | | - 'method' => 'POST', |
108 | | - 'requestUri' => '/v1/regions/{regionId}/modifyLogConfig', |
109 | | - ], |
110 | | - 'input' => [ 'shape' => 'ModifyLogConfigRequestShape', ], |
111 | | - 'output' => [ 'shape' => 'ModifyLogConfigResponseShape', ], |
112 | | - ], |
113 | 68 | ], |
114 | 69 | 'shapes' => [ |
115 | 70 | 'Assistant' => [ |
|
152 | 107 | 'status' => [ 'type' => 'string', 'locationName' => 'status', ], |
153 | 108 | 'commandId' => [ 'type' => 'string', 'locationName' => 'commandId', ], |
154 | 109 | 'commandName' => [ 'type' => 'string', 'locationName' => 'commandName', ], |
| 110 | + 'sourceType' => [ 'type' => 'string', 'locationName' => 'sourceType', ], |
155 | 111 | 'invokeId' => [ 'type' => 'string', 'locationName' => 'invokeId', ], |
| 112 | + 'instances' => [ 'type' => 'list', 'member' => [ 'type' => 'string', ], ], |
| 113 | + 'tags' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagFilter', ], ], |
| 114 | + 'invokeInstances' => [ 'type' => 'list', 'member' => [ 'type' => 'string', ], ], |
156 | 115 | 'commandType' => [ 'type' => 'string', 'locationName' => 'commandType', ], |
157 | 116 | 'commandContent' => [ 'type' => 'string', 'locationName' => 'commandContent', ], |
158 | 117 | 'commandDescription' => [ 'type' => 'string', 'locationName' => 'commandDescription', ], |
|
161 | 120 | 'timeout' => [ 'type' => 'string', 'locationName' => 'timeout', ], |
162 | 121 | 'username' => [ 'type' => 'string', 'locationName' => 'username', ], |
163 | 122 | 'workdir' => [ 'type' => 'string', 'locationName' => 'workdir', ], |
| 123 | + 'errorInfo' => [ 'type' => 'string', 'locationName' => 'errorInfo', ], |
164 | 124 | 'createTime' => [ 'type' => 'string', 'locationName' => 'createTime', ], |
| 125 | + 'execTime' => [ 'type' => 'string', 'locationName' => 'execTime', ], |
165 | 126 | ], |
166 | 127 | ], |
167 | 128 | 'InvocationInstance' => [ |
|
180 | 141 | 'updateTime' => [ 'type' => 'string', 'locationName' => 'updateTime', ], |
181 | 142 | ], |
182 | 143 | ], |
183 | | - 'DescribeAssistantsResponseShape' => [ |
| 144 | + 'TagFilter' => [ |
184 | 145 | 'type' => 'structure', |
185 | 146 | 'members' => [ |
186 | | - 'result' => [ 'shape' => 'DescribeAssistantsResultShape', ], |
187 | | - 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
188 | | - ], |
189 | | - ], |
190 | | - 'DescribeAssistantsRequestShape' => [ |
191 | | - 'type' => 'structure', |
192 | | - 'members' => [ |
193 | | - 'instances' => [ 'type' => 'list', 'member' => [ 'type' => 'string', ], ], |
194 | | - 'regionId' => [ 'type' => 'string', 'locationName' => 'regionId', ], |
195 | | - ], |
196 | | - ], |
197 | | - 'DescribeAssistantsResultShape' => [ |
198 | | - 'type' => 'structure', |
199 | | - 'members' => [ |
200 | | - 'assistants' => [ 'type' => 'list', 'member' => [ 'shape' => 'Assistant', ], ], |
| 147 | + 'key' => [ 'type' => 'string', 'locationName' => 'key', ], |
| 148 | + 'values' => [ 'type' => 'list', 'member' => [ 'type' => 'string', ], ], |
201 | 149 | ], |
202 | 150 | ], |
203 | 151 | 'InvokeCommandRequestShape' => [ |
204 | 152 | 'type' => 'structure', |
205 | 153 | 'members' => [ |
206 | 154 | 'commandId' => [ 'type' => 'string', 'locationName' => 'commandId', ], |
207 | 155 | 'instances' => [ 'type' => 'list', 'member' => [ 'type' => 'string', ], ], |
| 156 | + 'tags' => [ 'type' => 'list', 'member' => [ 'shape' => 'TagFilter', ], ], |
| 157 | + 'execTime' => [ 'type' => 'string', 'locationName' => 'execTime', ], |
208 | 158 | 'timeout' => [ 'type' => 'integer', 'locationName' => 'timeout', ], |
209 | 159 | 'username' => [ 'type' => 'string', 'locationName' => 'username', ], |
210 | 160 | 'workdir' => [ 'type' => 'string', 'locationName' => 'workdir', ], |
|
227 | 177 | 'invokeId' => [ 'type' => 'string', 'locationName' => 'invokeId', ], |
228 | 178 | ], |
229 | 179 | ], |
230 | | - 'ModifyCommandResultShape' => [ |
231 | | - 'type' => 'structure', |
232 | | - 'members' => [ |
233 | | - 'commandId' => [ 'type' => 'string', 'locationName' => 'commandId', ], |
234 | | - ], |
235 | | - ], |
236 | 180 | 'DeleteCommandsResultShape' => [ |
237 | 181 | 'type' => 'structure', |
238 | 182 | 'members' => [ |
|
266 | 210 | 'commands' => [ 'type' => 'list', 'member' => [ 'shape' => 'Command', ], ], |
267 | 211 | ], |
268 | 212 | ], |
269 | | - 'RunCommandResultShape' => [ |
270 | | - 'type' => 'structure', |
271 | | - 'members' => [ |
272 | | - 'commandId' => [ 'type' => 'string', 'locationName' => 'commandId', ], |
273 | | - 'invokeId' => [ 'type' => 'string', 'locationName' => 'invokeId', ], |
274 | | - ], |
275 | | - ], |
276 | 213 | 'DeleteCommandsResponseShape' => [ |
277 | 214 | 'type' => 'structure', |
278 | 215 | 'members' => [ |
279 | 216 | 'result' => [ 'shape' => 'DeleteCommandsResultShape', ], |
280 | 217 | 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
281 | 218 | ], |
282 | 219 | ], |
283 | | - 'RunCommandResponseShape' => [ |
284 | | - 'type' => 'structure', |
285 | | - 'members' => [ |
286 | | - 'result' => [ 'shape' => 'RunCommandResultShape', ], |
287 | | - 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
288 | | - ], |
289 | | - ], |
290 | 220 | 'DescribeCommandsResponseShape' => [ |
291 | 221 | 'type' => 'structure', |
292 | 222 | 'members' => [ |
|
321 | 251 | 'commandId' => [ 'type' => 'string', 'locationName' => 'commandId', ], |
322 | 252 | ], |
323 | 253 | ], |
324 | | - 'ModifyCommandRequestShape' => [ |
325 | | - 'type' => 'structure', |
326 | | - 'members' => [ |
327 | | - 'commandId' => [ 'type' => 'string', 'locationName' => 'commandId', ], |
328 | | - 'commandName' => [ 'type' => 'string', 'locationName' => 'commandName', ], |
329 | | - 'commandType' => [ 'type' => 'string', 'locationName' => 'commandType', ], |
330 | | - 'commandContent' => [ 'type' => 'string', 'locationName' => 'commandContent', ], |
331 | | - 'commandDescription' => [ 'type' => 'string', 'locationName' => 'commandDescription', ], |
332 | | - 'workdir' => [ 'type' => 'string', 'locationName' => 'workdir', ], |
333 | | - 'timeout' => [ 'type' => 'integer', 'locationName' => 'timeout', ], |
334 | | - 'username' => [ 'type' => 'string', 'locationName' => 'username', ], |
335 | | - 'regionId' => [ 'type' => 'string', 'locationName' => 'regionId', ], |
336 | | - ], |
337 | | - ], |
338 | | - 'RunCommandRequestShape' => [ |
339 | | - 'type' => 'structure', |
340 | | - 'members' => [ |
341 | | - 'commandName' => [ 'type' => 'string', 'locationName' => 'commandName', ], |
342 | | - 'commandType' => [ 'type' => 'string', 'locationName' => 'commandType', ], |
343 | | - 'commandContent' => [ 'type' => 'string', 'locationName' => 'commandContent', ], |
344 | | - 'windowsPassword' => [ 'type' => 'string', 'locationName' => 'windowsPassword', ], |
345 | | - 'instances' => [ 'type' => 'list', 'member' => [ 'type' => 'string', ], ], |
346 | | - 'timeout' => [ 'type' => 'integer', 'locationName' => 'timeout', ], |
347 | | - 'username' => [ 'type' => 'string', 'locationName' => 'username', ], |
348 | | - 'workdir' => [ 'type' => 'string', 'locationName' => 'workdir', ], |
349 | | - 'enableParameter' => [ 'type' => 'boolean', 'locationName' => 'enableParameter', ], |
350 | | - 'keepCommand' => [ 'type' => 'boolean', 'locationName' => 'keepCommand', ], |
351 | | - 'commandDescription' => [ 'type' => 'string', 'locationName' => 'commandDescription', ], |
352 | | - 'parameters' => [ 'type' => 'list', 'member' => [ 'shape' => 'Parameter', ], ], |
353 | | - 'regionId' => [ 'type' => 'string', 'locationName' => 'regionId', ], |
354 | | - ], |
355 | | - ], |
356 | | - 'ModifyCommandResponseShape' => [ |
357 | | - 'type' => 'structure', |
358 | | - 'members' => [ |
359 | | - 'result' => [ 'shape' => 'ModifyCommandResultShape', ], |
360 | | - 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
361 | | - ], |
362 | | - ], |
363 | 254 | 'DescribeInvocationsResultShape' => [ |
364 | 255 | 'type' => 'structure', |
365 | 256 | 'members' => [ |
366 | 257 | 'totalCount' => [ 'type' => 'integer', 'locationName' => 'totalCount', ], |
367 | 258 | 'invocations' => [ 'type' => 'list', 'member' => [ 'shape' => 'Invocation', ], ], |
368 | 259 | ], |
369 | 260 | ], |
370 | | - 'StopInvocationResponseShape' => [ |
371 | | - 'type' => 'structure', |
372 | | - 'members' => [ |
373 | | - 'result' => [ 'shape' => 'StopInvocationResultShape', ], |
374 | | - 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
375 | | - ], |
376 | | - ], |
377 | | - 'StopInvocationRequestShape' => [ |
378 | | - 'type' => 'structure', |
379 | | - 'members' => [ |
380 | | - 'invokeId' => [ 'type' => 'string', 'locationName' => 'invokeId', ], |
381 | | - 'instances' => [ 'type' => 'list', 'member' => [ 'type' => 'string', ], ], |
382 | | - 'regionId' => [ 'type' => 'string', 'locationName' => 'regionId', ], |
383 | | - ], |
384 | | - ], |
385 | | - 'StopInvocationResultShape' => [ |
386 | | - 'type' => 'structure', |
387 | | - 'members' => [ |
388 | | - 'invokeId' => [ 'type' => 'string', 'locationName' => 'invokeId', ], |
389 | | - ], |
390 | | - ], |
391 | 261 | 'DescribeInvocationsRequestShape' => [ |
392 | 262 | 'type' => 'structure', |
393 | 263 | 'members' => [ |
|
414 | 284 | 'members' => [ |
415 | 285 | ], |
416 | 286 | ], |
417 | | - 'ModifyLogConfigResultShape' => [ |
418 | | - 'type' => 'structure', |
419 | | - 'members' => [ |
420 | | - ], |
421 | | - ], |
422 | | - 'ModifyLogConfigRequestShape' => [ |
423 | | - 'type' => 'structure', |
424 | | - 'members' => [ |
425 | | - 'logset' => [ 'type' => 'string', 'locationName' => 'logset', ], |
426 | | - 'logtopic' => [ 'type' => 'string', 'locationName' => 'logtopic', ], |
427 | | - 'regionId' => [ 'type' => 'string', 'locationName' => 'regionId', ], |
428 | | - ], |
429 | | - ], |
430 | 287 | 'AddLogConfigRequestShape' => [ |
431 | 288 | 'type' => 'structure', |
432 | 289 | 'members' => [ |
|
441 | 298 | 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
442 | 299 | ], |
443 | 300 | ], |
444 | | - 'ModifyLogConfigResponseShape' => [ |
445 | | - 'type' => 'structure', |
446 | | - 'members' => [ |
447 | | - 'requestId' => [ 'type' => 'string', 'locationName' => 'requestId', ], |
448 | | - ], |
449 | | - ], |
450 | 301 | ], |
451 | 302 | ]; |
0 commit comments