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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e63d21e2e3e86dfc7bf037beaee7757bd0facd5
|
4
|
+
data.tar.gz: f35d21f6301722750a793cb6e016c52148fbee66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcfe6a52128c5ee4e00b2a28cd7e01c677ca54379d57551e9b4cdfd07301abaade24656fb6db044815814d1c91d4bd2de01a28452515be1119f667479f079607
|
7
|
+
data.tar.gz: 9b82610d87e32cf9ba1c507cee935b6445a36d714f994bf602f6f3418aea1e7069da06011761494baad6f6a39f06ef8a83ee1083ebf7f29958e863f314ec6712
|
data/lib/aws-sdk-robomaker.rb
CHANGED
@@ -229,7 +229,8 @@ module Aws::RoboMaker
|
|
229
229
|
# resp.jobs[0].status #=> String, one of "Pending", "Preparing", "Running", "Restarting", "Completed", "Failed", "RunningFailed", "Terminating", "Terminated", "Canceled"
|
230
230
|
# resp.jobs[0].last_updated_at #=> Time
|
231
231
|
# resp.jobs[0].failure_behavior #=> String, one of "Fail", "Continue"
|
232
|
-
# resp.jobs[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag"
|
232
|
+
# resp.jobs[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
233
|
+
# resp.jobs[0].failure_reason #=> String
|
233
234
|
# resp.jobs[0].client_request_token #=> String
|
234
235
|
# resp.jobs[0].output_location.s3_bucket #=> String
|
235
236
|
# resp.jobs[0].output_location.s3_prefix #=> String
|
@@ -250,6 +251,8 @@ module Aws::RoboMaker
|
|
250
251
|
# resp.jobs[0].simulation_applications[0].launch_config.launch_file #=> String
|
251
252
|
# resp.jobs[0].simulation_applications[0].launch_config.environment_variables #=> Hash
|
252
253
|
# resp.jobs[0].simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
254
|
+
# resp.jobs[0].tags #=> Hash
|
255
|
+
# resp.jobs[0].tags["TagKey"] #=> String
|
253
256
|
# resp.jobs[0].vpc_config.subnets #=> Array
|
254
257
|
# resp.jobs[0].vpc_config.subnets[0] #=> String
|
255
258
|
# resp.jobs[0].vpc_config.security_groups #=> Array
|
@@ -290,7 +293,17 @@ module Aws::RoboMaker
|
|
290
293
|
req.send_request(options)
|
291
294
|
end
|
292
295
|
|
293
|
-
#
|
296
|
+
# Deploys a specific version of a robot application to robots in a
|
297
|
+
# fleet.
|
298
|
+
#
|
299
|
+
# The robot application must have a numbered `applicationVersion` for
|
300
|
+
# consistency reasons. To create a new version, use
|
301
|
+
# `CreateRobotApplicationVersion` or see [Creating a Robot Application
|
302
|
+
# Version][1].
|
303
|
+
#
|
304
|
+
#
|
305
|
+
#
|
306
|
+
# [1]: https://docs.aws.amazon.com/robomaker/latest/dg/create-robot-application-version.html
|
294
307
|
#
|
295
308
|
# @option params [Types::DeploymentConfig] :deployment_config
|
296
309
|
# The requested deployment configuration.
|
@@ -308,6 +321,10 @@ module Aws::RoboMaker
|
|
308
321
|
# @option params [required, Array<Types::DeploymentApplicationConfig>] :deployment_application_configs
|
309
322
|
# The deployment application configuration.
|
310
323
|
#
|
324
|
+
# @option params [Hash<String,String>] :tags
|
325
|
+
# A map that contains tag keys and tag values that are attached to the
|
326
|
+
# deployment job.
|
327
|
+
#
|
311
328
|
# @return [Types::CreateDeploymentJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
312
329
|
#
|
313
330
|
# * {Types::CreateDeploymentJobResponse#arn #arn} => String
|
@@ -318,6 +335,7 @@ module Aws::RoboMaker
|
|
318
335
|
# * {Types::CreateDeploymentJobResponse#failure_code #failure_code} => String
|
319
336
|
# * {Types::CreateDeploymentJobResponse#created_at #created_at} => Time
|
320
337
|
# * {Types::CreateDeploymentJobResponse#deployment_config #deployment_config} => Types::DeploymentConfig
|
338
|
+
# * {Types::CreateDeploymentJobResponse#tags #tags} => Hash<String,String>
|
321
339
|
#
|
322
340
|
# @example Request syntax with placeholder values
|
323
341
|
#
|
@@ -331,7 +349,7 @@ module Aws::RoboMaker
|
|
331
349
|
# deployment_application_configs: [ # required
|
332
350
|
# {
|
333
351
|
# application: "Arn", # required
|
334
|
-
# application_version: "
|
352
|
+
# application_version: "DeploymentVersion", # required
|
335
353
|
# launch_config: { # required
|
336
354
|
# package_name: "GenericString", # required
|
337
355
|
# pre_launch_file: "GenericString",
|
@@ -343,6 +361,9 @@ module Aws::RoboMaker
|
|
343
361
|
# },
|
344
362
|
# },
|
345
363
|
# ],
|
364
|
+
# tags: {
|
365
|
+
# "TagKey" => "TagValue",
|
366
|
+
# },
|
346
367
|
# })
|
347
368
|
#
|
348
369
|
# @example Response structure
|
@@ -364,6 +385,8 @@ module Aws::RoboMaker
|
|
364
385
|
# resp.created_at #=> Time
|
365
386
|
# resp.deployment_config.concurrent_deployment_percentage #=> Integer
|
366
387
|
# resp.deployment_config.failure_threshold_percentage #=> Integer
|
388
|
+
# resp.tags #=> Hash
|
389
|
+
# resp.tags["TagKey"] #=> String
|
367
390
|
#
|
368
391
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateDeploymentJob AWS API Documentation
|
369
392
|
#
|
@@ -380,16 +403,24 @@ module Aws::RoboMaker
|
|
380
403
|
# @option params [required, String] :name
|
381
404
|
# The name of the fleet.
|
382
405
|
#
|
406
|
+
# @option params [Hash<String,String>] :tags
|
407
|
+
# A map that contains tag keys and tag values that are attached to the
|
408
|
+
# fleet.
|
409
|
+
#
|
383
410
|
# @return [Types::CreateFleetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
384
411
|
#
|
385
412
|
# * {Types::CreateFleetResponse#arn #arn} => String
|
386
413
|
# * {Types::CreateFleetResponse#name #name} => String
|
387
414
|
# * {Types::CreateFleetResponse#created_at #created_at} => Time
|
415
|
+
# * {Types::CreateFleetResponse#tags #tags} => Hash<String,String>
|
388
416
|
#
|
389
417
|
# @example Request syntax with placeholder values
|
390
418
|
#
|
391
419
|
# resp = client.create_fleet({
|
392
420
|
# name: "Name", # required
|
421
|
+
# tags: {
|
422
|
+
# "TagKey" => "TagValue",
|
423
|
+
# },
|
393
424
|
# })
|
394
425
|
#
|
395
426
|
# @example Response structure
|
@@ -397,6 +428,8 @@ module Aws::RoboMaker
|
|
397
428
|
# resp.arn #=> String
|
398
429
|
# resp.name #=> String
|
399
430
|
# resp.created_at #=> Time
|
431
|
+
# resp.tags #=> Hash
|
432
|
+
# resp.tags["TagKey"] #=> String
|
400
433
|
#
|
401
434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateFleet AWS API Documentation
|
402
435
|
#
|
@@ -418,6 +451,10 @@ module Aws::RoboMaker
|
|
418
451
|
# @option params [required, String] :greengrass_group_id
|
419
452
|
# The Greengrass group id.
|
420
453
|
#
|
454
|
+
# @option params [Hash<String,String>] :tags
|
455
|
+
# A map that contains tag keys and tag values that are attached to the
|
456
|
+
# robot.
|
457
|
+
#
|
421
458
|
# @return [Types::CreateRobotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
422
459
|
#
|
423
460
|
# * {Types::CreateRobotResponse#arn #arn} => String
|
@@ -425,6 +462,7 @@ module Aws::RoboMaker
|
|
425
462
|
# * {Types::CreateRobotResponse#created_at #created_at} => Time
|
426
463
|
# * {Types::CreateRobotResponse#greengrass_group_id #greengrass_group_id} => String
|
427
464
|
# * {Types::CreateRobotResponse#architecture #architecture} => String
|
465
|
+
# * {Types::CreateRobotResponse#tags #tags} => Hash<String,String>
|
428
466
|
#
|
429
467
|
# @example Request syntax with placeholder values
|
430
468
|
#
|
@@ -432,6 +470,9 @@ module Aws::RoboMaker
|
|
432
470
|
# name: "Name", # required
|
433
471
|
# architecture: "X86_64", # required, accepts X86_64, ARM64, ARMHF
|
434
472
|
# greengrass_group_id: "Id", # required
|
473
|
+
# tags: {
|
474
|
+
# "TagKey" => "TagValue",
|
475
|
+
# },
|
435
476
|
# })
|
436
477
|
#
|
437
478
|
# @example Response structure
|
@@ -441,6 +482,8 @@ module Aws::RoboMaker
|
|
441
482
|
# resp.created_at #=> Time
|
442
483
|
# resp.greengrass_group_id #=> String
|
443
484
|
# resp.architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
485
|
+
# resp.tags #=> Hash
|
486
|
+
# resp.tags["TagKey"] #=> String
|
444
487
|
#
|
445
488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobot AWS API Documentation
|
446
489
|
#
|
@@ -462,6 +505,10 @@ module Aws::RoboMaker
|
|
462
505
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
463
506
|
# The robot software suite used by the robot application.
|
464
507
|
#
|
508
|
+
# @option params [Hash<String,String>] :tags
|
509
|
+
# A map that contains tag keys and tag values that are attached to the
|
510
|
+
# robot application.
|
511
|
+
#
|
465
512
|
# @return [Types::CreateRobotApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
466
513
|
#
|
467
514
|
# * {Types::CreateRobotApplicationResponse#arn #arn} => String
|
@@ -471,6 +518,7 @@ module Aws::RoboMaker
|
|
471
518
|
# * {Types::CreateRobotApplicationResponse#robot_software_suite #robot_software_suite} => Types::RobotSoftwareSuite
|
472
519
|
# * {Types::CreateRobotApplicationResponse#last_updated_at #last_updated_at} => Time
|
473
520
|
# * {Types::CreateRobotApplicationResponse#revision_id #revision_id} => String
|
521
|
+
# * {Types::CreateRobotApplicationResponse#tags #tags} => Hash<String,String>
|
474
522
|
#
|
475
523
|
# @example Request syntax with placeholder values
|
476
524
|
#
|
@@ -487,6 +535,9 @@ module Aws::RoboMaker
|
|
487
535
|
# name: "ROS", # accepts ROS
|
488
536
|
# version: "Kinetic", # accepts Kinetic
|
489
537
|
# },
|
538
|
+
# tags: {
|
539
|
+
# "TagKey" => "TagValue",
|
540
|
+
# },
|
490
541
|
# })
|
491
542
|
#
|
492
543
|
# @example Response structure
|
@@ -503,6 +554,8 @@ module Aws::RoboMaker
|
|
503
554
|
# resp.robot_software_suite.version #=> String, one of "Kinetic"
|
504
555
|
# resp.last_updated_at #=> Time
|
505
556
|
# resp.revision_id #=> String
|
557
|
+
# resp.tags #=> Hash
|
558
|
+
# resp.tags["TagKey"] #=> String
|
506
559
|
#
|
507
560
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplication AWS API Documentation
|
508
561
|
#
|
@@ -581,6 +634,10 @@ module Aws::RoboMaker
|
|
581
634
|
# @option params [required, Types::RenderingEngine] :rendering_engine
|
582
635
|
# The rendering engine for the simulation application.
|
583
636
|
#
|
637
|
+
# @option params [Hash<String,String>] :tags
|
638
|
+
# A map that contains tag keys and tag values that are attached to the
|
639
|
+
# simulation application.
|
640
|
+
#
|
584
641
|
# @return [Types::CreateSimulationApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
585
642
|
#
|
586
643
|
# * {Types::CreateSimulationApplicationResponse#arn #arn} => String
|
@@ -592,6 +649,7 @@ module Aws::RoboMaker
|
|
592
649
|
# * {Types::CreateSimulationApplicationResponse#rendering_engine #rendering_engine} => Types::RenderingEngine
|
593
650
|
# * {Types::CreateSimulationApplicationResponse#last_updated_at #last_updated_at} => Time
|
594
651
|
# * {Types::CreateSimulationApplicationResponse#revision_id #revision_id} => String
|
652
|
+
# * {Types::CreateSimulationApplicationResponse#tags #tags} => Hash<String,String>
|
595
653
|
#
|
596
654
|
# @example Request syntax with placeholder values
|
597
655
|
#
|
@@ -616,6 +674,9 @@ module Aws::RoboMaker
|
|
616
674
|
# name: "OGRE", # accepts OGRE
|
617
675
|
# version: "RenderingEngineVersionType",
|
618
676
|
# },
|
677
|
+
# tags: {
|
678
|
+
# "TagKey" => "TagValue",
|
679
|
+
# },
|
619
680
|
# })
|
620
681
|
#
|
621
682
|
# @example Response structure
|
@@ -636,6 +697,8 @@ module Aws::RoboMaker
|
|
636
697
|
# resp.rendering_engine.version #=> String
|
637
698
|
# resp.last_updated_at #=> Time
|
638
699
|
# resp.revision_id #=> String
|
700
|
+
# resp.tags #=> Hash
|
701
|
+
# resp.tags["TagKey"] #=> String
|
639
702
|
#
|
640
703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplication AWS API Documentation
|
641
704
|
#
|
@@ -721,14 +784,9 @@ module Aws::RoboMaker
|
|
721
784
|
# simulation job will status will transition to `Completed`.
|
722
785
|
#
|
723
786
|
# @option params [required, String] :iam_role
|
724
|
-
# The IAM role that allows the simulation instance to call the AWS
|
725
|
-
# that are specified in its associated policies on your behalf.
|
726
|
-
# how credentials are passed in to your simulation job.
|
727
|
-
# [specify AWS security credentials for your application][1].
|
728
|
-
#
|
729
|
-
#
|
730
|
-
#
|
731
|
-
# [1]: https://docs.aws.amazon.com/toolkit-for-visual-studio/latest/user-guide/deployment-ecs-specify-credentials
|
787
|
+
# The IAM role name that allows the simulation instance to call the AWS
|
788
|
+
# APIs that are specified in its associated policies on your behalf.
|
789
|
+
# This is how credentials are passed in to your simulation job.
|
732
790
|
#
|
733
791
|
# @option params [String] :failure_behavior
|
734
792
|
# The failure behavior the simulation job.
|
@@ -747,6 +805,10 @@ module Aws::RoboMaker
|
|
747
805
|
# @option params [Array<Types::SimulationApplicationConfig>] :simulation_applications
|
748
806
|
# The simulation application to use in the simulation job.
|
749
807
|
#
|
808
|
+
# @option params [Hash<String,String>] :tags
|
809
|
+
# A map that contains tag keys and tag values that are attached to the
|
810
|
+
# simulation job.
|
811
|
+
#
|
750
812
|
# @option params [Types::VPCConfig] :vpc_config
|
751
813
|
# If your simulation job accesses resources in a VPC, you provide this
|
752
814
|
# parameter identifying the list of security group IDs and subnet IDs.
|
@@ -767,6 +829,7 @@ module Aws::RoboMaker
|
|
767
829
|
# * {Types::CreateSimulationJobResponse#iam_role #iam_role} => String
|
768
830
|
# * {Types::CreateSimulationJobResponse#robot_applications #robot_applications} => Array<Types::RobotApplicationConfig>
|
769
831
|
# * {Types::CreateSimulationJobResponse#simulation_applications #simulation_applications} => Array<Types::SimulationApplicationConfig>
|
832
|
+
# * {Types::CreateSimulationJobResponse#tags #tags} => Hash<String,String>
|
770
833
|
# * {Types::CreateSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
771
834
|
#
|
772
835
|
# @example Request syntax with placeholder values
|
@@ -806,6 +869,9 @@ module Aws::RoboMaker
|
|
806
869
|
# },
|
807
870
|
# },
|
808
871
|
# ],
|
872
|
+
# tags: {
|
873
|
+
# "TagKey" => "TagValue",
|
874
|
+
# },
|
809
875
|
# vpc_config: {
|
810
876
|
# subnets: ["GenericString"], # required
|
811
877
|
# security_groups: ["GenericString"],
|
@@ -819,7 +885,7 @@ module Aws::RoboMaker
|
|
819
885
|
# resp.status #=> String, one of "Pending", "Preparing", "Running", "Restarting", "Completed", "Failed", "RunningFailed", "Terminating", "Terminated", "Canceled"
|
820
886
|
# resp.last_updated_at #=> Time
|
821
887
|
# resp.failure_behavior #=> String, one of "Fail", "Continue"
|
822
|
-
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag"
|
888
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
823
889
|
# resp.client_request_token #=> String
|
824
890
|
# resp.output_location.s3_bucket #=> String
|
825
891
|
# resp.output_location.s3_prefix #=> String
|
@@ -840,6 +906,8 @@ module Aws::RoboMaker
|
|
840
906
|
# resp.simulation_applications[0].launch_config.launch_file #=> String
|
841
907
|
# resp.simulation_applications[0].launch_config.environment_variables #=> Hash
|
842
908
|
# resp.simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
909
|
+
# resp.tags #=> Hash
|
910
|
+
# resp.tags["TagKey"] #=> String
|
843
911
|
# resp.vpc_config.subnets #=> Array
|
844
912
|
# resp.vpc_config.subnets[0] #=> String
|
845
913
|
# resp.vpc_config.security_groups #=> Array
|
@@ -1003,6 +1071,7 @@ module Aws::RoboMaker
|
|
1003
1071
|
# * {Types::DescribeDeploymentJobResponse#failure_code #failure_code} => String
|
1004
1072
|
# * {Types::DescribeDeploymentJobResponse#created_at #created_at} => Time
|
1005
1073
|
# * {Types::DescribeDeploymentJobResponse#robot_deployment_summary #robot_deployment_summary} => Array<Types::RobotDeployment>
|
1074
|
+
# * {Types::DescribeDeploymentJobResponse#tags #tags} => Hash<String,String>
|
1006
1075
|
#
|
1007
1076
|
# @example Request syntax with placeholder values
|
1008
1077
|
#
|
@@ -1038,6 +1107,8 @@ module Aws::RoboMaker
|
|
1038
1107
|
# resp.robot_deployment_summary[0].progress_detail.target_resource #=> String
|
1039
1108
|
# resp.robot_deployment_summary[0].failure_reason #=> String
|
1040
1109
|
# resp.robot_deployment_summary[0].failure_code #=> String, one of "ResourceNotFound", "FailureThresholdBreached", "RobotDeploymentNoResponse", "GreengrassDeploymentFailed", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "InternalServerError"
|
1110
|
+
# resp.tags #=> Hash
|
1111
|
+
# resp.tags["TagKey"] #=> String
|
1041
1112
|
#
|
1042
1113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJob AWS API Documentation
|
1043
1114
|
#
|
@@ -1062,6 +1133,7 @@ module Aws::RoboMaker
|
|
1062
1133
|
# * {Types::DescribeFleetResponse#last_deployment_status #last_deployment_status} => String
|
1063
1134
|
# * {Types::DescribeFleetResponse#last_deployment_job #last_deployment_job} => String
|
1064
1135
|
# * {Types::DescribeFleetResponse#last_deployment_time #last_deployment_time} => Time
|
1136
|
+
# * {Types::DescribeFleetResponse#tags #tags} => Hash<String,String>
|
1065
1137
|
#
|
1066
1138
|
# @example Request syntax with placeholder values
|
1067
1139
|
#
|
@@ -1087,6 +1159,8 @@ module Aws::RoboMaker
|
|
1087
1159
|
# resp.last_deployment_status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded"
|
1088
1160
|
# resp.last_deployment_job #=> String
|
1089
1161
|
# resp.last_deployment_time #=> Time
|
1162
|
+
# resp.tags #=> Hash
|
1163
|
+
# resp.tags["TagKey"] #=> String
|
1090
1164
|
#
|
1091
1165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleet AWS API Documentation
|
1092
1166
|
#
|
@@ -1113,6 +1187,7 @@ module Aws::RoboMaker
|
|
1113
1187
|
# * {Types::DescribeRobotResponse#architecture #architecture} => String
|
1114
1188
|
# * {Types::DescribeRobotResponse#last_deployment_job #last_deployment_job} => String
|
1115
1189
|
# * {Types::DescribeRobotResponse#last_deployment_time #last_deployment_time} => Time
|
1190
|
+
# * {Types::DescribeRobotResponse#tags #tags} => Hash<String,String>
|
1116
1191
|
#
|
1117
1192
|
# @example Request syntax with placeholder values
|
1118
1193
|
#
|
@@ -1131,6 +1206,8 @@ module Aws::RoboMaker
|
|
1131
1206
|
# resp.architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
1132
1207
|
# resp.last_deployment_job #=> String
|
1133
1208
|
# resp.last_deployment_time #=> Time
|
1209
|
+
# resp.tags #=> Hash
|
1210
|
+
# resp.tags["TagKey"] #=> String
|
1134
1211
|
#
|
1135
1212
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobot AWS API Documentation
|
1136
1213
|
#
|
@@ -1158,6 +1235,7 @@ module Aws::RoboMaker
|
|
1158
1235
|
# * {Types::DescribeRobotApplicationResponse#robot_software_suite #robot_software_suite} => Types::RobotSoftwareSuite
|
1159
1236
|
# * {Types::DescribeRobotApplicationResponse#revision_id #revision_id} => String
|
1160
1237
|
# * {Types::DescribeRobotApplicationResponse#last_updated_at #last_updated_at} => Time
|
1238
|
+
# * {Types::DescribeRobotApplicationResponse#tags #tags} => Hash<String,String>
|
1161
1239
|
#
|
1162
1240
|
# @example Request syntax with placeholder values
|
1163
1241
|
#
|
@@ -1180,6 +1258,8 @@ module Aws::RoboMaker
|
|
1180
1258
|
# resp.robot_software_suite.version #=> String, one of "Kinetic"
|
1181
1259
|
# resp.revision_id #=> String
|
1182
1260
|
# resp.last_updated_at #=> Time
|
1261
|
+
# resp.tags #=> Hash
|
1262
|
+
# resp.tags["TagKey"] #=> String
|
1183
1263
|
#
|
1184
1264
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplication AWS API Documentation
|
1185
1265
|
#
|
@@ -1209,6 +1289,7 @@ module Aws::RoboMaker
|
|
1209
1289
|
# * {Types::DescribeSimulationApplicationResponse#rendering_engine #rendering_engine} => Types::RenderingEngine
|
1210
1290
|
# * {Types::DescribeSimulationApplicationResponse#revision_id #revision_id} => String
|
1211
1291
|
# * {Types::DescribeSimulationApplicationResponse#last_updated_at #last_updated_at} => Time
|
1292
|
+
# * {Types::DescribeSimulationApplicationResponse#tags #tags} => Hash<String,String>
|
1212
1293
|
#
|
1213
1294
|
# @example Request syntax with placeholder values
|
1214
1295
|
#
|
@@ -1235,6 +1316,8 @@ module Aws::RoboMaker
|
|
1235
1316
|
# resp.rendering_engine.version #=> String
|
1236
1317
|
# resp.revision_id #=> String
|
1237
1318
|
# resp.last_updated_at #=> Time
|
1319
|
+
# resp.tags #=> Hash
|
1320
|
+
# resp.tags["TagKey"] #=> String
|
1238
1321
|
#
|
1239
1322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplication AWS API Documentation
|
1240
1323
|
#
|
@@ -1258,6 +1341,7 @@ module Aws::RoboMaker
|
|
1258
1341
|
# * {Types::DescribeSimulationJobResponse#last_updated_at #last_updated_at} => Time
|
1259
1342
|
# * {Types::DescribeSimulationJobResponse#failure_behavior #failure_behavior} => String
|
1260
1343
|
# * {Types::DescribeSimulationJobResponse#failure_code #failure_code} => String
|
1344
|
+
# * {Types::DescribeSimulationJobResponse#failure_reason #failure_reason} => String
|
1261
1345
|
# * {Types::DescribeSimulationJobResponse#client_request_token #client_request_token} => String
|
1262
1346
|
# * {Types::DescribeSimulationJobResponse#output_location #output_location} => Types::OutputLocation
|
1263
1347
|
# * {Types::DescribeSimulationJobResponse#max_job_duration_in_seconds #max_job_duration_in_seconds} => Integer
|
@@ -1265,6 +1349,7 @@ module Aws::RoboMaker
|
|
1265
1349
|
# * {Types::DescribeSimulationJobResponse#iam_role #iam_role} => String
|
1266
1350
|
# * {Types::DescribeSimulationJobResponse#robot_applications #robot_applications} => Array<Types::RobotApplicationConfig>
|
1267
1351
|
# * {Types::DescribeSimulationJobResponse#simulation_applications #simulation_applications} => Array<Types::SimulationApplicationConfig>
|
1352
|
+
# * {Types::DescribeSimulationJobResponse#tags #tags} => Hash<String,String>
|
1268
1353
|
# * {Types::DescribeSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
1269
1354
|
#
|
1270
1355
|
# @example Request syntax with placeholder values
|
@@ -1280,7 +1365,8 @@ module Aws::RoboMaker
|
|
1280
1365
|
# resp.status #=> String, one of "Pending", "Preparing", "Running", "Restarting", "Completed", "Failed", "RunningFailed", "Terminating", "Terminated", "Canceled"
|
1281
1366
|
# resp.last_updated_at #=> Time
|
1282
1367
|
# resp.failure_behavior #=> String, one of "Fail", "Continue"
|
1283
|
-
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag"
|
1368
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
1369
|
+
# resp.failure_reason #=> String
|
1284
1370
|
# resp.client_request_token #=> String
|
1285
1371
|
# resp.output_location.s3_bucket #=> String
|
1286
1372
|
# resp.output_location.s3_prefix #=> String
|
@@ -1301,6 +1387,8 @@ module Aws::RoboMaker
|
|
1301
1387
|
# resp.simulation_applications[0].launch_config.launch_file #=> String
|
1302
1388
|
# resp.simulation_applications[0].launch_config.environment_variables #=> Hash
|
1303
1389
|
# resp.simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1390
|
+
# resp.tags #=> Hash
|
1391
|
+
# resp.tags["TagKey"] #=> String
|
1304
1392
|
# resp.vpc_config.subnets #=> Array
|
1305
1393
|
# resp.vpc_config.subnets[0] #=> String
|
1306
1394
|
# resp.vpc_config.security_groups #=> Array
|
@@ -1741,6 +1829,35 @@ module Aws::RoboMaker
|
|
1741
1829
|
req.send_request(options)
|
1742
1830
|
end
|
1743
1831
|
|
1832
|
+
# Lists all tags on a AWS RoboMaker resource.
|
1833
|
+
#
|
1834
|
+
# @option params [required, String] :resource_arn
|
1835
|
+
# The AWS RoboMaker Amazon Resource Name (ARN) with tags to be listed.
|
1836
|
+
#
|
1837
|
+
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1838
|
+
#
|
1839
|
+
# * {Types::ListTagsForResourceResponse#tags #tags} => Hash<String,String>
|
1840
|
+
#
|
1841
|
+
# @example Request syntax with placeholder values
|
1842
|
+
#
|
1843
|
+
# resp = client.list_tags_for_resource({
|
1844
|
+
# resource_arn: "Arn", # required
|
1845
|
+
# })
|
1846
|
+
#
|
1847
|
+
# @example Response structure
|
1848
|
+
#
|
1849
|
+
# resp.tags #=> Hash
|
1850
|
+
# resp.tags["TagKey"] #=> String
|
1851
|
+
#
|
1852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListTagsForResource AWS API Documentation
|
1853
|
+
#
|
1854
|
+
# @overload list_tags_for_resource(params = {})
|
1855
|
+
# @param [Hash] params ({})
|
1856
|
+
def list_tags_for_resource(params = {}, options = {})
|
1857
|
+
req = build_request(:list_tags_for_resource, params)
|
1858
|
+
req.send_request(options)
|
1859
|
+
end
|
1860
|
+
|
1744
1861
|
# Registers a robot with a fleet.
|
1745
1862
|
#
|
1746
1863
|
# @option params [required, String] :fleet
|
@@ -1857,6 +1974,82 @@ module Aws::RoboMaker
|
|
1857
1974
|
req.send_request(options)
|
1858
1975
|
end
|
1859
1976
|
|
1977
|
+
# Adds or edits tags for a AWS RoboMaker resource.
|
1978
|
+
#
|
1979
|
+
# Each tag consists of a tag key and a tag value. Tag keys and tag
|
1980
|
+
# values are both required, but tag values can be empty strings.
|
1981
|
+
#
|
1982
|
+
# For information about the rules that apply to tag keys and tag values,
|
1983
|
+
# see [User-Defined Tag Restrictions][1] in the *AWS Billing and Cost
|
1984
|
+
# Management User Guide*.
|
1985
|
+
#
|
1986
|
+
#
|
1987
|
+
#
|
1988
|
+
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/allocation-tag-restrictions.html
|
1989
|
+
#
|
1990
|
+
# @option params [required, String] :resource_arn
|
1991
|
+
# The Amazon Resource Name (ARN) of the AWS RoboMaker resource you are
|
1992
|
+
# tagging.
|
1993
|
+
#
|
1994
|
+
# @option params [required, Hash<String,String>] :tags
|
1995
|
+
# A map that contains tag keys and tag values that are attached to the
|
1996
|
+
# resource.
|
1997
|
+
#
|
1998
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1999
|
+
#
|
2000
|
+
# @example Request syntax with placeholder values
|
2001
|
+
#
|
2002
|
+
# resp = client.tag_resource({
|
2003
|
+
# resource_arn: "Arn", # required
|
2004
|
+
# tags: { # required
|
2005
|
+
# "TagKey" => "TagValue",
|
2006
|
+
# },
|
2007
|
+
# })
|
2008
|
+
#
|
2009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/TagResource AWS API Documentation
|
2010
|
+
#
|
2011
|
+
# @overload tag_resource(params = {})
|
2012
|
+
# @param [Hash] params ({})
|
2013
|
+
def tag_resource(params = {}, options = {})
|
2014
|
+
req = build_request(:tag_resource, params)
|
2015
|
+
req.send_request(options)
|
2016
|
+
end
|
2017
|
+
|
2018
|
+
# Removes the specified tags from the specified AWS RoboMaker resource.
|
2019
|
+
#
|
2020
|
+
# To remove a tag, specify the tag key. To change the tag value of an
|
2021
|
+
# existing tag key, use [ `TagResource` ][1].
|
2022
|
+
#
|
2023
|
+
#
|
2024
|
+
#
|
2025
|
+
# [1]: https://docs.aws.amazon.com/robomaker/latest/dg//API_Reference.htmlAPI_TagResource.html
|
2026
|
+
#
|
2027
|
+
# @option params [required, String] :resource_arn
|
2028
|
+
# The Amazon Resource Name (ARN) of the AWS RoboMaker resource you are
|
2029
|
+
# removing tags.
|
2030
|
+
#
|
2031
|
+
# @option params [required, Array<String>] :tag_keys
|
2032
|
+
# A map that contains tag keys and tag values that will be unattached
|
2033
|
+
# from the resource.
|
2034
|
+
#
|
2035
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2036
|
+
#
|
2037
|
+
# @example Request syntax with placeholder values
|
2038
|
+
#
|
2039
|
+
# resp = client.untag_resource({
|
2040
|
+
# resource_arn: "Arn", # required
|
2041
|
+
# tag_keys: ["TagKey"], # required
|
2042
|
+
# })
|
2043
|
+
#
|
2044
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UntagResource AWS API Documentation
|
2045
|
+
#
|
2046
|
+
# @overload untag_resource(params = {})
|
2047
|
+
# @param [Hash] params ({})
|
2048
|
+
def untag_resource(params = {}, options = {})
|
2049
|
+
req = build_request(:untag_resource, params)
|
2050
|
+
req.send_request(options)
|
2051
|
+
end
|
2052
|
+
|
1860
2053
|
# Updates a robot application.
|
1861
2054
|
#
|
1862
2055
|
# @option params [required, String] :application
|
@@ -2022,7 +2215,7 @@ module Aws::RoboMaker
|
|
2022
2215
|
params: params,
|
2023
2216
|
config: config)
|
2024
2217
|
context[:gem_name] = 'aws-sdk-robomaker'
|
2025
|
-
context[:gem_version] = '1.
|
2218
|
+
context[:gem_version] = '1.1.0'
|
2026
2219
|
Seahorse::Client::Request.new(handlers, context)
|
2027
2220
|
end
|
2028
2221
|
|