aws-sdk-robomaker 1.61.0 → 1.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-robomaker/client.rb +1 -1
- data/lib/aws-sdk-robomaker/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-robomaker.rb +1 -1
- data/sig/client.rbs +1337 -0
- data/sig/errors.rbs +43 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1370 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1370 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::RoboMaker
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class BatchDeleteWorldsRequest
|
12
|
+
attr_accessor worlds: ::Array[::String]
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class BatchDeleteWorldsResponse
|
17
|
+
attr_accessor unprocessed_worlds: ::Array[::String]
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class BatchDescribeSimulationJobRequest
|
22
|
+
attr_accessor jobs: ::Array[::String]
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class BatchDescribeSimulationJobResponse
|
27
|
+
attr_accessor jobs: ::Array[Types::SimulationJob]
|
28
|
+
attr_accessor unprocessed_jobs: ::Array[::String]
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class BatchPolicy
|
33
|
+
attr_accessor timeout_in_seconds: ::Integer
|
34
|
+
attr_accessor max_concurrency: ::Integer
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class CancelDeploymentJobRequest
|
39
|
+
attr_accessor job: ::String
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class CancelDeploymentJobResponse < Aws::EmptyStructure
|
44
|
+
end
|
45
|
+
|
46
|
+
class CancelSimulationJobBatchRequest
|
47
|
+
attr_accessor batch: ::String
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class CancelSimulationJobBatchResponse < Aws::EmptyStructure
|
52
|
+
end
|
53
|
+
|
54
|
+
class CancelSimulationJobRequest
|
55
|
+
attr_accessor job: ::String
|
56
|
+
SENSITIVE: []
|
57
|
+
end
|
58
|
+
|
59
|
+
class CancelSimulationJobResponse < Aws::EmptyStructure
|
60
|
+
end
|
61
|
+
|
62
|
+
class CancelWorldExportJobRequest
|
63
|
+
attr_accessor job: ::String
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class CancelWorldExportJobResponse < Aws::EmptyStructure
|
68
|
+
end
|
69
|
+
|
70
|
+
class CancelWorldGenerationJobRequest
|
71
|
+
attr_accessor job: ::String
|
72
|
+
SENSITIVE: []
|
73
|
+
end
|
74
|
+
|
75
|
+
class CancelWorldGenerationJobResponse < Aws::EmptyStructure
|
76
|
+
end
|
77
|
+
|
78
|
+
class Compute
|
79
|
+
attr_accessor simulation_unit_limit: ::Integer
|
80
|
+
attr_accessor compute_type: ("CPU" | "GPU_AND_CPU")
|
81
|
+
attr_accessor gpu_unit_limit: ::Integer
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class ComputeResponse
|
86
|
+
attr_accessor simulation_unit_limit: ::Integer
|
87
|
+
attr_accessor compute_type: ("CPU" | "GPU_AND_CPU")
|
88
|
+
attr_accessor gpu_unit_limit: ::Integer
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class ConcurrentDeploymentException
|
93
|
+
attr_accessor message: ::String
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class CreateDeploymentJobRequest
|
98
|
+
attr_accessor deployment_config: Types::DeploymentConfig
|
99
|
+
attr_accessor client_request_token: ::String
|
100
|
+
attr_accessor fleet: ::String
|
101
|
+
attr_accessor deployment_application_configs: ::Array[Types::DeploymentApplicationConfig]
|
102
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
103
|
+
SENSITIVE: []
|
104
|
+
end
|
105
|
+
|
106
|
+
class CreateDeploymentJobResponse
|
107
|
+
attr_accessor arn: ::String
|
108
|
+
attr_accessor fleet: ::String
|
109
|
+
attr_accessor status: ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
|
110
|
+
attr_accessor deployment_application_configs: ::Array[Types::DeploymentApplicationConfig]
|
111
|
+
attr_accessor failure_reason: ::String
|
112
|
+
attr_accessor failure_code: ("ResourceNotFound" | "EnvironmentSetupError" | "EtagMismatch" | "FailureThresholdBreached" | "RobotDeploymentAborted" | "RobotDeploymentNoResponse" | "RobotAgentConnectionTimeout" | "GreengrassDeploymentFailed" | "InvalidGreengrassGroup" | "MissingRobotArchitecture" | "MissingRobotApplicationArchitecture" | "MissingRobotDeploymentResource" | "GreengrassGroupVersionDoesNotExist" | "LambdaDeleted" | "ExtractingBundleFailure" | "PreLaunchFileFailure" | "PostLaunchFileFailure" | "BadPermissionError" | "DownloadConditionFailed" | "BadLambdaAssociated" | "InternalServerError" | "RobotApplicationDoesNotExist" | "DeploymentFleetDoesNotExist" | "FleetDeploymentTimeout")
|
113
|
+
attr_accessor created_at: ::Time
|
114
|
+
attr_accessor deployment_config: Types::DeploymentConfig
|
115
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class CreateFleetRequest
|
120
|
+
attr_accessor name: ::String
|
121
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class CreateFleetResponse
|
126
|
+
attr_accessor arn: ::String
|
127
|
+
attr_accessor name: ::String
|
128
|
+
attr_accessor created_at: ::Time
|
129
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class CreateRobotApplicationRequest
|
134
|
+
attr_accessor name: ::String
|
135
|
+
attr_accessor sources: ::Array[Types::SourceConfig]
|
136
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
137
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
138
|
+
attr_accessor environment: Types::Environment
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class CreateRobotApplicationResponse
|
143
|
+
attr_accessor arn: ::String
|
144
|
+
attr_accessor name: ::String
|
145
|
+
attr_accessor version: ::String
|
146
|
+
attr_accessor sources: ::Array[Types::Source]
|
147
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
148
|
+
attr_accessor last_updated_at: ::Time
|
149
|
+
attr_accessor revision_id: ::String
|
150
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
151
|
+
attr_accessor environment: Types::Environment
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateRobotApplicationVersionRequest
|
156
|
+
attr_accessor application: ::String
|
157
|
+
attr_accessor current_revision_id: ::String
|
158
|
+
attr_accessor s3_etags: ::Array[::String]
|
159
|
+
attr_accessor image_digest: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class CreateRobotApplicationVersionResponse
|
164
|
+
attr_accessor arn: ::String
|
165
|
+
attr_accessor name: ::String
|
166
|
+
attr_accessor version: ::String
|
167
|
+
attr_accessor sources: ::Array[Types::Source]
|
168
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
169
|
+
attr_accessor last_updated_at: ::Time
|
170
|
+
attr_accessor revision_id: ::String
|
171
|
+
attr_accessor environment: Types::Environment
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class CreateRobotRequest
|
176
|
+
attr_accessor name: ::String
|
177
|
+
attr_accessor architecture: ("X86_64" | "ARM64" | "ARMHF")
|
178
|
+
attr_accessor greengrass_group_id: ::String
|
179
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
180
|
+
SENSITIVE: []
|
181
|
+
end
|
182
|
+
|
183
|
+
class CreateRobotResponse
|
184
|
+
attr_accessor arn: ::String
|
185
|
+
attr_accessor name: ::String
|
186
|
+
attr_accessor created_at: ::Time
|
187
|
+
attr_accessor greengrass_group_id: ::String
|
188
|
+
attr_accessor architecture: ("X86_64" | "ARM64" | "ARMHF")
|
189
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class CreateSimulationApplicationRequest
|
194
|
+
attr_accessor name: ::String
|
195
|
+
attr_accessor sources: ::Array[Types::SourceConfig]
|
196
|
+
attr_accessor simulation_software_suite: Types::SimulationSoftwareSuite
|
197
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
198
|
+
attr_accessor rendering_engine: Types::RenderingEngine
|
199
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
200
|
+
attr_accessor environment: Types::Environment
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class CreateSimulationApplicationResponse
|
205
|
+
attr_accessor arn: ::String
|
206
|
+
attr_accessor name: ::String
|
207
|
+
attr_accessor version: ::String
|
208
|
+
attr_accessor sources: ::Array[Types::Source]
|
209
|
+
attr_accessor simulation_software_suite: Types::SimulationSoftwareSuite
|
210
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
211
|
+
attr_accessor rendering_engine: Types::RenderingEngine
|
212
|
+
attr_accessor last_updated_at: ::Time
|
213
|
+
attr_accessor revision_id: ::String
|
214
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
215
|
+
attr_accessor environment: Types::Environment
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class CreateSimulationApplicationVersionRequest
|
220
|
+
attr_accessor application: ::String
|
221
|
+
attr_accessor current_revision_id: ::String
|
222
|
+
attr_accessor s3_etags: ::Array[::String]
|
223
|
+
attr_accessor image_digest: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class CreateSimulationApplicationVersionResponse
|
228
|
+
attr_accessor arn: ::String
|
229
|
+
attr_accessor name: ::String
|
230
|
+
attr_accessor version: ::String
|
231
|
+
attr_accessor sources: ::Array[Types::Source]
|
232
|
+
attr_accessor simulation_software_suite: Types::SimulationSoftwareSuite
|
233
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
234
|
+
attr_accessor rendering_engine: Types::RenderingEngine
|
235
|
+
attr_accessor last_updated_at: ::Time
|
236
|
+
attr_accessor revision_id: ::String
|
237
|
+
attr_accessor environment: Types::Environment
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class CreateSimulationJobRequest
|
242
|
+
attr_accessor client_request_token: ::String
|
243
|
+
attr_accessor output_location: Types::OutputLocation
|
244
|
+
attr_accessor logging_config: Types::LoggingConfig
|
245
|
+
attr_accessor max_job_duration_in_seconds: ::Integer
|
246
|
+
attr_accessor iam_role: ::String
|
247
|
+
attr_accessor failure_behavior: ("Fail" | "Continue")
|
248
|
+
attr_accessor robot_applications: ::Array[Types::RobotApplicationConfig]
|
249
|
+
attr_accessor simulation_applications: ::Array[Types::SimulationApplicationConfig]
|
250
|
+
attr_accessor data_sources: ::Array[Types::DataSourceConfig]
|
251
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
252
|
+
attr_accessor vpc_config: Types::VPCConfig
|
253
|
+
attr_accessor compute: Types::Compute
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class CreateSimulationJobResponse
|
258
|
+
attr_accessor arn: ::String
|
259
|
+
attr_accessor status: ("Pending" | "Preparing" | "Running" | "Restarting" | "Completed" | "Failed" | "RunningFailed" | "Terminating" | "Terminated" | "Canceled")
|
260
|
+
attr_accessor last_started_at: ::Time
|
261
|
+
attr_accessor last_updated_at: ::Time
|
262
|
+
attr_accessor failure_behavior: ("Fail" | "Continue")
|
263
|
+
attr_accessor failure_code: ("InternalServiceError" | "RobotApplicationCrash" | "SimulationApplicationCrash" | "RobotApplicationHealthCheckFailure" | "SimulationApplicationHealthCheckFailure" | "BadPermissionsRobotApplication" | "BadPermissionsSimulationApplication" | "BadPermissionsS3Object" | "BadPermissionsS3Output" | "BadPermissionsCloudwatchLogs" | "SubnetIpLimitExceeded" | "ENILimitExceeded" | "BadPermissionsUserCredentials" | "InvalidBundleRobotApplication" | "InvalidBundleSimulationApplication" | "InvalidS3Resource" | "ThrottlingError" | "LimitExceeded" | "MismatchedEtag" | "RobotApplicationVersionMismatchedEtag" | "SimulationApplicationVersionMismatchedEtag" | "ResourceNotFound" | "RequestThrottled" | "BatchTimedOut" | "BatchCanceled" | "InvalidInput" | "WrongRegionS3Bucket" | "WrongRegionS3Output" | "WrongRegionRobotApplication" | "WrongRegionSimulationApplication" | "UploadContentMismatchError")
|
264
|
+
attr_accessor client_request_token: ::String
|
265
|
+
attr_accessor output_location: Types::OutputLocation
|
266
|
+
attr_accessor logging_config: Types::LoggingConfig
|
267
|
+
attr_accessor max_job_duration_in_seconds: ::Integer
|
268
|
+
attr_accessor simulation_time_millis: ::Integer
|
269
|
+
attr_accessor iam_role: ::String
|
270
|
+
attr_accessor robot_applications: ::Array[Types::RobotApplicationConfig]
|
271
|
+
attr_accessor simulation_applications: ::Array[Types::SimulationApplicationConfig]
|
272
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
273
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
274
|
+
attr_accessor vpc_config: Types::VPCConfigResponse
|
275
|
+
attr_accessor compute: Types::ComputeResponse
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class CreateWorldExportJobRequest
|
280
|
+
attr_accessor client_request_token: ::String
|
281
|
+
attr_accessor worlds: ::Array[::String]
|
282
|
+
attr_accessor output_location: Types::OutputLocation
|
283
|
+
attr_accessor iam_role: ::String
|
284
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class CreateWorldExportJobResponse
|
289
|
+
attr_accessor arn: ::String
|
290
|
+
attr_accessor status: ("Pending" | "Running" | "Completed" | "Failed" | "Canceling" | "Canceled")
|
291
|
+
attr_accessor created_at: ::Time
|
292
|
+
attr_accessor failure_code: ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AccessDenied")
|
293
|
+
attr_accessor client_request_token: ::String
|
294
|
+
attr_accessor output_location: Types::OutputLocation
|
295
|
+
attr_accessor iam_role: ::String
|
296
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class CreateWorldGenerationJobRequest
|
301
|
+
attr_accessor client_request_token: ::String
|
302
|
+
attr_accessor template: ::String
|
303
|
+
attr_accessor world_count: Types::WorldCount
|
304
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
305
|
+
attr_accessor world_tags: ::Hash[::String, ::String]
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class CreateWorldGenerationJobResponse
|
310
|
+
attr_accessor arn: ::String
|
311
|
+
attr_accessor status: ("Pending" | "Running" | "Completed" | "Failed" | "PartialFailed" | "Canceling" | "Canceled")
|
312
|
+
attr_accessor created_at: ::Time
|
313
|
+
attr_accessor failure_code: ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AllWorldGenerationFailed")
|
314
|
+
attr_accessor client_request_token: ::String
|
315
|
+
attr_accessor template: ::String
|
316
|
+
attr_accessor world_count: Types::WorldCount
|
317
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
318
|
+
attr_accessor world_tags: ::Hash[::String, ::String]
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class CreateWorldTemplateRequest
|
323
|
+
attr_accessor client_request_token: ::String
|
324
|
+
attr_accessor name: ::String
|
325
|
+
attr_accessor template_body: ::String
|
326
|
+
attr_accessor template_location: Types::TemplateLocation
|
327
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class CreateWorldTemplateResponse
|
332
|
+
attr_accessor arn: ::String
|
333
|
+
attr_accessor client_request_token: ::String
|
334
|
+
attr_accessor created_at: ::Time
|
335
|
+
attr_accessor name: ::String
|
336
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class DataSource
|
341
|
+
attr_accessor name: ::String
|
342
|
+
attr_accessor s3_bucket: ::String
|
343
|
+
attr_accessor s3_keys: ::Array[Types::S3KeyOutput]
|
344
|
+
attr_accessor type: ("Prefix" | "Archive" | "File")
|
345
|
+
attr_accessor destination: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class DataSourceConfig
|
350
|
+
attr_accessor name: ::String
|
351
|
+
attr_accessor s3_bucket: ::String
|
352
|
+
attr_accessor s3_keys: ::Array[::String]
|
353
|
+
attr_accessor type: ("Prefix" | "Archive" | "File")
|
354
|
+
attr_accessor destination: ::String
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class DeleteFleetRequest
|
359
|
+
attr_accessor fleet: ::String
|
360
|
+
SENSITIVE: []
|
361
|
+
end
|
362
|
+
|
363
|
+
class DeleteFleetResponse < Aws::EmptyStructure
|
364
|
+
end
|
365
|
+
|
366
|
+
class DeleteRobotApplicationRequest
|
367
|
+
attr_accessor application: ::String
|
368
|
+
attr_accessor application_version: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class DeleteRobotApplicationResponse < Aws::EmptyStructure
|
373
|
+
end
|
374
|
+
|
375
|
+
class DeleteRobotRequest
|
376
|
+
attr_accessor robot: ::String
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class DeleteRobotResponse < Aws::EmptyStructure
|
381
|
+
end
|
382
|
+
|
383
|
+
class DeleteSimulationApplicationRequest
|
384
|
+
attr_accessor application: ::String
|
385
|
+
attr_accessor application_version: ::String
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class DeleteSimulationApplicationResponse < Aws::EmptyStructure
|
390
|
+
end
|
391
|
+
|
392
|
+
class DeleteWorldTemplateRequest
|
393
|
+
attr_accessor template: ::String
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class DeleteWorldTemplateResponse < Aws::EmptyStructure
|
398
|
+
end
|
399
|
+
|
400
|
+
class DeploymentApplicationConfig
|
401
|
+
attr_accessor application: ::String
|
402
|
+
attr_accessor application_version: ::String
|
403
|
+
attr_accessor launch_config: Types::DeploymentLaunchConfig
|
404
|
+
SENSITIVE: []
|
405
|
+
end
|
406
|
+
|
407
|
+
class DeploymentConfig
|
408
|
+
attr_accessor concurrent_deployment_percentage: ::Integer
|
409
|
+
attr_accessor failure_threshold_percentage: ::Integer
|
410
|
+
attr_accessor robot_deployment_timeout_in_seconds: ::Integer
|
411
|
+
attr_accessor download_condition_file: Types::S3Object
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class DeploymentJob
|
416
|
+
attr_accessor arn: ::String
|
417
|
+
attr_accessor fleet: ::String
|
418
|
+
attr_accessor status: ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
|
419
|
+
attr_accessor deployment_application_configs: ::Array[Types::DeploymentApplicationConfig]
|
420
|
+
attr_accessor deployment_config: Types::DeploymentConfig
|
421
|
+
attr_accessor failure_reason: ::String
|
422
|
+
attr_accessor failure_code: ("ResourceNotFound" | "EnvironmentSetupError" | "EtagMismatch" | "FailureThresholdBreached" | "RobotDeploymentAborted" | "RobotDeploymentNoResponse" | "RobotAgentConnectionTimeout" | "GreengrassDeploymentFailed" | "InvalidGreengrassGroup" | "MissingRobotArchitecture" | "MissingRobotApplicationArchitecture" | "MissingRobotDeploymentResource" | "GreengrassGroupVersionDoesNotExist" | "LambdaDeleted" | "ExtractingBundleFailure" | "PreLaunchFileFailure" | "PostLaunchFileFailure" | "BadPermissionError" | "DownloadConditionFailed" | "BadLambdaAssociated" | "InternalServerError" | "RobotApplicationDoesNotExist" | "DeploymentFleetDoesNotExist" | "FleetDeploymentTimeout")
|
423
|
+
attr_accessor created_at: ::Time
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class DeploymentLaunchConfig
|
428
|
+
attr_accessor package_name: ::String
|
429
|
+
attr_accessor pre_launch_file: ::String
|
430
|
+
attr_accessor launch_file: ::String
|
431
|
+
attr_accessor post_launch_file: ::String
|
432
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class DeregisterRobotRequest
|
437
|
+
attr_accessor fleet: ::String
|
438
|
+
attr_accessor robot: ::String
|
439
|
+
SENSITIVE: []
|
440
|
+
end
|
441
|
+
|
442
|
+
class DeregisterRobotResponse
|
443
|
+
attr_accessor fleet: ::String
|
444
|
+
attr_accessor robot: ::String
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class DescribeDeploymentJobRequest
|
449
|
+
attr_accessor job: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class DescribeDeploymentJobResponse
|
454
|
+
attr_accessor arn: ::String
|
455
|
+
attr_accessor fleet: ::String
|
456
|
+
attr_accessor status: ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
|
457
|
+
attr_accessor deployment_config: Types::DeploymentConfig
|
458
|
+
attr_accessor deployment_application_configs: ::Array[Types::DeploymentApplicationConfig]
|
459
|
+
attr_accessor failure_reason: ::String
|
460
|
+
attr_accessor failure_code: ("ResourceNotFound" | "EnvironmentSetupError" | "EtagMismatch" | "FailureThresholdBreached" | "RobotDeploymentAborted" | "RobotDeploymentNoResponse" | "RobotAgentConnectionTimeout" | "GreengrassDeploymentFailed" | "InvalidGreengrassGroup" | "MissingRobotArchitecture" | "MissingRobotApplicationArchitecture" | "MissingRobotDeploymentResource" | "GreengrassGroupVersionDoesNotExist" | "LambdaDeleted" | "ExtractingBundleFailure" | "PreLaunchFileFailure" | "PostLaunchFileFailure" | "BadPermissionError" | "DownloadConditionFailed" | "BadLambdaAssociated" | "InternalServerError" | "RobotApplicationDoesNotExist" | "DeploymentFleetDoesNotExist" | "FleetDeploymentTimeout")
|
461
|
+
attr_accessor created_at: ::Time
|
462
|
+
attr_accessor robot_deployment_summary: ::Array[Types::RobotDeployment]
|
463
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class DescribeFleetRequest
|
468
|
+
attr_accessor fleet: ::String
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class DescribeFleetResponse
|
473
|
+
attr_accessor name: ::String
|
474
|
+
attr_accessor arn: ::String
|
475
|
+
attr_accessor robots: ::Array[Types::Robot]
|
476
|
+
attr_accessor created_at: ::Time
|
477
|
+
attr_accessor last_deployment_status: ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
|
478
|
+
attr_accessor last_deployment_job: ::String
|
479
|
+
attr_accessor last_deployment_time: ::Time
|
480
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class DescribeRobotApplicationRequest
|
485
|
+
attr_accessor application: ::String
|
486
|
+
attr_accessor application_version: ::String
|
487
|
+
SENSITIVE: []
|
488
|
+
end
|
489
|
+
|
490
|
+
class DescribeRobotApplicationResponse
|
491
|
+
attr_accessor arn: ::String
|
492
|
+
attr_accessor name: ::String
|
493
|
+
attr_accessor version: ::String
|
494
|
+
attr_accessor sources: ::Array[Types::Source]
|
495
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
496
|
+
attr_accessor revision_id: ::String
|
497
|
+
attr_accessor last_updated_at: ::Time
|
498
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
499
|
+
attr_accessor environment: Types::Environment
|
500
|
+
attr_accessor image_digest: ::String
|
501
|
+
SENSITIVE: []
|
502
|
+
end
|
503
|
+
|
504
|
+
class DescribeRobotRequest
|
505
|
+
attr_accessor robot: ::String
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class DescribeRobotResponse
|
510
|
+
attr_accessor arn: ::String
|
511
|
+
attr_accessor name: ::String
|
512
|
+
attr_accessor fleet_arn: ::String
|
513
|
+
attr_accessor status: ("Available" | "Registered" | "PendingNewDeployment" | "Deploying" | "Failed" | "InSync" | "NoResponse")
|
514
|
+
attr_accessor greengrass_group_id: ::String
|
515
|
+
attr_accessor created_at: ::Time
|
516
|
+
attr_accessor architecture: ("X86_64" | "ARM64" | "ARMHF")
|
517
|
+
attr_accessor last_deployment_job: ::String
|
518
|
+
attr_accessor last_deployment_time: ::Time
|
519
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class DescribeSimulationApplicationRequest
|
524
|
+
attr_accessor application: ::String
|
525
|
+
attr_accessor application_version: ::String
|
526
|
+
SENSITIVE: []
|
527
|
+
end
|
528
|
+
|
529
|
+
class DescribeSimulationApplicationResponse
|
530
|
+
attr_accessor arn: ::String
|
531
|
+
attr_accessor name: ::String
|
532
|
+
attr_accessor version: ::String
|
533
|
+
attr_accessor sources: ::Array[Types::Source]
|
534
|
+
attr_accessor simulation_software_suite: Types::SimulationSoftwareSuite
|
535
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
536
|
+
attr_accessor rendering_engine: Types::RenderingEngine
|
537
|
+
attr_accessor revision_id: ::String
|
538
|
+
attr_accessor last_updated_at: ::Time
|
539
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
540
|
+
attr_accessor environment: Types::Environment
|
541
|
+
attr_accessor image_digest: ::String
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class DescribeSimulationJobBatchRequest
|
546
|
+
attr_accessor batch: ::String
|
547
|
+
SENSITIVE: []
|
548
|
+
end
|
549
|
+
|
550
|
+
class DescribeSimulationJobBatchResponse
|
551
|
+
attr_accessor arn: ::String
|
552
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Completed" | "Canceled" | "Canceling" | "Completing" | "TimingOut" | "TimedOut")
|
553
|
+
attr_accessor last_updated_at: ::Time
|
554
|
+
attr_accessor created_at: ::Time
|
555
|
+
attr_accessor client_request_token: ::String
|
556
|
+
attr_accessor batch_policy: Types::BatchPolicy
|
557
|
+
attr_accessor failure_code: ("InternalServiceError")
|
558
|
+
attr_accessor failure_reason: ::String
|
559
|
+
attr_accessor failed_requests: ::Array[Types::FailedCreateSimulationJobRequest]
|
560
|
+
attr_accessor pending_requests: ::Array[Types::SimulationJobRequest]
|
561
|
+
attr_accessor created_requests: ::Array[Types::SimulationJobSummary]
|
562
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class DescribeSimulationJobRequest
|
567
|
+
attr_accessor job: ::String
|
568
|
+
SENSITIVE: []
|
569
|
+
end
|
570
|
+
|
571
|
+
class DescribeSimulationJobResponse
|
572
|
+
attr_accessor arn: ::String
|
573
|
+
attr_accessor name: ::String
|
574
|
+
attr_accessor status: ("Pending" | "Preparing" | "Running" | "Restarting" | "Completed" | "Failed" | "RunningFailed" | "Terminating" | "Terminated" | "Canceled")
|
575
|
+
attr_accessor last_started_at: ::Time
|
576
|
+
attr_accessor last_updated_at: ::Time
|
577
|
+
attr_accessor failure_behavior: ("Fail" | "Continue")
|
578
|
+
attr_accessor failure_code: ("InternalServiceError" | "RobotApplicationCrash" | "SimulationApplicationCrash" | "RobotApplicationHealthCheckFailure" | "SimulationApplicationHealthCheckFailure" | "BadPermissionsRobotApplication" | "BadPermissionsSimulationApplication" | "BadPermissionsS3Object" | "BadPermissionsS3Output" | "BadPermissionsCloudwatchLogs" | "SubnetIpLimitExceeded" | "ENILimitExceeded" | "BadPermissionsUserCredentials" | "InvalidBundleRobotApplication" | "InvalidBundleSimulationApplication" | "InvalidS3Resource" | "ThrottlingError" | "LimitExceeded" | "MismatchedEtag" | "RobotApplicationVersionMismatchedEtag" | "SimulationApplicationVersionMismatchedEtag" | "ResourceNotFound" | "RequestThrottled" | "BatchTimedOut" | "BatchCanceled" | "InvalidInput" | "WrongRegionS3Bucket" | "WrongRegionS3Output" | "WrongRegionRobotApplication" | "WrongRegionSimulationApplication" | "UploadContentMismatchError")
|
579
|
+
attr_accessor failure_reason: ::String
|
580
|
+
attr_accessor client_request_token: ::String
|
581
|
+
attr_accessor output_location: Types::OutputLocation
|
582
|
+
attr_accessor logging_config: Types::LoggingConfig
|
583
|
+
attr_accessor max_job_duration_in_seconds: ::Integer
|
584
|
+
attr_accessor simulation_time_millis: ::Integer
|
585
|
+
attr_accessor iam_role: ::String
|
586
|
+
attr_accessor robot_applications: ::Array[Types::RobotApplicationConfig]
|
587
|
+
attr_accessor simulation_applications: ::Array[Types::SimulationApplicationConfig]
|
588
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
589
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
590
|
+
attr_accessor vpc_config: Types::VPCConfigResponse
|
591
|
+
attr_accessor network_interface: Types::NetworkInterface
|
592
|
+
attr_accessor compute: Types::ComputeResponse
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class DescribeWorldExportJobRequest
|
597
|
+
attr_accessor job: ::String
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class DescribeWorldExportJobResponse
|
602
|
+
attr_accessor arn: ::String
|
603
|
+
attr_accessor status: ("Pending" | "Running" | "Completed" | "Failed" | "Canceling" | "Canceled")
|
604
|
+
attr_accessor created_at: ::Time
|
605
|
+
attr_accessor failure_code: ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AccessDenied")
|
606
|
+
attr_accessor failure_reason: ::String
|
607
|
+
attr_accessor client_request_token: ::String
|
608
|
+
attr_accessor worlds: ::Array[::String]
|
609
|
+
attr_accessor output_location: Types::OutputLocation
|
610
|
+
attr_accessor iam_role: ::String
|
611
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
612
|
+
SENSITIVE: []
|
613
|
+
end
|
614
|
+
|
615
|
+
class DescribeWorldGenerationJobRequest
|
616
|
+
attr_accessor job: ::String
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
620
|
+
class DescribeWorldGenerationJobResponse
|
621
|
+
attr_accessor arn: ::String
|
622
|
+
attr_accessor status: ("Pending" | "Running" | "Completed" | "Failed" | "PartialFailed" | "Canceling" | "Canceled")
|
623
|
+
attr_accessor created_at: ::Time
|
624
|
+
attr_accessor failure_code: ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AllWorldGenerationFailed")
|
625
|
+
attr_accessor failure_reason: ::String
|
626
|
+
attr_accessor client_request_token: ::String
|
627
|
+
attr_accessor template: ::String
|
628
|
+
attr_accessor world_count: Types::WorldCount
|
629
|
+
attr_accessor finished_worlds_summary: Types::FinishedWorldsSummary
|
630
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
631
|
+
attr_accessor world_tags: ::Hash[::String, ::String]
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class DescribeWorldRequest
|
636
|
+
attr_accessor world: ::String
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class DescribeWorldResponse
|
641
|
+
attr_accessor arn: ::String
|
642
|
+
attr_accessor generation_job: ::String
|
643
|
+
attr_accessor template: ::String
|
644
|
+
attr_accessor created_at: ::Time
|
645
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
646
|
+
attr_accessor world_description_body: ::String
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class DescribeWorldTemplateRequest
|
651
|
+
attr_accessor template: ::String
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class DescribeWorldTemplateResponse
|
656
|
+
attr_accessor arn: ::String
|
657
|
+
attr_accessor client_request_token: ::String
|
658
|
+
attr_accessor name: ::String
|
659
|
+
attr_accessor created_at: ::Time
|
660
|
+
attr_accessor last_updated_at: ::Time
|
661
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
662
|
+
attr_accessor version: ::String
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class Environment
|
667
|
+
attr_accessor uri: ::String
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class FailedCreateSimulationJobRequest
|
672
|
+
attr_accessor request: Types::SimulationJobRequest
|
673
|
+
attr_accessor failure_reason: ::String
|
674
|
+
attr_accessor failure_code: ("InternalServiceError" | "RobotApplicationCrash" | "SimulationApplicationCrash" | "RobotApplicationHealthCheckFailure" | "SimulationApplicationHealthCheckFailure" | "BadPermissionsRobotApplication" | "BadPermissionsSimulationApplication" | "BadPermissionsS3Object" | "BadPermissionsS3Output" | "BadPermissionsCloudwatchLogs" | "SubnetIpLimitExceeded" | "ENILimitExceeded" | "BadPermissionsUserCredentials" | "InvalidBundleRobotApplication" | "InvalidBundleSimulationApplication" | "InvalidS3Resource" | "ThrottlingError" | "LimitExceeded" | "MismatchedEtag" | "RobotApplicationVersionMismatchedEtag" | "SimulationApplicationVersionMismatchedEtag" | "ResourceNotFound" | "RequestThrottled" | "BatchTimedOut" | "BatchCanceled" | "InvalidInput" | "WrongRegionS3Bucket" | "WrongRegionS3Output" | "WrongRegionRobotApplication" | "WrongRegionSimulationApplication" | "UploadContentMismatchError")
|
675
|
+
attr_accessor failed_at: ::Time
|
676
|
+
SENSITIVE: []
|
677
|
+
end
|
678
|
+
|
679
|
+
class FailureSummary
|
680
|
+
attr_accessor total_failure_count: ::Integer
|
681
|
+
attr_accessor failures: ::Array[Types::WorldFailure]
|
682
|
+
SENSITIVE: []
|
683
|
+
end
|
684
|
+
|
685
|
+
class Filter
|
686
|
+
attr_accessor name: ::String
|
687
|
+
attr_accessor values: ::Array[::String]
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class FinishedWorldsSummary
|
692
|
+
attr_accessor finished_count: ::Integer
|
693
|
+
attr_accessor succeeded_worlds: ::Array[::String]
|
694
|
+
attr_accessor failure_summary: Types::FailureSummary
|
695
|
+
SENSITIVE: []
|
696
|
+
end
|
697
|
+
|
698
|
+
class Fleet
|
699
|
+
attr_accessor name: ::String
|
700
|
+
attr_accessor arn: ::String
|
701
|
+
attr_accessor created_at: ::Time
|
702
|
+
attr_accessor last_deployment_status: ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
|
703
|
+
attr_accessor last_deployment_job: ::String
|
704
|
+
attr_accessor last_deployment_time: ::Time
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class GetWorldTemplateBodyRequest
|
709
|
+
attr_accessor template: ::String
|
710
|
+
attr_accessor generation_job: ::String
|
711
|
+
SENSITIVE: []
|
712
|
+
end
|
713
|
+
|
714
|
+
class GetWorldTemplateBodyResponse
|
715
|
+
attr_accessor template_body: ::String
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class IdempotentParameterMismatchException
|
720
|
+
attr_accessor message: ::String
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class InternalServerException
|
725
|
+
attr_accessor message: ::String
|
726
|
+
SENSITIVE: []
|
727
|
+
end
|
728
|
+
|
729
|
+
class InvalidParameterException
|
730
|
+
attr_accessor message: ::String
|
731
|
+
SENSITIVE: []
|
732
|
+
end
|
733
|
+
|
734
|
+
class LaunchConfig
|
735
|
+
attr_accessor package_name: ::String
|
736
|
+
attr_accessor launch_file: ::String
|
737
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
738
|
+
attr_accessor port_forwarding_config: Types::PortForwardingConfig
|
739
|
+
attr_accessor stream_ui: bool
|
740
|
+
attr_accessor command: ::Array[::String]
|
741
|
+
SENSITIVE: []
|
742
|
+
end
|
743
|
+
|
744
|
+
class LimitExceededException
|
745
|
+
attr_accessor message: ::String
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class ListDeploymentJobsRequest
|
750
|
+
attr_accessor filters: ::Array[Types::Filter]
|
751
|
+
attr_accessor next_token: ::String
|
752
|
+
attr_accessor max_results: ::Integer
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class ListDeploymentJobsResponse
|
757
|
+
attr_accessor deployment_jobs: ::Array[Types::DeploymentJob]
|
758
|
+
attr_accessor next_token: ::String
|
759
|
+
SENSITIVE: []
|
760
|
+
end
|
761
|
+
|
762
|
+
class ListFleetsRequest
|
763
|
+
attr_accessor next_token: ::String
|
764
|
+
attr_accessor max_results: ::Integer
|
765
|
+
attr_accessor filters: ::Array[Types::Filter]
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
769
|
+
class ListFleetsResponse
|
770
|
+
attr_accessor fleet_details: ::Array[Types::Fleet]
|
771
|
+
attr_accessor next_token: ::String
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
775
|
+
class ListRobotApplicationsRequest
|
776
|
+
attr_accessor version_qualifier: ::String
|
777
|
+
attr_accessor next_token: ::String
|
778
|
+
attr_accessor max_results: ::Integer
|
779
|
+
attr_accessor filters: ::Array[Types::Filter]
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class ListRobotApplicationsResponse
|
784
|
+
attr_accessor robot_application_summaries: ::Array[Types::RobotApplicationSummary]
|
785
|
+
attr_accessor next_token: ::String
|
786
|
+
SENSITIVE: []
|
787
|
+
end
|
788
|
+
|
789
|
+
class ListRobotsRequest
|
790
|
+
attr_accessor next_token: ::String
|
791
|
+
attr_accessor max_results: ::Integer
|
792
|
+
attr_accessor filters: ::Array[Types::Filter]
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class ListRobotsResponse
|
797
|
+
attr_accessor robots: ::Array[Types::Robot]
|
798
|
+
attr_accessor next_token: ::String
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class ListSimulationApplicationsRequest
|
803
|
+
attr_accessor version_qualifier: ::String
|
804
|
+
attr_accessor next_token: ::String
|
805
|
+
attr_accessor max_results: ::Integer
|
806
|
+
attr_accessor filters: ::Array[Types::Filter]
|
807
|
+
SENSITIVE: []
|
808
|
+
end
|
809
|
+
|
810
|
+
class ListSimulationApplicationsResponse
|
811
|
+
attr_accessor simulation_application_summaries: ::Array[Types::SimulationApplicationSummary]
|
812
|
+
attr_accessor next_token: ::String
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class ListSimulationJobBatchesRequest
|
817
|
+
attr_accessor next_token: ::String
|
818
|
+
attr_accessor max_results: ::Integer
|
819
|
+
attr_accessor filters: ::Array[Types::Filter]
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class ListSimulationJobBatchesResponse
|
824
|
+
attr_accessor simulation_job_batch_summaries: ::Array[Types::SimulationJobBatchSummary]
|
825
|
+
attr_accessor next_token: ::String
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
829
|
+
class ListSimulationJobsRequest
|
830
|
+
attr_accessor next_token: ::String
|
831
|
+
attr_accessor max_results: ::Integer
|
832
|
+
attr_accessor filters: ::Array[Types::Filter]
|
833
|
+
SENSITIVE: []
|
834
|
+
end
|
835
|
+
|
836
|
+
class ListSimulationJobsResponse
|
837
|
+
attr_accessor simulation_job_summaries: ::Array[Types::SimulationJobSummary]
|
838
|
+
attr_accessor next_token: ::String
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class ListTagsForResourceRequest
|
843
|
+
attr_accessor resource_arn: ::String
|
844
|
+
SENSITIVE: []
|
845
|
+
end
|
846
|
+
|
847
|
+
class ListTagsForResourceResponse
|
848
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
849
|
+
SENSITIVE: []
|
850
|
+
end
|
851
|
+
|
852
|
+
class ListWorldExportJobsRequest
|
853
|
+
attr_accessor next_token: ::String
|
854
|
+
attr_accessor max_results: ::Integer
|
855
|
+
attr_accessor filters: ::Array[Types::Filter]
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class ListWorldExportJobsResponse
|
860
|
+
attr_accessor world_export_job_summaries: ::Array[Types::WorldExportJobSummary]
|
861
|
+
attr_accessor next_token: ::String
|
862
|
+
SENSITIVE: []
|
863
|
+
end
|
864
|
+
|
865
|
+
class ListWorldGenerationJobsRequest
|
866
|
+
attr_accessor next_token: ::String
|
867
|
+
attr_accessor max_results: ::Integer
|
868
|
+
attr_accessor filters: ::Array[Types::Filter]
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class ListWorldGenerationJobsResponse
|
873
|
+
attr_accessor world_generation_job_summaries: ::Array[Types::WorldGenerationJobSummary]
|
874
|
+
attr_accessor next_token: ::String
|
875
|
+
SENSITIVE: []
|
876
|
+
end
|
877
|
+
|
878
|
+
class ListWorldTemplatesRequest
|
879
|
+
attr_accessor next_token: ::String
|
880
|
+
attr_accessor max_results: ::Integer
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class ListWorldTemplatesResponse
|
885
|
+
attr_accessor template_summaries: ::Array[Types::TemplateSummary]
|
886
|
+
attr_accessor next_token: ::String
|
887
|
+
SENSITIVE: []
|
888
|
+
end
|
889
|
+
|
890
|
+
class ListWorldsRequest
|
891
|
+
attr_accessor next_token: ::String
|
892
|
+
attr_accessor max_results: ::Integer
|
893
|
+
attr_accessor filters: ::Array[Types::Filter]
|
894
|
+
SENSITIVE: []
|
895
|
+
end
|
896
|
+
|
897
|
+
class ListWorldsResponse
|
898
|
+
attr_accessor world_summaries: ::Array[Types::WorldSummary]
|
899
|
+
attr_accessor next_token: ::String
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class LoggingConfig
|
904
|
+
attr_accessor record_all_ros_topics: bool
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
908
|
+
class NetworkInterface
|
909
|
+
attr_accessor network_interface_id: ::String
|
910
|
+
attr_accessor private_ip_address: ::String
|
911
|
+
attr_accessor public_ip_address: ::String
|
912
|
+
SENSITIVE: []
|
913
|
+
end
|
914
|
+
|
915
|
+
class OutputLocation
|
916
|
+
attr_accessor s3_bucket: ::String
|
917
|
+
attr_accessor s3_prefix: ::String
|
918
|
+
SENSITIVE: []
|
919
|
+
end
|
920
|
+
|
921
|
+
class PortForwardingConfig
|
922
|
+
attr_accessor port_mappings: ::Array[Types::PortMapping]
|
923
|
+
SENSITIVE: []
|
924
|
+
end
|
925
|
+
|
926
|
+
class PortMapping
|
927
|
+
attr_accessor job_port: ::Integer
|
928
|
+
attr_accessor application_port: ::Integer
|
929
|
+
attr_accessor enable_on_public_ip: bool
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
933
|
+
class ProgressDetail
|
934
|
+
attr_accessor current_progress: ("Validating" | "DownloadingExtracting" | "ExecutingDownloadCondition" | "ExecutingPreLaunch" | "Launching" | "ExecutingPostLaunch" | "Finished")
|
935
|
+
attr_accessor percent_done: ::Float
|
936
|
+
attr_accessor estimated_time_remaining_seconds: ::Integer
|
937
|
+
attr_accessor target_resource: ::String
|
938
|
+
SENSITIVE: []
|
939
|
+
end
|
940
|
+
|
941
|
+
class RegisterRobotRequest
|
942
|
+
attr_accessor fleet: ::String
|
943
|
+
attr_accessor robot: ::String
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class RegisterRobotResponse
|
948
|
+
attr_accessor fleet: ::String
|
949
|
+
attr_accessor robot: ::String
|
950
|
+
SENSITIVE: []
|
951
|
+
end
|
952
|
+
|
953
|
+
class RenderingEngine
|
954
|
+
attr_accessor name: ("OGRE")
|
955
|
+
attr_accessor version: ::String
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class ResourceAlreadyExistsException
|
960
|
+
attr_accessor message: ::String
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class ResourceNotFoundException
|
965
|
+
attr_accessor message: ::String
|
966
|
+
SENSITIVE: []
|
967
|
+
end
|
968
|
+
|
969
|
+
class RestartSimulationJobRequest
|
970
|
+
attr_accessor job: ::String
|
971
|
+
SENSITIVE: []
|
972
|
+
end
|
973
|
+
|
974
|
+
class RestartSimulationJobResponse < Aws::EmptyStructure
|
975
|
+
end
|
976
|
+
|
977
|
+
class Robot
|
978
|
+
attr_accessor arn: ::String
|
979
|
+
attr_accessor name: ::String
|
980
|
+
attr_accessor fleet_arn: ::String
|
981
|
+
attr_accessor status: ("Available" | "Registered" | "PendingNewDeployment" | "Deploying" | "Failed" | "InSync" | "NoResponse")
|
982
|
+
attr_accessor green_grass_group_id: ::String
|
983
|
+
attr_accessor created_at: ::Time
|
984
|
+
attr_accessor architecture: ("X86_64" | "ARM64" | "ARMHF")
|
985
|
+
attr_accessor last_deployment_job: ::String
|
986
|
+
attr_accessor last_deployment_time: ::Time
|
987
|
+
SENSITIVE: []
|
988
|
+
end
|
989
|
+
|
990
|
+
class RobotApplicationConfig
|
991
|
+
attr_accessor application: ::String
|
992
|
+
attr_accessor application_version: ::String
|
993
|
+
attr_accessor launch_config: Types::LaunchConfig
|
994
|
+
attr_accessor upload_configurations: ::Array[Types::UploadConfiguration]
|
995
|
+
attr_accessor use_default_upload_configurations: bool
|
996
|
+
attr_accessor tools: ::Array[Types::Tool]
|
997
|
+
attr_accessor use_default_tools: bool
|
998
|
+
SENSITIVE: []
|
999
|
+
end
|
1000
|
+
|
1001
|
+
class RobotApplicationSummary
|
1002
|
+
attr_accessor name: ::String
|
1003
|
+
attr_accessor arn: ::String
|
1004
|
+
attr_accessor version: ::String
|
1005
|
+
attr_accessor last_updated_at: ::Time
|
1006
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class RobotDeployment
|
1011
|
+
attr_accessor arn: ::String
|
1012
|
+
attr_accessor deployment_start_time: ::Time
|
1013
|
+
attr_accessor deployment_finish_time: ::Time
|
1014
|
+
attr_accessor status: ("Available" | "Registered" | "PendingNewDeployment" | "Deploying" | "Failed" | "InSync" | "NoResponse")
|
1015
|
+
attr_accessor progress_detail: Types::ProgressDetail
|
1016
|
+
attr_accessor failure_reason: ::String
|
1017
|
+
attr_accessor failure_code: ("ResourceNotFound" | "EnvironmentSetupError" | "EtagMismatch" | "FailureThresholdBreached" | "RobotDeploymentAborted" | "RobotDeploymentNoResponse" | "RobotAgentConnectionTimeout" | "GreengrassDeploymentFailed" | "InvalidGreengrassGroup" | "MissingRobotArchitecture" | "MissingRobotApplicationArchitecture" | "MissingRobotDeploymentResource" | "GreengrassGroupVersionDoesNotExist" | "LambdaDeleted" | "ExtractingBundleFailure" | "PreLaunchFileFailure" | "PostLaunchFileFailure" | "BadPermissionError" | "DownloadConditionFailed" | "BadLambdaAssociated" | "InternalServerError" | "RobotApplicationDoesNotExist" | "DeploymentFleetDoesNotExist" | "FleetDeploymentTimeout")
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class RobotSoftwareSuite
|
1022
|
+
attr_accessor name: ("ROS" | "ROS2" | "General")
|
1023
|
+
attr_accessor version: ("Kinetic" | "Melodic" | "Dashing" | "Foxy")
|
1024
|
+
SENSITIVE: []
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class S3KeyOutput
|
1028
|
+
attr_accessor s3_key: ::String
|
1029
|
+
attr_accessor etag: ::String
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class S3Object
|
1034
|
+
attr_accessor bucket: ::String
|
1035
|
+
attr_accessor key: ::String
|
1036
|
+
attr_accessor etag: ::String
|
1037
|
+
SENSITIVE: []
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class ServiceUnavailableException
|
1041
|
+
attr_accessor message: ::String
|
1042
|
+
SENSITIVE: []
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class SimulationApplicationConfig
|
1046
|
+
attr_accessor application: ::String
|
1047
|
+
attr_accessor application_version: ::String
|
1048
|
+
attr_accessor launch_config: Types::LaunchConfig
|
1049
|
+
attr_accessor upload_configurations: ::Array[Types::UploadConfiguration]
|
1050
|
+
attr_accessor world_configs: ::Array[Types::WorldConfig]
|
1051
|
+
attr_accessor use_default_upload_configurations: bool
|
1052
|
+
attr_accessor tools: ::Array[Types::Tool]
|
1053
|
+
attr_accessor use_default_tools: bool
|
1054
|
+
SENSITIVE: []
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
class SimulationApplicationSummary
|
1058
|
+
attr_accessor name: ::String
|
1059
|
+
attr_accessor arn: ::String
|
1060
|
+
attr_accessor version: ::String
|
1061
|
+
attr_accessor last_updated_at: ::Time
|
1062
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
1063
|
+
attr_accessor simulation_software_suite: Types::SimulationSoftwareSuite
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class SimulationJob
|
1068
|
+
attr_accessor arn: ::String
|
1069
|
+
attr_accessor name: ::String
|
1070
|
+
attr_accessor status: ("Pending" | "Preparing" | "Running" | "Restarting" | "Completed" | "Failed" | "RunningFailed" | "Terminating" | "Terminated" | "Canceled")
|
1071
|
+
attr_accessor last_started_at: ::Time
|
1072
|
+
attr_accessor last_updated_at: ::Time
|
1073
|
+
attr_accessor failure_behavior: ("Fail" | "Continue")
|
1074
|
+
attr_accessor failure_code: ("InternalServiceError" | "RobotApplicationCrash" | "SimulationApplicationCrash" | "RobotApplicationHealthCheckFailure" | "SimulationApplicationHealthCheckFailure" | "BadPermissionsRobotApplication" | "BadPermissionsSimulationApplication" | "BadPermissionsS3Object" | "BadPermissionsS3Output" | "BadPermissionsCloudwatchLogs" | "SubnetIpLimitExceeded" | "ENILimitExceeded" | "BadPermissionsUserCredentials" | "InvalidBundleRobotApplication" | "InvalidBundleSimulationApplication" | "InvalidS3Resource" | "ThrottlingError" | "LimitExceeded" | "MismatchedEtag" | "RobotApplicationVersionMismatchedEtag" | "SimulationApplicationVersionMismatchedEtag" | "ResourceNotFound" | "RequestThrottled" | "BatchTimedOut" | "BatchCanceled" | "InvalidInput" | "WrongRegionS3Bucket" | "WrongRegionS3Output" | "WrongRegionRobotApplication" | "WrongRegionSimulationApplication" | "UploadContentMismatchError")
|
1075
|
+
attr_accessor failure_reason: ::String
|
1076
|
+
attr_accessor client_request_token: ::String
|
1077
|
+
attr_accessor output_location: Types::OutputLocation
|
1078
|
+
attr_accessor logging_config: Types::LoggingConfig
|
1079
|
+
attr_accessor max_job_duration_in_seconds: ::Integer
|
1080
|
+
attr_accessor simulation_time_millis: ::Integer
|
1081
|
+
attr_accessor iam_role: ::String
|
1082
|
+
attr_accessor robot_applications: ::Array[Types::RobotApplicationConfig]
|
1083
|
+
attr_accessor simulation_applications: ::Array[Types::SimulationApplicationConfig]
|
1084
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
1085
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1086
|
+
attr_accessor vpc_config: Types::VPCConfigResponse
|
1087
|
+
attr_accessor network_interface: Types::NetworkInterface
|
1088
|
+
attr_accessor compute: Types::ComputeResponse
|
1089
|
+
SENSITIVE: []
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
class SimulationJobBatchSummary
|
1093
|
+
attr_accessor arn: ::String
|
1094
|
+
attr_accessor last_updated_at: ::Time
|
1095
|
+
attr_accessor created_at: ::Time
|
1096
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Completed" | "Canceled" | "Canceling" | "Completing" | "TimingOut" | "TimedOut")
|
1097
|
+
attr_accessor failed_request_count: ::Integer
|
1098
|
+
attr_accessor pending_request_count: ::Integer
|
1099
|
+
attr_accessor created_request_count: ::Integer
|
1100
|
+
SENSITIVE: []
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
class SimulationJobRequest
|
1104
|
+
attr_accessor output_location: Types::OutputLocation
|
1105
|
+
attr_accessor logging_config: Types::LoggingConfig
|
1106
|
+
attr_accessor max_job_duration_in_seconds: ::Integer
|
1107
|
+
attr_accessor iam_role: ::String
|
1108
|
+
attr_accessor failure_behavior: ("Fail" | "Continue")
|
1109
|
+
attr_accessor use_default_applications: bool
|
1110
|
+
attr_accessor robot_applications: ::Array[Types::RobotApplicationConfig]
|
1111
|
+
attr_accessor simulation_applications: ::Array[Types::SimulationApplicationConfig]
|
1112
|
+
attr_accessor data_sources: ::Array[Types::DataSourceConfig]
|
1113
|
+
attr_accessor vpc_config: Types::VPCConfig
|
1114
|
+
attr_accessor compute: Types::Compute
|
1115
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1116
|
+
SENSITIVE: []
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
class SimulationJobSummary
|
1120
|
+
attr_accessor arn: ::String
|
1121
|
+
attr_accessor last_updated_at: ::Time
|
1122
|
+
attr_accessor name: ::String
|
1123
|
+
attr_accessor status: ("Pending" | "Preparing" | "Running" | "Restarting" | "Completed" | "Failed" | "RunningFailed" | "Terminating" | "Terminated" | "Canceled")
|
1124
|
+
attr_accessor simulation_application_names: ::Array[::String]
|
1125
|
+
attr_accessor robot_application_names: ::Array[::String]
|
1126
|
+
attr_accessor data_source_names: ::Array[::String]
|
1127
|
+
attr_accessor compute_type: ("CPU" | "GPU_AND_CPU")
|
1128
|
+
SENSITIVE: []
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class SimulationSoftwareSuite
|
1132
|
+
attr_accessor name: ("Gazebo" | "RosbagPlay" | "SimulationRuntime")
|
1133
|
+
attr_accessor version: ::String
|
1134
|
+
SENSITIVE: []
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
class Source
|
1138
|
+
attr_accessor s3_bucket: ::String
|
1139
|
+
attr_accessor s3_key: ::String
|
1140
|
+
attr_accessor etag: ::String
|
1141
|
+
attr_accessor architecture: ("X86_64" | "ARM64" | "ARMHF")
|
1142
|
+
SENSITIVE: []
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
class SourceConfig
|
1146
|
+
attr_accessor s3_bucket: ::String
|
1147
|
+
attr_accessor s3_key: ::String
|
1148
|
+
attr_accessor architecture: ("X86_64" | "ARM64" | "ARMHF")
|
1149
|
+
SENSITIVE: []
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class StartSimulationJobBatchRequest
|
1153
|
+
attr_accessor client_request_token: ::String
|
1154
|
+
attr_accessor batch_policy: Types::BatchPolicy
|
1155
|
+
attr_accessor create_simulation_job_requests: ::Array[Types::SimulationJobRequest]
|
1156
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class StartSimulationJobBatchResponse
|
1161
|
+
attr_accessor arn: ::String
|
1162
|
+
attr_accessor status: ("Pending" | "InProgress" | "Failed" | "Completed" | "Canceled" | "Canceling" | "Completing" | "TimingOut" | "TimedOut")
|
1163
|
+
attr_accessor created_at: ::Time
|
1164
|
+
attr_accessor client_request_token: ::String
|
1165
|
+
attr_accessor batch_policy: Types::BatchPolicy
|
1166
|
+
attr_accessor failure_code: ("InternalServiceError")
|
1167
|
+
attr_accessor failure_reason: ::String
|
1168
|
+
attr_accessor failed_requests: ::Array[Types::FailedCreateSimulationJobRequest]
|
1169
|
+
attr_accessor pending_requests: ::Array[Types::SimulationJobRequest]
|
1170
|
+
attr_accessor created_requests: ::Array[Types::SimulationJobSummary]
|
1171
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1172
|
+
SENSITIVE: []
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
class SyncDeploymentJobRequest
|
1176
|
+
attr_accessor client_request_token: ::String
|
1177
|
+
attr_accessor fleet: ::String
|
1178
|
+
SENSITIVE: []
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
class SyncDeploymentJobResponse
|
1182
|
+
attr_accessor arn: ::String
|
1183
|
+
attr_accessor fleet: ::String
|
1184
|
+
attr_accessor status: ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
|
1185
|
+
attr_accessor deployment_config: Types::DeploymentConfig
|
1186
|
+
attr_accessor deployment_application_configs: ::Array[Types::DeploymentApplicationConfig]
|
1187
|
+
attr_accessor failure_reason: ::String
|
1188
|
+
attr_accessor failure_code: ("ResourceNotFound" | "EnvironmentSetupError" | "EtagMismatch" | "FailureThresholdBreached" | "RobotDeploymentAborted" | "RobotDeploymentNoResponse" | "RobotAgentConnectionTimeout" | "GreengrassDeploymentFailed" | "InvalidGreengrassGroup" | "MissingRobotArchitecture" | "MissingRobotApplicationArchitecture" | "MissingRobotDeploymentResource" | "GreengrassGroupVersionDoesNotExist" | "LambdaDeleted" | "ExtractingBundleFailure" | "PreLaunchFileFailure" | "PostLaunchFileFailure" | "BadPermissionError" | "DownloadConditionFailed" | "BadLambdaAssociated" | "InternalServerError" | "RobotApplicationDoesNotExist" | "DeploymentFleetDoesNotExist" | "FleetDeploymentTimeout")
|
1189
|
+
attr_accessor created_at: ::Time
|
1190
|
+
SENSITIVE: []
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
class TagResourceRequest
|
1194
|
+
attr_accessor resource_arn: ::String
|
1195
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1196
|
+
SENSITIVE: []
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
class TemplateLocation
|
1203
|
+
attr_accessor s3_bucket: ::String
|
1204
|
+
attr_accessor s3_key: ::String
|
1205
|
+
SENSITIVE: []
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
class TemplateSummary
|
1209
|
+
attr_accessor arn: ::String
|
1210
|
+
attr_accessor created_at: ::Time
|
1211
|
+
attr_accessor last_updated_at: ::Time
|
1212
|
+
attr_accessor name: ::String
|
1213
|
+
attr_accessor version: ::String
|
1214
|
+
SENSITIVE: []
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class ThrottlingException
|
1218
|
+
attr_accessor message: ::String
|
1219
|
+
SENSITIVE: []
|
1220
|
+
end
|
1221
|
+
|
1222
|
+
class Tool
|
1223
|
+
attr_accessor stream_ui: bool
|
1224
|
+
attr_accessor name: ::String
|
1225
|
+
attr_accessor command: ::String
|
1226
|
+
attr_accessor stream_output_to_cloud_watch: bool
|
1227
|
+
attr_accessor exit_behavior: ("FAIL" | "RESTART")
|
1228
|
+
SENSITIVE: []
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
class UntagResourceRequest
|
1232
|
+
attr_accessor resource_arn: ::String
|
1233
|
+
attr_accessor tag_keys: ::Array[::String]
|
1234
|
+
SENSITIVE: []
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
class UpdateRobotApplicationRequest
|
1241
|
+
attr_accessor application: ::String
|
1242
|
+
attr_accessor sources: ::Array[Types::SourceConfig]
|
1243
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
1244
|
+
attr_accessor current_revision_id: ::String
|
1245
|
+
attr_accessor environment: Types::Environment
|
1246
|
+
SENSITIVE: []
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
class UpdateRobotApplicationResponse
|
1250
|
+
attr_accessor arn: ::String
|
1251
|
+
attr_accessor name: ::String
|
1252
|
+
attr_accessor version: ::String
|
1253
|
+
attr_accessor sources: ::Array[Types::Source]
|
1254
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
1255
|
+
attr_accessor last_updated_at: ::Time
|
1256
|
+
attr_accessor revision_id: ::String
|
1257
|
+
attr_accessor environment: Types::Environment
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class UpdateSimulationApplicationRequest
|
1262
|
+
attr_accessor application: ::String
|
1263
|
+
attr_accessor sources: ::Array[Types::SourceConfig]
|
1264
|
+
attr_accessor simulation_software_suite: Types::SimulationSoftwareSuite
|
1265
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
1266
|
+
attr_accessor rendering_engine: Types::RenderingEngine
|
1267
|
+
attr_accessor current_revision_id: ::String
|
1268
|
+
attr_accessor environment: Types::Environment
|
1269
|
+
SENSITIVE: []
|
1270
|
+
end
|
1271
|
+
|
1272
|
+
class UpdateSimulationApplicationResponse
|
1273
|
+
attr_accessor arn: ::String
|
1274
|
+
attr_accessor name: ::String
|
1275
|
+
attr_accessor version: ::String
|
1276
|
+
attr_accessor sources: ::Array[Types::Source]
|
1277
|
+
attr_accessor simulation_software_suite: Types::SimulationSoftwareSuite
|
1278
|
+
attr_accessor robot_software_suite: Types::RobotSoftwareSuite
|
1279
|
+
attr_accessor rendering_engine: Types::RenderingEngine
|
1280
|
+
attr_accessor last_updated_at: ::Time
|
1281
|
+
attr_accessor revision_id: ::String
|
1282
|
+
attr_accessor environment: Types::Environment
|
1283
|
+
SENSITIVE: []
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
class UpdateWorldTemplateRequest
|
1287
|
+
attr_accessor template: ::String
|
1288
|
+
attr_accessor name: ::String
|
1289
|
+
attr_accessor template_body: ::String
|
1290
|
+
attr_accessor template_location: Types::TemplateLocation
|
1291
|
+
SENSITIVE: []
|
1292
|
+
end
|
1293
|
+
|
1294
|
+
class UpdateWorldTemplateResponse
|
1295
|
+
attr_accessor arn: ::String
|
1296
|
+
attr_accessor name: ::String
|
1297
|
+
attr_accessor created_at: ::Time
|
1298
|
+
attr_accessor last_updated_at: ::Time
|
1299
|
+
SENSITIVE: []
|
1300
|
+
end
|
1301
|
+
|
1302
|
+
class UploadConfiguration
|
1303
|
+
attr_accessor name: ::String
|
1304
|
+
attr_accessor path: ::String
|
1305
|
+
attr_accessor upload_behavior: ("UPLOAD_ON_TERMINATE" | "UPLOAD_ROLLING_AUTO_REMOVE")
|
1306
|
+
SENSITIVE: []
|
1307
|
+
end
|
1308
|
+
|
1309
|
+
class VPCConfig
|
1310
|
+
attr_accessor subnets: ::Array[::String]
|
1311
|
+
attr_accessor security_groups: ::Array[::String]
|
1312
|
+
attr_accessor assign_public_ip: bool
|
1313
|
+
SENSITIVE: []
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
class VPCConfigResponse
|
1317
|
+
attr_accessor subnets: ::Array[::String]
|
1318
|
+
attr_accessor security_groups: ::Array[::String]
|
1319
|
+
attr_accessor vpc_id: ::String
|
1320
|
+
attr_accessor assign_public_ip: bool
|
1321
|
+
SENSITIVE: []
|
1322
|
+
end
|
1323
|
+
|
1324
|
+
class WorldConfig
|
1325
|
+
attr_accessor world: ::String
|
1326
|
+
SENSITIVE: []
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class WorldCount
|
1330
|
+
attr_accessor floorplan_count: ::Integer
|
1331
|
+
attr_accessor interior_count_per_floorplan: ::Integer
|
1332
|
+
SENSITIVE: []
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
class WorldExportJobSummary
|
1336
|
+
attr_accessor arn: ::String
|
1337
|
+
attr_accessor status: ("Pending" | "Running" | "Completed" | "Failed" | "Canceling" | "Canceled")
|
1338
|
+
attr_accessor created_at: ::Time
|
1339
|
+
attr_accessor worlds: ::Array[::String]
|
1340
|
+
attr_accessor output_location: Types::OutputLocation
|
1341
|
+
SENSITIVE: []
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
class WorldFailure
|
1345
|
+
attr_accessor failure_code: ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AllWorldGenerationFailed")
|
1346
|
+
attr_accessor sample_failure_reason: ::String
|
1347
|
+
attr_accessor failure_count: ::Integer
|
1348
|
+
SENSITIVE: []
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
class WorldGenerationJobSummary
|
1352
|
+
attr_accessor arn: ::String
|
1353
|
+
attr_accessor template: ::String
|
1354
|
+
attr_accessor created_at: ::Time
|
1355
|
+
attr_accessor status: ("Pending" | "Running" | "Completed" | "Failed" | "PartialFailed" | "Canceling" | "Canceled")
|
1356
|
+
attr_accessor world_count: Types::WorldCount
|
1357
|
+
attr_accessor succeeded_world_count: ::Integer
|
1358
|
+
attr_accessor failed_world_count: ::Integer
|
1359
|
+
SENSITIVE: []
|
1360
|
+
end
|
1361
|
+
|
1362
|
+
class WorldSummary
|
1363
|
+
attr_accessor arn: ::String
|
1364
|
+
attr_accessor created_at: ::Time
|
1365
|
+
attr_accessor generation_job: ::String
|
1366
|
+
attr_accessor template: ::String
|
1367
|
+
SENSITIVE: []
|
1368
|
+
end
|
1369
|
+
end
|
1370
|
+
end
|