aws-sdk-robomaker 1.14.0 → 1.15.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 +54 -1
- data/lib/aws-sdk-robomaker/client_api.rb +24 -0
- data/lib/aws-sdk-robomaker/types.rb +145 -17
- 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: a3300651a0b42b152a9fab1040669568993c6895
|
4
|
+
data.tar.gz: 88871f056ea5086e3dd2ed116a454b2576aea1e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef0751bef9f1f03176a1475630d87acaff975e6910d22a75658e978141028e9ddc3068278ea1924e100331bf07e53b7d276f02721fc894ee1db47c8c934922ed
|
7
|
+
data.tar.gz: 326c5ce3b7077aeb83046e859c87dfdd72f8ea61b914dec93b67787cc2e9084174aeb8f5b37129e1c6e4b61e8715c6e9bf4828d4275dab4b76c1526b299921b3
|
data/lib/aws-sdk-robomaker.rb
CHANGED
@@ -295,6 +295,10 @@ module Aws::RoboMaker
|
|
295
295
|
# resp.jobs[0].robot_applications[0].launch_config.launch_file #=> String
|
296
296
|
# resp.jobs[0].robot_applications[0].launch_config.environment_variables #=> Hash
|
297
297
|
# resp.jobs[0].robot_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
298
|
+
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
299
|
+
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
300
|
+
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
301
|
+
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
298
302
|
# resp.jobs[0].simulation_applications #=> Array
|
299
303
|
# resp.jobs[0].simulation_applications[0].application #=> String
|
300
304
|
# resp.jobs[0].simulation_applications[0].application_version #=> String
|
@@ -302,6 +306,10 @@ module Aws::RoboMaker
|
|
302
306
|
# resp.jobs[0].simulation_applications[0].launch_config.launch_file #=> String
|
303
307
|
# resp.jobs[0].simulation_applications[0].launch_config.environment_variables #=> Hash
|
304
308
|
# resp.jobs[0].simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
309
|
+
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
310
|
+
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
311
|
+
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
312
|
+
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
305
313
|
# resp.jobs[0].data_sources #=> Array
|
306
314
|
# resp.jobs[0].data_sources[0].name #=> String
|
307
315
|
# resp.jobs[0].data_sources[0].s3_bucket #=> String
|
@@ -316,6 +324,9 @@ module Aws::RoboMaker
|
|
316
324
|
# resp.jobs[0].vpc_config.security_groups[0] #=> String
|
317
325
|
# resp.jobs[0].vpc_config.vpc_id #=> String
|
318
326
|
# resp.jobs[0].vpc_config.assign_public_ip #=> Boolean
|
327
|
+
# resp.jobs[0].network_interface.network_interface_id #=> String
|
328
|
+
# resp.jobs[0].network_interface.private_ip_address #=> String
|
329
|
+
# resp.jobs[0].network_interface.public_ip_address #=> String
|
319
330
|
# resp.unprocessed_jobs #=> Array
|
320
331
|
# resp.unprocessed_jobs[0] #=> String
|
321
332
|
#
|
@@ -961,6 +972,15 @@ module Aws::RoboMaker
|
|
961
972
|
# environment_variables: {
|
962
973
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
963
974
|
# },
|
975
|
+
# port_forwarding_config: {
|
976
|
+
# port_mappings: [
|
977
|
+
# {
|
978
|
+
# job_port: 1, # required
|
979
|
+
# application_port: 1, # required
|
980
|
+
# enable_on_public_ip: false,
|
981
|
+
# },
|
982
|
+
# ],
|
983
|
+
# },
|
964
984
|
# },
|
965
985
|
# },
|
966
986
|
# ],
|
@@ -974,6 +994,15 @@ module Aws::RoboMaker
|
|
974
994
|
# environment_variables: {
|
975
995
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
976
996
|
# },
|
997
|
+
# port_forwarding_config: {
|
998
|
+
# port_mappings: [
|
999
|
+
# {
|
1000
|
+
# job_port: 1, # required
|
1001
|
+
# application_port: 1, # required
|
1002
|
+
# enable_on_public_ip: false,
|
1003
|
+
# },
|
1004
|
+
# ],
|
1005
|
+
# },
|
977
1006
|
# },
|
978
1007
|
# },
|
979
1008
|
# ],
|
@@ -1016,6 +1045,10 @@ module Aws::RoboMaker
|
|
1016
1045
|
# resp.robot_applications[0].launch_config.launch_file #=> String
|
1017
1046
|
# resp.robot_applications[0].launch_config.environment_variables #=> Hash
|
1018
1047
|
# resp.robot_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1048
|
+
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
1049
|
+
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1050
|
+
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1051
|
+
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1019
1052
|
# resp.simulation_applications #=> Array
|
1020
1053
|
# resp.simulation_applications[0].application #=> String
|
1021
1054
|
# resp.simulation_applications[0].application_version #=> String
|
@@ -1023,6 +1056,10 @@ module Aws::RoboMaker
|
|
1023
1056
|
# resp.simulation_applications[0].launch_config.launch_file #=> String
|
1024
1057
|
# resp.simulation_applications[0].launch_config.environment_variables #=> Hash
|
1025
1058
|
# resp.simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1059
|
+
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
1060
|
+
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1061
|
+
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1062
|
+
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1026
1063
|
# resp.data_sources #=> Array
|
1027
1064
|
# resp.data_sources[0].name #=> String
|
1028
1065
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1479,6 +1516,7 @@ module Aws::RoboMaker
|
|
1479
1516
|
# * {Types::DescribeSimulationJobResponse#data_sources #data_sources} => Array<Types::DataSource>
|
1480
1517
|
# * {Types::DescribeSimulationJobResponse#tags #tags} => Hash<String,String>
|
1481
1518
|
# * {Types::DescribeSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
1519
|
+
# * {Types::DescribeSimulationJobResponse#network_interface #network_interface} => Types::NetworkInterface
|
1482
1520
|
#
|
1483
1521
|
# @example Request syntax with placeholder values
|
1484
1522
|
#
|
@@ -1510,6 +1548,10 @@ module Aws::RoboMaker
|
|
1510
1548
|
# resp.robot_applications[0].launch_config.launch_file #=> String
|
1511
1549
|
# resp.robot_applications[0].launch_config.environment_variables #=> Hash
|
1512
1550
|
# resp.robot_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1551
|
+
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
1552
|
+
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1553
|
+
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1554
|
+
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1513
1555
|
# resp.simulation_applications #=> Array
|
1514
1556
|
# resp.simulation_applications[0].application #=> String
|
1515
1557
|
# resp.simulation_applications[0].application_version #=> String
|
@@ -1517,6 +1559,10 @@ module Aws::RoboMaker
|
|
1517
1559
|
# resp.simulation_applications[0].launch_config.launch_file #=> String
|
1518
1560
|
# resp.simulation_applications[0].launch_config.environment_variables #=> Hash
|
1519
1561
|
# resp.simulation_applications[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1562
|
+
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings #=> Array
|
1563
|
+
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1564
|
+
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1565
|
+
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1520
1566
|
# resp.data_sources #=> Array
|
1521
1567
|
# resp.data_sources[0].name #=> String
|
1522
1568
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1531,6 +1577,9 @@ module Aws::RoboMaker
|
|
1531
1577
|
# resp.vpc_config.security_groups[0] #=> String
|
1532
1578
|
# resp.vpc_config.vpc_id #=> String
|
1533
1579
|
# resp.vpc_config.assign_public_ip #=> Boolean
|
1580
|
+
# resp.network_interface.network_interface_id #=> String
|
1581
|
+
# resp.network_interface.private_ip_address #=> String
|
1582
|
+
# resp.network_interface.public_ip_address #=> String
|
1534
1583
|
#
|
1535
1584
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJob AWS API Documentation
|
1536
1585
|
#
|
@@ -1544,6 +1593,10 @@ module Aws::RoboMaker
|
|
1544
1593
|
# Returns a list of deployment jobs for a fleet. You can optionally
|
1545
1594
|
# provide filters to retrieve specific deployment jobs.
|
1546
1595
|
#
|
1596
|
+
# <note markdown="1">
|
1597
|
+
#
|
1598
|
+
# </note>
|
1599
|
+
#
|
1547
1600
|
# @option params [Array<Types::Filter>] :filters
|
1548
1601
|
# Optional filters to limit results.
|
1549
1602
|
#
|
@@ -2388,7 +2441,7 @@ module Aws::RoboMaker
|
|
2388
2441
|
params: params,
|
2389
2442
|
config: config)
|
2390
2443
|
context[:gem_name] = 'aws-sdk-robomaker'
|
2391
|
-
context[:gem_version] = '1.
|
2444
|
+
context[:gem_version] = '1.15.0'
|
2392
2445
|
Seahorse::Client::Request.new(handlers, context)
|
2393
2446
|
end
|
2394
2447
|
|
@@ -117,12 +117,18 @@ module Aws::RoboMaker
|
|
117
117
|
LoggingConfig = Shapes::StructureShape.new(name: 'LoggingConfig')
|
118
118
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
119
119
|
Name = Shapes::StringShape.new(name: 'Name')
|
120
|
+
NetworkInterface = Shapes::StructureShape.new(name: 'NetworkInterface')
|
120
121
|
NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
|
122
|
+
NonSystemPort = Shapes::IntegerShape.new(name: 'NonSystemPort')
|
121
123
|
OutputLocation = Shapes::StructureShape.new(name: 'OutputLocation')
|
122
124
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
123
125
|
Path = Shapes::StringShape.new(name: 'Path')
|
124
126
|
PercentDone = Shapes::FloatShape.new(name: 'PercentDone')
|
125
127
|
Percentage = Shapes::IntegerShape.new(name: 'Percentage')
|
128
|
+
Port = Shapes::IntegerShape.new(name: 'Port')
|
129
|
+
PortForwardingConfig = Shapes::StructureShape.new(name: 'PortForwardingConfig')
|
130
|
+
PortMapping = Shapes::StructureShape.new(name: 'PortMapping')
|
131
|
+
PortMappingList = Shapes::ListShape.new(name: 'PortMappingList')
|
126
132
|
ProgressDetail = Shapes::StructureShape.new(name: 'ProgressDetail')
|
127
133
|
RegisterRobotRequest = Shapes::StructureShape.new(name: 'RegisterRobotRequest')
|
128
134
|
RegisterRobotResponse = Shapes::StructureShape.new(name: 'RegisterRobotResponse')
|
@@ -529,6 +535,7 @@ module Aws::RoboMaker
|
|
529
535
|
DescribeSimulationJobResponse.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSources, location_name: "dataSources"))
|
530
536
|
DescribeSimulationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
531
537
|
DescribeSimulationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
538
|
+
DescribeSimulationJobResponse.add_member(:network_interface, Shapes::ShapeRef.new(shape: NetworkInterface, location_name: "networkInterface"))
|
532
539
|
DescribeSimulationJobResponse.struct_class = Types::DescribeSimulationJobResponse
|
533
540
|
|
534
541
|
EnvironmentVariableMap.key = Shapes::ShapeRef.new(shape: EnvironmentVariableKey)
|
@@ -564,6 +571,7 @@ module Aws::RoboMaker
|
|
564
571
|
LaunchConfig.add_member(:package_name, Shapes::ShapeRef.new(shape: Command, required: true, location_name: "packageName"))
|
565
572
|
LaunchConfig.add_member(:launch_file, Shapes::ShapeRef.new(shape: Command, required: true, location_name: "launchFile"))
|
566
573
|
LaunchConfig.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariableMap, location_name: "environmentVariables"))
|
574
|
+
LaunchConfig.add_member(:port_forwarding_config, Shapes::ShapeRef.new(shape: PortForwardingConfig, location_name: "portForwardingConfig"))
|
567
575
|
LaunchConfig.struct_class = Types::LaunchConfig
|
568
576
|
|
569
577
|
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
@@ -634,10 +642,25 @@ module Aws::RoboMaker
|
|
634
642
|
LoggingConfig.add_member(:record_all_ros_topics, Shapes::ShapeRef.new(shape: BoxedBoolean, required: true, location_name: "recordAllRosTopics"))
|
635
643
|
LoggingConfig.struct_class = Types::LoggingConfig
|
636
644
|
|
645
|
+
NetworkInterface.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "networkInterfaceId"))
|
646
|
+
NetworkInterface.add_member(:private_ip_address, Shapes::ShapeRef.new(shape: GenericString, location_name: "privateIpAddress"))
|
647
|
+
NetworkInterface.add_member(:public_ip_address, Shapes::ShapeRef.new(shape: GenericString, location_name: "publicIpAddress"))
|
648
|
+
NetworkInterface.struct_class = Types::NetworkInterface
|
649
|
+
|
637
650
|
OutputLocation.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, location_name: "s3Bucket"))
|
638
651
|
OutputLocation.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: S3Key, location_name: "s3Prefix"))
|
639
652
|
OutputLocation.struct_class = Types::OutputLocation
|
640
653
|
|
654
|
+
PortForwardingConfig.add_member(:port_mappings, Shapes::ShapeRef.new(shape: PortMappingList, location_name: "portMappings"))
|
655
|
+
PortForwardingConfig.struct_class = Types::PortForwardingConfig
|
656
|
+
|
657
|
+
PortMapping.add_member(:job_port, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "jobPort"))
|
658
|
+
PortMapping.add_member(:application_port, Shapes::ShapeRef.new(shape: NonSystemPort, required: true, location_name: "applicationPort"))
|
659
|
+
PortMapping.add_member(:enable_on_public_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableOnPublicIp"))
|
660
|
+
PortMapping.struct_class = Types::PortMapping
|
661
|
+
|
662
|
+
PortMappingList.member = Shapes::ShapeRef.new(shape: PortMapping)
|
663
|
+
|
641
664
|
ProgressDetail.add_member(:current_progress, Shapes::ShapeRef.new(shape: RobotDeploymentStep, location_name: "currentProgress"))
|
642
665
|
ProgressDetail.add_member(:percent_done, Shapes::ShapeRef.new(shape: PercentDone, location_name: "percentDone"))
|
643
666
|
ProgressDetail.add_member(:estimated_time_remaining_seconds, Shapes::ShapeRef.new(shape: GenericInteger, location_name: "estimatedTimeRemainingSeconds"))
|
@@ -764,6 +787,7 @@ module Aws::RoboMaker
|
|
764
787
|
SimulationJob.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSources, location_name: "dataSources"))
|
765
788
|
SimulationJob.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
766
789
|
SimulationJob.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
790
|
+
SimulationJob.add_member(:network_interface, Shapes::ShapeRef.new(shape: NetworkInterface, location_name: "networkInterface"))
|
767
791
|
SimulationJob.struct_class = Types::SimulationJob
|
768
792
|
|
769
793
|
SimulationJobSummaries.member = Shapes::ShapeRef.new(shape: SimulationJobSummary)
|
@@ -800,6 +800,15 @@ module Aws::RoboMaker
|
|
800
800
|
# environment_variables: {
|
801
801
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
802
802
|
# },
|
803
|
+
# port_forwarding_config: {
|
804
|
+
# port_mappings: [
|
805
|
+
# {
|
806
|
+
# job_port: 1, # required
|
807
|
+
# application_port: 1, # required
|
808
|
+
# enable_on_public_ip: false,
|
809
|
+
# },
|
810
|
+
# ],
|
811
|
+
# },
|
803
812
|
# },
|
804
813
|
# },
|
805
814
|
# ],
|
@@ -813,6 +822,15 @@ module Aws::RoboMaker
|
|
813
822
|
# environment_variables: {
|
814
823
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
815
824
|
# },
|
825
|
+
# port_forwarding_config: {
|
826
|
+
# port_mappings: [
|
827
|
+
# {
|
828
|
+
# job_port: 1, # required
|
829
|
+
# application_port: 1, # required
|
830
|
+
# enable_on_public_ip: false,
|
831
|
+
# },
|
832
|
+
# ],
|
833
|
+
# },
|
816
834
|
# },
|
817
835
|
# },
|
818
836
|
# ],
|
@@ -1005,20 +1023,6 @@ module Aws::RoboMaker
|
|
1005
1023
|
#
|
1006
1024
|
# : Etag for SimulationApplication does not match value during version
|
1007
1025
|
# 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.
|
1022
1026
|
# @return [String]
|
1023
1027
|
#
|
1024
1028
|
# @!attribute [rw] client_request_token
|
@@ -1992,6 +1996,10 @@ module Aws::RoboMaker
|
|
1992
1996
|
# The VPC configuration.
|
1993
1997
|
# @return [Types::VPCConfigResponse]
|
1994
1998
|
#
|
1999
|
+
# @!attribute [rw] network_interface
|
2000
|
+
# The network interface information for the simulation job.
|
2001
|
+
# @return [Types::NetworkInterface]
|
2002
|
+
#
|
1995
2003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobResponse AWS API Documentation
|
1996
2004
|
#
|
1997
2005
|
class DescribeSimulationJobResponse < Struct.new(
|
@@ -2013,7 +2021,8 @@ module Aws::RoboMaker
|
|
2013
2021
|
:simulation_applications,
|
2014
2022
|
:data_sources,
|
2015
2023
|
:tags,
|
2016
|
-
:vpc_config
|
2024
|
+
:vpc_config,
|
2025
|
+
:network_interface)
|
2017
2026
|
include Aws::Structure
|
2018
2027
|
end
|
2019
2028
|
|
@@ -2133,6 +2142,15 @@ module Aws::RoboMaker
|
|
2133
2142
|
# environment_variables: {
|
2134
2143
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
2135
2144
|
# },
|
2145
|
+
# port_forwarding_config: {
|
2146
|
+
# port_mappings: [
|
2147
|
+
# {
|
2148
|
+
# job_port: 1, # required
|
2149
|
+
# application_port: 1, # required
|
2150
|
+
# enable_on_public_ip: false,
|
2151
|
+
# },
|
2152
|
+
# ],
|
2153
|
+
# },
|
2136
2154
|
# }
|
2137
2155
|
#
|
2138
2156
|
# @!attribute [rw] package_name
|
@@ -2147,12 +2165,17 @@ module Aws::RoboMaker
|
|
2147
2165
|
# The environment variables for the application launch.
|
2148
2166
|
# @return [Hash<String,String>]
|
2149
2167
|
#
|
2168
|
+
# @!attribute [rw] port_forwarding_config
|
2169
|
+
# The port forwarding configuration.
|
2170
|
+
# @return [Types::PortForwardingConfig]
|
2171
|
+
#
|
2150
2172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/LaunchConfig AWS API Documentation
|
2151
2173
|
#
|
2152
2174
|
class LaunchConfig < Struct.new(
|
2153
2175
|
:package_name,
|
2154
2176
|
:launch_file,
|
2155
|
-
:environment_variables
|
2177
|
+
:environment_variables,
|
2178
|
+
:port_forwarding_config)
|
2156
2179
|
include Aws::Structure
|
2157
2180
|
end
|
2158
2181
|
|
@@ -2698,6 +2721,29 @@ module Aws::RoboMaker
|
|
2698
2721
|
include Aws::Structure
|
2699
2722
|
end
|
2700
2723
|
|
2724
|
+
# Describes a network interface.
|
2725
|
+
#
|
2726
|
+
# @!attribute [rw] network_interface_id
|
2727
|
+
# The ID of the network interface.
|
2728
|
+
# @return [String]
|
2729
|
+
#
|
2730
|
+
# @!attribute [rw] private_ip_address
|
2731
|
+
# The IPv4 address of the network interface within the subnet.
|
2732
|
+
# @return [String]
|
2733
|
+
#
|
2734
|
+
# @!attribute [rw] public_ip_address
|
2735
|
+
# The IPv4 public address of the network interface.
|
2736
|
+
# @return [String]
|
2737
|
+
#
|
2738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/NetworkInterface AWS API Documentation
|
2739
|
+
#
|
2740
|
+
class NetworkInterface < Struct.new(
|
2741
|
+
:network_interface_id,
|
2742
|
+
:private_ip_address,
|
2743
|
+
:public_ip_address)
|
2744
|
+
include Aws::Structure
|
2745
|
+
end
|
2746
|
+
|
2701
2747
|
# The output location.
|
2702
2748
|
#
|
2703
2749
|
# @note When making an API call, you may pass OutputLocation
|
@@ -2724,6 +2770,66 @@ module Aws::RoboMaker
|
|
2724
2770
|
include Aws::Structure
|
2725
2771
|
end
|
2726
2772
|
|
2773
|
+
# Configuration information for port forwarding.
|
2774
|
+
#
|
2775
|
+
# @note When making an API call, you may pass PortForwardingConfig
|
2776
|
+
# data as a hash:
|
2777
|
+
#
|
2778
|
+
# {
|
2779
|
+
# port_mappings: [
|
2780
|
+
# {
|
2781
|
+
# job_port: 1, # required
|
2782
|
+
# application_port: 1, # required
|
2783
|
+
# enable_on_public_ip: false,
|
2784
|
+
# },
|
2785
|
+
# ],
|
2786
|
+
# }
|
2787
|
+
#
|
2788
|
+
# @!attribute [rw] port_mappings
|
2789
|
+
# The port mappings for the configuration.
|
2790
|
+
# @return [Array<Types::PortMapping>]
|
2791
|
+
#
|
2792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/PortForwardingConfig AWS API Documentation
|
2793
|
+
#
|
2794
|
+
class PortForwardingConfig < Struct.new(
|
2795
|
+
:port_mappings)
|
2796
|
+
include Aws::Structure
|
2797
|
+
end
|
2798
|
+
|
2799
|
+
# An object representing a port mapping.
|
2800
|
+
#
|
2801
|
+
# @note When making an API call, you may pass PortMapping
|
2802
|
+
# data as a hash:
|
2803
|
+
#
|
2804
|
+
# {
|
2805
|
+
# job_port: 1, # required
|
2806
|
+
# application_port: 1, # required
|
2807
|
+
# enable_on_public_ip: false,
|
2808
|
+
# }
|
2809
|
+
#
|
2810
|
+
# @!attribute [rw] job_port
|
2811
|
+
# The port number on the simulation job instance to use as a remote
|
2812
|
+
# connection point.
|
2813
|
+
# @return [Integer]
|
2814
|
+
#
|
2815
|
+
# @!attribute [rw] application_port
|
2816
|
+
# The port number on the application.
|
2817
|
+
# @return [Integer]
|
2818
|
+
#
|
2819
|
+
# @!attribute [rw] enable_on_public_ip
|
2820
|
+
# A Boolean indicating whether to enable this port mapping on public
|
2821
|
+
# IP.
|
2822
|
+
# @return [Boolean]
|
2823
|
+
#
|
2824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/PortMapping AWS API Documentation
|
2825
|
+
#
|
2826
|
+
class PortMapping < Struct.new(
|
2827
|
+
:job_port,
|
2828
|
+
:application_port,
|
2829
|
+
:enable_on_public_ip)
|
2830
|
+
include Aws::Structure
|
2831
|
+
end
|
2832
|
+
|
2727
2833
|
# Information about the progress of a deployment job.
|
2728
2834
|
#
|
2729
2835
|
# @!attribute [rw] current_progress
|
@@ -2961,6 +3067,15 @@ module Aws::RoboMaker
|
|
2961
3067
|
# environment_variables: {
|
2962
3068
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
2963
3069
|
# },
|
3070
|
+
# port_forwarding_config: {
|
3071
|
+
# port_mappings: [
|
3072
|
+
# {
|
3073
|
+
# job_port: 1, # required
|
3074
|
+
# application_port: 1, # required
|
3075
|
+
# enable_on_public_ip: false,
|
3076
|
+
# },
|
3077
|
+
# ],
|
3078
|
+
# },
|
2964
3079
|
# },
|
2965
3080
|
# }
|
2966
3081
|
#
|
@@ -3134,6 +3249,15 @@ module Aws::RoboMaker
|
|
3134
3249
|
# environment_variables: {
|
3135
3250
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
3136
3251
|
# },
|
3252
|
+
# port_forwarding_config: {
|
3253
|
+
# port_mappings: [
|
3254
|
+
# {
|
3255
|
+
# job_port: 1, # required
|
3256
|
+
# application_port: 1, # required
|
3257
|
+
# enable_on_public_ip: false,
|
3258
|
+
# },
|
3259
|
+
# ],
|
3260
|
+
# },
|
3137
3261
|
# },
|
3138
3262
|
# }
|
3139
3263
|
#
|
@@ -3289,6 +3413,9 @@ module Aws::RoboMaker
|
|
3289
3413
|
# VPC configuration information.
|
3290
3414
|
# @return [Types::VPCConfigResponse]
|
3291
3415
|
#
|
3416
|
+
# @!attribute [rw] network_interface
|
3417
|
+
# @return [Types::NetworkInterface]
|
3418
|
+
#
|
3292
3419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationJob AWS API Documentation
|
3293
3420
|
#
|
3294
3421
|
class SimulationJob < Struct.new(
|
@@ -3310,7 +3437,8 @@ module Aws::RoboMaker
|
|
3310
3437
|
:simulation_applications,
|
3311
3438
|
:data_sources,
|
3312
3439
|
:tags,
|
3313
|
-
:vpc_config
|
3440
|
+
:vpc_config,
|
3441
|
+
:network_interface)
|
3314
3442
|
include Aws::Structure
|
3315
3443
|
end
|
3316
3444
|
|
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.15.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-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|