aws-sdk-robomaker 1.26.0 → 1.27.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: c58a13821a1b9aad619a59ff02cee4e34af30a4557c33cfed590ddb87a25974f
4
- data.tar.gz: b35254a61a03d4f51b1b5393f39290161a104976f295c67f34e13e010a211bb8
3
+ metadata.gz: 94621d8bc7d8a6001eb4ff2ef2f22d04e45f881f001dec097fc485b889479f15
4
+ data.tar.gz: 87a4ebe23397156af37ac5cbce6124861ced4e32452b144da03dcbb7bc8aaff6
5
5
  SHA512:
6
- metadata.gz: e5eb7bd911ea8bb2e5408231498b2d34b9dc001d8c03e3d1b1b8a8fd8ab979ab4fbf87ad6d8525adcdbbea28fb745be80475e8613c232b6ff73f44dd0c24ad64
7
- data.tar.gz: 6a529a3728759fa0353b45d29c36cf2c3beb0ccbdf64662657f2d4f1b8cd0cc2cc6148dcc6dd4f8987c1383e86c3faf9ad77992cd5cadd4f0e3670e697aaed53
6
+ metadata.gz: 2f9a154158fef4c2292ee96547c3806c2c6b5f2586c31c68bb63510f68f1773e3d68142e841f60b94c3c89ee87d26fb39fc6d441431ef156022280e748e53a7c
7
+ data.tar.gz: c068883301a4bc75af8a37bef77e0eb52c6e13916799b5aa1f517004fa363540b949ba8536e236b96f7f51f49526c886f9ed583aa4df9cb5a491ed6fb3569e36
@@ -27,7 +27,7 @@ require_relative 'aws-sdk-robomaker/customizations'
27
27
  # structure.
28
28
  #
29
29
  # robo_maker = Aws::RoboMaker::Client.new
30
- # resp = robo_maker.batch_describe_simulation_job(params)
30
+ # resp = robo_maker.batch_delete_worlds(params)
31
31
  #
32
32
  # See {Client} for more information.
33
33
  #
@@ -47,6 +47,6 @@ require_relative 'aws-sdk-robomaker/customizations'
47
47
  # @service
48
48
  module Aws::RoboMaker
49
49
 
50
- GEM_VERSION = '1.26.0'
50
+ GEM_VERSION = '1.27.0'
51
51
 
52
52
  end
@@ -312,6 +312,36 @@ module Aws::RoboMaker
312
312
 
313
313
  # @!group API Operations
314
314
 
315
+ # Deletes one or more worlds in a batch operation.
316
+ #
317
+ # @option params [required, Array<String>] :worlds
318
+ # A list of Amazon Resource Names (arns) that correspond to worlds to
319
+ # delete.
320
+ #
321
+ # @return [Types::BatchDeleteWorldsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
322
+ #
323
+ # * {Types::BatchDeleteWorldsResponse#unprocessed_worlds #unprocessed_worlds} => Array&lt;String&gt;
324
+ #
325
+ # @example Request syntax with placeholder values
326
+ #
327
+ # resp = client.batch_delete_worlds({
328
+ # worlds: ["Arn"], # required
329
+ # })
330
+ #
331
+ # @example Response structure
332
+ #
333
+ # resp.unprocessed_worlds #=> Array
334
+ # resp.unprocessed_worlds[0] #=> String
335
+ #
336
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/BatchDeleteWorlds AWS API Documentation
337
+ #
338
+ # @overload batch_delete_worlds(params = {})
339
+ # @param [Hash] params ({})
340
+ def batch_delete_worlds(params = {}, options = {})
341
+ req = build_request(:batch_delete_worlds, params)
342
+ req.send_request(options)
343
+ end
344
+
315
345
  # Describes one or more simulation jobs.
316
346
  #
317
347
  # @option params [required, Array<String>] :jobs
@@ -370,6 +400,8 @@ module Aws::RoboMaker
370
400
  # resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
371
401
  # resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
372
402
  # resp.jobs[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
403
+ # resp.jobs[0].simulation_applications[0].world_configs #=> Array
404
+ # resp.jobs[0].simulation_applications[0].world_configs[0].world #=> String
373
405
  # resp.jobs[0].data_sources #=> Array
374
406
  # resp.jobs[0].data_sources[0].name #=> String
375
407
  # resp.jobs[0].data_sources[0].s3_bucket #=> String
@@ -468,6 +500,50 @@ module Aws::RoboMaker
468
500
  req.send_request(options)
469
501
  end
470
502
 
503
+ # Cancels the specified export job.
504
+ #
505
+ # @option params [required, String] :job
506
+ # The Amazon Resource Name (arn) of the world export job to cancel.
507
+ #
508
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
509
+ #
510
+ # @example Request syntax with placeholder values
511
+ #
512
+ # resp = client.cancel_world_export_job({
513
+ # job: "Arn", # required
514
+ # })
515
+ #
516
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldExportJob AWS API Documentation
517
+ #
518
+ # @overload cancel_world_export_job(params = {})
519
+ # @param [Hash] params ({})
520
+ def cancel_world_export_job(params = {}, options = {})
521
+ req = build_request(:cancel_world_export_job, params)
522
+ req.send_request(options)
523
+ end
524
+
525
+ # Cancels the specified world generator job.
526
+ #
527
+ # @option params [required, String] :job
528
+ # The Amazon Resource Name (arn) of the world generator job to cancel.
529
+ #
530
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
531
+ #
532
+ # @example Request syntax with placeholder values
533
+ #
534
+ # resp = client.cancel_world_generation_job({
535
+ # job: "Arn", # required
536
+ # })
537
+ #
538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldGenerationJob AWS API Documentation
539
+ #
540
+ # @overload cancel_world_generation_job(params = {})
541
+ # @param [Hash] params ({})
542
+ def cancel_world_generation_job(params = {}, options = {})
543
+ req = build_request(:cancel_world_generation_job, params)
544
+ req.send_request(options)
545
+ end
546
+
471
547
  # Deploys a specific version of a robot application to robots in a
472
548
  # fleet.
473
549
  #
@@ -1107,6 +1183,11 @@ module Aws::RoboMaker
1107
1183
  # },
1108
1184
  # stream_ui: false,
1109
1185
  # },
1186
+ # world_configs: [
1187
+ # {
1188
+ # world: "Arn",
1189
+ # },
1190
+ # ],
1110
1191
  # },
1111
1192
  # ],
1112
1193
  # data_sources: [
@@ -1168,6 +1249,8 @@ module Aws::RoboMaker
1168
1249
  # resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
1169
1250
  # resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
1170
1251
  # resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
1252
+ # resp.simulation_applications[0].world_configs #=> Array
1253
+ # resp.simulation_applications[0].world_configs[0].world #=> String
1171
1254
  # resp.data_sources #=> Array
1172
1255
  # resp.data_sources[0].name #=> String
1173
1256
  # resp.data_sources[0].s3_bucket #=> String
@@ -1193,6 +1276,205 @@ module Aws::RoboMaker
1193
1276
  req.send_request(options)
1194
1277
  end
1195
1278
 
1279
+ # Creates a world export job.
1280
+ #
1281
+ # @option params [String] :client_request_token
1282
+ # Unique, case-sensitive identifier that you provide to ensure the
1283
+ # idempotency of the request.
1284
+ #
1285
+ # **A suitable default value is auto-generated.** You should normally
1286
+ # not need to pass this option.**
1287
+ #
1288
+ # @option params [required, Array<String>] :worlds
1289
+ # A list of Amazon Resource Names (arns) that correspond to worlds to
1290
+ # export.
1291
+ #
1292
+ # @option params [required, Types::OutputLocation] :output_location
1293
+ # The output location.
1294
+ #
1295
+ # @option params [required, String] :iam_role
1296
+ # The IAM role that the world export process uses to access the Amazon
1297
+ # S3 bucket and put the export.
1298
+ #
1299
+ # @option params [Hash<String,String>] :tags
1300
+ # A map that contains tag keys and tag values that are attached to the
1301
+ # world export job.
1302
+ #
1303
+ # @return [Types::CreateWorldExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1304
+ #
1305
+ # * {Types::CreateWorldExportJobResponse#arn #arn} => String
1306
+ # * {Types::CreateWorldExportJobResponse#status #status} => String
1307
+ # * {Types::CreateWorldExportJobResponse#created_at #created_at} => Time
1308
+ # * {Types::CreateWorldExportJobResponse#failure_code #failure_code} => String
1309
+ # * {Types::CreateWorldExportJobResponse#client_request_token #client_request_token} => String
1310
+ # * {Types::CreateWorldExportJobResponse#output_location #output_location} => Types::OutputLocation
1311
+ # * {Types::CreateWorldExportJobResponse#iam_role #iam_role} => String
1312
+ # * {Types::CreateWorldExportJobResponse#tags #tags} => Hash&lt;String,String&gt;
1313
+ #
1314
+ # @example Request syntax with placeholder values
1315
+ #
1316
+ # resp = client.create_world_export_job({
1317
+ # client_request_token: "ClientRequestToken",
1318
+ # worlds: ["Arn"], # required
1319
+ # output_location: { # required
1320
+ # s3_bucket: "S3Bucket",
1321
+ # s3_prefix: "S3Key",
1322
+ # },
1323
+ # iam_role: "IamRole", # required
1324
+ # tags: {
1325
+ # "TagKey" => "TagValue",
1326
+ # },
1327
+ # })
1328
+ #
1329
+ # @example Response structure
1330
+ #
1331
+ # resp.arn #=> String
1332
+ # resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "Canceling", "Canceled"
1333
+ # resp.created_at #=> Time
1334
+ # resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AccessDenied"
1335
+ # resp.client_request_token #=> String
1336
+ # resp.output_location.s3_bucket #=> String
1337
+ # resp.output_location.s3_prefix #=> String
1338
+ # resp.iam_role #=> String
1339
+ # resp.tags #=> Hash
1340
+ # resp.tags["TagKey"] #=> String
1341
+ #
1342
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldExportJob AWS API Documentation
1343
+ #
1344
+ # @overload create_world_export_job(params = {})
1345
+ # @param [Hash] params ({})
1346
+ def create_world_export_job(params = {}, options = {})
1347
+ req = build_request(:create_world_export_job, params)
1348
+ req.send_request(options)
1349
+ end
1350
+
1351
+ # Creates worlds using the specified template.
1352
+ #
1353
+ # @option params [String] :client_request_token
1354
+ # Unique, case-sensitive identifier that you provide to ensure the
1355
+ # idempotency of the request.
1356
+ #
1357
+ # **A suitable default value is auto-generated.** You should normally
1358
+ # not need to pass this option.**
1359
+ #
1360
+ # @option params [required, String] :template
1361
+ # The Amazon Resource Name (arn) of the world template describing the
1362
+ # worlds you want to create.
1363
+ #
1364
+ # @option params [required, Types::WorldCount] :world_count
1365
+ # Information about the world count.
1366
+ #
1367
+ # @option params [Hash<String,String>] :tags
1368
+ # A map that contains tag keys and tag values that are attached to the
1369
+ # world generator job.
1370
+ #
1371
+ # @return [Types::CreateWorldGenerationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1372
+ #
1373
+ # * {Types::CreateWorldGenerationJobResponse#arn #arn} => String
1374
+ # * {Types::CreateWorldGenerationJobResponse#status #status} => String
1375
+ # * {Types::CreateWorldGenerationJobResponse#created_at #created_at} => Time
1376
+ # * {Types::CreateWorldGenerationJobResponse#failure_code #failure_code} => String
1377
+ # * {Types::CreateWorldGenerationJobResponse#client_request_token #client_request_token} => String
1378
+ # * {Types::CreateWorldGenerationJobResponse#template #template} => String
1379
+ # * {Types::CreateWorldGenerationJobResponse#world_count #world_count} => Types::WorldCount
1380
+ # * {Types::CreateWorldGenerationJobResponse#tags #tags} => Hash&lt;String,String&gt;
1381
+ #
1382
+ # @example Request syntax with placeholder values
1383
+ #
1384
+ # resp = client.create_world_generation_job({
1385
+ # client_request_token: "ClientRequestToken",
1386
+ # template: "Arn", # required
1387
+ # world_count: { # required
1388
+ # floorplan_count: 1,
1389
+ # interior_count_per_floorplan: 1,
1390
+ # },
1391
+ # tags: {
1392
+ # "TagKey" => "TagValue",
1393
+ # },
1394
+ # })
1395
+ #
1396
+ # @example Response structure
1397
+ #
1398
+ # resp.arn #=> String
1399
+ # resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
1400
+ # resp.created_at #=> Time
1401
+ # resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
1402
+ # resp.client_request_token #=> String
1403
+ # resp.template #=> String
1404
+ # resp.world_count.floorplan_count #=> Integer
1405
+ # resp.world_count.interior_count_per_floorplan #=> Integer
1406
+ # resp.tags #=> Hash
1407
+ # resp.tags["TagKey"] #=> String
1408
+ #
1409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJob AWS API Documentation
1410
+ #
1411
+ # @overload create_world_generation_job(params = {})
1412
+ # @param [Hash] params ({})
1413
+ def create_world_generation_job(params = {}, options = {})
1414
+ req = build_request(:create_world_generation_job, params)
1415
+ req.send_request(options)
1416
+ end
1417
+
1418
+ # Creates a world template.
1419
+ #
1420
+ # @option params [String] :client_request_token
1421
+ # Unique, case-sensitive identifier that you provide to ensure the
1422
+ # idempotency of the request.
1423
+ #
1424
+ # @option params [String] :name
1425
+ # The name of the world template.
1426
+ #
1427
+ # @option params [String] :template_body
1428
+ # The world template body.
1429
+ #
1430
+ # @option params [Types::TemplateLocation] :template_location
1431
+ # The location of the world template.
1432
+ #
1433
+ # @option params [Hash<String,String>] :tags
1434
+ # A map that contains tag keys and tag values that are attached to the
1435
+ # world template.
1436
+ #
1437
+ # @return [Types::CreateWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1438
+ #
1439
+ # * {Types::CreateWorldTemplateResponse#arn #arn} => String
1440
+ # * {Types::CreateWorldTemplateResponse#client_request_token #client_request_token} => String
1441
+ # * {Types::CreateWorldTemplateResponse#created_at #created_at} => Time
1442
+ # * {Types::CreateWorldTemplateResponse#name #name} => String
1443
+ # * {Types::CreateWorldTemplateResponse#tags #tags} => Hash&lt;String,String&gt;
1444
+ #
1445
+ # @example Request syntax with placeholder values
1446
+ #
1447
+ # resp = client.create_world_template({
1448
+ # client_request_token: "ClientRequestToken",
1449
+ # name: "TemplateName",
1450
+ # template_body: "Json",
1451
+ # template_location: {
1452
+ # s3_bucket: "S3Bucket", # required
1453
+ # s3_key: "S3Key", # required
1454
+ # },
1455
+ # tags: {
1456
+ # "TagKey" => "TagValue",
1457
+ # },
1458
+ # })
1459
+ #
1460
+ # @example Response structure
1461
+ #
1462
+ # resp.arn #=> String
1463
+ # resp.client_request_token #=> String
1464
+ # resp.created_at #=> Time
1465
+ # resp.name #=> String
1466
+ # resp.tags #=> Hash
1467
+ # resp.tags["TagKey"] #=> String
1468
+ #
1469
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplate AWS API Documentation
1470
+ #
1471
+ # @overload create_world_template(params = {})
1472
+ # @param [Hash] params ({})
1473
+ def create_world_template(params = {}, options = {})
1474
+ req = build_request(:create_world_template, params)
1475
+ req.send_request(options)
1476
+ end
1477
+
1196
1478
  # Deletes a fleet.
1197
1479
  #
1198
1480
  # @option params [required, String] :fleet
@@ -1289,6 +1571,29 @@ module Aws::RoboMaker
1289
1571
  req.send_request(options)
1290
1572
  end
1291
1573
 
1574
+ # Deletes a world template.
1575
+ #
1576
+ # @option params [required, String] :template
1577
+ # The Amazon Resource Name (arn) of the world template you want to
1578
+ # delete.
1579
+ #
1580
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1581
+ #
1582
+ # @example Request syntax with placeholder values
1583
+ #
1584
+ # resp = client.delete_world_template({
1585
+ # template: "Arn", # required
1586
+ # })
1587
+ #
1588
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplate AWS API Documentation
1589
+ #
1590
+ # @overload delete_world_template(params = {})
1591
+ # @param [Hash] params ({})
1592
+ def delete_world_template(params = {}, options = {})
1593
+ req = build_request(:delete_world_template, params)
1594
+ req.send_request(options)
1595
+ end
1596
+
1292
1597
  # Deregisters a robot.
1293
1598
  #
1294
1599
  # @option params [required, String] :fleet
@@ -1678,6 +1983,8 @@ module Aws::RoboMaker
1678
1983
  # resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
1679
1984
  # resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
1680
1985
  # resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
1986
+ # resp.simulation_applications[0].world_configs #=> Array
1987
+ # resp.simulation_applications[0].world_configs[0].world #=> String
1681
1988
  # resp.data_sources #=> Array
1682
1989
  # resp.data_sources[0].name #=> String
1683
1990
  # resp.data_sources[0].s3_bucket #=> String
@@ -1775,6 +2082,8 @@ module Aws::RoboMaker
1775
2082
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
1776
2083
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
1777
2084
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
2085
+ # resp.failed_requests[0].request.simulation_applications[0].world_configs #=> Array
2086
+ # resp.failed_requests[0].request.simulation_applications[0].world_configs[0].world #=> String
1778
2087
  # resp.failed_requests[0].request.data_sources #=> Array
1779
2088
  # resp.failed_requests[0].request.data_sources[0].name #=> String
1780
2089
  # resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
@@ -1823,6 +2132,8 @@ module Aws::RoboMaker
1823
2132
  # resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
1824
2133
  # resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
1825
2134
  # resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
2135
+ # resp.pending_requests[0].simulation_applications[0].world_configs #=> Array
2136
+ # resp.pending_requests[0].simulation_applications[0].world_configs[0].world #=> String
1826
2137
  # resp.pending_requests[0].data_sources #=> Array
1827
2138
  # resp.pending_requests[0].data_sources[0].name #=> String
1828
2139
  # resp.pending_requests[0].data_sources[0].s3_bucket #=> String
@@ -1859,6 +2170,220 @@ module Aws::RoboMaker
1859
2170
  req.send_request(options)
1860
2171
  end
1861
2172
 
2173
+ # Describes a world.
2174
+ #
2175
+ # @option params [required, String] :world
2176
+ # The Amazon Resource Name (arn) of the world you want to describe.
2177
+ #
2178
+ # @return [Types::DescribeWorldResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2179
+ #
2180
+ # * {Types::DescribeWorldResponse#arn #arn} => String
2181
+ # * {Types::DescribeWorldResponse#generation_job #generation_job} => String
2182
+ # * {Types::DescribeWorldResponse#template #template} => String
2183
+ # * {Types::DescribeWorldResponse#created_at #created_at} => Time
2184
+ # * {Types::DescribeWorldResponse#tags #tags} => Hash&lt;String,String&gt;
2185
+ #
2186
+ # @example Request syntax with placeholder values
2187
+ #
2188
+ # resp = client.describe_world({
2189
+ # world: "Arn", # required
2190
+ # })
2191
+ #
2192
+ # @example Response structure
2193
+ #
2194
+ # resp.arn #=> String
2195
+ # resp.generation_job #=> String
2196
+ # resp.template #=> String
2197
+ # resp.created_at #=> Time
2198
+ # resp.tags #=> Hash
2199
+ # resp.tags["TagKey"] #=> String
2200
+ #
2201
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorld AWS API Documentation
2202
+ #
2203
+ # @overload describe_world(params = {})
2204
+ # @param [Hash] params ({})
2205
+ def describe_world(params = {}, options = {})
2206
+ req = build_request(:describe_world, params)
2207
+ req.send_request(options)
2208
+ end
2209
+
2210
+ # Describes a world export job.
2211
+ #
2212
+ # @option params [required, String] :job
2213
+ # The Amazon Resource Name (arn) of the world export job to describe.
2214
+ #
2215
+ # @return [Types::DescribeWorldExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2216
+ #
2217
+ # * {Types::DescribeWorldExportJobResponse#arn #arn} => String
2218
+ # * {Types::DescribeWorldExportJobResponse#status #status} => String
2219
+ # * {Types::DescribeWorldExportJobResponse#created_at #created_at} => Time
2220
+ # * {Types::DescribeWorldExportJobResponse#failure_code #failure_code} => String
2221
+ # * {Types::DescribeWorldExportJobResponse#failure_reason #failure_reason} => String
2222
+ # * {Types::DescribeWorldExportJobResponse#client_request_token #client_request_token} => String
2223
+ # * {Types::DescribeWorldExportJobResponse#worlds #worlds} => Array&lt;String&gt;
2224
+ # * {Types::DescribeWorldExportJobResponse#output_location #output_location} => Types::OutputLocation
2225
+ # * {Types::DescribeWorldExportJobResponse#iam_role #iam_role} => String
2226
+ # * {Types::DescribeWorldExportJobResponse#tags #tags} => Hash&lt;String,String&gt;
2227
+ #
2228
+ # @example Request syntax with placeholder values
2229
+ #
2230
+ # resp = client.describe_world_export_job({
2231
+ # job: "Arn", # required
2232
+ # })
2233
+ #
2234
+ # @example Response structure
2235
+ #
2236
+ # resp.arn #=> String
2237
+ # resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "Canceling", "Canceled"
2238
+ # resp.created_at #=> Time
2239
+ # resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AccessDenied"
2240
+ # resp.failure_reason #=> String
2241
+ # resp.client_request_token #=> String
2242
+ # resp.worlds #=> Array
2243
+ # resp.worlds[0] #=> String
2244
+ # resp.output_location.s3_bucket #=> String
2245
+ # resp.output_location.s3_prefix #=> String
2246
+ # resp.iam_role #=> String
2247
+ # resp.tags #=> Hash
2248
+ # resp.tags["TagKey"] #=> String
2249
+ #
2250
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJob AWS API Documentation
2251
+ #
2252
+ # @overload describe_world_export_job(params = {})
2253
+ # @param [Hash] params ({})
2254
+ def describe_world_export_job(params = {}, options = {})
2255
+ req = build_request(:describe_world_export_job, params)
2256
+ req.send_request(options)
2257
+ end
2258
+
2259
+ # Describes a world generation job.
2260
+ #
2261
+ # @option params [required, String] :job
2262
+ # The Amazon Resource Name (arn) of the world generation job to
2263
+ # describe.
2264
+ #
2265
+ # @return [Types::DescribeWorldGenerationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2266
+ #
2267
+ # * {Types::DescribeWorldGenerationJobResponse#arn #arn} => String
2268
+ # * {Types::DescribeWorldGenerationJobResponse#status #status} => String
2269
+ # * {Types::DescribeWorldGenerationJobResponse#created_at #created_at} => Time
2270
+ # * {Types::DescribeWorldGenerationJobResponse#failure_code #failure_code} => String
2271
+ # * {Types::DescribeWorldGenerationJobResponse#failure_reason #failure_reason} => String
2272
+ # * {Types::DescribeWorldGenerationJobResponse#client_request_token #client_request_token} => String
2273
+ # * {Types::DescribeWorldGenerationJobResponse#template #template} => String
2274
+ # * {Types::DescribeWorldGenerationJobResponse#world_count #world_count} => Types::WorldCount
2275
+ # * {Types::DescribeWorldGenerationJobResponse#finished_worlds_summary #finished_worlds_summary} => Types::FinishedWorldsSummary
2276
+ # * {Types::DescribeWorldGenerationJobResponse#tags #tags} => Hash&lt;String,String&gt;
2277
+ #
2278
+ # @example Request syntax with placeholder values
2279
+ #
2280
+ # resp = client.describe_world_generation_job({
2281
+ # job: "Arn", # required
2282
+ # })
2283
+ #
2284
+ # @example Response structure
2285
+ #
2286
+ # resp.arn #=> String
2287
+ # resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
2288
+ # resp.created_at #=> Time
2289
+ # resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
2290
+ # resp.failure_reason #=> String
2291
+ # resp.client_request_token #=> String
2292
+ # resp.template #=> String
2293
+ # resp.world_count.floorplan_count #=> Integer
2294
+ # resp.world_count.interior_count_per_floorplan #=> Integer
2295
+ # resp.finished_worlds_summary.finished_count #=> Integer
2296
+ # resp.finished_worlds_summary.succeeded_worlds #=> Array
2297
+ # resp.finished_worlds_summary.succeeded_worlds[0] #=> String
2298
+ # resp.finished_worlds_summary.failure_summary.total_failure_count #=> Integer
2299
+ # resp.finished_worlds_summary.failure_summary.failures #=> Array
2300
+ # resp.finished_worlds_summary.failure_summary.failures[0].failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
2301
+ # resp.finished_worlds_summary.failure_summary.failures[0].sample_failure_reason #=> String
2302
+ # resp.finished_worlds_summary.failure_summary.failures[0].failure_count #=> Integer
2303
+ # resp.tags #=> Hash
2304
+ # resp.tags["TagKey"] #=> String
2305
+ #
2306
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJob AWS API Documentation
2307
+ #
2308
+ # @overload describe_world_generation_job(params = {})
2309
+ # @param [Hash] params ({})
2310
+ def describe_world_generation_job(params = {}, options = {})
2311
+ req = build_request(:describe_world_generation_job, params)
2312
+ req.send_request(options)
2313
+ end
2314
+
2315
+ # Describes a world template.
2316
+ #
2317
+ # @option params [required, String] :template
2318
+ # The Amazon Resource Name (arn) of the world template you want to
2319
+ # describe.
2320
+ #
2321
+ # @return [Types::DescribeWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2322
+ #
2323
+ # * {Types::DescribeWorldTemplateResponse#arn #arn} => String
2324
+ # * {Types::DescribeWorldTemplateResponse#client_request_token #client_request_token} => String
2325
+ # * {Types::DescribeWorldTemplateResponse#name #name} => String
2326
+ # * {Types::DescribeWorldTemplateResponse#created_at #created_at} => Time
2327
+ # * {Types::DescribeWorldTemplateResponse#last_updated_at #last_updated_at} => Time
2328
+ # * {Types::DescribeWorldTemplateResponse#tags #tags} => Hash&lt;String,String&gt;
2329
+ #
2330
+ # @example Request syntax with placeholder values
2331
+ #
2332
+ # resp = client.describe_world_template({
2333
+ # template: "Arn", # required
2334
+ # })
2335
+ #
2336
+ # @example Response structure
2337
+ #
2338
+ # resp.arn #=> String
2339
+ # resp.client_request_token #=> String
2340
+ # resp.name #=> String
2341
+ # resp.created_at #=> Time
2342
+ # resp.last_updated_at #=> Time
2343
+ # resp.tags #=> Hash
2344
+ # resp.tags["TagKey"] #=> String
2345
+ #
2346
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplate AWS API Documentation
2347
+ #
2348
+ # @overload describe_world_template(params = {})
2349
+ # @param [Hash] params ({})
2350
+ def describe_world_template(params = {}, options = {})
2351
+ req = build_request(:describe_world_template, params)
2352
+ req.send_request(options)
2353
+ end
2354
+
2355
+ # Gets the world template body.
2356
+ #
2357
+ # @option params [String] :template
2358
+ # The Amazon Resource Name (arn) of the world template.
2359
+ #
2360
+ # @option params [String] :generation_job
2361
+ # The Amazon Resource Name (arn) of the world generator job.
2362
+ #
2363
+ # @return [Types::GetWorldTemplateBodyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2364
+ #
2365
+ # * {Types::GetWorldTemplateBodyResponse#template_body #template_body} => String
2366
+ #
2367
+ # @example Request syntax with placeholder values
2368
+ #
2369
+ # resp = client.get_world_template_body({
2370
+ # template: "Arn",
2371
+ # generation_job: "Arn",
2372
+ # })
2373
+ #
2374
+ # @example Response structure
2375
+ #
2376
+ # resp.template_body #=> String
2377
+ #
2378
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBody AWS API Documentation
2379
+ #
2380
+ # @overload get_world_template_body(params = {})
2381
+ # @param [Hash] params ({})
2382
+ def get_world_template_body(params = {}, options = {})
2383
+ req = build_request(:get_world_template_body, params)
2384
+ req.send_request(options)
2385
+ end
2386
+
1862
2387
  # Returns a list of deployment jobs for a fleet. You can optionally
1863
2388
  # provide filters to retrieve specific deployment jobs.
1864
2389
  #
@@ -1872,11 +2397,12 @@ module Aws::RoboMaker
1872
2397
  # or the status `Pending`.
1873
2398
  #
1874
2399
  # @option params [String] :next_token
1875
- # The `nextToken` value returned from a previous paginated
1876
- # `ListDeploymentJobs` request where `maxResults` was used and the
1877
- # results exceeded the value of that parameter. Pagination continues
1878
- # from the end of the previous results that returned the `nextToken`
1879
- # value.
2400
+ # If the previous paginated request did not return all of the remaining
2401
+ # results, the response object's `nextToken` parameter value is set to
2402
+ # a token. To retrieve the next set of results, call
2403
+ # `ListDeploymentJobs` again and assign that token to the request
2404
+ # object's `nextToken` parameter. If there are no remaining results,
2405
+ # the previous response object's NextToken parameter is set to null.
1880
2406
  #
1881
2407
  # @option params [Integer] :max_results
1882
2408
  # When this parameter is used, `ListDeploymentJobs` only returns
@@ -1946,10 +2472,12 @@ module Aws::RoboMaker
1946
2472
  # retrieve specific fleets.
1947
2473
  #
1948
2474
  # @option params [String] :next_token
1949
- # The `nextToken` value returned from a previous paginated `ListFleets`
1950
- # request where `maxResults` was used and the results exceeded the value
1951
- # of that parameter. Pagination continues from the end of the previous
1952
- # results that returned the `nextToken` value.
2475
+ # If the previous paginated request did not return all of the remaining
2476
+ # results, the response object's `nextToken` parameter value is set to
2477
+ # a token. To retrieve the next set of results, call `ListFleets` again
2478
+ # and assign that token to the request object's `nextToken` parameter.
2479
+ # If there are no remaining results, the previous response object's
2480
+ # NextToken parameter is set to null.
1953
2481
  #
1954
2482
  # <note markdown="1"> This token should be treated as an opaque identifier that is only used
1955
2483
  # to retrieve the next items in a list and not for other programmatic
@@ -2019,11 +2547,12 @@ module Aws::RoboMaker
2019
2547
  # The version qualifier of the robot application.
2020
2548
  #
2021
2549
  # @option params [String] :next_token
2022
- # The `nextToken` value returned from a previous paginated
2023
- # `ListRobotApplications` request where `maxResults` was used and the
2024
- # results exceeded the value of that parameter. Pagination continues
2025
- # from the end of the previous results that returned the `nextToken`
2026
- # value.
2550
+ # If the previous paginated request did not return all of the remaining
2551
+ # results, the response object's `nextToken` parameter value is set to
2552
+ # a token. To retrieve the next set of results, call
2553
+ # `ListRobotApplications` again and assign that token to the request
2554
+ # object's `nextToken` parameter. If there are no remaining results,
2555
+ # the previous response object's NextToken parameter is set to null.
2027
2556
  #
2028
2557
  # @option params [Integer] :max_results
2029
2558
  # When this parameter is used, `ListRobotApplications` only returns
@@ -2085,10 +2614,12 @@ module Aws::RoboMaker
2085
2614
  # retrieve specific robots.
2086
2615
  #
2087
2616
  # @option params [String] :next_token
2088
- # The `nextToken` value returned from a previous paginated `ListRobots`
2089
- # request where `maxResults` was used and the results exceeded the value
2090
- # of that parameter. Pagination continues from the end of the previous
2091
- # results that returned the `nextToken` value.
2617
+ # If the previous paginated request did not return all of the remaining
2618
+ # results, the response object's `nextToken` parameter value is set to
2619
+ # a token. To retrieve the next set of results, call `ListRobots` again
2620
+ # and assign that token to the request object's `nextToken` parameter.
2621
+ # If there are no remaining results, the previous response object's
2622
+ # NextToken parameter is set to null.
2092
2623
  #
2093
2624
  # @option params [Integer] :max_results
2094
2625
  # When this parameter is used, `ListRobots` only returns `maxResults`
@@ -2158,11 +2689,13 @@ module Aws::RoboMaker
2158
2689
  # The version qualifier of the simulation application.
2159
2690
  #
2160
2691
  # @option params [String] :next_token
2161
- # The `nextToken` value returned from a previous paginated
2162
- # `ListSimulationApplications` request where `maxResults` was used and
2163
- # the results exceeded the value of that parameter. Pagination continues
2164
- # from the end of the previous results that returned the `nextToken`
2165
- # value.
2692
+ # If the previous paginated request did not return all of the remaining
2693
+ # results, the response object's `nextToken` parameter value is set to
2694
+ # a token. To retrieve the next set of results, call
2695
+ # `ListSimulationApplications` again and assign that token to the
2696
+ # request object's `nextToken` parameter. If there are no remaining
2697
+ # results, the previous response object's NextToken parameter is set to
2698
+ # null.
2166
2699
  #
2167
2700
  # @option params [Integer] :max_results
2168
2701
  # When this parameter is used, `ListSimulationApplications` only returns
@@ -2226,11 +2759,12 @@ module Aws::RoboMaker
2226
2759
  # filters to retrieve specific simulation batch jobs.
2227
2760
  #
2228
2761
  # @option params [String] :next_token
2229
- # The `nextToken` value returned from a previous paginated
2230
- # `ListSimulationJobBatches` request where `maxResults` was used and the
2231
- # results exceeded the value of that parameter. Pagination continues
2232
- # from the end of the previous results that returned the `nextToken`
2233
- # value.
2762
+ # If the previous paginated request did not return all of the remaining
2763
+ # results, the response object's `nextToken` parameter value is set to
2764
+ # a token. To retrieve the next set of results, call
2765
+ # `ListSimulationJobBatches` again and assign that token to the request
2766
+ # object's `nextToken` parameter. If there are no remaining results,
2767
+ # the previous response object's NextToken parameter is set to null.
2234
2768
  #
2235
2769
  # @option params [Integer] :max_results
2236
2770
  # When this parameter is used, `ListSimulationJobBatches` only returns
@@ -2287,17 +2821,12 @@ module Aws::RoboMaker
2287
2821
  # to retrieve specific simulation jobs.
2288
2822
  #
2289
2823
  # @option params [String] :next_token
2290
- # The `nextToken` value returned from a previous paginated
2291
- # `ListSimulationJobs` request where `maxResults` was used and the
2292
- # results exceeded the value of that parameter. Pagination continues
2293
- # from the end of the previous results that returned the `nextToken`
2294
- # value.
2295
- #
2296
- # <note markdown="1"> This token should be treated as an opaque identifier that is only used
2297
- # to retrieve the next items in a list and not for other programmatic
2298
- # purposes.
2299
- #
2300
- # </note>
2824
+ # If the previous paginated request did not return all of the remaining
2825
+ # results, the response object's `nextToken` parameter value is set to
2826
+ # a token. To retrieve the next set of results, call
2827
+ # `ListSimulationJobs` again and assign that token to the request
2828
+ # object's `nextToken` parameter. If there are no remaining results,
2829
+ # the previous response object's NextToken parameter is set to null.
2301
2830
  #
2302
2831
  # @option params [Integer] :max_results
2303
2832
  # When this parameter is used, `ListSimulationJobs` only returns
@@ -2390,6 +2919,245 @@ module Aws::RoboMaker
2390
2919
  req.send_request(options)
2391
2920
  end
2392
2921
 
2922
+ # Lists world export jobs.
2923
+ #
2924
+ # @option params [String] :next_token
2925
+ # If the previous paginated request did not return all of the remaining
2926
+ # results, the response object's `nextToken` parameter value is set to
2927
+ # a token. To retrieve the next set of results, call
2928
+ # `ListWorldExportJobs` again and assign that token to the request
2929
+ # object's `nextToken` parameter. If there are no remaining results,
2930
+ # the previous response object's NextToken parameter is set to null.
2931
+ #
2932
+ # @option params [Integer] :max_results
2933
+ # When this parameter is used, `ListWorldExportJobs` only returns
2934
+ # `maxResults` results in a single page along with a `nextToken`
2935
+ # response element. The remaining results of the initial request can be
2936
+ # seen by sending another `ListWorldExportJobs` request with the
2937
+ # returned `nextToken` value. This value can be between 1 and 100. If
2938
+ # this parameter is not used, then `ListWorldExportJobs` returns up to
2939
+ # 100 results and a `nextToken` value if applicable.
2940
+ #
2941
+ # @option params [Array<Types::Filter>] :filters
2942
+ # Optional filters to limit results. You can use `generationJobId` and
2943
+ # `templateId`.
2944
+ #
2945
+ # @return [Types::ListWorldExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2946
+ #
2947
+ # * {Types::ListWorldExportJobsResponse#world_export_job_summaries #world_export_job_summaries} => Array&lt;Types::WorldExportJobSummary&gt;
2948
+ # * {Types::ListWorldExportJobsResponse#next_token #next_token} => String
2949
+ #
2950
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2951
+ #
2952
+ # @example Request syntax with placeholder values
2953
+ #
2954
+ # resp = client.list_world_export_jobs({
2955
+ # next_token: "PaginationToken",
2956
+ # max_results: 1,
2957
+ # filters: [
2958
+ # {
2959
+ # name: "Name",
2960
+ # values: ["Name"],
2961
+ # },
2962
+ # ],
2963
+ # })
2964
+ #
2965
+ # @example Response structure
2966
+ #
2967
+ # resp.world_export_job_summaries #=> Array
2968
+ # resp.world_export_job_summaries[0].arn #=> String
2969
+ # resp.world_export_job_summaries[0].status #=> String, one of "Pending", "Running", "Completed", "Failed", "Canceling", "Canceled"
2970
+ # resp.world_export_job_summaries[0].created_at #=> Time
2971
+ # resp.world_export_job_summaries[0].worlds #=> Array
2972
+ # resp.world_export_job_summaries[0].worlds[0] #=> String
2973
+ # resp.next_token #=> String
2974
+ #
2975
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobs AWS API Documentation
2976
+ #
2977
+ # @overload list_world_export_jobs(params = {})
2978
+ # @param [Hash] params ({})
2979
+ def list_world_export_jobs(params = {}, options = {})
2980
+ req = build_request(:list_world_export_jobs, params)
2981
+ req.send_request(options)
2982
+ end
2983
+
2984
+ # Lists world generator jobs.
2985
+ #
2986
+ # @option params [String] :next_token
2987
+ # If the previous paginated request did not return all of the remaining
2988
+ # results, the response object's `nextToken` parameter value is set to
2989
+ # a token. To retrieve the next set of results, call
2990
+ # `ListWorldGenerationJobsRequest` again and assign that token to the
2991
+ # request object's `nextToken` parameter. If there are no remaining
2992
+ # results, the previous response object's NextToken parameter is set to
2993
+ # null.
2994
+ #
2995
+ # @option params [Integer] :max_results
2996
+ # When this parameter is used, `ListWorldGeneratorJobs` only returns
2997
+ # `maxResults` results in a single page along with a `nextToken`
2998
+ # response element. The remaining results of the initial request can be
2999
+ # seen by sending another `ListWorldGeneratorJobs` request with the
3000
+ # returned `nextToken` value. This value can be between 1 and 100. If
3001
+ # this parameter is not used, then `ListWorldGeneratorJobs` returns up
3002
+ # to 100 results and a `nextToken` value if applicable.
3003
+ #
3004
+ # @option params [Array<Types::Filter>] :filters
3005
+ # Optional filters to limit results. You can use `status` and
3006
+ # `templateId`.
3007
+ #
3008
+ # @return [Types::ListWorldGenerationJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3009
+ #
3010
+ # * {Types::ListWorldGenerationJobsResponse#world_generation_job_summaries #world_generation_job_summaries} => Array&lt;Types::WorldGenerationJobSummary&gt;
3011
+ # * {Types::ListWorldGenerationJobsResponse#next_token #next_token} => String
3012
+ #
3013
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3014
+ #
3015
+ # @example Request syntax with placeholder values
3016
+ #
3017
+ # resp = client.list_world_generation_jobs({
3018
+ # next_token: "PaginationToken",
3019
+ # max_results: 1,
3020
+ # filters: [
3021
+ # {
3022
+ # name: "Name",
3023
+ # values: ["Name"],
3024
+ # },
3025
+ # ],
3026
+ # })
3027
+ #
3028
+ # @example Response structure
3029
+ #
3030
+ # resp.world_generation_job_summaries #=> Array
3031
+ # resp.world_generation_job_summaries[0].arn #=> String
3032
+ # resp.world_generation_job_summaries[0].template #=> String
3033
+ # resp.world_generation_job_summaries[0].created_at #=> Time
3034
+ # resp.world_generation_job_summaries[0].status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
3035
+ # resp.world_generation_job_summaries[0].world_count.floorplan_count #=> Integer
3036
+ # resp.world_generation_job_summaries[0].world_count.interior_count_per_floorplan #=> Integer
3037
+ # resp.world_generation_job_summaries[0].succeeded_world_count #=> Integer
3038
+ # resp.world_generation_job_summaries[0].failed_world_count #=> Integer
3039
+ # resp.next_token #=> String
3040
+ #
3041
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobs AWS API Documentation
3042
+ #
3043
+ # @overload list_world_generation_jobs(params = {})
3044
+ # @param [Hash] params ({})
3045
+ def list_world_generation_jobs(params = {}, options = {})
3046
+ req = build_request(:list_world_generation_jobs, params)
3047
+ req.send_request(options)
3048
+ end
3049
+
3050
+ # Lists world templates.
3051
+ #
3052
+ # @option params [String] :next_token
3053
+ # If the previous paginated request did not return all of the remaining
3054
+ # results, the response object's `nextToken` parameter value is set to
3055
+ # a token. To retrieve the next set of results, call
3056
+ # `ListWorldTemplates` again and assign that token to the request
3057
+ # object's `nextToken` parameter. If there are no remaining results,
3058
+ # the previous response object's NextToken parameter is set to null.
3059
+ #
3060
+ # @option params [Integer] :max_results
3061
+ # When this parameter is used, `ListWorldTemplates` only returns
3062
+ # `maxResults` results in a single page along with a `nextToken`
3063
+ # response element. The remaining results of the initial request can be
3064
+ # seen by sending another `ListWorldTemplates` request with the returned
3065
+ # `nextToken` value. This value can be between 1 and 100. If this
3066
+ # parameter is not used, then `ListWorldTemplates` returns up to 100
3067
+ # results and a `nextToken` value if applicable.
3068
+ #
3069
+ # @return [Types::ListWorldTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3070
+ #
3071
+ # * {Types::ListWorldTemplatesResponse#template_summaries #template_summaries} => Array&lt;Types::TemplateSummary&gt;
3072
+ # * {Types::ListWorldTemplatesResponse#next_token #next_token} => String
3073
+ #
3074
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3075
+ #
3076
+ # @example Request syntax with placeholder values
3077
+ #
3078
+ # resp = client.list_world_templates({
3079
+ # next_token: "PaginationToken",
3080
+ # max_results: 1,
3081
+ # })
3082
+ #
3083
+ # @example Response structure
3084
+ #
3085
+ # resp.template_summaries #=> Array
3086
+ # resp.template_summaries[0].arn #=> String
3087
+ # resp.template_summaries[0].created_at #=> Time
3088
+ # resp.template_summaries[0].last_updated_at #=> Time
3089
+ # resp.template_summaries[0].name #=> String
3090
+ # resp.next_token #=> String
3091
+ #
3092
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplates AWS API Documentation
3093
+ #
3094
+ # @overload list_world_templates(params = {})
3095
+ # @param [Hash] params ({})
3096
+ def list_world_templates(params = {}, options = {})
3097
+ req = build_request(:list_world_templates, params)
3098
+ req.send_request(options)
3099
+ end
3100
+
3101
+ # Lists worlds.
3102
+ #
3103
+ # @option params [String] :next_token
3104
+ # If the previous paginated request did not return all of the remaining
3105
+ # results, the response object's `nextToken` parameter value is set to
3106
+ # a token. To retrieve the next set of results, call `ListWorlds` again
3107
+ # and assign that token to the request object's `nextToken` parameter.
3108
+ # If there are no remaining results, the previous response object's
3109
+ # NextToken parameter is set to null.
3110
+ #
3111
+ # @option params [Integer] :max_results
3112
+ # When this parameter is used, `ListWorlds` only returns `maxResults`
3113
+ # results in a single page along with a `nextToken` response element.
3114
+ # The remaining results of the initial request can be seen by sending
3115
+ # another `ListWorlds` request with the returned `nextToken` value. This
3116
+ # value can be between 1 and 100. If this parameter is not used, then
3117
+ # `ListWorlds` returns up to 100 results and a `nextToken` value if
3118
+ # applicable.
3119
+ #
3120
+ # @option params [Array<Types::Filter>] :filters
3121
+ # Optional filters to limit results. You can use `status`.
3122
+ #
3123
+ # @return [Types::ListWorldsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3124
+ #
3125
+ # * {Types::ListWorldsResponse#world_summaries #world_summaries} => Array&lt;Types::WorldSummary&gt;
3126
+ # * {Types::ListWorldsResponse#next_token #next_token} => String
3127
+ #
3128
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3129
+ #
3130
+ # @example Request syntax with placeholder values
3131
+ #
3132
+ # resp = client.list_worlds({
3133
+ # next_token: "PaginationToken",
3134
+ # max_results: 1,
3135
+ # filters: [
3136
+ # {
3137
+ # name: "Name",
3138
+ # values: ["Name"],
3139
+ # },
3140
+ # ],
3141
+ # })
3142
+ #
3143
+ # @example Response structure
3144
+ #
3145
+ # resp.world_summaries #=> Array
3146
+ # resp.world_summaries[0].arn #=> String
3147
+ # resp.world_summaries[0].created_at #=> Time
3148
+ # resp.world_summaries[0].generation_job #=> String
3149
+ # resp.world_summaries[0].template #=> String
3150
+ # resp.next_token #=> String
3151
+ #
3152
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorlds AWS API Documentation
3153
+ #
3154
+ # @overload list_worlds(params = {})
3155
+ # @param [Hash] params ({})
3156
+ def list_worlds(params = {}, options = {})
3157
+ req = build_request(:list_worlds, params)
3158
+ req.send_request(options)
3159
+ end
3160
+
2393
3161
  # Registers a robot with a fleet.
2394
3162
  #
2395
3163
  # @option params [required, String] :fleet
@@ -2545,6 +3313,11 @@ module Aws::RoboMaker
2545
3313
  # },
2546
3314
  # stream_ui: false,
2547
3315
  # },
3316
+ # world_configs: [
3317
+ # {
3318
+ # world: "Arn",
3319
+ # },
3320
+ # ],
2548
3321
  # },
2549
3322
  # ],
2550
3323
  # data_sources: [
@@ -2614,6 +3387,8 @@ module Aws::RoboMaker
2614
3387
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
2615
3388
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
2616
3389
  # resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
3390
+ # resp.failed_requests[0].request.simulation_applications[0].world_configs #=> Array
3391
+ # resp.failed_requests[0].request.simulation_applications[0].world_configs[0].world #=> String
2617
3392
  # resp.failed_requests[0].request.data_sources #=> Array
2618
3393
  # resp.failed_requests[0].request.data_sources[0].name #=> String
2619
3394
  # resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
@@ -2662,6 +3437,8 @@ module Aws::RoboMaker
2662
3437
  # resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
2663
3438
  # resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
2664
3439
  # resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
3440
+ # resp.pending_requests[0].simulation_applications[0].world_configs #=> Array
3441
+ # resp.pending_requests[0].simulation_applications[0].world_configs[0].world #=> String
2665
3442
  # resp.pending_requests[0].data_sources #=> Array
2666
3443
  # resp.pending_requests[0].data_sources[0].name #=> String
2667
3444
  # resp.pending_requests[0].data_sources[0].s3_bucket #=> String
@@ -2991,6 +3768,55 @@ module Aws::RoboMaker
2991
3768
  req.send_request(options)
2992
3769
  end
2993
3770
 
3771
+ # Updates a world template.
3772
+ #
3773
+ # @option params [required, String] :template
3774
+ # The Amazon Resource Name (arn) of the world template to update.
3775
+ #
3776
+ # @option params [String] :name
3777
+ # The name of the template.
3778
+ #
3779
+ # @option params [String] :template_body
3780
+ # The world template body.
3781
+ #
3782
+ # @option params [Types::TemplateLocation] :template_location
3783
+ # The location of the world template.
3784
+ #
3785
+ # @return [Types::UpdateWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3786
+ #
3787
+ # * {Types::UpdateWorldTemplateResponse#arn #arn} => String
3788
+ # * {Types::UpdateWorldTemplateResponse#name #name} => String
3789
+ # * {Types::UpdateWorldTemplateResponse#created_at #created_at} => Time
3790
+ # * {Types::UpdateWorldTemplateResponse#last_updated_at #last_updated_at} => Time
3791
+ #
3792
+ # @example Request syntax with placeholder values
3793
+ #
3794
+ # resp = client.update_world_template({
3795
+ # template: "Arn", # required
3796
+ # name: "TemplateName",
3797
+ # template_body: "Json",
3798
+ # template_location: {
3799
+ # s3_bucket: "S3Bucket", # required
3800
+ # s3_key: "S3Key", # required
3801
+ # },
3802
+ # })
3803
+ #
3804
+ # @example Response structure
3805
+ #
3806
+ # resp.arn #=> String
3807
+ # resp.name #=> String
3808
+ # resp.created_at #=> Time
3809
+ # resp.last_updated_at #=> Time
3810
+ #
3811
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateWorldTemplate AWS API Documentation
3812
+ #
3813
+ # @overload update_world_template(params = {})
3814
+ # @param [Hash] params ({})
3815
+ def update_world_template(params = {}, options = {})
3816
+ req = build_request(:update_world_template, params)
3817
+ req.send_request(options)
3818
+ end
3819
+
2994
3820
  # @!endgroup
2995
3821
 
2996
3822
  # @param params ({})
@@ -3004,7 +3830,7 @@ module Aws::RoboMaker
3004
3830
  params: params,
3005
3831
  config: config)
3006
3832
  context[:gem_name] = 'aws-sdk-robomaker'
3007
- context[:gem_version] = '1.26.0'
3833
+ context[:gem_version] = '1.27.0'
3008
3834
  Seahorse::Client::Request.new(handlers, context)
3009
3835
  end
3010
3836