aws-sdk-robomaker 1.25.1 → 1.30.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 +6 -3
- data/lib/aws-sdk-robomaker/client.rb +890 -47
- data/lib/aws-sdk-robomaker/client_api.rb +528 -0
- data/lib/aws-sdk-robomaker/errors.rb +2 -0
- data/lib/aws-sdk-robomaker/resource.rb +2 -0
- data/lib/aws-sdk-robomaker/types.rb +2560 -796
- 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: 97f1e98eca4d78ba6d2b6b48147a513bafc589a0b00c4e73da7036114d45567e
|
4
|
+
data.tar.gz: fc89a5068d9ac947845f5abd0af9f0a8dda395ee5a72ace2eab54c01f2625914
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b8b3ac0883d099742ad131f17b1fa6057f202a159c4d2879910bdf2cbf38ea3e21d2650c0c9aa149952dd50bdcc7ee1ed16fad4c2a1a6102a96882e6f764b27
|
7
|
+
data.tar.gz: 2ccde947cfd106b429f87849d6a9547e4a90c0b930dea8ef702a86e5181cbf091d1eca577ff7fd59359c64882ba0f89c86e335d19ed56a30c278057ef8eca108
|
data/lib/aws-sdk-robomaker.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -25,7 +28,7 @@ require_relative 'aws-sdk-robomaker/customizations'
|
|
25
28
|
# structure.
|
26
29
|
#
|
27
30
|
# robo_maker = Aws::RoboMaker::Client.new
|
28
|
-
# resp = robo_maker.
|
31
|
+
# resp = robo_maker.batch_delete_worlds(params)
|
29
32
|
#
|
30
33
|
# See {Client} for more information.
|
31
34
|
#
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-robomaker/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::RoboMaker
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.30.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::RoboMaker
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::RoboMaker
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -310,6 +327,36 @@ module Aws::RoboMaker
|
|
310
327
|
|
311
328
|
# @!group API Operations
|
312
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
|
+
|
313
360
|
# Describes one or more simulation jobs.
|
314
361
|
#
|
315
362
|
# @option params [required, Array<String>] :jobs
|
@@ -368,6 +415,8 @@ module Aws::RoboMaker
|
|
368
415
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
369
416
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
370
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
|
371
420
|
# resp.jobs[0].data_sources #=> Array
|
372
421
|
# resp.jobs[0].data_sources[0].name #=> String
|
373
422
|
# resp.jobs[0].data_sources[0].s3_bucket #=> String
|
@@ -466,6 +515,50 @@ module Aws::RoboMaker
|
|
466
515
|
req.send_request(options)
|
467
516
|
end
|
468
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
|
+
|
469
562
|
# Deploys a specific version of a robot application to robots in a
|
470
563
|
# fleet.
|
471
564
|
#
|
@@ -1105,6 +1198,11 @@ module Aws::RoboMaker
|
|
1105
1198
|
# },
|
1106
1199
|
# stream_ui: false,
|
1107
1200
|
# },
|
1201
|
+
# world_configs: [
|
1202
|
+
# {
|
1203
|
+
# world: "Arn",
|
1204
|
+
# },
|
1205
|
+
# ],
|
1108
1206
|
# },
|
1109
1207
|
# ],
|
1110
1208
|
# data_sources: [
|
@@ -1166,6 +1264,8 @@ module Aws::RoboMaker
|
|
1166
1264
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1167
1265
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1168
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
|
1169
1269
|
# resp.data_sources #=> Array
|
1170
1270
|
# resp.data_sources[0].name #=> String
|
1171
1271
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1191,6 +1291,205 @@ module Aws::RoboMaker
|
|
1191
1291
|
req.send_request(options)
|
1192
1292
|
end
|
1193
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
|
+
# @return [Types::CreateWorldGenerationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1387
|
+
#
|
1388
|
+
# * {Types::CreateWorldGenerationJobResponse#arn #arn} => String
|
1389
|
+
# * {Types::CreateWorldGenerationJobResponse#status #status} => String
|
1390
|
+
# * {Types::CreateWorldGenerationJobResponse#created_at #created_at} => Time
|
1391
|
+
# * {Types::CreateWorldGenerationJobResponse#failure_code #failure_code} => String
|
1392
|
+
# * {Types::CreateWorldGenerationJobResponse#client_request_token #client_request_token} => String
|
1393
|
+
# * {Types::CreateWorldGenerationJobResponse#template #template} => String
|
1394
|
+
# * {Types::CreateWorldGenerationJobResponse#world_count #world_count} => Types::WorldCount
|
1395
|
+
# * {Types::CreateWorldGenerationJobResponse#tags #tags} => Hash<String,String>
|
1396
|
+
#
|
1397
|
+
# @example Request syntax with placeholder values
|
1398
|
+
#
|
1399
|
+
# resp = client.create_world_generation_job({
|
1400
|
+
# client_request_token: "ClientRequestToken",
|
1401
|
+
# template: "Arn", # required
|
1402
|
+
# world_count: { # required
|
1403
|
+
# floorplan_count: 1,
|
1404
|
+
# interior_count_per_floorplan: 1,
|
1405
|
+
# },
|
1406
|
+
# tags: {
|
1407
|
+
# "TagKey" => "TagValue",
|
1408
|
+
# },
|
1409
|
+
# })
|
1410
|
+
#
|
1411
|
+
# @example Response structure
|
1412
|
+
#
|
1413
|
+
# resp.arn #=> String
|
1414
|
+
# resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
|
1415
|
+
# resp.created_at #=> Time
|
1416
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
|
1417
|
+
# resp.client_request_token #=> String
|
1418
|
+
# resp.template #=> String
|
1419
|
+
# resp.world_count.floorplan_count #=> Integer
|
1420
|
+
# resp.world_count.interior_count_per_floorplan #=> Integer
|
1421
|
+
# resp.tags #=> Hash
|
1422
|
+
# resp.tags["TagKey"] #=> String
|
1423
|
+
#
|
1424
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJob AWS API Documentation
|
1425
|
+
#
|
1426
|
+
# @overload create_world_generation_job(params = {})
|
1427
|
+
# @param [Hash] params ({})
|
1428
|
+
def create_world_generation_job(params = {}, options = {})
|
1429
|
+
req = build_request(:create_world_generation_job, params)
|
1430
|
+
req.send_request(options)
|
1431
|
+
end
|
1432
|
+
|
1433
|
+
# Creates a world template.
|
1434
|
+
#
|
1435
|
+
# @option params [String] :client_request_token
|
1436
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1437
|
+
# idempotency of the request.
|
1438
|
+
#
|
1439
|
+
# @option params [String] :name
|
1440
|
+
# The name of the world template.
|
1441
|
+
#
|
1442
|
+
# @option params [String] :template_body
|
1443
|
+
# The world template body.
|
1444
|
+
#
|
1445
|
+
# @option params [Types::TemplateLocation] :template_location
|
1446
|
+
# The location of the world template.
|
1447
|
+
#
|
1448
|
+
# @option params [Hash<String,String>] :tags
|
1449
|
+
# A map that contains tag keys and tag values that are attached to the
|
1450
|
+
# world template.
|
1451
|
+
#
|
1452
|
+
# @return [Types::CreateWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1453
|
+
#
|
1454
|
+
# * {Types::CreateWorldTemplateResponse#arn #arn} => String
|
1455
|
+
# * {Types::CreateWorldTemplateResponse#client_request_token #client_request_token} => String
|
1456
|
+
# * {Types::CreateWorldTemplateResponse#created_at #created_at} => Time
|
1457
|
+
# * {Types::CreateWorldTemplateResponse#name #name} => String
|
1458
|
+
# * {Types::CreateWorldTemplateResponse#tags #tags} => Hash<String,String>
|
1459
|
+
#
|
1460
|
+
# @example Request syntax with placeholder values
|
1461
|
+
#
|
1462
|
+
# resp = client.create_world_template({
|
1463
|
+
# client_request_token: "ClientRequestToken",
|
1464
|
+
# name: "TemplateName",
|
1465
|
+
# template_body: "Json",
|
1466
|
+
# template_location: {
|
1467
|
+
# s3_bucket: "S3Bucket", # required
|
1468
|
+
# s3_key: "S3Key", # required
|
1469
|
+
# },
|
1470
|
+
# tags: {
|
1471
|
+
# "TagKey" => "TagValue",
|
1472
|
+
# },
|
1473
|
+
# })
|
1474
|
+
#
|
1475
|
+
# @example Response structure
|
1476
|
+
#
|
1477
|
+
# resp.arn #=> String
|
1478
|
+
# resp.client_request_token #=> String
|
1479
|
+
# resp.created_at #=> Time
|
1480
|
+
# resp.name #=> String
|
1481
|
+
# resp.tags #=> Hash
|
1482
|
+
# resp.tags["TagKey"] #=> String
|
1483
|
+
#
|
1484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplate AWS API Documentation
|
1485
|
+
#
|
1486
|
+
# @overload create_world_template(params = {})
|
1487
|
+
# @param [Hash] params ({})
|
1488
|
+
def create_world_template(params = {}, options = {})
|
1489
|
+
req = build_request(:create_world_template, params)
|
1490
|
+
req.send_request(options)
|
1491
|
+
end
|
1492
|
+
|
1194
1493
|
# Deletes a fleet.
|
1195
1494
|
#
|
1196
1495
|
# @option params [required, String] :fleet
|
@@ -1287,6 +1586,29 @@ module Aws::RoboMaker
|
|
1287
1586
|
req.send_request(options)
|
1288
1587
|
end
|
1289
1588
|
|
1589
|
+
# Deletes a world template.
|
1590
|
+
#
|
1591
|
+
# @option params [required, String] :template
|
1592
|
+
# The Amazon Resource Name (arn) of the world template you want to
|
1593
|
+
# delete.
|
1594
|
+
#
|
1595
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1596
|
+
#
|
1597
|
+
# @example Request syntax with placeholder values
|
1598
|
+
#
|
1599
|
+
# resp = client.delete_world_template({
|
1600
|
+
# template: "Arn", # required
|
1601
|
+
# })
|
1602
|
+
#
|
1603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplate AWS API Documentation
|
1604
|
+
#
|
1605
|
+
# @overload delete_world_template(params = {})
|
1606
|
+
# @param [Hash] params ({})
|
1607
|
+
def delete_world_template(params = {}, options = {})
|
1608
|
+
req = build_request(:delete_world_template, params)
|
1609
|
+
req.send_request(options)
|
1610
|
+
end
|
1611
|
+
|
1290
1612
|
# Deregisters a robot.
|
1291
1613
|
#
|
1292
1614
|
# @option params [required, String] :fleet
|
@@ -1676,6 +1998,8 @@ module Aws::RoboMaker
|
|
1676
1998
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1677
1999
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1678
2000
|
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2001
|
+
# resp.simulation_applications[0].world_configs #=> Array
|
2002
|
+
# resp.simulation_applications[0].world_configs[0].world #=> String
|
1679
2003
|
# resp.data_sources #=> Array
|
1680
2004
|
# resp.data_sources[0].name #=> String
|
1681
2005
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1773,6 +2097,8 @@ module Aws::RoboMaker
|
|
1773
2097
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1774
2098
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1775
2099
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2100
|
+
# resp.failed_requests[0].request.simulation_applications[0].world_configs #=> Array
|
2101
|
+
# resp.failed_requests[0].request.simulation_applications[0].world_configs[0].world #=> String
|
1776
2102
|
# resp.failed_requests[0].request.data_sources #=> Array
|
1777
2103
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
1778
2104
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -1821,6 +2147,8 @@ module Aws::RoboMaker
|
|
1821
2147
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1822
2148
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1823
2149
|
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2150
|
+
# resp.pending_requests[0].simulation_applications[0].world_configs #=> Array
|
2151
|
+
# resp.pending_requests[0].simulation_applications[0].world_configs[0].world #=> String
|
1824
2152
|
# resp.pending_requests[0].data_sources #=> Array
|
1825
2153
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
1826
2154
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -1857,6 +2185,220 @@ module Aws::RoboMaker
|
|
1857
2185
|
req.send_request(options)
|
1858
2186
|
end
|
1859
2187
|
|
2188
|
+
# Describes a world.
|
2189
|
+
#
|
2190
|
+
# @option params [required, String] :world
|
2191
|
+
# The Amazon Resource Name (arn) of the world you want to describe.
|
2192
|
+
#
|
2193
|
+
# @return [Types::DescribeWorldResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2194
|
+
#
|
2195
|
+
# * {Types::DescribeWorldResponse#arn #arn} => String
|
2196
|
+
# * {Types::DescribeWorldResponse#generation_job #generation_job} => String
|
2197
|
+
# * {Types::DescribeWorldResponse#template #template} => String
|
2198
|
+
# * {Types::DescribeWorldResponse#created_at #created_at} => Time
|
2199
|
+
# * {Types::DescribeWorldResponse#tags #tags} => Hash<String,String>
|
2200
|
+
#
|
2201
|
+
# @example Request syntax with placeholder values
|
2202
|
+
#
|
2203
|
+
# resp = client.describe_world({
|
2204
|
+
# world: "Arn", # required
|
2205
|
+
# })
|
2206
|
+
#
|
2207
|
+
# @example Response structure
|
2208
|
+
#
|
2209
|
+
# resp.arn #=> String
|
2210
|
+
# resp.generation_job #=> String
|
2211
|
+
# resp.template #=> String
|
2212
|
+
# resp.created_at #=> Time
|
2213
|
+
# resp.tags #=> Hash
|
2214
|
+
# resp.tags["TagKey"] #=> String
|
2215
|
+
#
|
2216
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorld AWS API Documentation
|
2217
|
+
#
|
2218
|
+
# @overload describe_world(params = {})
|
2219
|
+
# @param [Hash] params ({})
|
2220
|
+
def describe_world(params = {}, options = {})
|
2221
|
+
req = build_request(:describe_world, params)
|
2222
|
+
req.send_request(options)
|
2223
|
+
end
|
2224
|
+
|
2225
|
+
# Describes a world export job.
|
2226
|
+
#
|
2227
|
+
# @option params [required, String] :job
|
2228
|
+
# The Amazon Resource Name (arn) of the world export job to describe.
|
2229
|
+
#
|
2230
|
+
# @return [Types::DescribeWorldExportJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2231
|
+
#
|
2232
|
+
# * {Types::DescribeWorldExportJobResponse#arn #arn} => String
|
2233
|
+
# * {Types::DescribeWorldExportJobResponse#status #status} => String
|
2234
|
+
# * {Types::DescribeWorldExportJobResponse#created_at #created_at} => Time
|
2235
|
+
# * {Types::DescribeWorldExportJobResponse#failure_code #failure_code} => String
|
2236
|
+
# * {Types::DescribeWorldExportJobResponse#failure_reason #failure_reason} => String
|
2237
|
+
# * {Types::DescribeWorldExportJobResponse#client_request_token #client_request_token} => String
|
2238
|
+
# * {Types::DescribeWorldExportJobResponse#worlds #worlds} => Array<String>
|
2239
|
+
# * {Types::DescribeWorldExportJobResponse#output_location #output_location} => Types::OutputLocation
|
2240
|
+
# * {Types::DescribeWorldExportJobResponse#iam_role #iam_role} => String
|
2241
|
+
# * {Types::DescribeWorldExportJobResponse#tags #tags} => Hash<String,String>
|
2242
|
+
#
|
2243
|
+
# @example Request syntax with placeholder values
|
2244
|
+
#
|
2245
|
+
# resp = client.describe_world_export_job({
|
2246
|
+
# job: "Arn", # required
|
2247
|
+
# })
|
2248
|
+
#
|
2249
|
+
# @example Response structure
|
2250
|
+
#
|
2251
|
+
# resp.arn #=> String
|
2252
|
+
# resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "Canceling", "Canceled"
|
2253
|
+
# resp.created_at #=> Time
|
2254
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AccessDenied"
|
2255
|
+
# resp.failure_reason #=> String
|
2256
|
+
# resp.client_request_token #=> String
|
2257
|
+
# resp.worlds #=> Array
|
2258
|
+
# resp.worlds[0] #=> String
|
2259
|
+
# resp.output_location.s3_bucket #=> String
|
2260
|
+
# resp.output_location.s3_prefix #=> String
|
2261
|
+
# resp.iam_role #=> String
|
2262
|
+
# resp.tags #=> Hash
|
2263
|
+
# resp.tags["TagKey"] #=> String
|
2264
|
+
#
|
2265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJob AWS API Documentation
|
2266
|
+
#
|
2267
|
+
# @overload describe_world_export_job(params = {})
|
2268
|
+
# @param [Hash] params ({})
|
2269
|
+
def describe_world_export_job(params = {}, options = {})
|
2270
|
+
req = build_request(:describe_world_export_job, params)
|
2271
|
+
req.send_request(options)
|
2272
|
+
end
|
2273
|
+
|
2274
|
+
# Describes a world generation job.
|
2275
|
+
#
|
2276
|
+
# @option params [required, String] :job
|
2277
|
+
# The Amazon Resource Name (arn) of the world generation job to
|
2278
|
+
# describe.
|
2279
|
+
#
|
2280
|
+
# @return [Types::DescribeWorldGenerationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2281
|
+
#
|
2282
|
+
# * {Types::DescribeWorldGenerationJobResponse#arn #arn} => String
|
2283
|
+
# * {Types::DescribeWorldGenerationJobResponse#status #status} => String
|
2284
|
+
# * {Types::DescribeWorldGenerationJobResponse#created_at #created_at} => Time
|
2285
|
+
# * {Types::DescribeWorldGenerationJobResponse#failure_code #failure_code} => String
|
2286
|
+
# * {Types::DescribeWorldGenerationJobResponse#failure_reason #failure_reason} => String
|
2287
|
+
# * {Types::DescribeWorldGenerationJobResponse#client_request_token #client_request_token} => String
|
2288
|
+
# * {Types::DescribeWorldGenerationJobResponse#template #template} => String
|
2289
|
+
# * {Types::DescribeWorldGenerationJobResponse#world_count #world_count} => Types::WorldCount
|
2290
|
+
# * {Types::DescribeWorldGenerationJobResponse#finished_worlds_summary #finished_worlds_summary} => Types::FinishedWorldsSummary
|
2291
|
+
# * {Types::DescribeWorldGenerationJobResponse#tags #tags} => Hash<String,String>
|
2292
|
+
#
|
2293
|
+
# @example Request syntax with placeholder values
|
2294
|
+
#
|
2295
|
+
# resp = client.describe_world_generation_job({
|
2296
|
+
# job: "Arn", # required
|
2297
|
+
# })
|
2298
|
+
#
|
2299
|
+
# @example Response structure
|
2300
|
+
#
|
2301
|
+
# resp.arn #=> String
|
2302
|
+
# resp.status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
|
2303
|
+
# resp.created_at #=> Time
|
2304
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
|
2305
|
+
# resp.failure_reason #=> String
|
2306
|
+
# resp.client_request_token #=> String
|
2307
|
+
# resp.template #=> String
|
2308
|
+
# resp.world_count.floorplan_count #=> Integer
|
2309
|
+
# resp.world_count.interior_count_per_floorplan #=> Integer
|
2310
|
+
# resp.finished_worlds_summary.finished_count #=> Integer
|
2311
|
+
# resp.finished_worlds_summary.succeeded_worlds #=> Array
|
2312
|
+
# resp.finished_worlds_summary.succeeded_worlds[0] #=> String
|
2313
|
+
# resp.finished_worlds_summary.failure_summary.total_failure_count #=> Integer
|
2314
|
+
# resp.finished_worlds_summary.failure_summary.failures #=> Array
|
2315
|
+
# resp.finished_worlds_summary.failure_summary.failures[0].failure_code #=> String, one of "InternalServiceError", "LimitExceeded", "ResourceNotFound", "RequestThrottled", "InvalidInput", "AllWorldGenerationFailed"
|
2316
|
+
# resp.finished_worlds_summary.failure_summary.failures[0].sample_failure_reason #=> String
|
2317
|
+
# resp.finished_worlds_summary.failure_summary.failures[0].failure_count #=> Integer
|
2318
|
+
# resp.tags #=> Hash
|
2319
|
+
# resp.tags["TagKey"] #=> String
|
2320
|
+
#
|
2321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJob AWS API Documentation
|
2322
|
+
#
|
2323
|
+
# @overload describe_world_generation_job(params = {})
|
2324
|
+
# @param [Hash] params ({})
|
2325
|
+
def describe_world_generation_job(params = {}, options = {})
|
2326
|
+
req = build_request(:describe_world_generation_job, params)
|
2327
|
+
req.send_request(options)
|
2328
|
+
end
|
2329
|
+
|
2330
|
+
# Describes a world template.
|
2331
|
+
#
|
2332
|
+
# @option params [required, String] :template
|
2333
|
+
# The Amazon Resource Name (arn) of the world template you want to
|
2334
|
+
# describe.
|
2335
|
+
#
|
2336
|
+
# @return [Types::DescribeWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2337
|
+
#
|
2338
|
+
# * {Types::DescribeWorldTemplateResponse#arn #arn} => String
|
2339
|
+
# * {Types::DescribeWorldTemplateResponse#client_request_token #client_request_token} => String
|
2340
|
+
# * {Types::DescribeWorldTemplateResponse#name #name} => String
|
2341
|
+
# * {Types::DescribeWorldTemplateResponse#created_at #created_at} => Time
|
2342
|
+
# * {Types::DescribeWorldTemplateResponse#last_updated_at #last_updated_at} => Time
|
2343
|
+
# * {Types::DescribeWorldTemplateResponse#tags #tags} => Hash<String,String>
|
2344
|
+
#
|
2345
|
+
# @example Request syntax with placeholder values
|
2346
|
+
#
|
2347
|
+
# resp = client.describe_world_template({
|
2348
|
+
# template: "Arn", # required
|
2349
|
+
# })
|
2350
|
+
#
|
2351
|
+
# @example Response structure
|
2352
|
+
#
|
2353
|
+
# resp.arn #=> String
|
2354
|
+
# resp.client_request_token #=> String
|
2355
|
+
# resp.name #=> String
|
2356
|
+
# resp.created_at #=> Time
|
2357
|
+
# resp.last_updated_at #=> Time
|
2358
|
+
# resp.tags #=> Hash
|
2359
|
+
# resp.tags["TagKey"] #=> String
|
2360
|
+
#
|
2361
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplate AWS API Documentation
|
2362
|
+
#
|
2363
|
+
# @overload describe_world_template(params = {})
|
2364
|
+
# @param [Hash] params ({})
|
2365
|
+
def describe_world_template(params = {}, options = {})
|
2366
|
+
req = build_request(:describe_world_template, params)
|
2367
|
+
req.send_request(options)
|
2368
|
+
end
|
2369
|
+
|
2370
|
+
# Gets the world template body.
|
2371
|
+
#
|
2372
|
+
# @option params [String] :template
|
2373
|
+
# The Amazon Resource Name (arn) of the world template.
|
2374
|
+
#
|
2375
|
+
# @option params [String] :generation_job
|
2376
|
+
# The Amazon Resource Name (arn) of the world generator job.
|
2377
|
+
#
|
2378
|
+
# @return [Types::GetWorldTemplateBodyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2379
|
+
#
|
2380
|
+
# * {Types::GetWorldTemplateBodyResponse#template_body #template_body} => String
|
2381
|
+
#
|
2382
|
+
# @example Request syntax with placeholder values
|
2383
|
+
#
|
2384
|
+
# resp = client.get_world_template_body({
|
2385
|
+
# template: "Arn",
|
2386
|
+
# generation_job: "Arn",
|
2387
|
+
# })
|
2388
|
+
#
|
2389
|
+
# @example Response structure
|
2390
|
+
#
|
2391
|
+
# resp.template_body #=> String
|
2392
|
+
#
|
2393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBody AWS API Documentation
|
2394
|
+
#
|
2395
|
+
# @overload get_world_template_body(params = {})
|
2396
|
+
# @param [Hash] params ({})
|
2397
|
+
def get_world_template_body(params = {}, options = {})
|
2398
|
+
req = build_request(:get_world_template_body, params)
|
2399
|
+
req.send_request(options)
|
2400
|
+
end
|
2401
|
+
|
1860
2402
|
# Returns a list of deployment jobs for a fleet. You can optionally
|
1861
2403
|
# provide filters to retrieve specific deployment jobs.
|
1862
2404
|
#
|
@@ -1870,11 +2412,12 @@ module Aws::RoboMaker
|
|
1870
2412
|
# or the status `Pending`.
|
1871
2413
|
#
|
1872
2414
|
# @option params [String] :next_token
|
1873
|
-
#
|
1874
|
-
#
|
1875
|
-
#
|
1876
|
-
#
|
1877
|
-
#
|
2415
|
+
# If the previous paginated request did not return all of the remaining
|
2416
|
+
# results, the response object's `nextToken` parameter value is set to
|
2417
|
+
# a token. To retrieve the next set of results, call
|
2418
|
+
# `ListDeploymentJobs` again and assign that token to the request
|
2419
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2420
|
+
# the previous response object's NextToken parameter is set to null.
|
1878
2421
|
#
|
1879
2422
|
# @option params [Integer] :max_results
|
1880
2423
|
# When this parameter is used, `ListDeploymentJobs` only returns
|
@@ -1944,10 +2487,12 @@ module Aws::RoboMaker
|
|
1944
2487
|
# retrieve specific fleets.
|
1945
2488
|
#
|
1946
2489
|
# @option params [String] :next_token
|
1947
|
-
#
|
1948
|
-
#
|
1949
|
-
#
|
1950
|
-
#
|
2490
|
+
# If the previous paginated request did not return all of the remaining
|
2491
|
+
# results, the response object's `nextToken` parameter value is set to
|
2492
|
+
# a token. To retrieve the next set of results, call `ListFleets` again
|
2493
|
+
# and assign that token to the request object's `nextToken` parameter.
|
2494
|
+
# If there are no remaining results, the previous response object's
|
2495
|
+
# NextToken parameter is set to null.
|
1951
2496
|
#
|
1952
2497
|
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
1953
2498
|
# to retrieve the next items in a list and not for other programmatic
|
@@ -2017,11 +2562,12 @@ module Aws::RoboMaker
|
|
2017
2562
|
# The version qualifier of the robot application.
|
2018
2563
|
#
|
2019
2564
|
# @option params [String] :next_token
|
2020
|
-
#
|
2021
|
-
#
|
2022
|
-
#
|
2023
|
-
#
|
2024
|
-
#
|
2565
|
+
# If the previous paginated request did not return all of the remaining
|
2566
|
+
# results, the response object's `nextToken` parameter value is set to
|
2567
|
+
# a token. To retrieve the next set of results, call
|
2568
|
+
# `ListRobotApplications` again and assign that token to the request
|
2569
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2570
|
+
# the previous response object's NextToken parameter is set to null.
|
2025
2571
|
#
|
2026
2572
|
# @option params [Integer] :max_results
|
2027
2573
|
# When this parameter is used, `ListRobotApplications` only returns
|
@@ -2083,10 +2629,12 @@ module Aws::RoboMaker
|
|
2083
2629
|
# retrieve specific robots.
|
2084
2630
|
#
|
2085
2631
|
# @option params [String] :next_token
|
2086
|
-
#
|
2087
|
-
#
|
2088
|
-
#
|
2089
|
-
#
|
2632
|
+
# If the previous paginated request did not return all of the remaining
|
2633
|
+
# results, the response object's `nextToken` parameter value is set to
|
2634
|
+
# a token. To retrieve the next set of results, call `ListRobots` again
|
2635
|
+
# and assign that token to the request object's `nextToken` parameter.
|
2636
|
+
# If there are no remaining results, the previous response object's
|
2637
|
+
# NextToken parameter is set to null.
|
2090
2638
|
#
|
2091
2639
|
# @option params [Integer] :max_results
|
2092
2640
|
# When this parameter is used, `ListRobots` only returns `maxResults`
|
@@ -2156,11 +2704,13 @@ module Aws::RoboMaker
|
|
2156
2704
|
# The version qualifier of the simulation application.
|
2157
2705
|
#
|
2158
2706
|
# @option params [String] :next_token
|
2159
|
-
#
|
2160
|
-
#
|
2161
|
-
#
|
2162
|
-
#
|
2163
|
-
#
|
2707
|
+
# If the previous paginated request did not return all of the remaining
|
2708
|
+
# results, the response object's `nextToken` parameter value is set to
|
2709
|
+
# a token. To retrieve the next set of results, call
|
2710
|
+
# `ListSimulationApplications` again and assign that token to the
|
2711
|
+
# request object's `nextToken` parameter. If there are no remaining
|
2712
|
+
# results, the previous response object's NextToken parameter is set to
|
2713
|
+
# null.
|
2164
2714
|
#
|
2165
2715
|
# @option params [Integer] :max_results
|
2166
2716
|
# When this parameter is used, `ListSimulationApplications` only returns
|
@@ -2224,11 +2774,12 @@ module Aws::RoboMaker
|
|
2224
2774
|
# filters to retrieve specific simulation batch jobs.
|
2225
2775
|
#
|
2226
2776
|
# @option params [String] :next_token
|
2227
|
-
#
|
2228
|
-
#
|
2229
|
-
#
|
2230
|
-
#
|
2231
|
-
#
|
2777
|
+
# If the previous paginated request did not return all of the remaining
|
2778
|
+
# results, the response object's `nextToken` parameter value is set to
|
2779
|
+
# a token. To retrieve the next set of results, call
|
2780
|
+
# `ListSimulationJobBatches` again and assign that token to the request
|
2781
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2782
|
+
# the previous response object's NextToken parameter is set to null.
|
2232
2783
|
#
|
2233
2784
|
# @option params [Integer] :max_results
|
2234
2785
|
# When this parameter is used, `ListSimulationJobBatches` only returns
|
@@ -2285,17 +2836,12 @@ module Aws::RoboMaker
|
|
2285
2836
|
# to retrieve specific simulation jobs.
|
2286
2837
|
#
|
2287
2838
|
# @option params [String] :next_token
|
2288
|
-
#
|
2289
|
-
#
|
2290
|
-
#
|
2291
|
-
#
|
2292
|
-
#
|
2293
|
-
#
|
2294
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
2295
|
-
# to retrieve the next items in a list and not for other programmatic
|
2296
|
-
# purposes.
|
2297
|
-
#
|
2298
|
-
# </note>
|
2839
|
+
# If the previous paginated request did not return all of the remaining
|
2840
|
+
# results, the response object's `nextToken` parameter value is set to
|
2841
|
+
# a token. To retrieve the next set of results, call
|
2842
|
+
# `ListSimulationJobs` again and assign that token to the request
|
2843
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2844
|
+
# the previous response object's NextToken parameter is set to null.
|
2299
2845
|
#
|
2300
2846
|
# @option params [Integer] :max_results
|
2301
2847
|
# When this parameter is used, `ListSimulationJobs` only returns
|
@@ -2388,6 +2934,245 @@ module Aws::RoboMaker
|
|
2388
2934
|
req.send_request(options)
|
2389
2935
|
end
|
2390
2936
|
|
2937
|
+
# Lists world export jobs.
|
2938
|
+
#
|
2939
|
+
# @option params [String] :next_token
|
2940
|
+
# If the previous paginated request did not return all of the remaining
|
2941
|
+
# results, the response object's `nextToken` parameter value is set to
|
2942
|
+
# a token. To retrieve the next set of results, call
|
2943
|
+
# `ListWorldExportJobs` again and assign that token to the request
|
2944
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
2945
|
+
# the previous response object's NextToken parameter is set to null.
|
2946
|
+
#
|
2947
|
+
# @option params [Integer] :max_results
|
2948
|
+
# When this parameter is used, `ListWorldExportJobs` only returns
|
2949
|
+
# `maxResults` results in a single page along with a `nextToken`
|
2950
|
+
# response element. The remaining results of the initial request can be
|
2951
|
+
# seen by sending another `ListWorldExportJobs` request with the
|
2952
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
2953
|
+
# this parameter is not used, then `ListWorldExportJobs` returns up to
|
2954
|
+
# 100 results and a `nextToken` value if applicable.
|
2955
|
+
#
|
2956
|
+
# @option params [Array<Types::Filter>] :filters
|
2957
|
+
# Optional filters to limit results. You can use `generationJobId` and
|
2958
|
+
# `templateId`.
|
2959
|
+
#
|
2960
|
+
# @return [Types::ListWorldExportJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2961
|
+
#
|
2962
|
+
# * {Types::ListWorldExportJobsResponse#world_export_job_summaries #world_export_job_summaries} => Array<Types::WorldExportJobSummary>
|
2963
|
+
# * {Types::ListWorldExportJobsResponse#next_token #next_token} => String
|
2964
|
+
#
|
2965
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2966
|
+
#
|
2967
|
+
# @example Request syntax with placeholder values
|
2968
|
+
#
|
2969
|
+
# resp = client.list_world_export_jobs({
|
2970
|
+
# next_token: "PaginationToken",
|
2971
|
+
# max_results: 1,
|
2972
|
+
# filters: [
|
2973
|
+
# {
|
2974
|
+
# name: "Name",
|
2975
|
+
# values: ["Name"],
|
2976
|
+
# },
|
2977
|
+
# ],
|
2978
|
+
# })
|
2979
|
+
#
|
2980
|
+
# @example Response structure
|
2981
|
+
#
|
2982
|
+
# resp.world_export_job_summaries #=> Array
|
2983
|
+
# resp.world_export_job_summaries[0].arn #=> String
|
2984
|
+
# resp.world_export_job_summaries[0].status #=> String, one of "Pending", "Running", "Completed", "Failed", "Canceling", "Canceled"
|
2985
|
+
# resp.world_export_job_summaries[0].created_at #=> Time
|
2986
|
+
# resp.world_export_job_summaries[0].worlds #=> Array
|
2987
|
+
# resp.world_export_job_summaries[0].worlds[0] #=> String
|
2988
|
+
# resp.next_token #=> String
|
2989
|
+
#
|
2990
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobs AWS API Documentation
|
2991
|
+
#
|
2992
|
+
# @overload list_world_export_jobs(params = {})
|
2993
|
+
# @param [Hash] params ({})
|
2994
|
+
def list_world_export_jobs(params = {}, options = {})
|
2995
|
+
req = build_request(:list_world_export_jobs, params)
|
2996
|
+
req.send_request(options)
|
2997
|
+
end
|
2998
|
+
|
2999
|
+
# Lists world generator jobs.
|
3000
|
+
#
|
3001
|
+
# @option params [String] :next_token
|
3002
|
+
# If the previous paginated request did not return all of the remaining
|
3003
|
+
# results, the response object's `nextToken` parameter value is set to
|
3004
|
+
# a token. To retrieve the next set of results, call
|
3005
|
+
# `ListWorldGenerationJobsRequest` again and assign that token to the
|
3006
|
+
# request object's `nextToken` parameter. If there are no remaining
|
3007
|
+
# results, the previous response object's NextToken parameter is set to
|
3008
|
+
# null.
|
3009
|
+
#
|
3010
|
+
# @option params [Integer] :max_results
|
3011
|
+
# When this parameter is used, `ListWorldGeneratorJobs` only returns
|
3012
|
+
# `maxResults` results in a single page along with a `nextToken`
|
3013
|
+
# response element. The remaining results of the initial request can be
|
3014
|
+
# seen by sending another `ListWorldGeneratorJobs` request with the
|
3015
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
3016
|
+
# this parameter is not used, then `ListWorldGeneratorJobs` returns up
|
3017
|
+
# to 100 results and a `nextToken` value if applicable.
|
3018
|
+
#
|
3019
|
+
# @option params [Array<Types::Filter>] :filters
|
3020
|
+
# Optional filters to limit results. You can use `status` and
|
3021
|
+
# `templateId`.
|
3022
|
+
#
|
3023
|
+
# @return [Types::ListWorldGenerationJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3024
|
+
#
|
3025
|
+
# * {Types::ListWorldGenerationJobsResponse#world_generation_job_summaries #world_generation_job_summaries} => Array<Types::WorldGenerationJobSummary>
|
3026
|
+
# * {Types::ListWorldGenerationJobsResponse#next_token #next_token} => String
|
3027
|
+
#
|
3028
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3029
|
+
#
|
3030
|
+
# @example Request syntax with placeholder values
|
3031
|
+
#
|
3032
|
+
# resp = client.list_world_generation_jobs({
|
3033
|
+
# next_token: "PaginationToken",
|
3034
|
+
# max_results: 1,
|
3035
|
+
# filters: [
|
3036
|
+
# {
|
3037
|
+
# name: "Name",
|
3038
|
+
# values: ["Name"],
|
3039
|
+
# },
|
3040
|
+
# ],
|
3041
|
+
# })
|
3042
|
+
#
|
3043
|
+
# @example Response structure
|
3044
|
+
#
|
3045
|
+
# resp.world_generation_job_summaries #=> Array
|
3046
|
+
# resp.world_generation_job_summaries[0].arn #=> String
|
3047
|
+
# resp.world_generation_job_summaries[0].template #=> String
|
3048
|
+
# resp.world_generation_job_summaries[0].created_at #=> Time
|
3049
|
+
# resp.world_generation_job_summaries[0].status #=> String, one of "Pending", "Running", "Completed", "Failed", "PartialFailed", "Canceling", "Canceled"
|
3050
|
+
# resp.world_generation_job_summaries[0].world_count.floorplan_count #=> Integer
|
3051
|
+
# resp.world_generation_job_summaries[0].world_count.interior_count_per_floorplan #=> Integer
|
3052
|
+
# resp.world_generation_job_summaries[0].succeeded_world_count #=> Integer
|
3053
|
+
# resp.world_generation_job_summaries[0].failed_world_count #=> Integer
|
3054
|
+
# resp.next_token #=> String
|
3055
|
+
#
|
3056
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobs AWS API Documentation
|
3057
|
+
#
|
3058
|
+
# @overload list_world_generation_jobs(params = {})
|
3059
|
+
# @param [Hash] params ({})
|
3060
|
+
def list_world_generation_jobs(params = {}, options = {})
|
3061
|
+
req = build_request(:list_world_generation_jobs, params)
|
3062
|
+
req.send_request(options)
|
3063
|
+
end
|
3064
|
+
|
3065
|
+
# Lists world templates.
|
3066
|
+
#
|
3067
|
+
# @option params [String] :next_token
|
3068
|
+
# If the previous paginated request did not return all of the remaining
|
3069
|
+
# results, the response object's `nextToken` parameter value is set to
|
3070
|
+
# a token. To retrieve the next set of results, call
|
3071
|
+
# `ListWorldTemplates` again and assign that token to the request
|
3072
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3073
|
+
# the previous response object's NextToken parameter is set to null.
|
3074
|
+
#
|
3075
|
+
# @option params [Integer] :max_results
|
3076
|
+
# When this parameter is used, `ListWorldTemplates` only returns
|
3077
|
+
# `maxResults` results in a single page along with a `nextToken`
|
3078
|
+
# response element. The remaining results of the initial request can be
|
3079
|
+
# seen by sending another `ListWorldTemplates` request with the returned
|
3080
|
+
# `nextToken` value. This value can be between 1 and 100. If this
|
3081
|
+
# parameter is not used, then `ListWorldTemplates` returns up to 100
|
3082
|
+
# results and a `nextToken` value if applicable.
|
3083
|
+
#
|
3084
|
+
# @return [Types::ListWorldTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3085
|
+
#
|
3086
|
+
# * {Types::ListWorldTemplatesResponse#template_summaries #template_summaries} => Array<Types::TemplateSummary>
|
3087
|
+
# * {Types::ListWorldTemplatesResponse#next_token #next_token} => String
|
3088
|
+
#
|
3089
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3090
|
+
#
|
3091
|
+
# @example Request syntax with placeholder values
|
3092
|
+
#
|
3093
|
+
# resp = client.list_world_templates({
|
3094
|
+
# next_token: "PaginationToken",
|
3095
|
+
# max_results: 1,
|
3096
|
+
# })
|
3097
|
+
#
|
3098
|
+
# @example Response structure
|
3099
|
+
#
|
3100
|
+
# resp.template_summaries #=> Array
|
3101
|
+
# resp.template_summaries[0].arn #=> String
|
3102
|
+
# resp.template_summaries[0].created_at #=> Time
|
3103
|
+
# resp.template_summaries[0].last_updated_at #=> Time
|
3104
|
+
# resp.template_summaries[0].name #=> String
|
3105
|
+
# resp.next_token #=> String
|
3106
|
+
#
|
3107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplates AWS API Documentation
|
3108
|
+
#
|
3109
|
+
# @overload list_world_templates(params = {})
|
3110
|
+
# @param [Hash] params ({})
|
3111
|
+
def list_world_templates(params = {}, options = {})
|
3112
|
+
req = build_request(:list_world_templates, params)
|
3113
|
+
req.send_request(options)
|
3114
|
+
end
|
3115
|
+
|
3116
|
+
# Lists worlds.
|
3117
|
+
#
|
3118
|
+
# @option params [String] :next_token
|
3119
|
+
# If the previous paginated request did not return all of the remaining
|
3120
|
+
# results, the response object's `nextToken` parameter value is set to
|
3121
|
+
# a token. To retrieve the next set of results, call `ListWorlds` again
|
3122
|
+
# and assign that token to the request object's `nextToken` parameter.
|
3123
|
+
# If there are no remaining results, the previous response object's
|
3124
|
+
# NextToken parameter is set to null.
|
3125
|
+
#
|
3126
|
+
# @option params [Integer] :max_results
|
3127
|
+
# When this parameter is used, `ListWorlds` only returns `maxResults`
|
3128
|
+
# results in a single page along with a `nextToken` response element.
|
3129
|
+
# The remaining results of the initial request can be seen by sending
|
3130
|
+
# another `ListWorlds` request with the returned `nextToken` value. This
|
3131
|
+
# value can be between 1 and 100. If this parameter is not used, then
|
3132
|
+
# `ListWorlds` returns up to 100 results and a `nextToken` value if
|
3133
|
+
# applicable.
|
3134
|
+
#
|
3135
|
+
# @option params [Array<Types::Filter>] :filters
|
3136
|
+
# Optional filters to limit results. You can use `status`.
|
3137
|
+
#
|
3138
|
+
# @return [Types::ListWorldsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3139
|
+
#
|
3140
|
+
# * {Types::ListWorldsResponse#world_summaries #world_summaries} => Array<Types::WorldSummary>
|
3141
|
+
# * {Types::ListWorldsResponse#next_token #next_token} => String
|
3142
|
+
#
|
3143
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3144
|
+
#
|
3145
|
+
# @example Request syntax with placeholder values
|
3146
|
+
#
|
3147
|
+
# resp = client.list_worlds({
|
3148
|
+
# next_token: "PaginationToken",
|
3149
|
+
# max_results: 1,
|
3150
|
+
# filters: [
|
3151
|
+
# {
|
3152
|
+
# name: "Name",
|
3153
|
+
# values: ["Name"],
|
3154
|
+
# },
|
3155
|
+
# ],
|
3156
|
+
# })
|
3157
|
+
#
|
3158
|
+
# @example Response structure
|
3159
|
+
#
|
3160
|
+
# resp.world_summaries #=> Array
|
3161
|
+
# resp.world_summaries[0].arn #=> String
|
3162
|
+
# resp.world_summaries[0].created_at #=> Time
|
3163
|
+
# resp.world_summaries[0].generation_job #=> String
|
3164
|
+
# resp.world_summaries[0].template #=> String
|
3165
|
+
# resp.next_token #=> String
|
3166
|
+
#
|
3167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorlds AWS API Documentation
|
3168
|
+
#
|
3169
|
+
# @overload list_worlds(params = {})
|
3170
|
+
# @param [Hash] params ({})
|
3171
|
+
def list_worlds(params = {}, options = {})
|
3172
|
+
req = build_request(:list_worlds, params)
|
3173
|
+
req.send_request(options)
|
3174
|
+
end
|
3175
|
+
|
2391
3176
|
# Registers a robot with a fleet.
|
2392
3177
|
#
|
2393
3178
|
# @option params [required, String] :fleet
|
@@ -2543,6 +3328,11 @@ module Aws::RoboMaker
|
|
2543
3328
|
# },
|
2544
3329
|
# stream_ui: false,
|
2545
3330
|
# },
|
3331
|
+
# world_configs: [
|
3332
|
+
# {
|
3333
|
+
# world: "Arn",
|
3334
|
+
# },
|
3335
|
+
# ],
|
2546
3336
|
# },
|
2547
3337
|
# ],
|
2548
3338
|
# data_sources: [
|
@@ -2612,6 +3402,8 @@ module Aws::RoboMaker
|
|
2612
3402
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2613
3403
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2614
3404
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
3405
|
+
# resp.failed_requests[0].request.simulation_applications[0].world_configs #=> Array
|
3406
|
+
# resp.failed_requests[0].request.simulation_applications[0].world_configs[0].world #=> String
|
2615
3407
|
# resp.failed_requests[0].request.data_sources #=> Array
|
2616
3408
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
2617
3409
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -2660,6 +3452,8 @@ module Aws::RoboMaker
|
|
2660
3452
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2661
3453
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2662
3454
|
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
3455
|
+
# resp.pending_requests[0].simulation_applications[0].world_configs #=> Array
|
3456
|
+
# resp.pending_requests[0].simulation_applications[0].world_configs[0].world #=> String
|
2663
3457
|
# resp.pending_requests[0].data_sources #=> Array
|
2664
3458
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
2665
3459
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -2989,6 +3783,55 @@ module Aws::RoboMaker
|
|
2989
3783
|
req.send_request(options)
|
2990
3784
|
end
|
2991
3785
|
|
3786
|
+
# Updates a world template.
|
3787
|
+
#
|
3788
|
+
# @option params [required, String] :template
|
3789
|
+
# The Amazon Resource Name (arn) of the world template to update.
|
3790
|
+
#
|
3791
|
+
# @option params [String] :name
|
3792
|
+
# The name of the template.
|
3793
|
+
#
|
3794
|
+
# @option params [String] :template_body
|
3795
|
+
# The world template body.
|
3796
|
+
#
|
3797
|
+
# @option params [Types::TemplateLocation] :template_location
|
3798
|
+
# The location of the world template.
|
3799
|
+
#
|
3800
|
+
# @return [Types::UpdateWorldTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3801
|
+
#
|
3802
|
+
# * {Types::UpdateWorldTemplateResponse#arn #arn} => String
|
3803
|
+
# * {Types::UpdateWorldTemplateResponse#name #name} => String
|
3804
|
+
# * {Types::UpdateWorldTemplateResponse#created_at #created_at} => Time
|
3805
|
+
# * {Types::UpdateWorldTemplateResponse#last_updated_at #last_updated_at} => Time
|
3806
|
+
#
|
3807
|
+
# @example Request syntax with placeholder values
|
3808
|
+
#
|
3809
|
+
# resp = client.update_world_template({
|
3810
|
+
# template: "Arn", # required
|
3811
|
+
# name: "TemplateName",
|
3812
|
+
# template_body: "Json",
|
3813
|
+
# template_location: {
|
3814
|
+
# s3_bucket: "S3Bucket", # required
|
3815
|
+
# s3_key: "S3Key", # required
|
3816
|
+
# },
|
3817
|
+
# })
|
3818
|
+
#
|
3819
|
+
# @example Response structure
|
3820
|
+
#
|
3821
|
+
# resp.arn #=> String
|
3822
|
+
# resp.name #=> String
|
3823
|
+
# resp.created_at #=> Time
|
3824
|
+
# resp.last_updated_at #=> Time
|
3825
|
+
#
|
3826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateWorldTemplate AWS API Documentation
|
3827
|
+
#
|
3828
|
+
# @overload update_world_template(params = {})
|
3829
|
+
# @param [Hash] params ({})
|
3830
|
+
def update_world_template(params = {}, options = {})
|
3831
|
+
req = build_request(:update_world_template, params)
|
3832
|
+
req.send_request(options)
|
3833
|
+
end
|
3834
|
+
|
2992
3835
|
# @!endgroup
|
2993
3836
|
|
2994
3837
|
# @param params ({})
|
@@ -3002,7 +3845,7 @@ module Aws::RoboMaker
|
|
3002
3845
|
params: params,
|
3003
3846
|
config: config)
|
3004
3847
|
context[:gem_name] = 'aws-sdk-robomaker'
|
3005
|
-
context[:gem_version] = '1.
|
3848
|
+
context[:gem_version] = '1.30.0'
|
3006
3849
|
Seahorse::Client::Request.new(handlers, context)
|
3007
3850
|
end
|
3008
3851
|
|