aws-sdk-robomaker 1.26.0 → 1.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-robomaker.rb +4 -3
- data/lib/aws-sdk-robomaker/client.rb +901 -47
- data/lib/aws-sdk-robomaker/client_api.rb +529 -0
- data/lib/aws-sdk-robomaker/types.rb +2430 -752
- metadata +4 -4
@@ -10,6 +10,39 @@
|
|
10
10
|
module Aws::RoboMaker
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# @note When making an API call, you may pass BatchDeleteWorldsRequest
|
14
|
+
# data as a hash:
|
15
|
+
#
|
16
|
+
# {
|
17
|
+
# worlds: ["Arn"], # required
|
18
|
+
# }
|
19
|
+
#
|
20
|
+
# @!attribute [rw] worlds
|
21
|
+
# A list of Amazon Resource Names (arns) that correspond to worlds to
|
22
|
+
# delete.
|
23
|
+
# @return [Array<String>]
|
24
|
+
#
|
25
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/BatchDeleteWorldsRequest AWS API Documentation
|
26
|
+
#
|
27
|
+
class BatchDeleteWorldsRequest < Struct.new(
|
28
|
+
:worlds)
|
29
|
+
SENSITIVE = []
|
30
|
+
include Aws::Structure
|
31
|
+
end
|
32
|
+
|
33
|
+
# @!attribute [rw] unprocessed_worlds
|
34
|
+
# A list of unprocessed worlds associated with the call. These worlds
|
35
|
+
# were not deleted.
|
36
|
+
# @return [Array<String>]
|
37
|
+
#
|
38
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/BatchDeleteWorldsResponse AWS API Documentation
|
39
|
+
#
|
40
|
+
class BatchDeleteWorldsResponse < Struct.new(
|
41
|
+
:unprocessed_worlds)
|
42
|
+
SENSITIVE = []
|
43
|
+
include Aws::Structure
|
44
|
+
end
|
45
|
+
|
13
46
|
# @note When making an API call, you may pass BatchDescribeSimulationJobRequest
|
14
47
|
# data as a hash:
|
15
48
|
#
|
@@ -155,6 +188,52 @@ module Aws::RoboMaker
|
|
155
188
|
#
|
156
189
|
class CancelSimulationJobResponse < Aws::EmptyStructure; end
|
157
190
|
|
191
|
+
# @note When making an API call, you may pass CancelWorldExportJobRequest
|
192
|
+
# data as a hash:
|
193
|
+
#
|
194
|
+
# {
|
195
|
+
# job: "Arn", # required
|
196
|
+
# }
|
197
|
+
#
|
198
|
+
# @!attribute [rw] job
|
199
|
+
# The Amazon Resource Name (arn) of the world export job to cancel.
|
200
|
+
# @return [String]
|
201
|
+
#
|
202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldExportJobRequest AWS API Documentation
|
203
|
+
#
|
204
|
+
class CancelWorldExportJobRequest < Struct.new(
|
205
|
+
:job)
|
206
|
+
SENSITIVE = []
|
207
|
+
include Aws::Structure
|
208
|
+
end
|
209
|
+
|
210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldExportJobResponse AWS API Documentation
|
211
|
+
#
|
212
|
+
class CancelWorldExportJobResponse < Aws::EmptyStructure; end
|
213
|
+
|
214
|
+
# @note When making an API call, you may pass CancelWorldGenerationJobRequest
|
215
|
+
# data as a hash:
|
216
|
+
#
|
217
|
+
# {
|
218
|
+
# job: "Arn", # required
|
219
|
+
# }
|
220
|
+
#
|
221
|
+
# @!attribute [rw] job
|
222
|
+
# The Amazon Resource Name (arn) of the world generator job to cancel.
|
223
|
+
# @return [String]
|
224
|
+
#
|
225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldGenerationJobRequest AWS API Documentation
|
226
|
+
#
|
227
|
+
class CancelWorldGenerationJobRequest < Struct.new(
|
228
|
+
:job)
|
229
|
+
SENSITIVE = []
|
230
|
+
include Aws::Structure
|
231
|
+
end
|
232
|
+
|
233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelWorldGenerationJobResponse AWS API Documentation
|
234
|
+
#
|
235
|
+
class CancelWorldGenerationJobResponse < Aws::EmptyStructure; end
|
236
|
+
|
158
237
|
# Compute information for the simulation job.
|
159
238
|
#
|
160
239
|
# @note When making an API call, you may pass Compute
|
@@ -168,7 +247,8 @@ module Aws::RoboMaker
|
|
168
247
|
# The simulation unit limit. Your simulation is allocated CPU and
|
169
248
|
# memory proportional to the supplied simulation unit limit. A
|
170
249
|
# simulation unit is 1 vcpu and 2GB of memory. You are only billed for
|
171
|
-
# the SU utilization you consume up to the maximim value provided.
|
250
|
+
# the SU utilization you consume up to the maximim value provided. The
|
251
|
+
# default is 15.
|
172
252
|
# @return [Integer]
|
173
253
|
#
|
174
254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/Compute AWS API Documentation
|
@@ -185,7 +265,8 @@ module Aws::RoboMaker
|
|
185
265
|
# The simulation unit limit. Your simulation is allocated CPU and
|
186
266
|
# memory proportional to the supplied simulation unit limit. A
|
187
267
|
# simulation unit is 1 vcpu and 2GB of memory. You are only billed for
|
188
|
-
# the SU utilization you consume up to the maximim value provided.
|
268
|
+
# the SU utilization you consume up to the maximim value provided. The
|
269
|
+
# default is 15.
|
189
270
|
# @return [Integer]
|
190
271
|
#
|
191
272
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ComputeResponse AWS API Documentation
|
@@ -967,6 +1048,11 @@ module Aws::RoboMaker
|
|
967
1048
|
# },
|
968
1049
|
# stream_ui: false,
|
969
1050
|
# },
|
1051
|
+
# world_configs: [
|
1052
|
+
# {
|
1053
|
+
# world: "Arn",
|
1054
|
+
# },
|
1055
|
+
# ],
|
970
1056
|
# },
|
971
1057
|
# ],
|
972
1058
|
# data_sources: [
|
@@ -1246,475 +1332,478 @@ module Aws::RoboMaker
|
|
1246
1332
|
include Aws::Structure
|
1247
1333
|
end
|
1248
1334
|
|
1249
|
-
#
|
1335
|
+
# @note When making an API call, you may pass CreateWorldExportJobRequest
|
1336
|
+
# data as a hash:
|
1250
1337
|
#
|
1251
|
-
#
|
1252
|
-
#
|
1338
|
+
# {
|
1339
|
+
# client_request_token: "ClientRequestToken",
|
1340
|
+
# worlds: ["Arn"], # required
|
1341
|
+
# output_location: { # required
|
1342
|
+
# s3_bucket: "S3Bucket",
|
1343
|
+
# s3_prefix: "S3Key",
|
1344
|
+
# },
|
1345
|
+
# iam_role: "IamRole", # required
|
1346
|
+
# tags: {
|
1347
|
+
# "TagKey" => "TagValue",
|
1348
|
+
# },
|
1349
|
+
# }
|
1350
|
+
#
|
1351
|
+
# @!attribute [rw] client_request_token
|
1352
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1353
|
+
# idempotency of the request.
|
1354
|
+
#
|
1355
|
+
# **A suitable default value is auto-generated.** You should normally
|
1356
|
+
# not need to pass this option.
|
1253
1357
|
# @return [String]
|
1254
1358
|
#
|
1255
|
-
# @!attribute [rw]
|
1256
|
-
#
|
1359
|
+
# @!attribute [rw] worlds
|
1360
|
+
# A list of Amazon Resource Names (arns) that correspond to worlds to
|
1361
|
+
# export.
|
1362
|
+
# @return [Array<String>]
|
1363
|
+
#
|
1364
|
+
# @!attribute [rw] output_location
|
1365
|
+
# The output location.
|
1366
|
+
# @return [Types::OutputLocation]
|
1367
|
+
#
|
1368
|
+
# @!attribute [rw] iam_role
|
1369
|
+
# The IAM role that the world export process uses to access the Amazon
|
1370
|
+
# S3 bucket and put the export.
|
1257
1371
|
# @return [String]
|
1258
1372
|
#
|
1259
|
-
# @!attribute [rw]
|
1260
|
-
#
|
1261
|
-
#
|
1373
|
+
# @!attribute [rw] tags
|
1374
|
+
# A map that contains tag keys and tag values that are attached to the
|
1375
|
+
# world export job.
|
1376
|
+
# @return [Hash<String,String>]
|
1262
1377
|
#
|
1263
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldExportJobRequest AWS API Documentation
|
1264
1379
|
#
|
1265
|
-
class
|
1266
|
-
:
|
1267
|
-
:
|
1268
|
-
:
|
1380
|
+
class CreateWorldExportJobRequest < Struct.new(
|
1381
|
+
:client_request_token,
|
1382
|
+
:worlds,
|
1383
|
+
:output_location,
|
1384
|
+
:iam_role,
|
1385
|
+
:tags)
|
1269
1386
|
SENSITIVE = []
|
1270
1387
|
include Aws::Structure
|
1271
1388
|
end
|
1272
1389
|
|
1273
|
-
#
|
1390
|
+
# @!attribute [rw] arn
|
1391
|
+
# The Amazon Resource Name (ARN) of the world export job.
|
1392
|
+
# @return [String]
|
1274
1393
|
#
|
1275
|
-
#
|
1276
|
-
#
|
1394
|
+
# @!attribute [rw] status
|
1395
|
+
# The status of the world export job.
|
1277
1396
|
#
|
1278
|
-
#
|
1279
|
-
# name: "Name", # required
|
1280
|
-
# s3_bucket: "S3Bucket", # required
|
1281
|
-
# s3_keys: ["S3Key"], # required
|
1282
|
-
# }
|
1397
|
+
# Pending
|
1283
1398
|
#
|
1284
|
-
#
|
1285
|
-
# The name of the data source.
|
1286
|
-
# @return [String]
|
1399
|
+
# : The world export job request is pending.
|
1287
1400
|
#
|
1288
|
-
#
|
1289
|
-
# The S3 bucket where the data files are located.
|
1290
|
-
# @return [String]
|
1401
|
+
# Running
|
1291
1402
|
#
|
1292
|
-
#
|
1293
|
-
# The list of S3 keys identifying the data source files.
|
1294
|
-
# @return [Array<String>]
|
1403
|
+
# : The world export job is running.
|
1295
1404
|
#
|
1296
|
-
#
|
1405
|
+
# Completed
|
1297
1406
|
#
|
1298
|
-
|
1299
|
-
:name,
|
1300
|
-
:s3_bucket,
|
1301
|
-
:s3_keys)
|
1302
|
-
SENSITIVE = []
|
1303
|
-
include Aws::Structure
|
1304
|
-
end
|
1305
|
-
|
1306
|
-
# @note When making an API call, you may pass DeleteFleetRequest
|
1307
|
-
# data as a hash:
|
1407
|
+
# : The world export job completed.
|
1308
1408
|
#
|
1309
|
-
#
|
1310
|
-
# fleet: "Arn", # required
|
1311
|
-
# }
|
1409
|
+
# Failed
|
1312
1410
|
#
|
1313
|
-
#
|
1314
|
-
#
|
1411
|
+
# : The world export job failed. See `failureCode` for more
|
1412
|
+
# information.
|
1413
|
+
#
|
1414
|
+
# Canceled
|
1415
|
+
#
|
1416
|
+
# : The world export job was cancelled.
|
1417
|
+
#
|
1418
|
+
# Canceling
|
1419
|
+
#
|
1420
|
+
# : The world export job is being cancelled.
|
1315
1421
|
# @return [String]
|
1316
1422
|
#
|
1317
|
-
#
|
1423
|
+
# @!attribute [rw] created_at
|
1424
|
+
# The time, in milliseconds since the epoch, when the world export job
|
1425
|
+
# was created.
|
1426
|
+
# @return [Time]
|
1318
1427
|
#
|
1319
|
-
|
1320
|
-
|
1321
|
-
SENSITIVE = []
|
1322
|
-
include Aws::Structure
|
1323
|
-
end
|
1324
|
-
|
1325
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteFleetResponse AWS API Documentation
|
1428
|
+
# @!attribute [rw] failure_code
|
1429
|
+
# The failure code of the world export job if it failed:
|
1326
1430
|
#
|
1327
|
-
|
1328
|
-
|
1329
|
-
# @note When making an API call, you may pass DeleteRobotApplicationRequest
|
1330
|
-
# data as a hash:
|
1431
|
+
# InternalServiceError
|
1331
1432
|
#
|
1332
|
-
#
|
1333
|
-
# application: "Arn", # required
|
1334
|
-
# application_version: "Version",
|
1335
|
-
# }
|
1433
|
+
# : Internal service error.
|
1336
1434
|
#
|
1337
|
-
#
|
1338
|
-
# The Amazon Resource Name (ARN) of the the robot application.
|
1339
|
-
# @return [String]
|
1435
|
+
# LimitExceeded
|
1340
1436
|
#
|
1341
|
-
#
|
1342
|
-
#
|
1343
|
-
#
|
1437
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
1438
|
+
# number of concurrent stream requests exceeds the maximum number
|
1439
|
+
# allowed.
|
1344
1440
|
#
|
1345
|
-
#
|
1441
|
+
# ResourceNotFound
|
1346
1442
|
#
|
1347
|
-
|
1348
|
-
:application,
|
1349
|
-
:application_version)
|
1350
|
-
SENSITIVE = []
|
1351
|
-
include Aws::Structure
|
1352
|
-
end
|
1353
|
-
|
1354
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotApplicationResponse AWS API Documentation
|
1443
|
+
# : The specified resource could not be found.
|
1355
1444
|
#
|
1356
|
-
|
1357
|
-
|
1358
|
-
# @note When making an API call, you may pass DeleteRobotRequest
|
1359
|
-
# data as a hash:
|
1445
|
+
# RequestThrottled
|
1360
1446
|
#
|
1361
|
-
#
|
1362
|
-
# robot: "Arn", # required
|
1363
|
-
# }
|
1447
|
+
# : The request was throttled.
|
1364
1448
|
#
|
1365
|
-
#
|
1366
|
-
# The Amazon Resource Name (ARN) of the robot.
|
1367
|
-
# @return [String]
|
1449
|
+
# InvalidInput
|
1368
1450
|
#
|
1369
|
-
#
|
1451
|
+
# : An input parameter in the request is not valid.
|
1370
1452
|
#
|
1371
|
-
|
1372
|
-
:robot)
|
1373
|
-
SENSITIVE = []
|
1374
|
-
include Aws::Structure
|
1375
|
-
end
|
1376
|
-
|
1377
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotResponse AWS API Documentation
|
1453
|
+
# AllWorldGenerationFailed
|
1378
1454
|
#
|
1379
|
-
|
1380
|
-
|
1381
|
-
# @note When making an API call, you may pass DeleteSimulationApplicationRequest
|
1382
|
-
# data as a hash:
|
1455
|
+
# : All of the worlds in the world generation job failed. This can
|
1456
|
+
# happen if your `worldCount` is greater than 50 or less than 1.
|
1383
1457
|
#
|
1384
|
-
#
|
1385
|
-
#
|
1386
|
-
# application_version: "Version",
|
1387
|
-
# }
|
1458
|
+
# For more information about troubleshooting WorldForge, see
|
1459
|
+
# [Troubleshooting Simulation WorldForge][1].
|
1388
1460
|
#
|
1389
|
-
#
|
1390
|
-
#
|
1391
|
-
#
|
1461
|
+
#
|
1462
|
+
#
|
1463
|
+
# [1]: https://docs.aws.amazon.com/robomaker/latest/dg/troubleshooting-worldforge.html
|
1392
1464
|
# @return [String]
|
1393
1465
|
#
|
1394
|
-
# @!attribute [rw]
|
1395
|
-
#
|
1466
|
+
# @!attribute [rw] client_request_token
|
1467
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1468
|
+
# idempotency of the request.
|
1396
1469
|
# @return [String]
|
1397
1470
|
#
|
1398
|
-
#
|
1471
|
+
# @!attribute [rw] output_location
|
1472
|
+
# The output location.
|
1473
|
+
# @return [Types::OutputLocation]
|
1399
1474
|
#
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1475
|
+
# @!attribute [rw] iam_role
|
1476
|
+
# The IAM role that the world export process uses to access the Amazon
|
1477
|
+
# S3 bucket and put the export.
|
1478
|
+
# @return [String]
|
1479
|
+
#
|
1480
|
+
# @!attribute [rw] tags
|
1481
|
+
# A map that contains tag keys and tag values that are attached to the
|
1482
|
+
# world export job.
|
1483
|
+
# @return [Hash<String,String>]
|
1484
|
+
#
|
1485
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldExportJobResponse AWS API Documentation
|
1486
|
+
#
|
1487
|
+
class CreateWorldExportJobResponse < Struct.new(
|
1488
|
+
:arn,
|
1489
|
+
:status,
|
1490
|
+
:created_at,
|
1491
|
+
:failure_code,
|
1492
|
+
:client_request_token,
|
1493
|
+
:output_location,
|
1494
|
+
:iam_role,
|
1495
|
+
:tags)
|
1403
1496
|
SENSITIVE = []
|
1404
1497
|
include Aws::Structure
|
1405
1498
|
end
|
1406
1499
|
|
1407
|
-
# @
|
1408
|
-
#
|
1409
|
-
class DeleteSimulationApplicationResponse < Aws::EmptyStructure; end
|
1410
|
-
|
1411
|
-
# Information about a deployment application configuration.
|
1412
|
-
#
|
1413
|
-
# @note When making an API call, you may pass DeploymentApplicationConfig
|
1500
|
+
# @note When making an API call, you may pass CreateWorldGenerationJobRequest
|
1414
1501
|
# data as a hash:
|
1415
1502
|
#
|
1416
1503
|
# {
|
1417
|
-
#
|
1418
|
-
#
|
1419
|
-
#
|
1420
|
-
#
|
1421
|
-
#
|
1422
|
-
#
|
1423
|
-
#
|
1424
|
-
#
|
1425
|
-
#
|
1426
|
-
#
|
1504
|
+
# client_request_token: "ClientRequestToken",
|
1505
|
+
# template: "Arn", # required
|
1506
|
+
# world_count: { # required
|
1507
|
+
# floorplan_count: 1,
|
1508
|
+
# interior_count_per_floorplan: 1,
|
1509
|
+
# },
|
1510
|
+
# tags: {
|
1511
|
+
# "TagKey" => "TagValue",
|
1512
|
+
# },
|
1513
|
+
# world_tags: {
|
1514
|
+
# "TagKey" => "TagValue",
|
1427
1515
|
# },
|
1428
1516
|
# }
|
1429
1517
|
#
|
1430
|
-
# @!attribute [rw]
|
1431
|
-
#
|
1518
|
+
# @!attribute [rw] client_request_token
|
1519
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1520
|
+
# idempotency of the request.
|
1521
|
+
#
|
1522
|
+
# **A suitable default value is auto-generated.** You should normally
|
1523
|
+
# not need to pass this option.
|
1432
1524
|
# @return [String]
|
1433
1525
|
#
|
1434
|
-
# @!attribute [rw]
|
1435
|
-
# The
|
1526
|
+
# @!attribute [rw] template
|
1527
|
+
# The Amazon Resource Name (arn) of the world template describing the
|
1528
|
+
# worlds you want to create.
|
1436
1529
|
# @return [String]
|
1437
1530
|
#
|
1438
|
-
# @!attribute [rw]
|
1439
|
-
#
|
1440
|
-
# @return [Types::
|
1531
|
+
# @!attribute [rw] world_count
|
1532
|
+
# Information about the world count.
|
1533
|
+
# @return [Types::WorldCount]
|
1441
1534
|
#
|
1442
|
-
#
|
1535
|
+
# @!attribute [rw] tags
|
1536
|
+
# A map that contains tag keys and tag values that are attached to the
|
1537
|
+
# world generator job.
|
1538
|
+
# @return [Hash<String,String>]
|
1443
1539
|
#
|
1444
|
-
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1540
|
+
# @!attribute [rw] world_tags
|
1541
|
+
# A map that contains tag keys and tag values that are attached to the
|
1542
|
+
# generated worlds.
|
1543
|
+
# @return [Hash<String,String>]
|
1544
|
+
#
|
1545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJobRequest AWS API Documentation
|
1546
|
+
#
|
1547
|
+
class CreateWorldGenerationJobRequest < Struct.new(
|
1548
|
+
:client_request_token,
|
1549
|
+
:template,
|
1550
|
+
:world_count,
|
1551
|
+
:tags,
|
1552
|
+
:world_tags)
|
1448
1553
|
SENSITIVE = []
|
1449
1554
|
include Aws::Structure
|
1450
1555
|
end
|
1451
1556
|
|
1452
|
-
#
|
1557
|
+
# @!attribute [rw] arn
|
1558
|
+
# The Amazon Resource Name (ARN) of the world generator job.
|
1559
|
+
# @return [String]
|
1453
1560
|
#
|
1454
|
-
#
|
1455
|
-
#
|
1561
|
+
# @!attribute [rw] status
|
1562
|
+
# The status of the world generator job.
|
1456
1563
|
#
|
1457
|
-
#
|
1458
|
-
# concurrent_deployment_percentage: 1,
|
1459
|
-
# failure_threshold_percentage: 1,
|
1460
|
-
# robot_deployment_timeout_in_seconds: 1,
|
1461
|
-
# download_condition_file: {
|
1462
|
-
# bucket: "S3Bucket", # required
|
1463
|
-
# key: "S3Key", # required
|
1464
|
-
# etag: "S3Etag",
|
1465
|
-
# },
|
1466
|
-
# }
|
1564
|
+
# Pending
|
1467
1565
|
#
|
1468
|
-
#
|
1469
|
-
# The percentage of robots receiving the deployment at the same time.
|
1470
|
-
# @return [Integer]
|
1566
|
+
# : The world generator job request is pending.
|
1471
1567
|
#
|
1472
|
-
#
|
1473
|
-
# The percentage of deployments that need to fail before stopping
|
1474
|
-
# deployment.
|
1475
|
-
# @return [Integer]
|
1568
|
+
# Running
|
1476
1569
|
#
|
1477
|
-
#
|
1478
|
-
# The amount of time, in seconds, to wait for deployment to a single
|
1479
|
-
# robot to complete. Choose a time between 1 minute and 7 days. The
|
1480
|
-
# default is 5 hours.
|
1481
|
-
# @return [Integer]
|
1570
|
+
# : The world generator job is running.
|
1482
1571
|
#
|
1483
|
-
#
|
1484
|
-
# The download condition file.
|
1485
|
-
# @return [Types::S3Object]
|
1572
|
+
# Completed
|
1486
1573
|
#
|
1487
|
-
#
|
1574
|
+
# : The world generator job completed.
|
1488
1575
|
#
|
1489
|
-
|
1490
|
-
:concurrent_deployment_percentage,
|
1491
|
-
:failure_threshold_percentage,
|
1492
|
-
:robot_deployment_timeout_in_seconds,
|
1493
|
-
:download_condition_file)
|
1494
|
-
SENSITIVE = []
|
1495
|
-
include Aws::Structure
|
1496
|
-
end
|
1497
|
-
|
1498
|
-
# Information about a deployment job.
|
1576
|
+
# Failed
|
1499
1577
|
#
|
1500
|
-
#
|
1501
|
-
#
|
1502
|
-
# @return [String]
|
1578
|
+
# : The world generator job failed. See `failureCode` for more
|
1579
|
+
# information.
|
1503
1580
|
#
|
1504
|
-
#
|
1505
|
-
# The Amazon Resource Name (ARN) of the fleet.
|
1506
|
-
# @return [String]
|
1581
|
+
# PartialFailed
|
1507
1582
|
#
|
1508
|
-
#
|
1509
|
-
# The status of the deployment job.
|
1510
|
-
# @return [String]
|
1583
|
+
# : Some worlds did not generate.
|
1511
1584
|
#
|
1512
|
-
#
|
1513
|
-
# The deployment application configuration.
|
1514
|
-
# @return [Array<Types::DeploymentApplicationConfig>]
|
1585
|
+
# Canceled
|
1515
1586
|
#
|
1516
|
-
#
|
1517
|
-
# The deployment configuration.
|
1518
|
-
# @return [Types::DeploymentConfig]
|
1587
|
+
# : The world generator job was cancelled.
|
1519
1588
|
#
|
1520
|
-
#
|
1521
|
-
# A short description of the reason why the deployment job failed.
|
1522
|
-
# @return [String]
|
1589
|
+
# Canceling
|
1523
1590
|
#
|
1524
|
-
#
|
1525
|
-
# The deployment job failure code.
|
1591
|
+
# : The world generator job is being cancelled.
|
1526
1592
|
# @return [String]
|
1527
1593
|
#
|
1528
1594
|
# @!attribute [rw] created_at
|
1529
|
-
# The time, in milliseconds since the epoch, when the
|
1530
|
-
# was created.
|
1595
|
+
# The time, in milliseconds since the epoch, when the world generator
|
1596
|
+
# job was created.
|
1531
1597
|
# @return [Time]
|
1532
1598
|
#
|
1533
|
-
#
|
1599
|
+
# @!attribute [rw] failure_code
|
1600
|
+
# The failure code of the world generator job if it failed:
|
1534
1601
|
#
|
1535
|
-
|
1602
|
+
# InternalServiceError
|
1603
|
+
#
|
1604
|
+
# : Internal service error.
|
1605
|
+
#
|
1606
|
+
# LimitExceeded
|
1607
|
+
#
|
1608
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
1609
|
+
# number of concurrent stream requests exceeds the maximum number
|
1610
|
+
# allowed.
|
1611
|
+
#
|
1612
|
+
# ResourceNotFound
|
1613
|
+
#
|
1614
|
+
# : The specified resource could not be found.
|
1615
|
+
#
|
1616
|
+
# RequestThrottled
|
1617
|
+
#
|
1618
|
+
# : The request was throttled.
|
1619
|
+
#
|
1620
|
+
# InvalidInput
|
1621
|
+
#
|
1622
|
+
# : An input parameter in the request is not valid.
|
1623
|
+
# @return [String]
|
1624
|
+
#
|
1625
|
+
# @!attribute [rw] client_request_token
|
1626
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1627
|
+
# idempotency of the request.
|
1628
|
+
# @return [String]
|
1629
|
+
#
|
1630
|
+
# @!attribute [rw] template
|
1631
|
+
# The Amazon Resource Name (arn) of the world template.
|
1632
|
+
# @return [String]
|
1633
|
+
#
|
1634
|
+
# @!attribute [rw] world_count
|
1635
|
+
# Information about the world count.
|
1636
|
+
# @return [Types::WorldCount]
|
1637
|
+
#
|
1638
|
+
# @!attribute [rw] tags
|
1639
|
+
# A map that contains tag keys and tag values that are attached to the
|
1640
|
+
# world generator job.
|
1641
|
+
# @return [Hash<String,String>]
|
1642
|
+
#
|
1643
|
+
# @!attribute [rw] world_tags
|
1644
|
+
# A map that contains tag keys and tag values that are attached to the
|
1645
|
+
# generated worlds.
|
1646
|
+
# @return [Hash<String,String>]
|
1647
|
+
#
|
1648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJobResponse AWS API Documentation
|
1649
|
+
#
|
1650
|
+
class CreateWorldGenerationJobResponse < Struct.new(
|
1536
1651
|
:arn,
|
1537
|
-
:fleet,
|
1538
1652
|
:status,
|
1539
|
-
:
|
1540
|
-
:deployment_config,
|
1541
|
-
:failure_reason,
|
1653
|
+
:created_at,
|
1542
1654
|
:failure_code,
|
1543
|
-
:
|
1655
|
+
:client_request_token,
|
1656
|
+
:template,
|
1657
|
+
:world_count,
|
1658
|
+
:tags,
|
1659
|
+
:world_tags)
|
1544
1660
|
SENSITIVE = []
|
1545
1661
|
include Aws::Structure
|
1546
1662
|
end
|
1547
1663
|
|
1548
|
-
#
|
1549
|
-
#
|
1550
|
-
# @note When making an API call, you may pass DeploymentLaunchConfig
|
1664
|
+
# @note When making an API call, you may pass CreateWorldTemplateRequest
|
1551
1665
|
# data as a hash:
|
1552
1666
|
#
|
1553
1667
|
# {
|
1554
|
-
#
|
1555
|
-
#
|
1556
|
-
#
|
1557
|
-
#
|
1558
|
-
#
|
1559
|
-
# "
|
1668
|
+
# client_request_token: "ClientRequestToken",
|
1669
|
+
# name: "TemplateName",
|
1670
|
+
# template_body: "Json",
|
1671
|
+
# template_location: {
|
1672
|
+
# s3_bucket: "S3Bucket", # required
|
1673
|
+
# s3_key: "S3Key", # required
|
1674
|
+
# },
|
1675
|
+
# tags: {
|
1676
|
+
# "TagKey" => "TagValue",
|
1560
1677
|
# },
|
1561
1678
|
# }
|
1562
1679
|
#
|
1563
|
-
# @!attribute [rw]
|
1564
|
-
#
|
1680
|
+
# @!attribute [rw] client_request_token
|
1681
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1682
|
+
# idempotency of the request.
|
1565
1683
|
# @return [String]
|
1566
1684
|
#
|
1567
|
-
# @!attribute [rw]
|
1568
|
-
# The
|
1569
|
-
# the launch file.
|
1685
|
+
# @!attribute [rw] name
|
1686
|
+
# The name of the world template.
|
1570
1687
|
# @return [String]
|
1571
1688
|
#
|
1572
|
-
# @!attribute [rw]
|
1573
|
-
# The
|
1689
|
+
# @!attribute [rw] template_body
|
1690
|
+
# The world template body.
|
1574
1691
|
# @return [String]
|
1575
1692
|
#
|
1576
|
-
# @!attribute [rw]
|
1577
|
-
# The
|
1578
|
-
#
|
1579
|
-
# @return [String]
|
1693
|
+
# @!attribute [rw] template_location
|
1694
|
+
# The location of the world template.
|
1695
|
+
# @return [Types::TemplateLocation]
|
1580
1696
|
#
|
1581
|
-
# @!attribute [rw]
|
1582
|
-
#
|
1583
|
-
#
|
1697
|
+
# @!attribute [rw] tags
|
1698
|
+
# A map that contains tag keys and tag values that are attached to the
|
1699
|
+
# world template.
|
1584
1700
|
# @return [Hash<String,String>]
|
1585
1701
|
#
|
1586
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplateRequest AWS API Documentation
|
1587
1703
|
#
|
1588
|
-
class
|
1589
|
-
:
|
1590
|
-
:
|
1591
|
-
:
|
1592
|
-
:
|
1593
|
-
:
|
1704
|
+
class CreateWorldTemplateRequest < Struct.new(
|
1705
|
+
:client_request_token,
|
1706
|
+
:name,
|
1707
|
+
:template_body,
|
1708
|
+
:template_location,
|
1709
|
+
:tags)
|
1594
1710
|
SENSITIVE = []
|
1595
1711
|
include Aws::Structure
|
1596
1712
|
end
|
1597
1713
|
|
1598
|
-
#
|
1599
|
-
#
|
1600
|
-
#
|
1601
|
-
# {
|
1602
|
-
# fleet: "Arn", # required
|
1603
|
-
# robot: "Arn", # required
|
1604
|
-
# }
|
1714
|
+
# @!attribute [rw] arn
|
1715
|
+
# The Amazon Resource Name (ARN) of the world template.
|
1716
|
+
# @return [String]
|
1605
1717
|
#
|
1606
|
-
# @!attribute [rw]
|
1607
|
-
#
|
1718
|
+
# @!attribute [rw] client_request_token
|
1719
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1720
|
+
# idempotency of the request.
|
1608
1721
|
# @return [String]
|
1609
1722
|
#
|
1610
|
-
# @!attribute [rw]
|
1611
|
-
# The
|
1723
|
+
# @!attribute [rw] created_at
|
1724
|
+
# The time, in milliseconds since the epoch, when the world template
|
1725
|
+
# was created.
|
1726
|
+
# @return [Time]
|
1727
|
+
#
|
1728
|
+
# @!attribute [rw] name
|
1729
|
+
# The name of the world template.
|
1612
1730
|
# @return [String]
|
1613
1731
|
#
|
1614
|
-
#
|
1732
|
+
# @!attribute [rw] tags
|
1733
|
+
# A map that contains tag keys and tag values that are attached to the
|
1734
|
+
# world template.
|
1735
|
+
# @return [Hash<String,String>]
|
1615
1736
|
#
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1737
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplateResponse AWS API Documentation
|
1738
|
+
#
|
1739
|
+
class CreateWorldTemplateResponse < Struct.new(
|
1740
|
+
:arn,
|
1741
|
+
:client_request_token,
|
1742
|
+
:created_at,
|
1743
|
+
:name,
|
1744
|
+
:tags)
|
1619
1745
|
SENSITIVE = []
|
1620
1746
|
include Aws::Structure
|
1621
1747
|
end
|
1622
1748
|
|
1623
|
-
#
|
1624
|
-
#
|
1749
|
+
# Information about a data source.
|
1750
|
+
#
|
1751
|
+
# @!attribute [rw] name
|
1752
|
+
# The name of the data source.
|
1625
1753
|
# @return [String]
|
1626
1754
|
#
|
1627
|
-
# @!attribute [rw]
|
1628
|
-
# The
|
1755
|
+
# @!attribute [rw] s3_bucket
|
1756
|
+
# The S3 bucket where the data files are located.
|
1629
1757
|
# @return [String]
|
1630
1758
|
#
|
1631
|
-
#
|
1759
|
+
# @!attribute [rw] s3_keys
|
1760
|
+
# The list of S3 keys identifying the data source files.
|
1761
|
+
# @return [Array<Types::S3KeyOutput>]
|
1632
1762
|
#
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1763
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSource AWS API Documentation
|
1764
|
+
#
|
1765
|
+
class DataSource < Struct.new(
|
1766
|
+
:name,
|
1767
|
+
:s3_bucket,
|
1768
|
+
:s3_keys)
|
1636
1769
|
SENSITIVE = []
|
1637
1770
|
include Aws::Structure
|
1638
1771
|
end
|
1639
1772
|
|
1640
|
-
#
|
1773
|
+
# Information about a data source.
|
1774
|
+
#
|
1775
|
+
# @note When making an API call, you may pass DataSourceConfig
|
1641
1776
|
# data as a hash:
|
1642
1777
|
#
|
1643
1778
|
# {
|
1644
|
-
#
|
1779
|
+
# name: "Name", # required
|
1780
|
+
# s3_bucket: "S3Bucket", # required
|
1781
|
+
# s3_keys: ["S3Key"], # required
|
1645
1782
|
# }
|
1646
1783
|
#
|
1647
|
-
# @!attribute [rw]
|
1648
|
-
# The
|
1649
|
-
# @return [String]
|
1650
|
-
#
|
1651
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJobRequest AWS API Documentation
|
1652
|
-
#
|
1653
|
-
class DescribeDeploymentJobRequest < Struct.new(
|
1654
|
-
:job)
|
1655
|
-
SENSITIVE = []
|
1656
|
-
include Aws::Structure
|
1657
|
-
end
|
1658
|
-
|
1659
|
-
# @!attribute [rw] arn
|
1660
|
-
# The Amazon Resource Name (ARN) of the deployment job.
|
1661
|
-
# @return [String]
|
1662
|
-
#
|
1663
|
-
# @!attribute [rw] fleet
|
1664
|
-
# The Amazon Resource Name (ARN) of the fleet.
|
1665
|
-
# @return [String]
|
1666
|
-
#
|
1667
|
-
# @!attribute [rw] status
|
1668
|
-
# The status of the deployment job.
|
1669
|
-
# @return [String]
|
1670
|
-
#
|
1671
|
-
# @!attribute [rw] deployment_config
|
1672
|
-
# The deployment configuration.
|
1673
|
-
# @return [Types::DeploymentConfig]
|
1674
|
-
#
|
1675
|
-
# @!attribute [rw] deployment_application_configs
|
1676
|
-
# The deployment application configuration.
|
1677
|
-
# @return [Array<Types::DeploymentApplicationConfig>]
|
1678
|
-
#
|
1679
|
-
# @!attribute [rw] failure_reason
|
1680
|
-
# A short description of the reason why the deployment job failed.
|
1784
|
+
# @!attribute [rw] name
|
1785
|
+
# The name of the data source.
|
1681
1786
|
# @return [String]
|
1682
1787
|
#
|
1683
|
-
# @!attribute [rw]
|
1684
|
-
# The
|
1788
|
+
# @!attribute [rw] s3_bucket
|
1789
|
+
# The S3 bucket where the data files are located.
|
1685
1790
|
# @return [String]
|
1686
1791
|
#
|
1687
|
-
# @!attribute [rw]
|
1688
|
-
# The
|
1689
|
-
#
|
1690
|
-
# @return [Time]
|
1691
|
-
#
|
1692
|
-
# @!attribute [rw] robot_deployment_summary
|
1693
|
-
# A list of robot deployment summaries.
|
1694
|
-
# @return [Array<Types::RobotDeployment>]
|
1695
|
-
#
|
1696
|
-
# @!attribute [rw] tags
|
1697
|
-
# The list of all tags added to the specified deployment job.
|
1698
|
-
# @return [Hash<String,String>]
|
1792
|
+
# @!attribute [rw] s3_keys
|
1793
|
+
# The list of S3 keys identifying the data source files.
|
1794
|
+
# @return [Array<String>]
|
1699
1795
|
#
|
1700
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSourceConfig AWS API Documentation
|
1701
1797
|
#
|
1702
|
-
class
|
1703
|
-
:
|
1704
|
-
:
|
1705
|
-
:
|
1706
|
-
:deployment_config,
|
1707
|
-
:deployment_application_configs,
|
1708
|
-
:failure_reason,
|
1709
|
-
:failure_code,
|
1710
|
-
:created_at,
|
1711
|
-
:robot_deployment_summary,
|
1712
|
-
:tags)
|
1798
|
+
class DataSourceConfig < Struct.new(
|
1799
|
+
:name,
|
1800
|
+
:s3_bucket,
|
1801
|
+
:s3_keys)
|
1713
1802
|
SENSITIVE = []
|
1714
1803
|
include Aws::Structure
|
1715
1804
|
end
|
1716
1805
|
|
1717
|
-
# @note When making an API call, you may pass
|
1806
|
+
# @note When making an API call, you may pass DeleteFleetRequest
|
1718
1807
|
# data as a hash:
|
1719
1808
|
#
|
1720
1809
|
# {
|
@@ -1725,63 +1814,71 @@ module Aws::RoboMaker
|
|
1725
1814
|
# The Amazon Resource Name (ARN) of the fleet.
|
1726
1815
|
# @return [String]
|
1727
1816
|
#
|
1728
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteFleetRequest AWS API Documentation
|
1729
1818
|
#
|
1730
|
-
class
|
1819
|
+
class DeleteFleetRequest < Struct.new(
|
1731
1820
|
:fleet)
|
1732
1821
|
SENSITIVE = []
|
1733
1822
|
include Aws::Structure
|
1734
1823
|
end
|
1735
1824
|
|
1736
|
-
#
|
1737
|
-
# The name of the fleet.
|
1738
|
-
# @return [String]
|
1739
|
-
#
|
1740
|
-
# @!attribute [rw] arn
|
1741
|
-
# The Amazon Resource Name (ARN) of the fleet.
|
1742
|
-
# @return [String]
|
1825
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteFleetResponse AWS API Documentation
|
1743
1826
|
#
|
1744
|
-
|
1745
|
-
|
1746
|
-
#
|
1827
|
+
class DeleteFleetResponse < Aws::EmptyStructure; end
|
1828
|
+
|
1829
|
+
# @note When making an API call, you may pass DeleteRobotApplicationRequest
|
1830
|
+
# data as a hash:
|
1747
1831
|
#
|
1748
|
-
#
|
1749
|
-
#
|
1750
|
-
#
|
1751
|
-
#
|
1832
|
+
# {
|
1833
|
+
# application: "Arn", # required
|
1834
|
+
# application_version: "Version",
|
1835
|
+
# }
|
1752
1836
|
#
|
1753
|
-
# @!attribute [rw]
|
1754
|
-
# The
|
1837
|
+
# @!attribute [rw] application
|
1838
|
+
# The Amazon Resource Name (ARN) of the the robot application.
|
1755
1839
|
# @return [String]
|
1756
1840
|
#
|
1757
|
-
# @!attribute [rw]
|
1758
|
-
# The
|
1841
|
+
# @!attribute [rw] application_version
|
1842
|
+
# The version of the robot application to delete.
|
1759
1843
|
# @return [String]
|
1760
1844
|
#
|
1761
|
-
#
|
1762
|
-
# The time of the last deployment.
|
1763
|
-
# @return [Time]
|
1845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotApplicationRequest AWS API Documentation
|
1764
1846
|
#
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1847
|
+
class DeleteRobotApplicationRequest < Struct.new(
|
1848
|
+
:application,
|
1849
|
+
:application_version)
|
1850
|
+
SENSITIVE = []
|
1851
|
+
include Aws::Structure
|
1852
|
+
end
|
1853
|
+
|
1854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotApplicationResponse AWS API Documentation
|
1768
1855
|
#
|
1769
|
-
|
1856
|
+
class DeleteRobotApplicationResponse < Aws::EmptyStructure; end
|
1857
|
+
|
1858
|
+
# @note When making an API call, you may pass DeleteRobotRequest
|
1859
|
+
# data as a hash:
|
1770
1860
|
#
|
1771
|
-
|
1772
|
-
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1778
|
-
|
1779
|
-
|
1861
|
+
# {
|
1862
|
+
# robot: "Arn", # required
|
1863
|
+
# }
|
1864
|
+
#
|
1865
|
+
# @!attribute [rw] robot
|
1866
|
+
# The Amazon Resource Name (ARN) of the robot.
|
1867
|
+
# @return [String]
|
1868
|
+
#
|
1869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotRequest AWS API Documentation
|
1870
|
+
#
|
1871
|
+
class DeleteRobotRequest < Struct.new(
|
1872
|
+
:robot)
|
1780
1873
|
SENSITIVE = []
|
1781
1874
|
include Aws::Structure
|
1782
1875
|
end
|
1783
1876
|
|
1784
|
-
# @
|
1877
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotResponse AWS API Documentation
|
1878
|
+
#
|
1879
|
+
class DeleteRobotResponse < Aws::EmptyStructure; end
|
1880
|
+
|
1881
|
+
# @note When making an API call, you may pass DeleteSimulationApplicationRequest
|
1785
1882
|
# data as a hash:
|
1786
1883
|
#
|
1787
1884
|
# {
|
@@ -1790,97 +1887,524 @@ module Aws::RoboMaker
|
|
1790
1887
|
# }
|
1791
1888
|
#
|
1792
1889
|
# @!attribute [rw] application
|
1793
|
-
# The
|
1890
|
+
# The application information for the simulation application to
|
1891
|
+
# delete.
|
1794
1892
|
# @return [String]
|
1795
1893
|
#
|
1796
1894
|
# @!attribute [rw] application_version
|
1797
|
-
# The version of the
|
1895
|
+
# The version of the simulation application to delete.
|
1798
1896
|
# @return [String]
|
1799
1897
|
#
|
1800
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteSimulationApplicationRequest AWS API Documentation
|
1801
1899
|
#
|
1802
|
-
class
|
1900
|
+
class DeleteSimulationApplicationRequest < Struct.new(
|
1803
1901
|
:application,
|
1804
1902
|
:application_version)
|
1805
1903
|
SENSITIVE = []
|
1806
1904
|
include Aws::Structure
|
1807
1905
|
end
|
1808
1906
|
|
1809
|
-
#
|
1810
|
-
# The Amazon Resource Name (ARN) of the robot application.
|
1811
|
-
# @return [String]
|
1812
|
-
#
|
1813
|
-
# @!attribute [rw] name
|
1814
|
-
# The name of the robot application.
|
1815
|
-
# @return [String]
|
1816
|
-
#
|
1817
|
-
# @!attribute [rw] version
|
1818
|
-
# The version of the robot application.
|
1819
|
-
# @return [String]
|
1907
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteSimulationApplicationResponse AWS API Documentation
|
1820
1908
|
#
|
1821
|
-
|
1822
|
-
|
1823
|
-
#
|
1909
|
+
class DeleteSimulationApplicationResponse < Aws::EmptyStructure; end
|
1910
|
+
|
1911
|
+
# @note When making an API call, you may pass DeleteWorldTemplateRequest
|
1912
|
+
# data as a hash:
|
1824
1913
|
#
|
1825
|
-
#
|
1826
|
-
#
|
1827
|
-
#
|
1828
|
-
# @return [Types::RobotSoftwareSuite]
|
1914
|
+
# {
|
1915
|
+
# template: "Arn", # required
|
1916
|
+
# }
|
1829
1917
|
#
|
1830
|
-
# @!attribute [rw]
|
1831
|
-
# The
|
1918
|
+
# @!attribute [rw] template
|
1919
|
+
# The Amazon Resource Name (arn) of the world template you want to
|
1920
|
+
# delete.
|
1832
1921
|
# @return [String]
|
1833
1922
|
#
|
1834
|
-
#
|
1835
|
-
# The time, in milliseconds since the epoch, when the robot
|
1836
|
-
# application was last updated.
|
1837
|
-
# @return [Time]
|
1838
|
-
#
|
1839
|
-
# @!attribute [rw] tags
|
1840
|
-
# The list of all tags added to the specified robot application.
|
1841
|
-
# @return [Hash<String,String>]
|
1923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplateRequest AWS API Documentation
|
1842
1924
|
#
|
1843
|
-
|
1844
|
-
|
1845
|
-
class DescribeRobotApplicationResponse < Struct.new(
|
1846
|
-
:arn,
|
1847
|
-
:name,
|
1848
|
-
:version,
|
1849
|
-
:sources,
|
1850
|
-
:robot_software_suite,
|
1851
|
-
:revision_id,
|
1852
|
-
:last_updated_at,
|
1853
|
-
:tags)
|
1925
|
+
class DeleteWorldTemplateRequest < Struct.new(
|
1926
|
+
:template)
|
1854
1927
|
SENSITIVE = []
|
1855
1928
|
include Aws::Structure
|
1856
1929
|
end
|
1857
1930
|
|
1858
|
-
# @
|
1931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplateResponse AWS API Documentation
|
1932
|
+
#
|
1933
|
+
class DeleteWorldTemplateResponse < Aws::EmptyStructure; end
|
1934
|
+
|
1935
|
+
# Information about a deployment application configuration.
|
1936
|
+
#
|
1937
|
+
# @note When making an API call, you may pass DeploymentApplicationConfig
|
1859
1938
|
# data as a hash:
|
1860
1939
|
#
|
1861
1940
|
# {
|
1862
|
-
#
|
1941
|
+
# application: "Arn", # required
|
1942
|
+
# application_version: "DeploymentVersion", # required
|
1943
|
+
# launch_config: { # required
|
1944
|
+
# package_name: "Command", # required
|
1945
|
+
# pre_launch_file: "Path",
|
1946
|
+
# launch_file: "Command", # required
|
1947
|
+
# post_launch_file: "Path",
|
1948
|
+
# environment_variables: {
|
1949
|
+
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
1950
|
+
# },
|
1951
|
+
# },
|
1863
1952
|
# }
|
1864
1953
|
#
|
1865
|
-
# @!attribute [rw]
|
1866
|
-
# The Amazon Resource Name (ARN) of the robot
|
1954
|
+
# @!attribute [rw] application
|
1955
|
+
# The Amazon Resource Name (ARN) of the robot application.
|
1867
1956
|
# @return [String]
|
1868
1957
|
#
|
1869
|
-
#
|
1958
|
+
# @!attribute [rw] application_version
|
1959
|
+
# The version of the application.
|
1960
|
+
# @return [String]
|
1870
1961
|
#
|
1871
|
-
|
1872
|
-
|
1962
|
+
# @!attribute [rw] launch_config
|
1963
|
+
# The launch configuration.
|
1964
|
+
# @return [Types::DeploymentLaunchConfig]
|
1965
|
+
#
|
1966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentApplicationConfig AWS API Documentation
|
1967
|
+
#
|
1968
|
+
class DeploymentApplicationConfig < Struct.new(
|
1969
|
+
:application,
|
1970
|
+
:application_version,
|
1971
|
+
:launch_config)
|
1873
1972
|
SENSITIVE = []
|
1874
1973
|
include Aws::Structure
|
1875
1974
|
end
|
1876
1975
|
|
1877
|
-
#
|
1878
|
-
# The Amazon Resource Name (ARN) of the robot.
|
1879
|
-
# @return [String]
|
1976
|
+
# Information about a deployment configuration.
|
1880
1977
|
#
|
1881
|
-
#
|
1882
|
-
#
|
1883
|
-
#
|
1978
|
+
# @note When making an API call, you may pass DeploymentConfig
|
1979
|
+
# data as a hash:
|
1980
|
+
#
|
1981
|
+
# {
|
1982
|
+
# concurrent_deployment_percentage: 1,
|
1983
|
+
# failure_threshold_percentage: 1,
|
1984
|
+
# robot_deployment_timeout_in_seconds: 1,
|
1985
|
+
# download_condition_file: {
|
1986
|
+
# bucket: "S3Bucket", # required
|
1987
|
+
# key: "S3Key", # required
|
1988
|
+
# etag: "S3Etag",
|
1989
|
+
# },
|
1990
|
+
# }
|
1991
|
+
#
|
1992
|
+
# @!attribute [rw] concurrent_deployment_percentage
|
1993
|
+
# The percentage of robots receiving the deployment at the same time.
|
1994
|
+
# @return [Integer]
|
1995
|
+
#
|
1996
|
+
# @!attribute [rw] failure_threshold_percentage
|
1997
|
+
# The percentage of deployments that need to fail before stopping
|
1998
|
+
# deployment.
|
1999
|
+
# @return [Integer]
|
2000
|
+
#
|
2001
|
+
# @!attribute [rw] robot_deployment_timeout_in_seconds
|
2002
|
+
# The amount of time, in seconds, to wait for deployment to a single
|
2003
|
+
# robot to complete. Choose a time between 1 minute and 7 days. The
|
2004
|
+
# default is 5 hours.
|
2005
|
+
# @return [Integer]
|
2006
|
+
#
|
2007
|
+
# @!attribute [rw] download_condition_file
|
2008
|
+
# The download condition file.
|
2009
|
+
# @return [Types::S3Object]
|
2010
|
+
#
|
2011
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentConfig AWS API Documentation
|
2012
|
+
#
|
2013
|
+
class DeploymentConfig < Struct.new(
|
2014
|
+
:concurrent_deployment_percentage,
|
2015
|
+
:failure_threshold_percentage,
|
2016
|
+
:robot_deployment_timeout_in_seconds,
|
2017
|
+
:download_condition_file)
|
2018
|
+
SENSITIVE = []
|
2019
|
+
include Aws::Structure
|
2020
|
+
end
|
2021
|
+
|
2022
|
+
# Information about a deployment job.
|
2023
|
+
#
|
2024
|
+
# @!attribute [rw] arn
|
2025
|
+
# The Amazon Resource Name (ARN) of the deployment job.
|
2026
|
+
# @return [String]
|
2027
|
+
#
|
2028
|
+
# @!attribute [rw] fleet
|
2029
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2030
|
+
# @return [String]
|
2031
|
+
#
|
2032
|
+
# @!attribute [rw] status
|
2033
|
+
# The status of the deployment job.
|
2034
|
+
# @return [String]
|
2035
|
+
#
|
2036
|
+
# @!attribute [rw] deployment_application_configs
|
2037
|
+
# The deployment application configuration.
|
2038
|
+
# @return [Array<Types::DeploymentApplicationConfig>]
|
2039
|
+
#
|
2040
|
+
# @!attribute [rw] deployment_config
|
2041
|
+
# The deployment configuration.
|
2042
|
+
# @return [Types::DeploymentConfig]
|
2043
|
+
#
|
2044
|
+
# @!attribute [rw] failure_reason
|
2045
|
+
# A short description of the reason why the deployment job failed.
|
2046
|
+
# @return [String]
|
2047
|
+
#
|
2048
|
+
# @!attribute [rw] failure_code
|
2049
|
+
# The deployment job failure code.
|
2050
|
+
# @return [String]
|
2051
|
+
#
|
2052
|
+
# @!attribute [rw] created_at
|
2053
|
+
# The time, in milliseconds since the epoch, when the deployment job
|
2054
|
+
# was created.
|
2055
|
+
# @return [Time]
|
2056
|
+
#
|
2057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentJob AWS API Documentation
|
2058
|
+
#
|
2059
|
+
class DeploymentJob < Struct.new(
|
2060
|
+
:arn,
|
2061
|
+
:fleet,
|
2062
|
+
:status,
|
2063
|
+
:deployment_application_configs,
|
2064
|
+
:deployment_config,
|
2065
|
+
:failure_reason,
|
2066
|
+
:failure_code,
|
2067
|
+
:created_at)
|
2068
|
+
SENSITIVE = []
|
2069
|
+
include Aws::Structure
|
2070
|
+
end
|
2071
|
+
|
2072
|
+
# Configuration information for a deployment launch.
|
2073
|
+
#
|
2074
|
+
# @note When making an API call, you may pass DeploymentLaunchConfig
|
2075
|
+
# data as a hash:
|
2076
|
+
#
|
2077
|
+
# {
|
2078
|
+
# package_name: "Command", # required
|
2079
|
+
# pre_launch_file: "Path",
|
2080
|
+
# launch_file: "Command", # required
|
2081
|
+
# post_launch_file: "Path",
|
2082
|
+
# environment_variables: {
|
2083
|
+
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
2084
|
+
# },
|
2085
|
+
# }
|
2086
|
+
#
|
2087
|
+
# @!attribute [rw] package_name
|
2088
|
+
# The package name.
|
2089
|
+
# @return [String]
|
2090
|
+
#
|
2091
|
+
# @!attribute [rw] pre_launch_file
|
2092
|
+
# The deployment pre-launch file. This file will be executed prior to
|
2093
|
+
# the launch file.
|
2094
|
+
# @return [String]
|
2095
|
+
#
|
2096
|
+
# @!attribute [rw] launch_file
|
2097
|
+
# The launch file name.
|
2098
|
+
# @return [String]
|
2099
|
+
#
|
2100
|
+
# @!attribute [rw] post_launch_file
|
2101
|
+
# The deployment post-launch file. This file will be executed after
|
2102
|
+
# the launch file.
|
2103
|
+
# @return [String]
|
2104
|
+
#
|
2105
|
+
# @!attribute [rw] environment_variables
|
2106
|
+
# An array of key/value pairs specifying environment variables for the
|
2107
|
+
# robot application
|
2108
|
+
# @return [Hash<String,String>]
|
2109
|
+
#
|
2110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentLaunchConfig AWS API Documentation
|
2111
|
+
#
|
2112
|
+
class DeploymentLaunchConfig < Struct.new(
|
2113
|
+
:package_name,
|
2114
|
+
:pre_launch_file,
|
2115
|
+
:launch_file,
|
2116
|
+
:post_launch_file,
|
2117
|
+
:environment_variables)
|
2118
|
+
SENSITIVE = []
|
2119
|
+
include Aws::Structure
|
2120
|
+
end
|
2121
|
+
|
2122
|
+
# @note When making an API call, you may pass DeregisterRobotRequest
|
2123
|
+
# data as a hash:
|
2124
|
+
#
|
2125
|
+
# {
|
2126
|
+
# fleet: "Arn", # required
|
2127
|
+
# robot: "Arn", # required
|
2128
|
+
# }
|
2129
|
+
#
|
2130
|
+
# @!attribute [rw] fleet
|
2131
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2132
|
+
# @return [String]
|
2133
|
+
#
|
2134
|
+
# @!attribute [rw] robot
|
2135
|
+
# The Amazon Resource Name (ARN) of the robot.
|
2136
|
+
# @return [String]
|
2137
|
+
#
|
2138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeregisterRobotRequest AWS API Documentation
|
2139
|
+
#
|
2140
|
+
class DeregisterRobotRequest < Struct.new(
|
2141
|
+
:fleet,
|
2142
|
+
:robot)
|
2143
|
+
SENSITIVE = []
|
2144
|
+
include Aws::Structure
|
2145
|
+
end
|
2146
|
+
|
2147
|
+
# @!attribute [rw] fleet
|
2148
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2149
|
+
# @return [String]
|
2150
|
+
#
|
2151
|
+
# @!attribute [rw] robot
|
2152
|
+
# The Amazon Resource Name (ARN) of the robot.
|
2153
|
+
# @return [String]
|
2154
|
+
#
|
2155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeregisterRobotResponse AWS API Documentation
|
2156
|
+
#
|
2157
|
+
class DeregisterRobotResponse < Struct.new(
|
2158
|
+
:fleet,
|
2159
|
+
:robot)
|
2160
|
+
SENSITIVE = []
|
2161
|
+
include Aws::Structure
|
2162
|
+
end
|
2163
|
+
|
2164
|
+
# @note When making an API call, you may pass DescribeDeploymentJobRequest
|
2165
|
+
# data as a hash:
|
2166
|
+
#
|
2167
|
+
# {
|
2168
|
+
# job: "Arn", # required
|
2169
|
+
# }
|
2170
|
+
#
|
2171
|
+
# @!attribute [rw] job
|
2172
|
+
# The Amazon Resource Name (ARN) of the deployment job.
|
2173
|
+
# @return [String]
|
2174
|
+
#
|
2175
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJobRequest AWS API Documentation
|
2176
|
+
#
|
2177
|
+
class DescribeDeploymentJobRequest < Struct.new(
|
2178
|
+
:job)
|
2179
|
+
SENSITIVE = []
|
2180
|
+
include Aws::Structure
|
2181
|
+
end
|
2182
|
+
|
2183
|
+
# @!attribute [rw] arn
|
2184
|
+
# The Amazon Resource Name (ARN) of the deployment job.
|
2185
|
+
# @return [String]
|
2186
|
+
#
|
2187
|
+
# @!attribute [rw] fleet
|
2188
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2189
|
+
# @return [String]
|
2190
|
+
#
|
2191
|
+
# @!attribute [rw] status
|
2192
|
+
# The status of the deployment job.
|
2193
|
+
# @return [String]
|
2194
|
+
#
|
2195
|
+
# @!attribute [rw] deployment_config
|
2196
|
+
# The deployment configuration.
|
2197
|
+
# @return [Types::DeploymentConfig]
|
2198
|
+
#
|
2199
|
+
# @!attribute [rw] deployment_application_configs
|
2200
|
+
# The deployment application configuration.
|
2201
|
+
# @return [Array<Types::DeploymentApplicationConfig>]
|
2202
|
+
#
|
2203
|
+
# @!attribute [rw] failure_reason
|
2204
|
+
# A short description of the reason why the deployment job failed.
|
2205
|
+
# @return [String]
|
2206
|
+
#
|
2207
|
+
# @!attribute [rw] failure_code
|
2208
|
+
# The deployment job failure code.
|
2209
|
+
# @return [String]
|
2210
|
+
#
|
2211
|
+
# @!attribute [rw] created_at
|
2212
|
+
# The time, in milliseconds since the epoch, when the deployment job
|
2213
|
+
# was created.
|
2214
|
+
# @return [Time]
|
2215
|
+
#
|
2216
|
+
# @!attribute [rw] robot_deployment_summary
|
2217
|
+
# A list of robot deployment summaries.
|
2218
|
+
# @return [Array<Types::RobotDeployment>]
|
2219
|
+
#
|
2220
|
+
# @!attribute [rw] tags
|
2221
|
+
# The list of all tags added to the specified deployment job.
|
2222
|
+
# @return [Hash<String,String>]
|
2223
|
+
#
|
2224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJobResponse AWS API Documentation
|
2225
|
+
#
|
2226
|
+
class DescribeDeploymentJobResponse < Struct.new(
|
2227
|
+
:arn,
|
2228
|
+
:fleet,
|
2229
|
+
:status,
|
2230
|
+
:deployment_config,
|
2231
|
+
:deployment_application_configs,
|
2232
|
+
:failure_reason,
|
2233
|
+
:failure_code,
|
2234
|
+
:created_at,
|
2235
|
+
:robot_deployment_summary,
|
2236
|
+
:tags)
|
2237
|
+
SENSITIVE = []
|
2238
|
+
include Aws::Structure
|
2239
|
+
end
|
2240
|
+
|
2241
|
+
# @note When making an API call, you may pass DescribeFleetRequest
|
2242
|
+
# data as a hash:
|
2243
|
+
#
|
2244
|
+
# {
|
2245
|
+
# fleet: "Arn", # required
|
2246
|
+
# }
|
2247
|
+
#
|
2248
|
+
# @!attribute [rw] fleet
|
2249
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2250
|
+
# @return [String]
|
2251
|
+
#
|
2252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleetRequest AWS API Documentation
|
2253
|
+
#
|
2254
|
+
class DescribeFleetRequest < Struct.new(
|
2255
|
+
:fleet)
|
2256
|
+
SENSITIVE = []
|
2257
|
+
include Aws::Structure
|
2258
|
+
end
|
2259
|
+
|
2260
|
+
# @!attribute [rw] name
|
2261
|
+
# The name of the fleet.
|
2262
|
+
# @return [String]
|
2263
|
+
#
|
2264
|
+
# @!attribute [rw] arn
|
2265
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2266
|
+
# @return [String]
|
2267
|
+
#
|
2268
|
+
# @!attribute [rw] robots
|
2269
|
+
# A list of robots.
|
2270
|
+
# @return [Array<Types::Robot>]
|
2271
|
+
#
|
2272
|
+
# @!attribute [rw] created_at
|
2273
|
+
# The time, in milliseconds since the epoch, when the fleet was
|
2274
|
+
# created.
|
2275
|
+
# @return [Time]
|
2276
|
+
#
|
2277
|
+
# @!attribute [rw] last_deployment_status
|
2278
|
+
# The status of the last deployment.
|
2279
|
+
# @return [String]
|
2280
|
+
#
|
2281
|
+
# @!attribute [rw] last_deployment_job
|
2282
|
+
# The Amazon Resource Name (ARN) of the last deployment job.
|
2283
|
+
# @return [String]
|
2284
|
+
#
|
2285
|
+
# @!attribute [rw] last_deployment_time
|
2286
|
+
# The time of the last deployment.
|
2287
|
+
# @return [Time]
|
2288
|
+
#
|
2289
|
+
# @!attribute [rw] tags
|
2290
|
+
# The list of all tags added to the specified fleet.
|
2291
|
+
# @return [Hash<String,String>]
|
2292
|
+
#
|
2293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleetResponse AWS API Documentation
|
2294
|
+
#
|
2295
|
+
class DescribeFleetResponse < Struct.new(
|
2296
|
+
:name,
|
2297
|
+
:arn,
|
2298
|
+
:robots,
|
2299
|
+
:created_at,
|
2300
|
+
:last_deployment_status,
|
2301
|
+
:last_deployment_job,
|
2302
|
+
:last_deployment_time,
|
2303
|
+
:tags)
|
2304
|
+
SENSITIVE = []
|
2305
|
+
include Aws::Structure
|
2306
|
+
end
|
2307
|
+
|
2308
|
+
# @note When making an API call, you may pass DescribeRobotApplicationRequest
|
2309
|
+
# data as a hash:
|
2310
|
+
#
|
2311
|
+
# {
|
2312
|
+
# application: "Arn", # required
|
2313
|
+
# application_version: "Version",
|
2314
|
+
# }
|
2315
|
+
#
|
2316
|
+
# @!attribute [rw] application
|
2317
|
+
# The Amazon Resource Name (ARN) of the robot application.
|
2318
|
+
# @return [String]
|
2319
|
+
#
|
2320
|
+
# @!attribute [rw] application_version
|
2321
|
+
# The version of the robot application to describe.
|
2322
|
+
# @return [String]
|
2323
|
+
#
|
2324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplicationRequest AWS API Documentation
|
2325
|
+
#
|
2326
|
+
class DescribeRobotApplicationRequest < Struct.new(
|
2327
|
+
:application,
|
2328
|
+
:application_version)
|
2329
|
+
SENSITIVE = []
|
2330
|
+
include Aws::Structure
|
2331
|
+
end
|
2332
|
+
|
2333
|
+
# @!attribute [rw] arn
|
2334
|
+
# The Amazon Resource Name (ARN) of the robot application.
|
2335
|
+
# @return [String]
|
2336
|
+
#
|
2337
|
+
# @!attribute [rw] name
|
2338
|
+
# The name of the robot application.
|
2339
|
+
# @return [String]
|
2340
|
+
#
|
2341
|
+
# @!attribute [rw] version
|
2342
|
+
# The version of the robot application.
|
2343
|
+
# @return [String]
|
2344
|
+
#
|
2345
|
+
# @!attribute [rw] sources
|
2346
|
+
# The sources of the robot application.
|
2347
|
+
# @return [Array<Types::Source>]
|
2348
|
+
#
|
2349
|
+
# @!attribute [rw] robot_software_suite
|
2350
|
+
# The robot software suite (ROS distribution) used by the robot
|
2351
|
+
# application.
|
2352
|
+
# @return [Types::RobotSoftwareSuite]
|
2353
|
+
#
|
2354
|
+
# @!attribute [rw] revision_id
|
2355
|
+
# The revision id of the robot application.
|
2356
|
+
# @return [String]
|
2357
|
+
#
|
2358
|
+
# @!attribute [rw] last_updated_at
|
2359
|
+
# The time, in milliseconds since the epoch, when the robot
|
2360
|
+
# application was last updated.
|
2361
|
+
# @return [Time]
|
2362
|
+
#
|
2363
|
+
# @!attribute [rw] tags
|
2364
|
+
# The list of all tags added to the specified robot application.
|
2365
|
+
# @return [Hash<String,String>]
|
2366
|
+
#
|
2367
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplicationResponse AWS API Documentation
|
2368
|
+
#
|
2369
|
+
class DescribeRobotApplicationResponse < Struct.new(
|
2370
|
+
:arn,
|
2371
|
+
:name,
|
2372
|
+
:version,
|
2373
|
+
:sources,
|
2374
|
+
:robot_software_suite,
|
2375
|
+
:revision_id,
|
2376
|
+
:last_updated_at,
|
2377
|
+
:tags)
|
2378
|
+
SENSITIVE = []
|
2379
|
+
include Aws::Structure
|
2380
|
+
end
|
2381
|
+
|
2382
|
+
# @note When making an API call, you may pass DescribeRobotRequest
|
2383
|
+
# data as a hash:
|
2384
|
+
#
|
2385
|
+
# {
|
2386
|
+
# robot: "Arn", # required
|
2387
|
+
# }
|
2388
|
+
#
|
2389
|
+
# @!attribute [rw] robot
|
2390
|
+
# The Amazon Resource Name (ARN) of the robot to be described.
|
2391
|
+
# @return [String]
|
2392
|
+
#
|
2393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotRequest AWS API Documentation
|
2394
|
+
#
|
2395
|
+
class DescribeRobotRequest < Struct.new(
|
2396
|
+
:robot)
|
2397
|
+
SENSITIVE = []
|
2398
|
+
include Aws::Structure
|
2399
|
+
end
|
2400
|
+
|
2401
|
+
# @!attribute [rw] arn
|
2402
|
+
# The Amazon Resource Name (ARN) of the robot.
|
2403
|
+
# @return [String]
|
2404
|
+
#
|
2405
|
+
# @!attribute [rw] name
|
2406
|
+
# The name of the robot.
|
2407
|
+
# @return [String]
|
1884
2408
|
#
|
1885
2409
|
# @!attribute [rw] fleet_arn
|
1886
2410
|
# The Amazon Resource Name (ARN) of the fleet.
|
@@ -1907,257 +2431,588 @@ module Aws::RoboMaker
|
|
1907
2431
|
# The Amazon Resource Name (ARN) of the last deployment job.
|
1908
2432
|
# @return [String]
|
1909
2433
|
#
|
1910
|
-
# @!attribute [rw] last_deployment_time
|
1911
|
-
# The time of the last deployment job.
|
1912
|
-
# @return [Time]
|
2434
|
+
# @!attribute [rw] last_deployment_time
|
2435
|
+
# The time of the last deployment job.
|
2436
|
+
# @return [Time]
|
2437
|
+
#
|
2438
|
+
# @!attribute [rw] tags
|
2439
|
+
# The list of all tags added to the specified robot.
|
2440
|
+
# @return [Hash<String,String>]
|
2441
|
+
#
|
2442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotResponse AWS API Documentation
|
2443
|
+
#
|
2444
|
+
class DescribeRobotResponse < Struct.new(
|
2445
|
+
:arn,
|
2446
|
+
:name,
|
2447
|
+
:fleet_arn,
|
2448
|
+
:status,
|
2449
|
+
:greengrass_group_id,
|
2450
|
+
:created_at,
|
2451
|
+
:architecture,
|
2452
|
+
:last_deployment_job,
|
2453
|
+
:last_deployment_time,
|
2454
|
+
:tags)
|
2455
|
+
SENSITIVE = []
|
2456
|
+
include Aws::Structure
|
2457
|
+
end
|
2458
|
+
|
2459
|
+
# @note When making an API call, you may pass DescribeSimulationApplicationRequest
|
2460
|
+
# data as a hash:
|
2461
|
+
#
|
2462
|
+
# {
|
2463
|
+
# application: "Arn", # required
|
2464
|
+
# application_version: "Version",
|
2465
|
+
# }
|
2466
|
+
#
|
2467
|
+
# @!attribute [rw] application
|
2468
|
+
# The application information for the simulation application.
|
2469
|
+
# @return [String]
|
2470
|
+
#
|
2471
|
+
# @!attribute [rw] application_version
|
2472
|
+
# The version of the simulation application to describe.
|
2473
|
+
# @return [String]
|
2474
|
+
#
|
2475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplicationRequest AWS API Documentation
|
2476
|
+
#
|
2477
|
+
class DescribeSimulationApplicationRequest < Struct.new(
|
2478
|
+
:application,
|
2479
|
+
:application_version)
|
2480
|
+
SENSITIVE = []
|
2481
|
+
include Aws::Structure
|
2482
|
+
end
|
2483
|
+
|
2484
|
+
# @!attribute [rw] arn
|
2485
|
+
# The Amazon Resource Name (ARN) of the robot simulation application.
|
2486
|
+
# @return [String]
|
2487
|
+
#
|
2488
|
+
# @!attribute [rw] name
|
2489
|
+
# The name of the simulation application.
|
2490
|
+
# @return [String]
|
2491
|
+
#
|
2492
|
+
# @!attribute [rw] version
|
2493
|
+
# The version of the simulation application.
|
2494
|
+
# @return [String]
|
2495
|
+
#
|
2496
|
+
# @!attribute [rw] sources
|
2497
|
+
# The sources of the simulation application.
|
2498
|
+
# @return [Array<Types::Source>]
|
2499
|
+
#
|
2500
|
+
# @!attribute [rw] simulation_software_suite
|
2501
|
+
# The simulation software suite used by the simulation application.
|
2502
|
+
# @return [Types::SimulationSoftwareSuite]
|
2503
|
+
#
|
2504
|
+
# @!attribute [rw] robot_software_suite
|
2505
|
+
# Information about the robot software suite (ROS distribution).
|
2506
|
+
# @return [Types::RobotSoftwareSuite]
|
2507
|
+
#
|
2508
|
+
# @!attribute [rw] rendering_engine
|
2509
|
+
# The rendering engine for the simulation application.
|
2510
|
+
# @return [Types::RenderingEngine]
|
2511
|
+
#
|
2512
|
+
# @!attribute [rw] revision_id
|
2513
|
+
# The revision id of the simulation application.
|
2514
|
+
# @return [String]
|
2515
|
+
#
|
2516
|
+
# @!attribute [rw] last_updated_at
|
2517
|
+
# The time, in milliseconds since the epoch, when the simulation
|
2518
|
+
# application was last updated.
|
2519
|
+
# @return [Time]
|
2520
|
+
#
|
2521
|
+
# @!attribute [rw] tags
|
2522
|
+
# The list of all tags added to the specified simulation application.
|
2523
|
+
# @return [Hash<String,String>]
|
2524
|
+
#
|
2525
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplicationResponse AWS API Documentation
|
2526
|
+
#
|
2527
|
+
class DescribeSimulationApplicationResponse < Struct.new(
|
2528
|
+
:arn,
|
2529
|
+
:name,
|
2530
|
+
:version,
|
2531
|
+
:sources,
|
2532
|
+
:simulation_software_suite,
|
2533
|
+
:robot_software_suite,
|
2534
|
+
:rendering_engine,
|
2535
|
+
:revision_id,
|
2536
|
+
:last_updated_at,
|
2537
|
+
:tags)
|
2538
|
+
SENSITIVE = []
|
2539
|
+
include Aws::Structure
|
2540
|
+
end
|
2541
|
+
|
2542
|
+
# @note When making an API call, you may pass DescribeSimulationJobBatchRequest
|
2543
|
+
# data as a hash:
|
2544
|
+
#
|
2545
|
+
# {
|
2546
|
+
# batch: "Arn", # required
|
2547
|
+
# }
|
2548
|
+
#
|
2549
|
+
# @!attribute [rw] batch
|
2550
|
+
# The id of the batch to describe.
|
2551
|
+
# @return [String]
|
2552
|
+
#
|
2553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobBatchRequest AWS API Documentation
|
2554
|
+
#
|
2555
|
+
class DescribeSimulationJobBatchRequest < Struct.new(
|
2556
|
+
:batch)
|
2557
|
+
SENSITIVE = []
|
2558
|
+
include Aws::Structure
|
2559
|
+
end
|
2560
|
+
|
2561
|
+
# @!attribute [rw] arn
|
2562
|
+
# The Amazon Resource Name (ARN) of the batch.
|
2563
|
+
# @return [String]
|
2564
|
+
#
|
2565
|
+
# @!attribute [rw] status
|
2566
|
+
# The status of the batch.
|
2567
|
+
#
|
2568
|
+
# Pending
|
2569
|
+
#
|
2570
|
+
# : The simulation job batch request is pending.
|
2571
|
+
#
|
2572
|
+
# InProgress
|
2573
|
+
#
|
2574
|
+
# : The simulation job batch is in progress.
|
2575
|
+
#
|
2576
|
+
# Failed
|
2577
|
+
#
|
2578
|
+
# : The simulation job batch failed. One or more simulation job
|
2579
|
+
# requests could not be completed due to an internal failure (like
|
2580
|
+
# `InternalServiceError`). See `failureCode` and `failureReason` for
|
2581
|
+
# more information.
|
2582
|
+
#
|
2583
|
+
# Completed
|
2584
|
+
#
|
2585
|
+
# : The simulation batch job completed. A batch is complete when (1)
|
2586
|
+
# there are no pending simulation job requests in the batch and none
|
2587
|
+
# of the failed simulation job requests are due to
|
2588
|
+
# `InternalServiceError` and (2) when all created simulation jobs
|
2589
|
+
# have reached a terminal state (for example, `Completed` or
|
2590
|
+
# `Failed`).
|
2591
|
+
#
|
2592
|
+
# Canceled
|
2593
|
+
#
|
2594
|
+
# : The simulation batch job was cancelled.
|
2595
|
+
#
|
2596
|
+
# Canceling
|
2597
|
+
#
|
2598
|
+
# : The simulation batch job is being cancelled.
|
2599
|
+
#
|
2600
|
+
# Completing
|
2601
|
+
#
|
2602
|
+
# : The simulation batch job is completing.
|
2603
|
+
#
|
2604
|
+
# TimingOut
|
2605
|
+
#
|
2606
|
+
# : The simulation job batch is timing out.
|
2607
|
+
#
|
2608
|
+
# If a batch timing out, and there are pending requests that were
|
2609
|
+
# failing due to an internal failure (like `InternalServiceError`),
|
2610
|
+
# the batch status will be `Failed`. If there are no such failing
|
2611
|
+
# request, the batch status will be `TimedOut`.
|
2612
|
+
#
|
2613
|
+
# TimedOut
|
2614
|
+
#
|
2615
|
+
# : The simulation batch job timed out.
|
2616
|
+
# @return [String]
|
2617
|
+
#
|
2618
|
+
# @!attribute [rw] last_updated_at
|
2619
|
+
# The time, in milliseconds since the epoch, when the simulation job
|
2620
|
+
# batch was last updated.
|
2621
|
+
# @return [Time]
|
2622
|
+
#
|
2623
|
+
# @!attribute [rw] created_at
|
2624
|
+
# The time, in milliseconds since the epoch, when the simulation job
|
2625
|
+
# batch was created.
|
2626
|
+
# @return [Time]
|
2627
|
+
#
|
2628
|
+
# @!attribute [rw] client_request_token
|
2629
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
2630
|
+
# idempotency of the request.
|
2631
|
+
# @return [String]
|
2632
|
+
#
|
2633
|
+
# @!attribute [rw] batch_policy
|
2634
|
+
# The batch policy.
|
2635
|
+
# @return [Types::BatchPolicy]
|
2636
|
+
#
|
2637
|
+
# @!attribute [rw] failure_code
|
2638
|
+
# The failure code of the simulation job batch.
|
2639
|
+
# @return [String]
|
2640
|
+
#
|
2641
|
+
# @!attribute [rw] failure_reason
|
2642
|
+
# The reason the simulation job batch failed.
|
2643
|
+
# @return [String]
|
2644
|
+
#
|
2645
|
+
# @!attribute [rw] failed_requests
|
2646
|
+
# A list of failed create simulation job requests. The request failed
|
2647
|
+
# to be created into a simulation job. Failed requests do not have a
|
2648
|
+
# simulation job ID.
|
2649
|
+
# @return [Array<Types::FailedCreateSimulationJobRequest>]
|
2650
|
+
#
|
2651
|
+
# @!attribute [rw] pending_requests
|
2652
|
+
# A list of pending simulation job requests. These requests have not
|
2653
|
+
# yet been created into simulation jobs.
|
2654
|
+
# @return [Array<Types::SimulationJobRequest>]
|
2655
|
+
#
|
2656
|
+
# @!attribute [rw] created_requests
|
2657
|
+
# A list of created simulation job summaries.
|
2658
|
+
# @return [Array<Types::SimulationJobSummary>]
|
1913
2659
|
#
|
1914
2660
|
# @!attribute [rw] tags
|
1915
|
-
#
|
2661
|
+
# A map that contains tag keys and tag values that are attached to the
|
2662
|
+
# simulation job batch.
|
1916
2663
|
# @return [Hash<String,String>]
|
1917
2664
|
#
|
1918
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
2665
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobBatchResponse AWS API Documentation
|
1919
2666
|
#
|
1920
|
-
class
|
2667
|
+
class DescribeSimulationJobBatchResponse < Struct.new(
|
1921
2668
|
:arn,
|
1922
|
-
:name,
|
1923
|
-
:fleet_arn,
|
1924
2669
|
:status,
|
1925
|
-
:
|
2670
|
+
:last_updated_at,
|
1926
2671
|
:created_at,
|
1927
|
-
:
|
1928
|
-
:
|
1929
|
-
:
|
2672
|
+
:client_request_token,
|
2673
|
+
:batch_policy,
|
2674
|
+
:failure_code,
|
2675
|
+
:failure_reason,
|
2676
|
+
:failed_requests,
|
2677
|
+
:pending_requests,
|
2678
|
+
:created_requests,
|
1930
2679
|
:tags)
|
1931
2680
|
SENSITIVE = []
|
1932
2681
|
include Aws::Structure
|
1933
2682
|
end
|
1934
2683
|
|
1935
|
-
# @note When making an API call, you may pass
|
2684
|
+
# @note When making an API call, you may pass DescribeSimulationJobRequest
|
1936
2685
|
# data as a hash:
|
1937
2686
|
#
|
1938
2687
|
# {
|
1939
|
-
#
|
1940
|
-
# application_version: "Version",
|
2688
|
+
# job: "Arn", # required
|
1941
2689
|
# }
|
1942
2690
|
#
|
1943
|
-
# @!attribute [rw]
|
1944
|
-
# The
|
1945
|
-
#
|
1946
|
-
#
|
1947
|
-
# @!attribute [rw] application_version
|
1948
|
-
# The version of the simulation application to describe.
|
2691
|
+
# @!attribute [rw] job
|
2692
|
+
# The Amazon Resource Name (ARN) of the simulation job to be
|
2693
|
+
# described.
|
1949
2694
|
# @return [String]
|
1950
2695
|
#
|
1951
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
2696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobRequest AWS API Documentation
|
1952
2697
|
#
|
1953
|
-
class
|
1954
|
-
:
|
1955
|
-
:application_version)
|
2698
|
+
class DescribeSimulationJobRequest < Struct.new(
|
2699
|
+
:job)
|
1956
2700
|
SENSITIVE = []
|
1957
2701
|
include Aws::Structure
|
1958
2702
|
end
|
1959
2703
|
|
1960
2704
|
# @!attribute [rw] arn
|
1961
|
-
# The Amazon Resource Name (ARN) of the
|
2705
|
+
# The Amazon Resource Name (ARN) of the simulation job.
|
1962
2706
|
# @return [String]
|
1963
2707
|
#
|
1964
2708
|
# @!attribute [rw] name
|
1965
|
-
# The name of the simulation
|
2709
|
+
# The name of the simulation job.
|
1966
2710
|
# @return [String]
|
1967
2711
|
#
|
1968
|
-
# @!attribute [rw]
|
1969
|
-
# The
|
2712
|
+
# @!attribute [rw] status
|
2713
|
+
# The status of the simulation job.
|
1970
2714
|
# @return [String]
|
1971
2715
|
#
|
1972
|
-
# @!attribute [rw]
|
1973
|
-
# The
|
1974
|
-
#
|
2716
|
+
# @!attribute [rw] last_started_at
|
2717
|
+
# The time, in milliseconds since the epoch, when the simulation job
|
2718
|
+
# was last started.
|
2719
|
+
# @return [Time]
|
1975
2720
|
#
|
1976
|
-
# @!attribute [rw]
|
1977
|
-
# The
|
1978
|
-
#
|
2721
|
+
# @!attribute [rw] last_updated_at
|
2722
|
+
# The time, in milliseconds since the epoch, when the simulation job
|
2723
|
+
# was last updated.
|
2724
|
+
# @return [Time]
|
1979
2725
|
#
|
1980
|
-
# @!attribute [rw]
|
1981
|
-
#
|
1982
|
-
# @return [
|
2726
|
+
# @!attribute [rw] failure_behavior
|
2727
|
+
# The failure behavior for the simulation job.
|
2728
|
+
# @return [String]
|
1983
2729
|
#
|
1984
|
-
# @!attribute [rw]
|
1985
|
-
# The
|
1986
|
-
# @return [Types::RenderingEngine]
|
2730
|
+
# @!attribute [rw] failure_code
|
2731
|
+
# The failure code of the simulation job if it failed:
|
1987
2732
|
#
|
1988
|
-
#
|
1989
|
-
#
|
2733
|
+
# InternalServiceError
|
2734
|
+
#
|
2735
|
+
# : Internal service error.
|
2736
|
+
#
|
2737
|
+
# RobotApplicationCrash
|
2738
|
+
#
|
2739
|
+
# : Robot application exited abnormally.
|
2740
|
+
#
|
2741
|
+
# SimulationApplicationCrash
|
2742
|
+
#
|
2743
|
+
# : Simulation application exited abnormally.
|
2744
|
+
#
|
2745
|
+
# BadPermissionsRobotApplication
|
2746
|
+
#
|
2747
|
+
# : Robot application bundle could not be downloaded.
|
2748
|
+
#
|
2749
|
+
# BadPermissionsSimulationApplication
|
2750
|
+
#
|
2751
|
+
# : Simulation application bundle could not be downloaded.
|
2752
|
+
#
|
2753
|
+
# BadPermissionsS3Output
|
2754
|
+
#
|
2755
|
+
# : Unable to publish outputs to customer-provided S3 bucket.
|
2756
|
+
#
|
2757
|
+
# BadPermissionsCloudwatchLogs
|
2758
|
+
#
|
2759
|
+
# : Unable to publish logs to customer-provided CloudWatch Logs
|
2760
|
+
# resource.
|
2761
|
+
#
|
2762
|
+
# SubnetIpLimitExceeded
|
2763
|
+
#
|
2764
|
+
# : Subnet IP limit exceeded.
|
2765
|
+
#
|
2766
|
+
# ENILimitExceeded
|
2767
|
+
#
|
2768
|
+
# : ENI limit exceeded.
|
2769
|
+
#
|
2770
|
+
# BadPermissionsUserCredentials
|
2771
|
+
#
|
2772
|
+
# : Unable to use the Role provided.
|
2773
|
+
#
|
2774
|
+
# InvalidBundleRobotApplication
|
2775
|
+
#
|
2776
|
+
# : Robot bundle cannot be extracted (invalid format, bundling error,
|
2777
|
+
# or other issue).
|
2778
|
+
#
|
2779
|
+
# InvalidBundleSimulationApplication
|
2780
|
+
#
|
2781
|
+
# : Simulation bundle cannot be extracted (invalid format, bundling
|
2782
|
+
# error, or other issue).
|
2783
|
+
#
|
2784
|
+
# RobotApplicationVersionMismatchedEtag
|
2785
|
+
#
|
2786
|
+
# : Etag for RobotApplication does not match value during version
|
2787
|
+
# creation.
|
2788
|
+
#
|
2789
|
+
# SimulationApplicationVersionMismatchedEtag
|
2790
|
+
#
|
2791
|
+
# : Etag for SimulationApplication does not match value during version
|
2792
|
+
# creation.
|
1990
2793
|
# @return [String]
|
1991
2794
|
#
|
1992
|
-
# @!attribute [rw]
|
1993
|
-
#
|
1994
|
-
#
|
1995
|
-
#
|
2795
|
+
# @!attribute [rw] failure_reason
|
2796
|
+
# Details about why the simulation job failed. For more information
|
2797
|
+
# about troubleshooting, see [Troubleshooting][1].
|
2798
|
+
#
|
2799
|
+
#
|
2800
|
+
#
|
2801
|
+
# [1]: https://docs.aws.amazon.com/robomaker/latest/dg/troubleshooting.html
|
2802
|
+
# @return [String]
|
2803
|
+
#
|
2804
|
+
# @!attribute [rw] client_request_token
|
2805
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
2806
|
+
# idempotency of the request.
|
2807
|
+
# @return [String]
|
2808
|
+
#
|
2809
|
+
# @!attribute [rw] output_location
|
2810
|
+
# Location for output files generated by the simulation job.
|
2811
|
+
# @return [Types::OutputLocation]
|
2812
|
+
#
|
2813
|
+
# @!attribute [rw] logging_config
|
2814
|
+
# The logging configuration.
|
2815
|
+
# @return [Types::LoggingConfig]
|
2816
|
+
#
|
2817
|
+
# @!attribute [rw] max_job_duration_in_seconds
|
2818
|
+
# The maximum job duration in seconds. The value must be 8 days
|
2819
|
+
# (691,200 seconds) or less.
|
2820
|
+
# @return [Integer]
|
2821
|
+
#
|
2822
|
+
# @!attribute [rw] simulation_time_millis
|
2823
|
+
# The simulation job execution duration in milliseconds.
|
2824
|
+
# @return [Integer]
|
2825
|
+
#
|
2826
|
+
# @!attribute [rw] iam_role
|
2827
|
+
# The IAM role that allows the simulation instance to call the AWS
|
2828
|
+
# APIs that are specified in its associated policies on your behalf.
|
2829
|
+
# @return [String]
|
2830
|
+
#
|
2831
|
+
# @!attribute [rw] robot_applications
|
2832
|
+
# A list of robot applications.
|
2833
|
+
# @return [Array<Types::RobotApplicationConfig>]
|
2834
|
+
#
|
2835
|
+
# @!attribute [rw] simulation_applications
|
2836
|
+
# A list of simulation applications.
|
2837
|
+
# @return [Array<Types::SimulationApplicationConfig>]
|
2838
|
+
#
|
2839
|
+
# @!attribute [rw] data_sources
|
2840
|
+
# The data sources for the simulation job.
|
2841
|
+
# @return [Array<Types::DataSource>]
|
1996
2842
|
#
|
1997
2843
|
# @!attribute [rw] tags
|
1998
|
-
# The list of all tags added to the specified simulation
|
2844
|
+
# The list of all tags added to the specified simulation job.
|
1999
2845
|
# @return [Hash<String,String>]
|
2000
2846
|
#
|
2001
|
-
#
|
2847
|
+
# @!attribute [rw] vpc_config
|
2848
|
+
# The VPC configuration.
|
2849
|
+
# @return [Types::VPCConfigResponse]
|
2002
2850
|
#
|
2003
|
-
|
2851
|
+
# @!attribute [rw] network_interface
|
2852
|
+
# The network interface information for the simulation job.
|
2853
|
+
# @return [Types::NetworkInterface]
|
2854
|
+
#
|
2855
|
+
# @!attribute [rw] compute
|
2856
|
+
# Compute information for the simulation job.
|
2857
|
+
# @return [Types::ComputeResponse]
|
2858
|
+
#
|
2859
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobResponse AWS API Documentation
|
2860
|
+
#
|
2861
|
+
class DescribeSimulationJobResponse < Struct.new(
|
2004
2862
|
:arn,
|
2005
2863
|
:name,
|
2006
|
-
:
|
2007
|
-
:
|
2008
|
-
:simulation_software_suite,
|
2009
|
-
:robot_software_suite,
|
2010
|
-
:rendering_engine,
|
2011
|
-
:revision_id,
|
2864
|
+
:status,
|
2865
|
+
:last_started_at,
|
2012
2866
|
:last_updated_at,
|
2013
|
-
:
|
2867
|
+
:failure_behavior,
|
2868
|
+
:failure_code,
|
2869
|
+
:failure_reason,
|
2870
|
+
:client_request_token,
|
2871
|
+
:output_location,
|
2872
|
+
:logging_config,
|
2873
|
+
:max_job_duration_in_seconds,
|
2874
|
+
:simulation_time_millis,
|
2875
|
+
:iam_role,
|
2876
|
+
:robot_applications,
|
2877
|
+
:simulation_applications,
|
2878
|
+
:data_sources,
|
2879
|
+
:tags,
|
2880
|
+
:vpc_config,
|
2881
|
+
:network_interface,
|
2882
|
+
:compute)
|
2014
2883
|
SENSITIVE = []
|
2015
2884
|
include Aws::Structure
|
2016
2885
|
end
|
2017
2886
|
|
2018
|
-
# @note When making an API call, you may pass
|
2887
|
+
# @note When making an API call, you may pass DescribeWorldExportJobRequest
|
2019
2888
|
# data as a hash:
|
2020
2889
|
#
|
2021
2890
|
# {
|
2022
|
-
#
|
2891
|
+
# job: "Arn", # required
|
2023
2892
|
# }
|
2024
2893
|
#
|
2025
|
-
# @!attribute [rw]
|
2026
|
-
# The
|
2894
|
+
# @!attribute [rw] job
|
2895
|
+
# The Amazon Resource Name (arn) of the world export job to describe.
|
2027
2896
|
# @return [String]
|
2028
2897
|
#
|
2029
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
2898
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJobRequest AWS API Documentation
|
2030
2899
|
#
|
2031
|
-
class
|
2032
|
-
:
|
2900
|
+
class DescribeWorldExportJobRequest < Struct.new(
|
2901
|
+
:job)
|
2033
2902
|
SENSITIVE = []
|
2034
2903
|
include Aws::Structure
|
2035
2904
|
end
|
2036
2905
|
|
2037
2906
|
# @!attribute [rw] arn
|
2038
|
-
# The Amazon Resource Name (ARN) of the
|
2907
|
+
# The Amazon Resource Name (ARN) of the world export job.
|
2039
2908
|
# @return [String]
|
2040
2909
|
#
|
2041
2910
|
# @!attribute [rw] status
|
2042
|
-
# The status of the
|
2911
|
+
# The status of the world export job.
|
2043
2912
|
#
|
2044
2913
|
# Pending
|
2045
2914
|
#
|
2046
|
-
# : The
|
2047
|
-
#
|
2048
|
-
# InProgress
|
2049
|
-
#
|
2050
|
-
# : The simulation job batch is in progress.
|
2915
|
+
# : The world export job request is pending.
|
2051
2916
|
#
|
2052
|
-
#
|
2917
|
+
# Running
|
2053
2918
|
#
|
2054
|
-
# : The
|
2055
|
-
# requests could not be completed due to an internal failure (like
|
2056
|
-
# `InternalServiceError`). See `failureCode` and `failureReason` for
|
2057
|
-
# more information.
|
2919
|
+
# : The world export job is running.
|
2058
2920
|
#
|
2059
2921
|
# Completed
|
2060
2922
|
#
|
2061
|
-
# : The
|
2062
|
-
#
|
2063
|
-
#
|
2064
|
-
#
|
2065
|
-
#
|
2066
|
-
#
|
2923
|
+
# : The world export job completed.
|
2924
|
+
#
|
2925
|
+
# Failed
|
2926
|
+
#
|
2927
|
+
# : The world export job failed. See `failureCode` and `failureReason`
|
2928
|
+
# for more information.
|
2067
2929
|
#
|
2068
2930
|
# Canceled
|
2069
2931
|
#
|
2070
|
-
# : The
|
2932
|
+
# : The world export job was cancelled.
|
2071
2933
|
#
|
2072
2934
|
# Canceling
|
2073
2935
|
#
|
2074
|
-
# : The
|
2936
|
+
# : The world export job is being cancelled.
|
2937
|
+
# @return [String]
|
2075
2938
|
#
|
2076
|
-
#
|
2939
|
+
# @!attribute [rw] created_at
|
2940
|
+
# The time, in milliseconds since the epoch, when the world export job
|
2941
|
+
# was created.
|
2942
|
+
# @return [Time]
|
2077
2943
|
#
|
2078
|
-
#
|
2944
|
+
# @!attribute [rw] failure_code
|
2945
|
+
# The failure code of the world export job if it failed:
|
2079
2946
|
#
|
2080
|
-
#
|
2947
|
+
# InternalServiceError
|
2081
2948
|
#
|
2082
|
-
# :
|
2949
|
+
# : Internal service error.
|
2083
2950
|
#
|
2084
|
-
#
|
2085
|
-
# failing due to an internal failure (like `InternalServiceError`),
|
2086
|
-
# the batch status will be `Failed`. If there are no such failing
|
2087
|
-
# request, the batch status will be `TimedOut`.
|
2951
|
+
# LimitExceeded
|
2088
2952
|
#
|
2089
|
-
#
|
2953
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
2954
|
+
# number of concurrent stream requests exceeds the maximum number
|
2955
|
+
# allowed.
|
2090
2956
|
#
|
2091
|
-
#
|
2092
|
-
# @return [String]
|
2957
|
+
# ResourceNotFound
|
2093
2958
|
#
|
2094
|
-
#
|
2095
|
-
# The time, in milliseconds since the epoch, when the simulation job
|
2096
|
-
# batch was last updated.
|
2097
|
-
# @return [Time]
|
2959
|
+
# : The specified resource could not be found.
|
2098
2960
|
#
|
2099
|
-
#
|
2100
|
-
# The time, in milliseconds since the epoch, when the simulation job
|
2101
|
-
# batch was created.
|
2102
|
-
# @return [Time]
|
2961
|
+
# RequestThrottled
|
2103
2962
|
#
|
2104
|
-
#
|
2105
|
-
# Unique, case-sensitive identifier that you provide to ensure the
|
2106
|
-
# idempotency of the request.
|
2107
|
-
# @return [String]
|
2963
|
+
# : The request was throttled.
|
2108
2964
|
#
|
2109
|
-
#
|
2110
|
-
# The batch policy.
|
2111
|
-
# @return [Types::BatchPolicy]
|
2965
|
+
# InvalidInput
|
2112
2966
|
#
|
2113
|
-
#
|
2114
|
-
# The failure code of the simulation job batch.
|
2967
|
+
# : An input parameter in the request is not valid.
|
2115
2968
|
# @return [String]
|
2116
2969
|
#
|
2117
2970
|
# @!attribute [rw] failure_reason
|
2118
|
-
# The reason the
|
2971
|
+
# The reason why the world export job failed.
|
2119
2972
|
# @return [String]
|
2120
2973
|
#
|
2121
|
-
# @!attribute [rw]
|
2122
|
-
#
|
2123
|
-
#
|
2124
|
-
#
|
2125
|
-
# @return [Array<Types::FailedCreateSimulationJobRequest>]
|
2974
|
+
# @!attribute [rw] client_request_token
|
2975
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
2976
|
+
# idempotency of the request.
|
2977
|
+
# @return [String]
|
2126
2978
|
#
|
2127
|
-
# @!attribute [rw]
|
2128
|
-
# A list of
|
2129
|
-
#
|
2130
|
-
# @return [Array<
|
2979
|
+
# @!attribute [rw] worlds
|
2980
|
+
# A list of Amazon Resource Names (arns) that correspond to worlds to
|
2981
|
+
# be exported.
|
2982
|
+
# @return [Array<String>]
|
2131
2983
|
#
|
2132
|
-
# @!attribute [rw]
|
2133
|
-
#
|
2134
|
-
# @return [
|
2984
|
+
# @!attribute [rw] output_location
|
2985
|
+
# The output location.
|
2986
|
+
# @return [Types::OutputLocation]
|
2987
|
+
#
|
2988
|
+
# @!attribute [rw] iam_role
|
2989
|
+
# The IAM role that the world export process uses to access the Amazon
|
2990
|
+
# S3 bucket and put the export.
|
2991
|
+
# @return [String]
|
2135
2992
|
#
|
2136
2993
|
# @!attribute [rw] tags
|
2137
2994
|
# A map that contains tag keys and tag values that are attached to the
|
2138
|
-
#
|
2995
|
+
# world export job.
|
2139
2996
|
# @return [Hash<String,String>]
|
2140
2997
|
#
|
2141
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
2998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJobResponse AWS API Documentation
|
2142
2999
|
#
|
2143
|
-
class
|
3000
|
+
class DescribeWorldExportJobResponse < Struct.new(
|
2144
3001
|
:arn,
|
2145
3002
|
:status,
|
2146
|
-
:last_updated_at,
|
2147
3003
|
:created_at,
|
2148
|
-
:client_request_token,
|
2149
|
-
:batch_policy,
|
2150
3004
|
:failure_code,
|
2151
3005
|
:failure_reason,
|
2152
|
-
:
|
2153
|
-
:
|
2154
|
-
:
|
3006
|
+
:client_request_token,
|
3007
|
+
:worlds,
|
3008
|
+
:output_location,
|
3009
|
+
:iam_role,
|
2155
3010
|
:tags)
|
2156
3011
|
SENSITIVE = []
|
2157
3012
|
include Aws::Structure
|
2158
3013
|
end
|
2159
3014
|
|
2160
|
-
# @note When making an API call, you may pass
|
3015
|
+
# @note When making an API call, you may pass DescribeWorldGenerationJobRequest
|
2161
3016
|
# data as a hash:
|
2162
3017
|
#
|
2163
3018
|
# {
|
@@ -2165,116 +3020,211 @@ module Aws::RoboMaker
|
|
2165
3020
|
# }
|
2166
3021
|
#
|
2167
3022
|
# @!attribute [rw] job
|
2168
|
-
# The Amazon Resource Name (
|
2169
|
-
#
|
3023
|
+
# The Amazon Resource Name (arn) of the world generation job to
|
3024
|
+
# describe.
|
2170
3025
|
# @return [String]
|
2171
3026
|
#
|
2172
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
3027
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJobRequest AWS API Documentation
|
2173
3028
|
#
|
2174
|
-
class
|
3029
|
+
class DescribeWorldGenerationJobRequest < Struct.new(
|
2175
3030
|
:job)
|
2176
3031
|
SENSITIVE = []
|
2177
3032
|
include Aws::Structure
|
2178
3033
|
end
|
2179
3034
|
|
2180
3035
|
# @!attribute [rw] arn
|
2181
|
-
# The Amazon Resource Name (ARN) of the
|
2182
|
-
# @return [String]
|
2183
|
-
#
|
2184
|
-
# @!attribute [rw] name
|
2185
|
-
# The name of the simulation job.
|
3036
|
+
# The Amazon Resource Name (ARN) of the world generation job.
|
2186
3037
|
# @return [String]
|
2187
3038
|
#
|
2188
3039
|
# @!attribute [rw] status
|
2189
|
-
# The status of the
|
2190
|
-
# @return [String]
|
3040
|
+
# The status of the world generation job:
|
2191
3041
|
#
|
2192
|
-
#
|
2193
|
-
# The time, in milliseconds since the epoch, when the simulation job
|
2194
|
-
# was last started.
|
2195
|
-
# @return [Time]
|
3042
|
+
# Pending
|
2196
3043
|
#
|
2197
|
-
#
|
2198
|
-
# The time, in milliseconds since the epoch, when the simulation job
|
2199
|
-
# was last updated.
|
2200
|
-
# @return [Time]
|
3044
|
+
# : The world generation job request is pending.
|
2201
3045
|
#
|
2202
|
-
#
|
2203
|
-
#
|
3046
|
+
# Running
|
3047
|
+
#
|
3048
|
+
# : The world generation job is running.
|
3049
|
+
#
|
3050
|
+
# Completed
|
3051
|
+
#
|
3052
|
+
# : The world generation job completed.
|
3053
|
+
#
|
3054
|
+
# Failed
|
3055
|
+
#
|
3056
|
+
# : The world generation job failed. See `failureCode` for more
|
3057
|
+
# information.
|
3058
|
+
#
|
3059
|
+
# PartialFailed
|
3060
|
+
#
|
3061
|
+
# : Some worlds did not generate.
|
3062
|
+
#
|
3063
|
+
# Canceled
|
3064
|
+
#
|
3065
|
+
# : The world generation job was cancelled.
|
3066
|
+
#
|
3067
|
+
# Canceling
|
3068
|
+
#
|
3069
|
+
# : The world generation job is being cancelled.
|
2204
3070
|
# @return [String]
|
2205
3071
|
#
|
3072
|
+
# @!attribute [rw] created_at
|
3073
|
+
# The time, in milliseconds since the epoch, when the world generation
|
3074
|
+
# job was created.
|
3075
|
+
# @return [Time]
|
3076
|
+
#
|
2206
3077
|
# @!attribute [rw] failure_code
|
2207
|
-
# The failure code of the
|
3078
|
+
# The failure code of the world generation job if it failed:
|
2208
3079
|
#
|
2209
3080
|
# InternalServiceError
|
2210
3081
|
#
|
2211
3082
|
# : Internal service error.
|
2212
3083
|
#
|
2213
|
-
#
|
3084
|
+
# LimitExceeded
|
2214
3085
|
#
|
2215
|
-
# :
|
3086
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
3087
|
+
# number of concurrent stream requests exceeds the maximum number
|
3088
|
+
# allowed.
|
2216
3089
|
#
|
2217
|
-
#
|
3090
|
+
# ResourceNotFound
|
2218
3091
|
#
|
2219
|
-
# :
|
3092
|
+
# : The specified resource could not be found.
|
2220
3093
|
#
|
2221
|
-
#
|
3094
|
+
# RequestThrottled
|
2222
3095
|
#
|
2223
|
-
# :
|
3096
|
+
# : The request was throttled.
|
2224
3097
|
#
|
2225
|
-
#
|
3098
|
+
# InvalidInput
|
2226
3099
|
#
|
2227
|
-
# :
|
3100
|
+
# : An input parameter in the request is not valid.
|
3101
|
+
# @return [String]
|
2228
3102
|
#
|
2229
|
-
#
|
3103
|
+
# @!attribute [rw] failure_reason
|
3104
|
+
# The reason why the world generation job failed.
|
3105
|
+
# @return [String]
|
2230
3106
|
#
|
2231
|
-
#
|
3107
|
+
# @!attribute [rw] client_request_token
|
3108
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
3109
|
+
# idempotency of the request.
|
3110
|
+
# @return [String]
|
2232
3111
|
#
|
2233
|
-
#
|
3112
|
+
# @!attribute [rw] template
|
3113
|
+
# The Amazon Resource Name (arn) of the world template.
|
3114
|
+
# @return [String]
|
2234
3115
|
#
|
2235
|
-
#
|
2236
|
-
#
|
3116
|
+
# @!attribute [rw] world_count
|
3117
|
+
# Information about the world count.
|
3118
|
+
# @return [Types::WorldCount]
|
2237
3119
|
#
|
2238
|
-
#
|
3120
|
+
# @!attribute [rw] finished_worlds_summary
|
3121
|
+
# Summary information about finished worlds.
|
3122
|
+
# @return [Types::FinishedWorldsSummary]
|
2239
3123
|
#
|
2240
|
-
#
|
3124
|
+
# @!attribute [rw] tags
|
3125
|
+
# A map that contains tag keys and tag values that are attached to the
|
3126
|
+
# world generation job.
|
3127
|
+
# @return [Hash<String,String>]
|
2241
3128
|
#
|
2242
|
-
#
|
3129
|
+
# @!attribute [rw] world_tags
|
3130
|
+
# A map that contains tag keys and tag values that are attached to the
|
3131
|
+
# generated worlds.
|
3132
|
+
# @return [Hash<String,String>]
|
2243
3133
|
#
|
2244
|
-
#
|
3134
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJobResponse AWS API Documentation
|
2245
3135
|
#
|
2246
|
-
|
3136
|
+
class DescribeWorldGenerationJobResponse < Struct.new(
|
3137
|
+
:arn,
|
3138
|
+
:status,
|
3139
|
+
:created_at,
|
3140
|
+
:failure_code,
|
3141
|
+
:failure_reason,
|
3142
|
+
:client_request_token,
|
3143
|
+
:template,
|
3144
|
+
:world_count,
|
3145
|
+
:finished_worlds_summary,
|
3146
|
+
:tags,
|
3147
|
+
:world_tags)
|
3148
|
+
SENSITIVE = []
|
3149
|
+
include Aws::Structure
|
3150
|
+
end
|
3151
|
+
|
3152
|
+
# @note When making an API call, you may pass DescribeWorldRequest
|
3153
|
+
# data as a hash:
|
2247
3154
|
#
|
2248
|
-
#
|
3155
|
+
# {
|
3156
|
+
# world: "Arn", # required
|
3157
|
+
# }
|
2249
3158
|
#
|
2250
|
-
#
|
3159
|
+
# @!attribute [rw] world
|
3160
|
+
# The Amazon Resource Name (arn) of the world you want to describe.
|
3161
|
+
# @return [String]
|
2251
3162
|
#
|
2252
|
-
#
|
2253
|
-
# or other issue).
|
3163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldRequest AWS API Documentation
|
2254
3164
|
#
|
2255
|
-
|
3165
|
+
class DescribeWorldRequest < Struct.new(
|
3166
|
+
:world)
|
3167
|
+
SENSITIVE = []
|
3168
|
+
include Aws::Structure
|
3169
|
+
end
|
3170
|
+
|
3171
|
+
# @!attribute [rw] arn
|
3172
|
+
# The Amazon Resource Name (arn) of the world.
|
3173
|
+
# @return [String]
|
2256
3174
|
#
|
2257
|
-
#
|
2258
|
-
#
|
3175
|
+
# @!attribute [rw] generation_job
|
3176
|
+
# The Amazon Resource Name (arn) of the world generation job that
|
3177
|
+
# generated the world.
|
3178
|
+
# @return [String]
|
2259
3179
|
#
|
2260
|
-
#
|
3180
|
+
# @!attribute [rw] template
|
3181
|
+
# The world template.
|
3182
|
+
# @return [String]
|
2261
3183
|
#
|
2262
|
-
#
|
2263
|
-
#
|
3184
|
+
# @!attribute [rw] created_at
|
3185
|
+
# The time, in milliseconds since the epoch, when the world was
|
3186
|
+
# created.
|
3187
|
+
# @return [Time]
|
2264
3188
|
#
|
2265
|
-
#
|
3189
|
+
# @!attribute [rw] tags
|
3190
|
+
# A map that contains tag keys and tag values that are attached to the
|
3191
|
+
# world.
|
3192
|
+
# @return [Hash<String,String>]
|
2266
3193
|
#
|
2267
|
-
#
|
2268
|
-
# creation.
|
2269
|
-
# @return [String]
|
3194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldResponse AWS API Documentation
|
2270
3195
|
#
|
2271
|
-
|
2272
|
-
|
2273
|
-
|
3196
|
+
class DescribeWorldResponse < Struct.new(
|
3197
|
+
:arn,
|
3198
|
+
:generation_job,
|
3199
|
+
:template,
|
3200
|
+
:created_at,
|
3201
|
+
:tags)
|
3202
|
+
SENSITIVE = []
|
3203
|
+
include Aws::Structure
|
3204
|
+
end
|
3205
|
+
|
3206
|
+
# @note When making an API call, you may pass DescribeWorldTemplateRequest
|
3207
|
+
# data as a hash:
|
2274
3208
|
#
|
3209
|
+
# {
|
3210
|
+
# template: "Arn", # required
|
3211
|
+
# }
|
3212
|
+
#
|
3213
|
+
# @!attribute [rw] template
|
3214
|
+
# The Amazon Resource Name (arn) of the world template you want to
|
3215
|
+
# describe.
|
3216
|
+
# @return [String]
|
2275
3217
|
#
|
3218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplateRequest AWS API Documentation
|
2276
3219
|
#
|
2277
|
-
|
3220
|
+
class DescribeWorldTemplateRequest < Struct.new(
|
3221
|
+
:template)
|
3222
|
+
SENSITIVE = []
|
3223
|
+
include Aws::Structure
|
3224
|
+
end
|
3225
|
+
|
3226
|
+
# @!attribute [rw] arn
|
3227
|
+
# The Amazon Resource Name (ARN) of the world template.
|
2278
3228
|
# @return [String]
|
2279
3229
|
#
|
2280
3230
|
# @!attribute [rw] client_request_token
|
@@ -2282,80 +3232,34 @@ module Aws::RoboMaker
|
|
2282
3232
|
# idempotency of the request.
|
2283
3233
|
# @return [String]
|
2284
3234
|
#
|
2285
|
-
# @!attribute [rw]
|
2286
|
-
#
|
2287
|
-
# @return [Types::OutputLocation]
|
2288
|
-
#
|
2289
|
-
# @!attribute [rw] logging_config
|
2290
|
-
# The logging configuration.
|
2291
|
-
# @return [Types::LoggingConfig]
|
2292
|
-
#
|
2293
|
-
# @!attribute [rw] max_job_duration_in_seconds
|
2294
|
-
# The maximum job duration in seconds. The value must be 8 days
|
2295
|
-
# (691,200 seconds) or less.
|
2296
|
-
# @return [Integer]
|
2297
|
-
#
|
2298
|
-
# @!attribute [rw] simulation_time_millis
|
2299
|
-
# The simulation job execution duration in milliseconds.
|
2300
|
-
# @return [Integer]
|
2301
|
-
#
|
2302
|
-
# @!attribute [rw] iam_role
|
2303
|
-
# The IAM role that allows the simulation instance to call the AWS
|
2304
|
-
# APIs that are specified in its associated policies on your behalf.
|
3235
|
+
# @!attribute [rw] name
|
3236
|
+
# The name of the world template.
|
2305
3237
|
# @return [String]
|
2306
3238
|
#
|
2307
|
-
# @!attribute [rw]
|
2308
|
-
#
|
2309
|
-
#
|
2310
|
-
#
|
2311
|
-
# @!attribute [rw] simulation_applications
|
2312
|
-
# A list of simulation applications.
|
2313
|
-
# @return [Array<Types::SimulationApplicationConfig>]
|
3239
|
+
# @!attribute [rw] created_at
|
3240
|
+
# The time, in milliseconds since the epoch, when the world template
|
3241
|
+
# was created.
|
3242
|
+
# @return [Time]
|
2314
3243
|
#
|
2315
|
-
# @!attribute [rw]
|
2316
|
-
# The
|
2317
|
-
#
|
3244
|
+
# @!attribute [rw] last_updated_at
|
3245
|
+
# The time, in milliseconds since the epoch, when the world template
|
3246
|
+
# was last updated.
|
3247
|
+
# @return [Time]
|
2318
3248
|
#
|
2319
3249
|
# @!attribute [rw] tags
|
2320
|
-
#
|
3250
|
+
# A map that contains tag keys and tag values that are attached to the
|
3251
|
+
# world template.
|
2321
3252
|
# @return [Hash<String,String>]
|
2322
3253
|
#
|
2323
|
-
#
|
2324
|
-
# The VPC configuration.
|
2325
|
-
# @return [Types::VPCConfigResponse]
|
2326
|
-
#
|
2327
|
-
# @!attribute [rw] network_interface
|
2328
|
-
# The network interface information for the simulation job.
|
2329
|
-
# @return [Types::NetworkInterface]
|
2330
|
-
#
|
2331
|
-
# @!attribute [rw] compute
|
2332
|
-
# Compute information for the simulation job.
|
2333
|
-
# @return [Types::ComputeResponse]
|
2334
|
-
#
|
2335
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobResponse AWS API Documentation
|
3254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplateResponse AWS API Documentation
|
2336
3255
|
#
|
2337
|
-
class
|
3256
|
+
class DescribeWorldTemplateResponse < Struct.new(
|
2338
3257
|
:arn,
|
3258
|
+
:client_request_token,
|
2339
3259
|
:name,
|
2340
|
-
:
|
2341
|
-
:last_started_at,
|
3260
|
+
:created_at,
|
2342
3261
|
:last_updated_at,
|
2343
|
-
:
|
2344
|
-
:failure_code,
|
2345
|
-
:failure_reason,
|
2346
|
-
:client_request_token,
|
2347
|
-
:output_location,
|
2348
|
-
:logging_config,
|
2349
|
-
:max_job_duration_in_seconds,
|
2350
|
-
:simulation_time_millis,
|
2351
|
-
:iam_role,
|
2352
|
-
:robot_applications,
|
2353
|
-
:simulation_applications,
|
2354
|
-
:data_sources,
|
2355
|
-
:tags,
|
2356
|
-
:vpc_config,
|
2357
|
-
:network_interface,
|
2358
|
-
:compute)
|
3262
|
+
:tags)
|
2359
3263
|
SENSITIVE = []
|
2360
3264
|
include Aws::Structure
|
2361
3265
|
end
|
@@ -2390,6 +3294,25 @@ module Aws::RoboMaker
|
|
2390
3294
|
include Aws::Structure
|
2391
3295
|
end
|
2392
3296
|
|
3297
|
+
# Information about worlds that failed.
|
3298
|
+
#
|
3299
|
+
# @!attribute [rw] total_failure_count
|
3300
|
+
# The total number of failures.
|
3301
|
+
# @return [Integer]
|
3302
|
+
#
|
3303
|
+
# @!attribute [rw] failures
|
3304
|
+
# The worlds that failed.
|
3305
|
+
# @return [Array<Types::WorldFailure>]
|
3306
|
+
#
|
3307
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/FailureSummary AWS API Documentation
|
3308
|
+
#
|
3309
|
+
class FailureSummary < Struct.new(
|
3310
|
+
:total_failure_count,
|
3311
|
+
:failures)
|
3312
|
+
SENSITIVE = []
|
3313
|
+
include Aws::Structure
|
3314
|
+
end
|
3315
|
+
|
2393
3316
|
# Information about a filter.
|
2394
3317
|
#
|
2395
3318
|
# @note When making an API call, you may pass Filter
|
@@ -2417,6 +3340,30 @@ module Aws::RoboMaker
|
|
2417
3340
|
include Aws::Structure
|
2418
3341
|
end
|
2419
3342
|
|
3343
|
+
# Information about worlds that finished.
|
3344
|
+
#
|
3345
|
+
# @!attribute [rw] finished_count
|
3346
|
+
# The total number of finished worlds.
|
3347
|
+
# @return [Integer]
|
3348
|
+
#
|
3349
|
+
# @!attribute [rw] succeeded_worlds
|
3350
|
+
# A list of worlds that succeeded.
|
3351
|
+
# @return [Array<String>]
|
3352
|
+
#
|
3353
|
+
# @!attribute [rw] failure_summary
|
3354
|
+
# Information about worlds that failed.
|
3355
|
+
# @return [Types::FailureSummary]
|
3356
|
+
#
|
3357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/FinishedWorldsSummary AWS API Documentation
|
3358
|
+
#
|
3359
|
+
class FinishedWorldsSummary < Struct.new(
|
3360
|
+
:finished_count,
|
3361
|
+
:succeeded_worlds,
|
3362
|
+
:failure_summary)
|
3363
|
+
SENSITIVE = []
|
3364
|
+
include Aws::Structure
|
3365
|
+
end
|
3366
|
+
|
2420
3367
|
# Information about a fleet.
|
2421
3368
|
#
|
2422
3369
|
# @!attribute [rw] name
|
@@ -2457,6 +3404,43 @@ module Aws::RoboMaker
|
|
2457
3404
|
include Aws::Structure
|
2458
3405
|
end
|
2459
3406
|
|
3407
|
+
# @note When making an API call, you may pass GetWorldTemplateBodyRequest
|
3408
|
+
# data as a hash:
|
3409
|
+
#
|
3410
|
+
# {
|
3411
|
+
# template: "Arn",
|
3412
|
+
# generation_job: "Arn",
|
3413
|
+
# }
|
3414
|
+
#
|
3415
|
+
# @!attribute [rw] template
|
3416
|
+
# The Amazon Resource Name (arn) of the world template.
|
3417
|
+
# @return [String]
|
3418
|
+
#
|
3419
|
+
# @!attribute [rw] generation_job
|
3420
|
+
# The Amazon Resource Name (arn) of the world generator job.
|
3421
|
+
# @return [String]
|
3422
|
+
#
|
3423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBodyRequest AWS API Documentation
|
3424
|
+
#
|
3425
|
+
class GetWorldTemplateBodyRequest < Struct.new(
|
3426
|
+
:template,
|
3427
|
+
:generation_job)
|
3428
|
+
SENSITIVE = []
|
3429
|
+
include Aws::Structure
|
3430
|
+
end
|
3431
|
+
|
3432
|
+
# @!attribute [rw] template_body
|
3433
|
+
# The world template body.
|
3434
|
+
# @return [String]
|
3435
|
+
#
|
3436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBodyResponse AWS API Documentation
|
3437
|
+
#
|
3438
|
+
class GetWorldTemplateBodyResponse < Struct.new(
|
3439
|
+
:template_body)
|
3440
|
+
SENSITIVE = []
|
3441
|
+
include Aws::Structure
|
3442
|
+
end
|
3443
|
+
|
2460
3444
|
# The request uses the same client token as a previous, but
|
2461
3445
|
# non-identical request. Do not reuse a client token with different
|
2462
3446
|
# requests, unless the requests are identical.
|
@@ -2599,11 +3583,12 @@ module Aws::RoboMaker
|
|
2599
3583
|
# @return [Array<Types::Filter>]
|
2600
3584
|
#
|
2601
3585
|
# @!attribute [rw] next_token
|
2602
|
-
#
|
2603
|
-
#
|
2604
|
-
#
|
2605
|
-
#
|
2606
|
-
#
|
3586
|
+
# If the previous paginated request did not return all of the
|
3587
|
+
# remaining results, the response object's `nextToken` parameter
|
3588
|
+
# value is set to a token. To retrieve the next set of results, call
|
3589
|
+
# `ListDeploymentJobs` again and assign that token to the request
|
3590
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3591
|
+
# the previous response object's NextToken parameter is set to null.
|
2607
3592
|
# @return [String]
|
2608
3593
|
#
|
2609
3594
|
# @!attribute [rw] max_results
|
@@ -2631,11 +3616,12 @@ module Aws::RoboMaker
|
|
2631
3616
|
# @return [Array<Types::DeploymentJob>]
|
2632
3617
|
#
|
2633
3618
|
# @!attribute [rw] next_token
|
2634
|
-
#
|
2635
|
-
#
|
2636
|
-
#
|
2637
|
-
#
|
2638
|
-
#
|
3619
|
+
# If the previous paginated request did not return all of the
|
3620
|
+
# remaining results, the response object's `nextToken` parameter
|
3621
|
+
# value is set to a token. To retrieve the next set of results, call
|
3622
|
+
# `ListDeploymentJobs` again and assign that token to the request
|
3623
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3624
|
+
# the previous response object's NextToken parameter is set to null.
|
2639
3625
|
# @return [String]
|
2640
3626
|
#
|
2641
3627
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListDeploymentJobsResponse AWS API Documentation
|
@@ -2662,10 +3648,12 @@ module Aws::RoboMaker
|
|
2662
3648
|
# }
|
2663
3649
|
#
|
2664
3650
|
# @!attribute [rw] next_token
|
2665
|
-
#
|
2666
|
-
#
|
2667
|
-
#
|
2668
|
-
#
|
3651
|
+
# If the previous paginated request did not return all of the
|
3652
|
+
# remaining results, the response object's `nextToken` parameter
|
3653
|
+
# value is set to a token. To retrieve the next set of results, call
|
3654
|
+
# `ListFleets` again and assign that token to the request object's
|
3655
|
+
# `nextToken` parameter. If there are no remaining results, the
|
3656
|
+
# previous response object's NextToken parameter is set to null.
|
2669
3657
|
#
|
2670
3658
|
# <note markdown="1"> This token should be treated as an opaque identifier that is only
|
2671
3659
|
# used to retrieve the next items in a list and not for other
|
@@ -2707,11 +3695,12 @@ module Aws::RoboMaker
|
|
2707
3695
|
# @return [Array<Types::Fleet>]
|
2708
3696
|
#
|
2709
3697
|
# @!attribute [rw] next_token
|
2710
|
-
#
|
2711
|
-
#
|
2712
|
-
#
|
2713
|
-
#
|
2714
|
-
#
|
3698
|
+
# If the previous paginated request did not return all of the
|
3699
|
+
# remaining results, the response object's `nextToken` parameter
|
3700
|
+
# value is set to a token. To retrieve the next set of results, call
|
3701
|
+
# `ListFleets` again and assign that token to the request object's
|
3702
|
+
# `nextToken` parameter. If there are no remaining results, the
|
3703
|
+
# previous response object's NextToken parameter is set to null.
|
2715
3704
|
# @return [String]
|
2716
3705
|
#
|
2717
3706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListFleetsResponse AWS API Documentation
|
@@ -2743,11 +3732,12 @@ module Aws::RoboMaker
|
|
2743
3732
|
# @return [String]
|
2744
3733
|
#
|
2745
3734
|
# @!attribute [rw] next_token
|
2746
|
-
#
|
2747
|
-
#
|
2748
|
-
#
|
2749
|
-
#
|
2750
|
-
#
|
3735
|
+
# If the previous paginated request did not return all of the
|
3736
|
+
# remaining results, the response object's `nextToken` parameter
|
3737
|
+
# value is set to a token. To retrieve the next set of results, call
|
3738
|
+
# `ListRobotApplications` again and assign that token to the request
|
3739
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3740
|
+
# the previous response object's NextToken parameter is set to null.
|
2751
3741
|
# @return [String]
|
2752
3742
|
#
|
2753
3743
|
# @!attribute [rw] max_results
|
@@ -2785,11 +3775,12 @@ module Aws::RoboMaker
|
|
2785
3775
|
# @return [Array<Types::RobotApplicationSummary>]
|
2786
3776
|
#
|
2787
3777
|
# @!attribute [rw] next_token
|
2788
|
-
#
|
2789
|
-
#
|
2790
|
-
#
|
2791
|
-
#
|
2792
|
-
#
|
3778
|
+
# If the previous paginated request did not return all of the
|
3779
|
+
# remaining results, the response object's `nextToken` parameter
|
3780
|
+
# value is set to a token. To retrieve the next set of results, call
|
3781
|
+
# `ListRobotApplications` again and assign that token to the request
|
3782
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3783
|
+
# the previous response object's NextToken parameter is set to null.
|
2793
3784
|
# @return [String]
|
2794
3785
|
#
|
2795
3786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobotApplicationsResponse AWS API Documentation
|
@@ -2816,10 +3807,12 @@ module Aws::RoboMaker
|
|
2816
3807
|
# }
|
2817
3808
|
#
|
2818
3809
|
# @!attribute [rw] next_token
|
2819
|
-
#
|
2820
|
-
#
|
2821
|
-
#
|
2822
|
-
#
|
3810
|
+
# If the previous paginated request did not return all of the
|
3811
|
+
# remaining results, the response object's `nextToken` parameter
|
3812
|
+
# value is set to a token. To retrieve the next set of results, call
|
3813
|
+
# `ListRobots` again and assign that token to the request object's
|
3814
|
+
# `nextToken` parameter. If there are no remaining results, the
|
3815
|
+
# previous response object's NextToken parameter is set to null.
|
2823
3816
|
# @return [String]
|
2824
3817
|
#
|
2825
3818
|
# @!attribute [rw] max_results
|
@@ -2857,10 +3850,12 @@ module Aws::RoboMaker
|
|
2857
3850
|
# @return [Array<Types::Robot>]
|
2858
3851
|
#
|
2859
3852
|
# @!attribute [rw] next_token
|
2860
|
-
#
|
2861
|
-
#
|
2862
|
-
# value
|
2863
|
-
#
|
3853
|
+
# If the previous paginated request did not return all of the
|
3854
|
+
# remaining results, the response object's `nextToken` parameter
|
3855
|
+
# value is set to a token. To retrieve the next set of results, call
|
3856
|
+
# `ListRobots` again and assign that token to the request object's
|
3857
|
+
# `nextToken` parameter. If there are no remaining results, the
|
3858
|
+
# previous response object's NextToken parameter is set to null.
|
2864
3859
|
# @return [String]
|
2865
3860
|
#
|
2866
3861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobotsResponse AWS API Documentation
|
@@ -2892,11 +3887,13 @@ module Aws::RoboMaker
|
|
2892
3887
|
# @return [String]
|
2893
3888
|
#
|
2894
3889
|
# @!attribute [rw] next_token
|
2895
|
-
#
|
2896
|
-
#
|
2897
|
-
#
|
2898
|
-
#
|
2899
|
-
# `nextToken`
|
3890
|
+
# If the previous paginated request did not return all of the
|
3891
|
+
# remaining results, the response object's `nextToken` parameter
|
3892
|
+
# value is set to a token. To retrieve the next set of results, call
|
3893
|
+
# `ListSimulationApplications` again and assign that token to the
|
3894
|
+
# request object's `nextToken` parameter. If there are no remaining
|
3895
|
+
# results, the previous response object's NextToken parameter is set
|
3896
|
+
# to null.
|
2900
3897
|
# @return [String]
|
2901
3898
|
#
|
2902
3899
|
# @!attribute [rw] max_results
|
@@ -2935,11 +3932,13 @@ module Aws::RoboMaker
|
|
2935
3932
|
# @return [Array<Types::SimulationApplicationSummary>]
|
2936
3933
|
#
|
2937
3934
|
# @!attribute [rw] next_token
|
2938
|
-
#
|
2939
|
-
#
|
2940
|
-
#
|
2941
|
-
#
|
2942
|
-
#
|
3935
|
+
# If the previous paginated request did not return all of the
|
3936
|
+
# remaining results, the response object's `nextToken` parameter
|
3937
|
+
# value is set to a token. To retrieve the next set of results, call
|
3938
|
+
# `ListSimulationApplications` again and assign that token to the
|
3939
|
+
# request object's `nextToken` parameter. If there are no remaining
|
3940
|
+
# results, the previous response object's NextToken parameter is set
|
3941
|
+
# to null.
|
2943
3942
|
# @return [String]
|
2944
3943
|
#
|
2945
3944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationApplicationsResponse AWS API Documentation
|
@@ -2966,11 +3965,13 @@ module Aws::RoboMaker
|
|
2966
3965
|
# }
|
2967
3966
|
#
|
2968
3967
|
# @!attribute [rw] next_token
|
2969
|
-
#
|
2970
|
-
#
|
2971
|
-
#
|
2972
|
-
#
|
2973
|
-
# `nextToken`
|
3968
|
+
# If the previous paginated request did not return all of the
|
3969
|
+
# remaining results, the response object's `nextToken` parameter
|
3970
|
+
# value is set to a token. To retrieve the next set of results, call
|
3971
|
+
# `ListSimulationJobBatches` again and assign that token to the
|
3972
|
+
# request object's `nextToken` parameter. If there are no remaining
|
3973
|
+
# results, the previous response object's NextToken parameter is set
|
3974
|
+
# to null.
|
2974
3975
|
# @return [String]
|
2975
3976
|
#
|
2976
3977
|
# @!attribute [rw] max_results
|
@@ -3000,11 +4001,13 @@ module Aws::RoboMaker
|
|
3000
4001
|
# @return [Array<Types::SimulationJobBatchSummary>]
|
3001
4002
|
#
|
3002
4003
|
# @!attribute [rw] next_token
|
3003
|
-
#
|
3004
|
-
#
|
3005
|
-
#
|
3006
|
-
#
|
3007
|
-
# `
|
4004
|
+
# If the previous paginated request did not return all of the
|
4005
|
+
# remaining results, the response object's `nextToken` parameter
|
4006
|
+
# value is set to a token. To retrieve the next set of results, call
|
4007
|
+
# `ListSimulationJobBatches` again and assign that token to the
|
4008
|
+
# request object's `nextToken` parameter. If there are no remaining
|
4009
|
+
# results, the previous response object's NextToken parameter is set
|
4010
|
+
# to null.
|
3008
4011
|
# @return [String]
|
3009
4012
|
#
|
3010
4013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobBatchesResponse AWS API Documentation
|
@@ -3031,17 +4034,12 @@ module Aws::RoboMaker
|
|
3031
4034
|
# }
|
3032
4035
|
#
|
3033
4036
|
# @!attribute [rw] next_token
|
3034
|
-
#
|
3035
|
-
#
|
3036
|
-
#
|
3037
|
-
#
|
3038
|
-
#
|
3039
|
-
#
|
3040
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only
|
3041
|
-
# used to retrieve the next items in a list and not for other
|
3042
|
-
# programmatic purposes.
|
3043
|
-
#
|
3044
|
-
# </note>
|
4037
|
+
# If the previous paginated request did not return all of the
|
4038
|
+
# remaining results, the response object's `nextToken` parameter
|
4039
|
+
# value is set to a token. To retrieve the next set of results, call
|
4040
|
+
# `ListSimulationJobs` again and assign that token to the request
|
4041
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4042
|
+
# the previous response object's NextToken parameter is set to null.
|
3045
4043
|
# @return [String]
|
3046
4044
|
#
|
3047
4045
|
# @!attribute [rw] max_results
|
@@ -3081,11 +4079,12 @@ module Aws::RoboMaker
|
|
3081
4079
|
# @return [Array<Types::SimulationJobSummary>]
|
3082
4080
|
#
|
3083
4081
|
# @!attribute [rw] next_token
|
3084
|
-
#
|
3085
|
-
#
|
3086
|
-
#
|
3087
|
-
#
|
3088
|
-
#
|
4082
|
+
# If the previous paginated request did not return all of the
|
4083
|
+
# remaining results, the response object's `nextToken` parameter
|
4084
|
+
# value is set to a token. To retrieve the next set of results, call
|
4085
|
+
# `ListSimulationJobs` again and assign that token to the request
|
4086
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4087
|
+
# the previous response object's NextToken parameter is set to null.
|
3089
4088
|
# @return [String]
|
3090
4089
|
#
|
3091
4090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobsResponse AWS API Documentation
|
@@ -3122,8 +4121,278 @@ module Aws::RoboMaker
|
|
3122
4121
|
#
|
3123
4122
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListTagsForResourceResponse AWS API Documentation
|
3124
4123
|
#
|
3125
|
-
class ListTagsForResourceResponse < Struct.new(
|
3126
|
-
:tags)
|
4124
|
+
class ListTagsForResourceResponse < Struct.new(
|
4125
|
+
:tags)
|
4126
|
+
SENSITIVE = []
|
4127
|
+
include Aws::Structure
|
4128
|
+
end
|
4129
|
+
|
4130
|
+
# @note When making an API call, you may pass ListWorldExportJobsRequest
|
4131
|
+
# data as a hash:
|
4132
|
+
#
|
4133
|
+
# {
|
4134
|
+
# next_token: "PaginationToken",
|
4135
|
+
# max_results: 1,
|
4136
|
+
# filters: [
|
4137
|
+
# {
|
4138
|
+
# name: "Name",
|
4139
|
+
# values: ["Name"],
|
4140
|
+
# },
|
4141
|
+
# ],
|
4142
|
+
# }
|
4143
|
+
#
|
4144
|
+
# @!attribute [rw] next_token
|
4145
|
+
# If the previous paginated request did not return all of the
|
4146
|
+
# remaining results, the response object's `nextToken` parameter
|
4147
|
+
# value is set to a token. To retrieve the next set of results, call
|
4148
|
+
# `ListWorldExportJobs` again and assign that token to the request
|
4149
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4150
|
+
# the previous response object's NextToken parameter is set to null.
|
4151
|
+
# @return [String]
|
4152
|
+
#
|
4153
|
+
# @!attribute [rw] max_results
|
4154
|
+
# When this parameter is used, `ListWorldExportJobs` only returns
|
4155
|
+
# `maxResults` results in a single page along with a `nextToken`
|
4156
|
+
# response element. The remaining results of the initial request can
|
4157
|
+
# be seen by sending another `ListWorldExportJobs` request with the
|
4158
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
4159
|
+
# this parameter is not used, then `ListWorldExportJobs` returns up to
|
4160
|
+
# 100 results and a `nextToken` value if applicable.
|
4161
|
+
# @return [Integer]
|
4162
|
+
#
|
4163
|
+
# @!attribute [rw] filters
|
4164
|
+
# Optional filters to limit results. You can use `generationJobId` and
|
4165
|
+
# `templateId`.
|
4166
|
+
# @return [Array<Types::Filter>]
|
4167
|
+
#
|
4168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobsRequest AWS API Documentation
|
4169
|
+
#
|
4170
|
+
class ListWorldExportJobsRequest < Struct.new(
|
4171
|
+
:next_token,
|
4172
|
+
:max_results,
|
4173
|
+
:filters)
|
4174
|
+
SENSITIVE = []
|
4175
|
+
include Aws::Structure
|
4176
|
+
end
|
4177
|
+
|
4178
|
+
# @!attribute [rw] world_export_job_summaries
|
4179
|
+
# Summary information for world export jobs.
|
4180
|
+
# @return [Array<Types::WorldExportJobSummary>]
|
4181
|
+
#
|
4182
|
+
# @!attribute [rw] next_token
|
4183
|
+
# If the previous paginated request did not return all of the
|
4184
|
+
# remaining results, the response object's `nextToken` parameter
|
4185
|
+
# value is set to a token. To retrieve the next set of results, call
|
4186
|
+
# `ListWorldExportJobsRequest` again and assign that token to the
|
4187
|
+
# request object's `nextToken` parameter. If there are no remaining
|
4188
|
+
# results, the previous response object's NextToken parameter is set
|
4189
|
+
# to null.
|
4190
|
+
# @return [String]
|
4191
|
+
#
|
4192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobsResponse AWS API Documentation
|
4193
|
+
#
|
4194
|
+
class ListWorldExportJobsResponse < Struct.new(
|
4195
|
+
:world_export_job_summaries,
|
4196
|
+
:next_token)
|
4197
|
+
SENSITIVE = []
|
4198
|
+
include Aws::Structure
|
4199
|
+
end
|
4200
|
+
|
4201
|
+
# @note When making an API call, you may pass ListWorldGenerationJobsRequest
|
4202
|
+
# data as a hash:
|
4203
|
+
#
|
4204
|
+
# {
|
4205
|
+
# next_token: "PaginationToken",
|
4206
|
+
# max_results: 1,
|
4207
|
+
# filters: [
|
4208
|
+
# {
|
4209
|
+
# name: "Name",
|
4210
|
+
# values: ["Name"],
|
4211
|
+
# },
|
4212
|
+
# ],
|
4213
|
+
# }
|
4214
|
+
#
|
4215
|
+
# @!attribute [rw] next_token
|
4216
|
+
# If the previous paginated request did not return all of the
|
4217
|
+
# remaining results, the response object's `nextToken` parameter
|
4218
|
+
# value is set to a token. To retrieve the next set of results, call
|
4219
|
+
# `ListWorldGenerationJobsRequest` again and assign that token to the
|
4220
|
+
# request object's `nextToken` parameter. If there are no remaining
|
4221
|
+
# results, the previous response object's NextToken parameter is set
|
4222
|
+
# to null.
|
4223
|
+
# @return [String]
|
4224
|
+
#
|
4225
|
+
# @!attribute [rw] max_results
|
4226
|
+
# When this parameter is used, `ListWorldGeneratorJobs` only returns
|
4227
|
+
# `maxResults` results in a single page along with a `nextToken`
|
4228
|
+
# response element. The remaining results of the initial request can
|
4229
|
+
# be seen by sending another `ListWorldGeneratorJobs` request with the
|
4230
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
4231
|
+
# this parameter is not used, then `ListWorldGeneratorJobs` returns up
|
4232
|
+
# to 100 results and a `nextToken` value if applicable.
|
4233
|
+
# @return [Integer]
|
4234
|
+
#
|
4235
|
+
# @!attribute [rw] filters
|
4236
|
+
# Optional filters to limit results. You can use `status` and
|
4237
|
+
# `templateId`.
|
4238
|
+
# @return [Array<Types::Filter>]
|
4239
|
+
#
|
4240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobsRequest AWS API Documentation
|
4241
|
+
#
|
4242
|
+
class ListWorldGenerationJobsRequest < Struct.new(
|
4243
|
+
:next_token,
|
4244
|
+
:max_results,
|
4245
|
+
:filters)
|
4246
|
+
SENSITIVE = []
|
4247
|
+
include Aws::Structure
|
4248
|
+
end
|
4249
|
+
|
4250
|
+
# @!attribute [rw] world_generation_job_summaries
|
4251
|
+
# Summary information for world generator jobs.
|
4252
|
+
# @return [Array<Types::WorldGenerationJobSummary>]
|
4253
|
+
#
|
4254
|
+
# @!attribute [rw] next_token
|
4255
|
+
# If the previous paginated request did not return all of the
|
4256
|
+
# remaining results, the response object's `nextToken` parameter
|
4257
|
+
# value is set to a token. To retrieve the next set of results, call
|
4258
|
+
# `ListWorldGeneratorJobsRequest` again and assign that token to the
|
4259
|
+
# request object's `nextToken` parameter. If there are no remaining
|
4260
|
+
# results, the previous response object's NextToken parameter is set
|
4261
|
+
# to null.
|
4262
|
+
# @return [String]
|
4263
|
+
#
|
4264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobsResponse AWS API Documentation
|
4265
|
+
#
|
4266
|
+
class ListWorldGenerationJobsResponse < Struct.new(
|
4267
|
+
:world_generation_job_summaries,
|
4268
|
+
:next_token)
|
4269
|
+
SENSITIVE = []
|
4270
|
+
include Aws::Structure
|
4271
|
+
end
|
4272
|
+
|
4273
|
+
# @note When making an API call, you may pass ListWorldTemplatesRequest
|
4274
|
+
# data as a hash:
|
4275
|
+
#
|
4276
|
+
# {
|
4277
|
+
# next_token: "PaginationToken",
|
4278
|
+
# max_results: 1,
|
4279
|
+
# }
|
4280
|
+
#
|
4281
|
+
# @!attribute [rw] next_token
|
4282
|
+
# If the previous paginated request did not return all of the
|
4283
|
+
# remaining results, the response object's `nextToken` parameter
|
4284
|
+
# value is set to a token. To retrieve the next set of results, call
|
4285
|
+
# `ListWorldTemplates` again and assign that token to the request
|
4286
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4287
|
+
# the previous response object's NextToken parameter is set to null.
|
4288
|
+
# @return [String]
|
4289
|
+
#
|
4290
|
+
# @!attribute [rw] max_results
|
4291
|
+
# When this parameter is used, `ListWorldTemplates` only returns
|
4292
|
+
# `maxResults` results in a single page along with a `nextToken`
|
4293
|
+
# response element. The remaining results of the initial request can
|
4294
|
+
# be seen by sending another `ListWorldTemplates` request with the
|
4295
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
4296
|
+
# this parameter is not used, then `ListWorldTemplates` returns up to
|
4297
|
+
# 100 results and a `nextToken` value if applicable.
|
4298
|
+
# @return [Integer]
|
4299
|
+
#
|
4300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplatesRequest AWS API Documentation
|
4301
|
+
#
|
4302
|
+
class ListWorldTemplatesRequest < Struct.new(
|
4303
|
+
:next_token,
|
4304
|
+
:max_results)
|
4305
|
+
SENSITIVE = []
|
4306
|
+
include Aws::Structure
|
4307
|
+
end
|
4308
|
+
|
4309
|
+
# @!attribute [rw] template_summaries
|
4310
|
+
# Summary information for templates.
|
4311
|
+
# @return [Array<Types::TemplateSummary>]
|
4312
|
+
#
|
4313
|
+
# @!attribute [rw] next_token
|
4314
|
+
# If the previous paginated request did not return all of the
|
4315
|
+
# remaining results, the response object's `nextToken` parameter
|
4316
|
+
# value is set to a token. To retrieve the next set of results, call
|
4317
|
+
# `ListWorldTemplates` again and assign that token to the request
|
4318
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4319
|
+
# the previous response object's NextToken parameter is set to null.
|
4320
|
+
# @return [String]
|
4321
|
+
#
|
4322
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplatesResponse AWS API Documentation
|
4323
|
+
#
|
4324
|
+
class ListWorldTemplatesResponse < Struct.new(
|
4325
|
+
:template_summaries,
|
4326
|
+
:next_token)
|
4327
|
+
SENSITIVE = []
|
4328
|
+
include Aws::Structure
|
4329
|
+
end
|
4330
|
+
|
4331
|
+
# @note When making an API call, you may pass ListWorldsRequest
|
4332
|
+
# data as a hash:
|
4333
|
+
#
|
4334
|
+
# {
|
4335
|
+
# next_token: "PaginationToken",
|
4336
|
+
# max_results: 1,
|
4337
|
+
# filters: [
|
4338
|
+
# {
|
4339
|
+
# name: "Name",
|
4340
|
+
# values: ["Name"],
|
4341
|
+
# },
|
4342
|
+
# ],
|
4343
|
+
# }
|
4344
|
+
#
|
4345
|
+
# @!attribute [rw] next_token
|
4346
|
+
# If the previous paginated request did not return all of the
|
4347
|
+
# remaining results, the response object's `nextToken` parameter
|
4348
|
+
# value is set to a token. To retrieve the next set of results, call
|
4349
|
+
# `ListWorlds` again and assign that token to the request object's
|
4350
|
+
# `nextToken` parameter. If there are no remaining results, the
|
4351
|
+
# previous response object's NextToken parameter is set to null.
|
4352
|
+
# @return [String]
|
4353
|
+
#
|
4354
|
+
# @!attribute [rw] max_results
|
4355
|
+
# When this parameter is used, `ListWorlds` only returns `maxResults`
|
4356
|
+
# results in a single page along with a `nextToken` response element.
|
4357
|
+
# The remaining results of the initial request can be seen by sending
|
4358
|
+
# another `ListWorlds` request with the returned `nextToken` value.
|
4359
|
+
# This value can be between 1 and 100. If this parameter is not used,
|
4360
|
+
# then `ListWorlds` returns up to 100 results and a `nextToken` value
|
4361
|
+
# if applicable.
|
4362
|
+
# @return [Integer]
|
4363
|
+
#
|
4364
|
+
# @!attribute [rw] filters
|
4365
|
+
# Optional filters to limit results. You can use `status`.
|
4366
|
+
# @return [Array<Types::Filter>]
|
4367
|
+
#
|
4368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldsRequest AWS API Documentation
|
4369
|
+
#
|
4370
|
+
class ListWorldsRequest < Struct.new(
|
4371
|
+
:next_token,
|
4372
|
+
:max_results,
|
4373
|
+
:filters)
|
4374
|
+
SENSITIVE = []
|
4375
|
+
include Aws::Structure
|
4376
|
+
end
|
4377
|
+
|
4378
|
+
# @!attribute [rw] world_summaries
|
4379
|
+
# Summary information for worlds.
|
4380
|
+
# @return [Array<Types::WorldSummary>]
|
4381
|
+
#
|
4382
|
+
# @!attribute [rw] next_token
|
4383
|
+
# If the previous paginated request did not return all of the
|
4384
|
+
# remaining results, the response object's `nextToken` parameter
|
4385
|
+
# value is set to a token. To retrieve the next set of results, call
|
4386
|
+
# `ListWorlds` again and assign that token to the request object's
|
4387
|
+
# `nextToken` parameter. If there are no remaining results, the
|
4388
|
+
# previous response object's NextToken parameter is set to null.
|
4389
|
+
# @return [String]
|
4390
|
+
#
|
4391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldsResponse AWS API Documentation
|
4392
|
+
#
|
4393
|
+
class ListWorldsResponse < Struct.new(
|
4394
|
+
:world_summaries,
|
4395
|
+
:next_token)
|
3127
4396
|
SENSITIVE = []
|
3128
4397
|
include Aws::Structure
|
3129
4398
|
end
|
@@ -3740,6 +5009,11 @@ module Aws::RoboMaker
|
|
3740
5009
|
# },
|
3741
5010
|
# stream_ui: false,
|
3742
5011
|
# },
|
5012
|
+
# world_configs: [
|
5013
|
+
# {
|
5014
|
+
# world: "Arn",
|
5015
|
+
# },
|
5016
|
+
# ],
|
3743
5017
|
# }
|
3744
5018
|
#
|
3745
5019
|
# @!attribute [rw] application
|
@@ -3754,12 +5028,17 @@ module Aws::RoboMaker
|
|
3754
5028
|
# The launch configuration for the simulation application.
|
3755
5029
|
# @return [Types::LaunchConfig]
|
3756
5030
|
#
|
5031
|
+
# @!attribute [rw] world_configs
|
5032
|
+
# A list of world configurations.
|
5033
|
+
# @return [Array<Types::WorldConfig>]
|
5034
|
+
#
|
3757
5035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationApplicationConfig AWS API Documentation
|
3758
5036
|
#
|
3759
5037
|
class SimulationApplicationConfig < Struct.new(
|
3760
5038
|
:application,
|
3761
5039
|
:application_version,
|
3762
|
-
:launch_config
|
5040
|
+
:launch_config,
|
5041
|
+
:world_configs)
|
3763
5042
|
SENSITIVE = []
|
3764
5043
|
include Aws::Structure
|
3765
5044
|
end
|
@@ -4088,6 +5367,11 @@ module Aws::RoboMaker
|
|
4088
5367
|
# },
|
4089
5368
|
# stream_ui: false,
|
4090
5369
|
# },
|
5370
|
+
# world_configs: [
|
5371
|
+
# {
|
5372
|
+
# world: "Arn",
|
5373
|
+
# },
|
5374
|
+
# ],
|
4091
5375
|
# },
|
4092
5376
|
# ],
|
4093
5377
|
# data_sources: [
|
@@ -4401,6 +5685,11 @@ module Aws::RoboMaker
|
|
4401
5685
|
# },
|
4402
5686
|
# stream_ui: false,
|
4403
5687
|
# },
|
5688
|
+
# world_configs: [
|
5689
|
+
# {
|
5690
|
+
# world: "Arn",
|
5691
|
+
# },
|
5692
|
+
# ],
|
4404
5693
|
# },
|
4405
5694
|
# ],
|
4406
5695
|
# data_sources: [
|
@@ -4748,6 +6037,64 @@ module Aws::RoboMaker
|
|
4748
6037
|
#
|
4749
6038
|
class TagResourceResponse < Aws::EmptyStructure; end
|
4750
6039
|
|
6040
|
+
# Information about a template location.
|
6041
|
+
#
|
6042
|
+
# @note When making an API call, you may pass TemplateLocation
|
6043
|
+
# data as a hash:
|
6044
|
+
#
|
6045
|
+
# {
|
6046
|
+
# s3_bucket: "S3Bucket", # required
|
6047
|
+
# s3_key: "S3Key", # required
|
6048
|
+
# }
|
6049
|
+
#
|
6050
|
+
# @!attribute [rw] s3_bucket
|
6051
|
+
# The Amazon S3 bucket name.
|
6052
|
+
# @return [String]
|
6053
|
+
#
|
6054
|
+
# @!attribute [rw] s3_key
|
6055
|
+
# The list of S3 keys identifying the data source files.
|
6056
|
+
# @return [String]
|
6057
|
+
#
|
6058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/TemplateLocation AWS API Documentation
|
6059
|
+
#
|
6060
|
+
class TemplateLocation < Struct.new(
|
6061
|
+
:s3_bucket,
|
6062
|
+
:s3_key)
|
6063
|
+
SENSITIVE = []
|
6064
|
+
include Aws::Structure
|
6065
|
+
end
|
6066
|
+
|
6067
|
+
# Summary information for a template.
|
6068
|
+
#
|
6069
|
+
# @!attribute [rw] arn
|
6070
|
+
# The Amazon Resource Name (ARN) of the template.
|
6071
|
+
# @return [String]
|
6072
|
+
#
|
6073
|
+
# @!attribute [rw] created_at
|
6074
|
+
# The time, in milliseconds since the epoch, when the template was
|
6075
|
+
# created.
|
6076
|
+
# @return [Time]
|
6077
|
+
#
|
6078
|
+
# @!attribute [rw] last_updated_at
|
6079
|
+
# The time, in milliseconds since the epoch, when the template was
|
6080
|
+
# last updated.
|
6081
|
+
# @return [Time]
|
6082
|
+
#
|
6083
|
+
# @!attribute [rw] name
|
6084
|
+
# The name of the template.
|
6085
|
+
# @return [String]
|
6086
|
+
#
|
6087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/TemplateSummary AWS API Documentation
|
6088
|
+
#
|
6089
|
+
class TemplateSummary < Struct.new(
|
6090
|
+
:arn,
|
6091
|
+
:created_at,
|
6092
|
+
:last_updated_at,
|
6093
|
+
:name)
|
6094
|
+
SENSITIVE = []
|
6095
|
+
include Aws::Structure
|
6096
|
+
end
|
6097
|
+
|
4751
6098
|
# AWS RoboMaker is temporarily unable to process the request. Try your
|
4752
6099
|
# call again.
|
4753
6100
|
#
|
@@ -5002,6 +6349,75 @@ module Aws::RoboMaker
|
|
5002
6349
|
include Aws::Structure
|
5003
6350
|
end
|
5004
6351
|
|
6352
|
+
# @note When making an API call, you may pass UpdateWorldTemplateRequest
|
6353
|
+
# data as a hash:
|
6354
|
+
#
|
6355
|
+
# {
|
6356
|
+
# template: "Arn", # required
|
6357
|
+
# name: "TemplateName",
|
6358
|
+
# template_body: "Json",
|
6359
|
+
# template_location: {
|
6360
|
+
# s3_bucket: "S3Bucket", # required
|
6361
|
+
# s3_key: "S3Key", # required
|
6362
|
+
# },
|
6363
|
+
# }
|
6364
|
+
#
|
6365
|
+
# @!attribute [rw] template
|
6366
|
+
# The Amazon Resource Name (arn) of the world template to update.
|
6367
|
+
# @return [String]
|
6368
|
+
#
|
6369
|
+
# @!attribute [rw] name
|
6370
|
+
# The name of the template.
|
6371
|
+
# @return [String]
|
6372
|
+
#
|
6373
|
+
# @!attribute [rw] template_body
|
6374
|
+
# The world template body.
|
6375
|
+
# @return [String]
|
6376
|
+
#
|
6377
|
+
# @!attribute [rw] template_location
|
6378
|
+
# The location of the world template.
|
6379
|
+
# @return [Types::TemplateLocation]
|
6380
|
+
#
|
6381
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateWorldTemplateRequest AWS API Documentation
|
6382
|
+
#
|
6383
|
+
class UpdateWorldTemplateRequest < Struct.new(
|
6384
|
+
:template,
|
6385
|
+
:name,
|
6386
|
+
:template_body,
|
6387
|
+
:template_location)
|
6388
|
+
SENSITIVE = []
|
6389
|
+
include Aws::Structure
|
6390
|
+
end
|
6391
|
+
|
6392
|
+
# @!attribute [rw] arn
|
6393
|
+
# The Amazon Resource Name (arn) of the world template.
|
6394
|
+
# @return [String]
|
6395
|
+
#
|
6396
|
+
# @!attribute [rw] name
|
6397
|
+
# The name of the world template.
|
6398
|
+
# @return [String]
|
6399
|
+
#
|
6400
|
+
# @!attribute [rw] created_at
|
6401
|
+
# The time, in milliseconds since the epoch, when the world template
|
6402
|
+
# was created.
|
6403
|
+
# @return [Time]
|
6404
|
+
#
|
6405
|
+
# @!attribute [rw] last_updated_at
|
6406
|
+
# The time, in milliseconds since the epoch, when the world template
|
6407
|
+
# was last updated.
|
6408
|
+
# @return [Time]
|
6409
|
+
#
|
6410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateWorldTemplateResponse AWS API Documentation
|
6411
|
+
#
|
6412
|
+
class UpdateWorldTemplateResponse < Struct.new(
|
6413
|
+
:arn,
|
6414
|
+
:name,
|
6415
|
+
:created_at,
|
6416
|
+
:last_updated_at)
|
6417
|
+
SENSITIVE = []
|
6418
|
+
include Aws::Structure
|
6419
|
+
end
|
6420
|
+
|
5005
6421
|
# If your simulation job accesses resources in a VPC, you provide this
|
5006
6422
|
# parameter identifying the list of security group IDs and subnet IDs.
|
5007
6423
|
# These must belong to the same VPC. You must provide at least one
|
@@ -5067,5 +6483,267 @@ module Aws::RoboMaker
|
|
5067
6483
|
include Aws::Structure
|
5068
6484
|
end
|
5069
6485
|
|
6486
|
+
# Configuration information for a world.
|
6487
|
+
#
|
6488
|
+
# @note When making an API call, you may pass WorldConfig
|
6489
|
+
# data as a hash:
|
6490
|
+
#
|
6491
|
+
# {
|
6492
|
+
# world: "Arn",
|
6493
|
+
# }
|
6494
|
+
#
|
6495
|
+
# @!attribute [rw] world
|
6496
|
+
# The world generated by Simulation WorldForge.
|
6497
|
+
# @return [String]
|
6498
|
+
#
|
6499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldConfig AWS API Documentation
|
6500
|
+
#
|
6501
|
+
class WorldConfig < Struct.new(
|
6502
|
+
:world)
|
6503
|
+
SENSITIVE = []
|
6504
|
+
include Aws::Structure
|
6505
|
+
end
|
6506
|
+
|
6507
|
+
# The number of worlds that will be created. You can configure the
|
6508
|
+
# number of unique floorplans and the number of unique interiors for
|
6509
|
+
# each floor plan. For example, if you want 1 world with 20 unique
|
6510
|
+
# interiors, you set `floorplanCount = 1` and `interiorCountPerFloorplan
|
6511
|
+
# = 20`. This will result in 20 worlds (`floorplanCount` *
|
6512
|
+
# `interiorCountPerFloorplan)`.
|
6513
|
+
#
|
6514
|
+
# If you set `floorplanCount = 4` and `interiorCountPerFloorplan = 5`,
|
6515
|
+
# there will be 20 worlds with 5 unique floor plans.
|
6516
|
+
#
|
6517
|
+
# @note When making an API call, you may pass WorldCount
|
6518
|
+
# data as a hash:
|
6519
|
+
#
|
6520
|
+
# {
|
6521
|
+
# floorplan_count: 1,
|
6522
|
+
# interior_count_per_floorplan: 1,
|
6523
|
+
# }
|
6524
|
+
#
|
6525
|
+
# @!attribute [rw] floorplan_count
|
6526
|
+
# The number of unique floorplans.
|
6527
|
+
# @return [Integer]
|
6528
|
+
#
|
6529
|
+
# @!attribute [rw] interior_count_per_floorplan
|
6530
|
+
# The number of unique interiors per floorplan.
|
6531
|
+
# @return [Integer]
|
6532
|
+
#
|
6533
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldCount AWS API Documentation
|
6534
|
+
#
|
6535
|
+
class WorldCount < Struct.new(
|
6536
|
+
:floorplan_count,
|
6537
|
+
:interior_count_per_floorplan)
|
6538
|
+
SENSITIVE = []
|
6539
|
+
include Aws::Structure
|
6540
|
+
end
|
6541
|
+
|
6542
|
+
# Information about a world export job.
|
6543
|
+
#
|
6544
|
+
# @!attribute [rw] arn
|
6545
|
+
# The Amazon Resource Name (ARN) of the world export job.
|
6546
|
+
# @return [String]
|
6547
|
+
#
|
6548
|
+
# @!attribute [rw] status
|
6549
|
+
# The status of the world export job.
|
6550
|
+
#
|
6551
|
+
# Pending
|
6552
|
+
#
|
6553
|
+
# : The world export job request is pending.
|
6554
|
+
#
|
6555
|
+
# Running
|
6556
|
+
#
|
6557
|
+
# : The world export job is running.
|
6558
|
+
#
|
6559
|
+
# Completed
|
6560
|
+
#
|
6561
|
+
# : The world export job completed.
|
6562
|
+
#
|
6563
|
+
# Failed
|
6564
|
+
#
|
6565
|
+
# : The world export job failed. See `failureCode` for more
|
6566
|
+
# information.
|
6567
|
+
#
|
6568
|
+
# Canceled
|
6569
|
+
#
|
6570
|
+
# : The world export job was cancelled.
|
6571
|
+
#
|
6572
|
+
# Canceling
|
6573
|
+
#
|
6574
|
+
# : The world export job is being cancelled.
|
6575
|
+
# @return [String]
|
6576
|
+
#
|
6577
|
+
# @!attribute [rw] created_at
|
6578
|
+
# The time, in milliseconds since the epoch, when the world export job
|
6579
|
+
# was created.
|
6580
|
+
# @return [Time]
|
6581
|
+
#
|
6582
|
+
# @!attribute [rw] worlds
|
6583
|
+
# A list of worlds.
|
6584
|
+
# @return [Array<String>]
|
6585
|
+
#
|
6586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldExportJobSummary AWS API Documentation
|
6587
|
+
#
|
6588
|
+
class WorldExportJobSummary < Struct.new(
|
6589
|
+
:arn,
|
6590
|
+
:status,
|
6591
|
+
:created_at,
|
6592
|
+
:worlds)
|
6593
|
+
SENSITIVE = []
|
6594
|
+
include Aws::Structure
|
6595
|
+
end
|
6596
|
+
|
6597
|
+
# Information about a failed world.
|
6598
|
+
#
|
6599
|
+
# @!attribute [rw] failure_code
|
6600
|
+
# The failure code of the world export job if it failed:
|
6601
|
+
#
|
6602
|
+
# InternalServiceError
|
6603
|
+
#
|
6604
|
+
# : Internal service error.
|
6605
|
+
#
|
6606
|
+
# LimitExceeded
|
6607
|
+
#
|
6608
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
6609
|
+
# number of concurrent stream requests exceeds the maximum number
|
6610
|
+
# allowed.
|
6611
|
+
#
|
6612
|
+
# ResourceNotFound
|
6613
|
+
#
|
6614
|
+
# : The specified resource could not be found.
|
6615
|
+
#
|
6616
|
+
# RequestThrottled
|
6617
|
+
#
|
6618
|
+
# : The request was throttled.
|
6619
|
+
#
|
6620
|
+
# InvalidInput
|
6621
|
+
#
|
6622
|
+
# : An input parameter in the request is not valid.
|
6623
|
+
# @return [String]
|
6624
|
+
#
|
6625
|
+
# @!attribute [rw] sample_failure_reason
|
6626
|
+
# The sample reason why the world failed. World errors are aggregated.
|
6627
|
+
# A sample is used as the `sampleFailureReason`.
|
6628
|
+
# @return [String]
|
6629
|
+
#
|
6630
|
+
# @!attribute [rw] failure_count
|
6631
|
+
# The number of failed worlds.
|
6632
|
+
# @return [Integer]
|
6633
|
+
#
|
6634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldFailure AWS API Documentation
|
6635
|
+
#
|
6636
|
+
class WorldFailure < Struct.new(
|
6637
|
+
:failure_code,
|
6638
|
+
:sample_failure_reason,
|
6639
|
+
:failure_count)
|
6640
|
+
SENSITIVE = []
|
6641
|
+
include Aws::Structure
|
6642
|
+
end
|
6643
|
+
|
6644
|
+
# Information about a world generator job.
|
6645
|
+
#
|
6646
|
+
# @!attribute [rw] arn
|
6647
|
+
# The Amazon Resource Name (ARN) of the world generator job.
|
6648
|
+
# @return [String]
|
6649
|
+
#
|
6650
|
+
# @!attribute [rw] template
|
6651
|
+
# The Amazon Resource Name (arn) of the world template.
|
6652
|
+
# @return [String]
|
6653
|
+
#
|
6654
|
+
# @!attribute [rw] created_at
|
6655
|
+
# The time, in milliseconds since the epoch, when the world generator
|
6656
|
+
# job was created.
|
6657
|
+
# @return [Time]
|
6658
|
+
#
|
6659
|
+
# @!attribute [rw] status
|
6660
|
+
# The status of the world generator job:
|
6661
|
+
#
|
6662
|
+
# Pending
|
6663
|
+
#
|
6664
|
+
# : The world generator job request is pending.
|
6665
|
+
#
|
6666
|
+
# Running
|
6667
|
+
#
|
6668
|
+
# : The world generator job is running.
|
6669
|
+
#
|
6670
|
+
# Completed
|
6671
|
+
#
|
6672
|
+
# : The world generator job completed.
|
6673
|
+
#
|
6674
|
+
# Failed
|
6675
|
+
#
|
6676
|
+
# : The world generator job failed. See `failureCode` for more
|
6677
|
+
# information.
|
6678
|
+
#
|
6679
|
+
# PartialFailed
|
6680
|
+
#
|
6681
|
+
# : Some worlds did not generate.
|
6682
|
+
#
|
6683
|
+
# Canceled
|
6684
|
+
#
|
6685
|
+
# : The world generator job was cancelled.
|
6686
|
+
#
|
6687
|
+
# Canceling
|
6688
|
+
#
|
6689
|
+
# : The world generator job is being cancelled.
|
6690
|
+
# @return [String]
|
6691
|
+
#
|
6692
|
+
# @!attribute [rw] world_count
|
6693
|
+
# Information about the world count.
|
6694
|
+
# @return [Types::WorldCount]
|
6695
|
+
#
|
6696
|
+
# @!attribute [rw] succeeded_world_count
|
6697
|
+
# The number of worlds that were generated.
|
6698
|
+
# @return [Integer]
|
6699
|
+
#
|
6700
|
+
# @!attribute [rw] failed_world_count
|
6701
|
+
# The number of worlds that failed.
|
6702
|
+
# @return [Integer]
|
6703
|
+
#
|
6704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldGenerationJobSummary AWS API Documentation
|
6705
|
+
#
|
6706
|
+
class WorldGenerationJobSummary < Struct.new(
|
6707
|
+
:arn,
|
6708
|
+
:template,
|
6709
|
+
:created_at,
|
6710
|
+
:status,
|
6711
|
+
:world_count,
|
6712
|
+
:succeeded_world_count,
|
6713
|
+
:failed_world_count)
|
6714
|
+
SENSITIVE = []
|
6715
|
+
include Aws::Structure
|
6716
|
+
end
|
6717
|
+
|
6718
|
+
# Information about a world.
|
6719
|
+
#
|
6720
|
+
# @!attribute [rw] arn
|
6721
|
+
# The Amazon Resource Name (ARN) of the world.
|
6722
|
+
# @return [String]
|
6723
|
+
#
|
6724
|
+
# @!attribute [rw] created_at
|
6725
|
+
# The time, in milliseconds since the epoch, when the world was
|
6726
|
+
# created.
|
6727
|
+
# @return [Time]
|
6728
|
+
#
|
6729
|
+
# @!attribute [rw] generation_job
|
6730
|
+
# The Amazon Resource Name (arn) of the world generation job.
|
6731
|
+
# @return [String]
|
6732
|
+
#
|
6733
|
+
# @!attribute [rw] template
|
6734
|
+
# The Amazon Resource Name (arn) of the world template.
|
6735
|
+
# @return [String]
|
6736
|
+
#
|
6737
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldSummary AWS API Documentation
|
6738
|
+
#
|
6739
|
+
class WorldSummary < Struct.new(
|
6740
|
+
:arn,
|
6741
|
+
:created_at,
|
6742
|
+
:generation_job,
|
6743
|
+
:template)
|
6744
|
+
SENSITIVE = []
|
6745
|
+
include Aws::Structure
|
6746
|
+
end
|
6747
|
+
|
5070
6748
|
end
|
5071
6749
|
end
|