aws-sdk-robomaker 1.26.0 → 1.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-robomaker.rb +4 -3
- data/lib/aws-sdk-robomaker/client.rb +901 -47
- data/lib/aws-sdk-robomaker/client_api.rb +529 -0
- data/lib/aws-sdk-robomaker/types.rb +2430 -752
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d71f593cd22faed6916a0fdec97370ae1ba251389f6d39b08bc2a6910986bf6
|
4
|
+
data.tar.gz: 04001d395cdec0974c7e98a4844da786d07eee191be3fea63200001934a3fe13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 006f9067711117b1b4efbcb492300bb538fcdae20ccffdda8ba965503509e745b44bdf1dfebc51c1689001add43684223803ac2fd6dd803f74345e658bb75d0a
|
7
|
+
data.tar.gz: 20fa78b3a1dc3aa4a6212361541877b5e438f9ce7b0123c19652fefb07cc8993f45287286f6cc84580ee973cea8e771584030b2023fe0fbed901b5b6be0390c8
|
data/lib/aws-sdk-robomaker.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -27,7 +28,7 @@ require_relative 'aws-sdk-robomaker/customizations'
|
|
27
28
|
# structure.
|
28
29
|
#
|
29
30
|
# robo_maker = Aws::RoboMaker::Client.new
|
30
|
-
# resp = robo_maker.
|
31
|
+
# resp = robo_maker.batch_delete_worlds(params)
|
31
32
|
#
|
32
33
|
# See {Client} for more information.
|
33
34
|
#
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-robomaker/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::RoboMaker
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.31.0'
|
51
52
|
|
52
53
|
end
|
@@ -85,13 +85,28 @@ module Aws::RoboMaker
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::RoboMaker
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -312,6 +327,36 @@ module Aws::RoboMaker
|
|
312
327
|
|
313
328
|
# @!group API Operations
|
314
329
|
|
330
|
+
# Deletes one or more worlds in a batch operation.
|
331
|
+
#
|
332
|
+
# @option params [required, Array<String>] :worlds
|
333
|
+
# A list of Amazon Resource Names (arns) that correspond to worlds to
|
334
|
+
# delete.
|
335
|
+
#
|
336
|
+
# @return [Types::BatchDeleteWorldsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
337
|
+
#
|
338
|
+
# * {Types::BatchDeleteWorldsResponse#unprocessed_worlds #unprocessed_worlds} => Array<String>
|
339
|
+
#
|
340
|
+
# @example Request syntax with placeholder values
|
341
|
+
#
|
342
|
+
# resp = client.batch_delete_worlds({
|
343
|
+
# worlds: ["Arn"], # required
|
344
|
+
# })
|
345
|
+
#
|
346
|
+
# @example Response structure
|
347
|
+
#
|
348
|
+
# resp.unprocessed_worlds #=> Array
|
349
|
+
# resp.unprocessed_worlds[0] #=> String
|
350
|
+
#
|
351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/BatchDeleteWorlds AWS API Documentation
|
352
|
+
#
|
353
|
+
# @overload batch_delete_worlds(params = {})
|
354
|
+
# @param [Hash] params ({})
|
355
|
+
def batch_delete_worlds(params = {}, options = {})
|
356
|
+
req = build_request(:batch_delete_worlds, params)
|
357
|
+
req.send_request(options)
|
358
|
+
end
|
359
|
+
|
315
360
|
# Describes one or more simulation jobs.
|
316
361
|
#
|
317
362
|
# @option params [required, Array<String>] :jobs
|
@@ -370,6 +415,8 @@ module Aws::RoboMaker
|
|
370
415
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
371
416
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
372
417
|
# resp.jobs[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
418
|
+
# resp.jobs[0].simulation_applications[0].world_configs #=> Array
|
419
|
+
# resp.jobs[0].simulation_applications[0].world_configs[0].world #=> String
|
373
420
|
# resp.jobs[0].data_sources #=> Array
|
374
421
|
# resp.jobs[0].data_sources[0].name #=> String
|
375
422
|
# resp.jobs[0].data_sources[0].s3_bucket #=> String
|
@@ -468,6 +515,50 @@ module Aws::RoboMaker
|
|
468
515
|
req.send_request(options)
|
469
516
|
end
|
470
517
|
|
518
|
+
# Cancels the specified export job.
|
519
|
+
#
|
520
|
+
# @option params [required, String] :job
|
521
|
+
# The Amazon Resource Name (arn) of the world export job to cancel.
|
522
|
+
#
|
523
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
524
|
+
#
|
525
|
+
# @example Request syntax with placeholder values
|
526
|
+
#
|
527
|
+
# resp = client.cancel_world_export_job({
|
528
|
+
# job: "Arn", # required
|
529
|
+
# })
|
530
|
+
#
|
531
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldExportJob AWS API Documentation
|
532
|
+
#
|
533
|
+
# @overload cancel_world_export_job(params = {})
|
534
|
+
# @param [Hash] params ({})
|
535
|
+
def cancel_world_export_job(params = {}, options = {})
|
536
|
+
req = build_request(:cancel_world_export_job, params)
|
537
|
+
req.send_request(options)
|
538
|
+
end
|
539
|
+
|
540
|
+
# Cancels the specified world generator job.
|
541
|
+
#
|
542
|
+
# @option params [required, String] :job
|
543
|
+
# The Amazon Resource Name (arn) of the world generator job to cancel.
|
544
|
+
#
|
545
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
546
|
+
#
|
547
|
+
# @example Request syntax with placeholder values
|
548
|
+
#
|
549
|
+
# resp = client.cancel_world_generation_job({
|
550
|
+
# job: "Arn", # required
|
551
|
+
# })
|
552
|
+
#
|
553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldGenerationJob AWS API Documentation
|
554
|
+
#
|
555
|
+
# @overload cancel_world_generation_job(params = {})
|
556
|
+
# @param [Hash] params ({})
|
557
|
+
def cancel_world_generation_job(params = {}, options = {})
|
558
|
+
req = build_request(:cancel_world_generation_job, params)
|
559
|
+
req.send_request(options)
|
560
|
+
end
|
561
|
+
|
471
562
|
# Deploys a specific version of a robot application to robots in a
|
472
563
|
# fleet.
|
473
564
|
#
|
@@ -1107,6 +1198,11 @@ module Aws::RoboMaker
|
|
1107
1198
|
# },
|
1108
1199
|
# stream_ui: false,
|
1109
1200
|
# },
|
1201
|
+
# world_configs: [
|
1202
|
+
# {
|
1203
|
+
# world: "Arn",
|
1204
|
+
# },
|
1205
|
+
# ],
|
1110
1206
|
# },
|
1111
1207
|
# ],
|
1112
1208
|
# data_sources: [
|
@@ -1168,6 +1264,8 @@ module Aws::RoboMaker
|
|
1168
1264
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1169
1265
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1170
1266
|
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1267
|
+
# resp.simulation_applications[0].world_configs #=> Array
|
1268
|
+
# resp.simulation_applications[0].world_configs[0].world #=> String
|
1171
1269
|
# resp.data_sources #=> Array
|
1172
1270
|
# resp.data_sources[0].name #=> String
|
1173
1271
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1193,6 +1291,215 @@ module Aws::RoboMaker
|
|
1193
1291
|
req.send_request(options)
|
1194
1292
|
end
|
1195
1293
|
|
1294
|
+
# Creates a world export job.
|
1295
|
+
#
|
1296
|
+
# @option params [String] :client_request_token
|
1297
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1298
|
+
# idempotency of the request.
|
1299
|
+
#
|
1300
|
+
# **A suitable default value is auto-generated.** You should normally
|
1301
|
+
# not need to pass this option.**
|
1302
|
+
#
|
1303
|
+
# @option params [required, Array<String>] :worlds
|
1304
|
+
# A list of Amazon Resource Names (arns) that correspond to worlds to
|
1305
|
+
# export.
|
1306
|
+
#
|
1307
|
+
# @option params [required, Types::OutputLocation] :output_location
|
1308
|
+
# The output location.
|
1309
|
+
#
|
1310
|
+
# @option params [required, String] :iam_role
|
1311
|
+
# The IAM role that the world export process uses to access the Amazon
|
1312
|
+
# S3 bucket and put the export.
|
1313
|
+
#
|
1314
|
+
# @option params [Hash<String,String>] :tags
|
1315
|
+
# A map that contains tag keys and tag values that are attached to the
|
1316
|
+
# world export job.
|
1317
|
+
#
|
1318
|
+
# @return [Types::CreateWorldExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1319
|
+
#
|
1320
|
+
# * {Types::CreateWorldExportJobResponse#arn #arn} => String
|
1321
|
+
# * {Types::CreateWorldExportJobResponse#status #status} => String
|
1322
|
+
# * {Types::CreateWorldExportJobResponse#created_at #created_at} => Time
|
1323
|
+
# * {Types::CreateWorldExportJobResponse#failure_code #failure_code} => String
|
1324
|
+
# * {Types::CreateWorldExportJobResponse#client_request_token #client_request_token} => String
|
1325
|
+
# * {Types::CreateWorldExportJobResponse#output_location #output_location} => Types::OutputLocation
|
1326
|
+
# * {Types::CreateWorldExportJobResponse#iam_role #iam_role} => String
|
1327
|
+
# * {Types::CreateWorldExportJobResponse#tags #tags} => Hash<String,String>
|
1328
|
+
#
|
1329
|
+
# @example Request syntax with placeholder values
|
1330
|
+
#
|
1331
|
+
# resp = client.create_world_export_job({
|
1332
|
+
# client_request_token: "ClientRequestToken",
|
1333
|
+
# worlds: ["Arn"], # required
|
1334
|
+
# output_location: { # required
|
1335
|
+
# s3_bucket: "S3Bucket",
|
1336
|
+
# s3_prefix: "S3Key",
|
1337
|
+
# },
|
1338
|
+
# iam_role: "IamRole", # required
|
1339
|
+
# tags: {
|
1340
|
+
# "TagKey" => "TagValue",
|
1341
|
+
# },
|
1342
|
+
# })
|
1343
|
+
#
|
1344
|
+
# @example Response structure
|
1345
|
+
#
|
1346
|
+
# resp.arn #=> String
|
1347
|
+
# resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "Canceling", "Canceled"
|
1348
|
+
# resp.created_at #=> Time
|
1349
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AccessDenied"
|
1350
|
+
# resp.client_request_token #=> String
|
1351
|
+
# resp.output_location.s3_bucket #=> String
|
1352
|
+
# resp.output_location.s3_prefix #=> String
|
1353
|
+
# resp.iam_role #=> String
|
1354
|
+
# resp.tags #=> Hash
|
1355
|
+
# resp.tags["TagKey"] #=> String
|
1356
|
+
#
|
1357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldExportJob AWS API Documentation
|
1358
|
+
#
|
1359
|
+
# @overload create_world_export_job(params = {})
|
1360
|
+
# @param [Hash] params ({})
|
1361
|
+
def create_world_export_job(params = {}, options = {})
|
1362
|
+
req = build_request(:create_world_export_job, params)
|
1363
|
+
req.send_request(options)
|
1364
|
+
end
|
1365
|
+
|
1366
|
+
# Creates worlds using the specified template.
|
1367
|
+
#
|
1368
|
+
# @option params [String] :client_request_token
|
1369
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1370
|
+
# idempotency of the request.
|
1371
|
+
#
|
1372
|
+
# **A suitable default value is auto-generated.** You should normally
|
1373
|
+
# not need to pass this option.**
|
1374
|
+
#
|
1375
|
+
# @option params [required, String] :template
|
1376
|
+
# The Amazon Resource Name (arn) of the world template describing the
|
1377
|
+
# worlds you want to create.
|
1378
|
+
#
|
1379
|
+
# @option params [required, Types::WorldCount] :world_count
|
1380
|
+
# Information about the world count.
|
1381
|
+
#
|
1382
|
+
# @option params [Hash<String,String>] :tags
|
1383
|
+
# A map that contains tag keys and tag values that are attached to the
|
1384
|
+
# world generator job.
|
1385
|
+
#
|
1386
|
+
# @option params [Hash<String,String>] :world_tags
|
1387
|
+
# A map that contains tag keys and tag values that are attached to the
|
1388
|
+
# generated worlds.
|
1389
|
+
#
|
1390
|
+
# @return [Types::CreateWorldGenerationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1391
|
+
#
|
1392
|
+
# * {Types::CreateWorldGenerationJobResponse#arn #arn} => String
|
1393
|
+
# * {Types::CreateWorldGenerationJobResponse#status #status} => String
|
1394
|
+
# * {Types::CreateWorldGenerationJobResponse#created_at #created_at} => Time
|
1395
|
+
# * {Types::CreateWorldGenerationJobResponse#failure_code #failure_code} => String
|
1396
|
+
# * {Types::CreateWorldGenerationJobResponse#client_request_token #client_request_token} => String
|
1397
|
+
# * {Types::CreateWorldGenerationJobResponse#template #template} => String
|
1398
|
+
# * {Types::CreateWorldGenerationJobResponse#world_count #world_count} => Types::WorldCount
|
1399
|
+
# * {Types::CreateWorldGenerationJobResponse#tags #tags} => Hash<String,String>
|
1400
|
+
# * {Types::CreateWorldGenerationJobResponse#world_tags #world_tags} => Hash<String,String>
|
1401
|
+
#
|
1402
|
+
# @example Request syntax with placeholder values
|
1403
|
+
#
|
1404
|
+
# resp = client.create_world_generation_job({
|
1405
|
+
# client_request_token: "ClientRequestToken",
|
1406
|
+
# template: "Arn", # required
|
1407
|
+
# world_count: { # required
|
1408
|
+
# floorplan_count: 1,
|
1409
|
+
# interior_count_per_floorplan: 1,
|
1410
|
+
# },
|
1411
|
+
# tags: {
|
1412
|
+
# "TagKey" => "TagValue",
|
1413
|
+
# },
|
1414
|
+
# world_tags: {
|
1415
|
+
# "TagKey" => "TagValue",
|
1416
|
+
# },
|
1417
|
+
# })
|
1418
|
+
#
|
1419
|
+
# @example Response structure
|
1420
|
+
#
|
1421
|
+
# resp.arn #=> String
|
1422
|
+
# resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
|
1423
|
+
# resp.created_at #=> Time
|
1424
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
|
1425
|
+
# resp.client_request_token #=> String
|
1426
|
+
# resp.template #=> String
|
1427
|
+
# resp.world_count.floorplan_count #=> Integer
|
1428
|
+
# resp.world_count.interior_count_per_floorplan #=> Integer
|
1429
|
+
# resp.tags #=> Hash
|
1430
|
+
# resp.tags["TagKey"] #=> String
|
1431
|
+
# resp.world_tags #=> Hash
|
1432
|
+
# resp.world_tags["TagKey"] #=> String
|
1433
|
+
#
|
1434
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJob AWS API Documentation
|
1435
|
+
#
|
1436
|
+
# @overload create_world_generation_job(params = {})
|
1437
|
+
# @param [Hash] params ({})
|
1438
|
+
def create_world_generation_job(params = {}, options = {})
|
1439
|
+
req = build_request(:create_world_generation_job, params)
|
1440
|
+
req.send_request(options)
|
1441
|
+
end
|
1442
|
+
|
1443
|
+
# Creates a world template.
|
1444
|
+
#
|
1445
|
+
# @option params [String] :client_request_token
|
1446
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1447
|
+
# idempotency of the request.
|
1448
|
+
#
|
1449
|
+
# @option params [String] :name
|
1450
|
+
# The name of the world template.
|
1451
|
+
#
|
1452
|
+
# @option params [String] :template_body
|
1453
|
+
# The world template body.
|
1454
|
+
#
|
1455
|
+
# @option params [Types::TemplateLocation] :template_location
|
1456
|
+
# The location of the world template.
|
1457
|
+
#
|
1458
|
+
# @option params [Hash<String,String>] :tags
|
1459
|
+
# A map that contains tag keys and tag values that are attached to the
|
1460
|
+
# world template.
|
1461
|
+
#
|
1462
|
+
# @return [Types::CreateWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1463
|
+
#
|
1464
|
+
# * {Types::CreateWorldTemplateResponse#arn #arn} => String
|
1465
|
+
# * {Types::CreateWorldTemplateResponse#client_request_token #client_request_token} => String
|
1466
|
+
# * {Types::CreateWorldTemplateResponse#created_at #created_at} => Time
|
1467
|
+
# * {Types::CreateWorldTemplateResponse#name #name} => String
|
1468
|
+
# * {Types::CreateWorldTemplateResponse#tags #tags} => Hash<String,String>
|
1469
|
+
#
|
1470
|
+
# @example Request syntax with placeholder values
|
1471
|
+
#
|
1472
|
+
# resp = client.create_world_template({
|
1473
|
+
# client_request_token: "ClientRequestToken",
|
1474
|
+
# name: "TemplateName",
|
1475
|
+
# template_body: "Json",
|
1476
|
+
# template_location: {
|
1477
|
+
# s3_bucket: "S3Bucket", # required
|
1478
|
+
# s3_key: "S3Key", # required
|
1479
|
+
# },
|
1480
|
+
# tags: {
|
1481
|
+
# "TagKey" => "TagValue",
|
1482
|
+
# },
|
1483
|
+
# })
|
1484
|
+
#
|
1485
|
+
# @example Response structure
|
1486
|
+
#
|
1487
|
+
# resp.arn #=> String
|
1488
|
+
# resp.client_request_token #=> String
|
1489
|
+
# resp.created_at #=> Time
|
1490
|
+
# resp.name #=> String
|
1491
|
+
# resp.tags #=> Hash
|
1492
|
+
# resp.tags["TagKey"] #=> String
|
1493
|
+
#
|
1494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplate AWS API Documentation
|
1495
|
+
#
|
1496
|
+
# @overload create_world_template(params = {})
|
1497
|
+
# @param [Hash] params ({})
|
1498
|
+
def create_world_template(params = {}, options = {})
|
1499
|
+
req = build_request(:create_world_template, params)
|
1500
|
+
req.send_request(options)
|
1501
|
+
end
|
1502
|
+
|
1196
1503
|
# Deletes a fleet.
|
1197
1504
|
#
|
1198
1505
|
# @option params [required, String] :fleet
|
@@ -1289,6 +1596,29 @@ module Aws::RoboMaker
|
|
1289
1596
|
req.send_request(options)
|
1290
1597
|
end
|
1291
1598
|
|
1599
|
+
# Deletes a world template.
|
1600
|
+
#
|
1601
|
+
# @option params [required, String] :template
|
1602
|
+
# The Amazon Resource Name (arn) of the world template you want to
|
1603
|
+
# delete.
|
1604
|
+
#
|
1605
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1606
|
+
#
|
1607
|
+
# @example Request syntax with placeholder values
|
1608
|
+
#
|
1609
|
+
# resp = client.delete_world_template({
|
1610
|
+
# template: "Arn", # required
|
1611
|
+
# })
|
1612
|
+
#
|
1613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplate AWS API Documentation
|
1614
|
+
#
|
1615
|
+
# @overload delete_world_template(params = {})
|
1616
|
+
# @param [Hash] params ({})
|
1617
|
+
def delete_world_template(params = {}, options = {})
|
1618
|
+
req = build_request(:delete_world_template, params)
|
1619
|
+
req.send_request(options)
|
1620
|
+
end
|
1621
|
+
|
1292
1622
|
# Deregisters a robot.
|
1293
1623
|
#
|
1294
1624
|
# @option params [required, String] :fleet
|
@@ -1678,6 +2008,8 @@ module Aws::RoboMaker
|
|
1678
2008
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1679
2009
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1680
2010
|
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2011
|
+
# resp.simulation_applications[0].world_configs #=> Array
|
2012
|
+
# resp.simulation_applications[0].world_configs[0].world #=> String
|
1681
2013
|
# resp.data_sources #=> Array
|
1682
2014
|
# resp.data_sources[0].name #=> String
|
1683
2015
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1775,6 +2107,8 @@ module Aws::RoboMaker
|
|
1775
2107
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1776
2108
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1777
2109
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2110
|
+
# resp.failed_requests[0].request.simulation_applications[0].world_configs #=> Array
|
2111
|
+
# resp.failed_requests[0].request.simulation_applications[0].world_configs[0].world #=> String
|
1778
2112
|
# resp.failed_requests[0].request.data_sources #=> Array
|
1779
2113
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
1780
2114
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -1823,6 +2157,8 @@ module Aws::RoboMaker
|
|
1823
2157
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1824
2158
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1825
2159
|
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2160
|
+
# resp.pending_requests[0].simulation_applications[0].world_configs #=> Array
|
2161
|
+
# resp.pending_requests[0].simulation_applications[0].world_configs[0].world #=> String
|
1826
2162
|
# resp.pending_requests[0].data_sources #=> Array
|
1827
2163
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
1828
2164
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -1859,6 +2195,223 @@ module Aws::RoboMaker
|
|
1859
2195
|
req.send_request(options)
|
1860
2196
|
end
|
1861
2197
|
|
2198
|
+
# Describes a world.
|
2199
|
+
#
|
2200
|
+
# @option params [required, String] :world
|
2201
|
+
# The Amazon Resource Name (arn) of the world you want to describe.
|
2202
|
+
#
|
2203
|
+
# @return [Types::DescribeWorldResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2204
|
+
#
|
2205
|
+
# * {Types::DescribeWorldResponse#arn #arn} => String
|
2206
|
+
# * {Types::DescribeWorldResponse#generation_job #generation_job} => String
|
2207
|
+
# * {Types::DescribeWorldResponse#template #template} => String
|
2208
|
+
# * {Types::DescribeWorldResponse#created_at #created_at} => Time
|
2209
|
+
# * {Types::DescribeWorldResponse#tags #tags} => Hash<String,String>
|
2210
|
+
#
|
2211
|
+
# @example Request syntax with placeholder values
|
2212
|
+
#
|
2213
|
+
# resp = client.describe_world({
|
2214
|
+
# world: "Arn", # required
|
2215
|
+
# })
|
2216
|
+
#
|
2217
|
+
# @example Response structure
|
2218
|
+
#
|
2219
|
+
# resp.arn #=> String
|
2220
|
+
# resp.generation_job #=> String
|
2221
|
+
# resp.template #=> String
|
2222
|
+
# resp.created_at #=> Time
|
2223
|
+
# resp.tags #=> Hash
|
2224
|
+
# resp.tags["TagKey"] #=> String
|
2225
|
+
#
|
2226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorld AWS API Documentation
|
2227
|
+
#
|
2228
|
+
# @overload describe_world(params = {})
|
2229
|
+
# @param [Hash] params ({})
|
2230
|
+
def describe_world(params = {}, options = {})
|
2231
|
+
req = build_request(:describe_world, params)
|
2232
|
+
req.send_request(options)
|
2233
|
+
end
|
2234
|
+
|
2235
|
+
# Describes a world export job.
|
2236
|
+
#
|
2237
|
+
# @option params [required, String] :job
|
2238
|
+
# The Amazon Resource Name (arn) of the world export job to describe.
|
2239
|
+
#
|
2240
|
+
# @return [Types::DescribeWorldExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2241
|
+
#
|
2242
|
+
# * {Types::DescribeWorldExportJobResponse#arn #arn} => String
|
2243
|
+
# * {Types::DescribeWorldExportJobResponse#status #status} => String
|
2244
|
+
# * {Types::DescribeWorldExportJobResponse#created_at #created_at} => Time
|
2245
|
+
# * {Types::DescribeWorldExportJobResponse#failure_code #failure_code} => String
|
2246
|
+
# * {Types::DescribeWorldExportJobResponse#failure_reason #failure_reason} => String
|
2247
|
+
# * {Types::DescribeWorldExportJobResponse#client_request_token #client_request_token} => String
|
2248
|
+
# * {Types::DescribeWorldExportJobResponse#worlds #worlds} => Array<String>
|
2249
|
+
# * {Types::DescribeWorldExportJobResponse#output_location #output_location} => Types::OutputLocation
|
2250
|
+
# * {Types::DescribeWorldExportJobResponse#iam_role #iam_role} => String
|
2251
|
+
# * {Types::DescribeWorldExportJobResponse#tags #tags} => Hash<String,String>
|
2252
|
+
#
|
2253
|
+
# @example Request syntax with placeholder values
|
2254
|
+
#
|
2255
|
+
# resp = client.describe_world_export_job({
|
2256
|
+
# job: "Arn", # required
|
2257
|
+
# })
|
2258
|
+
#
|
2259
|
+
# @example Response structure
|
2260
|
+
#
|
2261
|
+
# resp.arn #=> String
|
2262
|
+
# resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "Canceling", "Canceled"
|
2263
|
+
# resp.created_at #=> Time
|
2264
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AccessDenied"
|
2265
|
+
# resp.failure_reason #=> String
|
2266
|
+
# resp.client_request_token #=> String
|
2267
|
+
# resp.worlds #=> Array
|
2268
|
+
# resp.worlds[0] #=> String
|
2269
|
+
# resp.output_location.s3_bucket #=> String
|
2270
|
+
# resp.output_location.s3_prefix #=> String
|
2271
|
+
# resp.iam_role #=> String
|
2272
|
+
# resp.tags #=> Hash
|
2273
|
+
# resp.tags["TagKey"] #=> String
|
2274
|
+
#
|
2275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJob AWS API Documentation
|
2276
|
+
#
|
2277
|
+
# @overload describe_world_export_job(params = {})
|
2278
|
+
# @param [Hash] params ({})
|
2279
|
+
def describe_world_export_job(params = {}, options = {})
|
2280
|
+
req = build_request(:describe_world_export_job, params)
|
2281
|
+
req.send_request(options)
|
2282
|
+
end
|
2283
|
+
|
2284
|
+
# Describes a world generation job.
|
2285
|
+
#
|
2286
|
+
# @option params [required, String] :job
|
2287
|
+
# The Amazon Resource Name (arn) of the world generation job to
|
2288
|
+
# describe.
|
2289
|
+
#
|
2290
|
+
# @return [Types::DescribeWorldGenerationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2291
|
+
#
|
2292
|
+
# * {Types::DescribeWorldGenerationJobResponse#arn #arn} => String
|
2293
|
+
# * {Types::DescribeWorldGenerationJobResponse#status #status} => String
|
2294
|
+
# * {Types::DescribeWorldGenerationJobResponse#created_at #created_at} => Time
|
2295
|
+
# * {Types::DescribeWorldGenerationJobResponse#failure_code #failure_code} => String
|
2296
|
+
# * {Types::DescribeWorldGenerationJobResponse#failure_reason #failure_reason} => String
|
2297
|
+
# * {Types::DescribeWorldGenerationJobResponse#client_request_token #client_request_token} => String
|
2298
|
+
# * {Types::DescribeWorldGenerationJobResponse#template #template} => String
|
2299
|
+
# * {Types::DescribeWorldGenerationJobResponse#world_count #world_count} => Types::WorldCount
|
2300
|
+
# * {Types::DescribeWorldGenerationJobResponse#finished_worlds_summary #finished_worlds_summary} => Types::FinishedWorldsSummary
|
2301
|
+
# * {Types::DescribeWorldGenerationJobResponse#tags #tags} => Hash<String,String>
|
2302
|
+
# * {Types::DescribeWorldGenerationJobResponse#world_tags #world_tags} => Hash<String,String>
|
2303
|
+
#
|
2304
|
+
# @example Request syntax with placeholder values
|
2305
|
+
#
|
2306
|
+
# resp = client.describe_world_generation_job({
|
2307
|
+
# job: "Arn", # required
|
2308
|
+
# })
|
2309
|
+
#
|
2310
|
+
# @example Response structure
|
2311
|
+
#
|
2312
|
+
# resp.arn #=> String
|
2313
|
+
# resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
|
2314
|
+
# resp.created_at #=> Time
|
2315
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
|
2316
|
+
# resp.failure_reason #=> String
|
2317
|
+
# resp.client_request_token #=> String
|
2318
|
+
# resp.template #=> String
|
2319
|
+
# resp.world_count.floorplan_count #=> Integer
|
2320
|
+
# resp.world_count.interior_count_per_floorplan #=> Integer
|
2321
|
+
# resp.finished_worlds_summary.finished_count #=> Integer
|
2322
|
+
# resp.finished_worlds_summary.succeeded_worlds #=> Array
|
2323
|
+
# resp.finished_worlds_summary.succeeded_worlds[0] #=> String
|
2324
|
+
# resp.finished_worlds_summary.failure_summary.total_failure_count #=> Integer
|
2325
|
+
# resp.finished_worlds_summary.failure_summary.failures #=> Array
|
2326
|
+
# resp.finished_worlds_summary.failure_summary.failures[0].failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
|
2327
|
+
# resp.finished_worlds_summary.failure_summary.failures[0].sample_failure_reason #=> String
|
2328
|
+
# resp.finished_worlds_summary.failure_summary.failures[0].failure_count #=> Integer
|
2329
|
+
# resp.tags #=> Hash
|
2330
|
+
# resp.tags["TagKey"] #=> String
|
2331
|
+
# resp.world_tags #=> Hash
|
2332
|
+
# resp.world_tags["TagKey"] #=> String
|
2333
|
+
#
|
2334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJob AWS API Documentation
|
2335
|
+
#
|
2336
|
+
# @overload describe_world_generation_job(params = {})
|
2337
|
+
# @param [Hash] params ({})
|
2338
|
+
def describe_world_generation_job(params = {}, options = {})
|
2339
|
+
req = build_request(:describe_world_generation_job, params)
|
2340
|
+
req.send_request(options)
|
2341
|
+
end
|
2342
|
+
|
2343
|
+
# Describes a world template.
|
2344
|
+
#
|
2345
|
+
# @option params [required, String] :template
|
2346
|
+
# The Amazon Resource Name (arn) of the world template you want to
|
2347
|
+
# describe.
|
2348
|
+
#
|
2349
|
+
# @return [Types::DescribeWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2350
|
+
#
|
2351
|
+
# * {Types::DescribeWorldTemplateResponse#arn #arn} => String
|
2352
|
+
# * {Types::DescribeWorldTemplateResponse#client_request_token #client_request_token} => String
|
2353
|
+
# * {Types::DescribeWorldTemplateResponse#name #name} => String
|
2354
|
+
# * {Types::DescribeWorldTemplateResponse#created_at #created_at} => Time
|
2355
|
+
# * {Types::DescribeWorldTemplateResponse#last_updated_at #last_updated_at} => Time
|
2356
|
+
# * {Types::DescribeWorldTemplateResponse#tags #tags} => Hash<String,String>
|
2357
|
+
#
|
2358
|
+
# @example Request syntax with placeholder values
|
2359
|
+
#
|
2360
|
+
# resp = client.describe_world_template({
|
2361
|
+
# template: "Arn", # required
|
2362
|
+
# })
|
2363
|
+
#
|
2364
|
+
# @example Response structure
|
2365
|
+
#
|
2366
|
+
# resp.arn #=> String
|
2367
|
+
# resp.client_request_token #=> String
|
2368
|
+
# resp.name #=> String
|
2369
|
+
# resp.created_at #=> Time
|
2370
|
+
# resp.last_updated_at #=> Time
|
2371
|
+
# resp.tags #=> Hash
|
2372
|
+
# resp.tags["TagKey"] #=> String
|
2373
|
+
#
|
2374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplate AWS API Documentation
|
2375
|
+
#
|
2376
|
+
# @overload describe_world_template(params = {})
|
2377
|
+
# @param [Hash] params ({})
|
2378
|
+
def describe_world_template(params = {}, options = {})
|
2379
|
+
req = build_request(:describe_world_template, params)
|
2380
|
+
req.send_request(options)
|
2381
|
+
end
|
2382
|
+
|
2383
|
+
# Gets the world template body.
|
2384
|
+
#
|
2385
|
+
# @option params [String] :template
|
2386
|
+
# The Amazon Resource Name (arn) of the world template.
|
2387
|
+
#
|
2388
|
+
# @option params [String] :generation_job
|
2389
|
+
# The Amazon Resource Name (arn) of the world generator job.
|
2390
|
+
#
|
2391
|
+
# @return [Types::GetWorldTemplateBodyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2392
|
+
#
|
2393
|
+
# * {Types::GetWorldTemplateBodyResponse#template_body #template_body} => String
|
2394
|
+
#
|
2395
|
+
# @example Request syntax with placeholder values
|
2396
|
+
#
|
2397
|
+
# resp = client.get_world_template_body({
|
2398
|
+
# template: "Arn",
|
2399
|
+
# generation_job: "Arn",
|
2400
|
+
# })
|
2401
|
+
#
|
2402
|
+
# @example Response structure
|
2403
|
+
#
|
2404
|
+
# resp.template_body #=> String
|
2405
|
+
#
|
2406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBody AWS API Documentation
|
2407
|
+
#
|
2408
|
+
# @overload get_world_template_body(params = {})
|
2409
|
+
# @param [Hash] params ({})
|
2410
|
+
def get_world_template_body(params = {}, options = {})
|
2411
|
+
req = build_request(:get_world_template_body, params)
|
2412
|
+
req.send_request(options)
|
2413
|
+
end
|
2414
|
+
|
1862
2415
|
# Returns a list of deployment jobs for a fleet. You can optionally
|
1863
2416
|
# provide filters to retrieve specific deployment jobs.
|
1864
2417
|
#
|
@@ -1872,11 +2425,12 @@ module Aws::RoboMaker
|
|
1872
2425
|
# or the status `Pending`.
|
1873
2426
|
#
|
1874
2427
|
# @option params [String] :next_token
|
1875
|
-
#
|
1876
|
-
#
|
1877
|
-
#
|
1878
|
-
#
|
1879
|
-
#
|
2428
|
+
# If the previous paginated request did not return all of the remaining
|
2429
|
+
# results, the response object's `nextToken` parameter value is set to
|
2430
|
+
# a token. To retrieve the next set of results, call
|
2431
|
+
# `ListDeploymentJobs` again and assign that token to the request
|
2432
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2433
|
+
# the previous response object's NextToken parameter is set to null.
|
1880
2434
|
#
|
1881
2435
|
# @option params [Integer] :max_results
|
1882
2436
|
# When this parameter is used, `ListDeploymentJobs` only returns
|
@@ -1946,10 +2500,12 @@ module Aws::RoboMaker
|
|
1946
2500
|
# retrieve specific fleets.
|
1947
2501
|
#
|
1948
2502
|
# @option params [String] :next_token
|
1949
|
-
#
|
1950
|
-
#
|
1951
|
-
#
|
1952
|
-
#
|
2503
|
+
# If the previous paginated request did not return all of the remaining
|
2504
|
+
# results, the response object's `nextToken` parameter value is set to
|
2505
|
+
# a token. To retrieve the next set of results, call `ListFleets` again
|
2506
|
+
# and assign that token to the request object's `nextToken` parameter.
|
2507
|
+
# If there are no remaining results, the previous response object's
|
2508
|
+
# NextToken parameter is set to null.
|
1953
2509
|
#
|
1954
2510
|
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
1955
2511
|
# to retrieve the next items in a list and not for other programmatic
|
@@ -2019,11 +2575,12 @@ module Aws::RoboMaker
|
|
2019
2575
|
# The version qualifier of the robot application.
|
2020
2576
|
#
|
2021
2577
|
# @option params [String] :next_token
|
2022
|
-
#
|
2023
|
-
#
|
2024
|
-
#
|
2025
|
-
#
|
2026
|
-
#
|
2578
|
+
# If the previous paginated request did not return all of the remaining
|
2579
|
+
# results, the response object's `nextToken` parameter value is set to
|
2580
|
+
# a token. To retrieve the next set of results, call
|
2581
|
+
# `ListRobotApplications` again and assign that token to the request
|
2582
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2583
|
+
# the previous response object's NextToken parameter is set to null.
|
2027
2584
|
#
|
2028
2585
|
# @option params [Integer] :max_results
|
2029
2586
|
# When this parameter is used, `ListRobotApplications` only returns
|
@@ -2085,10 +2642,12 @@ module Aws::RoboMaker
|
|
2085
2642
|
# retrieve specific robots.
|
2086
2643
|
#
|
2087
2644
|
# @option params [String] :next_token
|
2088
|
-
#
|
2089
|
-
#
|
2090
|
-
#
|
2091
|
-
#
|
2645
|
+
# If the previous paginated request did not return all of the remaining
|
2646
|
+
# results, the response object's `nextToken` parameter value is set to
|
2647
|
+
# a token. To retrieve the next set of results, call `ListRobots` again
|
2648
|
+
# and assign that token to the request object's `nextToken` parameter.
|
2649
|
+
# If there are no remaining results, the previous response object's
|
2650
|
+
# NextToken parameter is set to null.
|
2092
2651
|
#
|
2093
2652
|
# @option params [Integer] :max_results
|
2094
2653
|
# When this parameter is used, `ListRobots` only returns `maxResults`
|
@@ -2158,11 +2717,13 @@ module Aws::RoboMaker
|
|
2158
2717
|
# The version qualifier of the simulation application.
|
2159
2718
|
#
|
2160
2719
|
# @option params [String] :next_token
|
2161
|
-
#
|
2162
|
-
#
|
2163
|
-
#
|
2164
|
-
#
|
2165
|
-
#
|
2720
|
+
# If the previous paginated request did not return all of the remaining
|
2721
|
+
# results, the response object's `nextToken` parameter value is set to
|
2722
|
+
# a token. To retrieve the next set of results, call
|
2723
|
+
# `ListSimulationApplications` again and assign that token to the
|
2724
|
+
# request object's `nextToken` parameter. If there are no remaining
|
2725
|
+
# results, the previous response object's NextToken parameter is set to
|
2726
|
+
# null.
|
2166
2727
|
#
|
2167
2728
|
# @option params [Integer] :max_results
|
2168
2729
|
# When this parameter is used, `ListSimulationApplications` only returns
|
@@ -2226,11 +2787,12 @@ module Aws::RoboMaker
|
|
2226
2787
|
# filters to retrieve specific simulation batch jobs.
|
2227
2788
|
#
|
2228
2789
|
# @option params [String] :next_token
|
2229
|
-
#
|
2230
|
-
#
|
2231
|
-
#
|
2232
|
-
#
|
2233
|
-
#
|
2790
|
+
# If the previous paginated request did not return all of the remaining
|
2791
|
+
# results, the response object's `nextToken` parameter value is set to
|
2792
|
+
# a token. To retrieve the next set of results, call
|
2793
|
+
# `ListSimulationJobBatches` again and assign that token to the request
|
2794
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2795
|
+
# the previous response object's NextToken parameter is set to null.
|
2234
2796
|
#
|
2235
2797
|
# @option params [Integer] :max_results
|
2236
2798
|
# When this parameter is used, `ListSimulationJobBatches` only returns
|
@@ -2287,17 +2849,12 @@ module Aws::RoboMaker
|
|
2287
2849
|
# to retrieve specific simulation jobs.
|
2288
2850
|
#
|
2289
2851
|
# @option params [String] :next_token
|
2290
|
-
#
|
2291
|
-
#
|
2292
|
-
#
|
2293
|
-
#
|
2294
|
-
#
|
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>
|
2852
|
+
# If the previous paginated request did not return all of the remaining
|
2853
|
+
# results, the response object's `nextToken` parameter value is set to
|
2854
|
+
# a token. To retrieve the next set of results, call
|
2855
|
+
# `ListSimulationJobs` again and assign that token to the request
|
2856
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2857
|
+
# the previous response object's NextToken parameter is set to null.
|
2301
2858
|
#
|
2302
2859
|
# @option params [Integer] :max_results
|
2303
2860
|
# When this parameter is used, `ListSimulationJobs` only returns
|
@@ -2390,6 +2947,245 @@ module Aws::RoboMaker
|
|
2390
2947
|
req.send_request(options)
|
2391
2948
|
end
|
2392
2949
|
|
2950
|
+
# Lists world export jobs.
|
2951
|
+
#
|
2952
|
+
# @option params [String] :next_token
|
2953
|
+
# If the previous paginated request did not return all of the remaining
|
2954
|
+
# results, the response object's `nextToken` parameter value is set to
|
2955
|
+
# a token. To retrieve the next set of results, call
|
2956
|
+
# `ListWorldExportJobs` again and assign that token to the request
|
2957
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2958
|
+
# the previous response object's NextToken parameter is set to null.
|
2959
|
+
#
|
2960
|
+
# @option params [Integer] :max_results
|
2961
|
+
# When this parameter is used, `ListWorldExportJobs` only returns
|
2962
|
+
# `maxResults` results in a single page along with a `nextToken`
|
2963
|
+
# response element. The remaining results of the initial request can be
|
2964
|
+
# seen by sending another `ListWorldExportJobs` request with the
|
2965
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
2966
|
+
# this parameter is not used, then `ListWorldExportJobs` returns up to
|
2967
|
+
# 100 results and a `nextToken` value if applicable.
|
2968
|
+
#
|
2969
|
+
# @option params [Array<Types::Filter>] :filters
|
2970
|
+
# Optional filters to limit results. You can use `generationJobId` and
|
2971
|
+
# `templateId`.
|
2972
|
+
#
|
2973
|
+
# @return [Types::ListWorldExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2974
|
+
#
|
2975
|
+
# * {Types::ListWorldExportJobsResponse#world_export_job_summaries #world_export_job_summaries} => Array<Types::WorldExportJobSummary>
|
2976
|
+
# * {Types::ListWorldExportJobsResponse#next_token #next_token} => String
|
2977
|
+
#
|
2978
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2979
|
+
#
|
2980
|
+
# @example Request syntax with placeholder values
|
2981
|
+
#
|
2982
|
+
# resp = client.list_world_export_jobs({
|
2983
|
+
# next_token: "PaginationToken",
|
2984
|
+
# max_results: 1,
|
2985
|
+
# filters: [
|
2986
|
+
# {
|
2987
|
+
# name: "Name",
|
2988
|
+
# values: ["Name"],
|
2989
|
+
# },
|
2990
|
+
# ],
|
2991
|
+
# })
|
2992
|
+
#
|
2993
|
+
# @example Response structure
|
2994
|
+
#
|
2995
|
+
# resp.world_export_job_summaries #=> Array
|
2996
|
+
# resp.world_export_job_summaries[0].arn #=> String
|
2997
|
+
# resp.world_export_job_summaries[0].status #=> String, one of "Pending", "Running", "Completed", "Failed", "Canceling", "Canceled"
|
2998
|
+
# resp.world_export_job_summaries[0].created_at #=> Time
|
2999
|
+
# resp.world_export_job_summaries[0].worlds #=> Array
|
3000
|
+
# resp.world_export_job_summaries[0].worlds[0] #=> String
|
3001
|
+
# resp.next_token #=> String
|
3002
|
+
#
|
3003
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobs AWS API Documentation
|
3004
|
+
#
|
3005
|
+
# @overload list_world_export_jobs(params = {})
|
3006
|
+
# @param [Hash] params ({})
|
3007
|
+
def list_world_export_jobs(params = {}, options = {})
|
3008
|
+
req = build_request(:list_world_export_jobs, params)
|
3009
|
+
req.send_request(options)
|
3010
|
+
end
|
3011
|
+
|
3012
|
+
# Lists world generator jobs.
|
3013
|
+
#
|
3014
|
+
# @option params [String] :next_token
|
3015
|
+
# If the previous paginated request did not return all of the remaining
|
3016
|
+
# results, the response object's `nextToken` parameter value is set to
|
3017
|
+
# a token. To retrieve the next set of results, call
|
3018
|
+
# `ListWorldGenerationJobsRequest` again and assign that token to the
|
3019
|
+
# request object's `nextToken` parameter. If there are no remaining
|
3020
|
+
# results, the previous response object's NextToken parameter is set to
|
3021
|
+
# null.
|
3022
|
+
#
|
3023
|
+
# @option params [Integer] :max_results
|
3024
|
+
# When this parameter is used, `ListWorldGeneratorJobs` only returns
|
3025
|
+
# `maxResults` results in a single page along with a `nextToken`
|
3026
|
+
# response element. The remaining results of the initial request can be
|
3027
|
+
# seen by sending another `ListWorldGeneratorJobs` request with the
|
3028
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
3029
|
+
# this parameter is not used, then `ListWorldGeneratorJobs` returns up
|
3030
|
+
# to 100 results and a `nextToken` value if applicable.
|
3031
|
+
#
|
3032
|
+
# @option params [Array<Types::Filter>] :filters
|
3033
|
+
# Optional filters to limit results. You can use `status` and
|
3034
|
+
# `templateId`.
|
3035
|
+
#
|
3036
|
+
# @return [Types::ListWorldGenerationJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3037
|
+
#
|
3038
|
+
# * {Types::ListWorldGenerationJobsResponse#world_generation_job_summaries #world_generation_job_summaries} => Array<Types::WorldGenerationJobSummary>
|
3039
|
+
# * {Types::ListWorldGenerationJobsResponse#next_token #next_token} => String
|
3040
|
+
#
|
3041
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3042
|
+
#
|
3043
|
+
# @example Request syntax with placeholder values
|
3044
|
+
#
|
3045
|
+
# resp = client.list_world_generation_jobs({
|
3046
|
+
# next_token: "PaginationToken",
|
3047
|
+
# max_results: 1,
|
3048
|
+
# filters: [
|
3049
|
+
# {
|
3050
|
+
# name: "Name",
|
3051
|
+
# values: ["Name"],
|
3052
|
+
# },
|
3053
|
+
# ],
|
3054
|
+
# })
|
3055
|
+
#
|
3056
|
+
# @example Response structure
|
3057
|
+
#
|
3058
|
+
# resp.world_generation_job_summaries #=> Array
|
3059
|
+
# resp.world_generation_job_summaries[0].arn #=> String
|
3060
|
+
# resp.world_generation_job_summaries[0].template #=> String
|
3061
|
+
# resp.world_generation_job_summaries[0].created_at #=> Time
|
3062
|
+
# resp.world_generation_job_summaries[0].status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
|
3063
|
+
# resp.world_generation_job_summaries[0].world_count.floorplan_count #=> Integer
|
3064
|
+
# resp.world_generation_job_summaries[0].world_count.interior_count_per_floorplan #=> Integer
|
3065
|
+
# resp.world_generation_job_summaries[0].succeeded_world_count #=> Integer
|
3066
|
+
# resp.world_generation_job_summaries[0].failed_world_count #=> Integer
|
3067
|
+
# resp.next_token #=> String
|
3068
|
+
#
|
3069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobs AWS API Documentation
|
3070
|
+
#
|
3071
|
+
# @overload list_world_generation_jobs(params = {})
|
3072
|
+
# @param [Hash] params ({})
|
3073
|
+
def list_world_generation_jobs(params = {}, options = {})
|
3074
|
+
req = build_request(:list_world_generation_jobs, params)
|
3075
|
+
req.send_request(options)
|
3076
|
+
end
|
3077
|
+
|
3078
|
+
# Lists world templates.
|
3079
|
+
#
|
3080
|
+
# @option params [String] :next_token
|
3081
|
+
# If the previous paginated request did not return all of the remaining
|
3082
|
+
# results, the response object's `nextToken` parameter value is set to
|
3083
|
+
# a token. To retrieve the next set of results, call
|
3084
|
+
# `ListWorldTemplates` again and assign that token to the request
|
3085
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3086
|
+
# the previous response object's NextToken parameter is set to null.
|
3087
|
+
#
|
3088
|
+
# @option params [Integer] :max_results
|
3089
|
+
# When this parameter is used, `ListWorldTemplates` only returns
|
3090
|
+
# `maxResults` results in a single page along with a `nextToken`
|
3091
|
+
# response element. The remaining results of the initial request can be
|
3092
|
+
# seen by sending another `ListWorldTemplates` request with the returned
|
3093
|
+
# `nextToken` value. This value can be between 1 and 100. If this
|
3094
|
+
# parameter is not used, then `ListWorldTemplates` returns up to 100
|
3095
|
+
# results and a `nextToken` value if applicable.
|
3096
|
+
#
|
3097
|
+
# @return [Types::ListWorldTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3098
|
+
#
|
3099
|
+
# * {Types::ListWorldTemplatesResponse#template_summaries #template_summaries} => Array<Types::TemplateSummary>
|
3100
|
+
# * {Types::ListWorldTemplatesResponse#next_token #next_token} => String
|
3101
|
+
#
|
3102
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3103
|
+
#
|
3104
|
+
# @example Request syntax with placeholder values
|
3105
|
+
#
|
3106
|
+
# resp = client.list_world_templates({
|
3107
|
+
# next_token: "PaginationToken",
|
3108
|
+
# max_results: 1,
|
3109
|
+
# })
|
3110
|
+
#
|
3111
|
+
# @example Response structure
|
3112
|
+
#
|
3113
|
+
# resp.template_summaries #=> Array
|
3114
|
+
# resp.template_summaries[0].arn #=> String
|
3115
|
+
# resp.template_summaries[0].created_at #=> Time
|
3116
|
+
# resp.template_summaries[0].last_updated_at #=> Time
|
3117
|
+
# resp.template_summaries[0].name #=> String
|
3118
|
+
# resp.next_token #=> String
|
3119
|
+
#
|
3120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplates AWS API Documentation
|
3121
|
+
#
|
3122
|
+
# @overload list_world_templates(params = {})
|
3123
|
+
# @param [Hash] params ({})
|
3124
|
+
def list_world_templates(params = {}, options = {})
|
3125
|
+
req = build_request(:list_world_templates, params)
|
3126
|
+
req.send_request(options)
|
3127
|
+
end
|
3128
|
+
|
3129
|
+
# Lists worlds.
|
3130
|
+
#
|
3131
|
+
# @option params [String] :next_token
|
3132
|
+
# If the previous paginated request did not return all of the remaining
|
3133
|
+
# results, the response object's `nextToken` parameter value is set to
|
3134
|
+
# a token. To retrieve the next set of results, call `ListWorlds` again
|
3135
|
+
# and assign that token to the request object's `nextToken` parameter.
|
3136
|
+
# If there are no remaining results, the previous response object's
|
3137
|
+
# NextToken parameter is set to null.
|
3138
|
+
#
|
3139
|
+
# @option params [Integer] :max_results
|
3140
|
+
# When this parameter is used, `ListWorlds` only returns `maxResults`
|
3141
|
+
# results in a single page along with a `nextToken` response element.
|
3142
|
+
# The remaining results of the initial request can be seen by sending
|
3143
|
+
# another `ListWorlds` request with the returned `nextToken` value. This
|
3144
|
+
# value can be between 1 and 100. If this parameter is not used, then
|
3145
|
+
# `ListWorlds` returns up to 100 results and a `nextToken` value if
|
3146
|
+
# applicable.
|
3147
|
+
#
|
3148
|
+
# @option params [Array<Types::Filter>] :filters
|
3149
|
+
# Optional filters to limit results. You can use `status`.
|
3150
|
+
#
|
3151
|
+
# @return [Types::ListWorldsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3152
|
+
#
|
3153
|
+
# * {Types::ListWorldsResponse#world_summaries #world_summaries} => Array<Types::WorldSummary>
|
3154
|
+
# * {Types::ListWorldsResponse#next_token #next_token} => String
|
3155
|
+
#
|
3156
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3157
|
+
#
|
3158
|
+
# @example Request syntax with placeholder values
|
3159
|
+
#
|
3160
|
+
# resp = client.list_worlds({
|
3161
|
+
# next_token: "PaginationToken",
|
3162
|
+
# max_results: 1,
|
3163
|
+
# filters: [
|
3164
|
+
# {
|
3165
|
+
# name: "Name",
|
3166
|
+
# values: ["Name"],
|
3167
|
+
# },
|
3168
|
+
# ],
|
3169
|
+
# })
|
3170
|
+
#
|
3171
|
+
# @example Response structure
|
3172
|
+
#
|
3173
|
+
# resp.world_summaries #=> Array
|
3174
|
+
# resp.world_summaries[0].arn #=> String
|
3175
|
+
# resp.world_summaries[0].created_at #=> Time
|
3176
|
+
# resp.world_summaries[0].generation_job #=> String
|
3177
|
+
# resp.world_summaries[0].template #=> String
|
3178
|
+
# resp.next_token #=> String
|
3179
|
+
#
|
3180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorlds AWS API Documentation
|
3181
|
+
#
|
3182
|
+
# @overload list_worlds(params = {})
|
3183
|
+
# @param [Hash] params ({})
|
3184
|
+
def list_worlds(params = {}, options = {})
|
3185
|
+
req = build_request(:list_worlds, params)
|
3186
|
+
req.send_request(options)
|
3187
|
+
end
|
3188
|
+
|
2393
3189
|
# Registers a robot with a fleet.
|
2394
3190
|
#
|
2395
3191
|
# @option params [required, String] :fleet
|
@@ -2545,6 +3341,11 @@ module Aws::RoboMaker
|
|
2545
3341
|
# },
|
2546
3342
|
# stream_ui: false,
|
2547
3343
|
# },
|
3344
|
+
# world_configs: [
|
3345
|
+
# {
|
3346
|
+
# world: "Arn",
|
3347
|
+
# },
|
3348
|
+
# ],
|
2548
3349
|
# },
|
2549
3350
|
# ],
|
2550
3351
|
# data_sources: [
|
@@ -2614,6 +3415,8 @@ module Aws::RoboMaker
|
|
2614
3415
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2615
3416
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2616
3417
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
3418
|
+
# resp.failed_requests[0].request.simulation_applications[0].world_configs #=> Array
|
3419
|
+
# resp.failed_requests[0].request.simulation_applications[0].world_configs[0].world #=> String
|
2617
3420
|
# resp.failed_requests[0].request.data_sources #=> Array
|
2618
3421
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
2619
3422
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -2662,6 +3465,8 @@ module Aws::RoboMaker
|
|
2662
3465
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2663
3466
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2664
3467
|
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
3468
|
+
# resp.pending_requests[0].simulation_applications[0].world_configs #=> Array
|
3469
|
+
# resp.pending_requests[0].simulation_applications[0].world_configs[0].world #=> String
|
2665
3470
|
# resp.pending_requests[0].data_sources #=> Array
|
2666
3471
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
2667
3472
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -2991,6 +3796,55 @@ module Aws::RoboMaker
|
|
2991
3796
|
req.send_request(options)
|
2992
3797
|
end
|
2993
3798
|
|
3799
|
+
# Updates a world template.
|
3800
|
+
#
|
3801
|
+
# @option params [required, String] :template
|
3802
|
+
# The Amazon Resource Name (arn) of the world template to update.
|
3803
|
+
#
|
3804
|
+
# @option params [String] :name
|
3805
|
+
# The name of the template.
|
3806
|
+
#
|
3807
|
+
# @option params [String] :template_body
|
3808
|
+
# The world template body.
|
3809
|
+
#
|
3810
|
+
# @option params [Types::TemplateLocation] :template_location
|
3811
|
+
# The location of the world template.
|
3812
|
+
#
|
3813
|
+
# @return [Types::UpdateWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3814
|
+
#
|
3815
|
+
# * {Types::UpdateWorldTemplateResponse#arn #arn} => String
|
3816
|
+
# * {Types::UpdateWorldTemplateResponse#name #name} => String
|
3817
|
+
# * {Types::UpdateWorldTemplateResponse#created_at #created_at} => Time
|
3818
|
+
# * {Types::UpdateWorldTemplateResponse#last_updated_at #last_updated_at} => Time
|
3819
|
+
#
|
3820
|
+
# @example Request syntax with placeholder values
|
3821
|
+
#
|
3822
|
+
# resp = client.update_world_template({
|
3823
|
+
# template: "Arn", # required
|
3824
|
+
# name: "TemplateName",
|
3825
|
+
# template_body: "Json",
|
3826
|
+
# template_location: {
|
3827
|
+
# s3_bucket: "S3Bucket", # required
|
3828
|
+
# s3_key: "S3Key", # required
|
3829
|
+
# },
|
3830
|
+
# })
|
3831
|
+
#
|
3832
|
+
# @example Response structure
|
3833
|
+
#
|
3834
|
+
# resp.arn #=> String
|
3835
|
+
# resp.name #=> String
|
3836
|
+
# resp.created_at #=> Time
|
3837
|
+
# resp.last_updated_at #=> Time
|
3838
|
+
#
|
3839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateWorldTemplate AWS API Documentation
|
3840
|
+
#
|
3841
|
+
# @overload update_world_template(params = {})
|
3842
|
+
# @param [Hash] params ({})
|
3843
|
+
def update_world_template(params = {}, options = {})
|
3844
|
+
req = build_request(:update_world_template, params)
|
3845
|
+
req.send_request(options)
|
3846
|
+
end
|
3847
|
+
|
2994
3848
|
# @!endgroup
|
2995
3849
|
|
2996
3850
|
# @param params ({})
|
@@ -3004,7 +3858,7 @@ module Aws::RoboMaker
|
|
3004
3858
|
params: params,
|
3005
3859
|
config: config)
|
3006
3860
|
context[:gem_name] = 'aws-sdk-robomaker'
|
3007
|
-
context[:gem_version] = '1.
|
3861
|
+
context[:gem_version] = '1.31.0'
|
3008
3862
|
Seahorse::Client::Request.new(handlers, context)
|
3009
3863
|
end
|
3010
3864
|
|