aws-sdk-robomaker 1.13.0 → 1.14.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/client.rb +68 -19
- data/lib/aws-sdk-robomaker/client_api.rb +50 -2
- data/lib/aws-sdk-robomaker/types.rb +183 -7
- data/lib/aws-sdk-robomaker.rb +1 -1
- 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: 198e5f4f41c538e55988029bdd6b9902cfb26611
|
4
|
+
data.tar.gz: ea4c0c7be29db7787dfca14a6351bed683315b2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93f05e2cc211abc46c4233e03a754d7aed5a638073abfd4a5cc120d32ec0935286d022b1b99f4f8260147a54c856424f95806bad4bf6f3ea8f1b81345599f407
|
7
|
+
data.tar.gz: d58f260fcee69d9fe445966f21e50f212bb33a5444d182941d2543437583ffef76f74dd36746de8c0295e598ec4d9c2b681e8375e0985a1b03e33c0066fd2416
|
@@ -279,11 +279,12 @@ module Aws::RoboMaker
|
|
279
279
|
# resp.jobs[0].last_started_at #=> Time
|
280
280
|
# resp.jobs[0].last_updated_at #=> Time
|
281
281
|
# resp.jobs[0].failure_behavior #=> String, one of "Fail", "Continue"
|
282
|
-
# 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"
|
282
|
+
# resp.jobs[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
283
283
|
# resp.jobs[0].failure_reason #=> String
|
284
284
|
# resp.jobs[0].client_request_token #=> String
|
285
285
|
# resp.jobs[0].output_location.s3_bucket #=> String
|
286
286
|
# resp.jobs[0].output_location.s3_prefix #=> String
|
287
|
+
# resp.jobs[0].logging_config.record_all_ros_topics #=> Boolean
|
287
288
|
# resp.jobs[0].max_job_duration_in_seconds #=> Integer
|
288
289
|
# resp.jobs[0].simulation_time_millis #=> Integer
|
289
290
|
# resp.jobs[0].iam_role #=> String
|
@@ -301,6 +302,12 @@ module Aws::RoboMaker
|
|
301
302
|
# resp.jobs[0].simulation_applications[0].launch_config.launch_file #=> String
|
302
303
|
# resp.jobs[0].simulation_applications[0].launch_config.environment_variables #=> Hash
|
303
304
|
# resp.jobs[0].simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
305
|
+
# resp.jobs[0].data_sources #=> Array
|
306
|
+
# resp.jobs[0].data_sources[0].name #=> String
|
307
|
+
# resp.jobs[0].data_sources[0].s3_bucket #=> String
|
308
|
+
# resp.jobs[0].data_sources[0].s3_keys #=> Array
|
309
|
+
# resp.jobs[0].data_sources[0].s3_keys[0].s3_key #=> String
|
310
|
+
# resp.jobs[0].data_sources[0].s3_keys[0].etag #=> String
|
304
311
|
# resp.jobs[0].tags #=> Hash
|
305
312
|
# resp.jobs[0].tags["TagKey"] #=> String
|
306
313
|
# resp.jobs[0].vpc_config.subnets #=> Array
|
@@ -420,6 +427,7 @@ module Aws::RoboMaker
|
|
420
427
|
# deployment_config: {
|
421
428
|
# concurrent_deployment_percentage: 1,
|
422
429
|
# failure_threshold_percentage: 1,
|
430
|
+
# robot_deployment_timeout_in_seconds: 1,
|
423
431
|
# },
|
424
432
|
# client_request_token: "ClientRequestToken", # required
|
425
433
|
# fleet: "Arn", # required
|
@@ -462,6 +470,7 @@ module Aws::RoboMaker
|
|
462
470
|
# resp.created_at #=> Time
|
463
471
|
# resp.deployment_config.concurrent_deployment_percentage #=> Integer
|
464
472
|
# resp.deployment_config.failure_threshold_percentage #=> Integer
|
473
|
+
# resp.deployment_config.robot_deployment_timeout_in_seconds #=> Integer
|
465
474
|
# resp.tags #=> Hash
|
466
475
|
# resp.tags["TagKey"] #=> String
|
467
476
|
#
|
@@ -708,7 +717,7 @@ module Aws::RoboMaker
|
|
708
717
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
709
718
|
# The robot software suite of the simulation application.
|
710
719
|
#
|
711
|
-
# @option params [
|
720
|
+
# @option params [Types::RenderingEngine] :rendering_engine
|
712
721
|
# The rendering engine for the simulation application.
|
713
722
|
#
|
714
723
|
# @option params [Hash<String,String>] :tags
|
@@ -740,14 +749,14 @@ module Aws::RoboMaker
|
|
740
749
|
# },
|
741
750
|
# ],
|
742
751
|
# simulation_software_suite: { # required
|
743
|
-
# name: "Gazebo", # accepts Gazebo
|
752
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
744
753
|
# version: "SimulationSoftwareSuiteVersionType",
|
745
754
|
# },
|
746
755
|
# robot_software_suite: { # required
|
747
756
|
# name: "ROS", # accepts ROS
|
748
757
|
# version: "Kinetic", # accepts Kinetic, Melodic
|
749
758
|
# },
|
750
|
-
# rendering_engine: {
|
759
|
+
# rendering_engine: {
|
751
760
|
# name: "OGRE", # accepts OGRE
|
752
761
|
# version: "RenderingEngineVersionType",
|
753
762
|
# },
|
@@ -766,7 +775,7 @@ module Aws::RoboMaker
|
|
766
775
|
# resp.sources[0].s3_key #=> String
|
767
776
|
# resp.sources[0].etag #=> String
|
768
777
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
769
|
-
# resp.simulation_software_suite.name #=> String, one of "Gazebo"
|
778
|
+
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
770
779
|
# resp.simulation_software_suite.version #=> String
|
771
780
|
# resp.robot_software_suite.name #=> String, one of "ROS"
|
772
781
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic"
|
@@ -825,7 +834,7 @@ module Aws::RoboMaker
|
|
825
834
|
# resp.sources[0].s3_key #=> String
|
826
835
|
# resp.sources[0].etag #=> String
|
827
836
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
828
|
-
# resp.simulation_software_suite.name #=> String, one of "Gazebo"
|
837
|
+
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
829
838
|
# resp.simulation_software_suite.version #=> String
|
830
839
|
# resp.robot_software_suite.name #=> String, one of "ROS"
|
831
840
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic"
|
@@ -860,6 +869,9 @@ module Aws::RoboMaker
|
|
860
869
|
# @option params [Types::OutputLocation] :output_location
|
861
870
|
# Location for output files generated by the simulation job.
|
862
871
|
#
|
872
|
+
# @option params [Types::LoggingConfig] :logging_config
|
873
|
+
# The logging configuration.
|
874
|
+
#
|
863
875
|
# @option params [required, Integer] :max_job_duration_in_seconds
|
864
876
|
# The maximum simulation job duration in seconds (up to 14 days or
|
865
877
|
# 1,209,600 seconds. When `maxJobDurationInSeconds` is reached, the
|
@@ -887,6 +899,14 @@ module Aws::RoboMaker
|
|
887
899
|
# @option params [Array<Types::SimulationApplicationConfig>] :simulation_applications
|
888
900
|
# The simulation application to use in the simulation job.
|
889
901
|
#
|
902
|
+
# @option params [Array<Types::DataSourceConfig>] :data_sources
|
903
|
+
# The data sources for the simulation job.
|
904
|
+
#
|
905
|
+
# <note markdown="1"> There is a limit of 100 files and a combined size of 25GB for all
|
906
|
+
# `DataSourceConfig` objects.
|
907
|
+
#
|
908
|
+
# </note>
|
909
|
+
#
|
890
910
|
# @option params [Hash<String,String>] :tags
|
891
911
|
# A map that contains tag keys and tag values that are attached to the
|
892
912
|
# simulation job.
|
@@ -907,11 +927,13 @@ module Aws::RoboMaker
|
|
907
927
|
# * {Types::CreateSimulationJobResponse#failure_code #failure_code} => String
|
908
928
|
# * {Types::CreateSimulationJobResponse#client_request_token #client_request_token} => String
|
909
929
|
# * {Types::CreateSimulationJobResponse#output_location #output_location} => Types::OutputLocation
|
930
|
+
# * {Types::CreateSimulationJobResponse#logging_config #logging_config} => Types::LoggingConfig
|
910
931
|
# * {Types::CreateSimulationJobResponse#max_job_duration_in_seconds #max_job_duration_in_seconds} => Integer
|
911
932
|
# * {Types::CreateSimulationJobResponse#simulation_time_millis #simulation_time_millis} => Integer
|
912
933
|
# * {Types::CreateSimulationJobResponse#iam_role #iam_role} => String
|
913
934
|
# * {Types::CreateSimulationJobResponse#robot_applications #robot_applications} => Array<Types::RobotApplicationConfig>
|
914
935
|
# * {Types::CreateSimulationJobResponse#simulation_applications #simulation_applications} => Array<Types::SimulationApplicationConfig>
|
936
|
+
# * {Types::CreateSimulationJobResponse#data_sources #data_sources} => Array<Types::DataSource>
|
915
937
|
# * {Types::CreateSimulationJobResponse#tags #tags} => Hash<String,String>
|
916
938
|
# * {Types::CreateSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
917
939
|
#
|
@@ -923,6 +945,9 @@ module Aws::RoboMaker
|
|
923
945
|
# s3_bucket: "S3Bucket",
|
924
946
|
# s3_prefix: "S3Key",
|
925
947
|
# },
|
948
|
+
# logging_config: {
|
949
|
+
# record_all_ros_topics: false, # required
|
950
|
+
# },
|
926
951
|
# max_job_duration_in_seconds: 1, # required
|
927
952
|
# iam_role: "IamRole", # required
|
928
953
|
# failure_behavior: "Fail", # accepts Fail, Continue
|
@@ -952,6 +977,13 @@ module Aws::RoboMaker
|
|
952
977
|
# },
|
953
978
|
# },
|
954
979
|
# ],
|
980
|
+
# data_sources: [
|
981
|
+
# {
|
982
|
+
# name: "Name", # required
|
983
|
+
# s3_bucket: "S3Bucket", # required
|
984
|
+
# s3_keys: ["S3Key"], # required
|
985
|
+
# },
|
986
|
+
# ],
|
955
987
|
# tags: {
|
956
988
|
# "TagKey" => "TagValue",
|
957
989
|
# },
|
@@ -969,10 +1001,11 @@ module Aws::RoboMaker
|
|
969
1001
|
# resp.last_started_at #=> Time
|
970
1002
|
# resp.last_updated_at #=> Time
|
971
1003
|
# resp.failure_behavior #=> String, one of "Fail", "Continue"
|
972
|
-
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
1004
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
973
1005
|
# resp.client_request_token #=> String
|
974
1006
|
# resp.output_location.s3_bucket #=> String
|
975
1007
|
# resp.output_location.s3_prefix #=> String
|
1008
|
+
# resp.logging_config.record_all_ros_topics #=> Boolean
|
976
1009
|
# resp.max_job_duration_in_seconds #=> Integer
|
977
1010
|
# resp.simulation_time_millis #=> Integer
|
978
1011
|
# resp.iam_role #=> String
|
@@ -990,6 +1023,12 @@ module Aws::RoboMaker
|
|
990
1023
|
# resp.simulation_applications[0].launch_config.launch_file #=> String
|
991
1024
|
# resp.simulation_applications[0].launch_config.environment_variables #=> Hash
|
992
1025
|
# resp.simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1026
|
+
# resp.data_sources #=> Array
|
1027
|
+
# resp.data_sources[0].name #=> String
|
1028
|
+
# resp.data_sources[0].s3_bucket #=> String
|
1029
|
+
# resp.data_sources[0].s3_keys #=> Array
|
1030
|
+
# resp.data_sources[0].s3_keys[0].s3_key #=> String
|
1031
|
+
# resp.data_sources[0].s3_keys[0].etag #=> String
|
993
1032
|
# resp.tags #=> Hash
|
994
1033
|
# resp.tags["TagKey"] #=> String
|
995
1034
|
# resp.vpc_config.subnets #=> Array
|
@@ -1169,6 +1208,7 @@ module Aws::RoboMaker
|
|
1169
1208
|
# resp.status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded", "Canceled"
|
1170
1209
|
# resp.deployment_config.concurrent_deployment_percentage #=> Integer
|
1171
1210
|
# resp.deployment_config.failure_threshold_percentage #=> Integer
|
1211
|
+
# resp.deployment_config.robot_deployment_timeout_in_seconds #=> Integer
|
1172
1212
|
# resp.deployment_application_configs #=> Array
|
1173
1213
|
# resp.deployment_application_configs[0].application #=> String
|
1174
1214
|
# resp.deployment_application_configs[0].application_version #=> String
|
@@ -1393,7 +1433,7 @@ module Aws::RoboMaker
|
|
1393
1433
|
# resp.sources[0].s3_key #=> String
|
1394
1434
|
# resp.sources[0].etag #=> String
|
1395
1435
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
1396
|
-
# resp.simulation_software_suite.name #=> String, one of "Gazebo"
|
1436
|
+
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
1397
1437
|
# resp.simulation_software_suite.version #=> String
|
1398
1438
|
# resp.robot_software_suite.name #=> String, one of "ROS"
|
1399
1439
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic"
|
@@ -1430,11 +1470,13 @@ module Aws::RoboMaker
|
|
1430
1470
|
# * {Types::DescribeSimulationJobResponse#failure_reason #failure_reason} => String
|
1431
1471
|
# * {Types::DescribeSimulationJobResponse#client_request_token #client_request_token} => String
|
1432
1472
|
# * {Types::DescribeSimulationJobResponse#output_location #output_location} => Types::OutputLocation
|
1473
|
+
# * {Types::DescribeSimulationJobResponse#logging_config #logging_config} => Types::LoggingConfig
|
1433
1474
|
# * {Types::DescribeSimulationJobResponse#max_job_duration_in_seconds #max_job_duration_in_seconds} => Integer
|
1434
1475
|
# * {Types::DescribeSimulationJobResponse#simulation_time_millis #simulation_time_millis} => Integer
|
1435
1476
|
# * {Types::DescribeSimulationJobResponse#iam_role #iam_role} => String
|
1436
1477
|
# * {Types::DescribeSimulationJobResponse#robot_applications #robot_applications} => Array<Types::RobotApplicationConfig>
|
1437
1478
|
# * {Types::DescribeSimulationJobResponse#simulation_applications #simulation_applications} => Array<Types::SimulationApplicationConfig>
|
1479
|
+
# * {Types::DescribeSimulationJobResponse#data_sources #data_sources} => Array<Types::DataSource>
|
1438
1480
|
# * {Types::DescribeSimulationJobResponse#tags #tags} => Hash<String,String>
|
1439
1481
|
# * {Types::DescribeSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
1440
1482
|
#
|
@@ -1452,11 +1494,12 @@ module Aws::RoboMaker
|
|
1452
1494
|
# resp.last_started_at #=> Time
|
1453
1495
|
# resp.last_updated_at #=> Time
|
1454
1496
|
# resp.failure_behavior #=> String, one of "Fail", "Continue"
|
1455
|
-
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
1497
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
1456
1498
|
# resp.failure_reason #=> String
|
1457
1499
|
# resp.client_request_token #=> String
|
1458
1500
|
# resp.output_location.s3_bucket #=> String
|
1459
1501
|
# resp.output_location.s3_prefix #=> String
|
1502
|
+
# resp.logging_config.record_all_ros_topics #=> Boolean
|
1460
1503
|
# resp.max_job_duration_in_seconds #=> Integer
|
1461
1504
|
# resp.simulation_time_millis #=> Integer
|
1462
1505
|
# resp.iam_role #=> String
|
@@ -1474,6 +1517,12 @@ module Aws::RoboMaker
|
|
1474
1517
|
# resp.simulation_applications[0].launch_config.launch_file #=> String
|
1475
1518
|
# resp.simulation_applications[0].launch_config.environment_variables #=> Hash
|
1476
1519
|
# resp.simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1520
|
+
# resp.data_sources #=> Array
|
1521
|
+
# resp.data_sources[0].name #=> String
|
1522
|
+
# resp.data_sources[0].s3_bucket #=> String
|
1523
|
+
# resp.data_sources[0].s3_keys #=> Array
|
1524
|
+
# resp.data_sources[0].s3_keys[0].s3_key #=> String
|
1525
|
+
# resp.data_sources[0].s3_keys[0].etag #=> String
|
1477
1526
|
# resp.tags #=> Hash
|
1478
1527
|
# resp.tags["TagKey"] #=> String
|
1479
1528
|
# resp.vpc_config.subnets #=> Array
|
@@ -1495,10 +1544,6 @@ module Aws::RoboMaker
|
|
1495
1544
|
# Returns a list of deployment jobs for a fleet. You can optionally
|
1496
1545
|
# provide filters to retrieve specific deployment jobs.
|
1497
1546
|
#
|
1498
|
-
# <note markdown="1">
|
1499
|
-
#
|
1500
|
-
# </note>
|
1501
|
-
#
|
1502
1547
|
# @option params [Array<Types::Filter>] :filters
|
1503
1548
|
# Optional filters to limit results.
|
1504
1549
|
#
|
@@ -1567,6 +1612,7 @@ module Aws::RoboMaker
|
|
1567
1612
|
# resp.deployment_jobs[0].deployment_application_configs[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1568
1613
|
# resp.deployment_jobs[0].deployment_config.concurrent_deployment_percentage #=> Integer
|
1569
1614
|
# resp.deployment_jobs[0].deployment_config.failure_threshold_percentage #=> Integer
|
1615
|
+
# resp.deployment_jobs[0].deployment_config.robot_deployment_timeout_in_seconds #=> Integer
|
1570
1616
|
# resp.deployment_jobs[0].failure_reason #=> String
|
1571
1617
|
# resp.deployment_jobs[0].failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "InternalServerError"
|
1572
1618
|
# resp.deployment_jobs[0].created_at #=> Time
|
@@ -1864,7 +1910,7 @@ module Aws::RoboMaker
|
|
1864
1910
|
# resp.simulation_application_summaries[0].last_updated_at #=> Time
|
1865
1911
|
# resp.simulation_application_summaries[0].robot_software_suite.name #=> String, one of "ROS"
|
1866
1912
|
# resp.simulation_application_summaries[0].robot_software_suite.version #=> String, one of "Kinetic", "Melodic"
|
1867
|
-
# resp.simulation_application_summaries[0].simulation_software_suite.name #=> String, one of "Gazebo"
|
1913
|
+
# resp.simulation_application_summaries[0].simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
1868
1914
|
# resp.simulation_application_summaries[0].simulation_software_suite.version #=> String
|
1869
1915
|
# resp.next_token #=> String
|
1870
1916
|
#
|
@@ -1942,6 +1988,8 @@ module Aws::RoboMaker
|
|
1942
1988
|
# resp.simulation_job_summaries[0].simulation_application_names[0] #=> String
|
1943
1989
|
# resp.simulation_job_summaries[0].robot_application_names #=> Array
|
1944
1990
|
# resp.simulation_job_summaries[0].robot_application_names[0] #=> String
|
1991
|
+
# resp.simulation_job_summaries[0].data_source_names #=> Array
|
1992
|
+
# resp.simulation_job_summaries[0].data_source_names[0] #=> String
|
1945
1993
|
# resp.next_token #=> String
|
1946
1994
|
#
|
1947
1995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobs AWS API Documentation
|
@@ -2076,6 +2124,7 @@ module Aws::RoboMaker
|
|
2076
2124
|
# resp.status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded", "Canceled"
|
2077
2125
|
# resp.deployment_config.concurrent_deployment_percentage #=> Integer
|
2078
2126
|
# resp.deployment_config.failure_threshold_percentage #=> Integer
|
2127
|
+
# resp.deployment_config.robot_deployment_timeout_in_seconds #=> Integer
|
2079
2128
|
# resp.deployment_application_configs #=> Array
|
2080
2129
|
# resp.deployment_application_configs[0].application #=> String
|
2081
2130
|
# resp.deployment_application_configs[0].application_version #=> String
|
@@ -2254,7 +2303,7 @@ module Aws::RoboMaker
|
|
2254
2303
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
2255
2304
|
# Information about the robot software suite.
|
2256
2305
|
#
|
2257
|
-
# @option params [
|
2306
|
+
# @option params [Types::RenderingEngine] :rendering_engine
|
2258
2307
|
# The rendering engine for the simulation application.
|
2259
2308
|
#
|
2260
2309
|
# @option params [String] :current_revision_id
|
@@ -2284,14 +2333,14 @@ module Aws::RoboMaker
|
|
2284
2333
|
# },
|
2285
2334
|
# ],
|
2286
2335
|
# simulation_software_suite: { # required
|
2287
|
-
# name: "Gazebo", # accepts Gazebo
|
2336
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
2288
2337
|
# version: "SimulationSoftwareSuiteVersionType",
|
2289
2338
|
# },
|
2290
2339
|
# robot_software_suite: { # required
|
2291
2340
|
# name: "ROS", # accepts ROS
|
2292
2341
|
# version: "Kinetic", # accepts Kinetic, Melodic
|
2293
2342
|
# },
|
2294
|
-
# rendering_engine: {
|
2343
|
+
# rendering_engine: {
|
2295
2344
|
# name: "OGRE", # accepts OGRE
|
2296
2345
|
# version: "RenderingEngineVersionType",
|
2297
2346
|
# },
|
@@ -2308,7 +2357,7 @@ module Aws::RoboMaker
|
|
2308
2357
|
# resp.sources[0].s3_key #=> String
|
2309
2358
|
# resp.sources[0].etag #=> String
|
2310
2359
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
2311
|
-
# resp.simulation_software_suite.name #=> String, one of "Gazebo"
|
2360
|
+
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
2312
2361
|
# resp.simulation_software_suite.version #=> String
|
2313
2362
|
# resp.robot_software_suite.name #=> String, one of "ROS"
|
2314
2363
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic"
|
@@ -2339,7 +2388,7 @@ module Aws::RoboMaker
|
|
2339
2388
|
params: params,
|
2340
2389
|
config: config)
|
2341
2390
|
context[:gem_name] = 'aws-sdk-robomaker'
|
2342
|
-
context[:gem_version] = '1.
|
2391
|
+
context[:gem_version] = '1.14.0'
|
2343
2392
|
Seahorse::Client::Request.new(handlers, context)
|
2344
2393
|
end
|
2345
2394
|
|
@@ -17,6 +17,7 @@ module Aws::RoboMaker
|
|
17
17
|
BatchDescribeSimulationJobRequest = Shapes::StructureShape.new(name: 'BatchDescribeSimulationJobRequest')
|
18
18
|
BatchDescribeSimulationJobResponse = Shapes::StructureShape.new(name: 'BatchDescribeSimulationJobResponse')
|
19
19
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
20
|
+
BoxedBoolean = Shapes::BooleanShape.new(name: 'BoxedBoolean')
|
20
21
|
CancelDeploymentJobRequest = Shapes::StructureShape.new(name: 'CancelDeploymentJobRequest')
|
21
22
|
CancelDeploymentJobResponse = Shapes::StructureShape.new(name: 'CancelDeploymentJobResponse')
|
22
23
|
CancelSimulationJobRequest = Shapes::StructureShape.new(name: 'CancelSimulationJobRequest')
|
@@ -41,6 +42,11 @@ module Aws::RoboMaker
|
|
41
42
|
CreateSimulationJobRequest = Shapes::StructureShape.new(name: 'CreateSimulationJobRequest')
|
42
43
|
CreateSimulationJobResponse = Shapes::StructureShape.new(name: 'CreateSimulationJobResponse')
|
43
44
|
CreatedAt = Shapes::TimestampShape.new(name: 'CreatedAt')
|
45
|
+
DataSource = Shapes::StructureShape.new(name: 'DataSource')
|
46
|
+
DataSourceConfig = Shapes::StructureShape.new(name: 'DataSourceConfig')
|
47
|
+
DataSourceConfigs = Shapes::ListShape.new(name: 'DataSourceConfigs')
|
48
|
+
DataSourceNames = Shapes::ListShape.new(name: 'DataSourceNames')
|
49
|
+
DataSources = Shapes::ListShape.new(name: 'DataSources')
|
44
50
|
DeleteFleetRequest = Shapes::StructureShape.new(name: 'DeleteFleetRequest')
|
45
51
|
DeleteFleetResponse = Shapes::StructureShape.new(name: 'DeleteFleetResponse')
|
46
52
|
DeleteRobotApplicationRequest = Shapes::StructureShape.new(name: 'DeleteRobotApplicationRequest')
|
@@ -57,6 +63,7 @@ module Aws::RoboMaker
|
|
57
63
|
DeploymentJobs = Shapes::ListShape.new(name: 'DeploymentJobs')
|
58
64
|
DeploymentLaunchConfig = Shapes::StructureShape.new(name: 'DeploymentLaunchConfig')
|
59
65
|
DeploymentStatus = Shapes::StringShape.new(name: 'DeploymentStatus')
|
66
|
+
DeploymentTimeout = Shapes::IntegerShape.new(name: 'DeploymentTimeout')
|
60
67
|
DeploymentVersion = Shapes::StringShape.new(name: 'DeploymentVersion')
|
61
68
|
DeregisterRobotRequest = Shapes::StructureShape.new(name: 'DeregisterRobotRequest')
|
62
69
|
DeregisterRobotResponse = Shapes::StructureShape.new(name: 'DeregisterRobotResponse')
|
@@ -107,6 +114,7 @@ module Aws::RoboMaker
|
|
107
114
|
ListSimulationJobsResponse = Shapes::StructureShape.new(name: 'ListSimulationJobsResponse')
|
108
115
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
109
116
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
117
|
+
LoggingConfig = Shapes::StructureShape.new(name: 'LoggingConfig')
|
110
118
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
111
119
|
Name = Shapes::StringShape.new(name: 'Name')
|
112
120
|
NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
|
@@ -143,6 +151,9 @@ module Aws::RoboMaker
|
|
143
151
|
S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
|
144
152
|
S3Etag = Shapes::StringShape.new(name: 'S3Etag')
|
145
153
|
S3Key = Shapes::StringShape.new(name: 'S3Key')
|
154
|
+
S3KeyOutput = Shapes::StructureShape.new(name: 'S3KeyOutput')
|
155
|
+
S3KeyOutputs = Shapes::ListShape.new(name: 'S3KeyOutputs')
|
156
|
+
S3Keys = Shapes::ListShape.new(name: 'S3Keys')
|
146
157
|
SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
|
147
158
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
148
159
|
SimulationApplicationConfig = Shapes::StructureShape.new(name: 'SimulationApplicationConfig')
|
@@ -283,7 +294,7 @@ module Aws::RoboMaker
|
|
283
294
|
CreateSimulationApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, required: true, location_name: "sources"))
|
284
295
|
CreateSimulationApplicationRequest.add_member(:simulation_software_suite, Shapes::ShapeRef.new(shape: SimulationSoftwareSuite, required: true, location_name: "simulationSoftwareSuite"))
|
285
296
|
CreateSimulationApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
|
286
|
-
CreateSimulationApplicationRequest.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine,
|
297
|
+
CreateSimulationApplicationRequest.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, location_name: "renderingEngine"))
|
287
298
|
CreateSimulationApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
288
299
|
CreateSimulationApplicationRequest.struct_class = Types::CreateSimulationApplicationRequest
|
289
300
|
|
@@ -316,11 +327,13 @@ module Aws::RoboMaker
|
|
316
327
|
|
317
328
|
CreateSimulationJobRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
318
329
|
CreateSimulationJobRequest.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "outputLocation"))
|
330
|
+
CreateSimulationJobRequest.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "loggingConfig"))
|
319
331
|
CreateSimulationJobRequest.add_member(:max_job_duration_in_seconds, Shapes::ShapeRef.new(shape: JobDuration, required: true, location_name: "maxJobDurationInSeconds"))
|
320
332
|
CreateSimulationJobRequest.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, required: true, location_name: "iamRole"))
|
321
333
|
CreateSimulationJobRequest.add_member(:failure_behavior, Shapes::ShapeRef.new(shape: FailureBehavior, location_name: "failureBehavior"))
|
322
334
|
CreateSimulationJobRequest.add_member(:robot_applications, Shapes::ShapeRef.new(shape: RobotApplicationConfigs, location_name: "robotApplications"))
|
323
335
|
CreateSimulationJobRequest.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
336
|
+
CreateSimulationJobRequest.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSourceConfigs, location_name: "dataSources"))
|
324
337
|
CreateSimulationJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
325
338
|
CreateSimulationJobRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfig, location_name: "vpcConfig"))
|
326
339
|
CreateSimulationJobRequest.struct_class = Types::CreateSimulationJobRequest
|
@@ -333,15 +346,33 @@ module Aws::RoboMaker
|
|
333
346
|
CreateSimulationJobResponse.add_member(:failure_code, Shapes::ShapeRef.new(shape: SimulationJobErrorCode, location_name: "failureCode"))
|
334
347
|
CreateSimulationJobResponse.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
335
348
|
CreateSimulationJobResponse.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "outputLocation"))
|
349
|
+
CreateSimulationJobResponse.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "loggingConfig"))
|
336
350
|
CreateSimulationJobResponse.add_member(:max_job_duration_in_seconds, Shapes::ShapeRef.new(shape: JobDuration, location_name: "maxJobDurationInSeconds"))
|
337
351
|
CreateSimulationJobResponse.add_member(:simulation_time_millis, Shapes::ShapeRef.new(shape: SimulationTimeMillis, location_name: "simulationTimeMillis"))
|
338
352
|
CreateSimulationJobResponse.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, location_name: "iamRole"))
|
339
353
|
CreateSimulationJobResponse.add_member(:robot_applications, Shapes::ShapeRef.new(shape: RobotApplicationConfigs, location_name: "robotApplications"))
|
340
354
|
CreateSimulationJobResponse.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
355
|
+
CreateSimulationJobResponse.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSources, location_name: "dataSources"))
|
341
356
|
CreateSimulationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
342
357
|
CreateSimulationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
343
358
|
CreateSimulationJobResponse.struct_class = Types::CreateSimulationJobResponse
|
344
359
|
|
360
|
+
DataSource.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
361
|
+
DataSource.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, location_name: "s3Bucket"))
|
362
|
+
DataSource.add_member(:s3_keys, Shapes::ShapeRef.new(shape: S3KeyOutputs, location_name: "s3Keys"))
|
363
|
+
DataSource.struct_class = Types::DataSource
|
364
|
+
|
365
|
+
DataSourceConfig.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
366
|
+
DataSourceConfig.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "s3Bucket"))
|
367
|
+
DataSourceConfig.add_member(:s3_keys, Shapes::ShapeRef.new(shape: S3Keys, required: true, location_name: "s3Keys"))
|
368
|
+
DataSourceConfig.struct_class = Types::DataSourceConfig
|
369
|
+
|
370
|
+
DataSourceConfigs.member = Shapes::ShapeRef.new(shape: DataSourceConfig)
|
371
|
+
|
372
|
+
DataSourceNames.member = Shapes::ShapeRef.new(shape: Name)
|
373
|
+
|
374
|
+
DataSources.member = Shapes::ShapeRef.new(shape: DataSource)
|
375
|
+
|
345
376
|
DeleteFleetRequest.add_member(:fleet, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "fleet"))
|
346
377
|
DeleteFleetRequest.struct_class = Types::DeleteFleetRequest
|
347
378
|
|
@@ -373,6 +404,7 @@ module Aws::RoboMaker
|
|
373
404
|
|
374
405
|
DeploymentConfig.add_member(:concurrent_deployment_percentage, Shapes::ShapeRef.new(shape: Percentage, location_name: "concurrentDeploymentPercentage"))
|
375
406
|
DeploymentConfig.add_member(:failure_threshold_percentage, Shapes::ShapeRef.new(shape: Percentage, location_name: "failureThresholdPercentage"))
|
407
|
+
DeploymentConfig.add_member(:robot_deployment_timeout_in_seconds, Shapes::ShapeRef.new(shape: DeploymentTimeout, location_name: "robotDeploymentTimeoutInSeconds"))
|
376
408
|
DeploymentConfig.struct_class = Types::DeploymentConfig
|
377
409
|
|
378
410
|
DeploymentJob.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
@@ -488,11 +520,13 @@ module Aws::RoboMaker
|
|
488
520
|
DescribeSimulationJobResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: GenericString, location_name: "failureReason"))
|
489
521
|
DescribeSimulationJobResponse.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
490
522
|
DescribeSimulationJobResponse.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "outputLocation"))
|
523
|
+
DescribeSimulationJobResponse.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "loggingConfig"))
|
491
524
|
DescribeSimulationJobResponse.add_member(:max_job_duration_in_seconds, Shapes::ShapeRef.new(shape: JobDuration, location_name: "maxJobDurationInSeconds"))
|
492
525
|
DescribeSimulationJobResponse.add_member(:simulation_time_millis, Shapes::ShapeRef.new(shape: SimulationTimeMillis, location_name: "simulationTimeMillis"))
|
493
526
|
DescribeSimulationJobResponse.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, location_name: "iamRole"))
|
494
527
|
DescribeSimulationJobResponse.add_member(:robot_applications, Shapes::ShapeRef.new(shape: RobotApplicationConfigs, location_name: "robotApplications"))
|
495
528
|
DescribeSimulationJobResponse.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
529
|
+
DescribeSimulationJobResponse.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSources, location_name: "dataSources"))
|
496
530
|
DescribeSimulationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
497
531
|
DescribeSimulationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
498
532
|
DescribeSimulationJobResponse.struct_class = Types::DescribeSimulationJobResponse
|
@@ -597,6 +631,9 @@ module Aws::RoboMaker
|
|
597
631
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
598
632
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
599
633
|
|
634
|
+
LoggingConfig.add_member(:record_all_ros_topics, Shapes::ShapeRef.new(shape: BoxedBoolean, required: true, location_name: "recordAllRosTopics"))
|
635
|
+
LoggingConfig.struct_class = Types::LoggingConfig
|
636
|
+
|
600
637
|
OutputLocation.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, location_name: "s3Bucket"))
|
601
638
|
OutputLocation.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: S3Key, location_name: "s3Prefix"))
|
602
639
|
OutputLocation.struct_class = Types::OutputLocation
|
@@ -676,6 +713,14 @@ module Aws::RoboMaker
|
|
676
713
|
|
677
714
|
Robots.member = Shapes::ShapeRef.new(shape: Robot)
|
678
715
|
|
716
|
+
S3KeyOutput.add_member(:s3_key, Shapes::ShapeRef.new(shape: S3Key, location_name: "s3Key"))
|
717
|
+
S3KeyOutput.add_member(:etag, Shapes::ShapeRef.new(shape: S3Etag, location_name: "etag"))
|
718
|
+
S3KeyOutput.struct_class = Types::S3KeyOutput
|
719
|
+
|
720
|
+
S3KeyOutputs.member = Shapes::ShapeRef.new(shape: S3KeyOutput)
|
721
|
+
|
722
|
+
S3Keys.member = Shapes::ShapeRef.new(shape: S3Key)
|
723
|
+
|
679
724
|
SecurityGroups.member = Shapes::ShapeRef.new(shape: NonEmptyString)
|
680
725
|
|
681
726
|
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
@@ -710,11 +755,13 @@ module Aws::RoboMaker
|
|
710
755
|
SimulationJob.add_member(:failure_reason, Shapes::ShapeRef.new(shape: GenericString, location_name: "failureReason"))
|
711
756
|
SimulationJob.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
712
757
|
SimulationJob.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "outputLocation"))
|
758
|
+
SimulationJob.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "loggingConfig"))
|
713
759
|
SimulationJob.add_member(:max_job_duration_in_seconds, Shapes::ShapeRef.new(shape: JobDuration, location_name: "maxJobDurationInSeconds"))
|
714
760
|
SimulationJob.add_member(:simulation_time_millis, Shapes::ShapeRef.new(shape: SimulationTimeMillis, location_name: "simulationTimeMillis"))
|
715
761
|
SimulationJob.add_member(:iam_role, Shapes::ShapeRef.new(shape: IamRole, location_name: "iamRole"))
|
716
762
|
SimulationJob.add_member(:robot_applications, Shapes::ShapeRef.new(shape: RobotApplicationConfigs, location_name: "robotApplications"))
|
717
763
|
SimulationJob.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
764
|
+
SimulationJob.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSources, location_name: "dataSources"))
|
718
765
|
SimulationJob.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
719
766
|
SimulationJob.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
720
767
|
SimulationJob.struct_class = Types::SimulationJob
|
@@ -727,6 +774,7 @@ module Aws::RoboMaker
|
|
727
774
|
SimulationJobSummary.add_member(:status, Shapes::ShapeRef.new(shape: SimulationJobStatus, location_name: "status"))
|
728
775
|
SimulationJobSummary.add_member(:simulation_application_names, Shapes::ShapeRef.new(shape: SimulationApplicationNames, location_name: "simulationApplicationNames"))
|
729
776
|
SimulationJobSummary.add_member(:robot_application_names, Shapes::ShapeRef.new(shape: RobotApplicationNames, location_name: "robotApplicationNames"))
|
777
|
+
SimulationJobSummary.add_member(:data_source_names, Shapes::ShapeRef.new(shape: DataSourceNames, location_name: "dataSourceNames"))
|
730
778
|
SimulationJobSummary.struct_class = Types::SimulationJobSummary
|
731
779
|
|
732
780
|
SimulationJobs.member = Shapes::ShapeRef.new(shape: SimulationJob)
|
@@ -805,7 +853,7 @@ module Aws::RoboMaker
|
|
805
853
|
UpdateSimulationApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, required: true, location_name: "sources"))
|
806
854
|
UpdateSimulationApplicationRequest.add_member(:simulation_software_suite, Shapes::ShapeRef.new(shape: SimulationSoftwareSuite, required: true, location_name: "simulationSoftwareSuite"))
|
807
855
|
UpdateSimulationApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
|
808
|
-
UpdateSimulationApplicationRequest.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine,
|
856
|
+
UpdateSimulationApplicationRequest.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, location_name: "renderingEngine"))
|
809
857
|
UpdateSimulationApplicationRequest.add_member(:current_revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "currentRevisionId"))
|
810
858
|
UpdateSimulationApplicationRequest.struct_class = Types::UpdateSimulationApplicationRequest
|
811
859
|
|
@@ -106,6 +106,7 @@ module Aws::RoboMaker
|
|
106
106
|
# deployment_config: {
|
107
107
|
# concurrent_deployment_percentage: 1,
|
108
108
|
# failure_threshold_percentage: 1,
|
109
|
+
# robot_deployment_timeout_in_seconds: 1,
|
109
110
|
# },
|
110
111
|
# client_request_token: "ClientRequestToken", # required
|
111
112
|
# fleet: "Arn", # required
|
@@ -586,14 +587,14 @@ module Aws::RoboMaker
|
|
586
587
|
# },
|
587
588
|
# ],
|
588
589
|
# simulation_software_suite: { # required
|
589
|
-
# name: "Gazebo", # accepts Gazebo
|
590
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
590
591
|
# version: "SimulationSoftwareSuiteVersionType",
|
591
592
|
# },
|
592
593
|
# robot_software_suite: { # required
|
593
594
|
# name: "ROS", # accepts ROS
|
594
595
|
# version: "Kinetic", # accepts Kinetic, Melodic
|
595
596
|
# },
|
596
|
-
# rendering_engine: {
|
597
|
+
# rendering_engine: {
|
597
598
|
# name: "OGRE", # accepts OGRE
|
598
599
|
# version: "RenderingEngineVersionType",
|
599
600
|
# },
|
@@ -783,6 +784,9 @@ module Aws::RoboMaker
|
|
783
784
|
# s3_bucket: "S3Bucket",
|
784
785
|
# s3_prefix: "S3Key",
|
785
786
|
# },
|
787
|
+
# logging_config: {
|
788
|
+
# record_all_ros_topics: false, # required
|
789
|
+
# },
|
786
790
|
# max_job_duration_in_seconds: 1, # required
|
787
791
|
# iam_role: "IamRole", # required
|
788
792
|
# failure_behavior: "Fail", # accepts Fail, Continue
|
@@ -812,6 +816,13 @@ module Aws::RoboMaker
|
|
812
816
|
# },
|
813
817
|
# },
|
814
818
|
# ],
|
819
|
+
# data_sources: [
|
820
|
+
# {
|
821
|
+
# name: "Name", # required
|
822
|
+
# s3_bucket: "S3Bucket", # required
|
823
|
+
# s3_keys: ["S3Key"], # required
|
824
|
+
# },
|
825
|
+
# ],
|
815
826
|
# tags: {
|
816
827
|
# "TagKey" => "TagValue",
|
817
828
|
# },
|
@@ -834,6 +845,10 @@ module Aws::RoboMaker
|
|
834
845
|
# Location for output files generated by the simulation job.
|
835
846
|
# @return [Types::OutputLocation]
|
836
847
|
#
|
848
|
+
# @!attribute [rw] logging_config
|
849
|
+
# The logging configuration.
|
850
|
+
# @return [Types::LoggingConfig]
|
851
|
+
#
|
837
852
|
# @!attribute [rw] max_job_duration_in_seconds
|
838
853
|
# The maximum simulation job duration in seconds (up to 14 days or
|
839
854
|
# 1,209,600 seconds. When `maxJobDurationInSeconds` is reached, the
|
@@ -867,6 +882,15 @@ module Aws::RoboMaker
|
|
867
882
|
# The simulation application to use in the simulation job.
|
868
883
|
# @return [Array<Types::SimulationApplicationConfig>]
|
869
884
|
#
|
885
|
+
# @!attribute [rw] data_sources
|
886
|
+
# The data sources for the simulation job.
|
887
|
+
#
|
888
|
+
# <note markdown="1"> There is a limit of 100 files and a combined size of 25GB for all
|
889
|
+
# `DataSourceConfig` objects.
|
890
|
+
#
|
891
|
+
# </note>
|
892
|
+
# @return [Array<Types::DataSourceConfig>]
|
893
|
+
#
|
870
894
|
# @!attribute [rw] tags
|
871
895
|
# A map that contains tag keys and tag values that are attached to the
|
872
896
|
# simulation job.
|
@@ -884,11 +908,13 @@ module Aws::RoboMaker
|
|
884
908
|
class CreateSimulationJobRequest < Struct.new(
|
885
909
|
:client_request_token,
|
886
910
|
:output_location,
|
911
|
+
:logging_config,
|
887
912
|
:max_job_duration_in_seconds,
|
888
913
|
:iam_role,
|
889
914
|
:failure_behavior,
|
890
915
|
:robot_applications,
|
891
916
|
:simulation_applications,
|
917
|
+
:data_sources,
|
892
918
|
:tags,
|
893
919
|
:vpc_config)
|
894
920
|
include Aws::Structure
|
@@ -979,6 +1005,20 @@ module Aws::RoboMaker
|
|
979
1005
|
#
|
980
1006
|
# : Etag for SimulationApplication does not match value during version
|
981
1007
|
# creation.
|
1008
|
+
#
|
1009
|
+
# WrongRegionS3Output
|
1010
|
+
#
|
1011
|
+
# : S3 output bucket is in a different region than AWS RoboMaker.
|
1012
|
+
#
|
1013
|
+
# WrongRegionRobotApplication
|
1014
|
+
#
|
1015
|
+
# : RobotApplication bucket is in a different region than AWS
|
1016
|
+
# RoboMaker.
|
1017
|
+
#
|
1018
|
+
# WrongRegionSimulationApplication
|
1019
|
+
#
|
1020
|
+
# : SimulationApplication bucket is in a different region than AWS
|
1021
|
+
# RoboMaker.
|
982
1022
|
# @return [String]
|
983
1023
|
#
|
984
1024
|
# @!attribute [rw] client_request_token
|
@@ -990,6 +1030,10 @@ module Aws::RoboMaker
|
|
990
1030
|
# Simulation job output files location.
|
991
1031
|
# @return [Types::OutputLocation]
|
992
1032
|
#
|
1033
|
+
# @!attribute [rw] logging_config
|
1034
|
+
# The logging configuration.
|
1035
|
+
# @return [Types::LoggingConfig]
|
1036
|
+
#
|
993
1037
|
# @!attribute [rw] max_job_duration_in_seconds
|
994
1038
|
# The maximum simulation job duration in seconds.
|
995
1039
|
# @return [Integer]
|
@@ -1011,6 +1055,10 @@ module Aws::RoboMaker
|
|
1011
1055
|
# The simulation application used by the simulation job.
|
1012
1056
|
# @return [Array<Types::SimulationApplicationConfig>]
|
1013
1057
|
#
|
1058
|
+
# @!attribute [rw] data_sources
|
1059
|
+
# The data sources for the simulation job.
|
1060
|
+
# @return [Array<Types::DataSource>]
|
1061
|
+
#
|
1014
1062
|
# @!attribute [rw] tags
|
1015
1063
|
# The list of all tags added to the simulation job.
|
1016
1064
|
# @return [Hash<String,String>]
|
@@ -1030,16 +1078,73 @@ module Aws::RoboMaker
|
|
1030
1078
|
:failure_code,
|
1031
1079
|
:client_request_token,
|
1032
1080
|
:output_location,
|
1081
|
+
:logging_config,
|
1033
1082
|
:max_job_duration_in_seconds,
|
1034
1083
|
:simulation_time_millis,
|
1035
1084
|
:iam_role,
|
1036
1085
|
:robot_applications,
|
1037
1086
|
:simulation_applications,
|
1087
|
+
:data_sources,
|
1038
1088
|
:tags,
|
1039
1089
|
:vpc_config)
|
1040
1090
|
include Aws::Structure
|
1041
1091
|
end
|
1042
1092
|
|
1093
|
+
# Information about a data source.
|
1094
|
+
#
|
1095
|
+
# @!attribute [rw] name
|
1096
|
+
# The name of the data source.
|
1097
|
+
# @return [String]
|
1098
|
+
#
|
1099
|
+
# @!attribute [rw] s3_bucket
|
1100
|
+
# The S3 bucket where the data files are located.
|
1101
|
+
# @return [String]
|
1102
|
+
#
|
1103
|
+
# @!attribute [rw] s3_keys
|
1104
|
+
# The list of S3 keys identifying the data source files.
|
1105
|
+
# @return [Array<Types::S3KeyOutput>]
|
1106
|
+
#
|
1107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSource AWS API Documentation
|
1108
|
+
#
|
1109
|
+
class DataSource < Struct.new(
|
1110
|
+
:name,
|
1111
|
+
:s3_bucket,
|
1112
|
+
:s3_keys)
|
1113
|
+
include Aws::Structure
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
# Information about a data source.
|
1117
|
+
#
|
1118
|
+
# @note When making an API call, you may pass DataSourceConfig
|
1119
|
+
# data as a hash:
|
1120
|
+
#
|
1121
|
+
# {
|
1122
|
+
# name: "Name", # required
|
1123
|
+
# s3_bucket: "S3Bucket", # required
|
1124
|
+
# s3_keys: ["S3Key"], # required
|
1125
|
+
# }
|
1126
|
+
#
|
1127
|
+
# @!attribute [rw] name
|
1128
|
+
# The name of the data source.
|
1129
|
+
# @return [String]
|
1130
|
+
#
|
1131
|
+
# @!attribute [rw] s3_bucket
|
1132
|
+
# The S3 bucket where the data files are located.
|
1133
|
+
# @return [String]
|
1134
|
+
#
|
1135
|
+
# @!attribute [rw] s3_keys
|
1136
|
+
# The list of S3 keys identifying the data source files.
|
1137
|
+
# @return [Array<String>]
|
1138
|
+
#
|
1139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSourceConfig AWS API Documentation
|
1140
|
+
#
|
1141
|
+
class DataSourceConfig < Struct.new(
|
1142
|
+
:name,
|
1143
|
+
:s3_bucket,
|
1144
|
+
:s3_keys)
|
1145
|
+
include Aws::Structure
|
1146
|
+
end
|
1147
|
+
|
1043
1148
|
# @note When making an API call, you may pass DeleteFleetRequest
|
1044
1149
|
# data as a hash:
|
1045
1150
|
#
|
@@ -1189,6 +1294,7 @@ module Aws::RoboMaker
|
|
1189
1294
|
# {
|
1190
1295
|
# concurrent_deployment_percentage: 1,
|
1191
1296
|
# failure_threshold_percentage: 1,
|
1297
|
+
# robot_deployment_timeout_in_seconds: 1,
|
1192
1298
|
# }
|
1193
1299
|
#
|
1194
1300
|
# @!attribute [rw] concurrent_deployment_percentage
|
@@ -1200,11 +1306,18 @@ module Aws::RoboMaker
|
|
1200
1306
|
# deployment.
|
1201
1307
|
# @return [Integer]
|
1202
1308
|
#
|
1309
|
+
# @!attribute [rw] robot_deployment_timeout_in_seconds
|
1310
|
+
# The amount of time, in seconds, to wait for deployment to a single
|
1311
|
+
# robot to complete. Choose a time between 1 minute and 7 days. The
|
1312
|
+
# default is 5 hours.
|
1313
|
+
# @return [Integer]
|
1314
|
+
#
|
1203
1315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentConfig AWS API Documentation
|
1204
1316
|
#
|
1205
1317
|
class DeploymentConfig < Struct.new(
|
1206
1318
|
:concurrent_deployment_percentage,
|
1207
|
-
:failure_threshold_percentage
|
1319
|
+
:failure_threshold_percentage,
|
1320
|
+
:robot_deployment_timeout_in_seconds)
|
1208
1321
|
include Aws::Structure
|
1209
1322
|
end
|
1210
1323
|
|
@@ -1841,6 +1954,10 @@ module Aws::RoboMaker
|
|
1841
1954
|
# Location for output files generated by the simulation job.
|
1842
1955
|
# @return [Types::OutputLocation]
|
1843
1956
|
#
|
1957
|
+
# @!attribute [rw] logging_config
|
1958
|
+
# The logging configuration.
|
1959
|
+
# @return [Types::LoggingConfig]
|
1960
|
+
#
|
1844
1961
|
# @!attribute [rw] max_job_duration_in_seconds
|
1845
1962
|
# The maximum job duration in seconds. The value must be 8 days
|
1846
1963
|
# (691,200 seconds) or less.
|
@@ -1863,6 +1980,10 @@ module Aws::RoboMaker
|
|
1863
1980
|
# A list of simulation applications.
|
1864
1981
|
# @return [Array<Types::SimulationApplicationConfig>]
|
1865
1982
|
#
|
1983
|
+
# @!attribute [rw] data_sources
|
1984
|
+
# The data sources for the simulation job.
|
1985
|
+
# @return [Array<Types::DataSource>]
|
1986
|
+
#
|
1866
1987
|
# @!attribute [rw] tags
|
1867
1988
|
# The list of all tags added to the specified simulation job.
|
1868
1989
|
# @return [Hash<String,String>]
|
@@ -1884,11 +2005,13 @@ module Aws::RoboMaker
|
|
1884
2005
|
:failure_reason,
|
1885
2006
|
:client_request_token,
|
1886
2007
|
:output_location,
|
2008
|
+
:logging_config,
|
1887
2009
|
:max_job_duration_in_seconds,
|
1888
2010
|
:simulation_time_millis,
|
1889
2011
|
:iam_role,
|
1890
2012
|
:robot_applications,
|
1891
2013
|
:simulation_applications,
|
2014
|
+
:data_sources,
|
1892
2015
|
:tags,
|
1893
2016
|
:vpc_config)
|
1894
2017
|
include Aws::Structure
|
@@ -2555,6 +2678,26 @@ module Aws::RoboMaker
|
|
2555
2678
|
include Aws::Structure
|
2556
2679
|
end
|
2557
2680
|
|
2681
|
+
# The logging configuration.
|
2682
|
+
#
|
2683
|
+
# @note When making an API call, you may pass LoggingConfig
|
2684
|
+
# data as a hash:
|
2685
|
+
#
|
2686
|
+
# {
|
2687
|
+
# record_all_ros_topics: false, # required
|
2688
|
+
# }
|
2689
|
+
#
|
2690
|
+
# @!attribute [rw] record_all_ros_topics
|
2691
|
+
# A boolean indicating whether to record all ROS topics.
|
2692
|
+
# @return [Boolean]
|
2693
|
+
#
|
2694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/LoggingConfig AWS API Documentation
|
2695
|
+
#
|
2696
|
+
class LoggingConfig < Struct.new(
|
2697
|
+
:record_all_ros_topics)
|
2698
|
+
include Aws::Structure
|
2699
|
+
end
|
2700
|
+
|
2558
2701
|
# The output location.
|
2559
2702
|
#
|
2560
2703
|
# @note When making an API call, you may pass OutputLocation
|
@@ -2947,6 +3090,24 @@ module Aws::RoboMaker
|
|
2947
3090
|
include Aws::Structure
|
2948
3091
|
end
|
2949
3092
|
|
3093
|
+
# Information about S3 keys.
|
3094
|
+
#
|
3095
|
+
# @!attribute [rw] s3_key
|
3096
|
+
# The S3 key.
|
3097
|
+
# @return [String]
|
3098
|
+
#
|
3099
|
+
# @!attribute [rw] etag
|
3100
|
+
# The etag for the object.
|
3101
|
+
# @return [String]
|
3102
|
+
#
|
3103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/S3KeyOutput AWS API Documentation
|
3104
|
+
#
|
3105
|
+
class S3KeyOutput < Struct.new(
|
3106
|
+
:s3_key,
|
3107
|
+
:etag)
|
3108
|
+
include Aws::Structure
|
3109
|
+
end
|
3110
|
+
|
2950
3111
|
# The request has failed due to a temporary failure of the server.
|
2951
3112
|
#
|
2952
3113
|
# @!attribute [rw] message
|
@@ -3088,6 +3249,10 @@ module Aws::RoboMaker
|
|
3088
3249
|
# Location for output files generated by the simulation job.
|
3089
3250
|
# @return [Types::OutputLocation]
|
3090
3251
|
#
|
3252
|
+
# @!attribute [rw] logging_config
|
3253
|
+
# The logging configuration.
|
3254
|
+
# @return [Types::LoggingConfig]
|
3255
|
+
#
|
3091
3256
|
# @!attribute [rw] max_job_duration_in_seconds
|
3092
3257
|
# The maximum simulation job duration in seconds. The value must be 8
|
3093
3258
|
# days (691,200 seconds) or less.
|
@@ -3111,6 +3276,10 @@ module Aws::RoboMaker
|
|
3111
3276
|
# A list of simulation applications.
|
3112
3277
|
# @return [Array<Types::SimulationApplicationConfig>]
|
3113
3278
|
#
|
3279
|
+
# @!attribute [rw] data_sources
|
3280
|
+
# The data sources for the simulation job.
|
3281
|
+
# @return [Array<Types::DataSource>]
|
3282
|
+
#
|
3114
3283
|
# @!attribute [rw] tags
|
3115
3284
|
# A map that contains tag keys and tag values that are attached to the
|
3116
3285
|
# simulation job.
|
@@ -3133,11 +3302,13 @@ module Aws::RoboMaker
|
|
3133
3302
|
:failure_reason,
|
3134
3303
|
:client_request_token,
|
3135
3304
|
:output_location,
|
3305
|
+
:logging_config,
|
3136
3306
|
:max_job_duration_in_seconds,
|
3137
3307
|
:simulation_time_millis,
|
3138
3308
|
:iam_role,
|
3139
3309
|
:robot_applications,
|
3140
3310
|
:simulation_applications,
|
3311
|
+
:data_sources,
|
3141
3312
|
:tags,
|
3142
3313
|
:vpc_config)
|
3143
3314
|
include Aws::Structure
|
@@ -3170,6 +3341,10 @@ module Aws::RoboMaker
|
|
3170
3341
|
# A list of simulation job robot application names.
|
3171
3342
|
# @return [Array<String>]
|
3172
3343
|
#
|
3344
|
+
# @!attribute [rw] data_source_names
|
3345
|
+
# The names of the data sources.
|
3346
|
+
# @return [Array<String>]
|
3347
|
+
#
|
3173
3348
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationJobSummary AWS API Documentation
|
3174
3349
|
#
|
3175
3350
|
class SimulationJobSummary < Struct.new(
|
@@ -3178,7 +3353,8 @@ module Aws::RoboMaker
|
|
3178
3353
|
:name,
|
3179
3354
|
:status,
|
3180
3355
|
:simulation_application_names,
|
3181
|
-
:robot_application_names
|
3356
|
+
:robot_application_names,
|
3357
|
+
:data_source_names)
|
3182
3358
|
include Aws::Structure
|
3183
3359
|
end
|
3184
3360
|
|
@@ -3188,7 +3364,7 @@ module Aws::RoboMaker
|
|
3188
3364
|
# data as a hash:
|
3189
3365
|
#
|
3190
3366
|
# {
|
3191
|
-
# name: "Gazebo", # accepts Gazebo
|
3367
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
3192
3368
|
# version: "SimulationSoftwareSuiteVersionType",
|
3193
3369
|
# }
|
3194
3370
|
#
|
@@ -3579,14 +3755,14 @@ module Aws::RoboMaker
|
|
3579
3755
|
# },
|
3580
3756
|
# ],
|
3581
3757
|
# simulation_software_suite: { # required
|
3582
|
-
# name: "Gazebo", # accepts Gazebo
|
3758
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
3583
3759
|
# version: "SimulationSoftwareSuiteVersionType",
|
3584
3760
|
# },
|
3585
3761
|
# robot_software_suite: { # required
|
3586
3762
|
# name: "ROS", # accepts ROS
|
3587
3763
|
# version: "Kinetic", # accepts Kinetic, Melodic
|
3588
3764
|
# },
|
3589
|
-
# rendering_engine: {
|
3765
|
+
# rendering_engine: {
|
3590
3766
|
# name: "OGRE", # accepts OGRE
|
3591
3767
|
# version: "RenderingEngineVersionType",
|
3592
3768
|
# },
|
data/lib/aws-sdk-robomaker.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-robomaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|