aws-sdk-robomaker 1.42.0 → 1.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5cfb5e43deee5fb8dfeca909564b5d3d341048d12e6b56ba75be59cc6a1a47d4
4
- data.tar.gz: e054f8c5f072508877bfaaa6e8fddc22f4deb1b75cf0b3b0788374d90930a1be
3
+ metadata.gz: 6509857aa23c767676e277b474ccc80e99c8f9cd05b65f64a667bb8f3089846e
4
+ data.tar.gz: 7dc13201d609c2b15e912493c02d860e73042e3086a2396fb42e64b5ca520df6
5
5
  SHA512:
6
- metadata.gz: 7b9ecb866a7e721a01fd3c94175bdf5fead21854144757a0d36e839fe7bf6c48d4132cd7c085fd148aed19a88fddbe1f391f3492bfe02d60b353dfce90991e5a
7
- data.tar.gz: 404ec858eaf18f29becd24371e5f8dc2cdf39bf1e3ee107f2fcab1b0ba77c35b0e3a47d70cea80c6f2b304f06dadfcb7b60bf968ed75236d1cf230898932c450
6
+ metadata.gz: 57f9950e2e652be73b471f98c9d2f143ef8cc3a78a4877894035605a6e6e686e71e9ccc8ef66a8efb3f04cc591caa3e64aa0d729e1f0b5f4711dc01064d1ff67
7
+ data.tar.gz: 01ba3e4e43c2efcfe6ac8664cfd318d05ab030e067509c8f73f2119108fed8bd44c155a8211a16488c09503b7559a76f7b4a5882a4d11b0120bbf458a87aec02
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2021-10-14)
5
+ ------------------
6
+
7
+ * Feature - Adding support to GPU simulation jobs as well as non-ROS simulation jobs.
8
+
4
9
  1.42.0 (2021-09-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -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
  #
@@ -843,7 +851,7 @@ module Aws::RoboMaker
843
851
  # },
844
852
  # ],
845
853
  # robot_software_suite: { # required
846
- # name: "ROS", # accepts ROS, ROS2
854
+ # name: "ROS", # accepts ROS, ROS2, General
847
855
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
848
856
  # },
849
857
  # tags: {
@@ -864,7 +872,7 @@ module Aws::RoboMaker
864
872
  # resp.sources[0].s3_key #=> String
865
873
  # resp.sources[0].etag #=> String
866
874
  # resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
867
- # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
875
+ # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
868
876
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
869
877
  # resp.last_updated_at #=> Time
870
878
  # resp.revision_id #=> String
@@ -929,7 +937,7 @@ module Aws::RoboMaker
929
937
  # resp.sources[0].s3_key #=> String
930
938
  # resp.sources[0].etag #=> String
931
939
  # resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
932
- # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
940
+ # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
933
941
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
934
942
  # resp.last_updated_at #=> Time
935
943
  # resp.revision_id #=> String
@@ -996,11 +1004,11 @@ module Aws::RoboMaker
996
1004
  # },
997
1005
  # ],
998
1006
  # simulation_software_suite: { # required
999
- # name: "Gazebo", # accepts Gazebo, RosbagPlay
1007
+ # name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
1000
1008
  # version: "SimulationSoftwareSuiteVersionType",
1001
1009
  # },
1002
1010
  # robot_software_suite: { # required
1003
- # name: "ROS", # accepts ROS, ROS2
1011
+ # name: "ROS", # accepts ROS, ROS2, General
1004
1012
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
1005
1013
  # },
1006
1014
  # rendering_engine: {
@@ -1025,9 +1033,9 @@ module Aws::RoboMaker
1025
1033
  # resp.sources[0].s3_key #=> String
1026
1034
  # resp.sources[0].etag #=> String
1027
1035
  # resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
1028
- # resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
1036
+ # resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
1029
1037
  # resp.simulation_software_suite.version #=> String
1030
- # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
1038
+ # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
1031
1039
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
1032
1040
  # resp.rendering_engine.name #=> String, one of "OGRE"
1033
1041
  # resp.rendering_engine.version #=> String
@@ -1096,9 +1104,9 @@ module Aws::RoboMaker
1096
1104
  # resp.sources[0].s3_key #=> String
1097
1105
  # resp.sources[0].etag #=> String
1098
1106
  # resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
1099
- # resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
1107
+ # resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
1100
1108
  # resp.simulation_software_suite.version #=> String
1101
- # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
1109
+ # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
1102
1110
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
1103
1111
  # resp.rendering_engine.name #=> String, one of "OGRE"
1104
1112
  # resp.rendering_engine.version #=> String
@@ -1226,8 +1234,8 @@ module Aws::RoboMaker
1226
1234
  # application: "Arn", # required
1227
1235
  # application_version: "Version",
1228
1236
  # launch_config: { # required
1229
- # package_name: "Command", # required
1230
- # launch_file: "Command", # required
1237
+ # package_name: "Command",
1238
+ # launch_file: "Command",
1231
1239
  # environment_variables: {
1232
1240
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
1233
1241
  # },
@@ -1241,6 +1249,7 @@ module Aws::RoboMaker
1241
1249
  # ],
1242
1250
  # },
1243
1251
  # stream_ui: false,
1252
+ # command: ["NonEmptyString"],
1244
1253
  # },
1245
1254
  # upload_configurations: [
1246
1255
  # {
@@ -1267,8 +1276,8 @@ module Aws::RoboMaker
1267
1276
  # application: "Arn", # required
1268
1277
  # application_version: "Version",
1269
1278
  # launch_config: { # required
1270
- # package_name: "Command", # required
1271
- # launch_file: "Command", # required
1279
+ # package_name: "Command",
1280
+ # launch_file: "Command",
1272
1281
  # environment_variables: {
1273
1282
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
1274
1283
  # },
@@ -1282,6 +1291,7 @@ module Aws::RoboMaker
1282
1291
  # ],
1283
1292
  # },
1284
1293
  # stream_ui: false,
1294
+ # command: ["NonEmptyString"],
1285
1295
  # },
1286
1296
  # upload_configurations: [
1287
1297
  # {
@@ -1312,7 +1322,9 @@ module Aws::RoboMaker
1312
1322
  # {
1313
1323
  # name: "Name", # required
1314
1324
  # s3_bucket: "S3Bucket", # required
1315
- # s3_keys: ["S3Key"], # required
1325
+ # s3_keys: ["S3KeyOrPrefix"], # required
1326
+ # type: "Prefix", # accepts Prefix, Archive, File
1327
+ # destination: "Path",
1316
1328
  # },
1317
1329
  # ],
1318
1330
  # tags: {
@@ -1325,6 +1337,8 @@ module Aws::RoboMaker
1325
1337
  # },
1326
1338
  # compute: {
1327
1339
  # simulation_unit_limit: 1,
1340
+ # compute_type: "CPU", # accepts CPU, GPU_AND_CPU
1341
+ # gpu_unit_limit: 1,
1328
1342
  # },
1329
1343
  # })
1330
1344
  #
@@ -1355,6 +1369,8 @@ module Aws::RoboMaker
1355
1369
  # resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
1356
1370
  # resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
1357
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
1358
1374
  # resp.robot_applications[0].upload_configurations #=> Array
1359
1375
  # resp.robot_applications[0].upload_configurations[0].name #=> String
1360
1376
  # resp.robot_applications[0].upload_configurations[0].path #=> String
@@ -1379,6 +1395,8 @@ module Aws::RoboMaker
1379
1395
  # resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
1380
1396
  # resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
1381
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
1382
1400
  # resp.simulation_applications[0].upload_configurations #=> Array
1383
1401
  # resp.simulation_applications[0].upload_configurations[0].name #=> String
1384
1402
  # resp.simulation_applications[0].upload_configurations[0].path #=> String
@@ -1399,6 +1417,8 @@ module Aws::RoboMaker
1399
1417
  # resp.data_sources[0].s3_keys #=> Array
1400
1418
  # resp.data_sources[0].s3_keys[0].s3_key #=> String
1401
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
1402
1422
  # resp.tags #=> Hash
1403
1423
  # resp.tags["TagKey"] #=> String
1404
1424
  # resp.vpc_config.subnets #=> Array
@@ -1408,6 +1428,8 @@ module Aws::RoboMaker
1408
1428
  # resp.vpc_config.vpc_id #=> String
1409
1429
  # resp.vpc_config.assign_public_ip #=> Boolean
1410
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
1411
1433
  #
1412
1434
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJob AWS API Documentation
1413
1435
  #
@@ -1987,7 +2009,7 @@ module Aws::RoboMaker
1987
2009
  # resp.sources[0].s3_key #=> String
1988
2010
  # resp.sources[0].etag #=> String
1989
2011
  # resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
1990
- # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
2012
+ # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
1991
2013
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
1992
2014
  # resp.revision_id #=> String
1993
2015
  # resp.last_updated_at #=> Time
@@ -2045,9 +2067,9 @@ module Aws::RoboMaker
2045
2067
  # resp.sources[0].s3_key #=> String
2046
2068
  # resp.sources[0].etag #=> String
2047
2069
  # resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
2048
- # resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
2070
+ # resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
2049
2071
  # resp.simulation_software_suite.version #=> String
2050
- # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
2072
+ # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
2051
2073
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
2052
2074
  # resp.rendering_engine.name #=> String, one of "OGRE"
2053
2075
  # resp.rendering_engine.version #=> String
@@ -2131,6 +2153,8 @@ module Aws::RoboMaker
2131
2153
  # resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
2132
2154
  # resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
2133
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
2134
2158
  # resp.robot_applications[0].upload_configurations #=> Array
2135
2159
  # resp.robot_applications[0].upload_configurations[0].name #=> String
2136
2160
  # resp.robot_applications[0].upload_configurations[0].path #=> String
@@ -2155,6 +2179,8 @@ module Aws::RoboMaker
2155
2179
  # resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
2156
2180
  # resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
2157
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
2158
2184
  # resp.simulation_applications[0].upload_configurations #=> Array
2159
2185
  # resp.simulation_applications[0].upload_configurations[0].name #=> String
2160
2186
  # resp.simulation_applications[0].upload_configurations[0].path #=> String
@@ -2175,6 +2201,8 @@ module Aws::RoboMaker
2175
2201
  # resp.data_sources[0].s3_keys #=> Array
2176
2202
  # resp.data_sources[0].s3_keys[0].s3_key #=> String
2177
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
2178
2206
  # resp.tags #=> Hash
2179
2207
  # resp.tags["TagKey"] #=> String
2180
2208
  # resp.vpc_config.subnets #=> Array
@@ -2187,6 +2215,8 @@ module Aws::RoboMaker
2187
2215
  # resp.network_interface.private_ip_address #=> String
2188
2216
  # resp.network_interface.public_ip_address #=> String
2189
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
2190
2220
  #
2191
2221
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJob AWS API Documentation
2192
2222
  #
@@ -2254,6 +2284,8 @@ module Aws::RoboMaker
2254
2284
  # resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
2255
2285
  # resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
2256
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
2257
2289
  # resp.failed_requests[0].request.robot_applications[0].upload_configurations #=> Array
2258
2290
  # resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].name #=> String
2259
2291
  # resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].path #=> String
@@ -2278,6 +2310,8 @@ module Aws::RoboMaker
2278
2310
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
2279
2311
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
2280
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
2281
2315
  # resp.failed_requests[0].request.simulation_applications[0].upload_configurations #=> Array
2282
2316
  # resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].name #=> String
2283
2317
  # resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].path #=> String
@@ -2297,12 +2331,16 @@ module Aws::RoboMaker
2297
2331
  # resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
2298
2332
  # resp.failed_requests[0].request.data_sources[0].s3_keys #=> Array
2299
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
2300
2336
  # resp.failed_requests[0].request.vpc_config.subnets #=> Array
2301
2337
  # resp.failed_requests[0].request.vpc_config.subnets[0] #=> String
2302
2338
  # resp.failed_requests[0].request.vpc_config.security_groups #=> Array
2303
2339
  # resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
2304
2340
  # resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
2305
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
2306
2344
  # resp.failed_requests[0].request.tags #=> Hash
2307
2345
  # resp.failed_requests[0].request.tags["TagKey"] #=> String
2308
2346
  # resp.failed_requests[0].failure_reason #=> String
@@ -2328,6 +2366,8 @@ module Aws::RoboMaker
2328
2366
  # resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
2329
2367
  # resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
2330
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
2331
2371
  # resp.pending_requests[0].robot_applications[0].upload_configurations #=> Array
2332
2372
  # resp.pending_requests[0].robot_applications[0].upload_configurations[0].name #=> String
2333
2373
  # resp.pending_requests[0].robot_applications[0].upload_configurations[0].path #=> String
@@ -2352,6 +2392,8 @@ module Aws::RoboMaker
2352
2392
  # resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
2353
2393
  # resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
2354
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
2355
2397
  # resp.pending_requests[0].simulation_applications[0].upload_configurations #=> Array
2356
2398
  # resp.pending_requests[0].simulation_applications[0].upload_configurations[0].name #=> String
2357
2399
  # resp.pending_requests[0].simulation_applications[0].upload_configurations[0].path #=> String
@@ -2371,12 +2413,16 @@ module Aws::RoboMaker
2371
2413
  # resp.pending_requests[0].data_sources[0].s3_bucket #=> String
2372
2414
  # resp.pending_requests[0].data_sources[0].s3_keys #=> Array
2373
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
2374
2418
  # resp.pending_requests[0].vpc_config.subnets #=> Array
2375
2419
  # resp.pending_requests[0].vpc_config.subnets[0] #=> String
2376
2420
  # resp.pending_requests[0].vpc_config.security_groups #=> Array
2377
2421
  # resp.pending_requests[0].vpc_config.security_groups[0] #=> String
2378
2422
  # resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
2379
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
2380
2426
  # resp.pending_requests[0].tags #=> Hash
2381
2427
  # resp.pending_requests[0].tags["TagKey"] #=> String
2382
2428
  # resp.created_requests #=> Array
@@ -2390,6 +2436,7 @@ module Aws::RoboMaker
2390
2436
  # resp.created_requests[0].robot_application_names[0] #=> String
2391
2437
  # resp.created_requests[0].data_source_names #=> Array
2392
2438
  # resp.created_requests[0].data_source_names[0] #=> String
2439
+ # resp.created_requests[0].compute_type #=> String, one of "CPU", "GPU_AND_CPU"
2393
2440
  # resp.tags #=> Hash
2394
2441
  # resp.tags["TagKey"] #=> String
2395
2442
  #
@@ -2836,7 +2883,7 @@ module Aws::RoboMaker
2836
2883
  # resp.robot_application_summaries[0].arn #=> String
2837
2884
  # resp.robot_application_summaries[0].version #=> String
2838
2885
  # resp.robot_application_summaries[0].last_updated_at #=> Time
2839
- # 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"
2840
2887
  # resp.robot_application_summaries[0].robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
2841
2888
  # resp.next_token #=> String
2842
2889
  #
@@ -2979,9 +3026,9 @@ module Aws::RoboMaker
2979
3026
  # resp.simulation_application_summaries[0].arn #=> String
2980
3027
  # resp.simulation_application_summaries[0].version #=> String
2981
3028
  # resp.simulation_application_summaries[0].last_updated_at #=> Time
2982
- # 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"
2983
3030
  # resp.simulation_application_summaries[0].robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
2984
- # 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"
2985
3032
  # resp.simulation_application_summaries[0].simulation_software_suite.version #=> String
2986
3033
  # resp.next_token #=> String
2987
3034
  #
@@ -3118,6 +3165,7 @@ module Aws::RoboMaker
3118
3165
  # resp.simulation_job_summaries[0].robot_application_names[0] #=> String
3119
3166
  # resp.simulation_job_summaries[0].data_source_names #=> Array
3120
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"
3121
3169
  # resp.next_token #=> String
3122
3170
  #
3123
3171
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobs AWS API Documentation
@@ -3514,8 +3562,8 @@ module Aws::RoboMaker
3514
3562
  # application: "Arn", # required
3515
3563
  # application_version: "Version",
3516
3564
  # launch_config: { # required
3517
- # package_name: "Command", # required
3518
- # launch_file: "Command", # required
3565
+ # package_name: "Command",
3566
+ # launch_file: "Command",
3519
3567
  # environment_variables: {
3520
3568
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
3521
3569
  # },
@@ -3529,6 +3577,7 @@ module Aws::RoboMaker
3529
3577
  # ],
3530
3578
  # },
3531
3579
  # stream_ui: false,
3580
+ # command: ["NonEmptyString"],
3532
3581
  # },
3533
3582
  # upload_configurations: [
3534
3583
  # {
@@ -3555,8 +3604,8 @@ module Aws::RoboMaker
3555
3604
  # application: "Arn", # required
3556
3605
  # application_version: "Version",
3557
3606
  # launch_config: { # required
3558
- # package_name: "Command", # required
3559
- # launch_file: "Command", # required
3607
+ # package_name: "Command",
3608
+ # launch_file: "Command",
3560
3609
  # environment_variables: {
3561
3610
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
3562
3611
  # },
@@ -3570,6 +3619,7 @@ module Aws::RoboMaker
3570
3619
  # ],
3571
3620
  # },
3572
3621
  # stream_ui: false,
3622
+ # command: ["NonEmptyString"],
3573
3623
  # },
3574
3624
  # upload_configurations: [
3575
3625
  # {
@@ -3600,7 +3650,9 @@ module Aws::RoboMaker
3600
3650
  # {
3601
3651
  # name: "Name", # required
3602
3652
  # s3_bucket: "S3Bucket", # required
3603
- # s3_keys: ["S3Key"], # required
3653
+ # s3_keys: ["S3KeyOrPrefix"], # required
3654
+ # type: "Prefix", # accepts Prefix, Archive, File
3655
+ # destination: "Path",
3604
3656
  # },
3605
3657
  # ],
3606
3658
  # vpc_config: {
@@ -3610,6 +3662,8 @@ module Aws::RoboMaker
3610
3662
  # },
3611
3663
  # compute: {
3612
3664
  # simulation_unit_limit: 1,
3665
+ # compute_type: "CPU", # accepts CPU, GPU_AND_CPU
3666
+ # gpu_unit_limit: 1,
3613
3667
  # },
3614
3668
  # tags: {
3615
3669
  # "TagKey" => "TagValue",
@@ -3651,6 +3705,8 @@ module Aws::RoboMaker
3651
3705
  # resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
3652
3706
  # resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
3653
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
3654
3710
  # resp.failed_requests[0].request.robot_applications[0].upload_configurations #=> Array
3655
3711
  # resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].name #=> String
3656
3712
  # resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].path #=> String
@@ -3675,6 +3731,8 @@ module Aws::RoboMaker
3675
3731
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
3676
3732
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
3677
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
3678
3736
  # resp.failed_requests[0].request.simulation_applications[0].upload_configurations #=> Array
3679
3737
  # resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].name #=> String
3680
3738
  # resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].path #=> String
@@ -3694,12 +3752,16 @@ module Aws::RoboMaker
3694
3752
  # resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
3695
3753
  # resp.failed_requests[0].request.data_sources[0].s3_keys #=> Array
3696
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
3697
3757
  # resp.failed_requests[0].request.vpc_config.subnets #=> Array
3698
3758
  # resp.failed_requests[0].request.vpc_config.subnets[0] #=> String
3699
3759
  # resp.failed_requests[0].request.vpc_config.security_groups #=> Array
3700
3760
  # resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
3701
3761
  # resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
3702
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
3703
3765
  # resp.failed_requests[0].request.tags #=> Hash
3704
3766
  # resp.failed_requests[0].request.tags["TagKey"] #=> String
3705
3767
  # resp.failed_requests[0].failure_reason #=> String
@@ -3725,6 +3787,8 @@ module Aws::RoboMaker
3725
3787
  # resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
3726
3788
  # resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
3727
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
3728
3792
  # resp.pending_requests[0].robot_applications[0].upload_configurations #=> Array
3729
3793
  # resp.pending_requests[0].robot_applications[0].upload_configurations[0].name #=> String
3730
3794
  # resp.pending_requests[0].robot_applications[0].upload_configurations[0].path #=> String
@@ -3749,6 +3813,8 @@ module Aws::RoboMaker
3749
3813
  # resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
3750
3814
  # resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
3751
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
3752
3818
  # resp.pending_requests[0].simulation_applications[0].upload_configurations #=> Array
3753
3819
  # resp.pending_requests[0].simulation_applications[0].upload_configurations[0].name #=> String
3754
3820
  # resp.pending_requests[0].simulation_applications[0].upload_configurations[0].path #=> String
@@ -3768,12 +3834,16 @@ module Aws::RoboMaker
3768
3834
  # resp.pending_requests[0].data_sources[0].s3_bucket #=> String
3769
3835
  # resp.pending_requests[0].data_sources[0].s3_keys #=> Array
3770
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
3771
3839
  # resp.pending_requests[0].vpc_config.subnets #=> Array
3772
3840
  # resp.pending_requests[0].vpc_config.subnets[0] #=> String
3773
3841
  # resp.pending_requests[0].vpc_config.security_groups #=> Array
3774
3842
  # resp.pending_requests[0].vpc_config.security_groups[0] #=> String
3775
3843
  # resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
3776
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
3777
3847
  # resp.pending_requests[0].tags #=> Hash
3778
3848
  # resp.pending_requests[0].tags["TagKey"] #=> String
3779
3849
  # resp.created_requests #=> Array
@@ -3787,6 +3857,7 @@ module Aws::RoboMaker
3787
3857
  # resp.created_requests[0].robot_application_names[0] #=> String
3788
3858
  # resp.created_requests[0].data_source_names #=> Array
3789
3859
  # resp.created_requests[0].data_source_names[0] #=> String
3860
+ # resp.created_requests[0].compute_type #=> String, one of "CPU", "GPU_AND_CPU"
3790
3861
  # resp.tags #=> Hash
3791
3862
  # resp.tags["TagKey"] #=> String
3792
3863
  #
@@ -3981,7 +4052,7 @@ module Aws::RoboMaker
3981
4052
  # },
3982
4053
  # ],
3983
4054
  # robot_software_suite: { # required
3984
- # name: "ROS", # accepts ROS, ROS2
4055
+ # name: "ROS", # accepts ROS, ROS2, General
3985
4056
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
3986
4057
  # },
3987
4058
  # current_revision_id: "RevisionId",
@@ -4000,7 +4071,7 @@ module Aws::RoboMaker
4000
4071
  # resp.sources[0].s3_key #=> String
4001
4072
  # resp.sources[0].etag #=> String
4002
4073
  # resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
4003
- # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
4074
+ # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
4004
4075
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
4005
4076
  # resp.last_updated_at #=> Time
4006
4077
  # resp.revision_id #=> String
@@ -4064,11 +4135,11 @@ module Aws::RoboMaker
4064
4135
  # },
4065
4136
  # ],
4066
4137
  # simulation_software_suite: { # required
4067
- # name: "Gazebo", # accepts Gazebo, RosbagPlay
4138
+ # name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
4068
4139
  # version: "SimulationSoftwareSuiteVersionType",
4069
4140
  # },
4070
4141
  # robot_software_suite: { # required
4071
- # name: "ROS", # accepts ROS, ROS2
4142
+ # name: "ROS", # accepts ROS, ROS2, General
4072
4143
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
4073
4144
  # },
4074
4145
  # rendering_engine: {
@@ -4091,9 +4162,9 @@ module Aws::RoboMaker
4091
4162
  # resp.sources[0].s3_key #=> String
4092
4163
  # resp.sources[0].etag #=> String
4093
4164
  # resp.sources[0].architecture #=> String, one of "X86_64", "ARM64", "ARMHF"
4094
- # resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay"
4165
+ # resp.simulation_software_suite.name #=> String, one of "Gazebo", "RosbagPlay", "SimulationRuntime"
4095
4166
  # resp.simulation_software_suite.version #=> String
4096
- # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2"
4167
+ # resp.robot_software_suite.name #=> String, one of "ROS", "ROS2", "General"
4097
4168
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
4098
4169
  # resp.rendering_engine.name #=> String, one of "OGRE"
4099
4170
  # resp.rendering_engine.version #=> String
@@ -4172,7 +4243,7 @@ module Aws::RoboMaker
4172
4243
  params: params,
4173
4244
  config: config)
4174
4245
  context[:gem_name] = 'aws-sdk-robomaker'
4175
- context[:gem_version] = '1.42.0'
4246
+ context[:gem_version] = '1.43.0'
4176
4247
  Seahorse::Client::Request.new(handlers, context)
4177
4248
  end
4178
4249
 
@@ -36,8 +36,10 @@ module Aws::RoboMaker
36
36
  CancelWorldGenerationJobResponse = Shapes::StructureShape.new(name: 'CancelWorldGenerationJobResponse')
37
37
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
38
38
  Command = Shapes::StringShape.new(name: 'Command')
39
+ CommandList = Shapes::ListShape.new(name: 'CommandList')
39
40
  Compute = Shapes::StructureShape.new(name: 'Compute')
40
41
  ComputeResponse = Shapes::StructureShape.new(name: 'ComputeResponse')
42
+ ComputeType = Shapes::StringShape.new(name: 'ComputeType')
41
43
  ConcurrentDeploymentException = Shapes::StructureShape.new(name: 'ConcurrentDeploymentException')
42
44
  CreateDeploymentJobRequest = Shapes::StructureShape.new(name: 'CreateDeploymentJobRequest')
43
45
  CreateDeploymentJobResponse = Shapes::StructureShape.new(name: 'CreateDeploymentJobResponse')
@@ -67,6 +69,7 @@ module Aws::RoboMaker
67
69
  DataSourceConfig = Shapes::StructureShape.new(name: 'DataSourceConfig')
68
70
  DataSourceConfigs = Shapes::ListShape.new(name: 'DataSourceConfigs')
69
71
  DataSourceNames = Shapes::ListShape.new(name: 'DataSourceNames')
72
+ DataSourceType = Shapes::StringShape.new(name: 'DataSourceType')
70
73
  DataSources = Shapes::ListShape.new(name: 'DataSources')
71
74
  DeleteFleetRequest = Shapes::StructureShape.new(name: 'DeleteFleetRequest')
72
75
  DeleteFleetResponse = Shapes::StructureShape.new(name: 'DeleteFleetResponse')
@@ -129,6 +132,7 @@ module Aws::RoboMaker
129
132
  Fleet = Shapes::StructureShape.new(name: 'Fleet')
130
133
  Fleets = Shapes::ListShape.new(name: 'Fleets')
131
134
  FloorplanCount = Shapes::IntegerShape.new(name: 'FloorplanCount')
135
+ GPUUnit = Shapes::IntegerShape.new(name: 'GPUUnit')
132
136
  GenericInteger = Shapes::IntegerShape.new(name: 'GenericInteger')
133
137
  GenericString = Shapes::StringShape.new(name: 'GenericString')
134
138
  GetWorldTemplateBodyRequest = Shapes::StructureShape.new(name: 'GetWorldTemplateBodyRequest')
@@ -217,9 +221,10 @@ module Aws::RoboMaker
217
221
  S3Etag = Shapes::StringShape.new(name: 'S3Etag')
218
222
  S3Etags = Shapes::ListShape.new(name: 'S3Etags')
219
223
  S3Key = Shapes::StringShape.new(name: 'S3Key')
224
+ S3KeyOrPrefix = Shapes::StringShape.new(name: 'S3KeyOrPrefix')
220
225
  S3KeyOutput = Shapes::StructureShape.new(name: 'S3KeyOutput')
221
226
  S3KeyOutputs = Shapes::ListShape.new(name: 'S3KeyOutputs')
222
- S3Keys = Shapes::ListShape.new(name: 'S3Keys')
227
+ S3KeysOrPrefixes = Shapes::ListShape.new(name: 'S3KeysOrPrefixes')
223
228
  S3Object = Shapes::StructureShape.new(name: 'S3Object')
224
229
  SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
225
230
  ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
@@ -343,10 +348,16 @@ module Aws::RoboMaker
343
348
 
344
349
  CancelWorldGenerationJobResponse.struct_class = Types::CancelWorldGenerationJobResponse
345
350
 
351
+ CommandList.member = Shapes::ShapeRef.new(shape: NonEmptyString)
352
+
346
353
  Compute.add_member(:simulation_unit_limit, Shapes::ShapeRef.new(shape: SimulationUnit, location_name: "simulationUnitLimit"))
354
+ Compute.add_member(:compute_type, Shapes::ShapeRef.new(shape: ComputeType, location_name: "computeType"))
355
+ Compute.add_member(:gpu_unit_limit, Shapes::ShapeRef.new(shape: GPUUnit, location_name: "gpuUnitLimit"))
347
356
  Compute.struct_class = Types::Compute
348
357
 
349
358
  ComputeResponse.add_member(:simulation_unit_limit, Shapes::ShapeRef.new(shape: SimulationUnit, location_name: "simulationUnitLimit"))
359
+ ComputeResponse.add_member(:compute_type, Shapes::ShapeRef.new(shape: ComputeType, location_name: "computeType"))
360
+ ComputeResponse.add_member(:gpu_unit_limit, Shapes::ShapeRef.new(shape: GPUUnit, location_name: "gpuUnitLimit"))
350
361
  ComputeResponse.struct_class = Types::ComputeResponse
351
362
 
352
363
  ConcurrentDeploymentException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
@@ -556,11 +567,15 @@ module Aws::RoboMaker
556
567
  DataSource.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
557
568
  DataSource.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, location_name: "s3Bucket"))
558
569
  DataSource.add_member(:s3_keys, Shapes::ShapeRef.new(shape: S3KeyOutputs, location_name: "s3Keys"))
570
+ DataSource.add_member(:type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "type"))
571
+ DataSource.add_member(:destination, Shapes::ShapeRef.new(shape: Path, location_name: "destination"))
559
572
  DataSource.struct_class = Types::DataSource
560
573
 
561
574
  DataSourceConfig.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
562
575
  DataSourceConfig.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "s3Bucket"))
563
- DataSourceConfig.add_member(:s3_keys, Shapes::ShapeRef.new(shape: S3Keys, required: true, location_name: "s3Keys"))
576
+ DataSourceConfig.add_member(:s3_keys, Shapes::ShapeRef.new(shape: S3KeysOrPrefixes, required: true, location_name: "s3Keys"))
577
+ DataSourceConfig.add_member(:type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "type"))
578
+ DataSourceConfig.add_member(:destination, Shapes::ShapeRef.new(shape: Path, location_name: "destination"))
564
579
  DataSourceConfig.struct_class = Types::DataSourceConfig
565
580
 
566
581
  DataSourceConfigs.member = Shapes::ShapeRef.new(shape: DataSourceConfig)
@@ -867,11 +882,12 @@ module Aws::RoboMaker
867
882
  InvalidParameterException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
868
883
  InvalidParameterException.struct_class = Types::InvalidParameterException
869
884
 
870
- LaunchConfig.add_member(:package_name, Shapes::ShapeRef.new(shape: Command, required: true, location_name: "packageName"))
871
- LaunchConfig.add_member(:launch_file, Shapes::ShapeRef.new(shape: Command, required: true, location_name: "launchFile"))
885
+ LaunchConfig.add_member(:package_name, Shapes::ShapeRef.new(shape: Command, location_name: "packageName"))
886
+ LaunchConfig.add_member(:launch_file, Shapes::ShapeRef.new(shape: Command, location_name: "launchFile"))
872
887
  LaunchConfig.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariableMap, location_name: "environmentVariables"))
873
888
  LaunchConfig.add_member(:port_forwarding_config, Shapes::ShapeRef.new(shape: PortForwardingConfig, location_name: "portForwardingConfig"))
874
889
  LaunchConfig.add_member(:stream_ui, Shapes::ShapeRef.new(shape: Boolean, location_name: "streamUI"))
890
+ LaunchConfig.add_member(:command, Shapes::ShapeRef.new(shape: CommandList, location_name: "command"))
875
891
  LaunchConfig.struct_class = Types::LaunchConfig
876
892
 
877
893
  LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
@@ -1086,13 +1102,13 @@ module Aws::RoboMaker
1086
1102
 
1087
1103
  S3Etags.member = Shapes::ShapeRef.new(shape: S3Etag)
1088
1104
 
1089
- S3KeyOutput.add_member(:s3_key, Shapes::ShapeRef.new(shape: S3Key, location_name: "s3Key"))
1105
+ S3KeyOutput.add_member(:s3_key, Shapes::ShapeRef.new(shape: S3KeyOrPrefix, location_name: "s3Key"))
1090
1106
  S3KeyOutput.add_member(:etag, Shapes::ShapeRef.new(shape: S3Etag, location_name: "etag"))
1091
1107
  S3KeyOutput.struct_class = Types::S3KeyOutput
1092
1108
 
1093
1109
  S3KeyOutputs.member = Shapes::ShapeRef.new(shape: S3KeyOutput)
1094
1110
 
1095
- S3Keys.member = Shapes::ShapeRef.new(shape: S3Key)
1111
+ S3KeysOrPrefixes.member = Shapes::ShapeRef.new(shape: S3KeyOrPrefix)
1096
1112
 
1097
1113
  S3Object.add_member(:bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "bucket"))
1098
1114
  S3Object.add_member(:key, Shapes::ShapeRef.new(shape: S3Key, required: true, location_name: "key"))
@@ -1185,6 +1201,7 @@ module Aws::RoboMaker
1185
1201
  SimulationJobSummary.add_member(:simulation_application_names, Shapes::ShapeRef.new(shape: SimulationApplicationNames, location_name: "simulationApplicationNames"))
1186
1202
  SimulationJobSummary.add_member(:robot_application_names, Shapes::ShapeRef.new(shape: RobotApplicationNames, location_name: "robotApplicationNames"))
1187
1203
  SimulationJobSummary.add_member(:data_source_names, Shapes::ShapeRef.new(shape: DataSourceNames, location_name: "dataSourceNames"))
1204
+ SimulationJobSummary.add_member(:compute_type, Shapes::ShapeRef.new(shape: ComputeType, location_name: "computeType"))
1188
1205
  SimulationJobSummary.struct_class = Types::SimulationJobSummary
1189
1206
 
1190
1207
  SimulationJobs.member = Shapes::ShapeRef.new(shape: SimulationJob)
@@ -241,20 +241,33 @@ module Aws::RoboMaker
241
241
  #
242
242
  # {
243
243
  # simulation_unit_limit: 1,
244
+ # compute_type: "CPU", # accepts CPU, GPU_AND_CPU
245
+ # gpu_unit_limit: 1,
244
246
  # }
245
247
  #
246
248
  # @!attribute [rw] simulation_unit_limit
247
249
  # The simulation unit limit. Your simulation is allocated CPU and
248
250
  # memory proportional to the supplied simulation unit limit. A
249
251
  # simulation unit is 1 vcpu and 2GB of memory. You are only billed for
250
- # the SU utilization you consume up to the maximim value provided. The
252
+ # the SU utilization you consume up to the maximum value provided. The
251
253
  # default is 15.
252
254
  # @return [Integer]
253
255
  #
256
+ # @!attribute [rw] compute_type
257
+ # Compute type information for the simulation job.
258
+ # @return [String]
259
+ #
260
+ # @!attribute [rw] gpu_unit_limit
261
+ # Compute GPU unit limit for the simulation job. It is the same as the
262
+ # number of GPUs allocated to the SimulationJob.
263
+ # @return [Integer]
264
+ #
254
265
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/Compute AWS API Documentation
255
266
  #
256
267
  class Compute < Struct.new(
257
- :simulation_unit_limit)
268
+ :simulation_unit_limit,
269
+ :compute_type,
270
+ :gpu_unit_limit)
258
271
  SENSITIVE = []
259
272
  include Aws::Structure
260
273
  end
@@ -265,14 +278,25 @@ module Aws::RoboMaker
265
278
  # The simulation unit limit. Your simulation is allocated CPU and
266
279
  # memory proportional to the supplied simulation unit limit. A
267
280
  # simulation unit is 1 vcpu and 2GB of memory. You are only billed for
268
- # the SU utilization you consume up to the maximim value provided. The
281
+ # the SU utilization you consume up to the maximum value provided. The
269
282
  # default is 15.
270
283
  # @return [Integer]
271
284
  #
285
+ # @!attribute [rw] compute_type
286
+ # Compute type response information for the simulation job.
287
+ # @return [String]
288
+ #
289
+ # @!attribute [rw] gpu_unit_limit
290
+ # Compute GPU unit limit for the simulation job. It is the same as the
291
+ # number of GPUs allocated to the SimulationJob.
292
+ # @return [Integer]
293
+ #
272
294
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ComputeResponse AWS API Documentation
273
295
  #
274
296
  class ComputeResponse < Struct.new(
275
- :simulation_unit_limit)
297
+ :simulation_unit_limit,
298
+ :compute_type,
299
+ :gpu_unit_limit)
276
300
  SENSITIVE = []
277
301
  include Aws::Structure
278
302
  end
@@ -547,7 +571,7 @@ module Aws::RoboMaker
547
571
  # },
548
572
  # ],
549
573
  # robot_software_suite: { # required
550
- # name: "ROS", # accepts ROS, ROS2
574
+ # name: "ROS", # accepts ROS, ROS2, General
551
575
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
552
576
  # },
553
577
  # tags: {
@@ -831,11 +855,11 @@ module Aws::RoboMaker
831
855
  # },
832
856
  # ],
833
857
  # simulation_software_suite: { # required
834
- # name: "Gazebo", # accepts Gazebo, RosbagPlay
858
+ # name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
835
859
  # version: "SimulationSoftwareSuiteVersionType",
836
860
  # },
837
861
  # robot_software_suite: { # required
838
- # name: "ROS", # accepts ROS, ROS2
862
+ # name: "ROS", # accepts ROS, ROS2, General
839
863
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
840
864
  # },
841
865
  # rendering_engine: {
@@ -1079,8 +1103,8 @@ module Aws::RoboMaker
1079
1103
  # application: "Arn", # required
1080
1104
  # application_version: "Version",
1081
1105
  # launch_config: { # required
1082
- # package_name: "Command", # required
1083
- # launch_file: "Command", # required
1106
+ # package_name: "Command",
1107
+ # launch_file: "Command",
1084
1108
  # environment_variables: {
1085
1109
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
1086
1110
  # },
@@ -1094,6 +1118,7 @@ module Aws::RoboMaker
1094
1118
  # ],
1095
1119
  # },
1096
1120
  # stream_ui: false,
1121
+ # command: ["NonEmptyString"],
1097
1122
  # },
1098
1123
  # upload_configurations: [
1099
1124
  # {
@@ -1120,8 +1145,8 @@ module Aws::RoboMaker
1120
1145
  # application: "Arn", # required
1121
1146
  # application_version: "Version",
1122
1147
  # launch_config: { # required
1123
- # package_name: "Command", # required
1124
- # launch_file: "Command", # required
1148
+ # package_name: "Command",
1149
+ # launch_file: "Command",
1125
1150
  # environment_variables: {
1126
1151
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
1127
1152
  # },
@@ -1135,6 +1160,7 @@ module Aws::RoboMaker
1135
1160
  # ],
1136
1161
  # },
1137
1162
  # stream_ui: false,
1163
+ # command: ["NonEmptyString"],
1138
1164
  # },
1139
1165
  # upload_configurations: [
1140
1166
  # {
@@ -1165,7 +1191,9 @@ module Aws::RoboMaker
1165
1191
  # {
1166
1192
  # name: "Name", # required
1167
1193
  # s3_bucket: "S3Bucket", # required
1168
- # s3_keys: ["S3Key"], # required
1194
+ # s3_keys: ["S3KeyOrPrefix"], # required
1195
+ # type: "Prefix", # accepts Prefix, Archive, File
1196
+ # destination: "Path",
1169
1197
  # },
1170
1198
  # ],
1171
1199
  # tags: {
@@ -1178,6 +1206,8 @@ module Aws::RoboMaker
1178
1206
  # },
1179
1207
  # compute: {
1180
1208
  # simulation_unit_limit: 1,
1209
+ # compute_type: "CPU", # accepts CPU, GPU_AND_CPU
1210
+ # gpu_unit_limit: 1,
1181
1211
  # },
1182
1212
  # }
1183
1213
  #
@@ -1867,12 +1897,39 @@ module Aws::RoboMaker
1867
1897
  # The list of S3 keys identifying the data source files.
1868
1898
  # @return [Array<Types::S3KeyOutput>]
1869
1899
  #
1900
+ # @!attribute [rw] type
1901
+ # The data type for the data source that you're using for your
1902
+ # container image or simulation job. You can use this field to specify
1903
+ # whether your data source is an Archive, an Amazon S3 prefix, or a
1904
+ # file.
1905
+ #
1906
+ # If you don't specify a field, the default value is `File`.
1907
+ # @return [String]
1908
+ #
1909
+ # @!attribute [rw] destination
1910
+ # The location where your files are mounted in the container image.
1911
+ #
1912
+ # If you've specified the `type` of the data source as an `Archive`,
1913
+ # you must provide an Amazon S3 object key to your archive. The object
1914
+ # key must point to either a `.zip` or `.tar.gz` file.
1915
+ #
1916
+ # If you've specified the `type` of the data source as a `Prefix`,
1917
+ # you provide the Amazon S3 prefix that points to the files that you
1918
+ # are using for your data source.
1919
+ #
1920
+ # If you've specified the `type` of the data source as a `File`, you
1921
+ # provide the Amazon S3 path to the file that you're using as your
1922
+ # data source.
1923
+ # @return [String]
1924
+ #
1870
1925
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSource AWS API Documentation
1871
1926
  #
1872
1927
  class DataSource < Struct.new(
1873
1928
  :name,
1874
1929
  :s3_bucket,
1875
- :s3_keys)
1930
+ :s3_keys,
1931
+ :type,
1932
+ :destination)
1876
1933
  SENSITIVE = []
1877
1934
  include Aws::Structure
1878
1935
  end
@@ -1885,7 +1942,9 @@ module Aws::RoboMaker
1885
1942
  # {
1886
1943
  # name: "Name", # required
1887
1944
  # s3_bucket: "S3Bucket", # required
1888
- # s3_keys: ["S3Key"], # required
1945
+ # s3_keys: ["S3KeyOrPrefix"], # required
1946
+ # type: "Prefix", # accepts Prefix, Archive, File
1947
+ # destination: "Path",
1889
1948
  # }
1890
1949
  #
1891
1950
  # @!attribute [rw] name
@@ -1900,12 +1959,39 @@ module Aws::RoboMaker
1900
1959
  # The list of S3 keys identifying the data source files.
1901
1960
  # @return [Array<String>]
1902
1961
  #
1962
+ # @!attribute [rw] type
1963
+ # The data type for the data source that you're using for your
1964
+ # container image or simulation job. You can use this field to specify
1965
+ # whether your data source is an Archive, an Amazon S3 prefix, or a
1966
+ # file.
1967
+ #
1968
+ # If you don't specify a field, the default value is `File`.
1969
+ # @return [String]
1970
+ #
1971
+ # @!attribute [rw] destination
1972
+ # The location where your files are mounted in the container image.
1973
+ #
1974
+ # If you've specified the `type` of the data source as an `Archive`,
1975
+ # you must provide an Amazon S3 object key to your archive. The object
1976
+ # key must point to either a `.zip` or `.tar.gz` file.
1977
+ #
1978
+ # If you've specified the `type` of the data source as a `Prefix`,
1979
+ # you provide the Amazon S3 prefix that points to the files that you
1980
+ # are using for your data source.
1981
+ #
1982
+ # If you've specified the `type` of the data source as a `File`, you
1983
+ # provide the Amazon S3 path to the file that you're using as your
1984
+ # data source.
1985
+ # @return [String]
1986
+ #
1903
1987
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSourceConfig AWS API Documentation
1904
1988
  #
1905
1989
  class DataSourceConfig < Struct.new(
1906
1990
  :name,
1907
1991
  :s3_bucket,
1908
- :s3_keys)
1992
+ :s3_keys,
1993
+ :type,
1994
+ :destination)
1909
1995
  SENSITIVE = []
1910
1996
  include Aws::Structure
1911
1997
  end
@@ -3655,8 +3741,8 @@ module Aws::RoboMaker
3655
3741
  # data as a hash:
3656
3742
  #
3657
3743
  # {
3658
- # package_name: "Command", # required
3659
- # launch_file: "Command", # required
3744
+ # package_name: "Command",
3745
+ # launch_file: "Command",
3660
3746
  # environment_variables: {
3661
3747
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
3662
3748
  # },
@@ -3670,6 +3756,7 @@ module Aws::RoboMaker
3670
3756
  # ],
3671
3757
  # },
3672
3758
  # stream_ui: false,
3759
+ # command: ["NonEmptyString"],
3673
3760
  # }
3674
3761
  #
3675
3762
  # @!attribute [rw] package_name
@@ -3696,6 +3783,16 @@ module Aws::RoboMaker
3696
3783
  # component. It must have a graphical user interface.
3697
3784
  # @return [Boolean]
3698
3785
  #
3786
+ # @!attribute [rw] command
3787
+ # If you've specified `General` as the value for your
3788
+ # `RobotSoftwareSuite`, you can use this field to specify a list of
3789
+ # commands for your container image.
3790
+ #
3791
+ # If you've specified `SimulationRuntime` as the value for your
3792
+ # `SimulationSoftwareSuite`, you can use this field to specify a list
3793
+ # of commands for your container image.
3794
+ # @return [Array<String>]
3795
+ #
3699
3796
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/LaunchConfig AWS API Documentation
3700
3797
  #
3701
3798
  class LaunchConfig < Struct.new(
@@ -3703,7 +3800,8 @@ module Aws::RoboMaker
3703
3800
  :launch_file,
3704
3801
  :environment_variables,
3705
3802
  :port_forwarding_config,
3706
- :stream_ui)
3803
+ :stream_ui,
3804
+ :command)
3707
3805
  SENSITIVE = []
3708
3806
  include Aws::Structure
3709
3807
  end
@@ -4936,8 +5034,8 @@ module Aws::RoboMaker
4936
5034
  # application: "Arn", # required
4937
5035
  # application_version: "Version",
4938
5036
  # launch_config: { # required
4939
- # package_name: "Command", # required
4940
- # launch_file: "Command", # required
5037
+ # package_name: "Command",
5038
+ # launch_file: "Command",
4941
5039
  # environment_variables: {
4942
5040
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
4943
5041
  # },
@@ -4951,6 +5049,7 @@ module Aws::RoboMaker
4951
5049
  # ],
4952
5050
  # },
4953
5051
  # stream_ui: false,
5052
+ # command: ["NonEmptyString"],
4954
5053
  # },
4955
5054
  # upload_configurations: [
4956
5055
  # {
@@ -5107,7 +5206,7 @@ module Aws::RoboMaker
5107
5206
  # data as a hash:
5108
5207
  #
5109
5208
  # {
5110
- # name: "ROS", # accepts ROS, ROS2
5209
+ # name: "ROS", # accepts ROS, ROS2, General
5111
5210
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
5112
5211
  # }
5113
5212
  #
@@ -5202,8 +5301,8 @@ module Aws::RoboMaker
5202
5301
  # application: "Arn", # required
5203
5302
  # application_version: "Version",
5204
5303
  # launch_config: { # required
5205
- # package_name: "Command", # required
5206
- # launch_file: "Command", # required
5304
+ # package_name: "Command",
5305
+ # launch_file: "Command",
5207
5306
  # environment_variables: {
5208
5307
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
5209
5308
  # },
@@ -5217,6 +5316,7 @@ module Aws::RoboMaker
5217
5316
  # ],
5218
5317
  # },
5219
5318
  # stream_ui: false,
5319
+ # command: ["NonEmptyString"],
5220
5320
  # },
5221
5321
  # upload_configurations: [
5222
5322
  # {
@@ -5583,8 +5683,8 @@ module Aws::RoboMaker
5583
5683
  # application: "Arn", # required
5584
5684
  # application_version: "Version",
5585
5685
  # launch_config: { # required
5586
- # package_name: "Command", # required
5587
- # launch_file: "Command", # required
5686
+ # package_name: "Command",
5687
+ # launch_file: "Command",
5588
5688
  # environment_variables: {
5589
5689
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
5590
5690
  # },
@@ -5598,6 +5698,7 @@ module Aws::RoboMaker
5598
5698
  # ],
5599
5699
  # },
5600
5700
  # stream_ui: false,
5701
+ # command: ["NonEmptyString"],
5601
5702
  # },
5602
5703
  # upload_configurations: [
5603
5704
  # {
@@ -5624,8 +5725,8 @@ module Aws::RoboMaker
5624
5725
  # application: "Arn", # required
5625
5726
  # application_version: "Version",
5626
5727
  # launch_config: { # required
5627
- # package_name: "Command", # required
5628
- # launch_file: "Command", # required
5728
+ # package_name: "Command",
5729
+ # launch_file: "Command",
5629
5730
  # environment_variables: {
5630
5731
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
5631
5732
  # },
@@ -5639,6 +5740,7 @@ module Aws::RoboMaker
5639
5740
  # ],
5640
5741
  # },
5641
5742
  # stream_ui: false,
5743
+ # command: ["NonEmptyString"],
5642
5744
  # },
5643
5745
  # upload_configurations: [
5644
5746
  # {
@@ -5669,7 +5771,9 @@ module Aws::RoboMaker
5669
5771
  # {
5670
5772
  # name: "Name", # required
5671
5773
  # s3_bucket: "S3Bucket", # required
5672
- # s3_keys: ["S3Key"], # required
5774
+ # s3_keys: ["S3KeyOrPrefix"], # required
5775
+ # type: "Prefix", # accepts Prefix, Archive, File
5776
+ # destination: "Path",
5673
5777
  # },
5674
5778
  # ],
5675
5779
  # vpc_config: {
@@ -5679,6 +5783,8 @@ module Aws::RoboMaker
5679
5783
  # },
5680
5784
  # compute: {
5681
5785
  # simulation_unit_limit: 1,
5786
+ # compute_type: "CPU", # accepts CPU, GPU_AND_CPU
5787
+ # gpu_unit_limit: 1,
5682
5788
  # },
5683
5789
  # tags: {
5684
5790
  # "TagKey" => "TagValue",
@@ -5809,6 +5915,10 @@ module Aws::RoboMaker
5809
5915
  # The names of the data sources.
5810
5916
  # @return [Array<String>]
5811
5917
  #
5918
+ # @!attribute [rw] compute_type
5919
+ # The compute type for the simulation job summary.
5920
+ # @return [String]
5921
+ #
5812
5922
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationJobSummary AWS API Documentation
5813
5923
  #
5814
5924
  class SimulationJobSummary < Struct.new(
@@ -5818,7 +5928,8 @@ module Aws::RoboMaker
5818
5928
  :status,
5819
5929
  :simulation_application_names,
5820
5930
  :robot_application_names,
5821
- :data_source_names)
5931
+ :data_source_names,
5932
+ :compute_type)
5822
5933
  SENSITIVE = []
5823
5934
  include Aws::Structure
5824
5935
  end
@@ -5829,7 +5940,7 @@ module Aws::RoboMaker
5829
5940
  # data as a hash:
5830
5941
  #
5831
5942
  # {
5832
- # name: "Gazebo", # accepts Gazebo, RosbagPlay
5943
+ # name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
5833
5944
  # version: "SimulationSoftwareSuiteVersionType",
5834
5945
  # }
5835
5946
  #
@@ -5939,8 +6050,8 @@ module Aws::RoboMaker
5939
6050
  # application: "Arn", # required
5940
6051
  # application_version: "Version",
5941
6052
  # launch_config: { # required
5942
- # package_name: "Command", # required
5943
- # launch_file: "Command", # required
6053
+ # package_name: "Command",
6054
+ # launch_file: "Command",
5944
6055
  # environment_variables: {
5945
6056
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
5946
6057
  # },
@@ -5954,6 +6065,7 @@ module Aws::RoboMaker
5954
6065
  # ],
5955
6066
  # },
5956
6067
  # stream_ui: false,
6068
+ # command: ["NonEmptyString"],
5957
6069
  # },
5958
6070
  # upload_configurations: [
5959
6071
  # {
@@ -5980,8 +6092,8 @@ module Aws::RoboMaker
5980
6092
  # application: "Arn", # required
5981
6093
  # application_version: "Version",
5982
6094
  # launch_config: { # required
5983
- # package_name: "Command", # required
5984
- # launch_file: "Command", # required
6095
+ # package_name: "Command",
6096
+ # launch_file: "Command",
5985
6097
  # environment_variables: {
5986
6098
  # "EnvironmentVariableKey" => "EnvironmentVariableValue",
5987
6099
  # },
@@ -5995,6 +6107,7 @@ module Aws::RoboMaker
5995
6107
  # ],
5996
6108
  # },
5997
6109
  # stream_ui: false,
6110
+ # command: ["NonEmptyString"],
5998
6111
  # },
5999
6112
  # upload_configurations: [
6000
6113
  # {
@@ -6025,7 +6138,9 @@ module Aws::RoboMaker
6025
6138
  # {
6026
6139
  # name: "Name", # required
6027
6140
  # s3_bucket: "S3Bucket", # required
6028
- # s3_keys: ["S3Key"], # required
6141
+ # s3_keys: ["S3KeyOrPrefix"], # required
6142
+ # type: "Prefix", # accepts Prefix, Archive, File
6143
+ # destination: "Path",
6029
6144
  # },
6030
6145
  # ],
6031
6146
  # vpc_config: {
@@ -6035,6 +6150,8 @@ module Aws::RoboMaker
6035
6150
  # },
6036
6151
  # compute: {
6037
6152
  # simulation_unit_limit: 1,
6153
+ # compute_type: "CPU", # accepts CPU, GPU_AND_CPU
6154
+ # gpu_unit_limit: 1,
6038
6155
  # },
6039
6156
  # tags: {
6040
6157
  # "TagKey" => "TagValue",
@@ -6540,7 +6657,7 @@ module Aws::RoboMaker
6540
6657
  # },
6541
6658
  # ],
6542
6659
  # robot_software_suite: { # required
6543
- # name: "ROS", # accepts ROS, ROS2
6660
+ # name: "ROS", # accepts ROS, ROS2, General
6544
6661
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
6545
6662
  # },
6546
6663
  # current_revision_id: "RevisionId",
@@ -6646,11 +6763,11 @@ module Aws::RoboMaker
6646
6763
  # },
6647
6764
  # ],
6648
6765
  # simulation_software_suite: { # required
6649
- # name: "Gazebo", # accepts Gazebo, RosbagPlay
6766
+ # name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
6650
6767
  # version: "SimulationSoftwareSuiteVersionType",
6651
6768
  # },
6652
6769
  # robot_software_suite: { # required
6653
- # name: "ROS", # accepts ROS, ROS2
6770
+ # name: "ROS", # accepts ROS, ROS2, General
6654
6771
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
6655
6772
  # },
6656
6773
  # rendering_engine: {
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-robomaker/customizations'
48
48
  # @!group service
49
49
  module Aws::RoboMaker
50
50
 
51
- GEM_VERSION = '1.42.0'
51
+ GEM_VERSION = '1.43.0'
52
52
 
53
53
  end
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.42.0
4
+ version: 1.43.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: 2021-09-16 00:00:00.000000000 Z
11
+ date: 2021-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core