aws-sdk-robomaker 1.18.0 → 1.19.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 +524 -89
- data/lib/aws-sdk-robomaker/client_api.rb +161 -0
- data/lib/aws-sdk-robomaker/types.rb +891 -134
- 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: b67cc51139cf88cd59b9ab5a7207d9623130baee
|
4
|
+
data.tar.gz: f2c5bb934464c6315f1dd8d82eaffd74836098da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e81d35559d6c95ec5465798f45a9f40c29c4a3bd5926b6ee23d9e36f7c84beb4be452af4ee9a62c1e5fd9ad9a9a545beac624145ded2462ebc6148cdafcb9613
|
7
|
+
data.tar.gz: 5f8a946e14a760c48fa8204c7ef47d7b61304a6afc92130a515331a78505dbd8ede1f3d6bccb693ef2ac77ee12168b5092cb666397fd0fb2d5dbcb44abdb2886
|
data/lib/aws-sdk-robomaker.rb
CHANGED
@@ -279,7 +279,7 @@ 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", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "InvalidInput", "WrongRegionS3Bucket", "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", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "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
|
@@ -383,6 +383,30 @@ module Aws::RoboMaker
|
|
383
383
|
req.send_request(options)
|
384
384
|
end
|
385
385
|
|
386
|
+
# Cancels a simulation job batch. When you cancel a simulation job
|
387
|
+
# batch, you are also cancelling all of the active simulation jobs
|
388
|
+
# created as part of the batch.
|
389
|
+
#
|
390
|
+
# @option params [required, String] :batch
|
391
|
+
# The id of the batch to cancel.
|
392
|
+
#
|
393
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
394
|
+
#
|
395
|
+
# @example Request syntax with placeholder values
|
396
|
+
#
|
397
|
+
# resp = client.cancel_simulation_job_batch({
|
398
|
+
# batch: "Arn", # required
|
399
|
+
# })
|
400
|
+
#
|
401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelSimulationJobBatch AWS API Documentation
|
402
|
+
#
|
403
|
+
# @overload cancel_simulation_job_batch(params = {})
|
404
|
+
# @param [Hash] params ({})
|
405
|
+
def cancel_simulation_job_batch(params = {}, options = {})
|
406
|
+
req = build_request(:cancel_simulation_job_batch, params)
|
407
|
+
req.send_request(options)
|
408
|
+
end
|
409
|
+
|
386
410
|
# Deploys a specific version of a robot application to robots in a
|
387
411
|
# fleet.
|
388
412
|
#
|
@@ -608,7 +632,8 @@ module Aws::RoboMaker
|
|
608
632
|
# The sources of the robot application.
|
609
633
|
#
|
610
634
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
611
|
-
# The robot software suite used by the robot
|
635
|
+
# The robot software suite (ROS distribuition) used by the robot
|
636
|
+
# application.
|
612
637
|
#
|
613
638
|
# @option params [Hash<String,String>] :tags
|
614
639
|
# A map that contains tag keys and tag values that are attached to the
|
@@ -734,7 +759,8 @@ module Aws::RoboMaker
|
|
734
759
|
# The simulation software suite used by the simulation application.
|
735
760
|
#
|
736
761
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
737
|
-
# The robot software suite
|
762
|
+
# The robot software suite (ROS distribution) used by the simulation
|
763
|
+
# application.
|
738
764
|
#
|
739
765
|
# @option params [Types::RenderingEngine] :rendering_engine
|
740
766
|
# The rendering engine for the simulation application.
|
@@ -919,7 +945,9 @@ module Aws::RoboMaker
|
|
919
945
|
# The simulation application to use in the simulation job.
|
920
946
|
#
|
921
947
|
# @option params [Array<Types::DataSourceConfig>] :data_sources
|
922
|
-
#
|
948
|
+
# Specify data sources to mount read-only files from S3 into your
|
949
|
+
# simulation. These files are available under
|
950
|
+
# `/opt/robomaker/datasources/data_source_name`.
|
923
951
|
#
|
924
952
|
# <note markdown="1"> There is a limit of 100 files and a combined size of 25GB for all
|
925
953
|
# `DataSourceConfig` objects.
|
@@ -1038,7 +1066,7 @@ module Aws::RoboMaker
|
|
1038
1066
|
# resp.last_started_at #=> Time
|
1039
1067
|
# resp.last_updated_at #=> Time
|
1040
1068
|
# resp.failure_behavior #=> String, one of "Fail", "Continue"
|
1041
|
-
# 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"
|
1069
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
1042
1070
|
# resp.client_request_token #=> String
|
1043
1071
|
# resp.output_location.s3_bucket #=> String
|
1044
1072
|
# resp.output_location.s3_prefix #=> String
|
@@ -1543,7 +1571,7 @@ module Aws::RoboMaker
|
|
1543
1571
|
# resp.last_started_at #=> Time
|
1544
1572
|
# resp.last_updated_at #=> Time
|
1545
1573
|
# resp.failure_behavior #=> String, one of "Fail", "Continue"
|
1546
|
-
# 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"
|
1574
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
1547
1575
|
# resp.failure_reason #=> String
|
1548
1576
|
# resp.client_request_token #=> String
|
1549
1577
|
# resp.output_location.s3_bucket #=> String
|
@@ -1601,12 +1629,155 @@ module Aws::RoboMaker
|
|
1601
1629
|
req.send_request(options)
|
1602
1630
|
end
|
1603
1631
|
|
1604
|
-
#
|
1605
|
-
#
|
1632
|
+
# Describes a simulation job batch.
|
1633
|
+
#
|
1634
|
+
# @option params [required, String] :batch
|
1635
|
+
# The id of the batch to describe.
|
1636
|
+
#
|
1637
|
+
# @return [Types::DescribeSimulationJobBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1638
|
+
#
|
1639
|
+
# * {Types::DescribeSimulationJobBatchResponse#arn #arn} => String
|
1640
|
+
# * {Types::DescribeSimulationJobBatchResponse#status #status} => String
|
1641
|
+
# * {Types::DescribeSimulationJobBatchResponse#last_updated_at #last_updated_at} => Time
|
1642
|
+
# * {Types::DescribeSimulationJobBatchResponse#created_at #created_at} => Time
|
1643
|
+
# * {Types::DescribeSimulationJobBatchResponse#client_request_token #client_request_token} => String
|
1644
|
+
# * {Types::DescribeSimulationJobBatchResponse#batch_policy #batch_policy} => Types::BatchPolicy
|
1645
|
+
# * {Types::DescribeSimulationJobBatchResponse#failure_code #failure_code} => String
|
1646
|
+
# * {Types::DescribeSimulationJobBatchResponse#failure_reason #failure_reason} => String
|
1647
|
+
# * {Types::DescribeSimulationJobBatchResponse#failed_requests #failed_requests} => Array<Types::FailedCreateSimulationJobRequest>
|
1648
|
+
# * {Types::DescribeSimulationJobBatchResponse#pending_requests #pending_requests} => Array<Types::SimulationJobRequest>
|
1649
|
+
# * {Types::DescribeSimulationJobBatchResponse#created_requests #created_requests} => Array<Types::SimulationJobSummary>
|
1650
|
+
# * {Types::DescribeSimulationJobBatchResponse#tags #tags} => Hash<String,String>
|
1606
1651
|
#
|
1607
|
-
#
|
1652
|
+
# @example Request syntax with placeholder values
|
1608
1653
|
#
|
1609
|
-
#
|
1654
|
+
# resp = client.describe_simulation_job_batch({
|
1655
|
+
# batch: "Arn", # required
|
1656
|
+
# })
|
1657
|
+
#
|
1658
|
+
# @example Response structure
|
1659
|
+
#
|
1660
|
+
# resp.arn #=> String
|
1661
|
+
# resp.status #=> String, one of "Pending", "InProgress", "Failed", "Completed", "Canceled", "Canceling", "Completing", "TimingOut", "TimedOut"
|
1662
|
+
# resp.last_updated_at #=> Time
|
1663
|
+
# resp.created_at #=> Time
|
1664
|
+
# resp.client_request_token #=> String
|
1665
|
+
# resp.batch_policy.timeout_in_seconds #=> Integer
|
1666
|
+
# resp.batch_policy.max_concurrency #=> Integer
|
1667
|
+
# resp.failure_code #=> String, one of "InternalServiceError"
|
1668
|
+
# resp.failure_reason #=> String
|
1669
|
+
# resp.failed_requests #=> Array
|
1670
|
+
# resp.failed_requests[0].request.output_location.s3_bucket #=> String
|
1671
|
+
# resp.failed_requests[0].request.output_location.s3_prefix #=> String
|
1672
|
+
# resp.failed_requests[0].request.logging_config.record_all_ros_topics #=> Boolean
|
1673
|
+
# resp.failed_requests[0].request.max_job_duration_in_seconds #=> Integer
|
1674
|
+
# resp.failed_requests[0].request.iam_role #=> String
|
1675
|
+
# resp.failed_requests[0].request.failure_behavior #=> String, one of "Fail", "Continue"
|
1676
|
+
# resp.failed_requests[0].request.use_default_applications #=> Boolean
|
1677
|
+
# resp.failed_requests[0].request.robot_applications #=> Array
|
1678
|
+
# resp.failed_requests[0].request.robot_applications[0].application #=> String
|
1679
|
+
# resp.failed_requests[0].request.robot_applications[0].application_version #=> String
|
1680
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.package_name #=> String
|
1681
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.launch_file #=> String
|
1682
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.environment_variables #=> Hash
|
1683
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1684
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
1685
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1686
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1687
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1688
|
+
# resp.failed_requests[0].request.simulation_applications #=> Array
|
1689
|
+
# resp.failed_requests[0].request.simulation_applications[0].application #=> String
|
1690
|
+
# resp.failed_requests[0].request.simulation_applications[0].application_version #=> String
|
1691
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.package_name #=> String
|
1692
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.launch_file #=> String
|
1693
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.environment_variables #=> Hash
|
1694
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1695
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
1696
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1697
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1698
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1699
|
+
# resp.failed_requests[0].request.data_sources #=> Array
|
1700
|
+
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
1701
|
+
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
1702
|
+
# resp.failed_requests[0].request.data_sources[0].s3_keys #=> Array
|
1703
|
+
# resp.failed_requests[0].request.data_sources[0].s3_keys[0] #=> String
|
1704
|
+
# resp.failed_requests[0].request.vpc_config.subnets #=> Array
|
1705
|
+
# resp.failed_requests[0].request.vpc_config.subnets[0] #=> String
|
1706
|
+
# resp.failed_requests[0].request.vpc_config.security_groups #=> Array
|
1707
|
+
# resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
|
1708
|
+
# resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
|
1709
|
+
# resp.failed_requests[0].request.tags #=> Hash
|
1710
|
+
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
1711
|
+
# resp.failed_requests[0].failure_reason #=> String
|
1712
|
+
# resp.failed_requests[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
1713
|
+
# resp.failed_requests[0].failed_at #=> Time
|
1714
|
+
# resp.pending_requests #=> Array
|
1715
|
+
# resp.pending_requests[0].output_location.s3_bucket #=> String
|
1716
|
+
# resp.pending_requests[0].output_location.s3_prefix #=> String
|
1717
|
+
# resp.pending_requests[0].logging_config.record_all_ros_topics #=> Boolean
|
1718
|
+
# resp.pending_requests[0].max_job_duration_in_seconds #=> Integer
|
1719
|
+
# resp.pending_requests[0].iam_role #=> String
|
1720
|
+
# resp.pending_requests[0].failure_behavior #=> String, one of "Fail", "Continue"
|
1721
|
+
# resp.pending_requests[0].use_default_applications #=> Boolean
|
1722
|
+
# resp.pending_requests[0].robot_applications #=> Array
|
1723
|
+
# resp.pending_requests[0].robot_applications[0].application #=> String
|
1724
|
+
# resp.pending_requests[0].robot_applications[0].application_version #=> String
|
1725
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.package_name #=> String
|
1726
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.launch_file #=> String
|
1727
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.environment_variables #=> Hash
|
1728
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1729
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
1730
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1731
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1732
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1733
|
+
# resp.pending_requests[0].simulation_applications #=> Array
|
1734
|
+
# resp.pending_requests[0].simulation_applications[0].application #=> String
|
1735
|
+
# resp.pending_requests[0].simulation_applications[0].application_version #=> String
|
1736
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.package_name #=> String
|
1737
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.launch_file #=> String
|
1738
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.environment_variables #=> Hash
|
1739
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1740
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
1741
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1742
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1743
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1744
|
+
# resp.pending_requests[0].data_sources #=> Array
|
1745
|
+
# resp.pending_requests[0].data_sources[0].name #=> String
|
1746
|
+
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
1747
|
+
# resp.pending_requests[0].data_sources[0].s3_keys #=> Array
|
1748
|
+
# resp.pending_requests[0].data_sources[0].s3_keys[0] #=> String
|
1749
|
+
# resp.pending_requests[0].vpc_config.subnets #=> Array
|
1750
|
+
# resp.pending_requests[0].vpc_config.subnets[0] #=> String
|
1751
|
+
# resp.pending_requests[0].vpc_config.security_groups #=> Array
|
1752
|
+
# resp.pending_requests[0].vpc_config.security_groups[0] #=> String
|
1753
|
+
# resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
|
1754
|
+
# resp.pending_requests[0].tags #=> Hash
|
1755
|
+
# resp.pending_requests[0].tags["TagKey"] #=> String
|
1756
|
+
# resp.created_requests #=> Array
|
1757
|
+
# resp.created_requests[0].arn #=> String
|
1758
|
+
# resp.created_requests[0].last_updated_at #=> Time
|
1759
|
+
# resp.created_requests[0].name #=> String
|
1760
|
+
# resp.created_requests[0].status #=> String, one of "Pending", "Preparing", "Running", "Restarting", "Completed", "Failed", "RunningFailed", "Terminating", "Terminated", "Canceled"
|
1761
|
+
# resp.created_requests[0].simulation_application_names #=> Array
|
1762
|
+
# resp.created_requests[0].simulation_application_names[0] #=> String
|
1763
|
+
# resp.created_requests[0].robot_application_names #=> Array
|
1764
|
+
# resp.created_requests[0].robot_application_names[0] #=> String
|
1765
|
+
# resp.created_requests[0].data_source_names #=> Array
|
1766
|
+
# resp.created_requests[0].data_source_names[0] #=> String
|
1767
|
+
# resp.tags #=> Hash
|
1768
|
+
# resp.tags["TagKey"] #=> String
|
1769
|
+
#
|
1770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobBatch AWS API Documentation
|
1771
|
+
#
|
1772
|
+
# @overload describe_simulation_job_batch(params = {})
|
1773
|
+
# @param [Hash] params ({})
|
1774
|
+
def describe_simulation_job_batch(params = {}, options = {})
|
1775
|
+
req = build_request(:describe_simulation_job_batch, params)
|
1776
|
+
req.send_request(options)
|
1777
|
+
end
|
1778
|
+
|
1779
|
+
# Returns a list of deployment jobs for a fleet. You can optionally
|
1780
|
+
# provide filters to retrieve specific deployment jobs.
|
1610
1781
|
#
|
1611
1782
|
# @option params [Array<Types::Filter>] :filters
|
1612
1783
|
# Optional filters to limit results.
|
@@ -1624,22 +1795,14 @@ module Aws::RoboMaker
|
|
1624
1795
|
# from the end of the previous results that returned the `nextToken`
|
1625
1796
|
# value.
|
1626
1797
|
#
|
1627
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
1628
|
-
# to retrieve the next items in a list and not for other programmatic
|
1629
|
-
# purposes.
|
1630
|
-
#
|
1631
|
-
# </note>
|
1632
|
-
#
|
1633
1798
|
# @option params [Integer] :max_results
|
1634
|
-
#
|
1635
|
-
# `
|
1636
|
-
#
|
1637
|
-
#
|
1638
|
-
#
|
1639
|
-
#
|
1640
|
-
#
|
1641
|
-
# `ListDeploymentJobs` returns up to 100 results and a `nextToken` value
|
1642
|
-
# if applicable.
|
1799
|
+
# When this parameter is used, `ListDeploymentJobs` only returns
|
1800
|
+
# `maxResults` results in a single page along with a `nextToken`
|
1801
|
+
# response element. The remaining results of the initial request can be
|
1802
|
+
# seen by sending another `ListDeploymentJobs` request with the returned
|
1803
|
+
# `nextToken` value. This value can be between 1 and 200. If this
|
1804
|
+
# parameter is not used, then `ListDeploymentJobs` returns up to 200
|
1805
|
+
# results and a `nextToken` value if applicable.
|
1643
1806
|
#
|
1644
1807
|
# @return [Types::ListDeploymentJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1645
1808
|
#
|
@@ -1710,14 +1873,13 @@ module Aws::RoboMaker
|
|
1710
1873
|
# </note>
|
1711
1874
|
#
|
1712
1875
|
# @option params [Integer] :max_results
|
1713
|
-
#
|
1714
|
-
# in
|
1715
|
-
#
|
1716
|
-
#
|
1717
|
-
#
|
1718
|
-
# `
|
1719
|
-
#
|
1720
|
-
# a `nextToken` value if applicable.
|
1876
|
+
# When this parameter is used, `ListFleets` only returns `maxResults`
|
1877
|
+
# results in a single page along with a `nextToken` response element.
|
1878
|
+
# The remaining results of the initial request can be seen by sending
|
1879
|
+
# another `ListFleets` request with the returned `nextToken` value. This
|
1880
|
+
# value can be between 1 and 200. If this parameter is not used, then
|
1881
|
+
# `ListFleets` returns up to 200 results and a `nextToken` value if
|
1882
|
+
# applicable.
|
1721
1883
|
#
|
1722
1884
|
# @option params [Array<Types::Filter>] :filters
|
1723
1885
|
# Optional filters to limit results.
|
@@ -1776,22 +1938,14 @@ module Aws::RoboMaker
|
|
1776
1938
|
# from the end of the previous results that returned the `nextToken`
|
1777
1939
|
# value.
|
1778
1940
|
#
|
1779
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
1780
|
-
# to retrieve the next items in a list and not for other programmatic
|
1781
|
-
# purposes.
|
1782
|
-
#
|
1783
|
-
# </note>
|
1784
|
-
#
|
1785
1941
|
# @option params [Integer] :max_results
|
1786
|
-
#
|
1787
|
-
# `
|
1788
|
-
#
|
1789
|
-
#
|
1790
|
-
#
|
1791
|
-
#
|
1792
|
-
#
|
1793
|
-
# then `ListRobotApplications` returns up to 100 results and a
|
1794
|
-
# `nextToken` value if applicable.
|
1942
|
+
# When this parameter is used, `ListRobotApplications` only returns
|
1943
|
+
# `maxResults` results in a single page along with a `nextToken`
|
1944
|
+
# response element. The remaining results of the initial request can be
|
1945
|
+
# seen by sending another `ListRobotApplications` request with the
|
1946
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
1947
|
+
# this parameter is not used, then `ListRobotApplications` returns up to
|
1948
|
+
# 100 results and a `nextToken` value if applicable.
|
1795
1949
|
#
|
1796
1950
|
# @option params [Array<Types::Filter>] :filters
|
1797
1951
|
# Optional filters to limit results.
|
@@ -1847,21 +2001,14 @@ module Aws::RoboMaker
|
|
1847
2001
|
# of that parameter. Pagination continues from the end of the previous
|
1848
2002
|
# results that returned the `nextToken` value.
|
1849
2003
|
#
|
1850
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
1851
|
-
# to retrieve the next items in a list and not for other programmatic
|
1852
|
-
# purposes.
|
1853
|
-
#
|
1854
|
-
# </note>
|
1855
|
-
#
|
1856
2004
|
# @option params [Integer] :max_results
|
1857
|
-
#
|
1858
|
-
# in
|
1859
|
-
#
|
1860
|
-
#
|
1861
|
-
#
|
1862
|
-
# `
|
1863
|
-
#
|
1864
|
-
# a `nextToken` value if applicable.
|
2005
|
+
# When this parameter is used, `ListRobots` only returns `maxResults`
|
2006
|
+
# results in a single page along with a `nextToken` response element.
|
2007
|
+
# The remaining results of the initial request can be seen by sending
|
2008
|
+
# another `ListRobots` request with the returned `nextToken` value. This
|
2009
|
+
# value can be between 1 and 200. If this parameter is not used, then
|
2010
|
+
# `ListRobots` returns up to 200 results and a `nextToken` value if
|
2011
|
+
# applicable.
|
1865
2012
|
#
|
1866
2013
|
# @option params [Array<Types::Filter>] :filters
|
1867
2014
|
# Optional filters to limit results.
|
@@ -1926,22 +2073,14 @@ module Aws::RoboMaker
|
|
1926
2073
|
# from the end of the previous results that returned the `nextToken`
|
1927
2074
|
# value.
|
1928
2075
|
#
|
1929
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
1930
|
-
# to retrieve the next items in a list and not for other programmatic
|
1931
|
-
# purposes.
|
1932
|
-
#
|
1933
|
-
# </note>
|
1934
|
-
#
|
1935
2076
|
# @option params [Integer] :max_results
|
1936
|
-
#
|
1937
|
-
# `
|
1938
|
-
#
|
1939
|
-
#
|
1940
|
-
#
|
1941
|
-
#
|
1942
|
-
#
|
1943
|
-
# parameter is not used, then `ListSimulationApplications` returns up to
|
1944
|
-
# 100 results and a `nextToken` value if applicable.
|
2077
|
+
# When this parameter is used, `ListSimulationApplications` only returns
|
2078
|
+
# `maxResults` results in a single page along with a `nextToken`
|
2079
|
+
# response element. The remaining results of the initial request can be
|
2080
|
+
# seen by sending another `ListSimulationApplications` request with the
|
2081
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
2082
|
+
# this parameter is not used, then `ListSimulationApplications` returns
|
2083
|
+
# up to 100 results and a `nextToken` value if applicable.
|
1945
2084
|
#
|
1946
2085
|
# @option params [Array<Types::Filter>] :filters
|
1947
2086
|
# Optional list of filters to limit results.
|
@@ -1990,6 +2129,65 @@ module Aws::RoboMaker
|
|
1990
2129
|
req.send_request(options)
|
1991
2130
|
end
|
1992
2131
|
|
2132
|
+
# Returns a list simulation job batches. You can optionally provide
|
2133
|
+
# filters to retrieve specific simulation batch jobs.
|
2134
|
+
#
|
2135
|
+
# @option params [String] :next_token
|
2136
|
+
# The `nextToken` value returned from a previous paginated
|
2137
|
+
# `ListSimulationJobBatches` request where `maxResults` was used and the
|
2138
|
+
# results exceeded the value of that parameter. Pagination continues
|
2139
|
+
# from the end of the previous results that returned the `nextToken`
|
2140
|
+
# value.
|
2141
|
+
#
|
2142
|
+
# @option params [Integer] :max_results
|
2143
|
+
# When this parameter is used, `ListSimulationJobBatches` only returns
|
2144
|
+
# `maxResults` results in a single page along with a `nextToken`
|
2145
|
+
# response element. The remaining results of the initial request can be
|
2146
|
+
# seen by sending another `ListSimulationJobBatches` request with the
|
2147
|
+
# returned `nextToken` value.
|
2148
|
+
#
|
2149
|
+
# @option params [Array<Types::Filter>] :filters
|
2150
|
+
# Optional filters to limit results.
|
2151
|
+
#
|
2152
|
+
# @return [Types::ListSimulationJobBatchesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2153
|
+
#
|
2154
|
+
# * {Types::ListSimulationJobBatchesResponse#simulation_job_batch_summaries #simulation_job_batch_summaries} => Array<Types::SimulationJobBatchSummary>
|
2155
|
+
# * {Types::ListSimulationJobBatchesResponse#next_token #next_token} => String
|
2156
|
+
#
|
2157
|
+
# @example Request syntax with placeholder values
|
2158
|
+
#
|
2159
|
+
# resp = client.list_simulation_job_batches({
|
2160
|
+
# next_token: "PaginationToken",
|
2161
|
+
# max_results: 1,
|
2162
|
+
# filters: [
|
2163
|
+
# {
|
2164
|
+
# name: "Name",
|
2165
|
+
# values: ["Name"],
|
2166
|
+
# },
|
2167
|
+
# ],
|
2168
|
+
# })
|
2169
|
+
#
|
2170
|
+
# @example Response structure
|
2171
|
+
#
|
2172
|
+
# resp.simulation_job_batch_summaries #=> Array
|
2173
|
+
# resp.simulation_job_batch_summaries[0].arn #=> String
|
2174
|
+
# resp.simulation_job_batch_summaries[0].last_updated_at #=> Time
|
2175
|
+
# resp.simulation_job_batch_summaries[0].created_at #=> Time
|
2176
|
+
# resp.simulation_job_batch_summaries[0].status #=> String, one of "Pending", "InProgress", "Failed", "Completed", "Canceled", "Canceling", "Completing", "TimingOut", "TimedOut"
|
2177
|
+
# resp.simulation_job_batch_summaries[0].failed_request_count #=> Integer
|
2178
|
+
# resp.simulation_job_batch_summaries[0].pending_request_count #=> Integer
|
2179
|
+
# resp.simulation_job_batch_summaries[0].created_request_count #=> Integer
|
2180
|
+
# resp.next_token #=> String
|
2181
|
+
#
|
2182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobBatches AWS API Documentation
|
2183
|
+
#
|
2184
|
+
# @overload list_simulation_job_batches(params = {})
|
2185
|
+
# @param [Hash] params ({})
|
2186
|
+
def list_simulation_job_batches(params = {}, options = {})
|
2187
|
+
req = build_request(:list_simulation_job_batches, params)
|
2188
|
+
req.send_request(options)
|
2189
|
+
end
|
2190
|
+
|
1993
2191
|
# Returns a list of simulation jobs. You can optionally provide filters
|
1994
2192
|
# to retrieve specific simulation jobs.
|
1995
2193
|
#
|
@@ -2007,15 +2205,13 @@ module Aws::RoboMaker
|
|
2007
2205
|
# </note>
|
2008
2206
|
#
|
2009
2207
|
# @option params [Integer] :max_results
|
2010
|
-
#
|
2011
|
-
# `
|
2012
|
-
#
|
2013
|
-
#
|
2014
|
-
#
|
2015
|
-
#
|
2016
|
-
#
|
2017
|
-
# `ListSimulationJobs` returns up to 100 results and a `nextToken` value
|
2018
|
-
# if applicable.
|
2208
|
+
# When this parameter is used, `ListSimulationJobs` only returns
|
2209
|
+
# `maxResults` results in a single page along with a `nextToken`
|
2210
|
+
# response element. The remaining results of the initial request can be
|
2211
|
+
# seen by sending another `ListSimulationJobs` request with the returned
|
2212
|
+
# `nextToken` value. This value can be between 1 and 1000. If this
|
2213
|
+
# parameter is not used, then `ListSimulationJobs` returns up to 1000
|
2214
|
+
# results and a `nextToken` value if applicable.
|
2019
2215
|
#
|
2020
2216
|
# @option params [Array<Types::Filter>] :filters
|
2021
2217
|
# Optional filters to limit results.
|
@@ -2153,6 +2349,244 @@ module Aws::RoboMaker
|
|
2153
2349
|
req.send_request(options)
|
2154
2350
|
end
|
2155
2351
|
|
2352
|
+
# Starts a new simulation job batch. The batch is defined using one or
|
2353
|
+
# more `SimulationJobRequest` objects.
|
2354
|
+
#
|
2355
|
+
# @option params [String] :client_request_token
|
2356
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
2357
|
+
# idempotency of the request.
|
2358
|
+
#
|
2359
|
+
# @option params [Types::BatchPolicy] :batch_policy
|
2360
|
+
# The batch policy.
|
2361
|
+
#
|
2362
|
+
# @option params [required, Array<Types::SimulationJobRequest>] :create_simulation_job_requests
|
2363
|
+
# A list of simulation job requests to create in the batch.
|
2364
|
+
#
|
2365
|
+
# @option params [Hash<String,String>] :tags
|
2366
|
+
# A map that contains tag keys and tag values that are attached to the
|
2367
|
+
# deployment job batch.
|
2368
|
+
#
|
2369
|
+
# @return [Types::StartSimulationJobBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2370
|
+
#
|
2371
|
+
# * {Types::StartSimulationJobBatchResponse#arn #arn} => String
|
2372
|
+
# * {Types::StartSimulationJobBatchResponse#status #status} => String
|
2373
|
+
# * {Types::StartSimulationJobBatchResponse#created_at #created_at} => Time
|
2374
|
+
# * {Types::StartSimulationJobBatchResponse#client_request_token #client_request_token} => String
|
2375
|
+
# * {Types::StartSimulationJobBatchResponse#batch_policy #batch_policy} => Types::BatchPolicy
|
2376
|
+
# * {Types::StartSimulationJobBatchResponse#failure_code #failure_code} => String
|
2377
|
+
# * {Types::StartSimulationJobBatchResponse#failure_reason #failure_reason} => String
|
2378
|
+
# * {Types::StartSimulationJobBatchResponse#failed_requests #failed_requests} => Array<Types::FailedCreateSimulationJobRequest>
|
2379
|
+
# * {Types::StartSimulationJobBatchResponse#pending_requests #pending_requests} => Array<Types::SimulationJobRequest>
|
2380
|
+
# * {Types::StartSimulationJobBatchResponse#created_requests #created_requests} => Array<Types::SimulationJobSummary>
|
2381
|
+
# * {Types::StartSimulationJobBatchResponse#tags #tags} => Hash<String,String>
|
2382
|
+
#
|
2383
|
+
# @example Request syntax with placeholder values
|
2384
|
+
#
|
2385
|
+
# resp = client.start_simulation_job_batch({
|
2386
|
+
# client_request_token: "ClientRequestToken",
|
2387
|
+
# batch_policy: {
|
2388
|
+
# timeout_in_seconds: 1,
|
2389
|
+
# max_concurrency: 1,
|
2390
|
+
# },
|
2391
|
+
# create_simulation_job_requests: [ # required
|
2392
|
+
# {
|
2393
|
+
# output_location: {
|
2394
|
+
# s3_bucket: "S3Bucket",
|
2395
|
+
# s3_prefix: "S3Key",
|
2396
|
+
# },
|
2397
|
+
# logging_config: {
|
2398
|
+
# record_all_ros_topics: false, # required
|
2399
|
+
# },
|
2400
|
+
# max_job_duration_in_seconds: 1, # required
|
2401
|
+
# iam_role: "IamRole",
|
2402
|
+
# failure_behavior: "Fail", # accepts Fail, Continue
|
2403
|
+
# use_default_applications: false,
|
2404
|
+
# robot_applications: [
|
2405
|
+
# {
|
2406
|
+
# application: "Arn", # required
|
2407
|
+
# application_version: "Version",
|
2408
|
+
# launch_config: { # required
|
2409
|
+
# package_name: "Command", # required
|
2410
|
+
# launch_file: "Command", # required
|
2411
|
+
# environment_variables: {
|
2412
|
+
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
2413
|
+
# },
|
2414
|
+
# port_forwarding_config: {
|
2415
|
+
# port_mappings: [
|
2416
|
+
# {
|
2417
|
+
# job_port: 1, # required
|
2418
|
+
# application_port: 1, # required
|
2419
|
+
# enable_on_public_ip: false,
|
2420
|
+
# },
|
2421
|
+
# ],
|
2422
|
+
# },
|
2423
|
+
# },
|
2424
|
+
# },
|
2425
|
+
# ],
|
2426
|
+
# simulation_applications: [
|
2427
|
+
# {
|
2428
|
+
# application: "Arn", # required
|
2429
|
+
# application_version: "Version",
|
2430
|
+
# launch_config: { # required
|
2431
|
+
# package_name: "Command", # required
|
2432
|
+
# launch_file: "Command", # required
|
2433
|
+
# environment_variables: {
|
2434
|
+
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
2435
|
+
# },
|
2436
|
+
# port_forwarding_config: {
|
2437
|
+
# port_mappings: [
|
2438
|
+
# {
|
2439
|
+
# job_port: 1, # required
|
2440
|
+
# application_port: 1, # required
|
2441
|
+
# enable_on_public_ip: false,
|
2442
|
+
# },
|
2443
|
+
# ],
|
2444
|
+
# },
|
2445
|
+
# },
|
2446
|
+
# },
|
2447
|
+
# ],
|
2448
|
+
# data_sources: [
|
2449
|
+
# {
|
2450
|
+
# name: "Name", # required
|
2451
|
+
# s3_bucket: "S3Bucket", # required
|
2452
|
+
# s3_keys: ["S3Key"], # required
|
2453
|
+
# },
|
2454
|
+
# ],
|
2455
|
+
# vpc_config: {
|
2456
|
+
# subnets: ["NonEmptyString"], # required
|
2457
|
+
# security_groups: ["NonEmptyString"],
|
2458
|
+
# assign_public_ip: false,
|
2459
|
+
# },
|
2460
|
+
# tags: {
|
2461
|
+
# "TagKey" => "TagValue",
|
2462
|
+
# },
|
2463
|
+
# },
|
2464
|
+
# ],
|
2465
|
+
# tags: {
|
2466
|
+
# "TagKey" => "TagValue",
|
2467
|
+
# },
|
2468
|
+
# })
|
2469
|
+
#
|
2470
|
+
# @example Response structure
|
2471
|
+
#
|
2472
|
+
# resp.arn #=> String
|
2473
|
+
# resp.status #=> String, one of "Pending", "InProgress", "Failed", "Completed", "Canceled", "Canceling", "Completing", "TimingOut", "TimedOut"
|
2474
|
+
# resp.created_at #=> Time
|
2475
|
+
# resp.client_request_token #=> String
|
2476
|
+
# resp.batch_policy.timeout_in_seconds #=> Integer
|
2477
|
+
# resp.batch_policy.max_concurrency #=> Integer
|
2478
|
+
# resp.failure_code #=> String, one of "InternalServiceError"
|
2479
|
+
# resp.failure_reason #=> String
|
2480
|
+
# resp.failed_requests #=> Array
|
2481
|
+
# resp.failed_requests[0].request.output_location.s3_bucket #=> String
|
2482
|
+
# resp.failed_requests[0].request.output_location.s3_prefix #=> String
|
2483
|
+
# resp.failed_requests[0].request.logging_config.record_all_ros_topics #=> Boolean
|
2484
|
+
# resp.failed_requests[0].request.max_job_duration_in_seconds #=> Integer
|
2485
|
+
# resp.failed_requests[0].request.iam_role #=> String
|
2486
|
+
# resp.failed_requests[0].request.failure_behavior #=> String, one of "Fail", "Continue"
|
2487
|
+
# resp.failed_requests[0].request.use_default_applications #=> Boolean
|
2488
|
+
# resp.failed_requests[0].request.robot_applications #=> Array
|
2489
|
+
# resp.failed_requests[0].request.robot_applications[0].application #=> String
|
2490
|
+
# resp.failed_requests[0].request.robot_applications[0].application_version #=> String
|
2491
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.package_name #=> String
|
2492
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.launch_file #=> String
|
2493
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.environment_variables #=> Hash
|
2494
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
2495
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
2496
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2497
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2498
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2499
|
+
# resp.failed_requests[0].request.simulation_applications #=> Array
|
2500
|
+
# resp.failed_requests[0].request.simulation_applications[0].application #=> String
|
2501
|
+
# resp.failed_requests[0].request.simulation_applications[0].application_version #=> String
|
2502
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.package_name #=> String
|
2503
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.launch_file #=> String
|
2504
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.environment_variables #=> Hash
|
2505
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
2506
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
2507
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2508
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2509
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2510
|
+
# resp.failed_requests[0].request.data_sources #=> Array
|
2511
|
+
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
2512
|
+
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
2513
|
+
# resp.failed_requests[0].request.data_sources[0].s3_keys #=> Array
|
2514
|
+
# resp.failed_requests[0].request.data_sources[0].s3_keys[0] #=> String
|
2515
|
+
# resp.failed_requests[0].request.vpc_config.subnets #=> Array
|
2516
|
+
# resp.failed_requests[0].request.vpc_config.subnets[0] #=> String
|
2517
|
+
# resp.failed_requests[0].request.vpc_config.security_groups #=> Array
|
2518
|
+
# resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
|
2519
|
+
# resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
|
2520
|
+
# resp.failed_requests[0].request.tags #=> Hash
|
2521
|
+
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
2522
|
+
# resp.failed_requests[0].failure_reason #=> String
|
2523
|
+
# resp.failed_requests[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
2524
|
+
# resp.failed_requests[0].failed_at #=> Time
|
2525
|
+
# resp.pending_requests #=> Array
|
2526
|
+
# resp.pending_requests[0].output_location.s3_bucket #=> String
|
2527
|
+
# resp.pending_requests[0].output_location.s3_prefix #=> String
|
2528
|
+
# resp.pending_requests[0].logging_config.record_all_ros_topics #=> Boolean
|
2529
|
+
# resp.pending_requests[0].max_job_duration_in_seconds #=> Integer
|
2530
|
+
# resp.pending_requests[0].iam_role #=> String
|
2531
|
+
# resp.pending_requests[0].failure_behavior #=> String, one of "Fail", "Continue"
|
2532
|
+
# resp.pending_requests[0].use_default_applications #=> Boolean
|
2533
|
+
# resp.pending_requests[0].robot_applications #=> Array
|
2534
|
+
# resp.pending_requests[0].robot_applications[0].application #=> String
|
2535
|
+
# resp.pending_requests[0].robot_applications[0].application_version #=> String
|
2536
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.package_name #=> String
|
2537
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.launch_file #=> String
|
2538
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.environment_variables #=> Hash
|
2539
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
2540
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
2541
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2542
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2543
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2544
|
+
# resp.pending_requests[0].simulation_applications #=> Array
|
2545
|
+
# resp.pending_requests[0].simulation_applications[0].application #=> String
|
2546
|
+
# resp.pending_requests[0].simulation_applications[0].application_version #=> String
|
2547
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.package_name #=> String
|
2548
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.launch_file #=> String
|
2549
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.environment_variables #=> Hash
|
2550
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
2551
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
2552
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2553
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2554
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2555
|
+
# resp.pending_requests[0].data_sources #=> Array
|
2556
|
+
# resp.pending_requests[0].data_sources[0].name #=> String
|
2557
|
+
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
2558
|
+
# resp.pending_requests[0].data_sources[0].s3_keys #=> Array
|
2559
|
+
# resp.pending_requests[0].data_sources[0].s3_keys[0] #=> String
|
2560
|
+
# resp.pending_requests[0].vpc_config.subnets #=> Array
|
2561
|
+
# resp.pending_requests[0].vpc_config.subnets[0] #=> String
|
2562
|
+
# resp.pending_requests[0].vpc_config.security_groups #=> Array
|
2563
|
+
# resp.pending_requests[0].vpc_config.security_groups[0] #=> String
|
2564
|
+
# resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
|
2565
|
+
# resp.pending_requests[0].tags #=> Hash
|
2566
|
+
# resp.pending_requests[0].tags["TagKey"] #=> String
|
2567
|
+
# resp.created_requests #=> Array
|
2568
|
+
# resp.created_requests[0].arn #=> String
|
2569
|
+
# resp.created_requests[0].last_updated_at #=> Time
|
2570
|
+
# resp.created_requests[0].name #=> String
|
2571
|
+
# resp.created_requests[0].status #=> String, one of "Pending", "Preparing", "Running", "Restarting", "Completed", "Failed", "RunningFailed", "Terminating", "Terminated", "Canceled"
|
2572
|
+
# resp.created_requests[0].simulation_application_names #=> Array
|
2573
|
+
# resp.created_requests[0].simulation_application_names[0] #=> String
|
2574
|
+
# resp.created_requests[0].robot_application_names #=> Array
|
2575
|
+
# resp.created_requests[0].robot_application_names[0] #=> String
|
2576
|
+
# resp.created_requests[0].data_source_names #=> Array
|
2577
|
+
# resp.created_requests[0].data_source_names[0] #=> String
|
2578
|
+
# resp.tags #=> Hash
|
2579
|
+
# resp.tags["TagKey"] #=> String
|
2580
|
+
#
|
2581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/StartSimulationJobBatch AWS API Documentation
|
2582
|
+
#
|
2583
|
+
# @overload start_simulation_job_batch(params = {})
|
2584
|
+
# @param [Hash] params ({})
|
2585
|
+
def start_simulation_job_batch(params = {}, options = {})
|
2586
|
+
req = build_request(:start_simulation_job_batch, params)
|
2587
|
+
req.send_request(options)
|
2588
|
+
end
|
2589
|
+
|
2156
2590
|
# Syncrhonizes robots in a fleet to the latest deployment. This is
|
2157
2591
|
# helpful if robots were added after a deployment.
|
2158
2592
|
#
|
@@ -2302,7 +2736,8 @@ module Aws::RoboMaker
|
|
2302
2736
|
# The sources of the robot application.
|
2303
2737
|
#
|
2304
2738
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
2305
|
-
# The robot software suite used by the robot
|
2739
|
+
# The robot software suite (ROS distribution) used by the robot
|
2740
|
+
# application.
|
2306
2741
|
#
|
2307
2742
|
# @option params [String] :current_revision_id
|
2308
2743
|
# The revision id for the robot application.
|
@@ -2371,7 +2806,7 @@ module Aws::RoboMaker
|
|
2371
2806
|
# The simulation software suite used by the simulation application.
|
2372
2807
|
#
|
2373
2808
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
2374
|
-
# Information about the robot software suite.
|
2809
|
+
# Information about the robot software suite (ROS distribution).
|
2375
2810
|
#
|
2376
2811
|
# @option params [Types::RenderingEngine] :rendering_engine
|
2377
2812
|
# The rendering engine for the simulation application.
|
@@ -2458,7 +2893,7 @@ module Aws::RoboMaker
|
|
2458
2893
|
params: params,
|
2459
2894
|
config: config)
|
2460
2895
|
context[:gem_name] = 'aws-sdk-robomaker'
|
2461
|
-
context[:gem_version] = '1.
|
2896
|
+
context[:gem_version] = '1.19.0'
|
2462
2897
|
Seahorse::Client::Request.new(handlers, context)
|
2463
2898
|
end
|
2464
2899
|
|