aws-sdk-robomaker 1.0.0 → 1.1.0
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 +4 -4
- data/lib/aws-sdk-robomaker.rb +1 -1
- data/lib/aws-sdk-robomaker/client.rb +207 -14
- data/lib/aws-sdk-robomaker/client_api.rb +92 -1
- data/lib/aws-sdk-robomaker/types.rb +455 -49
- metadata +2 -2
@@ -54,6 +54,7 @@ module Aws::RoboMaker
|
|
54
54
|
DeploymentJobs = Shapes::ListShape.new(name: 'DeploymentJobs')
|
55
55
|
DeploymentLaunchConfig = Shapes::StructureShape.new(name: 'DeploymentLaunchConfig')
|
56
56
|
DeploymentStatus = Shapes::StringShape.new(name: 'DeploymentStatus')
|
57
|
+
DeploymentVersion = Shapes::StringShape.new(name: 'DeploymentVersion')
|
57
58
|
DeregisterRobotRequest = Shapes::StructureShape.new(name: 'DeregisterRobotRequest')
|
58
59
|
DeregisterRobotResponse = Shapes::StructureShape.new(name: 'DeregisterRobotResponse')
|
59
60
|
DescribeDeploymentJobRequest = Shapes::StructureShape.new(name: 'DescribeDeploymentJobRequest')
|
@@ -99,6 +100,8 @@ module Aws::RoboMaker
|
|
99
100
|
ListSimulationApplicationsResponse = Shapes::StructureShape.new(name: 'ListSimulationApplicationsResponse')
|
100
101
|
ListSimulationJobsRequest = Shapes::StructureShape.new(name: 'ListSimulationJobsRequest')
|
101
102
|
ListSimulationJobsResponse = Shapes::StructureShape.new(name: 'ListSimulationJobsResponse')
|
103
|
+
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
104
|
+
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
102
105
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
103
106
|
Name = Shapes::StringShape.new(name: 'Name')
|
104
107
|
OutputLocation = Shapes::StructureShape.new(name: 'OutputLocation')
|
@@ -154,7 +157,15 @@ module Aws::RoboMaker
|
|
154
157
|
Subnets = Shapes::ListShape.new(name: 'Subnets')
|
155
158
|
SyncDeploymentJobRequest = Shapes::StructureShape.new(name: 'SyncDeploymentJobRequest')
|
156
159
|
SyncDeploymentJobResponse = Shapes::StructureShape.new(name: 'SyncDeploymentJobResponse')
|
160
|
+
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
161
|
+
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
162
|
+
TagMap = Shapes::MapShape.new(name: 'TagMap')
|
163
|
+
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
164
|
+
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
165
|
+
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
157
166
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
167
|
+
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
168
|
+
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
158
169
|
UpdateRobotApplicationRequest = Shapes::StructureShape.new(name: 'UpdateRobotApplicationRequest')
|
159
170
|
UpdateRobotApplicationResponse = Shapes::StructureShape.new(name: 'UpdateRobotApplicationResponse')
|
160
171
|
UpdateSimulationApplicationRequest = Shapes::StructureShape.new(name: 'UpdateSimulationApplicationRequest')
|
@@ -183,6 +194,7 @@ module Aws::RoboMaker
|
|
183
194
|
CreateDeploymentJobRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
184
195
|
CreateDeploymentJobRequest.add_member(:fleet, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "fleet"))
|
185
196
|
CreateDeploymentJobRequest.add_member(:deployment_application_configs, Shapes::ShapeRef.new(shape: DeploymentApplicationConfigs, required: true, location_name: "deploymentApplicationConfigs"))
|
197
|
+
CreateDeploymentJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
186
198
|
CreateDeploymentJobRequest.struct_class = Types::CreateDeploymentJobRequest
|
187
199
|
|
188
200
|
CreateDeploymentJobResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
@@ -193,19 +205,23 @@ module Aws::RoboMaker
|
|
193
205
|
CreateDeploymentJobResponse.add_member(:failure_code, Shapes::ShapeRef.new(shape: DeploymentJobErrorCode, location_name: "failureCode"))
|
194
206
|
CreateDeploymentJobResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
195
207
|
CreateDeploymentJobResponse.add_member(:deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "deploymentConfig"))
|
208
|
+
CreateDeploymentJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
196
209
|
CreateDeploymentJobResponse.struct_class = Types::CreateDeploymentJobResponse
|
197
210
|
|
198
211
|
CreateFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
212
|
+
CreateFleetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
199
213
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
200
214
|
|
201
215
|
CreateFleetResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
202
216
|
CreateFleetResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
203
217
|
CreateFleetResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
218
|
+
CreateFleetResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
204
219
|
CreateFleetResponse.struct_class = Types::CreateFleetResponse
|
205
220
|
|
206
221
|
CreateRobotApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
207
222
|
CreateRobotApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, required: true, location_name: "sources"))
|
208
223
|
CreateRobotApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
|
224
|
+
CreateRobotApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
209
225
|
CreateRobotApplicationRequest.struct_class = Types::CreateRobotApplicationRequest
|
210
226
|
|
211
227
|
CreateRobotApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
@@ -215,6 +231,7 @@ module Aws::RoboMaker
|
|
215
231
|
CreateRobotApplicationResponse.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, location_name: "robotSoftwareSuite"))
|
216
232
|
CreateRobotApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
217
233
|
CreateRobotApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
|
234
|
+
CreateRobotApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
218
235
|
CreateRobotApplicationResponse.struct_class = Types::CreateRobotApplicationResponse
|
219
236
|
|
220
237
|
CreateRobotApplicationVersionRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
@@ -233,6 +250,7 @@ module Aws::RoboMaker
|
|
233
250
|
CreateRobotRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
234
251
|
CreateRobotRequest.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, required: true, location_name: "architecture"))
|
235
252
|
CreateRobotRequest.add_member(:greengrass_group_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "greengrassGroupId"))
|
253
|
+
CreateRobotRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
236
254
|
CreateRobotRequest.struct_class = Types::CreateRobotRequest
|
237
255
|
|
238
256
|
CreateRobotResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
@@ -240,6 +258,7 @@ module Aws::RoboMaker
|
|
240
258
|
CreateRobotResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
241
259
|
CreateRobotResponse.add_member(:greengrass_group_id, Shapes::ShapeRef.new(shape: Id, location_name: "greengrassGroupId"))
|
242
260
|
CreateRobotResponse.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
|
261
|
+
CreateRobotResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
243
262
|
CreateRobotResponse.struct_class = Types::CreateRobotResponse
|
244
263
|
|
245
264
|
CreateSimulationApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
@@ -247,6 +266,7 @@ module Aws::RoboMaker
|
|
247
266
|
CreateSimulationApplicationRequest.add_member(:simulation_software_suite, Shapes::ShapeRef.new(shape: SimulationSoftwareSuite, required: true, location_name: "simulationSoftwareSuite"))
|
248
267
|
CreateSimulationApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
|
249
268
|
CreateSimulationApplicationRequest.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, required: true, location_name: "renderingEngine"))
|
269
|
+
CreateSimulationApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
250
270
|
CreateSimulationApplicationRequest.struct_class = Types::CreateSimulationApplicationRequest
|
251
271
|
|
252
272
|
CreateSimulationApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
@@ -258,6 +278,7 @@ module Aws::RoboMaker
|
|
258
278
|
CreateSimulationApplicationResponse.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, location_name: "renderingEngine"))
|
259
279
|
CreateSimulationApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
260
280
|
CreateSimulationApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
|
281
|
+
CreateSimulationApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
261
282
|
CreateSimulationApplicationResponse.struct_class = Types::CreateSimulationApplicationResponse
|
262
283
|
|
263
284
|
CreateSimulationApplicationVersionRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
@@ -282,6 +303,7 @@ module Aws::RoboMaker
|
|
282
303
|
CreateSimulationJobRequest.add_member(:failure_behavior, Shapes::ShapeRef.new(shape: FailureBehavior, location_name: "failureBehavior"))
|
283
304
|
CreateSimulationJobRequest.add_member(:robot_applications, Shapes::ShapeRef.new(shape: RobotApplicationConfigs, location_name: "robotApplications"))
|
284
305
|
CreateSimulationJobRequest.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
306
|
+
CreateSimulationJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
285
307
|
CreateSimulationJobRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfig, location_name: "vpcConfig"))
|
286
308
|
CreateSimulationJobRequest.struct_class = Types::CreateSimulationJobRequest
|
287
309
|
|
@@ -297,6 +319,7 @@ module Aws::RoboMaker
|
|
297
319
|
CreateSimulationJobResponse.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, location_name: "iamRole"))
|
298
320
|
CreateSimulationJobResponse.add_member(:robot_applications, Shapes::ShapeRef.new(shape: RobotApplicationConfigs, location_name: "robotApplications"))
|
299
321
|
CreateSimulationJobResponse.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
322
|
+
CreateSimulationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
300
323
|
CreateSimulationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
301
324
|
CreateSimulationJobResponse.struct_class = Types::CreateSimulationJobResponse
|
302
325
|
|
@@ -323,7 +346,7 @@ module Aws::RoboMaker
|
|
323
346
|
DeleteSimulationApplicationResponse.struct_class = Types::DeleteSimulationApplicationResponse
|
324
347
|
|
325
348
|
DeploymentApplicationConfig.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
326
|
-
DeploymentApplicationConfig.add_member(:application_version, Shapes::ShapeRef.new(shape:
|
349
|
+
DeploymentApplicationConfig.add_member(:application_version, Shapes::ShapeRef.new(shape: DeploymentVersion, required: true, location_name: "applicationVersion"))
|
327
350
|
DeploymentApplicationConfig.add_member(:launch_config, Shapes::ShapeRef.new(shape: DeploymentLaunchConfig, required: true, location_name: "launchConfig"))
|
328
351
|
DeploymentApplicationConfig.struct_class = Types::DeploymentApplicationConfig
|
329
352
|
|
@@ -372,6 +395,7 @@ module Aws::RoboMaker
|
|
372
395
|
DescribeDeploymentJobResponse.add_member(:failure_code, Shapes::ShapeRef.new(shape: DeploymentJobErrorCode, location_name: "failureCode"))
|
373
396
|
DescribeDeploymentJobResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
374
397
|
DescribeDeploymentJobResponse.add_member(:robot_deployment_summary, Shapes::ShapeRef.new(shape: RobotDeploymentSummary, location_name: "robotDeploymentSummary"))
|
398
|
+
DescribeDeploymentJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
375
399
|
DescribeDeploymentJobResponse.struct_class = Types::DescribeDeploymentJobResponse
|
376
400
|
|
377
401
|
DescribeFleetRequest.add_member(:fleet, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "fleet"))
|
@@ -384,6 +408,7 @@ module Aws::RoboMaker
|
|
384
408
|
DescribeFleetResponse.add_member(:last_deployment_status, Shapes::ShapeRef.new(shape: DeploymentStatus, location_name: "lastDeploymentStatus"))
|
385
409
|
DescribeFleetResponse.add_member(:last_deployment_job, Shapes::ShapeRef.new(shape: Arn, location_name: "lastDeploymentJob"))
|
386
410
|
DescribeFleetResponse.add_member(:last_deployment_time, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "lastDeploymentTime"))
|
411
|
+
DescribeFleetResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
387
412
|
DescribeFleetResponse.struct_class = Types::DescribeFleetResponse
|
388
413
|
|
389
414
|
DescribeRobotApplicationRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
@@ -397,6 +422,7 @@ module Aws::RoboMaker
|
|
397
422
|
DescribeRobotApplicationResponse.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, location_name: "robotSoftwareSuite"))
|
398
423
|
DescribeRobotApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
|
399
424
|
DescribeRobotApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
425
|
+
DescribeRobotApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
400
426
|
DescribeRobotApplicationResponse.struct_class = Types::DescribeRobotApplicationResponse
|
401
427
|
|
402
428
|
DescribeRobotRequest.add_member(:robot, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "robot"))
|
@@ -411,6 +437,7 @@ module Aws::RoboMaker
|
|
411
437
|
DescribeRobotResponse.add_member(:architecture, Shapes::ShapeRef.new(shape: Architecture, location_name: "architecture"))
|
412
438
|
DescribeRobotResponse.add_member(:last_deployment_job, Shapes::ShapeRef.new(shape: Arn, location_name: "lastDeploymentJob"))
|
413
439
|
DescribeRobotResponse.add_member(:last_deployment_time, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "lastDeploymentTime"))
|
440
|
+
DescribeRobotResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
414
441
|
DescribeRobotResponse.struct_class = Types::DescribeRobotResponse
|
415
442
|
|
416
443
|
DescribeSimulationApplicationRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
@@ -426,6 +453,7 @@ module Aws::RoboMaker
|
|
426
453
|
DescribeSimulationApplicationResponse.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, location_name: "renderingEngine"))
|
427
454
|
DescribeSimulationApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
|
428
455
|
DescribeSimulationApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
456
|
+
DescribeSimulationApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
429
457
|
DescribeSimulationApplicationResponse.struct_class = Types::DescribeSimulationApplicationResponse
|
430
458
|
|
431
459
|
DescribeSimulationJobRequest.add_member(:job, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "job"))
|
@@ -437,6 +465,7 @@ module Aws::RoboMaker
|
|
437
465
|
DescribeSimulationJobResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
438
466
|
DescribeSimulationJobResponse.add_member(:failure_behavior, Shapes::ShapeRef.new(shape: FailureBehavior, location_name: "failureBehavior"))
|
439
467
|
DescribeSimulationJobResponse.add_member(:failure_code, Shapes::ShapeRef.new(shape: SimulationJobErrorCode, location_name: "failureCode"))
|
468
|
+
DescribeSimulationJobResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: GenericString, location_name: "failureReason"))
|
440
469
|
DescribeSimulationJobResponse.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
441
470
|
DescribeSimulationJobResponse.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "outputLocation"))
|
442
471
|
DescribeSimulationJobResponse.add_member(:max_job_duration_in_seconds, Shapes::ShapeRef.new(shape: JobDuration, location_name: "maxJobDurationInSeconds"))
|
@@ -444,6 +473,7 @@ module Aws::RoboMaker
|
|
444
473
|
DescribeSimulationJobResponse.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, location_name: "iamRole"))
|
445
474
|
DescribeSimulationJobResponse.add_member(:robot_applications, Shapes::ShapeRef.new(shape: RobotApplicationConfigs, location_name: "robotApplications"))
|
446
475
|
DescribeSimulationJobResponse.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
476
|
+
DescribeSimulationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
447
477
|
DescribeSimulationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
448
478
|
DescribeSimulationJobResponse.struct_class = Types::DescribeSimulationJobResponse
|
449
479
|
|
@@ -529,6 +559,12 @@ module Aws::RoboMaker
|
|
529
559
|
ListSimulationJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
530
560
|
ListSimulationJobsResponse.struct_class = Types::ListSimulationJobsResponse
|
531
561
|
|
562
|
+
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
563
|
+
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
564
|
+
|
565
|
+
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
566
|
+
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
567
|
+
|
532
568
|
OutputLocation.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, location_name: "s3Bucket"))
|
533
569
|
OutputLocation.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: S3Key, location_name: "s3Prefix"))
|
534
570
|
OutputLocation.struct_class = Types::OutputLocation
|
@@ -624,6 +660,7 @@ module Aws::RoboMaker
|
|
624
660
|
SimulationJob.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
625
661
|
SimulationJob.add_member(:failure_behavior, Shapes::ShapeRef.new(shape: FailureBehavior, location_name: "failureBehavior"))
|
626
662
|
SimulationJob.add_member(:failure_code, Shapes::ShapeRef.new(shape: SimulationJobErrorCode, location_name: "failureCode"))
|
663
|
+
SimulationJob.add_member(:failure_reason, Shapes::ShapeRef.new(shape: GenericString, location_name: "failureReason"))
|
627
664
|
SimulationJob.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
628
665
|
SimulationJob.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "outputLocation"))
|
629
666
|
SimulationJob.add_member(:max_job_duration_in_seconds, Shapes::ShapeRef.new(shape: JobDuration, location_name: "maxJobDurationInSeconds"))
|
@@ -631,6 +668,7 @@ module Aws::RoboMaker
|
|
631
668
|
SimulationJob.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, location_name: "iamRole"))
|
632
669
|
SimulationJob.add_member(:robot_applications, Shapes::ShapeRef.new(shape: RobotApplicationConfigs, location_name: "robotApplications"))
|
633
670
|
SimulationJob.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
671
|
+
SimulationJob.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
634
672
|
SimulationJob.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
635
673
|
SimulationJob.struct_class = Types::SimulationJob
|
636
674
|
|
@@ -681,6 +719,23 @@ module Aws::RoboMaker
|
|
681
719
|
SyncDeploymentJobResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
682
720
|
SyncDeploymentJobResponse.struct_class = Types::SyncDeploymentJobResponse
|
683
721
|
|
722
|
+
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
723
|
+
|
724
|
+
TagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
725
|
+
TagMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
726
|
+
|
727
|
+
TagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
728
|
+
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "tags"))
|
729
|
+
TagResourceRequest.struct_class = Types::TagResourceRequest
|
730
|
+
|
731
|
+
TagResourceResponse.struct_class = Types::TagResourceResponse
|
732
|
+
|
733
|
+
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
734
|
+
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
735
|
+
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
736
|
+
|
737
|
+
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
738
|
+
|
684
739
|
UpdateRobotApplicationRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
685
740
|
UpdateRobotApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, required: true, location_name: "sources"))
|
686
741
|
UpdateRobotApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
|
@@ -1074,6 +1129,18 @@ module Aws::RoboMaker
|
|
1074
1129
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1075
1130
|
end)
|
1076
1131
|
|
1132
|
+
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
1133
|
+
o.name = "ListTagsForResource"
|
1134
|
+
o.http_method = "GET"
|
1135
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
1136
|
+
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
1137
|
+
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
1138
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1139
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1140
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1141
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1142
|
+
end)
|
1143
|
+
|
1077
1144
|
api.add_operation(:register_robot, Seahorse::Model::Operation.new.tap do |o|
|
1078
1145
|
o.name = "RegisterRobot"
|
1079
1146
|
o.http_method = "POST"
|
@@ -1115,6 +1182,30 @@ module Aws::RoboMaker
|
|
1115
1182
|
o.errors << Shapes::ShapeRef.new(shape: IdempotentParameterMismatchException)
|
1116
1183
|
end)
|
1117
1184
|
|
1185
|
+
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
1186
|
+
o.name = "TagResource"
|
1187
|
+
o.http_method = "POST"
|
1188
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
1189
|
+
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
1190
|
+
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
1191
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1192
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1193
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1194
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1195
|
+
end)
|
1196
|
+
|
1197
|
+
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
1198
|
+
o.name = "UntagResource"
|
1199
|
+
o.http_method = "DELETE"
|
1200
|
+
o.http_request_uri = "/tags/{resourceArn}"
|
1201
|
+
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
1202
|
+
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
1203
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1204
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1205
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1206
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1207
|
+
end)
|
1208
|
+
|
1118
1209
|
api.add_operation(:update_robot_application, Seahorse::Model::Operation.new.tap do |o|
|
1119
1210
|
o.name = "UpdateRobotApplication"
|
1120
1211
|
o.http_method = "POST"
|
@@ -78,7 +78,7 @@ module Aws::RoboMaker
|
|
78
78
|
# deployment_application_configs: [ # required
|
79
79
|
# {
|
80
80
|
# application: "Arn", # required
|
81
|
-
# application_version: "
|
81
|
+
# application_version: "DeploymentVersion", # required
|
82
82
|
# launch_config: { # required
|
83
83
|
# package_name: "GenericString", # required
|
84
84
|
# pre_launch_file: "GenericString",
|
@@ -90,6 +90,9 @@ module Aws::RoboMaker
|
|
90
90
|
# },
|
91
91
|
# },
|
92
92
|
# ],
|
93
|
+
# tags: {
|
94
|
+
# "TagKey" => "TagValue",
|
95
|
+
# },
|
93
96
|
# }
|
94
97
|
#
|
95
98
|
# @!attribute [rw] deployment_config
|
@@ -112,13 +115,19 @@ module Aws::RoboMaker
|
|
112
115
|
# The deployment application configuration.
|
113
116
|
# @return [Array<Types::DeploymentApplicationConfig>]
|
114
117
|
#
|
118
|
+
# @!attribute [rw] tags
|
119
|
+
# A map that contains tag keys and tag values that are attached to the
|
120
|
+
# deployment job.
|
121
|
+
# @return [Hash<String,String>]
|
122
|
+
#
|
115
123
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateDeploymentJobRequest AWS API Documentation
|
116
124
|
#
|
117
125
|
class CreateDeploymentJobRequest < Struct.new(
|
118
126
|
:deployment_config,
|
119
127
|
:client_request_token,
|
120
128
|
:fleet,
|
121
|
-
:deployment_application_configs
|
129
|
+
:deployment_application_configs,
|
130
|
+
:tags)
|
122
131
|
include Aws::Structure
|
123
132
|
end
|
124
133
|
|
@@ -143,7 +152,69 @@ module Aws::RoboMaker
|
|
143
152
|
# @return [String]
|
144
153
|
#
|
145
154
|
# @!attribute [rw] failure_code
|
146
|
-
# The failure code of the
|
155
|
+
# The failure code of the simulation job if it failed:
|
156
|
+
#
|
157
|
+
# BadPermissionError
|
158
|
+
#
|
159
|
+
# : AWS Greengrass requires a service-level role permission to access
|
160
|
+
# other services. The role must include the [
|
161
|
+
# `AWSGreengrassResourceAccessRolePolicy` managed policy][1].
|
162
|
+
#
|
163
|
+
# ExtractingBundleFailure
|
164
|
+
#
|
165
|
+
# : The robot application could not be extracted from the bundle.
|
166
|
+
#
|
167
|
+
# FailureThresholdBreached
|
168
|
+
#
|
169
|
+
# : The percentage of robots that could not be updated exceeded the
|
170
|
+
# percentage set for the deployment.
|
171
|
+
#
|
172
|
+
# GreengrassDeploymentFailed
|
173
|
+
#
|
174
|
+
# : The robot application could not be deployed to the robot.
|
175
|
+
#
|
176
|
+
# GreengrassGroupVersionDoesNotExist
|
177
|
+
#
|
178
|
+
# : The AWS Greengrass group or version associated with a robot is
|
179
|
+
# missing.
|
180
|
+
#
|
181
|
+
# InternalServerError
|
182
|
+
#
|
183
|
+
# : An internal error has occurred. Retry your request, but if the
|
184
|
+
# problem persists, contact us with details.
|
185
|
+
#
|
186
|
+
# MissingRobotApplicationArchitecture
|
187
|
+
#
|
188
|
+
# : The robot application does not have a source that matches the
|
189
|
+
# architecture of the robot.
|
190
|
+
#
|
191
|
+
# MissingRobotDeploymentResource
|
192
|
+
#
|
193
|
+
# : One or more of the resources specified for the robot application
|
194
|
+
# are missing. For example, does the robot application have the
|
195
|
+
# correct launch package and launch file?
|
196
|
+
#
|
197
|
+
# PostLaunchFileFailure
|
198
|
+
#
|
199
|
+
# : The post-launch script failed.
|
200
|
+
#
|
201
|
+
# PreLaunchFileFailure
|
202
|
+
#
|
203
|
+
# : The pre-launch script failed.
|
204
|
+
#
|
205
|
+
# ResourceNotFound
|
206
|
+
#
|
207
|
+
# : One or more deployment resources are missing. For example, do
|
208
|
+
# robot application source bundles still exist?
|
209
|
+
#
|
210
|
+
# RobotDeploymentNoResponse
|
211
|
+
#
|
212
|
+
# : There is no response from the robot. It might not be powered on or
|
213
|
+
# connected to the internet.
|
214
|
+
#
|
215
|
+
#
|
216
|
+
#
|
217
|
+
# [1]: https://console.aws.amazon.com/iam/home?#/policies/arn:aws:iam::aws:policy/service-role/AWSGreengrassResourceAccessRolePolicy$jsonEditor
|
147
218
|
# @return [String]
|
148
219
|
#
|
149
220
|
# @!attribute [rw] created_at
|
@@ -155,6 +226,10 @@ module Aws::RoboMaker
|
|
155
226
|
# The deployment configuration.
|
156
227
|
# @return [Types::DeploymentConfig]
|
157
228
|
#
|
229
|
+
# @!attribute [rw] tags
|
230
|
+
# The list of all tags added to the deployment job.
|
231
|
+
# @return [Hash<String,String>]
|
232
|
+
#
|
158
233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateDeploymentJobResponse AWS API Documentation
|
159
234
|
#
|
160
235
|
class CreateDeploymentJobResponse < Struct.new(
|
@@ -165,7 +240,8 @@ module Aws::RoboMaker
|
|
165
240
|
:failure_reason,
|
166
241
|
:failure_code,
|
167
242
|
:created_at,
|
168
|
-
:deployment_config
|
243
|
+
:deployment_config,
|
244
|
+
:tags)
|
169
245
|
include Aws::Structure
|
170
246
|
end
|
171
247
|
|
@@ -174,16 +250,25 @@ module Aws::RoboMaker
|
|
174
250
|
#
|
175
251
|
# {
|
176
252
|
# name: "Name", # required
|
253
|
+
# tags: {
|
254
|
+
# "TagKey" => "TagValue",
|
255
|
+
# },
|
177
256
|
# }
|
178
257
|
#
|
179
258
|
# @!attribute [rw] name
|
180
259
|
# The name of the fleet.
|
181
260
|
# @return [String]
|
182
261
|
#
|
262
|
+
# @!attribute [rw] tags
|
263
|
+
# A map that contains tag keys and tag values that are attached to the
|
264
|
+
# fleet.
|
265
|
+
# @return [Hash<String,String>]
|
266
|
+
#
|
183
267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateFleetRequest AWS API Documentation
|
184
268
|
#
|
185
269
|
class CreateFleetRequest < Struct.new(
|
186
|
-
:name
|
270
|
+
:name,
|
271
|
+
:tags)
|
187
272
|
include Aws::Structure
|
188
273
|
end
|
189
274
|
|
@@ -200,12 +285,17 @@ module Aws::RoboMaker
|
|
200
285
|
# created.
|
201
286
|
# @return [Time]
|
202
287
|
#
|
288
|
+
# @!attribute [rw] tags
|
289
|
+
# The list of all tags added to the fleet.
|
290
|
+
# @return [Hash<String,String>]
|
291
|
+
#
|
203
292
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateFleetResponse AWS API Documentation
|
204
293
|
#
|
205
294
|
class CreateFleetResponse < Struct.new(
|
206
295
|
:arn,
|
207
296
|
:name,
|
208
|
-
:created_at
|
297
|
+
:created_at,
|
298
|
+
:tags)
|
209
299
|
include Aws::Structure
|
210
300
|
end
|
211
301
|
|
@@ -225,6 +315,9 @@ module Aws::RoboMaker
|
|
225
315
|
# name: "ROS", # accepts ROS
|
226
316
|
# version: "Kinetic", # accepts Kinetic
|
227
317
|
# },
|
318
|
+
# tags: {
|
319
|
+
# "TagKey" => "TagValue",
|
320
|
+
# },
|
228
321
|
# }
|
229
322
|
#
|
230
323
|
# @!attribute [rw] name
|
@@ -239,12 +332,18 @@ module Aws::RoboMaker
|
|
239
332
|
# The robot software suite used by the robot application.
|
240
333
|
# @return [Types::RobotSoftwareSuite]
|
241
334
|
#
|
335
|
+
# @!attribute [rw] tags
|
336
|
+
# A map that contains tag keys and tag values that are attached to the
|
337
|
+
# robot application.
|
338
|
+
# @return [Hash<String,String>]
|
339
|
+
#
|
242
340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationRequest AWS API Documentation
|
243
341
|
#
|
244
342
|
class CreateRobotApplicationRequest < Struct.new(
|
245
343
|
:name,
|
246
344
|
:sources,
|
247
|
-
:robot_software_suite
|
345
|
+
:robot_software_suite,
|
346
|
+
:tags)
|
248
347
|
include Aws::Structure
|
249
348
|
end
|
250
349
|
|
@@ -277,6 +376,10 @@ module Aws::RoboMaker
|
|
277
376
|
# The revision id of the robot application.
|
278
377
|
# @return [String]
|
279
378
|
#
|
379
|
+
# @!attribute [rw] tags
|
380
|
+
# The list of all tags added to the robot application.
|
381
|
+
# @return [Hash<String,String>]
|
382
|
+
#
|
280
383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationResponse AWS API Documentation
|
281
384
|
#
|
282
385
|
class CreateRobotApplicationResponse < Struct.new(
|
@@ -286,7 +389,8 @@ module Aws::RoboMaker
|
|
286
389
|
:sources,
|
287
390
|
:robot_software_suite,
|
288
391
|
:last_updated_at,
|
289
|
-
:revision_id
|
392
|
+
:revision_id,
|
393
|
+
:tags)
|
290
394
|
include Aws::Structure
|
291
395
|
end
|
292
396
|
|
@@ -365,6 +469,9 @@ module Aws::RoboMaker
|
|
365
469
|
# name: "Name", # required
|
366
470
|
# architecture: "X86_64", # required, accepts X86_64, ARM64, ARMHF
|
367
471
|
# greengrass_group_id: "Id", # required
|
472
|
+
# tags: {
|
473
|
+
# "TagKey" => "TagValue",
|
474
|
+
# },
|
368
475
|
# }
|
369
476
|
#
|
370
477
|
# @!attribute [rw] name
|
@@ -379,12 +486,18 @@ module Aws::RoboMaker
|
|
379
486
|
# The Greengrass group id.
|
380
487
|
# @return [String]
|
381
488
|
#
|
489
|
+
# @!attribute [rw] tags
|
490
|
+
# A map that contains tag keys and tag values that are attached to the
|
491
|
+
# robot.
|
492
|
+
# @return [Hash<String,String>]
|
493
|
+
#
|
382
494
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotRequest AWS API Documentation
|
383
495
|
#
|
384
496
|
class CreateRobotRequest < Struct.new(
|
385
497
|
:name,
|
386
498
|
:architecture,
|
387
|
-
:greengrass_group_id
|
499
|
+
:greengrass_group_id,
|
500
|
+
:tags)
|
388
501
|
include Aws::Structure
|
389
502
|
end
|
390
503
|
|
@@ -410,6 +523,10 @@ module Aws::RoboMaker
|
|
410
523
|
# The target architecture of the robot.
|
411
524
|
# @return [String]
|
412
525
|
#
|
526
|
+
# @!attribute [rw] tags
|
527
|
+
# The list of all tags added to the robot.
|
528
|
+
# @return [Hash<String,String>]
|
529
|
+
#
|
413
530
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotResponse AWS API Documentation
|
414
531
|
#
|
415
532
|
class CreateRobotResponse < Struct.new(
|
@@ -417,7 +534,8 @@ module Aws::RoboMaker
|
|
417
534
|
:name,
|
418
535
|
:created_at,
|
419
536
|
:greengrass_group_id,
|
420
|
-
:architecture
|
537
|
+
:architecture,
|
538
|
+
:tags)
|
421
539
|
include Aws::Structure
|
422
540
|
end
|
423
541
|
|
@@ -445,6 +563,9 @@ module Aws::RoboMaker
|
|
445
563
|
# name: "OGRE", # accepts OGRE
|
446
564
|
# version: "RenderingEngineVersionType",
|
447
565
|
# },
|
566
|
+
# tags: {
|
567
|
+
# "TagKey" => "TagValue",
|
568
|
+
# },
|
448
569
|
# }
|
449
570
|
#
|
450
571
|
# @!attribute [rw] name
|
@@ -467,6 +588,11 @@ module Aws::RoboMaker
|
|
467
588
|
# The rendering engine for the simulation application.
|
468
589
|
# @return [Types::RenderingEngine]
|
469
590
|
#
|
591
|
+
# @!attribute [rw] tags
|
592
|
+
# A map that contains tag keys and tag values that are attached to the
|
593
|
+
# simulation application.
|
594
|
+
# @return [Hash<String,String>]
|
595
|
+
#
|
470
596
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationRequest AWS API Documentation
|
471
597
|
#
|
472
598
|
class CreateSimulationApplicationRequest < Struct.new(
|
@@ -474,7 +600,8 @@ module Aws::RoboMaker
|
|
474
600
|
:sources,
|
475
601
|
:simulation_software_suite,
|
476
602
|
:robot_software_suite,
|
477
|
-
:rendering_engine
|
603
|
+
:rendering_engine,
|
604
|
+
:tags)
|
478
605
|
include Aws::Structure
|
479
606
|
end
|
480
607
|
|
@@ -515,6 +642,10 @@ module Aws::RoboMaker
|
|
515
642
|
# The revision id of the simulation application.
|
516
643
|
# @return [String]
|
517
644
|
#
|
645
|
+
# @!attribute [rw] tags
|
646
|
+
# The list of all tags added to the simulation application.
|
647
|
+
# @return [Hash<String,String>]
|
648
|
+
#
|
518
649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationResponse AWS API Documentation
|
519
650
|
#
|
520
651
|
class CreateSimulationApplicationResponse < Struct.new(
|
@@ -526,7 +657,8 @@ module Aws::RoboMaker
|
|
526
657
|
:robot_software_suite,
|
527
658
|
:rendering_engine,
|
528
659
|
:last_updated_at,
|
529
|
-
:revision_id
|
660
|
+
:revision_id,
|
661
|
+
:tags)
|
530
662
|
include Aws::Structure
|
531
663
|
end
|
532
664
|
|
@@ -646,6 +778,9 @@ module Aws::RoboMaker
|
|
646
778
|
# },
|
647
779
|
# },
|
648
780
|
# ],
|
781
|
+
# tags: {
|
782
|
+
# "TagKey" => "TagValue",
|
783
|
+
# },
|
649
784
|
# vpc_config: {
|
650
785
|
# subnets: ["GenericString"], # required
|
651
786
|
# security_groups: ["GenericString"],
|
@@ -672,14 +807,10 @@ module Aws::RoboMaker
|
|
672
807
|
# @return [Integer]
|
673
808
|
#
|
674
809
|
# @!attribute [rw] iam_role
|
675
|
-
# The IAM role that allows the simulation instance to call the
|
676
|
-
# APIs that are specified in its associated policies on your
|
677
|
-
# This is how credentials are passed in to your simulation
|
678
|
-
#
|
679
|
-
#
|
680
|
-
#
|
681
|
-
#
|
682
|
-
# [1]: https://docs.aws.amazon.com/toolkit-for-visual-studio/latest/user-guide/deployment-ecs-specify-credentials
|
810
|
+
# The IAM role name that allows the simulation instance to call the
|
811
|
+
# AWS APIs that are specified in its associated policies on your
|
812
|
+
# behalf. This is how credentials are passed in to your simulation
|
813
|
+
# job.
|
683
814
|
# @return [String]
|
684
815
|
#
|
685
816
|
# @!attribute [rw] failure_behavior
|
@@ -702,6 +833,11 @@ module Aws::RoboMaker
|
|
702
833
|
# The simulation application to use in the simulation job.
|
703
834
|
# @return [Array<Types::SimulationApplicationConfig>]
|
704
835
|
#
|
836
|
+
# @!attribute [rw] tags
|
837
|
+
# A map that contains tag keys and tag values that are attached to the
|
838
|
+
# simulation job.
|
839
|
+
# @return [Hash<String,String>]
|
840
|
+
#
|
705
841
|
# @!attribute [rw] vpc_config
|
706
842
|
# If your simulation job accesses resources in a VPC, you provide this
|
707
843
|
# parameter identifying the list of security group IDs and subnet IDs.
|
@@ -719,6 +855,7 @@ module Aws::RoboMaker
|
|
719
855
|
:failure_behavior,
|
720
856
|
:robot_applications,
|
721
857
|
:simulation_applications,
|
858
|
+
:tags,
|
722
859
|
:vpc_config)
|
723
860
|
include Aws::Structure
|
724
861
|
end
|
@@ -741,7 +878,68 @@ module Aws::RoboMaker
|
|
741
878
|
# @return [String]
|
742
879
|
#
|
743
880
|
# @!attribute [rw] failure_code
|
744
|
-
# The failure code of the simulation job if it failed
|
881
|
+
# The failure code of the simulation job if it failed:
|
882
|
+
#
|
883
|
+
# InternalServiceError
|
884
|
+
#
|
885
|
+
# : Internal service error.
|
886
|
+
#
|
887
|
+
# RobotApplicationCrash
|
888
|
+
#
|
889
|
+
# : Robot application exited abnormally.
|
890
|
+
#
|
891
|
+
# SimulationApplicationCrash
|
892
|
+
#
|
893
|
+
# : Simulation application exited abnormally.
|
894
|
+
#
|
895
|
+
# BadPermissionsRobotApplication
|
896
|
+
#
|
897
|
+
# : Robot application bundle could not be downloaded.
|
898
|
+
#
|
899
|
+
# BadPermissionsSimulationApplication
|
900
|
+
#
|
901
|
+
# : Simulation application bundle could not be downloaded.
|
902
|
+
#
|
903
|
+
# BadPermissionsS3Output
|
904
|
+
#
|
905
|
+
# : Unable to publish outputs to customer-provided S3 bucket.
|
906
|
+
#
|
907
|
+
# BadPermissionsCloudwatchLogs
|
908
|
+
#
|
909
|
+
# : Unable to publish logs to customer-provided CloudWatch Logs
|
910
|
+
# resource.
|
911
|
+
#
|
912
|
+
# SubnetIpLimitExceeded
|
913
|
+
#
|
914
|
+
# : Subnet IP limit exceeded.
|
915
|
+
#
|
916
|
+
# ENILimitExceeded
|
917
|
+
#
|
918
|
+
# : ENI limit exceeded.
|
919
|
+
#
|
920
|
+
# BadPermissionsUserCredentials
|
921
|
+
#
|
922
|
+
# : Unable to use the Role provided.
|
923
|
+
#
|
924
|
+
# InvalidBundleRobotApplication
|
925
|
+
#
|
926
|
+
# : Robot bundle cannot be extracted (invalid format, bundling error,
|
927
|
+
# or other issue).
|
928
|
+
#
|
929
|
+
# InvalidBundleSimulationApplication
|
930
|
+
#
|
931
|
+
# : Simulation bundle cannot be extracted (invalid format, bundling
|
932
|
+
# error, or other issue).
|
933
|
+
#
|
934
|
+
# RobotApplicationVersionMismatchedEtag
|
935
|
+
#
|
936
|
+
# : Etag for RobotApplication does not match value during version
|
937
|
+
# creation.
|
938
|
+
#
|
939
|
+
# SimulationApplicationVersionMismatchedEtag
|
940
|
+
#
|
941
|
+
# : Etag for SimulationApplication does not match value during version
|
942
|
+
# creation.
|
745
943
|
# @return [String]
|
746
944
|
#
|
747
945
|
# @!attribute [rw] client_request_token
|
@@ -775,6 +973,10 @@ module Aws::RoboMaker
|
|
775
973
|
# The simulation application used by the simulation job.
|
776
974
|
# @return [Array<Types::SimulationApplicationConfig>]
|
777
975
|
#
|
976
|
+
# @!attribute [rw] tags
|
977
|
+
# The list of all tags added to the simulation job.
|
978
|
+
# @return [Hash<String,String>]
|
979
|
+
#
|
778
980
|
# @!attribute [rw] vpc_config
|
779
981
|
# Information about the vpc configuration.
|
780
982
|
# @return [Types::VPCConfigResponse]
|
@@ -794,6 +996,7 @@ module Aws::RoboMaker
|
|
794
996
|
:iam_role,
|
795
997
|
:robot_applications,
|
796
998
|
:simulation_applications,
|
999
|
+
:tags,
|
797
1000
|
:vpc_config)
|
798
1001
|
include Aws::Structure
|
799
1002
|
end
|
@@ -906,7 +1109,7 @@ module Aws::RoboMaker
|
|
906
1109
|
#
|
907
1110
|
# {
|
908
1111
|
# application: "Arn", # required
|
909
|
-
# application_version: "
|
1112
|
+
# application_version: "DeploymentVersion", # required
|
910
1113
|
# launch_config: { # required
|
911
1114
|
# package_name: "GenericString", # required
|
912
1115
|
# pre_launch_file: "GenericString",
|
@@ -919,7 +1122,7 @@ module Aws::RoboMaker
|
|
919
1122
|
# }
|
920
1123
|
#
|
921
1124
|
# @!attribute [rw] application
|
922
|
-
# The application.
|
1125
|
+
# The Amazon Resource Name (ARN) of the robot application.
|
923
1126
|
# @return [String]
|
924
1127
|
#
|
925
1128
|
# @!attribute [rw] application_version
|
@@ -927,7 +1130,7 @@ module Aws::RoboMaker
|
|
927
1130
|
# @return [String]
|
928
1131
|
#
|
929
1132
|
# @!attribute [rw] launch_config
|
930
|
-
# The launch configuration
|
1133
|
+
# The launch configuration.
|
931
1134
|
# @return [Types::DeploymentLaunchConfig]
|
932
1135
|
#
|
933
1136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentApplicationConfig AWS API Documentation
|
@@ -1036,21 +1239,21 @@ module Aws::RoboMaker
|
|
1036
1239
|
#
|
1037
1240
|
# @!attribute [rw] pre_launch_file
|
1038
1241
|
# The deployment pre-launch file. This file will be executed prior to
|
1039
|
-
# the
|
1242
|
+
# the launch file.
|
1040
1243
|
# @return [String]
|
1041
1244
|
#
|
1042
1245
|
# @!attribute [rw] launch_file
|
1043
|
-
# The
|
1246
|
+
# The launch file name.
|
1044
1247
|
# @return [String]
|
1045
1248
|
#
|
1046
1249
|
# @!attribute [rw] post_launch_file
|
1047
1250
|
# The deployment post-launch file. This file will be executed after
|
1048
|
-
# the
|
1251
|
+
# the launch file.
|
1049
1252
|
# @return [String]
|
1050
1253
|
#
|
1051
1254
|
# @!attribute [rw] environment_variables
|
1052
1255
|
# An array of key/value pairs specifying environment variables for the
|
1053
|
-
#
|
1256
|
+
# robot application
|
1054
1257
|
# @return [Hash<String,String>]
|
1055
1258
|
#
|
1056
1259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentLaunchConfig AWS API Documentation
|
@@ -1159,6 +1362,10 @@ module Aws::RoboMaker
|
|
1159
1362
|
# A list of robot deployment summaries.
|
1160
1363
|
# @return [Array<Types::RobotDeployment>]
|
1161
1364
|
#
|
1365
|
+
# @!attribute [rw] tags
|
1366
|
+
# The list of all tags added to the specified deployment job.
|
1367
|
+
# @return [Hash<String,String>]
|
1368
|
+
#
|
1162
1369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJobResponse AWS API Documentation
|
1163
1370
|
#
|
1164
1371
|
class DescribeDeploymentJobResponse < Struct.new(
|
@@ -1170,7 +1377,8 @@ module Aws::RoboMaker
|
|
1170
1377
|
:failure_reason,
|
1171
1378
|
:failure_code,
|
1172
1379
|
:created_at,
|
1173
|
-
:robot_deployment_summary
|
1380
|
+
:robot_deployment_summary,
|
1381
|
+
:tags)
|
1174
1382
|
include Aws::Structure
|
1175
1383
|
end
|
1176
1384
|
|
@@ -1221,6 +1429,10 @@ module Aws::RoboMaker
|
|
1221
1429
|
# The time of the last deployment.
|
1222
1430
|
# @return [Time]
|
1223
1431
|
#
|
1432
|
+
# @!attribute [rw] tags
|
1433
|
+
# The list of all tags added to the specified fleet.
|
1434
|
+
# @return [Hash<String,String>]
|
1435
|
+
#
|
1224
1436
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleetResponse AWS API Documentation
|
1225
1437
|
#
|
1226
1438
|
class DescribeFleetResponse < Struct.new(
|
@@ -1230,7 +1442,8 @@ module Aws::RoboMaker
|
|
1230
1442
|
:created_at,
|
1231
1443
|
:last_deployment_status,
|
1232
1444
|
:last_deployment_job,
|
1233
|
-
:last_deployment_time
|
1445
|
+
:last_deployment_time,
|
1446
|
+
:tags)
|
1234
1447
|
include Aws::Structure
|
1235
1448
|
end
|
1236
1449
|
|
@@ -1287,6 +1500,10 @@ module Aws::RoboMaker
|
|
1287
1500
|
# application was last updated.
|
1288
1501
|
# @return [Time]
|
1289
1502
|
#
|
1503
|
+
# @!attribute [rw] tags
|
1504
|
+
# The list of all tags added to the specified robot application.
|
1505
|
+
# @return [Hash<String,String>]
|
1506
|
+
#
|
1290
1507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplicationResponse AWS API Documentation
|
1291
1508
|
#
|
1292
1509
|
class DescribeRobotApplicationResponse < Struct.new(
|
@@ -1296,7 +1513,8 @@ module Aws::RoboMaker
|
|
1296
1513
|
:sources,
|
1297
1514
|
:robot_software_suite,
|
1298
1515
|
:revision_id,
|
1299
|
-
:last_updated_at
|
1516
|
+
:last_updated_at,
|
1517
|
+
:tags)
|
1300
1518
|
include Aws::Structure
|
1301
1519
|
end
|
1302
1520
|
|
@@ -1355,6 +1573,10 @@ module Aws::RoboMaker
|
|
1355
1573
|
# The time of the last deployment job.
|
1356
1574
|
# @return [Time]
|
1357
1575
|
#
|
1576
|
+
# @!attribute [rw] tags
|
1577
|
+
# The list of all tags added to the specified robot.
|
1578
|
+
# @return [Hash<String,String>]
|
1579
|
+
#
|
1358
1580
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotResponse AWS API Documentation
|
1359
1581
|
#
|
1360
1582
|
class DescribeRobotResponse < Struct.new(
|
@@ -1366,7 +1588,8 @@ module Aws::RoboMaker
|
|
1366
1588
|
:created_at,
|
1367
1589
|
:architecture,
|
1368
1590
|
:last_deployment_job,
|
1369
|
-
:last_deployment_time
|
1591
|
+
:last_deployment_time,
|
1592
|
+
:tags)
|
1370
1593
|
include Aws::Structure
|
1371
1594
|
end
|
1372
1595
|
|
@@ -1431,6 +1654,10 @@ module Aws::RoboMaker
|
|
1431
1654
|
# application was last updated.
|
1432
1655
|
# @return [Time]
|
1433
1656
|
#
|
1657
|
+
# @!attribute [rw] tags
|
1658
|
+
# The list of all tags added to the specified simulation application.
|
1659
|
+
# @return [Hash<String,String>]
|
1660
|
+
#
|
1434
1661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplicationResponse AWS API Documentation
|
1435
1662
|
#
|
1436
1663
|
class DescribeSimulationApplicationResponse < Struct.new(
|
@@ -1442,7 +1669,8 @@ module Aws::RoboMaker
|
|
1442
1669
|
:robot_software_suite,
|
1443
1670
|
:rendering_engine,
|
1444
1671
|
:revision_id,
|
1445
|
-
:last_updated_at
|
1672
|
+
:last_updated_at,
|
1673
|
+
:tags)
|
1446
1674
|
include Aws::Structure
|
1447
1675
|
end
|
1448
1676
|
|
@@ -1491,64 +1719,73 @@ module Aws::RoboMaker
|
|
1491
1719
|
#
|
1492
1720
|
# InternalServiceError
|
1493
1721
|
#
|
1494
|
-
# : Internal service error
|
1722
|
+
# : Internal service error.
|
1495
1723
|
#
|
1496
1724
|
# RobotApplicationCrash
|
1497
1725
|
#
|
1498
|
-
# : Robot application exited abnormally
|
1726
|
+
# : Robot application exited abnormally.
|
1499
1727
|
#
|
1500
1728
|
# SimulationApplicationCrash
|
1501
1729
|
#
|
1502
|
-
# : Simulation application exited abnormally
|
1730
|
+
# : Simulation application exited abnormally.
|
1503
1731
|
#
|
1504
1732
|
# BadPermissionsRobotApplication
|
1505
1733
|
#
|
1506
|
-
# : Robot application bundle could not be downloaded
|
1734
|
+
# : Robot application bundle could not be downloaded.
|
1507
1735
|
#
|
1508
1736
|
# BadPermissionsSimulationApplication
|
1509
1737
|
#
|
1510
|
-
# : Simulation application bundle could not be downloaded
|
1738
|
+
# : Simulation application bundle could not be downloaded.
|
1511
1739
|
#
|
1512
1740
|
# BadPermissionsS3Output
|
1513
1741
|
#
|
1514
|
-
# : Unable to publish outputs to customer-provided S3 bucket
|
1742
|
+
# : Unable to publish outputs to customer-provided S3 bucket.
|
1515
1743
|
#
|
1516
1744
|
# BadPermissionsCloudwatchLogs
|
1517
1745
|
#
|
1518
1746
|
# : Unable to publish logs to customer-provided CloudWatch Logs
|
1519
|
-
# resource
|
1747
|
+
# resource.
|
1520
1748
|
#
|
1521
1749
|
# SubnetIpLimitExceeded
|
1522
1750
|
#
|
1523
|
-
# : Subnet IP limit exceeded
|
1751
|
+
# : Subnet IP limit exceeded.
|
1524
1752
|
#
|
1525
1753
|
# ENILimitExceeded
|
1526
1754
|
#
|
1527
|
-
# : ENI limit exceeded
|
1755
|
+
# : ENI limit exceeded.
|
1528
1756
|
#
|
1529
1757
|
# BadPermissionsUserCredentials
|
1530
1758
|
#
|
1531
|
-
# : Unable to use the Role provided
|
1759
|
+
# : Unable to use the Role provided.
|
1532
1760
|
#
|
1533
1761
|
# InvalidBundleRobotApplication
|
1534
1762
|
#
|
1535
1763
|
# : Robot bundle cannot be extracted (invalid format, bundling error,
|
1536
|
-
#
|
1764
|
+
# or other issue).
|
1537
1765
|
#
|
1538
1766
|
# InvalidBundleSimulationApplication
|
1539
1767
|
#
|
1540
1768
|
# : Simulation bundle cannot be extracted (invalid format, bundling
|
1541
|
-
# error,
|
1769
|
+
# error, or other issue).
|
1542
1770
|
#
|
1543
1771
|
# RobotApplicationVersionMismatchedEtag
|
1544
1772
|
#
|
1545
1773
|
# : Etag for RobotApplication does not match value during version
|
1546
|
-
# creation
|
1774
|
+
# creation.
|
1547
1775
|
#
|
1548
1776
|
# SimulationApplicationVersionMismatchedEtag
|
1549
1777
|
#
|
1550
1778
|
# : Etag for SimulationApplication does not match value during version
|
1551
|
-
# creation
|
1779
|
+
# creation.
|
1780
|
+
# @return [String]
|
1781
|
+
#
|
1782
|
+
# @!attribute [rw] failure_reason
|
1783
|
+
# Details about why the simulation job failed. For more information
|
1784
|
+
# about troubleshooting, see [Troubleshooting][1].
|
1785
|
+
#
|
1786
|
+
#
|
1787
|
+
#
|
1788
|
+
# [1]: https://docs.aws.amazon.com/robomaker/latest/dg/troubleshooting.html
|
1552
1789
|
# @return [String]
|
1553
1790
|
#
|
1554
1791
|
# @!attribute [rw] client_request_token
|
@@ -1582,6 +1819,10 @@ module Aws::RoboMaker
|
|
1582
1819
|
# A list of simulation applications.
|
1583
1820
|
# @return [Array<Types::SimulationApplicationConfig>]
|
1584
1821
|
#
|
1822
|
+
# @!attribute [rw] tags
|
1823
|
+
# The list of all tags added to the specified simulation job.
|
1824
|
+
# @return [Hash<String,String>]
|
1825
|
+
#
|
1585
1826
|
# @!attribute [rw] vpc_config
|
1586
1827
|
# The VPC configuration.
|
1587
1828
|
# @return [Types::VPCConfigResponse]
|
@@ -1595,6 +1836,7 @@ module Aws::RoboMaker
|
|
1595
1836
|
:last_updated_at,
|
1596
1837
|
:failure_behavior,
|
1597
1838
|
:failure_code,
|
1839
|
+
:failure_reason,
|
1598
1840
|
:client_request_token,
|
1599
1841
|
:output_location,
|
1600
1842
|
:max_job_duration_in_seconds,
|
@@ -1602,6 +1844,7 @@ module Aws::RoboMaker
|
|
1602
1844
|
:iam_role,
|
1603
1845
|
:robot_applications,
|
1604
1846
|
:simulation_applications,
|
1847
|
+
:tags,
|
1605
1848
|
:vpc_config)
|
1606
1849
|
include Aws::Structure
|
1607
1850
|
end
|
@@ -1689,7 +1932,7 @@ module Aws::RoboMaker
|
|
1689
1932
|
# @return [String]
|
1690
1933
|
#
|
1691
1934
|
# @!attribute [rw] launch_file
|
1692
|
-
# The launch file.
|
1935
|
+
# The launch file name.
|
1693
1936
|
# @return [String]
|
1694
1937
|
#
|
1695
1938
|
# @!attribute [rw] environment_variables
|
@@ -2154,6 +2397,35 @@ module Aws::RoboMaker
|
|
2154
2397
|
include Aws::Structure
|
2155
2398
|
end
|
2156
2399
|
|
2400
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2401
|
+
# data as a hash:
|
2402
|
+
#
|
2403
|
+
# {
|
2404
|
+
# resource_arn: "Arn", # required
|
2405
|
+
# }
|
2406
|
+
#
|
2407
|
+
# @!attribute [rw] resource_arn
|
2408
|
+
# The AWS RoboMaker Amazon Resource Name (ARN) with tags to be listed.
|
2409
|
+
# @return [String]
|
2410
|
+
#
|
2411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListTagsForResourceRequest AWS API Documentation
|
2412
|
+
#
|
2413
|
+
class ListTagsForResourceRequest < Struct.new(
|
2414
|
+
:resource_arn)
|
2415
|
+
include Aws::Structure
|
2416
|
+
end
|
2417
|
+
|
2418
|
+
# @!attribute [rw] tags
|
2419
|
+
# The list of all tags added to the specified resource.
|
2420
|
+
# @return [Hash<String,String>]
|
2421
|
+
#
|
2422
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListTagsForResourceResponse AWS API Documentation
|
2423
|
+
#
|
2424
|
+
class ListTagsForResourceResponse < Struct.new(
|
2425
|
+
:tags)
|
2426
|
+
include Aws::Structure
|
2427
|
+
end
|
2428
|
+
|
2157
2429
|
# The output location.
|
2158
2430
|
#
|
2159
2431
|
# @note When making an API call, you may pass OutputLocation
|
@@ -2581,6 +2853,10 @@ module Aws::RoboMaker
|
|
2581
2853
|
# The failure code of the simulation job if it failed.
|
2582
2854
|
# @return [String]
|
2583
2855
|
#
|
2856
|
+
# @!attribute [rw] failure_reason
|
2857
|
+
# The reason why the simulation job failed.
|
2858
|
+
# @return [String]
|
2859
|
+
#
|
2584
2860
|
# @!attribute [rw] client_request_token
|
2585
2861
|
# A unique identifier for this `SimulationJob` request.
|
2586
2862
|
# @return [String]
|
@@ -2617,6 +2893,11 @@ module Aws::RoboMaker
|
|
2617
2893
|
# A list of simulation applications.
|
2618
2894
|
# @return [Array<Types::SimulationApplicationConfig>]
|
2619
2895
|
#
|
2896
|
+
# @!attribute [rw] tags
|
2897
|
+
# A map that contains tag keys and tag values that are attached to the
|
2898
|
+
# simulation job.
|
2899
|
+
# @return [Hash<String,String>]
|
2900
|
+
#
|
2620
2901
|
# @!attribute [rw] vpc_config
|
2621
2902
|
# VPC configuration information.
|
2622
2903
|
# @return [Types::VPCConfigResponse]
|
@@ -2630,6 +2911,7 @@ module Aws::RoboMaker
|
|
2630
2911
|
:last_updated_at,
|
2631
2912
|
:failure_behavior,
|
2632
2913
|
:failure_code,
|
2914
|
+
:failure_reason,
|
2633
2915
|
:client_request_token,
|
2634
2916
|
:output_location,
|
2635
2917
|
:max_job_duration_in_seconds,
|
@@ -2637,6 +2919,7 @@ module Aws::RoboMaker
|
|
2637
2919
|
:iam_role,
|
2638
2920
|
:robot_applications,
|
2639
2921
|
:simulation_applications,
|
2922
|
+
:tags,
|
2640
2923
|
:vpc_config)
|
2641
2924
|
include Aws::Structure
|
2642
2925
|
end
|
@@ -2819,7 +3102,68 @@ module Aws::RoboMaker
|
|
2819
3102
|
# @return [String]
|
2820
3103
|
#
|
2821
3104
|
# @!attribute [rw] failure_code
|
2822
|
-
# The failure code if the job fails
|
3105
|
+
# The failure code if the job fails:
|
3106
|
+
#
|
3107
|
+
# InternalServiceError
|
3108
|
+
#
|
3109
|
+
# : Internal service error.
|
3110
|
+
#
|
3111
|
+
# RobotApplicationCrash
|
3112
|
+
#
|
3113
|
+
# : Robot application exited abnormally.
|
3114
|
+
#
|
3115
|
+
# SimulationApplicationCrash
|
3116
|
+
#
|
3117
|
+
# : Simulation application exited abnormally.
|
3118
|
+
#
|
3119
|
+
# BadPermissionsRobotApplication
|
3120
|
+
#
|
3121
|
+
# : Robot application bundle could not be downloaded.
|
3122
|
+
#
|
3123
|
+
# BadPermissionsSimulationApplication
|
3124
|
+
#
|
3125
|
+
# : Simulation application bundle could not be downloaded.
|
3126
|
+
#
|
3127
|
+
# BadPermissionsS3Output
|
3128
|
+
#
|
3129
|
+
# : Unable to publish outputs to customer-provided S3 bucket.
|
3130
|
+
#
|
3131
|
+
# BadPermissionsCloudwatchLogs
|
3132
|
+
#
|
3133
|
+
# : Unable to publish logs to customer-provided CloudWatch Logs
|
3134
|
+
# resource.
|
3135
|
+
#
|
3136
|
+
# SubnetIpLimitExceeded
|
3137
|
+
#
|
3138
|
+
# : Subnet IP limit exceeded.
|
3139
|
+
#
|
3140
|
+
# ENILimitExceeded
|
3141
|
+
#
|
3142
|
+
# : ENI limit exceeded.
|
3143
|
+
#
|
3144
|
+
# BadPermissionsUserCredentials
|
3145
|
+
#
|
3146
|
+
# : Unable to use the Role provided.
|
3147
|
+
#
|
3148
|
+
# InvalidBundleRobotApplication
|
3149
|
+
#
|
3150
|
+
# : Robot bundle cannot be extracted (invalid format, bundling error,
|
3151
|
+
# or other issue).
|
3152
|
+
#
|
3153
|
+
# InvalidBundleSimulationApplication
|
3154
|
+
#
|
3155
|
+
# : Simulation bundle cannot be extracted (invalid format, bundling
|
3156
|
+
# error, or other issue).
|
3157
|
+
#
|
3158
|
+
# RobotApplicationVersionMismatchedEtag
|
3159
|
+
#
|
3160
|
+
# : Etag for RobotApplication does not match value during version
|
3161
|
+
# creation.
|
3162
|
+
#
|
3163
|
+
# SimulationApplicationVersionMismatchedEtag
|
3164
|
+
#
|
3165
|
+
# : Etag for SimulationApplication does not match value during version
|
3166
|
+
# creation.
|
2823
3167
|
# @return [String]
|
2824
3168
|
#
|
2825
3169
|
# @!attribute [rw] created_at
|
@@ -2841,6 +3185,68 @@ module Aws::RoboMaker
|
|
2841
3185
|
include Aws::Structure
|
2842
3186
|
end
|
2843
3187
|
|
3188
|
+
# @note When making an API call, you may pass TagResourceRequest
|
3189
|
+
# data as a hash:
|
3190
|
+
#
|
3191
|
+
# {
|
3192
|
+
# resource_arn: "Arn", # required
|
3193
|
+
# tags: { # required
|
3194
|
+
# "TagKey" => "TagValue",
|
3195
|
+
# },
|
3196
|
+
# }
|
3197
|
+
#
|
3198
|
+
# @!attribute [rw] resource_arn
|
3199
|
+
# The Amazon Resource Name (ARN) of the AWS RoboMaker resource you are
|
3200
|
+
# tagging.
|
3201
|
+
# @return [String]
|
3202
|
+
#
|
3203
|
+
# @!attribute [rw] tags
|
3204
|
+
# A map that contains tag keys and tag values that are attached to the
|
3205
|
+
# resource.
|
3206
|
+
# @return [Hash<String,String>]
|
3207
|
+
#
|
3208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/TagResourceRequest AWS API Documentation
|
3209
|
+
#
|
3210
|
+
class TagResourceRequest < Struct.new(
|
3211
|
+
:resource_arn,
|
3212
|
+
:tags)
|
3213
|
+
include Aws::Structure
|
3214
|
+
end
|
3215
|
+
|
3216
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/TagResourceResponse AWS API Documentation
|
3217
|
+
#
|
3218
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
3219
|
+
|
3220
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
3221
|
+
# data as a hash:
|
3222
|
+
#
|
3223
|
+
# {
|
3224
|
+
# resource_arn: "Arn", # required
|
3225
|
+
# tag_keys: ["TagKey"], # required
|
3226
|
+
# }
|
3227
|
+
#
|
3228
|
+
# @!attribute [rw] resource_arn
|
3229
|
+
# The Amazon Resource Name (ARN) of the AWS RoboMaker resource you are
|
3230
|
+
# removing tags.
|
3231
|
+
# @return [String]
|
3232
|
+
#
|
3233
|
+
# @!attribute [rw] tag_keys
|
3234
|
+
# A map that contains tag keys and tag values that will be unattached
|
3235
|
+
# from the resource.
|
3236
|
+
# @return [Array<String>]
|
3237
|
+
#
|
3238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UntagResourceRequest AWS API Documentation
|
3239
|
+
#
|
3240
|
+
class UntagResourceRequest < Struct.new(
|
3241
|
+
:resource_arn,
|
3242
|
+
:tag_keys)
|
3243
|
+
include Aws::Structure
|
3244
|
+
end
|
3245
|
+
|
3246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UntagResourceResponse AWS API Documentation
|
3247
|
+
#
|
3248
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
3249
|
+
|
2844
3250
|
# @note When making an API call, you may pass UpdateRobotApplicationRequest
|
2845
3251
|
# data as a hash:
|
2846
3252
|
#
|