aws-sdk-robomaker 1.23.0 → 1.28.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 +5 -3
- data/lib/aws-sdk-robomaker/client.rb +894 -49
- 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: 5c589ea81f53c839226ac374762ea1ef53059cfec69cea7d686a9b26a4c8d7a1
|
4
|
+
data.tar.gz: 8cc13672082a4cdd6961b705cf2a60f3612130ab452653d554c71994cb2affc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5afb813baa792c7502595d4618149c9a332ac27c34d1e83faf1a929d226a94861a9eafe750b224ce017612c4bffecdfb22bd4e471fd6b6a3dfd78155645d152a
|
7
|
+
data.tar.gz: e7178ffab792799a0e4b7e9375d94cee6d269f09ee1b12ac450f5492ee42bd49fd6cf59ff5aeccba7336aecc9a4886b6bd7eceaba3fc13cc4029c3cda29c1bb3
|
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:
|
@@ -25,7 +27,7 @@ require_relative 'aws-sdk-robomaker/customizations'
|
|
25
27
|
# structure.
|
26
28
|
#
|
27
29
|
# robo_maker = Aws::RoboMaker::Client.new
|
28
|
-
# resp = robo_maker.
|
30
|
+
# resp = robo_maker.batch_delete_worlds(params)
|
29
31
|
#
|
30
32
|
# See {Client} for more information.
|
31
33
|
#
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-robomaker/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::RoboMaker
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.28.0'
|
49
51
|
|
50
52
|
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:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::RoboMaker
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::RoboMaker
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
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
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::RoboMaker
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# 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.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::RoboMaker
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::RoboMaker
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -308,6 +327,36 @@ module Aws::RoboMaker
|
|
308
327
|
|
309
328
|
# @!group API Operations
|
310
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
|
+
|
311
360
|
# Describes one or more simulation jobs.
|
312
361
|
#
|
313
362
|
# @option params [required, Array<String>] :jobs
|
@@ -366,6 +415,8 @@ module Aws::RoboMaker
|
|
366
415
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
367
416
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
368
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
|
369
420
|
# resp.jobs[0].data_sources #=> Array
|
370
421
|
# resp.jobs[0].data_sources[0].name #=> String
|
371
422
|
# resp.jobs[0].data_sources[0].s3_bucket #=> String
|
@@ -464,6 +515,50 @@ module Aws::RoboMaker
|
|
464
515
|
req.send_request(options)
|
465
516
|
end
|
466
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
|
+
|
467
562
|
# Deploys a specific version of a robot application to robots in a
|
468
563
|
# fleet.
|
469
564
|
#
|
@@ -1103,6 +1198,11 @@ module Aws::RoboMaker
|
|
1103
1198
|
# },
|
1104
1199
|
# stream_ui: false,
|
1105
1200
|
# },
|
1201
|
+
# world_configs: [
|
1202
|
+
# {
|
1203
|
+
# world: "Arn",
|
1204
|
+
# },
|
1205
|
+
# ],
|
1106
1206
|
# },
|
1107
1207
|
# ],
|
1108
1208
|
# data_sources: [
|
@@ -1164,6 +1264,8 @@ module Aws::RoboMaker
|
|
1164
1264
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1165
1265
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1166
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
|
1167
1269
|
# resp.data_sources #=> Array
|
1168
1270
|
# resp.data_sources[0].name #=> String
|
1169
1271
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1189,6 +1291,205 @@ module Aws::RoboMaker
|
|
1189
1291
|
req.send_request(options)
|
1190
1292
|
end
|
1191
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
|
+
|
1192
1493
|
# Deletes a fleet.
|
1193
1494
|
#
|
1194
1495
|
# @option params [required, String] :fleet
|
@@ -1285,6 +1586,29 @@ module Aws::RoboMaker
|
|
1285
1586
|
req.send_request(options)
|
1286
1587
|
end
|
1287
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
|
+
|
1288
1612
|
# Deregisters a robot.
|
1289
1613
|
#
|
1290
1614
|
# @option params [required, String] :fleet
|
@@ -1674,6 +1998,8 @@ module Aws::RoboMaker
|
|
1674
1998
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1675
1999
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1676
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
|
1677
2003
|
# resp.data_sources #=> Array
|
1678
2004
|
# resp.data_sources[0].name #=> String
|
1679
2005
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1771,6 +2097,8 @@ module Aws::RoboMaker
|
|
1771
2097
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1772
2098
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1773
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
|
1774
2102
|
# resp.failed_requests[0].request.data_sources #=> Array
|
1775
2103
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
1776
2104
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -1819,6 +2147,8 @@ module Aws::RoboMaker
|
|
1819
2147
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1820
2148
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1821
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
|
1822
2152
|
# resp.pending_requests[0].data_sources #=> Array
|
1823
2153
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
1824
2154
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -1855,6 +2185,220 @@ module Aws::RoboMaker
|
|
1855
2185
|
req.send_request(options)
|
1856
2186
|
end
|
1857
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
|
+
|
1858
2402
|
# Returns a list of deployment jobs for a fleet. You can optionally
|
1859
2403
|
# provide filters to retrieve specific deployment jobs.
|
1860
2404
|
#
|
@@ -1868,11 +2412,12 @@ module Aws::RoboMaker
|
|
1868
2412
|
# or the status `Pending`.
|
1869
2413
|
#
|
1870
2414
|
# @option params [String] :next_token
|
1871
|
-
#
|
1872
|
-
#
|
1873
|
-
#
|
1874
|
-
#
|
1875
|
-
#
|
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.
|
1876
2421
|
#
|
1877
2422
|
# @option params [Integer] :max_results
|
1878
2423
|
# When this parameter is used, `ListDeploymentJobs` only returns
|
@@ -1942,10 +2487,12 @@ module Aws::RoboMaker
|
|
1942
2487
|
# retrieve specific fleets.
|
1943
2488
|
#
|
1944
2489
|
# @option params [String] :next_token
|
1945
|
-
#
|
1946
|
-
#
|
1947
|
-
#
|
1948
|
-
#
|
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.
|
1949
2496
|
#
|
1950
2497
|
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
1951
2498
|
# to retrieve the next items in a list and not for other programmatic
|
@@ -2015,11 +2562,12 @@ module Aws::RoboMaker
|
|
2015
2562
|
# The version qualifier of the robot application.
|
2016
2563
|
#
|
2017
2564
|
# @option params [String] :next_token
|
2018
|
-
#
|
2019
|
-
#
|
2020
|
-
#
|
2021
|
-
#
|
2022
|
-
#
|
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.
|
2023
2571
|
#
|
2024
2572
|
# @option params [Integer] :max_results
|
2025
2573
|
# When this parameter is used, `ListRobotApplications` only returns
|
@@ -2081,10 +2629,12 @@ module Aws::RoboMaker
|
|
2081
2629
|
# retrieve specific robots.
|
2082
2630
|
#
|
2083
2631
|
# @option params [String] :next_token
|
2084
|
-
#
|
2085
|
-
#
|
2086
|
-
#
|
2087
|
-
#
|
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.
|
2088
2638
|
#
|
2089
2639
|
# @option params [Integer] :max_results
|
2090
2640
|
# When this parameter is used, `ListRobots` only returns `maxResults`
|
@@ -2154,11 +2704,13 @@ module Aws::RoboMaker
|
|
2154
2704
|
# The version qualifier of the simulation application.
|
2155
2705
|
#
|
2156
2706
|
# @option params [String] :next_token
|
2157
|
-
#
|
2158
|
-
#
|
2159
|
-
#
|
2160
|
-
#
|
2161
|
-
#
|
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.
|
2162
2714
|
#
|
2163
2715
|
# @option params [Integer] :max_results
|
2164
2716
|
# When this parameter is used, `ListSimulationApplications` only returns
|
@@ -2222,11 +2774,12 @@ module Aws::RoboMaker
|
|
2222
2774
|
# filters to retrieve specific simulation batch jobs.
|
2223
2775
|
#
|
2224
2776
|
# @option params [String] :next_token
|
2225
|
-
#
|
2226
|
-
#
|
2227
|
-
#
|
2228
|
-
#
|
2229
|
-
#
|
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.
|
2230
2783
|
#
|
2231
2784
|
# @option params [Integer] :max_results
|
2232
2785
|
# When this parameter is used, `ListSimulationJobBatches` only returns
|
@@ -2283,17 +2836,12 @@ module Aws::RoboMaker
|
|
2283
2836
|
# to retrieve specific simulation jobs.
|
2284
2837
|
#
|
2285
2838
|
# @option params [String] :next_token
|
2286
|
-
#
|
2287
|
-
#
|
2288
|
-
#
|
2289
|
-
#
|
2290
|
-
#
|
2291
|
-
#
|
2292
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only used
|
2293
|
-
# to retrieve the next items in a list and not for other programmatic
|
2294
|
-
# purposes.
|
2295
|
-
#
|
2296
|
-
# </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.
|
2297
2845
|
#
|
2298
2846
|
# @option params [Integer] :max_results
|
2299
2847
|
# When this parameter is used, `ListSimulationJobs` only returns
|
@@ -2386,6 +2934,245 @@ module Aws::RoboMaker
|
|
2386
2934
|
req.send_request(options)
|
2387
2935
|
end
|
2388
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
|
+
|
2389
3176
|
# Registers a robot with a fleet.
|
2390
3177
|
#
|
2391
3178
|
# @option params [required, String] :fleet
|
@@ -2541,6 +3328,11 @@ module Aws::RoboMaker
|
|
2541
3328
|
# },
|
2542
3329
|
# stream_ui: false,
|
2543
3330
|
# },
|
3331
|
+
# world_configs: [
|
3332
|
+
# {
|
3333
|
+
# world: "Arn",
|
3334
|
+
# },
|
3335
|
+
# ],
|
2544
3336
|
# },
|
2545
3337
|
# ],
|
2546
3338
|
# data_sources: [
|
@@ -2610,6 +3402,8 @@ module Aws::RoboMaker
|
|
2610
3402
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2611
3403
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2612
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
|
2613
3407
|
# resp.failed_requests[0].request.data_sources #=> Array
|
2614
3408
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
2615
3409
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -2658,6 +3452,8 @@ module Aws::RoboMaker
|
|
2658
3452
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2659
3453
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2660
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
|
2661
3457
|
# resp.pending_requests[0].data_sources #=> Array
|
2662
3458
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
2663
3459
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -2987,6 +3783,55 @@ module Aws::RoboMaker
|
|
2987
3783
|
req.send_request(options)
|
2988
3784
|
end
|
2989
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
|
+
|
2990
3835
|
# @!endgroup
|
2991
3836
|
|
2992
3837
|
# @param params ({})
|
@@ -3000,7 +3845,7 @@ module Aws::RoboMaker
|
|
3000
3845
|
params: params,
|
3001
3846
|
config: config)
|
3002
3847
|
context[:gem_name] = 'aws-sdk-robomaker'
|
3003
|
-
context[:gem_version] = '1.
|
3848
|
+
context[:gem_version] = '1.28.0'
|
3004
3849
|
Seahorse::Client::Request.new(handlers, context)
|
3005
3850
|
end
|
3006
3851
|
|