aws-sdk-robomaker 1.22.0 → 1.27.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 +5 -5
- data/lib/aws-sdk-robomaker.rb +4 -2
- data/lib/aws-sdk-robomaker/client.rb +873 -43
- data/lib/aws-sdk-robomaker/client_api.rb +528 -0
- data/lib/aws-sdk-robomaker/errors.rb +2 -0
- data/lib/aws-sdk-robomaker/resource.rb +2 -0
- data/lib/aws-sdk-robomaker/types.rb +2560 -796
- metadata +5 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -8,6 +10,39 @@
|
|
8
10
|
module Aws::RoboMaker
|
9
11
|
module Types
|
10
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
|
+
|
11
46
|
# @note When making an API call, you may pass BatchDescribeSimulationJobRequest
|
12
47
|
# data as a hash:
|
13
48
|
#
|
@@ -24,6 +59,7 @@ module Aws::RoboMaker
|
|
24
59
|
#
|
25
60
|
class BatchDescribeSimulationJobRequest < Struct.new(
|
26
61
|
:jobs)
|
62
|
+
SENSITIVE = []
|
27
63
|
include Aws::Structure
|
28
64
|
end
|
29
65
|
|
@@ -40,6 +76,7 @@ module Aws::RoboMaker
|
|
40
76
|
class BatchDescribeSimulationJobResponse < Struct.new(
|
41
77
|
:jobs,
|
42
78
|
:unprocessed_jobs)
|
79
|
+
SENSITIVE = []
|
43
80
|
include Aws::Structure
|
44
81
|
end
|
45
82
|
|
@@ -78,6 +115,7 @@ module Aws::RoboMaker
|
|
78
115
|
class BatchPolicy < Struct.new(
|
79
116
|
:timeout_in_seconds,
|
80
117
|
:max_concurrency)
|
118
|
+
SENSITIVE = []
|
81
119
|
include Aws::Structure
|
82
120
|
end
|
83
121
|
|
@@ -96,6 +134,7 @@ module Aws::RoboMaker
|
|
96
134
|
#
|
97
135
|
class CancelDeploymentJobRequest < Struct.new(
|
98
136
|
:job)
|
137
|
+
SENSITIVE = []
|
99
138
|
include Aws::Structure
|
100
139
|
end
|
101
140
|
|
@@ -118,6 +157,7 @@ module Aws::RoboMaker
|
|
118
157
|
#
|
119
158
|
class CancelSimulationJobBatchRequest < Struct.new(
|
120
159
|
:batch)
|
160
|
+
SENSITIVE = []
|
121
161
|
include Aws::Structure
|
122
162
|
end
|
123
163
|
|
@@ -140,6 +180,7 @@ module Aws::RoboMaker
|
|
140
180
|
#
|
141
181
|
class CancelSimulationJobRequest < Struct.new(
|
142
182
|
:job)
|
183
|
+
SENSITIVE = []
|
143
184
|
include Aws::Structure
|
144
185
|
end
|
145
186
|
|
@@ -147,6 +188,52 @@ module Aws::RoboMaker
|
|
147
188
|
#
|
148
189
|
class CancelSimulationJobResponse < Aws::EmptyStructure; end
|
149
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
|
+
|
150
237
|
# Compute information for the simulation job.
|
151
238
|
#
|
152
239
|
# @note When making an API call, you may pass Compute
|
@@ -160,13 +247,15 @@ module Aws::RoboMaker
|
|
160
247
|
# The simulation unit limit. Your simulation is allocated CPU and
|
161
248
|
# memory proportional to the supplied simulation unit limit. A
|
162
249
|
# simulation unit is 1 vcpu and 2GB of memory. You are only billed for
|
163
|
-
# 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.
|
164
252
|
# @return [Integer]
|
165
253
|
#
|
166
254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/Compute AWS API Documentation
|
167
255
|
#
|
168
256
|
class Compute < Struct.new(
|
169
257
|
:simulation_unit_limit)
|
258
|
+
SENSITIVE = []
|
170
259
|
include Aws::Structure
|
171
260
|
end
|
172
261
|
|
@@ -176,13 +265,15 @@ module Aws::RoboMaker
|
|
176
265
|
# The simulation unit limit. Your simulation is allocated CPU and
|
177
266
|
# memory proportional to the supplied simulation unit limit. A
|
178
267
|
# simulation unit is 1 vcpu and 2GB of memory. You are only billed for
|
179
|
-
# 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.
|
180
270
|
# @return [Integer]
|
181
271
|
#
|
182
272
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ComputeResponse AWS API Documentation
|
183
273
|
#
|
184
274
|
class ComputeResponse < Struct.new(
|
185
275
|
:simulation_unit_limit)
|
276
|
+
SENSITIVE = []
|
186
277
|
include Aws::Structure
|
187
278
|
end
|
188
279
|
|
@@ -195,6 +286,7 @@ module Aws::RoboMaker
|
|
195
286
|
#
|
196
287
|
class ConcurrentDeploymentException < Struct.new(
|
197
288
|
:message)
|
289
|
+
SENSITIVE = []
|
198
290
|
include Aws::Structure
|
199
291
|
end
|
200
292
|
|
@@ -267,6 +359,7 @@ module Aws::RoboMaker
|
|
267
359
|
:fleet,
|
268
360
|
:deployment_application_configs,
|
269
361
|
:tags)
|
362
|
+
SENSITIVE = []
|
270
363
|
include Aws::Structure
|
271
364
|
end
|
272
365
|
|
@@ -381,6 +474,7 @@ module Aws::RoboMaker
|
|
381
474
|
:created_at,
|
382
475
|
:deployment_config,
|
383
476
|
:tags)
|
477
|
+
SENSITIVE = []
|
384
478
|
include Aws::Structure
|
385
479
|
end
|
386
480
|
|
@@ -408,6 +502,7 @@ module Aws::RoboMaker
|
|
408
502
|
class CreateFleetRequest < Struct.new(
|
409
503
|
:name,
|
410
504
|
:tags)
|
505
|
+
SENSITIVE = []
|
411
506
|
include Aws::Structure
|
412
507
|
end
|
413
508
|
|
@@ -435,6 +530,7 @@ module Aws::RoboMaker
|
|
435
530
|
:name,
|
436
531
|
:created_at,
|
437
532
|
:tags)
|
533
|
+
SENSITIVE = []
|
438
534
|
include Aws::Structure
|
439
535
|
end
|
440
536
|
|
@@ -484,6 +580,7 @@ module Aws::RoboMaker
|
|
484
580
|
:sources,
|
485
581
|
:robot_software_suite,
|
486
582
|
:tags)
|
583
|
+
SENSITIVE = []
|
487
584
|
include Aws::Structure
|
488
585
|
end
|
489
586
|
|
@@ -532,6 +629,7 @@ module Aws::RoboMaker
|
|
532
629
|
:last_updated_at,
|
533
630
|
:revision_id,
|
534
631
|
:tags)
|
632
|
+
SENSITIVE = []
|
535
633
|
include Aws::Structure
|
536
634
|
end
|
537
635
|
|
@@ -558,6 +656,7 @@ module Aws::RoboMaker
|
|
558
656
|
class CreateRobotApplicationVersionRequest < Struct.new(
|
559
657
|
:application,
|
560
658
|
:current_revision_id)
|
659
|
+
SENSITIVE = []
|
561
660
|
include Aws::Structure
|
562
661
|
end
|
563
662
|
|
@@ -601,6 +700,7 @@ module Aws::RoboMaker
|
|
601
700
|
:robot_software_suite,
|
602
701
|
:last_updated_at,
|
603
702
|
:revision_id)
|
703
|
+
SENSITIVE = []
|
604
704
|
include Aws::Structure
|
605
705
|
end
|
606
706
|
|
@@ -640,6 +740,7 @@ module Aws::RoboMaker
|
|
640
740
|
:architecture,
|
641
741
|
:greengrass_group_id,
|
642
742
|
:tags)
|
743
|
+
SENSITIVE = []
|
643
744
|
include Aws::Structure
|
644
745
|
end
|
645
746
|
|
@@ -678,6 +779,7 @@ module Aws::RoboMaker
|
|
678
779
|
:greengrass_group_id,
|
679
780
|
:architecture,
|
680
781
|
:tags)
|
782
|
+
SENSITIVE = []
|
681
783
|
include Aws::Structure
|
682
784
|
end
|
683
785
|
|
@@ -745,6 +847,7 @@ module Aws::RoboMaker
|
|
745
847
|
:robot_software_suite,
|
746
848
|
:rendering_engine,
|
747
849
|
:tags)
|
850
|
+
SENSITIVE = []
|
748
851
|
include Aws::Structure
|
749
852
|
end
|
750
853
|
|
@@ -802,6 +905,7 @@ module Aws::RoboMaker
|
|
802
905
|
:last_updated_at,
|
803
906
|
:revision_id,
|
804
907
|
:tags)
|
908
|
+
SENSITIVE = []
|
805
909
|
include Aws::Structure
|
806
910
|
end
|
807
911
|
|
@@ -828,6 +932,7 @@ module Aws::RoboMaker
|
|
828
932
|
class CreateSimulationApplicationVersionRequest < Struct.new(
|
829
933
|
:application,
|
830
934
|
:current_revision_id)
|
935
|
+
SENSITIVE = []
|
831
936
|
include Aws::Structure
|
832
937
|
end
|
833
938
|
|
@@ -880,6 +985,7 @@ module Aws::RoboMaker
|
|
880
985
|
:rendering_engine,
|
881
986
|
:last_updated_at,
|
882
987
|
:revision_id)
|
988
|
+
SENSITIVE = []
|
883
989
|
include Aws::Structure
|
884
990
|
end
|
885
991
|
|
@@ -942,6 +1048,11 @@ module Aws::RoboMaker
|
|
942
1048
|
# },
|
943
1049
|
# stream_ui: false,
|
944
1050
|
# },
|
1051
|
+
# world_configs: [
|
1052
|
+
# {
|
1053
|
+
# world: "Arn",
|
1054
|
+
# },
|
1055
|
+
# ],
|
945
1056
|
# },
|
946
1057
|
# ],
|
947
1058
|
# data_sources: [
|
@@ -1055,6 +1166,7 @@ module Aws::RoboMaker
|
|
1055
1166
|
:tags,
|
1056
1167
|
:vpc_config,
|
1057
1168
|
:compute)
|
1169
|
+
SENSITIVE = []
|
1058
1170
|
include Aws::Structure
|
1059
1171
|
end
|
1060
1172
|
|
@@ -1216,464 +1328,455 @@ module Aws::RoboMaker
|
|
1216
1328
|
:tags,
|
1217
1329
|
:vpc_config,
|
1218
1330
|
:compute)
|
1331
|
+
SENSITIVE = []
|
1219
1332
|
include Aws::Structure
|
1220
1333
|
end
|
1221
1334
|
|
1222
|
-
#
|
1335
|
+
# @note When making an API call, you may pass CreateWorldExportJobRequest
|
1336
|
+
# data as a hash:
|
1223
1337
|
#
|
1224
|
-
#
|
1225
|
-
#
|
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.
|
1226
1357
|
# @return [String]
|
1227
1358
|
#
|
1228
|
-
# @!attribute [rw]
|
1229
|
-
#
|
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.
|
1230
1371
|
# @return [String]
|
1231
1372
|
#
|
1232
|
-
# @!attribute [rw]
|
1233
|
-
#
|
1234
|
-
#
|
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>]
|
1235
1377
|
#
|
1236
|
-
# @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
|
1237
1379
|
#
|
1238
|
-
class
|
1239
|
-
:
|
1240
|
-
:
|
1241
|
-
:
|
1380
|
+
class CreateWorldExportJobRequest < Struct.new(
|
1381
|
+
:client_request_token,
|
1382
|
+
:worlds,
|
1383
|
+
:output_location,
|
1384
|
+
:iam_role,
|
1385
|
+
:tags)
|
1386
|
+
SENSITIVE = []
|
1242
1387
|
include Aws::Structure
|
1243
1388
|
end
|
1244
1389
|
|
1245
|
-
#
|
1390
|
+
# @!attribute [rw] arn
|
1391
|
+
# The Amazon Resource Name (ARN) of the world export job.
|
1392
|
+
# @return [String]
|
1246
1393
|
#
|
1247
|
-
#
|
1248
|
-
#
|
1394
|
+
# @!attribute [rw] status
|
1395
|
+
# The status of the world export job.
|
1249
1396
|
#
|
1250
|
-
#
|
1251
|
-
# name: "Name", # required
|
1252
|
-
# s3_bucket: "S3Bucket", # required
|
1253
|
-
# s3_keys: ["S3Key"], # required
|
1254
|
-
# }
|
1397
|
+
# Pending
|
1255
1398
|
#
|
1256
|
-
#
|
1257
|
-
# The name of the data source.
|
1258
|
-
# @return [String]
|
1399
|
+
# : The world export job request is pending.
|
1259
1400
|
#
|
1260
|
-
#
|
1261
|
-
# The S3 bucket where the data files are located.
|
1262
|
-
# @return [String]
|
1401
|
+
# Running
|
1263
1402
|
#
|
1264
|
-
#
|
1265
|
-
# The list of S3 keys identifying the data source files.
|
1266
|
-
# @return [Array<String>]
|
1403
|
+
# : The world export job is running.
|
1267
1404
|
#
|
1268
|
-
#
|
1405
|
+
# Completed
|
1269
1406
|
#
|
1270
|
-
|
1271
|
-
:name,
|
1272
|
-
:s3_bucket,
|
1273
|
-
:s3_keys)
|
1274
|
-
include Aws::Structure
|
1275
|
-
end
|
1276
|
-
|
1277
|
-
# @note When making an API call, you may pass DeleteFleetRequest
|
1278
|
-
# data as a hash:
|
1407
|
+
# : The world export job completed.
|
1279
1408
|
#
|
1280
|
-
#
|
1281
|
-
# fleet: "Arn", # required
|
1282
|
-
# }
|
1409
|
+
# Failed
|
1283
1410
|
#
|
1284
|
-
#
|
1285
|
-
#
|
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.
|
1286
1421
|
# @return [String]
|
1287
1422
|
#
|
1288
|
-
#
|
1423
|
+
# @!attribute [rw] created_at
|
1424
|
+
# The time, in milliseconds since the epoch, when the world export job
|
1425
|
+
# was created.
|
1426
|
+
# @return [Time]
|
1289
1427
|
#
|
1290
|
-
|
1291
|
-
|
1292
|
-
include Aws::Structure
|
1293
|
-
end
|
1294
|
-
|
1295
|
-
# @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:
|
1296
1430
|
#
|
1297
|
-
|
1298
|
-
|
1299
|
-
# @note When making an API call, you may pass DeleteRobotApplicationRequest
|
1300
|
-
# data as a hash:
|
1431
|
+
# InternalServiceError
|
1301
1432
|
#
|
1302
|
-
#
|
1303
|
-
# application: "Arn", # required
|
1304
|
-
# application_version: "Version",
|
1305
|
-
# }
|
1433
|
+
# : Internal service error.
|
1306
1434
|
#
|
1307
|
-
#
|
1308
|
-
# The Amazon Resource Name (ARN) of the the robot application.
|
1309
|
-
# @return [String]
|
1435
|
+
# LimitExceeded
|
1310
1436
|
#
|
1311
|
-
#
|
1312
|
-
#
|
1313
|
-
#
|
1437
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
1438
|
+
# number of concurrent stream requests exceeds the maximum number
|
1439
|
+
# allowed.
|
1314
1440
|
#
|
1315
|
-
#
|
1441
|
+
# ResourceNotFound
|
1316
1442
|
#
|
1317
|
-
|
1318
|
-
:application,
|
1319
|
-
:application_version)
|
1320
|
-
include Aws::Structure
|
1321
|
-
end
|
1322
|
-
|
1323
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotApplicationResponse AWS API Documentation
|
1443
|
+
# : The specified resource could not be found.
|
1324
1444
|
#
|
1325
|
-
|
1326
|
-
|
1327
|
-
# @note When making an API call, you may pass DeleteRobotRequest
|
1328
|
-
# data as a hash:
|
1445
|
+
# RequestThrottled
|
1329
1446
|
#
|
1330
|
-
#
|
1331
|
-
# robot: "Arn", # required
|
1332
|
-
# }
|
1447
|
+
# : The request was throttled.
|
1333
1448
|
#
|
1334
|
-
#
|
1335
|
-
#
|
1449
|
+
# InvalidInput
|
1450
|
+
#
|
1451
|
+
# : An input parameter in the request is not valid.
|
1336
1452
|
# @return [String]
|
1337
1453
|
#
|
1338
|
-
#
|
1454
|
+
# @!attribute [rw] client_request_token
|
1455
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1456
|
+
# idempotency of the request.
|
1457
|
+
# @return [String]
|
1339
1458
|
#
|
1340
|
-
|
1341
|
-
|
1459
|
+
# @!attribute [rw] output_location
|
1460
|
+
# The output location.
|
1461
|
+
# @return [Types::OutputLocation]
|
1462
|
+
#
|
1463
|
+
# @!attribute [rw] iam_role
|
1464
|
+
# The IAM role that the world export process uses to access the Amazon
|
1465
|
+
# S3 bucket and put the export.
|
1466
|
+
# @return [String]
|
1467
|
+
#
|
1468
|
+
# @!attribute [rw] tags
|
1469
|
+
# A map that contains tag keys and tag values that are attached to the
|
1470
|
+
# world export job.
|
1471
|
+
# @return [Hash<String,String>]
|
1472
|
+
#
|
1473
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldExportJobResponse AWS API Documentation
|
1474
|
+
#
|
1475
|
+
class CreateWorldExportJobResponse < Struct.new(
|
1476
|
+
:arn,
|
1477
|
+
:status,
|
1478
|
+
:created_at,
|
1479
|
+
:failure_code,
|
1480
|
+
:client_request_token,
|
1481
|
+
:output_location,
|
1482
|
+
:iam_role,
|
1483
|
+
:tags)
|
1484
|
+
SENSITIVE = []
|
1342
1485
|
include Aws::Structure
|
1343
1486
|
end
|
1344
1487
|
|
1345
|
-
# @
|
1346
|
-
#
|
1347
|
-
class DeleteRobotResponse < Aws::EmptyStructure; end
|
1348
|
-
|
1349
|
-
# @note When making an API call, you may pass DeleteSimulationApplicationRequest
|
1488
|
+
# @note When making an API call, you may pass CreateWorldGenerationJobRequest
|
1350
1489
|
# data as a hash:
|
1351
1490
|
#
|
1352
1491
|
# {
|
1353
|
-
#
|
1354
|
-
#
|
1492
|
+
# client_request_token: "ClientRequestToken",
|
1493
|
+
# template: "Arn", # required
|
1494
|
+
# world_count: { # required
|
1495
|
+
# floorplan_count: 1,
|
1496
|
+
# interior_count_per_floorplan: 1,
|
1497
|
+
# },
|
1498
|
+
# tags: {
|
1499
|
+
# "TagKey" => "TagValue",
|
1500
|
+
# },
|
1355
1501
|
# }
|
1356
1502
|
#
|
1357
|
-
# @!attribute [rw]
|
1358
|
-
#
|
1359
|
-
#
|
1503
|
+
# @!attribute [rw] client_request_token
|
1504
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1505
|
+
# idempotency of the request.
|
1506
|
+
#
|
1507
|
+
# **A suitable default value is auto-generated.** You should normally
|
1508
|
+
# not need to pass this option.
|
1360
1509
|
# @return [String]
|
1361
1510
|
#
|
1362
|
-
# @!attribute [rw]
|
1363
|
-
# The
|
1511
|
+
# @!attribute [rw] template
|
1512
|
+
# The Amazon Resource Name (arn) of the world template describing the
|
1513
|
+
# worlds you want to create.
|
1364
1514
|
# @return [String]
|
1365
1515
|
#
|
1366
|
-
#
|
1516
|
+
# @!attribute [rw] world_count
|
1517
|
+
# Information about the world count.
|
1518
|
+
# @return [Types::WorldCount]
|
1367
1519
|
#
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1520
|
+
# @!attribute [rw] tags
|
1521
|
+
# A map that contains tag keys and tag values that are attached to the
|
1522
|
+
# world generator job.
|
1523
|
+
# @return [Hash<String,String>]
|
1524
|
+
#
|
1525
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJobRequest AWS API Documentation
|
1526
|
+
#
|
1527
|
+
class CreateWorldGenerationJobRequest < Struct.new(
|
1528
|
+
:client_request_token,
|
1529
|
+
:template,
|
1530
|
+
:world_count,
|
1531
|
+
:tags)
|
1532
|
+
SENSITIVE = []
|
1371
1533
|
include Aws::Structure
|
1372
1534
|
end
|
1373
1535
|
|
1374
|
-
#
|
1536
|
+
# @!attribute [rw] arn
|
1537
|
+
# The Amazon Resource Name (ARN) of the world generator job.
|
1538
|
+
# @return [String]
|
1375
1539
|
#
|
1376
|
-
|
1377
|
-
|
1378
|
-
# Information about a deployment application configuration.
|
1540
|
+
# @!attribute [rw] status
|
1541
|
+
# The status of the world generator job.
|
1379
1542
|
#
|
1380
|
-
#
|
1381
|
-
# data as a hash:
|
1543
|
+
# Pending
|
1382
1544
|
#
|
1383
|
-
#
|
1384
|
-
# application: "Arn", # required
|
1385
|
-
# application_version: "DeploymentVersion", # required
|
1386
|
-
# launch_config: { # required
|
1387
|
-
# package_name: "Command", # required
|
1388
|
-
# pre_launch_file: "Path",
|
1389
|
-
# launch_file: "Command", # required
|
1390
|
-
# post_launch_file: "Path",
|
1391
|
-
# environment_variables: {
|
1392
|
-
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
1393
|
-
# },
|
1394
|
-
# },
|
1395
|
-
# }
|
1545
|
+
# : The world generator job request is pending.
|
1396
1546
|
#
|
1397
|
-
#
|
1398
|
-
# The Amazon Resource Name (ARN) of the robot application.
|
1399
|
-
# @return [String]
|
1547
|
+
# Running
|
1400
1548
|
#
|
1401
|
-
#
|
1402
|
-
# The version of the application.
|
1403
|
-
# @return [String]
|
1549
|
+
# : The world generator job is running.
|
1404
1550
|
#
|
1405
|
-
#
|
1406
|
-
# The launch configuration.
|
1407
|
-
# @return [Types::DeploymentLaunchConfig]
|
1551
|
+
# Completed
|
1408
1552
|
#
|
1409
|
-
#
|
1553
|
+
# : The world generator job completed.
|
1410
1554
|
#
|
1411
|
-
|
1412
|
-
:application,
|
1413
|
-
:application_version,
|
1414
|
-
:launch_config)
|
1415
|
-
include Aws::Structure
|
1416
|
-
end
|
1417
|
-
|
1418
|
-
# Information about a deployment configuration.
|
1555
|
+
# Failed
|
1419
1556
|
#
|
1420
|
-
#
|
1421
|
-
#
|
1557
|
+
# : The world generator job failed. See `failureCode` for more
|
1558
|
+
# information.
|
1422
1559
|
#
|
1423
|
-
#
|
1424
|
-
# concurrent_deployment_percentage: 1,
|
1425
|
-
# failure_threshold_percentage: 1,
|
1426
|
-
# robot_deployment_timeout_in_seconds: 1,
|
1427
|
-
# download_condition_file: {
|
1428
|
-
# bucket: "S3Bucket", # required
|
1429
|
-
# key: "S3Key", # required
|
1430
|
-
# etag: "S3Etag",
|
1431
|
-
# },
|
1432
|
-
# }
|
1560
|
+
# PartialFailed
|
1433
1561
|
#
|
1434
|
-
#
|
1435
|
-
# The percentage of robots receiving the deployment at the same time.
|
1436
|
-
# @return [Integer]
|
1562
|
+
# : Some worlds did not generate.
|
1437
1563
|
#
|
1438
|
-
#
|
1439
|
-
# The percentage of deployments that need to fail before stopping
|
1440
|
-
# deployment.
|
1441
|
-
# @return [Integer]
|
1564
|
+
# Canceled
|
1442
1565
|
#
|
1443
|
-
#
|
1444
|
-
# The amount of time, in seconds, to wait for deployment to a single
|
1445
|
-
# robot to complete. Choose a time between 1 minute and 7 days. The
|
1446
|
-
# default is 5 hours.
|
1447
|
-
# @return [Integer]
|
1566
|
+
# : The world generator job was cancelled.
|
1448
1567
|
#
|
1449
|
-
#
|
1450
|
-
# The download condition file.
|
1451
|
-
# @return [Types::S3Object]
|
1568
|
+
# Canceling
|
1452
1569
|
#
|
1453
|
-
#
|
1570
|
+
# : The world generator job is being cancelled.
|
1571
|
+
# @return [String]
|
1454
1572
|
#
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
:download_condition_file)
|
1460
|
-
include Aws::Structure
|
1461
|
-
end
|
1462
|
-
|
1463
|
-
# Information about a deployment job.
|
1573
|
+
# @!attribute [rw] created_at
|
1574
|
+
# The time, in milliseconds since the epoch, when the world generator
|
1575
|
+
# job was created.
|
1576
|
+
# @return [Time]
|
1464
1577
|
#
|
1465
|
-
# @!attribute [rw]
|
1466
|
-
# The
|
1467
|
-
# @return [String]
|
1578
|
+
# @!attribute [rw] failure_code
|
1579
|
+
# The failure code of the world generator job if it failed:
|
1468
1580
|
#
|
1469
|
-
#
|
1470
|
-
# The Amazon Resource Name (ARN) of the fleet.
|
1471
|
-
# @return [String]
|
1581
|
+
# InternalServiceError
|
1472
1582
|
#
|
1473
|
-
#
|
1474
|
-
# The status of the deployment job.
|
1475
|
-
# @return [String]
|
1583
|
+
# : Internal service error.
|
1476
1584
|
#
|
1477
|
-
#
|
1478
|
-
# The deployment application configuration.
|
1479
|
-
# @return [Array<Types::DeploymentApplicationConfig>]
|
1585
|
+
# LimitExceeded
|
1480
1586
|
#
|
1481
|
-
#
|
1482
|
-
#
|
1483
|
-
#
|
1587
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
1588
|
+
# number of concurrent stream requests exceeds the maximum number
|
1589
|
+
# allowed.
|
1484
1590
|
#
|
1485
|
-
#
|
1486
|
-
#
|
1591
|
+
# ResourceNotFound
|
1592
|
+
#
|
1593
|
+
# : The specified resource could not be found.
|
1594
|
+
#
|
1595
|
+
# RequestThrottled
|
1596
|
+
#
|
1597
|
+
# : The request was throttled.
|
1598
|
+
#
|
1599
|
+
# InvalidInput
|
1600
|
+
#
|
1601
|
+
# : An input parameter in the request is not valid.
|
1487
1602
|
# @return [String]
|
1488
1603
|
#
|
1489
|
-
# @!attribute [rw]
|
1490
|
-
#
|
1604
|
+
# @!attribute [rw] client_request_token
|
1605
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1606
|
+
# idempotency of the request.
|
1491
1607
|
# @return [String]
|
1492
1608
|
#
|
1493
|
-
# @!attribute [rw]
|
1494
|
-
# The
|
1495
|
-
#
|
1496
|
-
# @return [Time]
|
1609
|
+
# @!attribute [rw] template
|
1610
|
+
# The Amazon Resource Name (arn) of the world template.
|
1611
|
+
# @return [String]
|
1497
1612
|
#
|
1498
|
-
#
|
1613
|
+
# @!attribute [rw] world_count
|
1614
|
+
# Information about the world count.
|
1615
|
+
# @return [Types::WorldCount]
|
1499
1616
|
#
|
1500
|
-
|
1617
|
+
# @!attribute [rw] tags
|
1618
|
+
# A map that contains tag keys and tag values that are attached to the
|
1619
|
+
# world generator job.
|
1620
|
+
# @return [Hash<String,String>]
|
1621
|
+
#
|
1622
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJobResponse AWS API Documentation
|
1623
|
+
#
|
1624
|
+
class CreateWorldGenerationJobResponse < Struct.new(
|
1501
1625
|
:arn,
|
1502
|
-
:fleet,
|
1503
1626
|
:status,
|
1504
|
-
:
|
1505
|
-
:deployment_config,
|
1506
|
-
:failure_reason,
|
1627
|
+
:created_at,
|
1507
1628
|
:failure_code,
|
1508
|
-
:
|
1629
|
+
:client_request_token,
|
1630
|
+
:template,
|
1631
|
+
:world_count,
|
1632
|
+
:tags)
|
1633
|
+
SENSITIVE = []
|
1509
1634
|
include Aws::Structure
|
1510
1635
|
end
|
1511
1636
|
|
1512
|
-
#
|
1513
|
-
#
|
1514
|
-
# @note When making an API call, you may pass DeploymentLaunchConfig
|
1637
|
+
# @note When making an API call, you may pass CreateWorldTemplateRequest
|
1515
1638
|
# data as a hash:
|
1516
1639
|
#
|
1517
1640
|
# {
|
1518
|
-
#
|
1519
|
-
#
|
1520
|
-
#
|
1521
|
-
#
|
1522
|
-
#
|
1523
|
-
# "
|
1641
|
+
# client_request_token: "ClientRequestToken",
|
1642
|
+
# name: "TemplateName",
|
1643
|
+
# template_body: "Json",
|
1644
|
+
# template_location: {
|
1645
|
+
# s3_bucket: "S3Bucket", # required
|
1646
|
+
# s3_key: "S3Key", # required
|
1647
|
+
# },
|
1648
|
+
# tags: {
|
1649
|
+
# "TagKey" => "TagValue",
|
1524
1650
|
# },
|
1525
1651
|
# }
|
1526
1652
|
#
|
1527
|
-
# @!attribute [rw]
|
1528
|
-
#
|
1653
|
+
# @!attribute [rw] client_request_token
|
1654
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1655
|
+
# idempotency of the request.
|
1529
1656
|
# @return [String]
|
1530
1657
|
#
|
1531
|
-
# @!attribute [rw]
|
1532
|
-
# The
|
1533
|
-
# the launch file.
|
1658
|
+
# @!attribute [rw] name
|
1659
|
+
# The name of the world template.
|
1534
1660
|
# @return [String]
|
1535
1661
|
#
|
1536
|
-
# @!attribute [rw]
|
1537
|
-
# The
|
1662
|
+
# @!attribute [rw] template_body
|
1663
|
+
# The world template body.
|
1538
1664
|
# @return [String]
|
1539
1665
|
#
|
1540
|
-
# @!attribute [rw]
|
1541
|
-
# The
|
1542
|
-
#
|
1543
|
-
# @return [String]
|
1666
|
+
# @!attribute [rw] template_location
|
1667
|
+
# The location of the world template.
|
1668
|
+
# @return [Types::TemplateLocation]
|
1544
1669
|
#
|
1545
|
-
# @!attribute [rw]
|
1546
|
-
#
|
1547
|
-
#
|
1670
|
+
# @!attribute [rw] tags
|
1671
|
+
# A map that contains tag keys and tag values that are attached to the
|
1672
|
+
# world template.
|
1548
1673
|
# @return [Hash<String,String>]
|
1549
1674
|
#
|
1550
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplateRequest AWS API Documentation
|
1551
1676
|
#
|
1552
|
-
class
|
1553
|
-
:
|
1554
|
-
:
|
1555
|
-
:
|
1556
|
-
:
|
1557
|
-
:
|
1677
|
+
class CreateWorldTemplateRequest < Struct.new(
|
1678
|
+
:client_request_token,
|
1679
|
+
:name,
|
1680
|
+
:template_body,
|
1681
|
+
:template_location,
|
1682
|
+
:tags)
|
1683
|
+
SENSITIVE = []
|
1558
1684
|
include Aws::Structure
|
1559
1685
|
end
|
1560
1686
|
|
1561
|
-
#
|
1562
|
-
#
|
1563
|
-
#
|
1564
|
-
# {
|
1565
|
-
# fleet: "Arn", # required
|
1566
|
-
# robot: "Arn", # required
|
1567
|
-
# }
|
1687
|
+
# @!attribute [rw] arn
|
1688
|
+
# The Amazon Resource Name (ARN) of the world template.
|
1689
|
+
# @return [String]
|
1568
1690
|
#
|
1569
|
-
# @!attribute [rw]
|
1570
|
-
#
|
1691
|
+
# @!attribute [rw] client_request_token
|
1692
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
1693
|
+
# idempotency of the request.
|
1571
1694
|
# @return [String]
|
1572
1695
|
#
|
1573
|
-
# @!attribute [rw]
|
1574
|
-
# The
|
1696
|
+
# @!attribute [rw] created_at
|
1697
|
+
# The time, in milliseconds since the epoch, when the world template
|
1698
|
+
# was created.
|
1699
|
+
# @return [Time]
|
1700
|
+
#
|
1701
|
+
# @!attribute [rw] name
|
1702
|
+
# The name of the world template.
|
1575
1703
|
# @return [String]
|
1576
1704
|
#
|
1577
|
-
#
|
1705
|
+
# @!attribute [rw] tags
|
1706
|
+
# A map that contains tag keys and tag values that are attached to the
|
1707
|
+
# world template.
|
1708
|
+
# @return [Hash<String,String>]
|
1578
1709
|
#
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldTemplateResponse AWS API Documentation
|
1711
|
+
#
|
1712
|
+
class CreateWorldTemplateResponse < Struct.new(
|
1713
|
+
:arn,
|
1714
|
+
:client_request_token,
|
1715
|
+
:created_at,
|
1716
|
+
:name,
|
1717
|
+
:tags)
|
1718
|
+
SENSITIVE = []
|
1582
1719
|
include Aws::Structure
|
1583
1720
|
end
|
1584
1721
|
|
1585
|
-
#
|
1586
|
-
#
|
1722
|
+
# Information about a data source.
|
1723
|
+
#
|
1724
|
+
# @!attribute [rw] name
|
1725
|
+
# The name of the data source.
|
1587
1726
|
# @return [String]
|
1588
1727
|
#
|
1589
|
-
# @!attribute [rw]
|
1590
|
-
# The
|
1728
|
+
# @!attribute [rw] s3_bucket
|
1729
|
+
# The S3 bucket where the data files are located.
|
1591
1730
|
# @return [String]
|
1592
1731
|
#
|
1593
|
-
#
|
1732
|
+
# @!attribute [rw] s3_keys
|
1733
|
+
# The list of S3 keys identifying the data source files.
|
1734
|
+
# @return [Array<Types::S3KeyOutput>]
|
1594
1735
|
#
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1736
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSource AWS API Documentation
|
1737
|
+
#
|
1738
|
+
class DataSource < Struct.new(
|
1739
|
+
:name,
|
1740
|
+
:s3_bucket,
|
1741
|
+
:s3_keys)
|
1742
|
+
SENSITIVE = []
|
1598
1743
|
include Aws::Structure
|
1599
1744
|
end
|
1600
1745
|
|
1601
|
-
#
|
1746
|
+
# Information about a data source.
|
1747
|
+
#
|
1748
|
+
# @note When making an API call, you may pass DataSourceConfig
|
1602
1749
|
# data as a hash:
|
1603
1750
|
#
|
1604
1751
|
# {
|
1605
|
-
#
|
1752
|
+
# name: "Name", # required
|
1753
|
+
# s3_bucket: "S3Bucket", # required
|
1754
|
+
# s3_keys: ["S3Key"], # required
|
1606
1755
|
# }
|
1607
1756
|
#
|
1608
|
-
# @!attribute [rw]
|
1609
|
-
# The
|
1757
|
+
# @!attribute [rw] name
|
1758
|
+
# The name of the data source.
|
1610
1759
|
# @return [String]
|
1611
1760
|
#
|
1612
|
-
#
|
1613
|
-
#
|
1614
|
-
class DescribeDeploymentJobRequest < Struct.new(
|
1615
|
-
:job)
|
1616
|
-
include Aws::Structure
|
1617
|
-
end
|
1618
|
-
|
1619
|
-
# @!attribute [rw] arn
|
1620
|
-
# The Amazon Resource Name (ARN) of the deployment job.
|
1761
|
+
# @!attribute [rw] s3_bucket
|
1762
|
+
# The S3 bucket where the data files are located.
|
1621
1763
|
# @return [String]
|
1622
1764
|
#
|
1623
|
-
# @!attribute [rw]
|
1624
|
-
# The
|
1625
|
-
# @return [String]
|
1626
|
-
#
|
1627
|
-
# @!attribute [rw] status
|
1628
|
-
# The status of the deployment job.
|
1629
|
-
# @return [String]
|
1630
|
-
#
|
1631
|
-
# @!attribute [rw] deployment_config
|
1632
|
-
# The deployment configuration.
|
1633
|
-
# @return [Types::DeploymentConfig]
|
1634
|
-
#
|
1635
|
-
# @!attribute [rw] deployment_application_configs
|
1636
|
-
# The deployment application configuration.
|
1637
|
-
# @return [Array<Types::DeploymentApplicationConfig>]
|
1638
|
-
#
|
1639
|
-
# @!attribute [rw] failure_reason
|
1640
|
-
# A short description of the reason why the deployment job failed.
|
1641
|
-
# @return [String]
|
1642
|
-
#
|
1643
|
-
# @!attribute [rw] failure_code
|
1644
|
-
# The deployment job failure code.
|
1645
|
-
# @return [String]
|
1646
|
-
#
|
1647
|
-
# @!attribute [rw] created_at
|
1648
|
-
# The time, in milliseconds since the epoch, when the deployment job
|
1649
|
-
# was created.
|
1650
|
-
# @return [Time]
|
1651
|
-
#
|
1652
|
-
# @!attribute [rw] robot_deployment_summary
|
1653
|
-
# A list of robot deployment summaries.
|
1654
|
-
# @return [Array<Types::RobotDeployment>]
|
1655
|
-
#
|
1656
|
-
# @!attribute [rw] tags
|
1657
|
-
# The list of all tags added to the specified deployment job.
|
1658
|
-
# @return [Hash<String,String>]
|
1765
|
+
# @!attribute [rw] s3_keys
|
1766
|
+
# The list of S3 keys identifying the data source files.
|
1767
|
+
# @return [Array<String>]
|
1659
1768
|
#
|
1660
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSourceConfig AWS API Documentation
|
1661
1770
|
#
|
1662
|
-
class
|
1663
|
-
:
|
1664
|
-
:
|
1665
|
-
:
|
1666
|
-
|
1667
|
-
:deployment_application_configs,
|
1668
|
-
:failure_reason,
|
1669
|
-
:failure_code,
|
1670
|
-
:created_at,
|
1671
|
-
:robot_deployment_summary,
|
1672
|
-
:tags)
|
1771
|
+
class DataSourceConfig < Struct.new(
|
1772
|
+
:name,
|
1773
|
+
:s3_bucket,
|
1774
|
+
:s3_keys)
|
1775
|
+
SENSITIVE = []
|
1673
1776
|
include Aws::Structure
|
1674
1777
|
end
|
1675
1778
|
|
1676
|
-
# @note When making an API call, you may pass
|
1779
|
+
# @note When making an API call, you may pass DeleteFleetRequest
|
1677
1780
|
# data as a hash:
|
1678
1781
|
#
|
1679
1782
|
# {
|
@@ -1684,61 +1787,19 @@ module Aws::RoboMaker
|
|
1684
1787
|
# The Amazon Resource Name (ARN) of the fleet.
|
1685
1788
|
# @return [String]
|
1686
1789
|
#
|
1687
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1790
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteFleetRequest AWS API Documentation
|
1688
1791
|
#
|
1689
|
-
class
|
1792
|
+
class DeleteFleetRequest < Struct.new(
|
1690
1793
|
:fleet)
|
1794
|
+
SENSITIVE = []
|
1691
1795
|
include Aws::Structure
|
1692
1796
|
end
|
1693
1797
|
|
1694
|
-
#
|
1695
|
-
# The name of the fleet.
|
1696
|
-
# @return [String]
|
1697
|
-
#
|
1698
|
-
# @!attribute [rw] arn
|
1699
|
-
# The Amazon Resource Name (ARN) of the fleet.
|
1700
|
-
# @return [String]
|
1701
|
-
#
|
1702
|
-
# @!attribute [rw] robots
|
1703
|
-
# A list of robots.
|
1704
|
-
# @return [Array<Types::Robot>]
|
1705
|
-
#
|
1706
|
-
# @!attribute [rw] created_at
|
1707
|
-
# The time, in milliseconds since the epoch, when the fleet was
|
1708
|
-
# created.
|
1709
|
-
# @return [Time]
|
1710
|
-
#
|
1711
|
-
# @!attribute [rw] last_deployment_status
|
1712
|
-
# The status of the last deployment.
|
1713
|
-
# @return [String]
|
1714
|
-
#
|
1715
|
-
# @!attribute [rw] last_deployment_job
|
1716
|
-
# The Amazon Resource Name (ARN) of the last deployment job.
|
1717
|
-
# @return [String]
|
1718
|
-
#
|
1719
|
-
# @!attribute [rw] last_deployment_time
|
1720
|
-
# The time of the last deployment.
|
1721
|
-
# @return [Time]
|
1722
|
-
#
|
1723
|
-
# @!attribute [rw] tags
|
1724
|
-
# The list of all tags added to the specified fleet.
|
1725
|
-
# @return [Hash<String,String>]
|
1726
|
-
#
|
1727
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleetResponse AWS API Documentation
|
1798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteFleetResponse AWS API Documentation
|
1728
1799
|
#
|
1729
|
-
class
|
1730
|
-
:name,
|
1731
|
-
:arn,
|
1732
|
-
:robots,
|
1733
|
-
:created_at,
|
1734
|
-
:last_deployment_status,
|
1735
|
-
:last_deployment_job,
|
1736
|
-
:last_deployment_time,
|
1737
|
-
:tags)
|
1738
|
-
include Aws::Structure
|
1739
|
-
end
|
1800
|
+
class DeleteFleetResponse < Aws::EmptyStructure; end
|
1740
1801
|
|
1741
|
-
# @note When making an API call, you may pass
|
1802
|
+
# @note When making an API call, you may pass DeleteRobotApplicationRequest
|
1742
1803
|
# data as a hash:
|
1743
1804
|
#
|
1744
1805
|
# {
|
@@ -1747,70 +1808,27 @@ module Aws::RoboMaker
|
|
1747
1808
|
# }
|
1748
1809
|
#
|
1749
1810
|
# @!attribute [rw] application
|
1750
|
-
# The Amazon Resource Name (ARN) of the robot application.
|
1811
|
+
# The Amazon Resource Name (ARN) of the the robot application.
|
1751
1812
|
# @return [String]
|
1752
1813
|
#
|
1753
1814
|
# @!attribute [rw] application_version
|
1754
|
-
# The version of the robot application to
|
1815
|
+
# The version of the robot application to delete.
|
1755
1816
|
# @return [String]
|
1756
1817
|
#
|
1757
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotApplicationRequest AWS API Documentation
|
1758
1819
|
#
|
1759
|
-
class
|
1820
|
+
class DeleteRobotApplicationRequest < Struct.new(
|
1760
1821
|
:application,
|
1761
1822
|
:application_version)
|
1823
|
+
SENSITIVE = []
|
1762
1824
|
include Aws::Structure
|
1763
1825
|
end
|
1764
1826
|
|
1765
|
-
#
|
1766
|
-
# The Amazon Resource Name (ARN) of the robot application.
|
1767
|
-
# @return [String]
|
1768
|
-
#
|
1769
|
-
# @!attribute [rw] name
|
1770
|
-
# The name of the robot application.
|
1771
|
-
# @return [String]
|
1772
|
-
#
|
1773
|
-
# @!attribute [rw] version
|
1774
|
-
# The version of the robot application.
|
1775
|
-
# @return [String]
|
1776
|
-
#
|
1777
|
-
# @!attribute [rw] sources
|
1778
|
-
# The sources of the robot application.
|
1779
|
-
# @return [Array<Types::Source>]
|
1780
|
-
#
|
1781
|
-
# @!attribute [rw] robot_software_suite
|
1782
|
-
# The robot software suite (ROS distribution) used by the robot
|
1783
|
-
# application.
|
1784
|
-
# @return [Types::RobotSoftwareSuite]
|
1785
|
-
#
|
1786
|
-
# @!attribute [rw] revision_id
|
1787
|
-
# The revision id of the robot application.
|
1788
|
-
# @return [String]
|
1789
|
-
#
|
1790
|
-
# @!attribute [rw] last_updated_at
|
1791
|
-
# The time, in milliseconds since the epoch, when the robot
|
1792
|
-
# application was last updated.
|
1793
|
-
# @return [Time]
|
1794
|
-
#
|
1795
|
-
# @!attribute [rw] tags
|
1796
|
-
# The list of all tags added to the specified robot application.
|
1797
|
-
# @return [Hash<String,String>]
|
1798
|
-
#
|
1799
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplicationResponse AWS API Documentation
|
1827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotApplicationResponse AWS API Documentation
|
1800
1828
|
#
|
1801
|
-
class
|
1802
|
-
:arn,
|
1803
|
-
:name,
|
1804
|
-
:version,
|
1805
|
-
:sources,
|
1806
|
-
:robot_software_suite,
|
1807
|
-
:revision_id,
|
1808
|
-
:last_updated_at,
|
1809
|
-
:tags)
|
1810
|
-
include Aws::Structure
|
1811
|
-
end
|
1829
|
+
class DeleteRobotApplicationResponse < Aws::EmptyStructure; end
|
1812
1830
|
|
1813
|
-
# @note When making an API call, you may pass
|
1831
|
+
# @note When making an API call, you may pass DeleteRobotRequest
|
1814
1832
|
# data as a hash:
|
1815
1833
|
#
|
1816
1834
|
# {
|
@@ -1818,74 +1836,22 @@ module Aws::RoboMaker
|
|
1818
1836
|
# }
|
1819
1837
|
#
|
1820
1838
|
# @!attribute [rw] robot
|
1821
|
-
# The Amazon Resource Name (ARN) of the robot
|
1839
|
+
# The Amazon Resource Name (ARN) of the robot.
|
1822
1840
|
# @return [String]
|
1823
1841
|
#
|
1824
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotRequest AWS API Documentation
|
1825
1843
|
#
|
1826
|
-
class
|
1844
|
+
class DeleteRobotRequest < Struct.new(
|
1827
1845
|
:robot)
|
1846
|
+
SENSITIVE = []
|
1828
1847
|
include Aws::Structure
|
1829
1848
|
end
|
1830
1849
|
|
1831
|
-
#
|
1832
|
-
# The Amazon Resource Name (ARN) of the robot.
|
1833
|
-
# @return [String]
|
1834
|
-
#
|
1835
|
-
# @!attribute [rw] name
|
1836
|
-
# The name of the robot.
|
1837
|
-
# @return [String]
|
1838
|
-
#
|
1839
|
-
# @!attribute [rw] fleet_arn
|
1840
|
-
# The Amazon Resource Name (ARN) of the fleet.
|
1841
|
-
# @return [String]
|
1842
|
-
#
|
1843
|
-
# @!attribute [rw] status
|
1844
|
-
# The status of the fleet.
|
1845
|
-
# @return [String]
|
1846
|
-
#
|
1847
|
-
# @!attribute [rw] greengrass_group_id
|
1848
|
-
# The Greengrass group id.
|
1849
|
-
# @return [String]
|
1850
|
-
#
|
1851
|
-
# @!attribute [rw] created_at
|
1852
|
-
# The time, in milliseconds since the epoch, when the robot was
|
1853
|
-
# created.
|
1854
|
-
# @return [Time]
|
1855
|
-
#
|
1856
|
-
# @!attribute [rw] architecture
|
1857
|
-
# The target architecture of the robot application.
|
1858
|
-
# @return [String]
|
1859
|
-
#
|
1860
|
-
# @!attribute [rw] last_deployment_job
|
1861
|
-
# The Amazon Resource Name (ARN) of the last deployment job.
|
1862
|
-
# @return [String]
|
1863
|
-
#
|
1864
|
-
# @!attribute [rw] last_deployment_time
|
1865
|
-
# The time of the last deployment job.
|
1866
|
-
# @return [Time]
|
1867
|
-
#
|
1868
|
-
# @!attribute [rw] tags
|
1869
|
-
# The list of all tags added to the specified robot.
|
1870
|
-
# @return [Hash<String,String>]
|
1871
|
-
#
|
1872
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotResponse AWS API Documentation
|
1850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteRobotResponse AWS API Documentation
|
1873
1851
|
#
|
1874
|
-
class
|
1875
|
-
:arn,
|
1876
|
-
:name,
|
1877
|
-
:fleet_arn,
|
1878
|
-
:status,
|
1879
|
-
:greengrass_group_id,
|
1880
|
-
:created_at,
|
1881
|
-
:architecture,
|
1882
|
-
:last_deployment_job,
|
1883
|
-
:last_deployment_time,
|
1884
|
-
:tags)
|
1885
|
-
include Aws::Structure
|
1886
|
-
end
|
1852
|
+
class DeleteRobotResponse < Aws::EmptyStructure; end
|
1887
1853
|
|
1888
|
-
# @note When making an API call, you may pass
|
1854
|
+
# @note When making an API call, you may pass DeleteSimulationApplicationRequest
|
1889
1855
|
# data as a hash:
|
1890
1856
|
#
|
1891
1857
|
# {
|
@@ -1894,219 +1860,1132 @@ module Aws::RoboMaker
|
|
1894
1860
|
# }
|
1895
1861
|
#
|
1896
1862
|
# @!attribute [rw] application
|
1897
|
-
# The application information for the simulation application
|
1863
|
+
# The application information for the simulation application to
|
1864
|
+
# delete.
|
1898
1865
|
# @return [String]
|
1899
1866
|
#
|
1900
1867
|
# @!attribute [rw] application_version
|
1901
|
-
# The version of the simulation application to
|
1868
|
+
# The version of the simulation application to delete.
|
1902
1869
|
# @return [String]
|
1903
1870
|
#
|
1904
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
1871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteSimulationApplicationRequest AWS API Documentation
|
1905
1872
|
#
|
1906
|
-
class
|
1873
|
+
class DeleteSimulationApplicationRequest < Struct.new(
|
1907
1874
|
:application,
|
1908
1875
|
:application_version)
|
1876
|
+
SENSITIVE = []
|
1909
1877
|
include Aws::Structure
|
1910
1878
|
end
|
1911
1879
|
|
1912
|
-
#
|
1913
|
-
# The Amazon Resource Name (ARN) of the robot simulation application.
|
1914
|
-
# @return [String]
|
1880
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteSimulationApplicationResponse AWS API Documentation
|
1915
1881
|
#
|
1916
|
-
|
1917
|
-
|
1918
|
-
#
|
1882
|
+
class DeleteSimulationApplicationResponse < Aws::EmptyStructure; end
|
1883
|
+
|
1884
|
+
# @note When making an API call, you may pass DeleteWorldTemplateRequest
|
1885
|
+
# data as a hash:
|
1919
1886
|
#
|
1920
|
-
#
|
1921
|
-
#
|
1887
|
+
# {
|
1888
|
+
# template: "Arn", # required
|
1889
|
+
# }
|
1890
|
+
#
|
1891
|
+
# @!attribute [rw] template
|
1892
|
+
# The Amazon Resource Name (arn) of the world template you want to
|
1893
|
+
# delete.
|
1894
|
+
# @return [String]
|
1895
|
+
#
|
1896
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplateRequest AWS API Documentation
|
1897
|
+
#
|
1898
|
+
class DeleteWorldTemplateRequest < Struct.new(
|
1899
|
+
:template)
|
1900
|
+
SENSITIVE = []
|
1901
|
+
include Aws::Structure
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeleteWorldTemplateResponse AWS API Documentation
|
1905
|
+
#
|
1906
|
+
class DeleteWorldTemplateResponse < Aws::EmptyStructure; end
|
1907
|
+
|
1908
|
+
# Information about a deployment application configuration.
|
1909
|
+
#
|
1910
|
+
# @note When making an API call, you may pass DeploymentApplicationConfig
|
1911
|
+
# data as a hash:
|
1912
|
+
#
|
1913
|
+
# {
|
1914
|
+
# application: "Arn", # required
|
1915
|
+
# application_version: "DeploymentVersion", # required
|
1916
|
+
# launch_config: { # required
|
1917
|
+
# package_name: "Command", # required
|
1918
|
+
# pre_launch_file: "Path",
|
1919
|
+
# launch_file: "Command", # required
|
1920
|
+
# post_launch_file: "Path",
|
1921
|
+
# environment_variables: {
|
1922
|
+
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
1923
|
+
# },
|
1924
|
+
# },
|
1925
|
+
# }
|
1926
|
+
#
|
1927
|
+
# @!attribute [rw] application
|
1928
|
+
# The Amazon Resource Name (ARN) of the robot application.
|
1929
|
+
# @return [String]
|
1930
|
+
#
|
1931
|
+
# @!attribute [rw] application_version
|
1932
|
+
# The version of the application.
|
1933
|
+
# @return [String]
|
1934
|
+
#
|
1935
|
+
# @!attribute [rw] launch_config
|
1936
|
+
# The launch configuration.
|
1937
|
+
# @return [Types::DeploymentLaunchConfig]
|
1938
|
+
#
|
1939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentApplicationConfig AWS API Documentation
|
1940
|
+
#
|
1941
|
+
class DeploymentApplicationConfig < Struct.new(
|
1942
|
+
:application,
|
1943
|
+
:application_version,
|
1944
|
+
:launch_config)
|
1945
|
+
SENSITIVE = []
|
1946
|
+
include Aws::Structure
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
# Information about a deployment configuration.
|
1950
|
+
#
|
1951
|
+
# @note When making an API call, you may pass DeploymentConfig
|
1952
|
+
# data as a hash:
|
1953
|
+
#
|
1954
|
+
# {
|
1955
|
+
# concurrent_deployment_percentage: 1,
|
1956
|
+
# failure_threshold_percentage: 1,
|
1957
|
+
# robot_deployment_timeout_in_seconds: 1,
|
1958
|
+
# download_condition_file: {
|
1959
|
+
# bucket: "S3Bucket", # required
|
1960
|
+
# key: "S3Key", # required
|
1961
|
+
# etag: "S3Etag",
|
1962
|
+
# },
|
1963
|
+
# }
|
1964
|
+
#
|
1965
|
+
# @!attribute [rw] concurrent_deployment_percentage
|
1966
|
+
# The percentage of robots receiving the deployment at the same time.
|
1967
|
+
# @return [Integer]
|
1968
|
+
#
|
1969
|
+
# @!attribute [rw] failure_threshold_percentage
|
1970
|
+
# The percentage of deployments that need to fail before stopping
|
1971
|
+
# deployment.
|
1972
|
+
# @return [Integer]
|
1973
|
+
#
|
1974
|
+
# @!attribute [rw] robot_deployment_timeout_in_seconds
|
1975
|
+
# The amount of time, in seconds, to wait for deployment to a single
|
1976
|
+
# robot to complete. Choose a time between 1 minute and 7 days. The
|
1977
|
+
# default is 5 hours.
|
1978
|
+
# @return [Integer]
|
1979
|
+
#
|
1980
|
+
# @!attribute [rw] download_condition_file
|
1981
|
+
# The download condition file.
|
1982
|
+
# @return [Types::S3Object]
|
1983
|
+
#
|
1984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentConfig AWS API Documentation
|
1985
|
+
#
|
1986
|
+
class DeploymentConfig < Struct.new(
|
1987
|
+
:concurrent_deployment_percentage,
|
1988
|
+
:failure_threshold_percentage,
|
1989
|
+
:robot_deployment_timeout_in_seconds,
|
1990
|
+
:download_condition_file)
|
1991
|
+
SENSITIVE = []
|
1992
|
+
include Aws::Structure
|
1993
|
+
end
|
1994
|
+
|
1995
|
+
# Information about a deployment job.
|
1996
|
+
#
|
1997
|
+
# @!attribute [rw] arn
|
1998
|
+
# The Amazon Resource Name (ARN) of the deployment job.
|
1999
|
+
# @return [String]
|
2000
|
+
#
|
2001
|
+
# @!attribute [rw] fleet
|
2002
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2003
|
+
# @return [String]
|
2004
|
+
#
|
2005
|
+
# @!attribute [rw] status
|
2006
|
+
# The status of the deployment job.
|
2007
|
+
# @return [String]
|
2008
|
+
#
|
2009
|
+
# @!attribute [rw] deployment_application_configs
|
2010
|
+
# The deployment application configuration.
|
2011
|
+
# @return [Array<Types::DeploymentApplicationConfig>]
|
2012
|
+
#
|
2013
|
+
# @!attribute [rw] deployment_config
|
2014
|
+
# The deployment configuration.
|
2015
|
+
# @return [Types::DeploymentConfig]
|
2016
|
+
#
|
2017
|
+
# @!attribute [rw] failure_reason
|
2018
|
+
# A short description of the reason why the deployment job failed.
|
2019
|
+
# @return [String]
|
2020
|
+
#
|
2021
|
+
# @!attribute [rw] failure_code
|
2022
|
+
# The deployment job failure code.
|
2023
|
+
# @return [String]
|
2024
|
+
#
|
2025
|
+
# @!attribute [rw] created_at
|
2026
|
+
# The time, in milliseconds since the epoch, when the deployment job
|
2027
|
+
# was created.
|
2028
|
+
# @return [Time]
|
2029
|
+
#
|
2030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentJob AWS API Documentation
|
2031
|
+
#
|
2032
|
+
class DeploymentJob < Struct.new(
|
2033
|
+
:arn,
|
2034
|
+
:fleet,
|
2035
|
+
:status,
|
2036
|
+
:deployment_application_configs,
|
2037
|
+
:deployment_config,
|
2038
|
+
:failure_reason,
|
2039
|
+
:failure_code,
|
2040
|
+
:created_at)
|
2041
|
+
SENSITIVE = []
|
2042
|
+
include Aws::Structure
|
2043
|
+
end
|
2044
|
+
|
2045
|
+
# Configuration information for a deployment launch.
|
2046
|
+
#
|
2047
|
+
# @note When making an API call, you may pass DeploymentLaunchConfig
|
2048
|
+
# data as a hash:
|
2049
|
+
#
|
2050
|
+
# {
|
2051
|
+
# package_name: "Command", # required
|
2052
|
+
# pre_launch_file: "Path",
|
2053
|
+
# launch_file: "Command", # required
|
2054
|
+
# post_launch_file: "Path",
|
2055
|
+
# environment_variables: {
|
2056
|
+
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
2057
|
+
# },
|
2058
|
+
# }
|
2059
|
+
#
|
2060
|
+
# @!attribute [rw] package_name
|
2061
|
+
# The package name.
|
2062
|
+
# @return [String]
|
2063
|
+
#
|
2064
|
+
# @!attribute [rw] pre_launch_file
|
2065
|
+
# The deployment pre-launch file. This file will be executed prior to
|
2066
|
+
# the launch file.
|
2067
|
+
# @return [String]
|
2068
|
+
#
|
2069
|
+
# @!attribute [rw] launch_file
|
2070
|
+
# The launch file name.
|
2071
|
+
# @return [String]
|
2072
|
+
#
|
2073
|
+
# @!attribute [rw] post_launch_file
|
2074
|
+
# The deployment post-launch file. This file will be executed after
|
2075
|
+
# the launch file.
|
2076
|
+
# @return [String]
|
2077
|
+
#
|
2078
|
+
# @!attribute [rw] environment_variables
|
2079
|
+
# An array of key/value pairs specifying environment variables for the
|
2080
|
+
# robot application
|
2081
|
+
# @return [Hash<String,String>]
|
2082
|
+
#
|
2083
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeploymentLaunchConfig AWS API Documentation
|
2084
|
+
#
|
2085
|
+
class DeploymentLaunchConfig < Struct.new(
|
2086
|
+
:package_name,
|
2087
|
+
:pre_launch_file,
|
2088
|
+
:launch_file,
|
2089
|
+
:post_launch_file,
|
2090
|
+
:environment_variables)
|
2091
|
+
SENSITIVE = []
|
2092
|
+
include Aws::Structure
|
2093
|
+
end
|
2094
|
+
|
2095
|
+
# @note When making an API call, you may pass DeregisterRobotRequest
|
2096
|
+
# data as a hash:
|
2097
|
+
#
|
2098
|
+
# {
|
2099
|
+
# fleet: "Arn", # required
|
2100
|
+
# robot: "Arn", # required
|
2101
|
+
# }
|
2102
|
+
#
|
2103
|
+
# @!attribute [rw] fleet
|
2104
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2105
|
+
# @return [String]
|
2106
|
+
#
|
2107
|
+
# @!attribute [rw] robot
|
2108
|
+
# The Amazon Resource Name (ARN) of the robot.
|
2109
|
+
# @return [String]
|
2110
|
+
#
|
2111
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeregisterRobotRequest AWS API Documentation
|
2112
|
+
#
|
2113
|
+
class DeregisterRobotRequest < Struct.new(
|
2114
|
+
:fleet,
|
2115
|
+
:robot)
|
2116
|
+
SENSITIVE = []
|
2117
|
+
include Aws::Structure
|
2118
|
+
end
|
2119
|
+
|
2120
|
+
# @!attribute [rw] fleet
|
2121
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2122
|
+
# @return [String]
|
2123
|
+
#
|
2124
|
+
# @!attribute [rw] robot
|
2125
|
+
# The Amazon Resource Name (ARN) of the robot.
|
2126
|
+
# @return [String]
|
2127
|
+
#
|
2128
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DeregisterRobotResponse AWS API Documentation
|
2129
|
+
#
|
2130
|
+
class DeregisterRobotResponse < Struct.new(
|
2131
|
+
:fleet,
|
2132
|
+
:robot)
|
2133
|
+
SENSITIVE = []
|
2134
|
+
include Aws::Structure
|
2135
|
+
end
|
2136
|
+
|
2137
|
+
# @note When making an API call, you may pass DescribeDeploymentJobRequest
|
2138
|
+
# data as a hash:
|
2139
|
+
#
|
2140
|
+
# {
|
2141
|
+
# job: "Arn", # required
|
2142
|
+
# }
|
2143
|
+
#
|
2144
|
+
# @!attribute [rw] job
|
2145
|
+
# The Amazon Resource Name (ARN) of the deployment job.
|
2146
|
+
# @return [String]
|
2147
|
+
#
|
2148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJobRequest AWS API Documentation
|
2149
|
+
#
|
2150
|
+
class DescribeDeploymentJobRequest < Struct.new(
|
2151
|
+
:job)
|
2152
|
+
SENSITIVE = []
|
2153
|
+
include Aws::Structure
|
2154
|
+
end
|
2155
|
+
|
2156
|
+
# @!attribute [rw] arn
|
2157
|
+
# The Amazon Resource Name (ARN) of the deployment job.
|
2158
|
+
# @return [String]
|
2159
|
+
#
|
2160
|
+
# @!attribute [rw] fleet
|
2161
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2162
|
+
# @return [String]
|
2163
|
+
#
|
2164
|
+
# @!attribute [rw] status
|
2165
|
+
# The status of the deployment job.
|
2166
|
+
# @return [String]
|
2167
|
+
#
|
2168
|
+
# @!attribute [rw] deployment_config
|
2169
|
+
# The deployment configuration.
|
2170
|
+
# @return [Types::DeploymentConfig]
|
2171
|
+
#
|
2172
|
+
# @!attribute [rw] deployment_application_configs
|
2173
|
+
# The deployment application configuration.
|
2174
|
+
# @return [Array<Types::DeploymentApplicationConfig>]
|
2175
|
+
#
|
2176
|
+
# @!attribute [rw] failure_reason
|
2177
|
+
# A short description of the reason why the deployment job failed.
|
2178
|
+
# @return [String]
|
2179
|
+
#
|
2180
|
+
# @!attribute [rw] failure_code
|
2181
|
+
# The deployment job failure code.
|
2182
|
+
# @return [String]
|
2183
|
+
#
|
2184
|
+
# @!attribute [rw] created_at
|
2185
|
+
# The time, in milliseconds since the epoch, when the deployment job
|
2186
|
+
# was created.
|
2187
|
+
# @return [Time]
|
2188
|
+
#
|
2189
|
+
# @!attribute [rw] robot_deployment_summary
|
2190
|
+
# A list of robot deployment summaries.
|
2191
|
+
# @return [Array<Types::RobotDeployment>]
|
2192
|
+
#
|
2193
|
+
# @!attribute [rw] tags
|
2194
|
+
# The list of all tags added to the specified deployment job.
|
2195
|
+
# @return [Hash<String,String>]
|
2196
|
+
#
|
2197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeDeploymentJobResponse AWS API Documentation
|
2198
|
+
#
|
2199
|
+
class DescribeDeploymentJobResponse < Struct.new(
|
2200
|
+
:arn,
|
2201
|
+
:fleet,
|
2202
|
+
:status,
|
2203
|
+
:deployment_config,
|
2204
|
+
:deployment_application_configs,
|
2205
|
+
:failure_reason,
|
2206
|
+
:failure_code,
|
2207
|
+
:created_at,
|
2208
|
+
:robot_deployment_summary,
|
2209
|
+
:tags)
|
2210
|
+
SENSITIVE = []
|
2211
|
+
include Aws::Structure
|
2212
|
+
end
|
2213
|
+
|
2214
|
+
# @note When making an API call, you may pass DescribeFleetRequest
|
2215
|
+
# data as a hash:
|
2216
|
+
#
|
2217
|
+
# {
|
2218
|
+
# fleet: "Arn", # required
|
2219
|
+
# }
|
2220
|
+
#
|
2221
|
+
# @!attribute [rw] fleet
|
2222
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2223
|
+
# @return [String]
|
2224
|
+
#
|
2225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleetRequest AWS API Documentation
|
2226
|
+
#
|
2227
|
+
class DescribeFleetRequest < Struct.new(
|
2228
|
+
:fleet)
|
2229
|
+
SENSITIVE = []
|
2230
|
+
include Aws::Structure
|
2231
|
+
end
|
2232
|
+
|
2233
|
+
# @!attribute [rw] name
|
2234
|
+
# The name of the fleet.
|
2235
|
+
# @return [String]
|
2236
|
+
#
|
2237
|
+
# @!attribute [rw] arn
|
2238
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2239
|
+
# @return [String]
|
2240
|
+
#
|
2241
|
+
# @!attribute [rw] robots
|
2242
|
+
# A list of robots.
|
2243
|
+
# @return [Array<Types::Robot>]
|
2244
|
+
#
|
2245
|
+
# @!attribute [rw] created_at
|
2246
|
+
# The time, in milliseconds since the epoch, when the fleet was
|
2247
|
+
# created.
|
2248
|
+
# @return [Time]
|
2249
|
+
#
|
2250
|
+
# @!attribute [rw] last_deployment_status
|
2251
|
+
# The status of the last deployment.
|
2252
|
+
# @return [String]
|
2253
|
+
#
|
2254
|
+
# @!attribute [rw] last_deployment_job
|
2255
|
+
# The Amazon Resource Name (ARN) of the last deployment job.
|
2256
|
+
# @return [String]
|
2257
|
+
#
|
2258
|
+
# @!attribute [rw] last_deployment_time
|
2259
|
+
# The time of the last deployment.
|
2260
|
+
# @return [Time]
|
2261
|
+
#
|
2262
|
+
# @!attribute [rw] tags
|
2263
|
+
# The list of all tags added to the specified fleet.
|
2264
|
+
# @return [Hash<String,String>]
|
2265
|
+
#
|
2266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeFleetResponse AWS API Documentation
|
2267
|
+
#
|
2268
|
+
class DescribeFleetResponse < Struct.new(
|
2269
|
+
:name,
|
2270
|
+
:arn,
|
2271
|
+
:robots,
|
2272
|
+
:created_at,
|
2273
|
+
:last_deployment_status,
|
2274
|
+
:last_deployment_job,
|
2275
|
+
:last_deployment_time,
|
2276
|
+
:tags)
|
2277
|
+
SENSITIVE = []
|
2278
|
+
include Aws::Structure
|
2279
|
+
end
|
2280
|
+
|
2281
|
+
# @note When making an API call, you may pass DescribeRobotApplicationRequest
|
2282
|
+
# data as a hash:
|
2283
|
+
#
|
2284
|
+
# {
|
2285
|
+
# application: "Arn", # required
|
2286
|
+
# application_version: "Version",
|
2287
|
+
# }
|
2288
|
+
#
|
2289
|
+
# @!attribute [rw] application
|
2290
|
+
# The Amazon Resource Name (ARN) of the robot application.
|
2291
|
+
# @return [String]
|
2292
|
+
#
|
2293
|
+
# @!attribute [rw] application_version
|
2294
|
+
# The version of the robot application to describe.
|
2295
|
+
# @return [String]
|
2296
|
+
#
|
2297
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplicationRequest AWS API Documentation
|
2298
|
+
#
|
2299
|
+
class DescribeRobotApplicationRequest < Struct.new(
|
2300
|
+
:application,
|
2301
|
+
:application_version)
|
2302
|
+
SENSITIVE = []
|
2303
|
+
include Aws::Structure
|
2304
|
+
end
|
2305
|
+
|
2306
|
+
# @!attribute [rw] arn
|
2307
|
+
# The Amazon Resource Name (ARN) of the robot application.
|
2308
|
+
# @return [String]
|
2309
|
+
#
|
2310
|
+
# @!attribute [rw] name
|
2311
|
+
# The name of the robot application.
|
2312
|
+
# @return [String]
|
2313
|
+
#
|
2314
|
+
# @!attribute [rw] version
|
2315
|
+
# The version of the robot application.
|
2316
|
+
# @return [String]
|
2317
|
+
#
|
2318
|
+
# @!attribute [rw] sources
|
2319
|
+
# The sources of the robot application.
|
2320
|
+
# @return [Array<Types::Source>]
|
2321
|
+
#
|
2322
|
+
# @!attribute [rw] robot_software_suite
|
2323
|
+
# The robot software suite (ROS distribution) used by the robot
|
2324
|
+
# application.
|
2325
|
+
# @return [Types::RobotSoftwareSuite]
|
2326
|
+
#
|
2327
|
+
# @!attribute [rw] revision_id
|
2328
|
+
# The revision id of the robot application.
|
2329
|
+
# @return [String]
|
2330
|
+
#
|
2331
|
+
# @!attribute [rw] last_updated_at
|
2332
|
+
# The time, in milliseconds since the epoch, when the robot
|
2333
|
+
# application was last updated.
|
2334
|
+
# @return [Time]
|
2335
|
+
#
|
2336
|
+
# @!attribute [rw] tags
|
2337
|
+
# The list of all tags added to the specified robot application.
|
2338
|
+
# @return [Hash<String,String>]
|
2339
|
+
#
|
2340
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplicationResponse AWS API Documentation
|
2341
|
+
#
|
2342
|
+
class DescribeRobotApplicationResponse < Struct.new(
|
2343
|
+
:arn,
|
2344
|
+
:name,
|
2345
|
+
:version,
|
2346
|
+
:sources,
|
2347
|
+
:robot_software_suite,
|
2348
|
+
:revision_id,
|
2349
|
+
:last_updated_at,
|
2350
|
+
:tags)
|
2351
|
+
SENSITIVE = []
|
2352
|
+
include Aws::Structure
|
2353
|
+
end
|
2354
|
+
|
2355
|
+
# @note When making an API call, you may pass DescribeRobotRequest
|
2356
|
+
# data as a hash:
|
2357
|
+
#
|
2358
|
+
# {
|
2359
|
+
# robot: "Arn", # required
|
2360
|
+
# }
|
2361
|
+
#
|
2362
|
+
# @!attribute [rw] robot
|
2363
|
+
# The Amazon Resource Name (ARN) of the robot to be described.
|
2364
|
+
# @return [String]
|
2365
|
+
#
|
2366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotRequest AWS API Documentation
|
2367
|
+
#
|
2368
|
+
class DescribeRobotRequest < Struct.new(
|
2369
|
+
:robot)
|
2370
|
+
SENSITIVE = []
|
2371
|
+
include Aws::Structure
|
2372
|
+
end
|
2373
|
+
|
2374
|
+
# @!attribute [rw] arn
|
2375
|
+
# The Amazon Resource Name (ARN) of the robot.
|
2376
|
+
# @return [String]
|
2377
|
+
#
|
2378
|
+
# @!attribute [rw] name
|
2379
|
+
# The name of the robot.
|
2380
|
+
# @return [String]
|
2381
|
+
#
|
2382
|
+
# @!attribute [rw] fleet_arn
|
2383
|
+
# The Amazon Resource Name (ARN) of the fleet.
|
2384
|
+
# @return [String]
|
2385
|
+
#
|
2386
|
+
# @!attribute [rw] status
|
2387
|
+
# The status of the fleet.
|
2388
|
+
# @return [String]
|
2389
|
+
#
|
2390
|
+
# @!attribute [rw] greengrass_group_id
|
2391
|
+
# The Greengrass group id.
|
2392
|
+
# @return [String]
|
2393
|
+
#
|
2394
|
+
# @!attribute [rw] created_at
|
2395
|
+
# The time, in milliseconds since the epoch, when the robot was
|
2396
|
+
# created.
|
2397
|
+
# @return [Time]
|
2398
|
+
#
|
2399
|
+
# @!attribute [rw] architecture
|
2400
|
+
# The target architecture of the robot application.
|
2401
|
+
# @return [String]
|
2402
|
+
#
|
2403
|
+
# @!attribute [rw] last_deployment_job
|
2404
|
+
# The Amazon Resource Name (ARN) of the last deployment job.
|
2405
|
+
# @return [String]
|
2406
|
+
#
|
2407
|
+
# @!attribute [rw] last_deployment_time
|
2408
|
+
# The time of the last deployment job.
|
2409
|
+
# @return [Time]
|
2410
|
+
#
|
2411
|
+
# @!attribute [rw] tags
|
2412
|
+
# The list of all tags added to the specified robot.
|
2413
|
+
# @return [Hash<String,String>]
|
2414
|
+
#
|
2415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotResponse AWS API Documentation
|
2416
|
+
#
|
2417
|
+
class DescribeRobotResponse < Struct.new(
|
2418
|
+
:arn,
|
2419
|
+
:name,
|
2420
|
+
:fleet_arn,
|
2421
|
+
:status,
|
2422
|
+
:greengrass_group_id,
|
2423
|
+
:created_at,
|
2424
|
+
:architecture,
|
2425
|
+
:last_deployment_job,
|
2426
|
+
:last_deployment_time,
|
2427
|
+
:tags)
|
2428
|
+
SENSITIVE = []
|
2429
|
+
include Aws::Structure
|
2430
|
+
end
|
2431
|
+
|
2432
|
+
# @note When making an API call, you may pass DescribeSimulationApplicationRequest
|
2433
|
+
# data as a hash:
|
2434
|
+
#
|
2435
|
+
# {
|
2436
|
+
# application: "Arn", # required
|
2437
|
+
# application_version: "Version",
|
2438
|
+
# }
|
2439
|
+
#
|
2440
|
+
# @!attribute [rw] application
|
2441
|
+
# The application information for the simulation application.
|
2442
|
+
# @return [String]
|
2443
|
+
#
|
2444
|
+
# @!attribute [rw] application_version
|
2445
|
+
# The version of the simulation application to describe.
|
2446
|
+
# @return [String]
|
2447
|
+
#
|
2448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplicationRequest AWS API Documentation
|
2449
|
+
#
|
2450
|
+
class DescribeSimulationApplicationRequest < Struct.new(
|
2451
|
+
:application,
|
2452
|
+
:application_version)
|
2453
|
+
SENSITIVE = []
|
2454
|
+
include Aws::Structure
|
2455
|
+
end
|
2456
|
+
|
2457
|
+
# @!attribute [rw] arn
|
2458
|
+
# The Amazon Resource Name (ARN) of the robot simulation application.
|
2459
|
+
# @return [String]
|
2460
|
+
#
|
2461
|
+
# @!attribute [rw] name
|
2462
|
+
# The name of the simulation application.
|
2463
|
+
# @return [String]
|
2464
|
+
#
|
2465
|
+
# @!attribute [rw] version
|
2466
|
+
# The version of the simulation application.
|
1922
2467
|
# @return [String]
|
1923
2468
|
#
|
1924
2469
|
# @!attribute [rw] sources
|
1925
2470
|
# The sources of the simulation application.
|
1926
2471
|
# @return [Array<Types::Source>]
|
1927
2472
|
#
|
1928
|
-
# @!attribute [rw] simulation_software_suite
|
1929
|
-
# The simulation software suite used by the simulation application.
|
1930
|
-
# @return [Types::SimulationSoftwareSuite]
|
2473
|
+
# @!attribute [rw] simulation_software_suite
|
2474
|
+
# The simulation software suite used by the simulation application.
|
2475
|
+
# @return [Types::SimulationSoftwareSuite]
|
2476
|
+
#
|
2477
|
+
# @!attribute [rw] robot_software_suite
|
2478
|
+
# Information about the robot software suite (ROS distribution).
|
2479
|
+
# @return [Types::RobotSoftwareSuite]
|
2480
|
+
#
|
2481
|
+
# @!attribute [rw] rendering_engine
|
2482
|
+
# The rendering engine for the simulation application.
|
2483
|
+
# @return [Types::RenderingEngine]
|
2484
|
+
#
|
2485
|
+
# @!attribute [rw] revision_id
|
2486
|
+
# The revision id of the simulation application.
|
2487
|
+
# @return [String]
|
2488
|
+
#
|
2489
|
+
# @!attribute [rw] last_updated_at
|
2490
|
+
# The time, in milliseconds since the epoch, when the simulation
|
2491
|
+
# application was last updated.
|
2492
|
+
# @return [Time]
|
2493
|
+
#
|
2494
|
+
# @!attribute [rw] tags
|
2495
|
+
# The list of all tags added to the specified simulation application.
|
2496
|
+
# @return [Hash<String,String>]
|
2497
|
+
#
|
2498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplicationResponse AWS API Documentation
|
2499
|
+
#
|
2500
|
+
class DescribeSimulationApplicationResponse < Struct.new(
|
2501
|
+
:arn,
|
2502
|
+
:name,
|
2503
|
+
:version,
|
2504
|
+
:sources,
|
2505
|
+
:simulation_software_suite,
|
2506
|
+
:robot_software_suite,
|
2507
|
+
:rendering_engine,
|
2508
|
+
:revision_id,
|
2509
|
+
:last_updated_at,
|
2510
|
+
:tags)
|
2511
|
+
SENSITIVE = []
|
2512
|
+
include Aws::Structure
|
2513
|
+
end
|
2514
|
+
|
2515
|
+
# @note When making an API call, you may pass DescribeSimulationJobBatchRequest
|
2516
|
+
# data as a hash:
|
2517
|
+
#
|
2518
|
+
# {
|
2519
|
+
# batch: "Arn", # required
|
2520
|
+
# }
|
2521
|
+
#
|
2522
|
+
# @!attribute [rw] batch
|
2523
|
+
# The id of the batch to describe.
|
2524
|
+
# @return [String]
|
2525
|
+
#
|
2526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobBatchRequest AWS API Documentation
|
2527
|
+
#
|
2528
|
+
class DescribeSimulationJobBatchRequest < Struct.new(
|
2529
|
+
:batch)
|
2530
|
+
SENSITIVE = []
|
2531
|
+
include Aws::Structure
|
2532
|
+
end
|
2533
|
+
|
2534
|
+
# @!attribute [rw] arn
|
2535
|
+
# The Amazon Resource Name (ARN) of the batch.
|
2536
|
+
# @return [String]
|
2537
|
+
#
|
2538
|
+
# @!attribute [rw] status
|
2539
|
+
# The status of the batch.
|
2540
|
+
#
|
2541
|
+
# Pending
|
2542
|
+
#
|
2543
|
+
# : The simulation job batch request is pending.
|
2544
|
+
#
|
2545
|
+
# InProgress
|
2546
|
+
#
|
2547
|
+
# : The simulation job batch is in progress.
|
2548
|
+
#
|
2549
|
+
# Failed
|
2550
|
+
#
|
2551
|
+
# : The simulation job batch failed. One or more simulation job
|
2552
|
+
# requests could not be completed due to an internal failure (like
|
2553
|
+
# `InternalServiceError`). See `failureCode` and `failureReason` for
|
2554
|
+
# more information.
|
2555
|
+
#
|
2556
|
+
# Completed
|
2557
|
+
#
|
2558
|
+
# : The simulation batch job completed. A batch is complete when (1)
|
2559
|
+
# there are no pending simulation job requests in the batch and none
|
2560
|
+
# of the failed simulation job requests are due to
|
2561
|
+
# `InternalServiceError` and (2) when all created simulation jobs
|
2562
|
+
# have reached a terminal state (for example, `Completed` or
|
2563
|
+
# `Failed`).
|
2564
|
+
#
|
2565
|
+
# Canceled
|
2566
|
+
#
|
2567
|
+
# : The simulation batch job was cancelled.
|
2568
|
+
#
|
2569
|
+
# Canceling
|
2570
|
+
#
|
2571
|
+
# : The simulation batch job is being cancelled.
|
2572
|
+
#
|
2573
|
+
# Completing
|
2574
|
+
#
|
2575
|
+
# : The simulation batch job is completing.
|
2576
|
+
#
|
2577
|
+
# TimingOut
|
2578
|
+
#
|
2579
|
+
# : The simulation job batch is timing out.
|
2580
|
+
#
|
2581
|
+
# If a batch timing out, and there are pending requests that were
|
2582
|
+
# failing due to an internal failure (like `InternalServiceError`),
|
2583
|
+
# the batch status will be `Failed`. If there are no such failing
|
2584
|
+
# request, the batch status will be `TimedOut`.
|
2585
|
+
#
|
2586
|
+
# TimedOut
|
2587
|
+
#
|
2588
|
+
# : The simulation batch job timed out.
|
2589
|
+
# @return [String]
|
2590
|
+
#
|
2591
|
+
# @!attribute [rw] last_updated_at
|
2592
|
+
# The time, in milliseconds since the epoch, when the simulation job
|
2593
|
+
# batch was last updated.
|
2594
|
+
# @return [Time]
|
2595
|
+
#
|
2596
|
+
# @!attribute [rw] created_at
|
2597
|
+
# The time, in milliseconds since the epoch, when the simulation job
|
2598
|
+
# batch was created.
|
2599
|
+
# @return [Time]
|
2600
|
+
#
|
2601
|
+
# @!attribute [rw] client_request_token
|
2602
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
2603
|
+
# idempotency of the request.
|
2604
|
+
# @return [String]
|
2605
|
+
#
|
2606
|
+
# @!attribute [rw] batch_policy
|
2607
|
+
# The batch policy.
|
2608
|
+
# @return [Types::BatchPolicy]
|
1931
2609
|
#
|
1932
|
-
# @!attribute [rw]
|
1933
|
-
#
|
1934
|
-
# @return [
|
2610
|
+
# @!attribute [rw] failure_code
|
2611
|
+
# The failure code of the simulation job batch.
|
2612
|
+
# @return [String]
|
1935
2613
|
#
|
1936
|
-
# @!attribute [rw]
|
1937
|
-
# The
|
1938
|
-
# @return [
|
2614
|
+
# @!attribute [rw] failure_reason
|
2615
|
+
# The reason the simulation job batch failed.
|
2616
|
+
# @return [String]
|
1939
2617
|
#
|
1940
|
-
# @!attribute [rw]
|
1941
|
-
#
|
2618
|
+
# @!attribute [rw] failed_requests
|
2619
|
+
# A list of failed create simulation job requests. The request failed
|
2620
|
+
# to be created into a simulation job. Failed requests do not have a
|
2621
|
+
# simulation job ID.
|
2622
|
+
# @return [Array<Types::FailedCreateSimulationJobRequest>]
|
2623
|
+
#
|
2624
|
+
# @!attribute [rw] pending_requests
|
2625
|
+
# A list of pending simulation job requests. These requests have not
|
2626
|
+
# yet been created into simulation jobs.
|
2627
|
+
# @return [Array<Types::SimulationJobRequest>]
|
2628
|
+
#
|
2629
|
+
# @!attribute [rw] created_requests
|
2630
|
+
# A list of created simulation job summaries.
|
2631
|
+
# @return [Array<Types::SimulationJobSummary>]
|
2632
|
+
#
|
2633
|
+
# @!attribute [rw] tags
|
2634
|
+
# A map that contains tag keys and tag values that are attached to the
|
2635
|
+
# simulation job batch.
|
2636
|
+
# @return [Hash<String,String>]
|
2637
|
+
#
|
2638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobBatchResponse AWS API Documentation
|
2639
|
+
#
|
2640
|
+
class DescribeSimulationJobBatchResponse < Struct.new(
|
2641
|
+
:arn,
|
2642
|
+
:status,
|
2643
|
+
:last_updated_at,
|
2644
|
+
:created_at,
|
2645
|
+
:client_request_token,
|
2646
|
+
:batch_policy,
|
2647
|
+
:failure_code,
|
2648
|
+
:failure_reason,
|
2649
|
+
:failed_requests,
|
2650
|
+
:pending_requests,
|
2651
|
+
:created_requests,
|
2652
|
+
:tags)
|
2653
|
+
SENSITIVE = []
|
2654
|
+
include Aws::Structure
|
2655
|
+
end
|
2656
|
+
|
2657
|
+
# @note When making an API call, you may pass DescribeSimulationJobRequest
|
2658
|
+
# data as a hash:
|
2659
|
+
#
|
2660
|
+
# {
|
2661
|
+
# job: "Arn", # required
|
2662
|
+
# }
|
2663
|
+
#
|
2664
|
+
# @!attribute [rw] job
|
2665
|
+
# The Amazon Resource Name (ARN) of the simulation job to be
|
2666
|
+
# described.
|
2667
|
+
# @return [String]
|
2668
|
+
#
|
2669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobRequest AWS API Documentation
|
2670
|
+
#
|
2671
|
+
class DescribeSimulationJobRequest < Struct.new(
|
2672
|
+
:job)
|
2673
|
+
SENSITIVE = []
|
2674
|
+
include Aws::Structure
|
2675
|
+
end
|
2676
|
+
|
2677
|
+
# @!attribute [rw] arn
|
2678
|
+
# The Amazon Resource Name (ARN) of the simulation job.
|
1942
2679
|
# @return [String]
|
1943
2680
|
#
|
2681
|
+
# @!attribute [rw] name
|
2682
|
+
# The name of the simulation job.
|
2683
|
+
# @return [String]
|
2684
|
+
#
|
2685
|
+
# @!attribute [rw] status
|
2686
|
+
# The status of the simulation job.
|
2687
|
+
# @return [String]
|
2688
|
+
#
|
2689
|
+
# @!attribute [rw] last_started_at
|
2690
|
+
# The time, in milliseconds since the epoch, when the simulation job
|
2691
|
+
# was last started.
|
2692
|
+
# @return [Time]
|
2693
|
+
#
|
1944
2694
|
# @!attribute [rw] last_updated_at
|
1945
|
-
# The time, in milliseconds since the epoch, when the simulation
|
1946
|
-
#
|
2695
|
+
# The time, in milliseconds since the epoch, when the simulation job
|
2696
|
+
# was last updated.
|
1947
2697
|
# @return [Time]
|
1948
2698
|
#
|
2699
|
+
# @!attribute [rw] failure_behavior
|
2700
|
+
# The failure behavior for the simulation job.
|
2701
|
+
# @return [String]
|
2702
|
+
#
|
2703
|
+
# @!attribute [rw] failure_code
|
2704
|
+
# The failure code of the simulation job if it failed:
|
2705
|
+
#
|
2706
|
+
# InternalServiceError
|
2707
|
+
#
|
2708
|
+
# : Internal service error.
|
2709
|
+
#
|
2710
|
+
# RobotApplicationCrash
|
2711
|
+
#
|
2712
|
+
# : Robot application exited abnormally.
|
2713
|
+
#
|
2714
|
+
# SimulationApplicationCrash
|
2715
|
+
#
|
2716
|
+
# : Simulation application exited abnormally.
|
2717
|
+
#
|
2718
|
+
# BadPermissionsRobotApplication
|
2719
|
+
#
|
2720
|
+
# : Robot application bundle could not be downloaded.
|
2721
|
+
#
|
2722
|
+
# BadPermissionsSimulationApplication
|
2723
|
+
#
|
2724
|
+
# : Simulation application bundle could not be downloaded.
|
2725
|
+
#
|
2726
|
+
# BadPermissionsS3Output
|
2727
|
+
#
|
2728
|
+
# : Unable to publish outputs to customer-provided S3 bucket.
|
2729
|
+
#
|
2730
|
+
# BadPermissionsCloudwatchLogs
|
2731
|
+
#
|
2732
|
+
# : Unable to publish logs to customer-provided CloudWatch Logs
|
2733
|
+
# resource.
|
2734
|
+
#
|
2735
|
+
# SubnetIpLimitExceeded
|
2736
|
+
#
|
2737
|
+
# : Subnet IP limit exceeded.
|
2738
|
+
#
|
2739
|
+
# ENILimitExceeded
|
2740
|
+
#
|
2741
|
+
# : ENI limit exceeded.
|
2742
|
+
#
|
2743
|
+
# BadPermissionsUserCredentials
|
2744
|
+
#
|
2745
|
+
# : Unable to use the Role provided.
|
2746
|
+
#
|
2747
|
+
# InvalidBundleRobotApplication
|
2748
|
+
#
|
2749
|
+
# : Robot bundle cannot be extracted (invalid format, bundling error,
|
2750
|
+
# or other issue).
|
2751
|
+
#
|
2752
|
+
# InvalidBundleSimulationApplication
|
2753
|
+
#
|
2754
|
+
# : Simulation bundle cannot be extracted (invalid format, bundling
|
2755
|
+
# error, or other issue).
|
2756
|
+
#
|
2757
|
+
# RobotApplicationVersionMismatchedEtag
|
2758
|
+
#
|
2759
|
+
# : Etag for RobotApplication does not match value during version
|
2760
|
+
# creation.
|
2761
|
+
#
|
2762
|
+
# SimulationApplicationVersionMismatchedEtag
|
2763
|
+
#
|
2764
|
+
# : Etag for SimulationApplication does not match value during version
|
2765
|
+
# creation.
|
2766
|
+
# @return [String]
|
2767
|
+
#
|
2768
|
+
# @!attribute [rw] failure_reason
|
2769
|
+
# Details about why the simulation job failed. For more information
|
2770
|
+
# about troubleshooting, see [Troubleshooting][1].
|
2771
|
+
#
|
2772
|
+
#
|
2773
|
+
#
|
2774
|
+
# [1]: https://docs.aws.amazon.com/robomaker/latest/dg/troubleshooting.html
|
2775
|
+
# @return [String]
|
2776
|
+
#
|
2777
|
+
# @!attribute [rw] client_request_token
|
2778
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
2779
|
+
# idempotency of the request.
|
2780
|
+
# @return [String]
|
2781
|
+
#
|
2782
|
+
# @!attribute [rw] output_location
|
2783
|
+
# Location for output files generated by the simulation job.
|
2784
|
+
# @return [Types::OutputLocation]
|
2785
|
+
#
|
2786
|
+
# @!attribute [rw] logging_config
|
2787
|
+
# The logging configuration.
|
2788
|
+
# @return [Types::LoggingConfig]
|
2789
|
+
#
|
2790
|
+
# @!attribute [rw] max_job_duration_in_seconds
|
2791
|
+
# The maximum job duration in seconds. The value must be 8 days
|
2792
|
+
# (691,200 seconds) or less.
|
2793
|
+
# @return [Integer]
|
2794
|
+
#
|
2795
|
+
# @!attribute [rw] simulation_time_millis
|
2796
|
+
# The simulation job execution duration in milliseconds.
|
2797
|
+
# @return [Integer]
|
2798
|
+
#
|
2799
|
+
# @!attribute [rw] iam_role
|
2800
|
+
# The IAM role that allows the simulation instance to call the AWS
|
2801
|
+
# APIs that are specified in its associated policies on your behalf.
|
2802
|
+
# @return [String]
|
2803
|
+
#
|
2804
|
+
# @!attribute [rw] robot_applications
|
2805
|
+
# A list of robot applications.
|
2806
|
+
# @return [Array<Types::RobotApplicationConfig>]
|
2807
|
+
#
|
2808
|
+
# @!attribute [rw] simulation_applications
|
2809
|
+
# A list of simulation applications.
|
2810
|
+
# @return [Array<Types::SimulationApplicationConfig>]
|
2811
|
+
#
|
2812
|
+
# @!attribute [rw] data_sources
|
2813
|
+
# The data sources for the simulation job.
|
2814
|
+
# @return [Array<Types::DataSource>]
|
2815
|
+
#
|
1949
2816
|
# @!attribute [rw] tags
|
1950
|
-
# The list of all tags added to the specified simulation
|
2817
|
+
# The list of all tags added to the specified simulation job.
|
1951
2818
|
# @return [Hash<String,String>]
|
1952
2819
|
#
|
1953
|
-
#
|
2820
|
+
# @!attribute [rw] vpc_config
|
2821
|
+
# The VPC configuration.
|
2822
|
+
# @return [Types::VPCConfigResponse]
|
1954
2823
|
#
|
1955
|
-
|
2824
|
+
# @!attribute [rw] network_interface
|
2825
|
+
# The network interface information for the simulation job.
|
2826
|
+
# @return [Types::NetworkInterface]
|
2827
|
+
#
|
2828
|
+
# @!attribute [rw] compute
|
2829
|
+
# Compute information for the simulation job.
|
2830
|
+
# @return [Types::ComputeResponse]
|
2831
|
+
#
|
2832
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobResponse AWS API Documentation
|
2833
|
+
#
|
2834
|
+
class DescribeSimulationJobResponse < Struct.new(
|
1956
2835
|
:arn,
|
1957
2836
|
:name,
|
1958
|
-
:
|
1959
|
-
:
|
1960
|
-
:simulation_software_suite,
|
1961
|
-
:robot_software_suite,
|
1962
|
-
:rendering_engine,
|
1963
|
-
:revision_id,
|
2837
|
+
:status,
|
2838
|
+
:last_started_at,
|
1964
2839
|
:last_updated_at,
|
1965
|
-
:
|
2840
|
+
:failure_behavior,
|
2841
|
+
:failure_code,
|
2842
|
+
:failure_reason,
|
2843
|
+
:client_request_token,
|
2844
|
+
:output_location,
|
2845
|
+
:logging_config,
|
2846
|
+
:max_job_duration_in_seconds,
|
2847
|
+
:simulation_time_millis,
|
2848
|
+
:iam_role,
|
2849
|
+
:robot_applications,
|
2850
|
+
:simulation_applications,
|
2851
|
+
:data_sources,
|
2852
|
+
:tags,
|
2853
|
+
:vpc_config,
|
2854
|
+
:network_interface,
|
2855
|
+
:compute)
|
2856
|
+
SENSITIVE = []
|
1966
2857
|
include Aws::Structure
|
1967
2858
|
end
|
1968
2859
|
|
1969
|
-
# @note When making an API call, you may pass
|
2860
|
+
# @note When making an API call, you may pass DescribeWorldExportJobRequest
|
1970
2861
|
# data as a hash:
|
1971
2862
|
#
|
1972
2863
|
# {
|
1973
|
-
#
|
2864
|
+
# job: "Arn", # required
|
1974
2865
|
# }
|
1975
2866
|
#
|
1976
|
-
# @!attribute [rw]
|
1977
|
-
# The
|
2867
|
+
# @!attribute [rw] job
|
2868
|
+
# The Amazon Resource Name (arn) of the world export job to describe.
|
1978
2869
|
# @return [String]
|
1979
2870
|
#
|
1980
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
2871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJobRequest AWS API Documentation
|
1981
2872
|
#
|
1982
|
-
class
|
1983
|
-
:
|
2873
|
+
class DescribeWorldExportJobRequest < Struct.new(
|
2874
|
+
:job)
|
2875
|
+
SENSITIVE = []
|
1984
2876
|
include Aws::Structure
|
1985
2877
|
end
|
1986
2878
|
|
1987
2879
|
# @!attribute [rw] arn
|
1988
|
-
# The Amazon Resource Name (ARN) of the
|
2880
|
+
# The Amazon Resource Name (ARN) of the world export job.
|
1989
2881
|
# @return [String]
|
1990
2882
|
#
|
1991
2883
|
# @!attribute [rw] status
|
1992
|
-
# The status of the
|
2884
|
+
# The status of the world export job.
|
1993
2885
|
#
|
1994
2886
|
# Pending
|
1995
2887
|
#
|
1996
|
-
# : The
|
2888
|
+
# : The world export job request is pending.
|
1997
2889
|
#
|
1998
|
-
#
|
2890
|
+
# Running
|
1999
2891
|
#
|
2000
|
-
# : The
|
2892
|
+
# : The world export job is running.
|
2001
2893
|
#
|
2002
|
-
#
|
2894
|
+
# Completed
|
2003
2895
|
#
|
2004
|
-
# : The
|
2005
|
-
# requests could not be completed due to an internal failure (like
|
2006
|
-
# `InternalServiceError`). See `failureCode` and `failureReason` for
|
2007
|
-
# more information.
|
2896
|
+
# : The world export job completed.
|
2008
2897
|
#
|
2009
|
-
#
|
2898
|
+
# Failed
|
2010
2899
|
#
|
2011
|
-
# : The
|
2012
|
-
#
|
2013
|
-
# of the failed simulation job requests are due to
|
2014
|
-
# `InternalServiceError` and (2) when all created simulation jobs
|
2015
|
-
# have reached a terminal state (for example, `Completed` or
|
2016
|
-
# `Failed`).
|
2900
|
+
# : The world export job failed. See `failureCode` and `failureReason`
|
2901
|
+
# for more information.
|
2017
2902
|
#
|
2018
2903
|
# Canceled
|
2019
2904
|
#
|
2020
|
-
# : The
|
2905
|
+
# : The world export job was cancelled.
|
2021
2906
|
#
|
2022
2907
|
# Canceling
|
2023
2908
|
#
|
2024
|
-
# : The
|
2909
|
+
# : The world export job is being cancelled.
|
2910
|
+
# @return [String]
|
2025
2911
|
#
|
2026
|
-
#
|
2912
|
+
# @!attribute [rw] created_at
|
2913
|
+
# The time, in milliseconds since the epoch, when the world export job
|
2914
|
+
# was created.
|
2915
|
+
# @return [Time]
|
2027
2916
|
#
|
2028
|
-
#
|
2917
|
+
# @!attribute [rw] failure_code
|
2918
|
+
# The failure code of the world export job if it failed:
|
2029
2919
|
#
|
2030
|
-
#
|
2920
|
+
# InternalServiceError
|
2031
2921
|
#
|
2032
|
-
# :
|
2922
|
+
# : Internal service error.
|
2033
2923
|
#
|
2034
|
-
#
|
2035
|
-
# failing due to an internal failure (like `InternalServiceError`),
|
2036
|
-
# the batch status will be `Failed`. If there are no such failing
|
2037
|
-
# request, the batch status will be `TimedOut`.
|
2924
|
+
# LimitExceeded
|
2038
2925
|
#
|
2039
|
-
#
|
2926
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
2927
|
+
# number of concurrent stream requests exceeds the maximum number
|
2928
|
+
# allowed.
|
2040
2929
|
#
|
2041
|
-
#
|
2042
|
-
# @return [String]
|
2930
|
+
# ResourceNotFound
|
2043
2931
|
#
|
2044
|
-
#
|
2045
|
-
# The time, in milliseconds since the epoch, when the simulation job
|
2046
|
-
# batch was last updated.
|
2047
|
-
# @return [Time]
|
2932
|
+
# : The specified resource could not be found.
|
2048
2933
|
#
|
2049
|
-
#
|
2050
|
-
# The time, in milliseconds since the epoch, when the simulation job
|
2051
|
-
# batch was created.
|
2052
|
-
# @return [Time]
|
2934
|
+
# RequestThrottled
|
2053
2935
|
#
|
2054
|
-
#
|
2055
|
-
# Unique, case-sensitive identifier that you provide to ensure the
|
2056
|
-
# idempotency of the request.
|
2057
|
-
# @return [String]
|
2936
|
+
# : The request was throttled.
|
2058
2937
|
#
|
2059
|
-
#
|
2060
|
-
# The batch policy.
|
2061
|
-
# @return [Types::BatchPolicy]
|
2938
|
+
# InvalidInput
|
2062
2939
|
#
|
2063
|
-
#
|
2064
|
-
# The failure code of the simulation job batch.
|
2940
|
+
# : An input parameter in the request is not valid.
|
2065
2941
|
# @return [String]
|
2066
2942
|
#
|
2067
2943
|
# @!attribute [rw] failure_reason
|
2068
|
-
# The reason the
|
2944
|
+
# The reason why the world export job failed.
|
2069
2945
|
# @return [String]
|
2070
2946
|
#
|
2071
|
-
# @!attribute [rw]
|
2072
|
-
#
|
2073
|
-
#
|
2074
|
-
#
|
2075
|
-
# @return [Array<Types::FailedCreateSimulationJobRequest>]
|
2947
|
+
# @!attribute [rw] client_request_token
|
2948
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
2949
|
+
# idempotency of the request.
|
2950
|
+
# @return [String]
|
2076
2951
|
#
|
2077
|
-
# @!attribute [rw]
|
2078
|
-
# A list of
|
2079
|
-
#
|
2080
|
-
# @return [Array<
|
2952
|
+
# @!attribute [rw] worlds
|
2953
|
+
# A list of Amazon Resource Names (arns) that correspond to worlds to
|
2954
|
+
# be exported.
|
2955
|
+
# @return [Array<String>]
|
2081
2956
|
#
|
2082
|
-
# @!attribute [rw]
|
2083
|
-
#
|
2084
|
-
# @return [
|
2957
|
+
# @!attribute [rw] output_location
|
2958
|
+
# The output location.
|
2959
|
+
# @return [Types::OutputLocation]
|
2960
|
+
#
|
2961
|
+
# @!attribute [rw] iam_role
|
2962
|
+
# The IAM role that the world export process uses to access the Amazon
|
2963
|
+
# S3 bucket and put the export.
|
2964
|
+
# @return [String]
|
2085
2965
|
#
|
2086
2966
|
# @!attribute [rw] tags
|
2087
2967
|
# A map that contains tag keys and tag values that are attached to the
|
2088
|
-
#
|
2968
|
+
# world export job.
|
2089
2969
|
# @return [Hash<String,String>]
|
2090
2970
|
#
|
2091
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
2971
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldExportJobResponse AWS API Documentation
|
2092
2972
|
#
|
2093
|
-
class
|
2973
|
+
class DescribeWorldExportJobResponse < Struct.new(
|
2094
2974
|
:arn,
|
2095
2975
|
:status,
|
2096
|
-
:last_updated_at,
|
2097
2976
|
:created_at,
|
2098
|
-
:client_request_token,
|
2099
|
-
:batch_policy,
|
2100
2977
|
:failure_code,
|
2101
2978
|
:failure_reason,
|
2102
|
-
:
|
2103
|
-
:
|
2104
|
-
:
|
2979
|
+
:client_request_token,
|
2980
|
+
:worlds,
|
2981
|
+
:output_location,
|
2982
|
+
:iam_role,
|
2105
2983
|
:tags)
|
2984
|
+
SENSITIVE = []
|
2106
2985
|
include Aws::Structure
|
2107
2986
|
end
|
2108
2987
|
|
2109
|
-
# @note When making an API call, you may pass
|
2988
|
+
# @note When making an API call, you may pass DescribeWorldGenerationJobRequest
|
2110
2989
|
# data as a hash:
|
2111
2990
|
#
|
2112
2991
|
# {
|
@@ -2114,196 +2993,241 @@ module Aws::RoboMaker
|
|
2114
2993
|
# }
|
2115
2994
|
#
|
2116
2995
|
# @!attribute [rw] job
|
2117
|
-
# The Amazon Resource Name (
|
2118
|
-
#
|
2996
|
+
# The Amazon Resource Name (arn) of the world generation job to
|
2997
|
+
# describe.
|
2119
2998
|
# @return [String]
|
2120
2999
|
#
|
2121
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/
|
3000
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJobRequest AWS API Documentation
|
2122
3001
|
#
|
2123
|
-
class
|
3002
|
+
class DescribeWorldGenerationJobRequest < Struct.new(
|
2124
3003
|
:job)
|
3004
|
+
SENSITIVE = []
|
2125
3005
|
include Aws::Structure
|
2126
3006
|
end
|
2127
3007
|
|
2128
3008
|
# @!attribute [rw] arn
|
2129
|
-
# The Amazon Resource Name (ARN) of the
|
2130
|
-
# @return [String]
|
2131
|
-
#
|
2132
|
-
# @!attribute [rw] name
|
2133
|
-
# The name of the simulation job.
|
3009
|
+
# The Amazon Resource Name (ARN) of the world generation job.
|
2134
3010
|
# @return [String]
|
2135
3011
|
#
|
2136
3012
|
# @!attribute [rw] status
|
2137
|
-
# The status of the
|
2138
|
-
# @return [String]
|
3013
|
+
# The status of the world generation job:
|
2139
3014
|
#
|
2140
|
-
#
|
2141
|
-
# The time, in milliseconds since the epoch, when the simulation job
|
2142
|
-
# was last started.
|
2143
|
-
# @return [Time]
|
3015
|
+
# Pending
|
2144
3016
|
#
|
2145
|
-
#
|
2146
|
-
# The time, in milliseconds since the epoch, when the simulation job
|
2147
|
-
# was last updated.
|
2148
|
-
# @return [Time]
|
3017
|
+
# : The world generation job request is pending.
|
2149
3018
|
#
|
2150
|
-
#
|
2151
|
-
# The failure behavior for the simulation job.
|
2152
|
-
# @return [String]
|
3019
|
+
# Running
|
2153
3020
|
#
|
2154
|
-
#
|
2155
|
-
# The failure code of the simulation job if it failed:
|
3021
|
+
# : The world generation job is running.
|
2156
3022
|
#
|
2157
|
-
#
|
3023
|
+
# Completed
|
2158
3024
|
#
|
2159
|
-
# :
|
3025
|
+
# : The world generation job completed.
|
2160
3026
|
#
|
2161
|
-
#
|
3027
|
+
# Failed
|
2162
3028
|
#
|
2163
|
-
# :
|
3029
|
+
# : The world generation job failed. See `failureCode` for more
|
3030
|
+
# information.
|
2164
3031
|
#
|
2165
|
-
#
|
3032
|
+
# PartialFailed
|
2166
3033
|
#
|
2167
|
-
# :
|
3034
|
+
# : Some worlds did not generate.
|
2168
3035
|
#
|
2169
|
-
#
|
3036
|
+
# Canceled
|
2170
3037
|
#
|
2171
|
-
# :
|
3038
|
+
# : The world generation job was cancelled.
|
2172
3039
|
#
|
2173
|
-
#
|
3040
|
+
# Canceling
|
2174
3041
|
#
|
2175
|
-
# :
|
3042
|
+
# : The world generation job is being cancelled.
|
3043
|
+
# @return [String]
|
2176
3044
|
#
|
2177
|
-
#
|
3045
|
+
# @!attribute [rw] created_at
|
3046
|
+
# The time, in milliseconds since the epoch, when the world generation
|
3047
|
+
# job was created.
|
3048
|
+
# @return [Time]
|
2178
3049
|
#
|
2179
|
-
#
|
3050
|
+
# @!attribute [rw] failure_code
|
3051
|
+
# The failure code of the world generation job if it failed:
|
2180
3052
|
#
|
2181
|
-
#
|
3053
|
+
# InternalServiceError
|
2182
3054
|
#
|
2183
|
-
# :
|
2184
|
-
# resource.
|
3055
|
+
# : Internal service error.
|
2185
3056
|
#
|
2186
|
-
#
|
3057
|
+
# LimitExceeded
|
2187
3058
|
#
|
2188
|
-
# :
|
3059
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
3060
|
+
# number of concurrent stream requests exceeds the maximum number
|
3061
|
+
# allowed.
|
2189
3062
|
#
|
2190
|
-
#
|
3063
|
+
# ResourceNotFound
|
2191
3064
|
#
|
2192
|
-
# :
|
3065
|
+
# : The specified resource could not be found.
|
2193
3066
|
#
|
2194
|
-
#
|
3067
|
+
# RequestThrottled
|
2195
3068
|
#
|
2196
|
-
# :
|
3069
|
+
# : The request was throttled.
|
2197
3070
|
#
|
2198
|
-
#
|
3071
|
+
# InvalidInput
|
2199
3072
|
#
|
2200
|
-
# :
|
2201
|
-
#
|
3073
|
+
# : An input parameter in the request is not valid.
|
3074
|
+
# @return [String]
|
2202
3075
|
#
|
2203
|
-
#
|
3076
|
+
# @!attribute [rw] failure_reason
|
3077
|
+
# The reason why the world generation job failed.
|
3078
|
+
# @return [String]
|
2204
3079
|
#
|
2205
|
-
#
|
2206
|
-
#
|
3080
|
+
# @!attribute [rw] client_request_token
|
3081
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
3082
|
+
# idempotency of the request.
|
3083
|
+
# @return [String]
|
2207
3084
|
#
|
2208
|
-
#
|
3085
|
+
# @!attribute [rw] template
|
3086
|
+
# The Amazon Resource Name (arn) of the world template.
|
3087
|
+
# @return [String]
|
2209
3088
|
#
|
2210
|
-
#
|
2211
|
-
#
|
3089
|
+
# @!attribute [rw] world_count
|
3090
|
+
# Information about the world count.
|
3091
|
+
# @return [Types::WorldCount]
|
2212
3092
|
#
|
2213
|
-
#
|
3093
|
+
# @!attribute [rw] finished_worlds_summary
|
3094
|
+
# Summary information about finished worlds.
|
3095
|
+
# @return [Types::FinishedWorldsSummary]
|
2214
3096
|
#
|
2215
|
-
#
|
2216
|
-
#
|
2217
|
-
#
|
3097
|
+
# @!attribute [rw] tags
|
3098
|
+
# A map that contains tag keys and tag values that are attached to the
|
3099
|
+
# world generation job.
|
3100
|
+
# @return [Hash<String,String>]
|
2218
3101
|
#
|
2219
|
-
#
|
2220
|
-
#
|
2221
|
-
|
3102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJobResponse AWS API Documentation
|
3103
|
+
#
|
3104
|
+
class DescribeWorldGenerationJobResponse < Struct.new(
|
3105
|
+
:arn,
|
3106
|
+
:status,
|
3107
|
+
:created_at,
|
3108
|
+
:failure_code,
|
3109
|
+
:failure_reason,
|
3110
|
+
:client_request_token,
|
3111
|
+
:template,
|
3112
|
+
:world_count,
|
3113
|
+
:finished_worlds_summary,
|
3114
|
+
:tags)
|
3115
|
+
SENSITIVE = []
|
3116
|
+
include Aws::Structure
|
3117
|
+
end
|
3118
|
+
|
3119
|
+
# @note When making an API call, you may pass DescribeWorldRequest
|
3120
|
+
# data as a hash:
|
3121
|
+
#
|
3122
|
+
# {
|
3123
|
+
# world: "Arn", # required
|
3124
|
+
# }
|
2222
3125
|
#
|
3126
|
+
# @!attribute [rw] world
|
3127
|
+
# The Amazon Resource Name (arn) of the world you want to describe.
|
3128
|
+
# @return [String]
|
2223
3129
|
#
|
3130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldRequest AWS API Documentation
|
2224
3131
|
#
|
2225
|
-
|
3132
|
+
class DescribeWorldRequest < Struct.new(
|
3133
|
+
:world)
|
3134
|
+
SENSITIVE = []
|
3135
|
+
include Aws::Structure
|
3136
|
+
end
|
3137
|
+
|
3138
|
+
# @!attribute [rw] arn
|
3139
|
+
# The Amazon Resource Name (arn) of the world.
|
2226
3140
|
# @return [String]
|
2227
3141
|
#
|
2228
|
-
# @!attribute [rw]
|
2229
|
-
#
|
2230
|
-
#
|
3142
|
+
# @!attribute [rw] generation_job
|
3143
|
+
# The Amazon Resource Name (arn) of the world generation job that
|
3144
|
+
# generated the world.
|
2231
3145
|
# @return [String]
|
2232
3146
|
#
|
2233
|
-
# @!attribute [rw]
|
2234
|
-
#
|
2235
|
-
# @return [
|
3147
|
+
# @!attribute [rw] template
|
3148
|
+
# The world template.
|
3149
|
+
# @return [String]
|
2236
3150
|
#
|
2237
|
-
# @!attribute [rw]
|
2238
|
-
# The
|
2239
|
-
#
|
3151
|
+
# @!attribute [rw] created_at
|
3152
|
+
# The time, in milliseconds since the epoch, when the world was
|
3153
|
+
# created.
|
3154
|
+
# @return [Time]
|
2240
3155
|
#
|
2241
|
-
# @!attribute [rw]
|
2242
|
-
#
|
2243
|
-
#
|
2244
|
-
# @return [
|
3156
|
+
# @!attribute [rw] tags
|
3157
|
+
# A map that contains tag keys and tag values that are attached to the
|
3158
|
+
# world.
|
3159
|
+
# @return [Hash<String,String>]
|
2245
3160
|
#
|
2246
|
-
#
|
2247
|
-
# The simulation job execution duration in milliseconds.
|
2248
|
-
# @return [Integer]
|
3161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldResponse AWS API Documentation
|
2249
3162
|
#
|
2250
|
-
|
2251
|
-
|
2252
|
-
|
3163
|
+
class DescribeWorldResponse < Struct.new(
|
3164
|
+
:arn,
|
3165
|
+
:generation_job,
|
3166
|
+
:template,
|
3167
|
+
:created_at,
|
3168
|
+
:tags)
|
3169
|
+
SENSITIVE = []
|
3170
|
+
include Aws::Structure
|
3171
|
+
end
|
3172
|
+
|
3173
|
+
# @note When making an API call, you may pass DescribeWorldTemplateRequest
|
3174
|
+
# data as a hash:
|
3175
|
+
#
|
3176
|
+
# {
|
3177
|
+
# template: "Arn", # required
|
3178
|
+
# }
|
3179
|
+
#
|
3180
|
+
# @!attribute [rw] template
|
3181
|
+
# The Amazon Resource Name (arn) of the world template you want to
|
3182
|
+
# describe.
|
3183
|
+
# @return [String]
|
3184
|
+
#
|
3185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplateRequest AWS API Documentation
|
3186
|
+
#
|
3187
|
+
class DescribeWorldTemplateRequest < Struct.new(
|
3188
|
+
:template)
|
3189
|
+
SENSITIVE = []
|
3190
|
+
include Aws::Structure
|
3191
|
+
end
|
3192
|
+
|
3193
|
+
# @!attribute [rw] arn
|
3194
|
+
# The Amazon Resource Name (ARN) of the world template.
|
2253
3195
|
# @return [String]
|
2254
3196
|
#
|
2255
|
-
# @!attribute [rw]
|
2256
|
-
#
|
2257
|
-
#
|
3197
|
+
# @!attribute [rw] client_request_token
|
3198
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
3199
|
+
# idempotency of the request.
|
3200
|
+
# @return [String]
|
2258
3201
|
#
|
2259
|
-
# @!attribute [rw]
|
2260
|
-
#
|
2261
|
-
# @return [
|
3202
|
+
# @!attribute [rw] name
|
3203
|
+
# The name of the world template.
|
3204
|
+
# @return [String]
|
2262
3205
|
#
|
2263
|
-
# @!attribute [rw]
|
2264
|
-
# The
|
2265
|
-
#
|
3206
|
+
# @!attribute [rw] created_at
|
3207
|
+
# The time, in milliseconds since the epoch, when the world template
|
3208
|
+
# was created.
|
3209
|
+
# @return [Time]
|
3210
|
+
#
|
3211
|
+
# @!attribute [rw] last_updated_at
|
3212
|
+
# The time, in milliseconds since the epoch, when the world template
|
3213
|
+
# was last updated.
|
3214
|
+
# @return [Time]
|
2266
3215
|
#
|
2267
3216
|
# @!attribute [rw] tags
|
2268
|
-
#
|
3217
|
+
# A map that contains tag keys and tag values that are attached to the
|
3218
|
+
# world template.
|
2269
3219
|
# @return [Hash<String,String>]
|
2270
3220
|
#
|
2271
|
-
#
|
2272
|
-
# The VPC configuration.
|
2273
|
-
# @return [Types::VPCConfigResponse]
|
2274
|
-
#
|
2275
|
-
# @!attribute [rw] network_interface
|
2276
|
-
# The network interface information for the simulation job.
|
2277
|
-
# @return [Types::NetworkInterface]
|
2278
|
-
#
|
2279
|
-
# @!attribute [rw] compute
|
2280
|
-
# Compute information for the simulation job.
|
2281
|
-
# @return [Types::ComputeResponse]
|
2282
|
-
#
|
2283
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobResponse AWS API Documentation
|
3221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplateResponse AWS API Documentation
|
2284
3222
|
#
|
2285
|
-
class
|
3223
|
+
class DescribeWorldTemplateResponse < Struct.new(
|
2286
3224
|
:arn,
|
3225
|
+
:client_request_token,
|
2287
3226
|
:name,
|
2288
|
-
:
|
2289
|
-
:last_started_at,
|
3227
|
+
:created_at,
|
2290
3228
|
:last_updated_at,
|
2291
|
-
:
|
2292
|
-
|
2293
|
-
:failure_reason,
|
2294
|
-
:client_request_token,
|
2295
|
-
:output_location,
|
2296
|
-
:logging_config,
|
2297
|
-
:max_job_duration_in_seconds,
|
2298
|
-
:simulation_time_millis,
|
2299
|
-
:iam_role,
|
2300
|
-
:robot_applications,
|
2301
|
-
:simulation_applications,
|
2302
|
-
:data_sources,
|
2303
|
-
:tags,
|
2304
|
-
:vpc_config,
|
2305
|
-
:network_interface,
|
2306
|
-
:compute)
|
3229
|
+
:tags)
|
3230
|
+
SENSITIVE = []
|
2307
3231
|
include Aws::Structure
|
2308
3232
|
end
|
2309
3233
|
|
@@ -2333,6 +3257,26 @@ module Aws::RoboMaker
|
|
2333
3257
|
:failure_reason,
|
2334
3258
|
:failure_code,
|
2335
3259
|
:failed_at)
|
3260
|
+
SENSITIVE = []
|
3261
|
+
include Aws::Structure
|
3262
|
+
end
|
3263
|
+
|
3264
|
+
# Information about worlds that failed.
|
3265
|
+
#
|
3266
|
+
# @!attribute [rw] total_failure_count
|
3267
|
+
# The total number of failures.
|
3268
|
+
# @return [Integer]
|
3269
|
+
#
|
3270
|
+
# @!attribute [rw] failures
|
3271
|
+
# The worlds that failed.
|
3272
|
+
# @return [Array<Types::WorldFailure>]
|
3273
|
+
#
|
3274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/FailureSummary AWS API Documentation
|
3275
|
+
#
|
3276
|
+
class FailureSummary < Struct.new(
|
3277
|
+
:total_failure_count,
|
3278
|
+
:failures)
|
3279
|
+
SENSITIVE = []
|
2336
3280
|
include Aws::Structure
|
2337
3281
|
end
|
2338
3282
|
|
@@ -2359,6 +3303,31 @@ module Aws::RoboMaker
|
|
2359
3303
|
class Filter < Struct.new(
|
2360
3304
|
:name,
|
2361
3305
|
:values)
|
3306
|
+
SENSITIVE = []
|
3307
|
+
include Aws::Structure
|
3308
|
+
end
|
3309
|
+
|
3310
|
+
# Information about worlds that finished.
|
3311
|
+
#
|
3312
|
+
# @!attribute [rw] finished_count
|
3313
|
+
# The total number of finished worlds.
|
3314
|
+
# @return [Integer]
|
3315
|
+
#
|
3316
|
+
# @!attribute [rw] succeeded_worlds
|
3317
|
+
# A list of worlds that succeeded.
|
3318
|
+
# @return [Array<String>]
|
3319
|
+
#
|
3320
|
+
# @!attribute [rw] failure_summary
|
3321
|
+
# Information about worlds that failed.
|
3322
|
+
# @return [Types::FailureSummary]
|
3323
|
+
#
|
3324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/FinishedWorldsSummary AWS API Documentation
|
3325
|
+
#
|
3326
|
+
class FinishedWorldsSummary < Struct.new(
|
3327
|
+
:finished_count,
|
3328
|
+
:succeeded_worlds,
|
3329
|
+
:failure_summary)
|
3330
|
+
SENSITIVE = []
|
2362
3331
|
include Aws::Structure
|
2363
3332
|
end
|
2364
3333
|
|
@@ -2398,6 +3367,44 @@ module Aws::RoboMaker
|
|
2398
3367
|
:last_deployment_status,
|
2399
3368
|
:last_deployment_job,
|
2400
3369
|
:last_deployment_time)
|
3370
|
+
SENSITIVE = []
|
3371
|
+
include Aws::Structure
|
3372
|
+
end
|
3373
|
+
|
3374
|
+
# @note When making an API call, you may pass GetWorldTemplateBodyRequest
|
3375
|
+
# data as a hash:
|
3376
|
+
#
|
3377
|
+
# {
|
3378
|
+
# template: "Arn",
|
3379
|
+
# generation_job: "Arn",
|
3380
|
+
# }
|
3381
|
+
#
|
3382
|
+
# @!attribute [rw] template
|
3383
|
+
# The Amazon Resource Name (arn) of the world template.
|
3384
|
+
# @return [String]
|
3385
|
+
#
|
3386
|
+
# @!attribute [rw] generation_job
|
3387
|
+
# The Amazon Resource Name (arn) of the world generator job.
|
3388
|
+
# @return [String]
|
3389
|
+
#
|
3390
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBodyRequest AWS API Documentation
|
3391
|
+
#
|
3392
|
+
class GetWorldTemplateBodyRequest < Struct.new(
|
3393
|
+
:template,
|
3394
|
+
:generation_job)
|
3395
|
+
SENSITIVE = []
|
3396
|
+
include Aws::Structure
|
3397
|
+
end
|
3398
|
+
|
3399
|
+
# @!attribute [rw] template_body
|
3400
|
+
# The world template body.
|
3401
|
+
# @return [String]
|
3402
|
+
#
|
3403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/GetWorldTemplateBodyResponse AWS API Documentation
|
3404
|
+
#
|
3405
|
+
class GetWorldTemplateBodyResponse < Struct.new(
|
3406
|
+
:template_body)
|
3407
|
+
SENSITIVE = []
|
2401
3408
|
include Aws::Structure
|
2402
3409
|
end
|
2403
3410
|
|
@@ -2412,6 +3419,7 @@ module Aws::RoboMaker
|
|
2412
3419
|
#
|
2413
3420
|
class IdempotentParameterMismatchException < Struct.new(
|
2414
3421
|
:message)
|
3422
|
+
SENSITIVE = []
|
2415
3423
|
include Aws::Structure
|
2416
3424
|
end
|
2417
3425
|
|
@@ -2424,6 +3432,7 @@ module Aws::RoboMaker
|
|
2424
3432
|
#
|
2425
3433
|
class InternalServerException < Struct.new(
|
2426
3434
|
:message)
|
3435
|
+
SENSITIVE = []
|
2427
3436
|
include Aws::Structure
|
2428
3437
|
end
|
2429
3438
|
|
@@ -2438,6 +3447,7 @@ module Aws::RoboMaker
|
|
2438
3447
|
#
|
2439
3448
|
class InvalidParameterException < Struct.new(
|
2440
3449
|
:message)
|
3450
|
+
SENSITIVE = []
|
2441
3451
|
include Aws::Structure
|
2442
3452
|
end
|
2443
3453
|
|
@@ -2496,6 +3506,7 @@ module Aws::RoboMaker
|
|
2496
3506
|
:environment_variables,
|
2497
3507
|
:port_forwarding_config,
|
2498
3508
|
:stream_ui)
|
3509
|
+
SENSITIVE = []
|
2499
3510
|
include Aws::Structure
|
2500
3511
|
end
|
2501
3512
|
|
@@ -2510,6 +3521,7 @@ module Aws::RoboMaker
|
|
2510
3521
|
#
|
2511
3522
|
class LimitExceededException < Struct.new(
|
2512
3523
|
:message)
|
3524
|
+
SENSITIVE = []
|
2513
3525
|
include Aws::Structure
|
2514
3526
|
end
|
2515
3527
|
|
@@ -2538,11 +3550,12 @@ module Aws::RoboMaker
|
|
2538
3550
|
# @return [Array<Types::Filter>]
|
2539
3551
|
#
|
2540
3552
|
# @!attribute [rw] next_token
|
2541
|
-
#
|
2542
|
-
#
|
2543
|
-
#
|
2544
|
-
#
|
2545
|
-
#
|
3553
|
+
# If the previous paginated request did not return all of the
|
3554
|
+
# remaining results, the response object's `nextToken` parameter
|
3555
|
+
# value is set to a token. To retrieve the next set of results, call
|
3556
|
+
# `ListDeploymentJobs` again and assign that token to the request
|
3557
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3558
|
+
# the previous response object's NextToken parameter is set to null.
|
2546
3559
|
# @return [String]
|
2547
3560
|
#
|
2548
3561
|
# @!attribute [rw] max_results
|
@@ -2561,6 +3574,7 @@ module Aws::RoboMaker
|
|
2561
3574
|
:filters,
|
2562
3575
|
:next_token,
|
2563
3576
|
:max_results)
|
3577
|
+
SENSITIVE = []
|
2564
3578
|
include Aws::Structure
|
2565
3579
|
end
|
2566
3580
|
|
@@ -2569,11 +3583,12 @@ module Aws::RoboMaker
|
|
2569
3583
|
# @return [Array<Types::DeploymentJob>]
|
2570
3584
|
#
|
2571
3585
|
# @!attribute [rw] next_token
|
2572
|
-
#
|
2573
|
-
#
|
2574
|
-
#
|
2575
|
-
#
|
2576
|
-
#
|
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.
|
2577
3592
|
# @return [String]
|
2578
3593
|
#
|
2579
3594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListDeploymentJobsResponse AWS API Documentation
|
@@ -2581,6 +3596,7 @@ module Aws::RoboMaker
|
|
2581
3596
|
class ListDeploymentJobsResponse < Struct.new(
|
2582
3597
|
:deployment_jobs,
|
2583
3598
|
:next_token)
|
3599
|
+
SENSITIVE = []
|
2584
3600
|
include Aws::Structure
|
2585
3601
|
end
|
2586
3602
|
|
@@ -2599,10 +3615,12 @@ module Aws::RoboMaker
|
|
2599
3615
|
# }
|
2600
3616
|
#
|
2601
3617
|
# @!attribute [rw] next_token
|
2602
|
-
#
|
2603
|
-
#
|
2604
|
-
#
|
2605
|
-
#
|
3618
|
+
# If the previous paginated request did not return all of the
|
3619
|
+
# remaining results, the response object's `nextToken` parameter
|
3620
|
+
# value is set to a token. To retrieve the next set of results, call
|
3621
|
+
# `ListFleets` again and assign that token to the request object's
|
3622
|
+
# `nextToken` parameter. If there are no remaining results, the
|
3623
|
+
# previous response object's NextToken parameter is set to null.
|
2606
3624
|
#
|
2607
3625
|
# <note markdown="1"> This token should be treated as an opaque identifier that is only
|
2608
3626
|
# used to retrieve the next items in a list and not for other
|
@@ -2635,6 +3653,7 @@ module Aws::RoboMaker
|
|
2635
3653
|
:next_token,
|
2636
3654
|
:max_results,
|
2637
3655
|
:filters)
|
3656
|
+
SENSITIVE = []
|
2638
3657
|
include Aws::Structure
|
2639
3658
|
end
|
2640
3659
|
|
@@ -2643,11 +3662,12 @@ module Aws::RoboMaker
|
|
2643
3662
|
# @return [Array<Types::Fleet>]
|
2644
3663
|
#
|
2645
3664
|
# @!attribute [rw] next_token
|
2646
|
-
#
|
2647
|
-
#
|
2648
|
-
#
|
2649
|
-
#
|
2650
|
-
#
|
3665
|
+
# If the previous paginated request did not return all of the
|
3666
|
+
# remaining results, the response object's `nextToken` parameter
|
3667
|
+
# value is set to a token. To retrieve the next set of results, call
|
3668
|
+
# `ListFleets` again and assign that token to the request object's
|
3669
|
+
# `nextToken` parameter. If there are no remaining results, the
|
3670
|
+
# previous response object's NextToken parameter is set to null.
|
2651
3671
|
# @return [String]
|
2652
3672
|
#
|
2653
3673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListFleetsResponse AWS API Documentation
|
@@ -2655,6 +3675,7 @@ module Aws::RoboMaker
|
|
2655
3675
|
class ListFleetsResponse < Struct.new(
|
2656
3676
|
:fleet_details,
|
2657
3677
|
:next_token)
|
3678
|
+
SENSITIVE = []
|
2658
3679
|
include Aws::Structure
|
2659
3680
|
end
|
2660
3681
|
|
@@ -2678,11 +3699,12 @@ module Aws::RoboMaker
|
|
2678
3699
|
# @return [String]
|
2679
3700
|
#
|
2680
3701
|
# @!attribute [rw] next_token
|
2681
|
-
#
|
2682
|
-
#
|
2683
|
-
#
|
2684
|
-
#
|
2685
|
-
#
|
3702
|
+
# If the previous paginated request did not return all of the
|
3703
|
+
# remaining results, the response object's `nextToken` parameter
|
3704
|
+
# value is set to a token. To retrieve the next set of results, call
|
3705
|
+
# `ListRobotApplications` again and assign that token to the request
|
3706
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3707
|
+
# the previous response object's NextToken parameter is set to null.
|
2686
3708
|
# @return [String]
|
2687
3709
|
#
|
2688
3710
|
# @!attribute [rw] max_results
|
@@ -2710,6 +3732,7 @@ module Aws::RoboMaker
|
|
2710
3732
|
:next_token,
|
2711
3733
|
:max_results,
|
2712
3734
|
:filters)
|
3735
|
+
SENSITIVE = []
|
2713
3736
|
include Aws::Structure
|
2714
3737
|
end
|
2715
3738
|
|
@@ -2719,11 +3742,12 @@ module Aws::RoboMaker
|
|
2719
3742
|
# @return [Array<Types::RobotApplicationSummary>]
|
2720
3743
|
#
|
2721
3744
|
# @!attribute [rw] next_token
|
2722
|
-
#
|
2723
|
-
#
|
2724
|
-
#
|
2725
|
-
#
|
2726
|
-
#
|
3745
|
+
# If the previous paginated request did not return all of the
|
3746
|
+
# remaining results, the response object's `nextToken` parameter
|
3747
|
+
# value is set to a token. To retrieve the next set of results, call
|
3748
|
+
# `ListRobotApplications` again and assign that token to the request
|
3749
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
3750
|
+
# the previous response object's NextToken parameter is set to null.
|
2727
3751
|
# @return [String]
|
2728
3752
|
#
|
2729
3753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobotApplicationsResponse AWS API Documentation
|
@@ -2731,6 +3755,7 @@ module Aws::RoboMaker
|
|
2731
3755
|
class ListRobotApplicationsResponse < Struct.new(
|
2732
3756
|
:robot_application_summaries,
|
2733
3757
|
:next_token)
|
3758
|
+
SENSITIVE = []
|
2734
3759
|
include Aws::Structure
|
2735
3760
|
end
|
2736
3761
|
|
@@ -2749,10 +3774,12 @@ module Aws::RoboMaker
|
|
2749
3774
|
# }
|
2750
3775
|
#
|
2751
3776
|
# @!attribute [rw] next_token
|
2752
|
-
#
|
2753
|
-
#
|
2754
|
-
#
|
2755
|
-
#
|
3777
|
+
# If the previous paginated request did not return all of the
|
3778
|
+
# remaining results, the response object's `nextToken` parameter
|
3779
|
+
# value is set to a token. To retrieve the next set of results, call
|
3780
|
+
# `ListRobots` again and assign that token to the request object's
|
3781
|
+
# `nextToken` parameter. If there are no remaining results, the
|
3782
|
+
# previous response object's NextToken parameter is set to null.
|
2756
3783
|
# @return [String]
|
2757
3784
|
#
|
2758
3785
|
# @!attribute [rw] max_results
|
@@ -2781,6 +3808,7 @@ module Aws::RoboMaker
|
|
2781
3808
|
:next_token,
|
2782
3809
|
:max_results,
|
2783
3810
|
:filters)
|
3811
|
+
SENSITIVE = []
|
2784
3812
|
include Aws::Structure
|
2785
3813
|
end
|
2786
3814
|
|
@@ -2789,10 +3817,12 @@ module Aws::RoboMaker
|
|
2789
3817
|
# @return [Array<Types::Robot>]
|
2790
3818
|
#
|
2791
3819
|
# @!attribute [rw] next_token
|
2792
|
-
#
|
2793
|
-
#
|
2794
|
-
# value
|
2795
|
-
#
|
3820
|
+
# If the previous paginated request did not return all of the
|
3821
|
+
# remaining results, the response object's `nextToken` parameter
|
3822
|
+
# value is set to a token. To retrieve the next set of results, call
|
3823
|
+
# `ListRobots` again and assign that token to the request object's
|
3824
|
+
# `nextToken` parameter. If there are no remaining results, the
|
3825
|
+
# previous response object's NextToken parameter is set to null.
|
2796
3826
|
# @return [String]
|
2797
3827
|
#
|
2798
3828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobotsResponse AWS API Documentation
|
@@ -2800,6 +3830,7 @@ module Aws::RoboMaker
|
|
2800
3830
|
class ListRobotsResponse < Struct.new(
|
2801
3831
|
:robots,
|
2802
3832
|
:next_token)
|
3833
|
+
SENSITIVE = []
|
2803
3834
|
include Aws::Structure
|
2804
3835
|
end
|
2805
3836
|
|
@@ -2823,11 +3854,13 @@ module Aws::RoboMaker
|
|
2823
3854
|
# @return [String]
|
2824
3855
|
#
|
2825
3856
|
# @!attribute [rw] next_token
|
2826
|
-
#
|
2827
|
-
#
|
2828
|
-
#
|
2829
|
-
#
|
2830
|
-
# `nextToken`
|
3857
|
+
# If the previous paginated request did not return all of the
|
3858
|
+
# remaining results, the response object's `nextToken` parameter
|
3859
|
+
# value is set to a token. To retrieve the next set of results, call
|
3860
|
+
# `ListSimulationApplications` again and assign that token to the
|
3861
|
+
# request object's `nextToken` parameter. If there are no remaining
|
3862
|
+
# results, the previous response object's NextToken parameter is set
|
3863
|
+
# to null.
|
2831
3864
|
# @return [String]
|
2832
3865
|
#
|
2833
3866
|
# @!attribute [rw] max_results
|
@@ -2856,6 +3889,7 @@ module Aws::RoboMaker
|
|
2856
3889
|
:next_token,
|
2857
3890
|
:max_results,
|
2858
3891
|
:filters)
|
3892
|
+
SENSITIVE = []
|
2859
3893
|
include Aws::Structure
|
2860
3894
|
end
|
2861
3895
|
|
@@ -2865,11 +3899,13 @@ module Aws::RoboMaker
|
|
2865
3899
|
# @return [Array<Types::SimulationApplicationSummary>]
|
2866
3900
|
#
|
2867
3901
|
# @!attribute [rw] next_token
|
2868
|
-
#
|
2869
|
-
#
|
2870
|
-
#
|
2871
|
-
#
|
2872
|
-
#
|
3902
|
+
# If the previous paginated request did not return all of the
|
3903
|
+
# remaining results, the response object's `nextToken` parameter
|
3904
|
+
# value is set to a token. To retrieve the next set of results, call
|
3905
|
+
# `ListSimulationApplications` again and assign that token to the
|
3906
|
+
# request object's `nextToken` parameter. If there are no remaining
|
3907
|
+
# results, the previous response object's NextToken parameter is set
|
3908
|
+
# to null.
|
2873
3909
|
# @return [String]
|
2874
3910
|
#
|
2875
3911
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationApplicationsResponse AWS API Documentation
|
@@ -2877,6 +3913,7 @@ module Aws::RoboMaker
|
|
2877
3913
|
class ListSimulationApplicationsResponse < Struct.new(
|
2878
3914
|
:simulation_application_summaries,
|
2879
3915
|
:next_token)
|
3916
|
+
SENSITIVE = []
|
2880
3917
|
include Aws::Structure
|
2881
3918
|
end
|
2882
3919
|
|
@@ -2895,11 +3932,13 @@ module Aws::RoboMaker
|
|
2895
3932
|
# }
|
2896
3933
|
#
|
2897
3934
|
# @!attribute [rw] next_token
|
2898
|
-
#
|
2899
|
-
#
|
2900
|
-
#
|
2901
|
-
#
|
2902
|
-
# `nextToken`
|
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
|
+
# `ListSimulationJobBatches` 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.
|
2903
3942
|
# @return [String]
|
2904
3943
|
#
|
2905
3944
|
# @!attribute [rw] max_results
|
@@ -2920,6 +3959,7 @@ module Aws::RoboMaker
|
|
2920
3959
|
:next_token,
|
2921
3960
|
:max_results,
|
2922
3961
|
:filters)
|
3962
|
+
SENSITIVE = []
|
2923
3963
|
include Aws::Structure
|
2924
3964
|
end
|
2925
3965
|
|
@@ -2928,11 +3968,13 @@ module Aws::RoboMaker
|
|
2928
3968
|
# @return [Array<Types::SimulationJobBatchSummary>]
|
2929
3969
|
#
|
2930
3970
|
# @!attribute [rw] next_token
|
2931
|
-
#
|
2932
|
-
#
|
2933
|
-
#
|
2934
|
-
#
|
2935
|
-
# `
|
3971
|
+
# If the previous paginated request did not return all of the
|
3972
|
+
# remaining results, the response object's `nextToken` parameter
|
3973
|
+
# value is set to a token. To retrieve the next set of results, call
|
3974
|
+
# `ListSimulationJobBatches` again and assign that token to the
|
3975
|
+
# request object's `nextToken` parameter. If there are no remaining
|
3976
|
+
# results, the previous response object's NextToken parameter is set
|
3977
|
+
# to null.
|
2936
3978
|
# @return [String]
|
2937
3979
|
#
|
2938
3980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobBatchesResponse AWS API Documentation
|
@@ -2940,6 +3982,7 @@ module Aws::RoboMaker
|
|
2940
3982
|
class ListSimulationJobBatchesResponse < Struct.new(
|
2941
3983
|
:simulation_job_batch_summaries,
|
2942
3984
|
:next_token)
|
3985
|
+
SENSITIVE = []
|
2943
3986
|
include Aws::Structure
|
2944
3987
|
end
|
2945
3988
|
|
@@ -2958,17 +4001,12 @@ module Aws::RoboMaker
|
|
2958
4001
|
# }
|
2959
4002
|
#
|
2960
4003
|
# @!attribute [rw] next_token
|
2961
|
-
#
|
2962
|
-
#
|
2963
|
-
#
|
2964
|
-
#
|
2965
|
-
#
|
2966
|
-
#
|
2967
|
-
# <note markdown="1"> This token should be treated as an opaque identifier that is only
|
2968
|
-
# used to retrieve the next items in a list and not for other
|
2969
|
-
# programmatic purposes.
|
2970
|
-
#
|
2971
|
-
# </note>
|
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
|
+
# `ListSimulationJobs` again and assign that token to the request
|
4008
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4009
|
+
# the previous response object's NextToken parameter is set to null.
|
2972
4010
|
# @return [String]
|
2973
4011
|
#
|
2974
4012
|
# @!attribute [rw] max_results
|
@@ -2998,6 +4036,7 @@ module Aws::RoboMaker
|
|
2998
4036
|
:next_token,
|
2999
4037
|
:max_results,
|
3000
4038
|
:filters)
|
4039
|
+
SENSITIVE = []
|
3001
4040
|
include Aws::Structure
|
3002
4041
|
end
|
3003
4042
|
|
@@ -3007,11 +4046,12 @@ module Aws::RoboMaker
|
|
3007
4046
|
# @return [Array<Types::SimulationJobSummary>]
|
3008
4047
|
#
|
3009
4048
|
# @!attribute [rw] next_token
|
3010
|
-
#
|
3011
|
-
#
|
3012
|
-
#
|
3013
|
-
#
|
3014
|
-
#
|
4049
|
+
# If the previous paginated request did not return all of the
|
4050
|
+
# remaining results, the response object's `nextToken` parameter
|
4051
|
+
# value is set to a token. To retrieve the next set of results, call
|
4052
|
+
# `ListSimulationJobs` again and assign that token to the request
|
4053
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4054
|
+
# the previous response object's NextToken parameter is set to null.
|
3015
4055
|
# @return [String]
|
3016
4056
|
#
|
3017
4057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationJobsResponse AWS API Documentation
|
@@ -3019,6 +4059,7 @@ module Aws::RoboMaker
|
|
3019
4059
|
class ListSimulationJobsResponse < Struct.new(
|
3020
4060
|
:simulation_job_summaries,
|
3021
4061
|
:next_token)
|
4062
|
+
SENSITIVE = []
|
3022
4063
|
include Aws::Structure
|
3023
4064
|
end
|
3024
4065
|
|
@@ -3037,17 +4078,289 @@ module Aws::RoboMaker
|
|
3037
4078
|
#
|
3038
4079
|
class ListTagsForResourceRequest < Struct.new(
|
3039
4080
|
:resource_arn)
|
4081
|
+
SENSITIVE = []
|
4082
|
+
include Aws::Structure
|
4083
|
+
end
|
4084
|
+
|
4085
|
+
# @!attribute [rw] tags
|
4086
|
+
# The list of all tags added to the specified resource.
|
4087
|
+
# @return [Hash<String,String>]
|
4088
|
+
#
|
4089
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListTagsForResourceResponse AWS API Documentation
|
4090
|
+
#
|
4091
|
+
class ListTagsForResourceResponse < Struct.new(
|
4092
|
+
:tags)
|
4093
|
+
SENSITIVE = []
|
4094
|
+
include Aws::Structure
|
4095
|
+
end
|
4096
|
+
|
4097
|
+
# @note When making an API call, you may pass ListWorldExportJobsRequest
|
4098
|
+
# data as a hash:
|
4099
|
+
#
|
4100
|
+
# {
|
4101
|
+
# next_token: "PaginationToken",
|
4102
|
+
# max_results: 1,
|
4103
|
+
# filters: [
|
4104
|
+
# {
|
4105
|
+
# name: "Name",
|
4106
|
+
# values: ["Name"],
|
4107
|
+
# },
|
4108
|
+
# ],
|
4109
|
+
# }
|
4110
|
+
#
|
4111
|
+
# @!attribute [rw] next_token
|
4112
|
+
# If the previous paginated request did not return all of the
|
4113
|
+
# remaining results, the response object's `nextToken` parameter
|
4114
|
+
# value is set to a token. To retrieve the next set of results, call
|
4115
|
+
# `ListWorldExportJobs` again and assign that token to the request
|
4116
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4117
|
+
# the previous response object's NextToken parameter is set to null.
|
4118
|
+
# @return [String]
|
4119
|
+
#
|
4120
|
+
# @!attribute [rw] max_results
|
4121
|
+
# When this parameter is used, `ListWorldExportJobs` only returns
|
4122
|
+
# `maxResults` results in a single page along with a `nextToken`
|
4123
|
+
# response element. The remaining results of the initial request can
|
4124
|
+
# be seen by sending another `ListWorldExportJobs` request with the
|
4125
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
4126
|
+
# this parameter is not used, then `ListWorldExportJobs` returns up to
|
4127
|
+
# 100 results and a `nextToken` value if applicable.
|
4128
|
+
# @return [Integer]
|
4129
|
+
#
|
4130
|
+
# @!attribute [rw] filters
|
4131
|
+
# Optional filters to limit results. You can use `generationJobId` and
|
4132
|
+
# `templateId`.
|
4133
|
+
# @return [Array<Types::Filter>]
|
4134
|
+
#
|
4135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobsRequest AWS API Documentation
|
4136
|
+
#
|
4137
|
+
class ListWorldExportJobsRequest < Struct.new(
|
4138
|
+
:next_token,
|
4139
|
+
:max_results,
|
4140
|
+
:filters)
|
4141
|
+
SENSITIVE = []
|
4142
|
+
include Aws::Structure
|
4143
|
+
end
|
4144
|
+
|
4145
|
+
# @!attribute [rw] world_export_job_summaries
|
4146
|
+
# Summary information for world export jobs.
|
4147
|
+
# @return [Array<Types::WorldExportJobSummary>]
|
4148
|
+
#
|
4149
|
+
# @!attribute [rw] next_token
|
4150
|
+
# If the previous paginated request did not return all of the
|
4151
|
+
# remaining results, the response object's `nextToken` parameter
|
4152
|
+
# value is set to a token. To retrieve the next set of results, call
|
4153
|
+
# `ListWorldExportJobsRequest` again and assign that token to the
|
4154
|
+
# request object's `nextToken` parameter. If there are no remaining
|
4155
|
+
# results, the previous response object's NextToken parameter is set
|
4156
|
+
# to null.
|
4157
|
+
# @return [String]
|
4158
|
+
#
|
4159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobsResponse AWS API Documentation
|
4160
|
+
#
|
4161
|
+
class ListWorldExportJobsResponse < Struct.new(
|
4162
|
+
:world_export_job_summaries,
|
4163
|
+
:next_token)
|
4164
|
+
SENSITIVE = []
|
4165
|
+
include Aws::Structure
|
4166
|
+
end
|
4167
|
+
|
4168
|
+
# @note When making an API call, you may pass ListWorldGenerationJobsRequest
|
4169
|
+
# data as a hash:
|
4170
|
+
#
|
4171
|
+
# {
|
4172
|
+
# next_token: "PaginationToken",
|
4173
|
+
# max_results: 1,
|
4174
|
+
# filters: [
|
4175
|
+
# {
|
4176
|
+
# name: "Name",
|
4177
|
+
# values: ["Name"],
|
4178
|
+
# },
|
4179
|
+
# ],
|
4180
|
+
# }
|
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
|
+
# `ListWorldGenerationJobsRequest` 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
|
+
# @!attribute [rw] max_results
|
4193
|
+
# When this parameter is used, `ListWorldGeneratorJobs` only returns
|
4194
|
+
# `maxResults` results in a single page along with a `nextToken`
|
4195
|
+
# response element. The remaining results of the initial request can
|
4196
|
+
# be seen by sending another `ListWorldGeneratorJobs` request with the
|
4197
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
4198
|
+
# this parameter is not used, then `ListWorldGeneratorJobs` returns up
|
4199
|
+
# to 100 results and a `nextToken` value if applicable.
|
4200
|
+
# @return [Integer]
|
4201
|
+
#
|
4202
|
+
# @!attribute [rw] filters
|
4203
|
+
# Optional filters to limit results. You can use `status` and
|
4204
|
+
# `templateId`.
|
4205
|
+
# @return [Array<Types::Filter>]
|
4206
|
+
#
|
4207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobsRequest AWS API Documentation
|
4208
|
+
#
|
4209
|
+
class ListWorldGenerationJobsRequest < Struct.new(
|
4210
|
+
:next_token,
|
4211
|
+
:max_results,
|
4212
|
+
:filters)
|
4213
|
+
SENSITIVE = []
|
4214
|
+
include Aws::Structure
|
4215
|
+
end
|
4216
|
+
|
4217
|
+
# @!attribute [rw] world_generation_job_summaries
|
4218
|
+
# Summary information for world generator jobs.
|
4219
|
+
# @return [Array<Types::WorldGenerationJobSummary>]
|
4220
|
+
#
|
4221
|
+
# @!attribute [rw] next_token
|
4222
|
+
# If the previous paginated request did not return all of the
|
4223
|
+
# remaining results, the response object's `nextToken` parameter
|
4224
|
+
# value is set to a token. To retrieve the next set of results, call
|
4225
|
+
# `ListWorldGeneratorJobsRequest` again and assign that token to the
|
4226
|
+
# request object's `nextToken` parameter. If there are no remaining
|
4227
|
+
# results, the previous response object's NextToken parameter is set
|
4228
|
+
# to null.
|
4229
|
+
# @return [String]
|
4230
|
+
#
|
4231
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldGenerationJobsResponse AWS API Documentation
|
4232
|
+
#
|
4233
|
+
class ListWorldGenerationJobsResponse < Struct.new(
|
4234
|
+
:world_generation_job_summaries,
|
4235
|
+
:next_token)
|
4236
|
+
SENSITIVE = []
|
4237
|
+
include Aws::Structure
|
4238
|
+
end
|
4239
|
+
|
4240
|
+
# @note When making an API call, you may pass ListWorldTemplatesRequest
|
4241
|
+
# data as a hash:
|
4242
|
+
#
|
4243
|
+
# {
|
4244
|
+
# next_token: "PaginationToken",
|
4245
|
+
# max_results: 1,
|
4246
|
+
# }
|
4247
|
+
#
|
4248
|
+
# @!attribute [rw] next_token
|
4249
|
+
# If the previous paginated request did not return all of the
|
4250
|
+
# remaining results, the response object's `nextToken` parameter
|
4251
|
+
# value is set to a token. To retrieve the next set of results, call
|
4252
|
+
# `ListWorldTemplates` again and assign that token to the request
|
4253
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4254
|
+
# the previous response object's NextToken parameter is set to null.
|
4255
|
+
# @return [String]
|
4256
|
+
#
|
4257
|
+
# @!attribute [rw] max_results
|
4258
|
+
# When this parameter is used, `ListWorldTemplates` only returns
|
4259
|
+
# `maxResults` results in a single page along with a `nextToken`
|
4260
|
+
# response element. The remaining results of the initial request can
|
4261
|
+
# be seen by sending another `ListWorldTemplates` request with the
|
4262
|
+
# returned `nextToken` value. This value can be between 1 and 100. If
|
4263
|
+
# this parameter is not used, then `ListWorldTemplates` returns up to
|
4264
|
+
# 100 results and a `nextToken` value if applicable.
|
4265
|
+
# @return [Integer]
|
4266
|
+
#
|
4267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplatesRequest AWS API Documentation
|
4268
|
+
#
|
4269
|
+
class ListWorldTemplatesRequest < Struct.new(
|
4270
|
+
:next_token,
|
4271
|
+
:max_results)
|
4272
|
+
SENSITIVE = []
|
4273
|
+
include Aws::Structure
|
4274
|
+
end
|
4275
|
+
|
4276
|
+
# @!attribute [rw] template_summaries
|
4277
|
+
# Summary information for templates.
|
4278
|
+
# @return [Array<Types::TemplateSummary>]
|
4279
|
+
#
|
4280
|
+
# @!attribute [rw] next_token
|
4281
|
+
# If the previous paginated request did not return all of the
|
4282
|
+
# remaining results, the response object's `nextToken` parameter
|
4283
|
+
# value is set to a token. To retrieve the next set of results, call
|
4284
|
+
# `ListWorldTemplates` again and assign that token to the request
|
4285
|
+
# object's `nextToken` parameter. If there are no remaining results,
|
4286
|
+
# the previous response object's NextToken parameter is set to null.
|
4287
|
+
# @return [String]
|
4288
|
+
#
|
4289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldTemplatesResponse AWS API Documentation
|
4290
|
+
#
|
4291
|
+
class ListWorldTemplatesResponse < Struct.new(
|
4292
|
+
:template_summaries,
|
4293
|
+
:next_token)
|
4294
|
+
SENSITIVE = []
|
4295
|
+
include Aws::Structure
|
4296
|
+
end
|
4297
|
+
|
4298
|
+
# @note When making an API call, you may pass ListWorldsRequest
|
4299
|
+
# data as a hash:
|
4300
|
+
#
|
4301
|
+
# {
|
4302
|
+
# next_token: "PaginationToken",
|
4303
|
+
# max_results: 1,
|
4304
|
+
# filters: [
|
4305
|
+
# {
|
4306
|
+
# name: "Name",
|
4307
|
+
# values: ["Name"],
|
4308
|
+
# },
|
4309
|
+
# ],
|
4310
|
+
# }
|
4311
|
+
#
|
4312
|
+
# @!attribute [rw] next_token
|
4313
|
+
# If the previous paginated request did not return all of the
|
4314
|
+
# remaining results, the response object's `nextToken` parameter
|
4315
|
+
# value is set to a token. To retrieve the next set of results, call
|
4316
|
+
# `ListWorlds` again and assign that token to the request object's
|
4317
|
+
# `nextToken` parameter. If there are no remaining results, the
|
4318
|
+
# previous response object's NextToken parameter is set to null.
|
4319
|
+
# @return [String]
|
4320
|
+
#
|
4321
|
+
# @!attribute [rw] max_results
|
4322
|
+
# When this parameter is used, `ListWorlds` only returns `maxResults`
|
4323
|
+
# results in a single page along with a `nextToken` response element.
|
4324
|
+
# The remaining results of the initial request can be seen by sending
|
4325
|
+
# another `ListWorlds` request with the returned `nextToken` value.
|
4326
|
+
# This value can be between 1 and 100. If this parameter is not used,
|
4327
|
+
# then `ListWorlds` returns up to 100 results and a `nextToken` value
|
4328
|
+
# if applicable.
|
4329
|
+
# @return [Integer]
|
4330
|
+
#
|
4331
|
+
# @!attribute [rw] filters
|
4332
|
+
# Optional filters to limit results. You can use `status`.
|
4333
|
+
# @return [Array<Types::Filter>]
|
4334
|
+
#
|
4335
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldsRequest AWS API Documentation
|
4336
|
+
#
|
4337
|
+
class ListWorldsRequest < Struct.new(
|
4338
|
+
:next_token,
|
4339
|
+
:max_results,
|
4340
|
+
:filters)
|
4341
|
+
SENSITIVE = []
|
3040
4342
|
include Aws::Structure
|
3041
4343
|
end
|
3042
4344
|
|
3043
|
-
# @!attribute [rw]
|
3044
|
-
#
|
3045
|
-
# @return [
|
4345
|
+
# @!attribute [rw] world_summaries
|
4346
|
+
# Summary information for worlds.
|
4347
|
+
# @return [Array<Types::WorldSummary>]
|
3046
4348
|
#
|
3047
|
-
#
|
4349
|
+
# @!attribute [rw] next_token
|
4350
|
+
# If the previous paginated request did not return all of the
|
4351
|
+
# remaining results, the response object's `nextToken` parameter
|
4352
|
+
# value is set to a token. To retrieve the next set of results, call
|
4353
|
+
# `ListWorlds` again and assign that token to the request object's
|
4354
|
+
# `nextToken` parameter. If there are no remaining results, the
|
4355
|
+
# previous response object's NextToken parameter is set to null.
|
4356
|
+
# @return [String]
|
3048
4357
|
#
|
3049
|
-
|
3050
|
-
|
4358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldsResponse AWS API Documentation
|
4359
|
+
#
|
4360
|
+
class ListWorldsResponse < Struct.new(
|
4361
|
+
:world_summaries,
|
4362
|
+
:next_token)
|
4363
|
+
SENSITIVE = []
|
3051
4364
|
include Aws::Structure
|
3052
4365
|
end
|
3053
4366
|
|
@@ -3068,6 +4381,7 @@ module Aws::RoboMaker
|
|
3068
4381
|
#
|
3069
4382
|
class LoggingConfig < Struct.new(
|
3070
4383
|
:record_all_ros_topics)
|
4384
|
+
SENSITIVE = []
|
3071
4385
|
include Aws::Structure
|
3072
4386
|
end
|
3073
4387
|
|
@@ -3091,6 +4405,7 @@ module Aws::RoboMaker
|
|
3091
4405
|
:network_interface_id,
|
3092
4406
|
:private_ip_address,
|
3093
4407
|
:public_ip_address)
|
4408
|
+
SENSITIVE = []
|
3094
4409
|
include Aws::Structure
|
3095
4410
|
end
|
3096
4411
|
|
@@ -3117,6 +4432,7 @@ module Aws::RoboMaker
|
|
3117
4432
|
class OutputLocation < Struct.new(
|
3118
4433
|
:s3_bucket,
|
3119
4434
|
:s3_prefix)
|
4435
|
+
SENSITIVE = []
|
3120
4436
|
include Aws::Structure
|
3121
4437
|
end
|
3122
4438
|
|
@@ -3143,6 +4459,7 @@ module Aws::RoboMaker
|
|
3143
4459
|
#
|
3144
4460
|
class PortForwardingConfig < Struct.new(
|
3145
4461
|
:port_mappings)
|
4462
|
+
SENSITIVE = []
|
3146
4463
|
include Aws::Structure
|
3147
4464
|
end
|
3148
4465
|
|
@@ -3177,6 +4494,7 @@ module Aws::RoboMaker
|
|
3177
4494
|
:job_port,
|
3178
4495
|
:application_port,
|
3179
4496
|
:enable_on_public_ip)
|
4497
|
+
SENSITIVE = []
|
3180
4498
|
include Aws::Structure
|
3181
4499
|
end
|
3182
4500
|
|
@@ -3233,6 +4551,7 @@ module Aws::RoboMaker
|
|
3233
4551
|
:percent_done,
|
3234
4552
|
:estimated_time_remaining_seconds,
|
3235
4553
|
:target_resource)
|
4554
|
+
SENSITIVE = []
|
3236
4555
|
include Aws::Structure
|
3237
4556
|
end
|
3238
4557
|
|
@@ -3257,6 +4576,7 @@ module Aws::RoboMaker
|
|
3257
4576
|
class RegisterRobotRequest < Struct.new(
|
3258
4577
|
:fleet,
|
3259
4578
|
:robot)
|
4579
|
+
SENSITIVE = []
|
3260
4580
|
include Aws::Structure
|
3261
4581
|
end
|
3262
4582
|
|
@@ -3274,6 +4594,7 @@ module Aws::RoboMaker
|
|
3274
4594
|
class RegisterRobotResponse < Struct.new(
|
3275
4595
|
:fleet,
|
3276
4596
|
:robot)
|
4597
|
+
SENSITIVE = []
|
3277
4598
|
include Aws::Structure
|
3278
4599
|
end
|
3279
4600
|
|
@@ -3300,6 +4621,7 @@ module Aws::RoboMaker
|
|
3300
4621
|
class RenderingEngine < Struct.new(
|
3301
4622
|
:name,
|
3302
4623
|
:version)
|
4624
|
+
SENSITIVE = []
|
3303
4625
|
include Aws::Structure
|
3304
4626
|
end
|
3305
4627
|
|
@@ -3312,6 +4634,7 @@ module Aws::RoboMaker
|
|
3312
4634
|
#
|
3313
4635
|
class ResourceAlreadyExistsException < Struct.new(
|
3314
4636
|
:message)
|
4637
|
+
SENSITIVE = []
|
3315
4638
|
include Aws::Structure
|
3316
4639
|
end
|
3317
4640
|
|
@@ -3324,6 +4647,7 @@ module Aws::RoboMaker
|
|
3324
4647
|
#
|
3325
4648
|
class ResourceNotFoundException < Struct.new(
|
3326
4649
|
:message)
|
4650
|
+
SENSITIVE = []
|
3327
4651
|
include Aws::Structure
|
3328
4652
|
end
|
3329
4653
|
|
@@ -3342,6 +4666,7 @@ module Aws::RoboMaker
|
|
3342
4666
|
#
|
3343
4667
|
class RestartSimulationJobRequest < Struct.new(
|
3344
4668
|
:job)
|
4669
|
+
SENSITIVE = []
|
3345
4670
|
include Aws::Structure
|
3346
4671
|
end
|
3347
4672
|
|
@@ -3400,6 +4725,7 @@ module Aws::RoboMaker
|
|
3400
4725
|
:architecture,
|
3401
4726
|
:last_deployment_job,
|
3402
4727
|
:last_deployment_time)
|
4728
|
+
SENSITIVE = []
|
3403
4729
|
include Aws::Structure
|
3404
4730
|
end
|
3405
4731
|
|
@@ -3448,6 +4774,7 @@ module Aws::RoboMaker
|
|
3448
4774
|
:application,
|
3449
4775
|
:application_version,
|
3450
4776
|
:launch_config)
|
4777
|
+
SENSITIVE = []
|
3451
4778
|
include Aws::Structure
|
3452
4779
|
end
|
3453
4780
|
|
@@ -3482,6 +4809,7 @@ module Aws::RoboMaker
|
|
3482
4809
|
:version,
|
3483
4810
|
:last_updated_at,
|
3484
4811
|
:robot_software_suite)
|
4812
|
+
SENSITIVE = []
|
3485
4813
|
include Aws::Structure
|
3486
4814
|
end
|
3487
4815
|
|
@@ -3527,6 +4855,7 @@ module Aws::RoboMaker
|
|
3527
4855
|
:progress_detail,
|
3528
4856
|
:failure_reason,
|
3529
4857
|
:failure_code)
|
4858
|
+
SENSITIVE = []
|
3530
4859
|
include Aws::Structure
|
3531
4860
|
end
|
3532
4861
|
|
@@ -3553,6 +4882,7 @@ module Aws::RoboMaker
|
|
3553
4882
|
class RobotSoftwareSuite < Struct.new(
|
3554
4883
|
:name,
|
3555
4884
|
:version)
|
4885
|
+
SENSITIVE = []
|
3556
4886
|
include Aws::Structure
|
3557
4887
|
end
|
3558
4888
|
|
@@ -3571,6 +4901,7 @@ module Aws::RoboMaker
|
|
3571
4901
|
class S3KeyOutput < Struct.new(
|
3572
4902
|
:s3_key,
|
3573
4903
|
:etag)
|
4904
|
+
SENSITIVE = []
|
3574
4905
|
include Aws::Structure
|
3575
4906
|
end
|
3576
4907
|
|
@@ -3603,6 +4934,7 @@ module Aws::RoboMaker
|
|
3603
4934
|
:bucket,
|
3604
4935
|
:key,
|
3605
4936
|
:etag)
|
4937
|
+
SENSITIVE = []
|
3606
4938
|
include Aws::Structure
|
3607
4939
|
end
|
3608
4940
|
|
@@ -3615,6 +4947,7 @@ module Aws::RoboMaker
|
|
3615
4947
|
#
|
3616
4948
|
class ServiceUnavailableException < Struct.new(
|
3617
4949
|
:message)
|
4950
|
+
SENSITIVE = []
|
3618
4951
|
include Aws::Structure
|
3619
4952
|
end
|
3620
4953
|
|
@@ -3643,6 +4976,11 @@ module Aws::RoboMaker
|
|
3643
4976
|
# },
|
3644
4977
|
# stream_ui: false,
|
3645
4978
|
# },
|
4979
|
+
# world_configs: [
|
4980
|
+
# {
|
4981
|
+
# world: "Arn",
|
4982
|
+
# },
|
4983
|
+
# ],
|
3646
4984
|
# }
|
3647
4985
|
#
|
3648
4986
|
# @!attribute [rw] application
|
@@ -3657,12 +4995,18 @@ module Aws::RoboMaker
|
|
3657
4995
|
# The launch configuration for the simulation application.
|
3658
4996
|
# @return [Types::LaunchConfig]
|
3659
4997
|
#
|
4998
|
+
# @!attribute [rw] world_configs
|
4999
|
+
# A list of world configurations.
|
5000
|
+
# @return [Array<Types::WorldConfig>]
|
5001
|
+
#
|
3660
5002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationApplicationConfig AWS API Documentation
|
3661
5003
|
#
|
3662
5004
|
class SimulationApplicationConfig < Struct.new(
|
3663
5005
|
:application,
|
3664
5006
|
:application_version,
|
3665
|
-
:launch_config
|
5007
|
+
:launch_config,
|
5008
|
+
:world_configs)
|
5009
|
+
SENSITIVE = []
|
3666
5010
|
include Aws::Structure
|
3667
5011
|
end
|
3668
5012
|
|
@@ -3702,6 +5046,7 @@ module Aws::RoboMaker
|
|
3702
5046
|
:last_updated_at,
|
3703
5047
|
:robot_software_suite,
|
3704
5048
|
:simulation_software_suite)
|
5049
|
+
SENSITIVE = []
|
3705
5050
|
include Aws::Structure
|
3706
5051
|
end
|
3707
5052
|
|
@@ -3829,6 +5174,7 @@ module Aws::RoboMaker
|
|
3829
5174
|
:vpc_config,
|
3830
5175
|
:network_interface,
|
3831
5176
|
:compute)
|
5177
|
+
SENSITIVE = []
|
3832
5178
|
include Aws::Structure
|
3833
5179
|
end
|
3834
5180
|
|
@@ -3923,6 +5269,7 @@ module Aws::RoboMaker
|
|
3923
5269
|
:failed_request_count,
|
3924
5270
|
:pending_request_count,
|
3925
5271
|
:created_request_count)
|
5272
|
+
SENSITIVE = []
|
3926
5273
|
include Aws::Structure
|
3927
5274
|
end
|
3928
5275
|
|
@@ -3987,6 +5334,11 @@ module Aws::RoboMaker
|
|
3987
5334
|
# },
|
3988
5335
|
# stream_ui: false,
|
3989
5336
|
# },
|
5337
|
+
# world_configs: [
|
5338
|
+
# {
|
5339
|
+
# world: "Arn",
|
5340
|
+
# },
|
5341
|
+
# ],
|
3990
5342
|
# },
|
3991
5343
|
# ],
|
3992
5344
|
# data_sources: [
|
@@ -4096,6 +5448,7 @@ module Aws::RoboMaker
|
|
4096
5448
|
:vpc_config,
|
4097
5449
|
:compute,
|
4098
5450
|
:tags)
|
5451
|
+
SENSITIVE = []
|
4099
5452
|
include Aws::Structure
|
4100
5453
|
end
|
4101
5454
|
|
@@ -4140,6 +5493,7 @@ module Aws::RoboMaker
|
|
4140
5493
|
:simulation_application_names,
|
4141
5494
|
:robot_application_names,
|
4142
5495
|
:data_source_names)
|
5496
|
+
SENSITIVE = []
|
4143
5497
|
include Aws::Structure
|
4144
5498
|
end
|
4145
5499
|
|
@@ -4166,6 +5520,7 @@ module Aws::RoboMaker
|
|
4166
5520
|
class SimulationSoftwareSuite < Struct.new(
|
4167
5521
|
:name,
|
4168
5522
|
:version)
|
5523
|
+
SENSITIVE = []
|
4169
5524
|
include Aws::Structure
|
4170
5525
|
end
|
4171
5526
|
|
@@ -4194,6 +5549,7 @@ module Aws::RoboMaker
|
|
4194
5549
|
:s3_key,
|
4195
5550
|
:etag,
|
4196
5551
|
:architecture)
|
5552
|
+
SENSITIVE = []
|
4197
5553
|
include Aws::Structure
|
4198
5554
|
end
|
4199
5555
|
|
@@ -4226,6 +5582,7 @@ module Aws::RoboMaker
|
|
4226
5582
|
:s3_bucket,
|
4227
5583
|
:s3_key,
|
4228
5584
|
:architecture)
|
5585
|
+
SENSITIVE = []
|
4229
5586
|
include Aws::Structure
|
4230
5587
|
end
|
4231
5588
|
|
@@ -4295,6 +5652,11 @@ module Aws::RoboMaker
|
|
4295
5652
|
# },
|
4296
5653
|
# stream_ui: false,
|
4297
5654
|
# },
|
5655
|
+
# world_configs: [
|
5656
|
+
# {
|
5657
|
+
# world: "Arn",
|
5658
|
+
# },
|
5659
|
+
# ],
|
4298
5660
|
# },
|
4299
5661
|
# ],
|
4300
5662
|
# data_sources: [
|
@@ -4350,6 +5712,7 @@ module Aws::RoboMaker
|
|
4350
5712
|
:batch_policy,
|
4351
5713
|
:create_simulation_job_requests,
|
4352
5714
|
:tags)
|
5715
|
+
SENSITIVE = []
|
4353
5716
|
include Aws::Structure
|
4354
5717
|
end
|
4355
5718
|
|
@@ -4466,6 +5829,7 @@ module Aws::RoboMaker
|
|
4466
5829
|
:pending_requests,
|
4467
5830
|
:created_requests,
|
4468
5831
|
:tags)
|
5832
|
+
SENSITIVE = []
|
4469
5833
|
include Aws::Structure
|
4470
5834
|
end
|
4471
5835
|
|
@@ -4494,6 +5858,7 @@ module Aws::RoboMaker
|
|
4494
5858
|
class SyncDeploymentJobRequest < Struct.new(
|
4495
5859
|
:client_request_token,
|
4496
5860
|
:fleet)
|
5861
|
+
SENSITIVE = []
|
4497
5862
|
include Aws::Structure
|
4498
5863
|
end
|
4499
5864
|
|
@@ -4602,6 +5967,7 @@ module Aws::RoboMaker
|
|
4602
5967
|
:failure_reason,
|
4603
5968
|
:failure_code,
|
4604
5969
|
:created_at)
|
5970
|
+
SENSITIVE = []
|
4605
5971
|
include Aws::Structure
|
4606
5972
|
end
|
4607
5973
|
|
@@ -4630,6 +5996,7 @@ module Aws::RoboMaker
|
|
4630
5996
|
class TagResourceRequest < Struct.new(
|
4631
5997
|
:resource_arn,
|
4632
5998
|
:tags)
|
5999
|
+
SENSITIVE = []
|
4633
6000
|
include Aws::Structure
|
4634
6001
|
end
|
4635
6002
|
|
@@ -4637,6 +6004,64 @@ module Aws::RoboMaker
|
|
4637
6004
|
#
|
4638
6005
|
class TagResourceResponse < Aws::EmptyStructure; end
|
4639
6006
|
|
6007
|
+
# Information about a template location.
|
6008
|
+
#
|
6009
|
+
# @note When making an API call, you may pass TemplateLocation
|
6010
|
+
# data as a hash:
|
6011
|
+
#
|
6012
|
+
# {
|
6013
|
+
# s3_bucket: "S3Bucket", # required
|
6014
|
+
# s3_key: "S3Key", # required
|
6015
|
+
# }
|
6016
|
+
#
|
6017
|
+
# @!attribute [rw] s3_bucket
|
6018
|
+
# The Amazon S3 bucket name.
|
6019
|
+
# @return [String]
|
6020
|
+
#
|
6021
|
+
# @!attribute [rw] s3_key
|
6022
|
+
# The list of S3 keys identifying the data source files.
|
6023
|
+
# @return [String]
|
6024
|
+
#
|
6025
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/TemplateLocation AWS API Documentation
|
6026
|
+
#
|
6027
|
+
class TemplateLocation < Struct.new(
|
6028
|
+
:s3_bucket,
|
6029
|
+
:s3_key)
|
6030
|
+
SENSITIVE = []
|
6031
|
+
include Aws::Structure
|
6032
|
+
end
|
6033
|
+
|
6034
|
+
# Summary information for a template.
|
6035
|
+
#
|
6036
|
+
# @!attribute [rw] arn
|
6037
|
+
# The Amazon Resource Name (ARN) of the template.
|
6038
|
+
# @return [String]
|
6039
|
+
#
|
6040
|
+
# @!attribute [rw] created_at
|
6041
|
+
# The time, in milliseconds since the epoch, when the template was
|
6042
|
+
# created.
|
6043
|
+
# @return [Time]
|
6044
|
+
#
|
6045
|
+
# @!attribute [rw] last_updated_at
|
6046
|
+
# The time, in milliseconds since the epoch, when the template was
|
6047
|
+
# last updated.
|
6048
|
+
# @return [Time]
|
6049
|
+
#
|
6050
|
+
# @!attribute [rw] name
|
6051
|
+
# The name of the template.
|
6052
|
+
# @return [String]
|
6053
|
+
#
|
6054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/TemplateSummary AWS API Documentation
|
6055
|
+
#
|
6056
|
+
class TemplateSummary < Struct.new(
|
6057
|
+
:arn,
|
6058
|
+
:created_at,
|
6059
|
+
:last_updated_at,
|
6060
|
+
:name)
|
6061
|
+
SENSITIVE = []
|
6062
|
+
include Aws::Structure
|
6063
|
+
end
|
6064
|
+
|
4640
6065
|
# AWS RoboMaker is temporarily unable to process the request. Try your
|
4641
6066
|
# call again.
|
4642
6067
|
#
|
@@ -4647,6 +6072,7 @@ module Aws::RoboMaker
|
|
4647
6072
|
#
|
4648
6073
|
class ThrottlingException < Struct.new(
|
4649
6074
|
:message)
|
6075
|
+
SENSITIVE = []
|
4650
6076
|
include Aws::Structure
|
4651
6077
|
end
|
4652
6078
|
|
@@ -4673,6 +6099,7 @@ module Aws::RoboMaker
|
|
4673
6099
|
class UntagResourceRequest < Struct.new(
|
4674
6100
|
:resource_arn,
|
4675
6101
|
:tag_keys)
|
6102
|
+
SENSITIVE = []
|
4676
6103
|
include Aws::Structure
|
4677
6104
|
end
|
4678
6105
|
|
@@ -4723,6 +6150,7 @@ module Aws::RoboMaker
|
|
4723
6150
|
:sources,
|
4724
6151
|
:robot_software_suite,
|
4725
6152
|
:current_revision_id)
|
6153
|
+
SENSITIVE = []
|
4726
6154
|
include Aws::Structure
|
4727
6155
|
end
|
4728
6156
|
|
@@ -4766,6 +6194,7 @@ module Aws::RoboMaker
|
|
4766
6194
|
:robot_software_suite,
|
4767
6195
|
:last_updated_at,
|
4768
6196
|
:revision_id)
|
6197
|
+
SENSITIVE = []
|
4769
6198
|
include Aws::Structure
|
4770
6199
|
end
|
4771
6200
|
|
@@ -4829,6 +6258,7 @@ module Aws::RoboMaker
|
|
4829
6258
|
:robot_software_suite,
|
4830
6259
|
:rendering_engine,
|
4831
6260
|
:current_revision_id)
|
6261
|
+
SENSITIVE = []
|
4832
6262
|
include Aws::Structure
|
4833
6263
|
end
|
4834
6264
|
|
@@ -4882,6 +6312,76 @@ module Aws::RoboMaker
|
|
4882
6312
|
:rendering_engine,
|
4883
6313
|
:last_updated_at,
|
4884
6314
|
:revision_id)
|
6315
|
+
SENSITIVE = []
|
6316
|
+
include Aws::Structure
|
6317
|
+
end
|
6318
|
+
|
6319
|
+
# @note When making an API call, you may pass UpdateWorldTemplateRequest
|
6320
|
+
# data as a hash:
|
6321
|
+
#
|
6322
|
+
# {
|
6323
|
+
# template: "Arn", # required
|
6324
|
+
# name: "TemplateName",
|
6325
|
+
# template_body: "Json",
|
6326
|
+
# template_location: {
|
6327
|
+
# s3_bucket: "S3Bucket", # required
|
6328
|
+
# s3_key: "S3Key", # required
|
6329
|
+
# },
|
6330
|
+
# }
|
6331
|
+
#
|
6332
|
+
# @!attribute [rw] template
|
6333
|
+
# The Amazon Resource Name (arn) of the world template to update.
|
6334
|
+
# @return [String]
|
6335
|
+
#
|
6336
|
+
# @!attribute [rw] name
|
6337
|
+
# The name of the template.
|
6338
|
+
# @return [String]
|
6339
|
+
#
|
6340
|
+
# @!attribute [rw] template_body
|
6341
|
+
# The world template body.
|
6342
|
+
# @return [String]
|
6343
|
+
#
|
6344
|
+
# @!attribute [rw] template_location
|
6345
|
+
# The location of the world template.
|
6346
|
+
# @return [Types::TemplateLocation]
|
6347
|
+
#
|
6348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateWorldTemplateRequest AWS API Documentation
|
6349
|
+
#
|
6350
|
+
class UpdateWorldTemplateRequest < Struct.new(
|
6351
|
+
:template,
|
6352
|
+
:name,
|
6353
|
+
:template_body,
|
6354
|
+
:template_location)
|
6355
|
+
SENSITIVE = []
|
6356
|
+
include Aws::Structure
|
6357
|
+
end
|
6358
|
+
|
6359
|
+
# @!attribute [rw] arn
|
6360
|
+
# The Amazon Resource Name (arn) of the world template.
|
6361
|
+
# @return [String]
|
6362
|
+
#
|
6363
|
+
# @!attribute [rw] name
|
6364
|
+
# The name of the world template.
|
6365
|
+
# @return [String]
|
6366
|
+
#
|
6367
|
+
# @!attribute [rw] created_at
|
6368
|
+
# The time, in milliseconds since the epoch, when the world template
|
6369
|
+
# was created.
|
6370
|
+
# @return [Time]
|
6371
|
+
#
|
6372
|
+
# @!attribute [rw] last_updated_at
|
6373
|
+
# The time, in milliseconds since the epoch, when the world template
|
6374
|
+
# was last updated.
|
6375
|
+
# @return [Time]
|
6376
|
+
#
|
6377
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateWorldTemplateResponse AWS API Documentation
|
6378
|
+
#
|
6379
|
+
class UpdateWorldTemplateResponse < Struct.new(
|
6380
|
+
:arn,
|
6381
|
+
:name,
|
6382
|
+
:created_at,
|
6383
|
+
:last_updated_at)
|
6384
|
+
SENSITIVE = []
|
4885
6385
|
include Aws::Structure
|
4886
6386
|
end
|
4887
6387
|
|
@@ -4917,6 +6417,7 @@ module Aws::RoboMaker
|
|
4917
6417
|
:subnets,
|
4918
6418
|
:security_groups,
|
4919
6419
|
:assign_public_ip)
|
6420
|
+
SENSITIVE = []
|
4920
6421
|
include Aws::Structure
|
4921
6422
|
end
|
4922
6423
|
|
@@ -4945,6 +6446,269 @@ module Aws::RoboMaker
|
|
4945
6446
|
:security_groups,
|
4946
6447
|
:vpc_id,
|
4947
6448
|
:assign_public_ip)
|
6449
|
+
SENSITIVE = []
|
6450
|
+
include Aws::Structure
|
6451
|
+
end
|
6452
|
+
|
6453
|
+
# Configuration information for a world.
|
6454
|
+
#
|
6455
|
+
# @note When making an API call, you may pass WorldConfig
|
6456
|
+
# data as a hash:
|
6457
|
+
#
|
6458
|
+
# {
|
6459
|
+
# world: "Arn",
|
6460
|
+
# }
|
6461
|
+
#
|
6462
|
+
# @!attribute [rw] world
|
6463
|
+
# The world generated by Simulation WorldForge.
|
6464
|
+
# @return [String]
|
6465
|
+
#
|
6466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldConfig AWS API Documentation
|
6467
|
+
#
|
6468
|
+
class WorldConfig < Struct.new(
|
6469
|
+
:world)
|
6470
|
+
SENSITIVE = []
|
6471
|
+
include Aws::Structure
|
6472
|
+
end
|
6473
|
+
|
6474
|
+
# The number of worlds that will be created. You can configure the
|
6475
|
+
# number of unique floorplans and the number of unique interiors for
|
6476
|
+
# each floor plan. For example, if you want 1 world with 20 unique
|
6477
|
+
# interiors, you set `floorplanCount = 1` and `interiorCountPerFloorplan
|
6478
|
+
# = 20`. This will result in 20 worlds (`floorplanCount` *
|
6479
|
+
# `interiorCountPerFloorplan)`.
|
6480
|
+
#
|
6481
|
+
# If you set `floorplanCount = 4` and `interiorCountPerFloorplan = 5`,
|
6482
|
+
# there will be 20 worlds with 5 unique floor plans.
|
6483
|
+
#
|
6484
|
+
# @note When making an API call, you may pass WorldCount
|
6485
|
+
# data as a hash:
|
6486
|
+
#
|
6487
|
+
# {
|
6488
|
+
# floorplan_count: 1,
|
6489
|
+
# interior_count_per_floorplan: 1,
|
6490
|
+
# }
|
6491
|
+
#
|
6492
|
+
# @!attribute [rw] floorplan_count
|
6493
|
+
# The number of unique floorplans.
|
6494
|
+
# @return [Integer]
|
6495
|
+
#
|
6496
|
+
# @!attribute [rw] interior_count_per_floorplan
|
6497
|
+
# The number of unique interiors per floorplan.
|
6498
|
+
# @return [Integer]
|
6499
|
+
#
|
6500
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldCount AWS API Documentation
|
6501
|
+
#
|
6502
|
+
class WorldCount < Struct.new(
|
6503
|
+
:floorplan_count,
|
6504
|
+
:interior_count_per_floorplan)
|
6505
|
+
SENSITIVE = []
|
6506
|
+
include Aws::Structure
|
6507
|
+
end
|
6508
|
+
|
6509
|
+
# Information about a world export job.
|
6510
|
+
#
|
6511
|
+
# @!attribute [rw] arn
|
6512
|
+
# The Amazon Resource Name (ARN) of the world export job.
|
6513
|
+
# @return [String]
|
6514
|
+
#
|
6515
|
+
# @!attribute [rw] status
|
6516
|
+
# The status of the world export job.
|
6517
|
+
#
|
6518
|
+
# Pending
|
6519
|
+
#
|
6520
|
+
# : The world export job request is pending.
|
6521
|
+
#
|
6522
|
+
# Running
|
6523
|
+
#
|
6524
|
+
# : The world export job is running.
|
6525
|
+
#
|
6526
|
+
# Completed
|
6527
|
+
#
|
6528
|
+
# : The world export job completed.
|
6529
|
+
#
|
6530
|
+
# Failed
|
6531
|
+
#
|
6532
|
+
# : The world export job failed. See `failureCode` for more
|
6533
|
+
# information.
|
6534
|
+
#
|
6535
|
+
# Canceled
|
6536
|
+
#
|
6537
|
+
# : The world export job was cancelled.
|
6538
|
+
#
|
6539
|
+
# Canceling
|
6540
|
+
#
|
6541
|
+
# : The world export job is being cancelled.
|
6542
|
+
# @return [String]
|
6543
|
+
#
|
6544
|
+
# @!attribute [rw] created_at
|
6545
|
+
# The time, in milliseconds since the epoch, when the world export job
|
6546
|
+
# was created.
|
6547
|
+
# @return [Time]
|
6548
|
+
#
|
6549
|
+
# @!attribute [rw] worlds
|
6550
|
+
# A list of worlds.
|
6551
|
+
# @return [Array<String>]
|
6552
|
+
#
|
6553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldExportJobSummary AWS API Documentation
|
6554
|
+
#
|
6555
|
+
class WorldExportJobSummary < Struct.new(
|
6556
|
+
:arn,
|
6557
|
+
:status,
|
6558
|
+
:created_at,
|
6559
|
+
:worlds)
|
6560
|
+
SENSITIVE = []
|
6561
|
+
include Aws::Structure
|
6562
|
+
end
|
6563
|
+
|
6564
|
+
# Information about a failed world.
|
6565
|
+
#
|
6566
|
+
# @!attribute [rw] failure_code
|
6567
|
+
# The failure code of the world export job if it failed:
|
6568
|
+
#
|
6569
|
+
# InternalServiceError
|
6570
|
+
#
|
6571
|
+
# : Internal service error.
|
6572
|
+
#
|
6573
|
+
# LimitExceeded
|
6574
|
+
#
|
6575
|
+
# : The requested resource exceeds the maximum number allowed, or the
|
6576
|
+
# number of concurrent stream requests exceeds the maximum number
|
6577
|
+
# allowed.
|
6578
|
+
#
|
6579
|
+
# ResourceNotFound
|
6580
|
+
#
|
6581
|
+
# : The specified resource could not be found.
|
6582
|
+
#
|
6583
|
+
# RequestThrottled
|
6584
|
+
#
|
6585
|
+
# : The request was throttled.
|
6586
|
+
#
|
6587
|
+
# InvalidInput
|
6588
|
+
#
|
6589
|
+
# : An input parameter in the request is not valid.
|
6590
|
+
# @return [String]
|
6591
|
+
#
|
6592
|
+
# @!attribute [rw] sample_failure_reason
|
6593
|
+
# The sample reason why the world failed. World errors are aggregated.
|
6594
|
+
# A sample is used as the `sampleFailureReason`.
|
6595
|
+
# @return [String]
|
6596
|
+
#
|
6597
|
+
# @!attribute [rw] failure_count
|
6598
|
+
# The number of failed worlds.
|
6599
|
+
# @return [Integer]
|
6600
|
+
#
|
6601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldFailure AWS API Documentation
|
6602
|
+
#
|
6603
|
+
class WorldFailure < Struct.new(
|
6604
|
+
:failure_code,
|
6605
|
+
:sample_failure_reason,
|
6606
|
+
:failure_count)
|
6607
|
+
SENSITIVE = []
|
6608
|
+
include Aws::Structure
|
6609
|
+
end
|
6610
|
+
|
6611
|
+
# Information about a world generator job.
|
6612
|
+
#
|
6613
|
+
# @!attribute [rw] arn
|
6614
|
+
# The Amazon Resource Name (ARN) of the world generator job.
|
6615
|
+
# @return [String]
|
6616
|
+
#
|
6617
|
+
# @!attribute [rw] template
|
6618
|
+
# The Amazon Resource Name (arn) of the world template.
|
6619
|
+
# @return [String]
|
6620
|
+
#
|
6621
|
+
# @!attribute [rw] created_at
|
6622
|
+
# The time, in milliseconds since the epoch, when the world generator
|
6623
|
+
# job was created.
|
6624
|
+
# @return [Time]
|
6625
|
+
#
|
6626
|
+
# @!attribute [rw] status
|
6627
|
+
# The status of the world generator job:
|
6628
|
+
#
|
6629
|
+
# Pending
|
6630
|
+
#
|
6631
|
+
# : The world generator job request is pending.
|
6632
|
+
#
|
6633
|
+
# Running
|
6634
|
+
#
|
6635
|
+
# : The world generator job is running.
|
6636
|
+
#
|
6637
|
+
# Completed
|
6638
|
+
#
|
6639
|
+
# : The world generator job completed.
|
6640
|
+
#
|
6641
|
+
# Failed
|
6642
|
+
#
|
6643
|
+
# : The world generator job failed. See `failureCode` for more
|
6644
|
+
# information.
|
6645
|
+
#
|
6646
|
+
# PartialFailed
|
6647
|
+
#
|
6648
|
+
# : Some worlds did not generate.
|
6649
|
+
#
|
6650
|
+
# Canceled
|
6651
|
+
#
|
6652
|
+
# : The world generator job was cancelled.
|
6653
|
+
#
|
6654
|
+
# Canceling
|
6655
|
+
#
|
6656
|
+
# : The world generator job is being cancelled.
|
6657
|
+
# @return [String]
|
6658
|
+
#
|
6659
|
+
# @!attribute [rw] world_count
|
6660
|
+
# Information about the world count.
|
6661
|
+
# @return [Types::WorldCount]
|
6662
|
+
#
|
6663
|
+
# @!attribute [rw] succeeded_world_count
|
6664
|
+
# The number of worlds that were generated.
|
6665
|
+
# @return [Integer]
|
6666
|
+
#
|
6667
|
+
# @!attribute [rw] failed_world_count
|
6668
|
+
# The number of worlds that failed.
|
6669
|
+
# @return [Integer]
|
6670
|
+
#
|
6671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldGenerationJobSummary AWS API Documentation
|
6672
|
+
#
|
6673
|
+
class WorldGenerationJobSummary < Struct.new(
|
6674
|
+
:arn,
|
6675
|
+
:template,
|
6676
|
+
:created_at,
|
6677
|
+
:status,
|
6678
|
+
:world_count,
|
6679
|
+
:succeeded_world_count,
|
6680
|
+
:failed_world_count)
|
6681
|
+
SENSITIVE = []
|
6682
|
+
include Aws::Structure
|
6683
|
+
end
|
6684
|
+
|
6685
|
+
# Information about a world.
|
6686
|
+
#
|
6687
|
+
# @!attribute [rw] arn
|
6688
|
+
# The Amazon Resource Name (ARN) of the world.
|
6689
|
+
# @return [String]
|
6690
|
+
#
|
6691
|
+
# @!attribute [rw] created_at
|
6692
|
+
# The time, in milliseconds since the epoch, when the world was
|
6693
|
+
# created.
|
6694
|
+
# @return [Time]
|
6695
|
+
#
|
6696
|
+
# @!attribute [rw] generation_job
|
6697
|
+
# The Amazon Resource Name (arn) of the world generation job.
|
6698
|
+
# @return [String]
|
6699
|
+
#
|
6700
|
+
# @!attribute [rw] template
|
6701
|
+
# The Amazon Resource Name (arn) of the world template.
|
6702
|
+
# @return [String]
|
6703
|
+
#
|
6704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldSummary AWS API Documentation
|
6705
|
+
#
|
6706
|
+
class WorldSummary < Struct.new(
|
6707
|
+
:arn,
|
6708
|
+
:created_at,
|
6709
|
+
:generation_job,
|
6710
|
+
:template)
|
6711
|
+
SENSITIVE = []
|
4948
6712
|
include Aws::Structure
|
4949
6713
|
end
|
4950
6714
|
|