aws-sdk-robomaker 1.39.0 → 1.43.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/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-robomaker/client.rb +181 -41
- data/lib/aws-sdk-robomaker/client_api.rb +54 -10
- data/lib/aws-sdk-robomaker/types.rb +326 -59
- data/lib/aws-sdk-robomaker.rb +1 -1
- metadata +5 -5
@@ -403,6 +403,8 @@ module Aws::RoboMaker
|
|
403
403
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
404
404
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
405
405
|
# resp.jobs[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
406
|
+
# resp.jobs[0].robot_applications[0].launch_config.command #=> Array
|
407
|
+
# resp.jobs[0].robot_applications[0].launch_config.command[0] #=> String
|
406
408
|
# resp.jobs[0].robot_applications[0].upload_configurations #=> Array
|
407
409
|
# resp.jobs[0].robot_applications[0].upload_configurations[0].name #=> String
|
408
410
|
# resp.jobs[0].robot_applications[0].upload_configurations[0].path #=> String
|
@@ -427,6 +429,8 @@ module Aws::RoboMaker
|
|
427
429
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
428
430
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
429
431
|
# resp.jobs[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
432
|
+
# resp.jobs[0].simulation_applications[0].launch_config.command #=> Array
|
433
|
+
# resp.jobs[0].simulation_applications[0].launch_config.command[0] #=> String
|
430
434
|
# resp.jobs[0].simulation_applications[0].upload_configurations #=> Array
|
431
435
|
# resp.jobs[0].simulation_applications[0].upload_configurations[0].name #=> String
|
432
436
|
# resp.jobs[0].simulation_applications[0].upload_configurations[0].path #=> String
|
@@ -447,6 +451,8 @@ module Aws::RoboMaker
|
|
447
451
|
# resp.jobs[0].data_sources[0].s3_keys #=> Array
|
448
452
|
# resp.jobs[0].data_sources[0].s3_keys[0].s3_key #=> String
|
449
453
|
# resp.jobs[0].data_sources[0].s3_keys[0].etag #=> String
|
454
|
+
# resp.jobs[0].data_sources[0].type #=> String, one of "Prefix", "Archive", "File"
|
455
|
+
# resp.jobs[0].data_sources[0].destination #=> String
|
450
456
|
# resp.jobs[0].tags #=> Hash
|
451
457
|
# resp.jobs[0].tags["TagKey"] #=> String
|
452
458
|
# resp.jobs[0].vpc_config.subnets #=> Array
|
@@ -459,6 +465,8 @@ module Aws::RoboMaker
|
|
459
465
|
# resp.jobs[0].network_interface.private_ip_address #=> String
|
460
466
|
# resp.jobs[0].network_interface.public_ip_address #=> String
|
461
467
|
# resp.jobs[0].compute.simulation_unit_limit #=> Integer
|
468
|
+
# resp.jobs[0].compute.compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
469
|
+
# resp.jobs[0].compute.gpu_unit_limit #=> Integer
|
462
470
|
# resp.unprocessed_jobs #=> Array
|
463
471
|
# resp.unprocessed_jobs[0] #=> String
|
464
472
|
#
|
@@ -804,7 +812,7 @@ module Aws::RoboMaker
|
|
804
812
|
# @option params [required, String] :name
|
805
813
|
# The name of the robot application.
|
806
814
|
#
|
807
|
-
# @option params [
|
815
|
+
# @option params [Array<Types::SourceConfig>] :sources
|
808
816
|
# The sources of the robot application.
|
809
817
|
#
|
810
818
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
@@ -815,6 +823,10 @@ module Aws::RoboMaker
|
|
815
823
|
# A map that contains tag keys and tag values that are attached to the
|
816
824
|
# robot application.
|
817
825
|
#
|
826
|
+
# @option params [Types::Environment] :environment
|
827
|
+
# The object that contains that URI of the Docker image that you use for
|
828
|
+
# your robot application.
|
829
|
+
#
|
818
830
|
# @return [Types::CreateRobotApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
819
831
|
#
|
820
832
|
# * {Types::CreateRobotApplicationResponse#arn #arn} => String
|
@@ -825,12 +837,13 @@ module Aws::RoboMaker
|
|
825
837
|
# * {Types::CreateRobotApplicationResponse#last_updated_at #last_updated_at} => Time
|
826
838
|
# * {Types::CreateRobotApplicationResponse#revision_id #revision_id} => String
|
827
839
|
# * {Types::CreateRobotApplicationResponse#tags #tags} => Hash<String,String>
|
840
|
+
# * {Types::CreateRobotApplicationResponse#environment #environment} => Types::Environment
|
828
841
|
#
|
829
842
|
# @example Request syntax with placeholder values
|
830
843
|
#
|
831
844
|
# resp = client.create_robot_application({
|
832
845
|
# name: "Name", # required
|
833
|
-
# sources: [
|
846
|
+
# sources: [
|
834
847
|
# {
|
835
848
|
# s3_bucket: "S3Bucket",
|
836
849
|
# s3_key: "S3Key",
|
@@ -838,12 +851,15 @@ module Aws::RoboMaker
|
|
838
851
|
# },
|
839
852
|
# ],
|
840
853
|
# robot_software_suite: { # required
|
841
|
-
# name: "ROS", # accepts ROS, ROS2
|
854
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
842
855
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
843
856
|
# },
|
844
857
|
# tags: {
|
845
858
|
# "TagKey" => "TagValue",
|
846
859
|
# },
|
860
|
+
# environment: {
|
861
|
+
# uri: "RepositoryUrl",
|
862
|
+
# },
|
847
863
|
# })
|
848
864
|
#
|
849
865
|
# @example Response structure
|
@@ -856,12 +872,13 @@ module Aws::RoboMaker
|
|
856
872
|
# resp.sources[0].s3_key #=> String
|
857
873
|
# resp.sources[0].etag #=> String
|
858
874
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
859
|
-
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
875
|
+
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
860
876
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
861
877
|
# resp.last_updated_at #=> Time
|
862
878
|
# resp.revision_id #=> String
|
863
879
|
# resp.tags #=> Hash
|
864
880
|
# resp.tags["TagKey"] #=> String
|
881
|
+
# resp.environment.uri #=> String
|
865
882
|
#
|
866
883
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplication AWS API Documentation
|
867
884
|
#
|
@@ -882,6 +899,14 @@ module Aws::RoboMaker
|
|
882
899
|
# value and it matches the latest revision ID, a new version will be
|
883
900
|
# created.
|
884
901
|
#
|
902
|
+
# @option params [Array<String>] :s3_etags
|
903
|
+
# The Amazon S3 identifier for the zip file bundle that you use for your
|
904
|
+
# robot application.
|
905
|
+
#
|
906
|
+
# @option params [String] :image_digest
|
907
|
+
# A SHA256 identifier for the Docker image that you use for your robot
|
908
|
+
# application.
|
909
|
+
#
|
885
910
|
# @return [Types::CreateRobotApplicationVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
886
911
|
#
|
887
912
|
# * {Types::CreateRobotApplicationVersionResponse#arn #arn} => String
|
@@ -891,12 +916,15 @@ module Aws::RoboMaker
|
|
891
916
|
# * {Types::CreateRobotApplicationVersionResponse#robot_software_suite #robot_software_suite} => Types::RobotSoftwareSuite
|
892
917
|
# * {Types::CreateRobotApplicationVersionResponse#last_updated_at #last_updated_at} => Time
|
893
918
|
# * {Types::CreateRobotApplicationVersionResponse#revision_id #revision_id} => String
|
919
|
+
# * {Types::CreateRobotApplicationVersionResponse#environment #environment} => Types::Environment
|
894
920
|
#
|
895
921
|
# @example Request syntax with placeholder values
|
896
922
|
#
|
897
923
|
# resp = client.create_robot_application_version({
|
898
924
|
# application: "Arn", # required
|
899
925
|
# current_revision_id: "RevisionId",
|
926
|
+
# s3_etags: ["S3Etag"],
|
927
|
+
# image_digest: "ImageDigest",
|
900
928
|
# })
|
901
929
|
#
|
902
930
|
# @example Response structure
|
@@ -909,10 +937,11 @@ module Aws::RoboMaker
|
|
909
937
|
# resp.sources[0].s3_key #=> String
|
910
938
|
# resp.sources[0].etag #=> String
|
911
939
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
912
|
-
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
940
|
+
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
913
941
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
914
942
|
# resp.last_updated_at #=> Time
|
915
943
|
# resp.revision_id #=> String
|
944
|
+
# resp.environment.uri #=> String
|
916
945
|
#
|
917
946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationVersion AWS API Documentation
|
918
947
|
#
|
@@ -928,7 +957,7 @@ module Aws::RoboMaker
|
|
928
957
|
# @option params [required, String] :name
|
929
958
|
# The name of the simulation application.
|
930
959
|
#
|
931
|
-
# @option params [
|
960
|
+
# @option params [Array<Types::SourceConfig>] :sources
|
932
961
|
# The sources of the simulation application.
|
933
962
|
#
|
934
963
|
# @option params [required, Types::SimulationSoftwareSuite] :simulation_software_suite
|
@@ -945,6 +974,10 @@ module Aws::RoboMaker
|
|
945
974
|
# A map that contains tag keys and tag values that are attached to the
|
946
975
|
# simulation application.
|
947
976
|
#
|
977
|
+
# @option params [Types::Environment] :environment
|
978
|
+
# The object that contains the Docker image URI used to create your
|
979
|
+
# simulation application.
|
980
|
+
#
|
948
981
|
# @return [Types::CreateSimulationApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
949
982
|
#
|
950
983
|
# * {Types::CreateSimulationApplicationResponse#arn #arn} => String
|
@@ -957,12 +990,13 @@ module Aws::RoboMaker
|
|
957
990
|
# * {Types::CreateSimulationApplicationResponse#last_updated_at #last_updated_at} => Time
|
958
991
|
# * {Types::CreateSimulationApplicationResponse#revision_id #revision_id} => String
|
959
992
|
# * {Types::CreateSimulationApplicationResponse#tags #tags} => Hash<String,String>
|
993
|
+
# * {Types::CreateSimulationApplicationResponse#environment #environment} => Types::Environment
|
960
994
|
#
|
961
995
|
# @example Request syntax with placeholder values
|
962
996
|
#
|
963
997
|
# resp = client.create_simulation_application({
|
964
998
|
# name: "Name", # required
|
965
|
-
# sources: [
|
999
|
+
# sources: [
|
966
1000
|
# {
|
967
1001
|
# s3_bucket: "S3Bucket",
|
968
1002
|
# s3_key: "S3Key",
|
@@ -970,11 +1004,11 @@ module Aws::RoboMaker
|
|
970
1004
|
# },
|
971
1005
|
# ],
|
972
1006
|
# simulation_software_suite: { # required
|
973
|
-
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
1007
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
|
974
1008
|
# version: "SimulationSoftwareSuiteVersionType",
|
975
1009
|
# },
|
976
1010
|
# robot_software_suite: { # required
|
977
|
-
# name: "ROS", # accepts ROS, ROS2
|
1011
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
978
1012
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
979
1013
|
# },
|
980
1014
|
# rendering_engine: {
|
@@ -984,6 +1018,9 @@ module Aws::RoboMaker
|
|
984
1018
|
# tags: {
|
985
1019
|
# "TagKey" => "TagValue",
|
986
1020
|
# },
|
1021
|
+
# environment: {
|
1022
|
+
# uri: "RepositoryUrl",
|
1023
|
+
# },
|
987
1024
|
# })
|
988
1025
|
#
|
989
1026
|
# @example Response structure
|
@@ -996,9 +1033,9 @@ module Aws::RoboMaker
|
|
996
1033
|
# resp.sources[0].s3_key #=> String
|
997
1034
|
# resp.sources[0].etag #=> String
|
998
1035
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
999
|
-
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
1036
|
+
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
|
1000
1037
|
# resp.simulation_software_suite.version #=> String
|
1001
|
-
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
1038
|
+
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
1002
1039
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
1003
1040
|
# resp.rendering_engine.name #=> String, one of "OGRE"
|
1004
1041
|
# resp.rendering_engine.version #=> String
|
@@ -1006,6 +1043,7 @@ module Aws::RoboMaker
|
|
1006
1043
|
# resp.revision_id #=> String
|
1007
1044
|
# resp.tags #=> Hash
|
1008
1045
|
# resp.tags["TagKey"] #=> String
|
1046
|
+
# resp.environment.uri #=> String
|
1009
1047
|
#
|
1010
1048
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplication AWS API Documentation
|
1011
1049
|
#
|
@@ -1026,6 +1064,14 @@ module Aws::RoboMaker
|
|
1026
1064
|
# a value and it matches the latest revision ID, a new version will be
|
1027
1065
|
# created.
|
1028
1066
|
#
|
1067
|
+
# @option params [Array<String>] :s3_etags
|
1068
|
+
# The Amazon S3 eTag identifier for the zip file bundle that you use to
|
1069
|
+
# create the simulation application.
|
1070
|
+
#
|
1071
|
+
# @option params [String] :image_digest
|
1072
|
+
# The SHA256 digest used to identify the Docker image URI used to
|
1073
|
+
# created the simulation application.
|
1074
|
+
#
|
1029
1075
|
# @return [Types::CreateSimulationApplicationVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1030
1076
|
#
|
1031
1077
|
# * {Types::CreateSimulationApplicationVersionResponse#arn #arn} => String
|
@@ -1037,12 +1083,15 @@ module Aws::RoboMaker
|
|
1037
1083
|
# * {Types::CreateSimulationApplicationVersionResponse#rendering_engine #rendering_engine} => Types::RenderingEngine
|
1038
1084
|
# * {Types::CreateSimulationApplicationVersionResponse#last_updated_at #last_updated_at} => Time
|
1039
1085
|
# * {Types::CreateSimulationApplicationVersionResponse#revision_id #revision_id} => String
|
1086
|
+
# * {Types::CreateSimulationApplicationVersionResponse#environment #environment} => Types::Environment
|
1040
1087
|
#
|
1041
1088
|
# @example Request syntax with placeholder values
|
1042
1089
|
#
|
1043
1090
|
# resp = client.create_simulation_application_version({
|
1044
1091
|
# application: "Arn", # required
|
1045
1092
|
# current_revision_id: "RevisionId",
|
1093
|
+
# s3_etags: ["S3Etag"],
|
1094
|
+
# image_digest: "ImageDigest",
|
1046
1095
|
# })
|
1047
1096
|
#
|
1048
1097
|
# @example Response structure
|
@@ -1055,14 +1104,15 @@ module Aws::RoboMaker
|
|
1055
1104
|
# resp.sources[0].s3_key #=> String
|
1056
1105
|
# resp.sources[0].etag #=> String
|
1057
1106
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
1058
|
-
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
1107
|
+
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
|
1059
1108
|
# resp.simulation_software_suite.version #=> String
|
1060
|
-
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
1109
|
+
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
1061
1110
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
1062
1111
|
# resp.rendering_engine.name #=> String, one of "OGRE"
|
1063
1112
|
# resp.rendering_engine.version #=> String
|
1064
1113
|
# resp.last_updated_at #=> Time
|
1065
1114
|
# resp.revision_id #=> String
|
1115
|
+
# resp.environment.uri #=> String
|
1066
1116
|
#
|
1067
1117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationVersion AWS API Documentation
|
1068
1118
|
#
|
@@ -1108,7 +1158,8 @@ module Aws::RoboMaker
|
|
1108
1158
|
#
|
1109
1159
|
# Continue
|
1110
1160
|
#
|
1111
|
-
# :
|
1161
|
+
# : Leaves the instance running for its maximum timeout duration after a
|
1162
|
+
# `4XX` error code.
|
1112
1163
|
#
|
1113
1164
|
# Fail
|
1114
1165
|
#
|
@@ -1183,8 +1234,8 @@ module Aws::RoboMaker
|
|
1183
1234
|
# application: "Arn", # required
|
1184
1235
|
# application_version: "Version",
|
1185
1236
|
# launch_config: { # required
|
1186
|
-
# package_name: "Command",
|
1187
|
-
# launch_file: "Command",
|
1237
|
+
# package_name: "Command",
|
1238
|
+
# launch_file: "Command",
|
1188
1239
|
# environment_variables: {
|
1189
1240
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
1190
1241
|
# },
|
@@ -1198,6 +1249,7 @@ module Aws::RoboMaker
|
|
1198
1249
|
# ],
|
1199
1250
|
# },
|
1200
1251
|
# stream_ui: false,
|
1252
|
+
# command: ["NonEmptyString"],
|
1201
1253
|
# },
|
1202
1254
|
# upload_configurations: [
|
1203
1255
|
# {
|
@@ -1224,8 +1276,8 @@ module Aws::RoboMaker
|
|
1224
1276
|
# application: "Arn", # required
|
1225
1277
|
# application_version: "Version",
|
1226
1278
|
# launch_config: { # required
|
1227
|
-
# package_name: "Command",
|
1228
|
-
# launch_file: "Command",
|
1279
|
+
# package_name: "Command",
|
1280
|
+
# launch_file: "Command",
|
1229
1281
|
# environment_variables: {
|
1230
1282
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
1231
1283
|
# },
|
@@ -1239,6 +1291,7 @@ module Aws::RoboMaker
|
|
1239
1291
|
# ],
|
1240
1292
|
# },
|
1241
1293
|
# stream_ui: false,
|
1294
|
+
# command: ["NonEmptyString"],
|
1242
1295
|
# },
|
1243
1296
|
# upload_configurations: [
|
1244
1297
|
# {
|
@@ -1269,7 +1322,9 @@ module Aws::RoboMaker
|
|
1269
1322
|
# {
|
1270
1323
|
# name: "Name", # required
|
1271
1324
|
# s3_bucket: "S3Bucket", # required
|
1272
|
-
# s3_keys: ["
|
1325
|
+
# s3_keys: ["S3KeyOrPrefix"], # required
|
1326
|
+
# type: "Prefix", # accepts Prefix, Archive, File
|
1327
|
+
# destination: "Path",
|
1273
1328
|
# },
|
1274
1329
|
# ],
|
1275
1330
|
# tags: {
|
@@ -1282,6 +1337,8 @@ module Aws::RoboMaker
|
|
1282
1337
|
# },
|
1283
1338
|
# compute: {
|
1284
1339
|
# simulation_unit_limit: 1,
|
1340
|
+
# compute_type: "CPU", # accepts CPU, GPU_AND_CPU
|
1341
|
+
# gpu_unit_limit: 1,
|
1285
1342
|
# },
|
1286
1343
|
# })
|
1287
1344
|
#
|
@@ -1312,6 +1369,8 @@ module Aws::RoboMaker
|
|
1312
1369
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1313
1370
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1314
1371
|
# resp.robot_applications[0].launch_config.stream_ui #=> Boolean
|
1372
|
+
# resp.robot_applications[0].launch_config.command #=> Array
|
1373
|
+
# resp.robot_applications[0].launch_config.command[0] #=> String
|
1315
1374
|
# resp.robot_applications[0].upload_configurations #=> Array
|
1316
1375
|
# resp.robot_applications[0].upload_configurations[0].name #=> String
|
1317
1376
|
# resp.robot_applications[0].upload_configurations[0].path #=> String
|
@@ -1336,6 +1395,8 @@ module Aws::RoboMaker
|
|
1336
1395
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1337
1396
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1338
1397
|
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1398
|
+
# resp.simulation_applications[0].launch_config.command #=> Array
|
1399
|
+
# resp.simulation_applications[0].launch_config.command[0] #=> String
|
1339
1400
|
# resp.simulation_applications[0].upload_configurations #=> Array
|
1340
1401
|
# resp.simulation_applications[0].upload_configurations[0].name #=> String
|
1341
1402
|
# resp.simulation_applications[0].upload_configurations[0].path #=> String
|
@@ -1356,6 +1417,8 @@ module Aws::RoboMaker
|
|
1356
1417
|
# resp.data_sources[0].s3_keys #=> Array
|
1357
1418
|
# resp.data_sources[0].s3_keys[0].s3_key #=> String
|
1358
1419
|
# resp.data_sources[0].s3_keys[0].etag #=> String
|
1420
|
+
# resp.data_sources[0].type #=> String, one of "Prefix", "Archive", "File"
|
1421
|
+
# resp.data_sources[0].destination #=> String
|
1359
1422
|
# resp.tags #=> Hash
|
1360
1423
|
# resp.tags["TagKey"] #=> String
|
1361
1424
|
# resp.vpc_config.subnets #=> Array
|
@@ -1365,6 +1428,8 @@ module Aws::RoboMaker
|
|
1365
1428
|
# resp.vpc_config.vpc_id #=> String
|
1366
1429
|
# resp.vpc_config.assign_public_ip #=> Boolean
|
1367
1430
|
# resp.compute.simulation_unit_limit #=> Integer
|
1431
|
+
# resp.compute.compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
1432
|
+
# resp.compute.gpu_unit_limit #=> Integer
|
1368
1433
|
#
|
1369
1434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJob AWS API Documentation
|
1370
1435
|
#
|
@@ -1924,6 +1989,8 @@ module Aws::RoboMaker
|
|
1924
1989
|
# * {Types::DescribeRobotApplicationResponse#revision_id #revision_id} => String
|
1925
1990
|
# * {Types::DescribeRobotApplicationResponse#last_updated_at #last_updated_at} => Time
|
1926
1991
|
# * {Types::DescribeRobotApplicationResponse#tags #tags} => Hash<String,String>
|
1992
|
+
# * {Types::DescribeRobotApplicationResponse#environment #environment} => Types::Environment
|
1993
|
+
# * {Types::DescribeRobotApplicationResponse#image_digest #image_digest} => String
|
1927
1994
|
#
|
1928
1995
|
# @example Request syntax with placeholder values
|
1929
1996
|
#
|
@@ -1942,12 +2009,14 @@ module Aws::RoboMaker
|
|
1942
2009
|
# resp.sources[0].s3_key #=> String
|
1943
2010
|
# resp.sources[0].etag #=> String
|
1944
2011
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
1945
|
-
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
2012
|
+
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
1946
2013
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
1947
2014
|
# resp.revision_id #=> String
|
1948
2015
|
# resp.last_updated_at #=> Time
|
1949
2016
|
# resp.tags #=> Hash
|
1950
2017
|
# resp.tags["TagKey"] #=> String
|
2018
|
+
# resp.environment.uri #=> String
|
2019
|
+
# resp.image_digest #=> String
|
1951
2020
|
#
|
1952
2021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplication AWS API Documentation
|
1953
2022
|
#
|
@@ -1978,6 +2047,8 @@ module Aws::RoboMaker
|
|
1978
2047
|
# * {Types::DescribeSimulationApplicationResponse#revision_id #revision_id} => String
|
1979
2048
|
# * {Types::DescribeSimulationApplicationResponse#last_updated_at #last_updated_at} => Time
|
1980
2049
|
# * {Types::DescribeSimulationApplicationResponse#tags #tags} => Hash<String,String>
|
2050
|
+
# * {Types::DescribeSimulationApplicationResponse#environment #environment} => Types::Environment
|
2051
|
+
# * {Types::DescribeSimulationApplicationResponse#image_digest #image_digest} => String
|
1981
2052
|
#
|
1982
2053
|
# @example Request syntax with placeholder values
|
1983
2054
|
#
|
@@ -1996,9 +2067,9 @@ module Aws::RoboMaker
|
|
1996
2067
|
# resp.sources[0].s3_key #=> String
|
1997
2068
|
# resp.sources[0].etag #=> String
|
1998
2069
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
1999
|
-
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
2070
|
+
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
|
2000
2071
|
# resp.simulation_software_suite.version #=> String
|
2001
|
-
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
2072
|
+
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
2002
2073
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
2003
2074
|
# resp.rendering_engine.name #=> String, one of "OGRE"
|
2004
2075
|
# resp.rendering_engine.version #=> String
|
@@ -2006,6 +2077,8 @@ module Aws::RoboMaker
|
|
2006
2077
|
# resp.last_updated_at #=> Time
|
2007
2078
|
# resp.tags #=> Hash
|
2008
2079
|
# resp.tags["TagKey"] #=> String
|
2080
|
+
# resp.environment.uri #=> String
|
2081
|
+
# resp.image_digest #=> String
|
2009
2082
|
#
|
2010
2083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplication AWS API Documentation
|
2011
2084
|
#
|
@@ -2080,6 +2153,8 @@ module Aws::RoboMaker
|
|
2080
2153
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2081
2154
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2082
2155
|
# resp.robot_applications[0].launch_config.stream_ui #=> Boolean
|
2156
|
+
# resp.robot_applications[0].launch_config.command #=> Array
|
2157
|
+
# resp.robot_applications[0].launch_config.command[0] #=> String
|
2083
2158
|
# resp.robot_applications[0].upload_configurations #=> Array
|
2084
2159
|
# resp.robot_applications[0].upload_configurations[0].name #=> String
|
2085
2160
|
# resp.robot_applications[0].upload_configurations[0].path #=> String
|
@@ -2104,6 +2179,8 @@ module Aws::RoboMaker
|
|
2104
2179
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2105
2180
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2106
2181
|
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2182
|
+
# resp.simulation_applications[0].launch_config.command #=> Array
|
2183
|
+
# resp.simulation_applications[0].launch_config.command[0] #=> String
|
2107
2184
|
# resp.simulation_applications[0].upload_configurations #=> Array
|
2108
2185
|
# resp.simulation_applications[0].upload_configurations[0].name #=> String
|
2109
2186
|
# resp.simulation_applications[0].upload_configurations[0].path #=> String
|
@@ -2124,6 +2201,8 @@ module Aws::RoboMaker
|
|
2124
2201
|
# resp.data_sources[0].s3_keys #=> Array
|
2125
2202
|
# resp.data_sources[0].s3_keys[0].s3_key #=> String
|
2126
2203
|
# resp.data_sources[0].s3_keys[0].etag #=> String
|
2204
|
+
# resp.data_sources[0].type #=> String, one of "Prefix", "Archive", "File"
|
2205
|
+
# resp.data_sources[0].destination #=> String
|
2127
2206
|
# resp.tags #=> Hash
|
2128
2207
|
# resp.tags["TagKey"] #=> String
|
2129
2208
|
# resp.vpc_config.subnets #=> Array
|
@@ -2136,6 +2215,8 @@ module Aws::RoboMaker
|
|
2136
2215
|
# resp.network_interface.private_ip_address #=> String
|
2137
2216
|
# resp.network_interface.public_ip_address #=> String
|
2138
2217
|
# resp.compute.simulation_unit_limit #=> Integer
|
2218
|
+
# resp.compute.compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
2219
|
+
# resp.compute.gpu_unit_limit #=> Integer
|
2139
2220
|
#
|
2140
2221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJob AWS API Documentation
|
2141
2222
|
#
|
@@ -2203,6 +2284,8 @@ module Aws::RoboMaker
|
|
2203
2284
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2204
2285
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2205
2286
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.stream_ui #=> Boolean
|
2287
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.command #=> Array
|
2288
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.command[0] #=> String
|
2206
2289
|
# resp.failed_requests[0].request.robot_applications[0].upload_configurations #=> Array
|
2207
2290
|
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].name #=> String
|
2208
2291
|
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].path #=> String
|
@@ -2227,6 +2310,8 @@ module Aws::RoboMaker
|
|
2227
2310
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2228
2311
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2229
2312
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2313
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.command #=> Array
|
2314
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.command[0] #=> String
|
2230
2315
|
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations #=> Array
|
2231
2316
|
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].name #=> String
|
2232
2317
|
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].path #=> String
|
@@ -2246,12 +2331,16 @@ module Aws::RoboMaker
|
|
2246
2331
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
2247
2332
|
# resp.failed_requests[0].request.data_sources[0].s3_keys #=> Array
|
2248
2333
|
# resp.failed_requests[0].request.data_sources[0].s3_keys[0] #=> String
|
2334
|
+
# resp.failed_requests[0].request.data_sources[0].type #=> String, one of "Prefix", "Archive", "File"
|
2335
|
+
# resp.failed_requests[0].request.data_sources[0].destination #=> String
|
2249
2336
|
# resp.failed_requests[0].request.vpc_config.subnets #=> Array
|
2250
2337
|
# resp.failed_requests[0].request.vpc_config.subnets[0] #=> String
|
2251
2338
|
# resp.failed_requests[0].request.vpc_config.security_groups #=> Array
|
2252
2339
|
# resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
|
2253
2340
|
# resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
|
2254
2341
|
# resp.failed_requests[0].request.compute.simulation_unit_limit #=> Integer
|
2342
|
+
# resp.failed_requests[0].request.compute.compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
2343
|
+
# resp.failed_requests[0].request.compute.gpu_unit_limit #=> Integer
|
2255
2344
|
# resp.failed_requests[0].request.tags #=> Hash
|
2256
2345
|
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
2257
2346
|
# resp.failed_requests[0].failure_reason #=> String
|
@@ -2277,6 +2366,8 @@ module Aws::RoboMaker
|
|
2277
2366
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2278
2367
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2279
2368
|
# resp.pending_requests[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
2369
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.command #=> Array
|
2370
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.command[0] #=> String
|
2280
2371
|
# resp.pending_requests[0].robot_applications[0].upload_configurations #=> Array
|
2281
2372
|
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].name #=> String
|
2282
2373
|
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].path #=> String
|
@@ -2301,6 +2392,8 @@ module Aws::RoboMaker
|
|
2301
2392
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2302
2393
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2303
2394
|
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2395
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.command #=> Array
|
2396
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.command[0] #=> String
|
2304
2397
|
# resp.pending_requests[0].simulation_applications[0].upload_configurations #=> Array
|
2305
2398
|
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].name #=> String
|
2306
2399
|
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].path #=> String
|
@@ -2320,12 +2413,16 @@ module Aws::RoboMaker
|
|
2320
2413
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
2321
2414
|
# resp.pending_requests[0].data_sources[0].s3_keys #=> Array
|
2322
2415
|
# resp.pending_requests[0].data_sources[0].s3_keys[0] #=> String
|
2416
|
+
# resp.pending_requests[0].data_sources[0].type #=> String, one of "Prefix", "Archive", "File"
|
2417
|
+
# resp.pending_requests[0].data_sources[0].destination #=> String
|
2323
2418
|
# resp.pending_requests[0].vpc_config.subnets #=> Array
|
2324
2419
|
# resp.pending_requests[0].vpc_config.subnets[0] #=> String
|
2325
2420
|
# resp.pending_requests[0].vpc_config.security_groups #=> Array
|
2326
2421
|
# resp.pending_requests[0].vpc_config.security_groups[0] #=> String
|
2327
2422
|
# resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
|
2328
2423
|
# resp.pending_requests[0].compute.simulation_unit_limit #=> Integer
|
2424
|
+
# resp.pending_requests[0].compute.compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
2425
|
+
# resp.pending_requests[0].compute.gpu_unit_limit #=> Integer
|
2329
2426
|
# resp.pending_requests[0].tags #=> Hash
|
2330
2427
|
# resp.pending_requests[0].tags["TagKey"] #=> String
|
2331
2428
|
# resp.created_requests #=> Array
|
@@ -2339,6 +2436,7 @@ module Aws::RoboMaker
|
|
2339
2436
|
# resp.created_requests[0].robot_application_names[0] #=> String
|
2340
2437
|
# resp.created_requests[0].data_source_names #=> Array
|
2341
2438
|
# resp.created_requests[0].data_source_names[0] #=> String
|
2439
|
+
# resp.created_requests[0].compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
2342
2440
|
# resp.tags #=> Hash
|
2343
2441
|
# resp.tags["TagKey"] #=> String
|
2344
2442
|
#
|
@@ -2785,7 +2883,7 @@ module Aws::RoboMaker
|
|
2785
2883
|
# resp.robot_application_summaries[0].arn #=> String
|
2786
2884
|
# resp.robot_application_summaries[0].version #=> String
|
2787
2885
|
# resp.robot_application_summaries[0].last_updated_at #=> Time
|
2788
|
-
# resp.robot_application_summaries[0].robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
2886
|
+
# resp.robot_application_summaries[0].robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
2789
2887
|
# resp.robot_application_summaries[0].robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
2790
2888
|
# resp.next_token #=> String
|
2791
2889
|
#
|
@@ -2928,9 +3026,9 @@ module Aws::RoboMaker
|
|
2928
3026
|
# resp.simulation_application_summaries[0].arn #=> String
|
2929
3027
|
# resp.simulation_application_summaries[0].version #=> String
|
2930
3028
|
# resp.simulation_application_summaries[0].last_updated_at #=> Time
|
2931
|
-
# resp.simulation_application_summaries[0].robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
3029
|
+
# resp.simulation_application_summaries[0].robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
2932
3030
|
# resp.simulation_application_summaries[0].robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
2933
|
-
# resp.simulation_application_summaries[0].simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
3031
|
+
# resp.simulation_application_summaries[0].simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
|
2934
3032
|
# resp.simulation_application_summaries[0].simulation_software_suite.version #=> String
|
2935
3033
|
# resp.next_token #=> String
|
2936
3034
|
#
|
@@ -3067,6 +3165,7 @@ module Aws::RoboMaker
|
|
3067
3165
|
# resp.simulation_job_summaries[0].robot_application_names[0] #=> String
|
3068
3166
|
# resp.simulation_job_summaries[0].data_source_names #=> Array
|
3069
3167
|
# resp.simulation_job_summaries[0].data_source_names[0] #=> String
|
3168
|
+
# resp.simulation_job_summaries[0].compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
3070
3169
|
# resp.next_token #=> String
|
3071
3170
|
#
|
3072
3171
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobs AWS API Documentation
|
@@ -3463,8 +3562,8 @@ module Aws::RoboMaker
|
|
3463
3562
|
# application: "Arn", # required
|
3464
3563
|
# application_version: "Version",
|
3465
3564
|
# launch_config: { # required
|
3466
|
-
# package_name: "Command",
|
3467
|
-
# launch_file: "Command",
|
3565
|
+
# package_name: "Command",
|
3566
|
+
# launch_file: "Command",
|
3468
3567
|
# environment_variables: {
|
3469
3568
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
3470
3569
|
# },
|
@@ -3478,6 +3577,7 @@ module Aws::RoboMaker
|
|
3478
3577
|
# ],
|
3479
3578
|
# },
|
3480
3579
|
# stream_ui: false,
|
3580
|
+
# command: ["NonEmptyString"],
|
3481
3581
|
# },
|
3482
3582
|
# upload_configurations: [
|
3483
3583
|
# {
|
@@ -3504,8 +3604,8 @@ module Aws::RoboMaker
|
|
3504
3604
|
# application: "Arn", # required
|
3505
3605
|
# application_version: "Version",
|
3506
3606
|
# launch_config: { # required
|
3507
|
-
# package_name: "Command",
|
3508
|
-
# launch_file: "Command",
|
3607
|
+
# package_name: "Command",
|
3608
|
+
# launch_file: "Command",
|
3509
3609
|
# environment_variables: {
|
3510
3610
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
3511
3611
|
# },
|
@@ -3519,6 +3619,7 @@ module Aws::RoboMaker
|
|
3519
3619
|
# ],
|
3520
3620
|
# },
|
3521
3621
|
# stream_ui: false,
|
3622
|
+
# command: ["NonEmptyString"],
|
3522
3623
|
# },
|
3523
3624
|
# upload_configurations: [
|
3524
3625
|
# {
|
@@ -3549,7 +3650,9 @@ module Aws::RoboMaker
|
|
3549
3650
|
# {
|
3550
3651
|
# name: "Name", # required
|
3551
3652
|
# s3_bucket: "S3Bucket", # required
|
3552
|
-
# s3_keys: ["
|
3653
|
+
# s3_keys: ["S3KeyOrPrefix"], # required
|
3654
|
+
# type: "Prefix", # accepts Prefix, Archive, File
|
3655
|
+
# destination: "Path",
|
3553
3656
|
# },
|
3554
3657
|
# ],
|
3555
3658
|
# vpc_config: {
|
@@ -3559,6 +3662,8 @@ module Aws::RoboMaker
|
|
3559
3662
|
# },
|
3560
3663
|
# compute: {
|
3561
3664
|
# simulation_unit_limit: 1,
|
3665
|
+
# compute_type: "CPU", # accepts CPU, GPU_AND_CPU
|
3666
|
+
# gpu_unit_limit: 1,
|
3562
3667
|
# },
|
3563
3668
|
# tags: {
|
3564
3669
|
# "TagKey" => "TagValue",
|
@@ -3600,6 +3705,8 @@ module Aws::RoboMaker
|
|
3600
3705
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
3601
3706
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
3602
3707
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.stream_ui #=> Boolean
|
3708
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.command #=> Array
|
3709
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.command[0] #=> String
|
3603
3710
|
# resp.failed_requests[0].request.robot_applications[0].upload_configurations #=> Array
|
3604
3711
|
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].name #=> String
|
3605
3712
|
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].path #=> String
|
@@ -3624,6 +3731,8 @@ module Aws::RoboMaker
|
|
3624
3731
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
3625
3732
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
3626
3733
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
3734
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.command #=> Array
|
3735
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.command[0] #=> String
|
3627
3736
|
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations #=> Array
|
3628
3737
|
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].name #=> String
|
3629
3738
|
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].path #=> String
|
@@ -3643,12 +3752,16 @@ module Aws::RoboMaker
|
|
3643
3752
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
3644
3753
|
# resp.failed_requests[0].request.data_sources[0].s3_keys #=> Array
|
3645
3754
|
# resp.failed_requests[0].request.data_sources[0].s3_keys[0] #=> String
|
3755
|
+
# resp.failed_requests[0].request.data_sources[0].type #=> String, one of "Prefix", "Archive", "File"
|
3756
|
+
# resp.failed_requests[0].request.data_sources[0].destination #=> String
|
3646
3757
|
# resp.failed_requests[0].request.vpc_config.subnets #=> Array
|
3647
3758
|
# resp.failed_requests[0].request.vpc_config.subnets[0] #=> String
|
3648
3759
|
# resp.failed_requests[0].request.vpc_config.security_groups #=> Array
|
3649
3760
|
# resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
|
3650
3761
|
# resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
|
3651
3762
|
# resp.failed_requests[0].request.compute.simulation_unit_limit #=> Integer
|
3763
|
+
# resp.failed_requests[0].request.compute.compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
3764
|
+
# resp.failed_requests[0].request.compute.gpu_unit_limit #=> Integer
|
3652
3765
|
# resp.failed_requests[0].request.tags #=> Hash
|
3653
3766
|
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
3654
3767
|
# resp.failed_requests[0].failure_reason #=> String
|
@@ -3674,6 +3787,8 @@ module Aws::RoboMaker
|
|
3674
3787
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
3675
3788
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
3676
3789
|
# resp.pending_requests[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
3790
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.command #=> Array
|
3791
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.command[0] #=> String
|
3677
3792
|
# resp.pending_requests[0].robot_applications[0].upload_configurations #=> Array
|
3678
3793
|
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].name #=> String
|
3679
3794
|
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].path #=> String
|
@@ -3698,6 +3813,8 @@ module Aws::RoboMaker
|
|
3698
3813
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
3699
3814
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
3700
3815
|
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
3816
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.command #=> Array
|
3817
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.command[0] #=> String
|
3701
3818
|
# resp.pending_requests[0].simulation_applications[0].upload_configurations #=> Array
|
3702
3819
|
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].name #=> String
|
3703
3820
|
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].path #=> String
|
@@ -3717,12 +3834,16 @@ module Aws::RoboMaker
|
|
3717
3834
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
3718
3835
|
# resp.pending_requests[0].data_sources[0].s3_keys #=> Array
|
3719
3836
|
# resp.pending_requests[0].data_sources[0].s3_keys[0] #=> String
|
3837
|
+
# resp.pending_requests[0].data_sources[0].type #=> String, one of "Prefix", "Archive", "File"
|
3838
|
+
# resp.pending_requests[0].data_sources[0].destination #=> String
|
3720
3839
|
# resp.pending_requests[0].vpc_config.subnets #=> Array
|
3721
3840
|
# resp.pending_requests[0].vpc_config.subnets[0] #=> String
|
3722
3841
|
# resp.pending_requests[0].vpc_config.security_groups #=> Array
|
3723
3842
|
# resp.pending_requests[0].vpc_config.security_groups[0] #=> String
|
3724
3843
|
# resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
|
3725
3844
|
# resp.pending_requests[0].compute.simulation_unit_limit #=> Integer
|
3845
|
+
# resp.pending_requests[0].compute.compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
3846
|
+
# resp.pending_requests[0].compute.gpu_unit_limit #=> Integer
|
3726
3847
|
# resp.pending_requests[0].tags #=> Hash
|
3727
3848
|
# resp.pending_requests[0].tags["TagKey"] #=> String
|
3728
3849
|
# resp.created_requests #=> Array
|
@@ -3736,6 +3857,7 @@ module Aws::RoboMaker
|
|
3736
3857
|
# resp.created_requests[0].robot_application_names[0] #=> String
|
3737
3858
|
# resp.created_requests[0].data_source_names #=> Array
|
3738
3859
|
# resp.created_requests[0].data_source_names[0] #=> String
|
3860
|
+
# resp.created_requests[0].compute_type #=> String, one of "CPU", "GPU_AND_CPU"
|
3739
3861
|
# resp.tags #=> Hash
|
3740
3862
|
# resp.tags["TagKey"] #=> String
|
3741
3863
|
#
|
@@ -3893,7 +4015,7 @@ module Aws::RoboMaker
|
|
3893
4015
|
# @option params [required, String] :application
|
3894
4016
|
# The application information for the robot application.
|
3895
4017
|
#
|
3896
|
-
# @option params [
|
4018
|
+
# @option params [Array<Types::SourceConfig>] :sources
|
3897
4019
|
# The sources of the robot application.
|
3898
4020
|
#
|
3899
4021
|
# @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
|
@@ -3903,6 +4025,10 @@ module Aws::RoboMaker
|
|
3903
4025
|
# @option params [String] :current_revision_id
|
3904
4026
|
# The revision id for the robot application.
|
3905
4027
|
#
|
4028
|
+
# @option params [Types::Environment] :environment
|
4029
|
+
# The object that contains the Docker image URI for your robot
|
4030
|
+
# application.
|
4031
|
+
#
|
3906
4032
|
# @return [Types::UpdateRobotApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3907
4033
|
#
|
3908
4034
|
# * {Types::UpdateRobotApplicationResponse#arn #arn} => String
|
@@ -3912,12 +4038,13 @@ module Aws::RoboMaker
|
|
3912
4038
|
# * {Types::UpdateRobotApplicationResponse#robot_software_suite #robot_software_suite} => Types::RobotSoftwareSuite
|
3913
4039
|
# * {Types::UpdateRobotApplicationResponse#last_updated_at #last_updated_at} => Time
|
3914
4040
|
# * {Types::UpdateRobotApplicationResponse#revision_id #revision_id} => String
|
4041
|
+
# * {Types::UpdateRobotApplicationResponse#environment #environment} => Types::Environment
|
3915
4042
|
#
|
3916
4043
|
# @example Request syntax with placeholder values
|
3917
4044
|
#
|
3918
4045
|
# resp = client.update_robot_application({
|
3919
4046
|
# application: "Arn", # required
|
3920
|
-
# sources: [
|
4047
|
+
# sources: [
|
3921
4048
|
# {
|
3922
4049
|
# s3_bucket: "S3Bucket",
|
3923
4050
|
# s3_key: "S3Key",
|
@@ -3925,10 +4052,13 @@ module Aws::RoboMaker
|
|
3925
4052
|
# },
|
3926
4053
|
# ],
|
3927
4054
|
# robot_software_suite: { # required
|
3928
|
-
# name: "ROS", # accepts ROS, ROS2
|
4055
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
3929
4056
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
3930
4057
|
# },
|
3931
4058
|
# current_revision_id: "RevisionId",
|
4059
|
+
# environment: {
|
4060
|
+
# uri: "RepositoryUrl",
|
4061
|
+
# },
|
3932
4062
|
# })
|
3933
4063
|
#
|
3934
4064
|
# @example Response structure
|
@@ -3941,10 +4071,11 @@ module Aws::RoboMaker
|
|
3941
4071
|
# resp.sources[0].s3_key #=> String
|
3942
4072
|
# resp.sources[0].etag #=> String
|
3943
4073
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
3944
|
-
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
4074
|
+
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
3945
4075
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
3946
4076
|
# resp.last_updated_at #=> Time
|
3947
4077
|
# resp.revision_id #=> String
|
4078
|
+
# resp.environment.uri #=> String
|
3948
4079
|
#
|
3949
4080
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateRobotApplication AWS API Documentation
|
3950
4081
|
#
|
@@ -3960,7 +4091,7 @@ module Aws::RoboMaker
|
|
3960
4091
|
# @option params [required, String] :application
|
3961
4092
|
# The application information for the simulation application.
|
3962
4093
|
#
|
3963
|
-
# @option params [
|
4094
|
+
# @option params [Array<Types::SourceConfig>] :sources
|
3964
4095
|
# The sources of the simulation application.
|
3965
4096
|
#
|
3966
4097
|
# @option params [required, Types::SimulationSoftwareSuite] :simulation_software_suite
|
@@ -3975,6 +4106,10 @@ module Aws::RoboMaker
|
|
3975
4106
|
# @option params [String] :current_revision_id
|
3976
4107
|
# The revision id for the robot application.
|
3977
4108
|
#
|
4109
|
+
# @option params [Types::Environment] :environment
|
4110
|
+
# The object that contains the Docker image URI for your simulation
|
4111
|
+
# application.
|
4112
|
+
#
|
3978
4113
|
# @return [Types::UpdateSimulationApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3979
4114
|
#
|
3980
4115
|
# * {Types::UpdateSimulationApplicationResponse#arn #arn} => String
|
@@ -3986,12 +4121,13 @@ module Aws::RoboMaker
|
|
3986
4121
|
# * {Types::UpdateSimulationApplicationResponse#rendering_engine #rendering_engine} => Types::RenderingEngine
|
3987
4122
|
# * {Types::UpdateSimulationApplicationResponse#last_updated_at #last_updated_at} => Time
|
3988
4123
|
# * {Types::UpdateSimulationApplicationResponse#revision_id #revision_id} => String
|
4124
|
+
# * {Types::UpdateSimulationApplicationResponse#environment #environment} => Types::Environment
|
3989
4125
|
#
|
3990
4126
|
# @example Request syntax with placeholder values
|
3991
4127
|
#
|
3992
4128
|
# resp = client.update_simulation_application({
|
3993
4129
|
# application: "Arn", # required
|
3994
|
-
# sources: [
|
4130
|
+
# sources: [
|
3995
4131
|
# {
|
3996
4132
|
# s3_bucket: "S3Bucket",
|
3997
4133
|
# s3_key: "S3Key",
|
@@ -3999,11 +4135,11 @@ module Aws::RoboMaker
|
|
3999
4135
|
# },
|
4000
4136
|
# ],
|
4001
4137
|
# simulation_software_suite: { # required
|
4002
|
-
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
4138
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
|
4003
4139
|
# version: "SimulationSoftwareSuiteVersionType",
|
4004
4140
|
# },
|
4005
4141
|
# robot_software_suite: { # required
|
4006
|
-
# name: "ROS", # accepts ROS, ROS2
|
4142
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
4007
4143
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
4008
4144
|
# },
|
4009
4145
|
# rendering_engine: {
|
@@ -4011,6 +4147,9 @@ module Aws::RoboMaker
|
|
4011
4147
|
# version: "RenderingEngineVersionType",
|
4012
4148
|
# },
|
4013
4149
|
# current_revision_id: "RevisionId",
|
4150
|
+
# environment: {
|
4151
|
+
# uri: "RepositoryUrl",
|
4152
|
+
# },
|
4014
4153
|
# })
|
4015
4154
|
#
|
4016
4155
|
# @example Response structure
|
@@ -4023,14 +4162,15 @@ module Aws::RoboMaker
|
|
4023
4162
|
# resp.sources[0].s3_key #=> String
|
4024
4163
|
# resp.sources[0].etag #=> String
|
4025
4164
|
# resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
|
4026
|
-
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
|
4165
|
+
# resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
|
4027
4166
|
# resp.simulation_software_suite.version #=> String
|
4028
|
-
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
|
4167
|
+
# resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
|
4029
4168
|
# resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
|
4030
4169
|
# resp.rendering_engine.name #=> String, one of "OGRE"
|
4031
4170
|
# resp.rendering_engine.version #=> String
|
4032
4171
|
# resp.last_updated_at #=> Time
|
4033
4172
|
# resp.revision_id #=> String
|
4173
|
+
# resp.environment.uri #=> String
|
4034
4174
|
#
|
4035
4175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateSimulationApplication AWS API Documentation
|
4036
4176
|
#
|
@@ -4103,7 +4243,7 @@ module Aws::RoboMaker
|
|
4103
4243
|
params: params,
|
4104
4244
|
config: config)
|
4105
4245
|
context[:gem_name] = 'aws-sdk-robomaker'
|
4106
|
-
context[:gem_version] = '1.
|
4246
|
+
context[:gem_version] = '1.43.0'
|
4107
4247
|
Seahorse::Client::Request.new(handlers, context)
|
4108
4248
|
end
|
4109
4249
|
|