aws-sdk-robomaker 1.62.0 → 1.63.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1337 @@
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
9
+ module RoboMaker
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _BatchDeleteWorldsResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteWorldsResponse]
77
+ def unprocessed_worlds: () -> ::Array[::String]
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#batch_delete_worlds-instance_method
80
+ def batch_delete_worlds: (
81
+ worlds: Array[::String]
82
+ ) -> _BatchDeleteWorldsResponseSuccess
83
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteWorldsResponseSuccess
84
+
85
+ interface _BatchDescribeSimulationJobResponseSuccess
86
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDescribeSimulationJobResponse]
87
+ def jobs: () -> ::Array[Types::SimulationJob]
88
+ def unprocessed_jobs: () -> ::Array[::String]
89
+ end
90
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#batch_describe_simulation_job-instance_method
91
+ def batch_describe_simulation_job: (
92
+ jobs: Array[::String]
93
+ ) -> _BatchDescribeSimulationJobResponseSuccess
94
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDescribeSimulationJobResponseSuccess
95
+
96
+ interface _CancelDeploymentJobResponseSuccess
97
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelDeploymentJobResponse]
98
+ end
99
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#cancel_deployment_job-instance_method
100
+ def cancel_deployment_job: (
101
+ job: ::String
102
+ ) -> _CancelDeploymentJobResponseSuccess
103
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelDeploymentJobResponseSuccess
104
+
105
+ interface _CancelSimulationJobResponseSuccess
106
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelSimulationJobResponse]
107
+ end
108
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#cancel_simulation_job-instance_method
109
+ def cancel_simulation_job: (
110
+ job: ::String
111
+ ) -> _CancelSimulationJobResponseSuccess
112
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelSimulationJobResponseSuccess
113
+
114
+ interface _CancelSimulationJobBatchResponseSuccess
115
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelSimulationJobBatchResponse]
116
+ end
117
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#cancel_simulation_job_batch-instance_method
118
+ def cancel_simulation_job_batch: (
119
+ batch: ::String
120
+ ) -> _CancelSimulationJobBatchResponseSuccess
121
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelSimulationJobBatchResponseSuccess
122
+
123
+ interface _CancelWorldExportJobResponseSuccess
124
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelWorldExportJobResponse]
125
+ end
126
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#cancel_world_export_job-instance_method
127
+ def cancel_world_export_job: (
128
+ job: ::String
129
+ ) -> _CancelWorldExportJobResponseSuccess
130
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelWorldExportJobResponseSuccess
131
+
132
+ interface _CancelWorldGenerationJobResponseSuccess
133
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelWorldGenerationJobResponse]
134
+ end
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#cancel_world_generation_job-instance_method
136
+ def cancel_world_generation_job: (
137
+ job: ::String
138
+ ) -> _CancelWorldGenerationJobResponseSuccess
139
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelWorldGenerationJobResponseSuccess
140
+
141
+ interface _CreateDeploymentJobResponseSuccess
142
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDeploymentJobResponse]
143
+ def arn: () -> ::String
144
+ def fleet: () -> ::String
145
+ def status: () -> ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
146
+ def deployment_application_configs: () -> ::Array[Types::DeploymentApplicationConfig]
147
+ def failure_reason: () -> ::String
148
+ def 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")
149
+ def created_at: () -> ::Time
150
+ def deployment_config: () -> Types::DeploymentConfig
151
+ def tags: () -> ::Hash[::String, ::String]
152
+ end
153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_deployment_job-instance_method
154
+ def create_deployment_job: (
155
+ ?deployment_config: {
156
+ concurrent_deployment_percentage: ::Integer?,
157
+ failure_threshold_percentage: ::Integer?,
158
+ robot_deployment_timeout_in_seconds: ::Integer?,
159
+ download_condition_file: {
160
+ bucket: ::String,
161
+ key: ::String,
162
+ etag: ::String?
163
+ }?
164
+ },
165
+ client_request_token: ::String,
166
+ fleet: ::String,
167
+ deployment_application_configs: Array[
168
+ {
169
+ application: ::String,
170
+ application_version: ::String,
171
+ launch_config: {
172
+ package_name: ::String,
173
+ pre_launch_file: ::String?,
174
+ launch_file: ::String,
175
+ post_launch_file: ::String?,
176
+ environment_variables: Hash[::String, ::String]?
177
+ }
178
+ },
179
+ ],
180
+ ?tags: Hash[::String, ::String]
181
+ ) -> _CreateDeploymentJobResponseSuccess
182
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeploymentJobResponseSuccess
183
+
184
+ interface _CreateFleetResponseSuccess
185
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateFleetResponse]
186
+ def arn: () -> ::String
187
+ def name: () -> ::String
188
+ def created_at: () -> ::Time
189
+ def tags: () -> ::Hash[::String, ::String]
190
+ end
191
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_fleet-instance_method
192
+ def create_fleet: (
193
+ name: ::String,
194
+ ?tags: Hash[::String, ::String]
195
+ ) -> _CreateFleetResponseSuccess
196
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFleetResponseSuccess
197
+
198
+ interface _CreateRobotResponseSuccess
199
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRobotResponse]
200
+ def arn: () -> ::String
201
+ def name: () -> ::String
202
+ def created_at: () -> ::Time
203
+ def greengrass_group_id: () -> ::String
204
+ def architecture: () -> ("X86_64" | "ARM64" | "ARMHF")
205
+ def tags: () -> ::Hash[::String, ::String]
206
+ end
207
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_robot-instance_method
208
+ def create_robot: (
209
+ name: ::String,
210
+ architecture: ("X86_64" | "ARM64" | "ARMHF"),
211
+ greengrass_group_id: ::String,
212
+ ?tags: Hash[::String, ::String]
213
+ ) -> _CreateRobotResponseSuccess
214
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRobotResponseSuccess
215
+
216
+ interface _CreateRobotApplicationResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRobotApplicationResponse]
218
+ def arn: () -> ::String
219
+ def name: () -> ::String
220
+ def version: () -> ::String
221
+ def sources: () -> ::Array[Types::Source]
222
+ def robot_software_suite: () -> Types::RobotSoftwareSuite
223
+ def last_updated_at: () -> ::Time
224
+ def revision_id: () -> ::String
225
+ def tags: () -> ::Hash[::String, ::String]
226
+ def environment: () -> Types::Environment
227
+ end
228
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_robot_application-instance_method
229
+ def create_robot_application: (
230
+ name: ::String,
231
+ ?sources: Array[
232
+ {
233
+ s3_bucket: ::String?,
234
+ s3_key: ::String?,
235
+ architecture: ("X86_64" | "ARM64" | "ARMHF")?
236
+ },
237
+ ],
238
+ robot_software_suite: {
239
+ name: ("ROS" | "ROS2" | "General")?,
240
+ version: ("Kinetic" | "Melodic" | "Dashing" | "Foxy")?
241
+ },
242
+ ?tags: Hash[::String, ::String],
243
+ ?environment: {
244
+ uri: ::String?
245
+ }
246
+ ) -> _CreateRobotApplicationResponseSuccess
247
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRobotApplicationResponseSuccess
248
+
249
+ interface _CreateRobotApplicationVersionResponseSuccess
250
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRobotApplicationVersionResponse]
251
+ def arn: () -> ::String
252
+ def name: () -> ::String
253
+ def version: () -> ::String
254
+ def sources: () -> ::Array[Types::Source]
255
+ def robot_software_suite: () -> Types::RobotSoftwareSuite
256
+ def last_updated_at: () -> ::Time
257
+ def revision_id: () -> ::String
258
+ def environment: () -> Types::Environment
259
+ end
260
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_robot_application_version-instance_method
261
+ def create_robot_application_version: (
262
+ application: ::String,
263
+ ?current_revision_id: ::String,
264
+ ?s3_etags: Array[::String],
265
+ ?image_digest: ::String
266
+ ) -> _CreateRobotApplicationVersionResponseSuccess
267
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRobotApplicationVersionResponseSuccess
268
+
269
+ interface _CreateSimulationApplicationResponseSuccess
270
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSimulationApplicationResponse]
271
+ def arn: () -> ::String
272
+ def name: () -> ::String
273
+ def version: () -> ::String
274
+ def sources: () -> ::Array[Types::Source]
275
+ def simulation_software_suite: () -> Types::SimulationSoftwareSuite
276
+ def robot_software_suite: () -> Types::RobotSoftwareSuite
277
+ def rendering_engine: () -> Types::RenderingEngine
278
+ def last_updated_at: () -> ::Time
279
+ def revision_id: () -> ::String
280
+ def tags: () -> ::Hash[::String, ::String]
281
+ def environment: () -> Types::Environment
282
+ end
283
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_simulation_application-instance_method
284
+ def create_simulation_application: (
285
+ name: ::String,
286
+ ?sources: Array[
287
+ {
288
+ s3_bucket: ::String?,
289
+ s3_key: ::String?,
290
+ architecture: ("X86_64" | "ARM64" | "ARMHF")?
291
+ },
292
+ ],
293
+ simulation_software_suite: {
294
+ name: ("Gazebo" | "RosbagPlay" | "SimulationRuntime")?,
295
+ version: ::String?
296
+ },
297
+ robot_software_suite: {
298
+ name: ("ROS" | "ROS2" | "General")?,
299
+ version: ("Kinetic" | "Melodic" | "Dashing" | "Foxy")?
300
+ },
301
+ ?rendering_engine: {
302
+ name: ("OGRE")?,
303
+ version: ::String?
304
+ },
305
+ ?tags: Hash[::String, ::String],
306
+ ?environment: {
307
+ uri: ::String?
308
+ }
309
+ ) -> _CreateSimulationApplicationResponseSuccess
310
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSimulationApplicationResponseSuccess
311
+
312
+ interface _CreateSimulationApplicationVersionResponseSuccess
313
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSimulationApplicationVersionResponse]
314
+ def arn: () -> ::String
315
+ def name: () -> ::String
316
+ def version: () -> ::String
317
+ def sources: () -> ::Array[Types::Source]
318
+ def simulation_software_suite: () -> Types::SimulationSoftwareSuite
319
+ def robot_software_suite: () -> Types::RobotSoftwareSuite
320
+ def rendering_engine: () -> Types::RenderingEngine
321
+ def last_updated_at: () -> ::Time
322
+ def revision_id: () -> ::String
323
+ def environment: () -> Types::Environment
324
+ end
325
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_simulation_application_version-instance_method
326
+ def create_simulation_application_version: (
327
+ application: ::String,
328
+ ?current_revision_id: ::String,
329
+ ?s3_etags: Array[::String],
330
+ ?image_digest: ::String
331
+ ) -> _CreateSimulationApplicationVersionResponseSuccess
332
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSimulationApplicationVersionResponseSuccess
333
+
334
+ interface _CreateSimulationJobResponseSuccess
335
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSimulationJobResponse]
336
+ def arn: () -> ::String
337
+ def status: () -> ("Pending" | "Preparing" | "Running" | "Restarting" | "Completed" | "Failed" | "RunningFailed" | "Terminating" | "Terminated" | "Canceled")
338
+ def last_started_at: () -> ::Time
339
+ def last_updated_at: () -> ::Time
340
+ def failure_behavior: () -> ("Fail" | "Continue")
341
+ def 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")
342
+ def client_request_token: () -> ::String
343
+ def output_location: () -> Types::OutputLocation
344
+ def logging_config: () -> Types::LoggingConfig
345
+ def max_job_duration_in_seconds: () -> ::Integer
346
+ def simulation_time_millis: () -> ::Integer
347
+ def iam_role: () -> ::String
348
+ def robot_applications: () -> ::Array[Types::RobotApplicationConfig]
349
+ def simulation_applications: () -> ::Array[Types::SimulationApplicationConfig]
350
+ def data_sources: () -> ::Array[Types::DataSource]
351
+ def tags: () -> ::Hash[::String, ::String]
352
+ def vpc_config: () -> Types::VPCConfigResponse
353
+ def compute: () -> Types::ComputeResponse
354
+ end
355
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_simulation_job-instance_method
356
+ def create_simulation_job: (
357
+ ?client_request_token: ::String,
358
+ ?output_location: {
359
+ s3_bucket: ::String?,
360
+ s3_prefix: ::String?
361
+ },
362
+ ?logging_config: {
363
+ record_all_ros_topics: bool?
364
+ },
365
+ max_job_duration_in_seconds: ::Integer,
366
+ iam_role: ::String,
367
+ ?failure_behavior: ("Fail" | "Continue"),
368
+ ?robot_applications: Array[
369
+ {
370
+ application: ::String,
371
+ application_version: ::String?,
372
+ launch_config: {
373
+ package_name: ::String?,
374
+ launch_file: ::String?,
375
+ environment_variables: Hash[::String, ::String]?,
376
+ port_forwarding_config: {
377
+ port_mappings: Array[
378
+ {
379
+ job_port: ::Integer,
380
+ application_port: ::Integer,
381
+ enable_on_public_ip: bool?
382
+ },
383
+ ]?
384
+ }?,
385
+ stream_ui: bool?,
386
+ command: Array[::String]?
387
+ },
388
+ upload_configurations: Array[
389
+ {
390
+ name: ::String,
391
+ path: ::String,
392
+ upload_behavior: ("UPLOAD_ON_TERMINATE" | "UPLOAD_ROLLING_AUTO_REMOVE")
393
+ },
394
+ ]?,
395
+ use_default_upload_configurations: bool?,
396
+ tools: Array[
397
+ {
398
+ stream_ui: bool?,
399
+ name: ::String,
400
+ command: ::String,
401
+ stream_output_to_cloud_watch: bool?,
402
+ exit_behavior: ("FAIL" | "RESTART")?
403
+ },
404
+ ]?,
405
+ use_default_tools: bool?
406
+ },
407
+ ],
408
+ ?simulation_applications: Array[
409
+ {
410
+ application: ::String,
411
+ application_version: ::String?,
412
+ launch_config: {
413
+ package_name: ::String?,
414
+ launch_file: ::String?,
415
+ environment_variables: Hash[::String, ::String]?,
416
+ port_forwarding_config: {
417
+ port_mappings: Array[
418
+ {
419
+ job_port: ::Integer,
420
+ application_port: ::Integer,
421
+ enable_on_public_ip: bool?
422
+ },
423
+ ]?
424
+ }?,
425
+ stream_ui: bool?,
426
+ command: Array[::String]?
427
+ },
428
+ upload_configurations: Array[
429
+ {
430
+ name: ::String,
431
+ path: ::String,
432
+ upload_behavior: ("UPLOAD_ON_TERMINATE" | "UPLOAD_ROLLING_AUTO_REMOVE")
433
+ },
434
+ ]?,
435
+ world_configs: Array[
436
+ {
437
+ world: ::String?
438
+ },
439
+ ]?,
440
+ use_default_upload_configurations: bool?,
441
+ tools: Array[
442
+ {
443
+ stream_ui: bool?,
444
+ name: ::String,
445
+ command: ::String,
446
+ stream_output_to_cloud_watch: bool?,
447
+ exit_behavior: ("FAIL" | "RESTART")?
448
+ },
449
+ ]?,
450
+ use_default_tools: bool?
451
+ },
452
+ ],
453
+ ?data_sources: Array[
454
+ {
455
+ name: ::String,
456
+ s3_bucket: ::String,
457
+ s3_keys: Array[::String],
458
+ type: ("Prefix" | "Archive" | "File")?,
459
+ destination: ::String?
460
+ },
461
+ ],
462
+ ?tags: Hash[::String, ::String],
463
+ ?vpc_config: {
464
+ subnets: Array[::String],
465
+ security_groups: Array[::String]?,
466
+ assign_public_ip: bool?
467
+ },
468
+ ?compute: {
469
+ simulation_unit_limit: ::Integer?,
470
+ compute_type: ("CPU" | "GPU_AND_CPU")?,
471
+ gpu_unit_limit: ::Integer?
472
+ }
473
+ ) -> _CreateSimulationJobResponseSuccess
474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSimulationJobResponseSuccess
475
+
476
+ interface _CreateWorldExportJobResponseSuccess
477
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorldExportJobResponse]
478
+ def arn: () -> ::String
479
+ def status: () -> ("Pending" | "Running" | "Completed" | "Failed" | "Canceling" | "Canceled")
480
+ def created_at: () -> ::Time
481
+ def failure_code: () -> ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AccessDenied")
482
+ def client_request_token: () -> ::String
483
+ def output_location: () -> Types::OutputLocation
484
+ def iam_role: () -> ::String
485
+ def tags: () -> ::Hash[::String, ::String]
486
+ end
487
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_world_export_job-instance_method
488
+ def create_world_export_job: (
489
+ ?client_request_token: ::String,
490
+ worlds: Array[::String],
491
+ output_location: {
492
+ s3_bucket: ::String?,
493
+ s3_prefix: ::String?
494
+ },
495
+ iam_role: ::String,
496
+ ?tags: Hash[::String, ::String]
497
+ ) -> _CreateWorldExportJobResponseSuccess
498
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorldExportJobResponseSuccess
499
+
500
+ interface _CreateWorldGenerationJobResponseSuccess
501
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorldGenerationJobResponse]
502
+ def arn: () -> ::String
503
+ def status: () -> ("Pending" | "Running" | "Completed" | "Failed" | "PartialFailed" | "Canceling" | "Canceled")
504
+ def created_at: () -> ::Time
505
+ def failure_code: () -> ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AllWorldGenerationFailed")
506
+ def client_request_token: () -> ::String
507
+ def template: () -> ::String
508
+ def world_count: () -> Types::WorldCount
509
+ def tags: () -> ::Hash[::String, ::String]
510
+ def world_tags: () -> ::Hash[::String, ::String]
511
+ end
512
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_world_generation_job-instance_method
513
+ def create_world_generation_job: (
514
+ ?client_request_token: ::String,
515
+ template: ::String,
516
+ world_count: {
517
+ floorplan_count: ::Integer?,
518
+ interior_count_per_floorplan: ::Integer?
519
+ },
520
+ ?tags: Hash[::String, ::String],
521
+ ?world_tags: Hash[::String, ::String]
522
+ ) -> _CreateWorldGenerationJobResponseSuccess
523
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorldGenerationJobResponseSuccess
524
+
525
+ interface _CreateWorldTemplateResponseSuccess
526
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorldTemplateResponse]
527
+ def arn: () -> ::String
528
+ def client_request_token: () -> ::String
529
+ def created_at: () -> ::Time
530
+ def name: () -> ::String
531
+ def tags: () -> ::Hash[::String, ::String]
532
+ end
533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#create_world_template-instance_method
534
+ def create_world_template: (
535
+ ?client_request_token: ::String,
536
+ ?name: ::String,
537
+ ?template_body: ::String,
538
+ ?template_location: {
539
+ s3_bucket: ::String,
540
+ s3_key: ::String
541
+ },
542
+ ?tags: Hash[::String, ::String]
543
+ ) -> _CreateWorldTemplateResponseSuccess
544
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorldTemplateResponseSuccess
545
+
546
+ interface _DeleteFleetResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFleetResponse]
548
+ end
549
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#delete_fleet-instance_method
550
+ def delete_fleet: (
551
+ fleet: ::String
552
+ ) -> _DeleteFleetResponseSuccess
553
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFleetResponseSuccess
554
+
555
+ interface _DeleteRobotResponseSuccess
556
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRobotResponse]
557
+ end
558
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#delete_robot-instance_method
559
+ def delete_robot: (
560
+ robot: ::String
561
+ ) -> _DeleteRobotResponseSuccess
562
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRobotResponseSuccess
563
+
564
+ interface _DeleteRobotApplicationResponseSuccess
565
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRobotApplicationResponse]
566
+ end
567
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#delete_robot_application-instance_method
568
+ def delete_robot_application: (
569
+ application: ::String,
570
+ ?application_version: ::String
571
+ ) -> _DeleteRobotApplicationResponseSuccess
572
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRobotApplicationResponseSuccess
573
+
574
+ interface _DeleteSimulationApplicationResponseSuccess
575
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSimulationApplicationResponse]
576
+ end
577
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#delete_simulation_application-instance_method
578
+ def delete_simulation_application: (
579
+ application: ::String,
580
+ ?application_version: ::String
581
+ ) -> _DeleteSimulationApplicationResponseSuccess
582
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSimulationApplicationResponseSuccess
583
+
584
+ interface _DeleteWorldTemplateResponseSuccess
585
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorldTemplateResponse]
586
+ end
587
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#delete_world_template-instance_method
588
+ def delete_world_template: (
589
+ template: ::String
590
+ ) -> _DeleteWorldTemplateResponseSuccess
591
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorldTemplateResponseSuccess
592
+
593
+ interface _DeregisterRobotResponseSuccess
594
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterRobotResponse]
595
+ def fleet: () -> ::String
596
+ def robot: () -> ::String
597
+ end
598
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#deregister_robot-instance_method
599
+ def deregister_robot: (
600
+ fleet: ::String,
601
+ robot: ::String
602
+ ) -> _DeregisterRobotResponseSuccess
603
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterRobotResponseSuccess
604
+
605
+ interface _DescribeDeploymentJobResponseSuccess
606
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDeploymentJobResponse]
607
+ def arn: () -> ::String
608
+ def fleet: () -> ::String
609
+ def status: () -> ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
610
+ def deployment_config: () -> Types::DeploymentConfig
611
+ def deployment_application_configs: () -> ::Array[Types::DeploymentApplicationConfig]
612
+ def failure_reason: () -> ::String
613
+ def 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")
614
+ def created_at: () -> ::Time
615
+ def robot_deployment_summary: () -> ::Array[Types::RobotDeployment]
616
+ def tags: () -> ::Hash[::String, ::String]
617
+ end
618
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_deployment_job-instance_method
619
+ def describe_deployment_job: (
620
+ job: ::String
621
+ ) -> _DescribeDeploymentJobResponseSuccess
622
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDeploymentJobResponseSuccess
623
+
624
+ interface _DescribeFleetResponseSuccess
625
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFleetResponse]
626
+ def name: () -> ::String
627
+ def arn: () -> ::String
628
+ def robots: () -> ::Array[Types::Robot]
629
+ def created_at: () -> ::Time
630
+ def last_deployment_status: () -> ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
631
+ def last_deployment_job: () -> ::String
632
+ def last_deployment_time: () -> ::Time
633
+ def tags: () -> ::Hash[::String, ::String]
634
+ end
635
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_fleet-instance_method
636
+ def describe_fleet: (
637
+ fleet: ::String
638
+ ) -> _DescribeFleetResponseSuccess
639
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFleetResponseSuccess
640
+
641
+ interface _DescribeRobotResponseSuccess
642
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRobotResponse]
643
+ def arn: () -> ::String
644
+ def name: () -> ::String
645
+ def fleet_arn: () -> ::String
646
+ def status: () -> ("Available" | "Registered" | "PendingNewDeployment" | "Deploying" | "Failed" | "InSync" | "NoResponse")
647
+ def greengrass_group_id: () -> ::String
648
+ def created_at: () -> ::Time
649
+ def architecture: () -> ("X86_64" | "ARM64" | "ARMHF")
650
+ def last_deployment_job: () -> ::String
651
+ def last_deployment_time: () -> ::Time
652
+ def tags: () -> ::Hash[::String, ::String]
653
+ end
654
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_robot-instance_method
655
+ def describe_robot: (
656
+ robot: ::String
657
+ ) -> _DescribeRobotResponseSuccess
658
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRobotResponseSuccess
659
+
660
+ interface _DescribeRobotApplicationResponseSuccess
661
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRobotApplicationResponse]
662
+ def arn: () -> ::String
663
+ def name: () -> ::String
664
+ def version: () -> ::String
665
+ def sources: () -> ::Array[Types::Source]
666
+ def robot_software_suite: () -> Types::RobotSoftwareSuite
667
+ def revision_id: () -> ::String
668
+ def last_updated_at: () -> ::Time
669
+ def tags: () -> ::Hash[::String, ::String]
670
+ def environment: () -> Types::Environment
671
+ def image_digest: () -> ::String
672
+ end
673
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_robot_application-instance_method
674
+ def describe_robot_application: (
675
+ application: ::String,
676
+ ?application_version: ::String
677
+ ) -> _DescribeRobotApplicationResponseSuccess
678
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRobotApplicationResponseSuccess
679
+
680
+ interface _DescribeSimulationApplicationResponseSuccess
681
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSimulationApplicationResponse]
682
+ def arn: () -> ::String
683
+ def name: () -> ::String
684
+ def version: () -> ::String
685
+ def sources: () -> ::Array[Types::Source]
686
+ def simulation_software_suite: () -> Types::SimulationSoftwareSuite
687
+ def robot_software_suite: () -> Types::RobotSoftwareSuite
688
+ def rendering_engine: () -> Types::RenderingEngine
689
+ def revision_id: () -> ::String
690
+ def last_updated_at: () -> ::Time
691
+ def tags: () -> ::Hash[::String, ::String]
692
+ def environment: () -> Types::Environment
693
+ def image_digest: () -> ::String
694
+ end
695
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_simulation_application-instance_method
696
+ def describe_simulation_application: (
697
+ application: ::String,
698
+ ?application_version: ::String
699
+ ) -> _DescribeSimulationApplicationResponseSuccess
700
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSimulationApplicationResponseSuccess
701
+
702
+ interface _DescribeSimulationJobResponseSuccess
703
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSimulationJobResponse]
704
+ def arn: () -> ::String
705
+ def name: () -> ::String
706
+ def status: () -> ("Pending" | "Preparing" | "Running" | "Restarting" | "Completed" | "Failed" | "RunningFailed" | "Terminating" | "Terminated" | "Canceled")
707
+ def last_started_at: () -> ::Time
708
+ def last_updated_at: () -> ::Time
709
+ def failure_behavior: () -> ("Fail" | "Continue")
710
+ def 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")
711
+ def failure_reason: () -> ::String
712
+ def client_request_token: () -> ::String
713
+ def output_location: () -> Types::OutputLocation
714
+ def logging_config: () -> Types::LoggingConfig
715
+ def max_job_duration_in_seconds: () -> ::Integer
716
+ def simulation_time_millis: () -> ::Integer
717
+ def iam_role: () -> ::String
718
+ def robot_applications: () -> ::Array[Types::RobotApplicationConfig]
719
+ def simulation_applications: () -> ::Array[Types::SimulationApplicationConfig]
720
+ def data_sources: () -> ::Array[Types::DataSource]
721
+ def tags: () -> ::Hash[::String, ::String]
722
+ def vpc_config: () -> Types::VPCConfigResponse
723
+ def network_interface: () -> Types::NetworkInterface
724
+ def compute: () -> Types::ComputeResponse
725
+ end
726
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_simulation_job-instance_method
727
+ def describe_simulation_job: (
728
+ job: ::String
729
+ ) -> _DescribeSimulationJobResponseSuccess
730
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSimulationJobResponseSuccess
731
+
732
+ interface _DescribeSimulationJobBatchResponseSuccess
733
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSimulationJobBatchResponse]
734
+ def arn: () -> ::String
735
+ def status: () -> ("Pending" | "InProgress" | "Failed" | "Completed" | "Canceled" | "Canceling" | "Completing" | "TimingOut" | "TimedOut")
736
+ def last_updated_at: () -> ::Time
737
+ def created_at: () -> ::Time
738
+ def client_request_token: () -> ::String
739
+ def batch_policy: () -> Types::BatchPolicy
740
+ def failure_code: () -> ("InternalServiceError")
741
+ def failure_reason: () -> ::String
742
+ def failed_requests: () -> ::Array[Types::FailedCreateSimulationJobRequest]
743
+ def pending_requests: () -> ::Array[Types::SimulationJobRequest]
744
+ def created_requests: () -> ::Array[Types::SimulationJobSummary]
745
+ def tags: () -> ::Hash[::String, ::String]
746
+ end
747
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_simulation_job_batch-instance_method
748
+ def describe_simulation_job_batch: (
749
+ batch: ::String
750
+ ) -> _DescribeSimulationJobBatchResponseSuccess
751
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSimulationJobBatchResponseSuccess
752
+
753
+ interface _DescribeWorldResponseSuccess
754
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWorldResponse]
755
+ def arn: () -> ::String
756
+ def generation_job: () -> ::String
757
+ def template: () -> ::String
758
+ def created_at: () -> ::Time
759
+ def tags: () -> ::Hash[::String, ::String]
760
+ def world_description_body: () -> ::String
761
+ end
762
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_world-instance_method
763
+ def describe_world: (
764
+ world: ::String
765
+ ) -> _DescribeWorldResponseSuccess
766
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorldResponseSuccess
767
+
768
+ interface _DescribeWorldExportJobResponseSuccess
769
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWorldExportJobResponse]
770
+ def arn: () -> ::String
771
+ def status: () -> ("Pending" | "Running" | "Completed" | "Failed" | "Canceling" | "Canceled")
772
+ def created_at: () -> ::Time
773
+ def failure_code: () -> ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AccessDenied")
774
+ def failure_reason: () -> ::String
775
+ def client_request_token: () -> ::String
776
+ def worlds: () -> ::Array[::String]
777
+ def output_location: () -> Types::OutputLocation
778
+ def iam_role: () -> ::String
779
+ def tags: () -> ::Hash[::String, ::String]
780
+ end
781
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_world_export_job-instance_method
782
+ def describe_world_export_job: (
783
+ job: ::String
784
+ ) -> _DescribeWorldExportJobResponseSuccess
785
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorldExportJobResponseSuccess
786
+
787
+ interface _DescribeWorldGenerationJobResponseSuccess
788
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWorldGenerationJobResponse]
789
+ def arn: () -> ::String
790
+ def status: () -> ("Pending" | "Running" | "Completed" | "Failed" | "PartialFailed" | "Canceling" | "Canceled")
791
+ def created_at: () -> ::Time
792
+ def failure_code: () -> ("InternalServiceError" | "LimitExceeded" | "ResourceNotFound" | "RequestThrottled" | "InvalidInput" | "AllWorldGenerationFailed")
793
+ def failure_reason: () -> ::String
794
+ def client_request_token: () -> ::String
795
+ def template: () -> ::String
796
+ def world_count: () -> Types::WorldCount
797
+ def finished_worlds_summary: () -> Types::FinishedWorldsSummary
798
+ def tags: () -> ::Hash[::String, ::String]
799
+ def world_tags: () -> ::Hash[::String, ::String]
800
+ end
801
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_world_generation_job-instance_method
802
+ def describe_world_generation_job: (
803
+ job: ::String
804
+ ) -> _DescribeWorldGenerationJobResponseSuccess
805
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorldGenerationJobResponseSuccess
806
+
807
+ interface _DescribeWorldTemplateResponseSuccess
808
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWorldTemplateResponse]
809
+ def arn: () -> ::String
810
+ def client_request_token: () -> ::String
811
+ def name: () -> ::String
812
+ def created_at: () -> ::Time
813
+ def last_updated_at: () -> ::Time
814
+ def tags: () -> ::Hash[::String, ::String]
815
+ def version: () -> ::String
816
+ end
817
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#describe_world_template-instance_method
818
+ def describe_world_template: (
819
+ template: ::String
820
+ ) -> _DescribeWorldTemplateResponseSuccess
821
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorldTemplateResponseSuccess
822
+
823
+ interface _GetWorldTemplateBodyResponseSuccess
824
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorldTemplateBodyResponse]
825
+ def template_body: () -> ::String
826
+ end
827
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#get_world_template_body-instance_method
828
+ def get_world_template_body: (
829
+ ?template: ::String,
830
+ ?generation_job: ::String
831
+ ) -> _GetWorldTemplateBodyResponseSuccess
832
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorldTemplateBodyResponseSuccess
833
+
834
+ interface _ListDeploymentJobsResponseSuccess
835
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDeploymentJobsResponse]
836
+ def deployment_jobs: () -> ::Array[Types::DeploymentJob]
837
+ def next_token: () -> ::String
838
+ end
839
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_deployment_jobs-instance_method
840
+ def list_deployment_jobs: (
841
+ ?filters: Array[
842
+ {
843
+ name: ::String?,
844
+ values: Array[::String]?
845
+ },
846
+ ],
847
+ ?next_token: ::String,
848
+ ?max_results: ::Integer
849
+ ) -> _ListDeploymentJobsResponseSuccess
850
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeploymentJobsResponseSuccess
851
+
852
+ interface _ListFleetsResponseSuccess
853
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFleetsResponse]
854
+ def fleet_details: () -> ::Array[Types::Fleet]
855
+ def next_token: () -> ::String
856
+ end
857
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_fleets-instance_method
858
+ def list_fleets: (
859
+ ?next_token: ::String,
860
+ ?max_results: ::Integer,
861
+ ?filters: Array[
862
+ {
863
+ name: ::String?,
864
+ values: Array[::String]?
865
+ },
866
+ ]
867
+ ) -> _ListFleetsResponseSuccess
868
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFleetsResponseSuccess
869
+
870
+ interface _ListRobotApplicationsResponseSuccess
871
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRobotApplicationsResponse]
872
+ def robot_application_summaries: () -> ::Array[Types::RobotApplicationSummary]
873
+ def next_token: () -> ::String
874
+ end
875
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_robot_applications-instance_method
876
+ def list_robot_applications: (
877
+ ?version_qualifier: ::String,
878
+ ?next_token: ::String,
879
+ ?max_results: ::Integer,
880
+ ?filters: Array[
881
+ {
882
+ name: ::String?,
883
+ values: Array[::String]?
884
+ },
885
+ ]
886
+ ) -> _ListRobotApplicationsResponseSuccess
887
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRobotApplicationsResponseSuccess
888
+
889
+ interface _ListRobotsResponseSuccess
890
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRobotsResponse]
891
+ def robots: () -> ::Array[Types::Robot]
892
+ def next_token: () -> ::String
893
+ end
894
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_robots-instance_method
895
+ def list_robots: (
896
+ ?next_token: ::String,
897
+ ?max_results: ::Integer,
898
+ ?filters: Array[
899
+ {
900
+ name: ::String?,
901
+ values: Array[::String]?
902
+ },
903
+ ]
904
+ ) -> _ListRobotsResponseSuccess
905
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRobotsResponseSuccess
906
+
907
+ interface _ListSimulationApplicationsResponseSuccess
908
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSimulationApplicationsResponse]
909
+ def simulation_application_summaries: () -> ::Array[Types::SimulationApplicationSummary]
910
+ def next_token: () -> ::String
911
+ end
912
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_simulation_applications-instance_method
913
+ def list_simulation_applications: (
914
+ ?version_qualifier: ::String,
915
+ ?next_token: ::String,
916
+ ?max_results: ::Integer,
917
+ ?filters: Array[
918
+ {
919
+ name: ::String?,
920
+ values: Array[::String]?
921
+ },
922
+ ]
923
+ ) -> _ListSimulationApplicationsResponseSuccess
924
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSimulationApplicationsResponseSuccess
925
+
926
+ interface _ListSimulationJobBatchesResponseSuccess
927
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSimulationJobBatchesResponse]
928
+ def simulation_job_batch_summaries: () -> ::Array[Types::SimulationJobBatchSummary]
929
+ def next_token: () -> ::String
930
+ end
931
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_simulation_job_batches-instance_method
932
+ def list_simulation_job_batches: (
933
+ ?next_token: ::String,
934
+ ?max_results: ::Integer,
935
+ ?filters: Array[
936
+ {
937
+ name: ::String?,
938
+ values: Array[::String]?
939
+ },
940
+ ]
941
+ ) -> _ListSimulationJobBatchesResponseSuccess
942
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSimulationJobBatchesResponseSuccess
943
+
944
+ interface _ListSimulationJobsResponseSuccess
945
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSimulationJobsResponse]
946
+ def simulation_job_summaries: () -> ::Array[Types::SimulationJobSummary]
947
+ def next_token: () -> ::String
948
+ end
949
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_simulation_jobs-instance_method
950
+ def list_simulation_jobs: (
951
+ ?next_token: ::String,
952
+ ?max_results: ::Integer,
953
+ ?filters: Array[
954
+ {
955
+ name: ::String?,
956
+ values: Array[::String]?
957
+ },
958
+ ]
959
+ ) -> _ListSimulationJobsResponseSuccess
960
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSimulationJobsResponseSuccess
961
+
962
+ interface _ListTagsForResourceResponseSuccess
963
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
964
+ def tags: () -> ::Hash[::String, ::String]
965
+ end
966
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_tags_for_resource-instance_method
967
+ def list_tags_for_resource: (
968
+ resource_arn: ::String
969
+ ) -> _ListTagsForResourceResponseSuccess
970
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
971
+
972
+ interface _ListWorldExportJobsResponseSuccess
973
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorldExportJobsResponse]
974
+ def world_export_job_summaries: () -> ::Array[Types::WorldExportJobSummary]
975
+ def next_token: () -> ::String
976
+ end
977
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_world_export_jobs-instance_method
978
+ def list_world_export_jobs: (
979
+ ?next_token: ::String,
980
+ ?max_results: ::Integer,
981
+ ?filters: Array[
982
+ {
983
+ name: ::String?,
984
+ values: Array[::String]?
985
+ },
986
+ ]
987
+ ) -> _ListWorldExportJobsResponseSuccess
988
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorldExportJobsResponseSuccess
989
+
990
+ interface _ListWorldGenerationJobsResponseSuccess
991
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorldGenerationJobsResponse]
992
+ def world_generation_job_summaries: () -> ::Array[Types::WorldGenerationJobSummary]
993
+ def next_token: () -> ::String
994
+ end
995
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_world_generation_jobs-instance_method
996
+ def list_world_generation_jobs: (
997
+ ?next_token: ::String,
998
+ ?max_results: ::Integer,
999
+ ?filters: Array[
1000
+ {
1001
+ name: ::String?,
1002
+ values: Array[::String]?
1003
+ },
1004
+ ]
1005
+ ) -> _ListWorldGenerationJobsResponseSuccess
1006
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorldGenerationJobsResponseSuccess
1007
+
1008
+ interface _ListWorldTemplatesResponseSuccess
1009
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorldTemplatesResponse]
1010
+ def template_summaries: () -> ::Array[Types::TemplateSummary]
1011
+ def next_token: () -> ::String
1012
+ end
1013
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_world_templates-instance_method
1014
+ def list_world_templates: (
1015
+ ?next_token: ::String,
1016
+ ?max_results: ::Integer
1017
+ ) -> _ListWorldTemplatesResponseSuccess
1018
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorldTemplatesResponseSuccess
1019
+
1020
+ interface _ListWorldsResponseSuccess
1021
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorldsResponse]
1022
+ def world_summaries: () -> ::Array[Types::WorldSummary]
1023
+ def next_token: () -> ::String
1024
+ end
1025
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#list_worlds-instance_method
1026
+ def list_worlds: (
1027
+ ?next_token: ::String,
1028
+ ?max_results: ::Integer,
1029
+ ?filters: Array[
1030
+ {
1031
+ name: ::String?,
1032
+ values: Array[::String]?
1033
+ },
1034
+ ]
1035
+ ) -> _ListWorldsResponseSuccess
1036
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorldsResponseSuccess
1037
+
1038
+ interface _RegisterRobotResponseSuccess
1039
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterRobotResponse]
1040
+ def fleet: () -> ::String
1041
+ def robot: () -> ::String
1042
+ end
1043
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#register_robot-instance_method
1044
+ def register_robot: (
1045
+ fleet: ::String,
1046
+ robot: ::String
1047
+ ) -> _RegisterRobotResponseSuccess
1048
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterRobotResponseSuccess
1049
+
1050
+ interface _RestartSimulationJobResponseSuccess
1051
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestartSimulationJobResponse]
1052
+ end
1053
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#restart_simulation_job-instance_method
1054
+ def restart_simulation_job: (
1055
+ job: ::String
1056
+ ) -> _RestartSimulationJobResponseSuccess
1057
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestartSimulationJobResponseSuccess
1058
+
1059
+ interface _StartSimulationJobBatchResponseSuccess
1060
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartSimulationJobBatchResponse]
1061
+ def arn: () -> ::String
1062
+ def status: () -> ("Pending" | "InProgress" | "Failed" | "Completed" | "Canceled" | "Canceling" | "Completing" | "TimingOut" | "TimedOut")
1063
+ def created_at: () -> ::Time
1064
+ def client_request_token: () -> ::String
1065
+ def batch_policy: () -> Types::BatchPolicy
1066
+ def failure_code: () -> ("InternalServiceError")
1067
+ def failure_reason: () -> ::String
1068
+ def failed_requests: () -> ::Array[Types::FailedCreateSimulationJobRequest]
1069
+ def pending_requests: () -> ::Array[Types::SimulationJobRequest]
1070
+ def created_requests: () -> ::Array[Types::SimulationJobSummary]
1071
+ def tags: () -> ::Hash[::String, ::String]
1072
+ end
1073
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#start_simulation_job_batch-instance_method
1074
+ def start_simulation_job_batch: (
1075
+ ?client_request_token: ::String,
1076
+ ?batch_policy: {
1077
+ timeout_in_seconds: ::Integer?,
1078
+ max_concurrency: ::Integer?
1079
+ },
1080
+ create_simulation_job_requests: Array[
1081
+ {
1082
+ output_location: {
1083
+ s3_bucket: ::String?,
1084
+ s3_prefix: ::String?
1085
+ }?,
1086
+ logging_config: {
1087
+ record_all_ros_topics: bool?
1088
+ }?,
1089
+ max_job_duration_in_seconds: ::Integer,
1090
+ iam_role: ::String?,
1091
+ failure_behavior: ("Fail" | "Continue")?,
1092
+ use_default_applications: bool?,
1093
+ robot_applications: Array[
1094
+ {
1095
+ application: ::String,
1096
+ application_version: ::String?,
1097
+ launch_config: {
1098
+ package_name: ::String?,
1099
+ launch_file: ::String?,
1100
+ environment_variables: Hash[::String, ::String]?,
1101
+ port_forwarding_config: {
1102
+ port_mappings: Array[
1103
+ {
1104
+ job_port: ::Integer,
1105
+ application_port: ::Integer,
1106
+ enable_on_public_ip: bool?
1107
+ },
1108
+ ]?
1109
+ }?,
1110
+ stream_ui: bool?,
1111
+ command: Array[::String]?
1112
+ },
1113
+ upload_configurations: Array[
1114
+ {
1115
+ name: ::String,
1116
+ path: ::String,
1117
+ upload_behavior: ("UPLOAD_ON_TERMINATE" | "UPLOAD_ROLLING_AUTO_REMOVE")
1118
+ },
1119
+ ]?,
1120
+ use_default_upload_configurations: bool?,
1121
+ tools: Array[
1122
+ {
1123
+ stream_ui: bool?,
1124
+ name: ::String,
1125
+ command: ::String,
1126
+ stream_output_to_cloud_watch: bool?,
1127
+ exit_behavior: ("FAIL" | "RESTART")?
1128
+ },
1129
+ ]?,
1130
+ use_default_tools: bool?
1131
+ },
1132
+ ]?,
1133
+ simulation_applications: Array[
1134
+ {
1135
+ application: ::String,
1136
+ application_version: ::String?,
1137
+ launch_config: {
1138
+ package_name: ::String?,
1139
+ launch_file: ::String?,
1140
+ environment_variables: Hash[::String, ::String]?,
1141
+ port_forwarding_config: {
1142
+ port_mappings: Array[
1143
+ {
1144
+ job_port: ::Integer,
1145
+ application_port: ::Integer,
1146
+ enable_on_public_ip: bool?
1147
+ },
1148
+ ]?
1149
+ }?,
1150
+ stream_ui: bool?,
1151
+ command: Array[::String]?
1152
+ },
1153
+ upload_configurations: Array[
1154
+ {
1155
+ name: ::String,
1156
+ path: ::String,
1157
+ upload_behavior: ("UPLOAD_ON_TERMINATE" | "UPLOAD_ROLLING_AUTO_REMOVE")
1158
+ },
1159
+ ]?,
1160
+ world_configs: Array[
1161
+ {
1162
+ world: ::String?
1163
+ },
1164
+ ]?,
1165
+ use_default_upload_configurations: bool?,
1166
+ tools: Array[
1167
+ {
1168
+ stream_ui: bool?,
1169
+ name: ::String,
1170
+ command: ::String,
1171
+ stream_output_to_cloud_watch: bool?,
1172
+ exit_behavior: ("FAIL" | "RESTART")?
1173
+ },
1174
+ ]?,
1175
+ use_default_tools: bool?
1176
+ },
1177
+ ]?,
1178
+ data_sources: Array[
1179
+ {
1180
+ name: ::String,
1181
+ s3_bucket: ::String,
1182
+ s3_keys: Array[::String],
1183
+ type: ("Prefix" | "Archive" | "File")?,
1184
+ destination: ::String?
1185
+ },
1186
+ ]?,
1187
+ vpc_config: {
1188
+ subnets: Array[::String],
1189
+ security_groups: Array[::String]?,
1190
+ assign_public_ip: bool?
1191
+ }?,
1192
+ compute: {
1193
+ simulation_unit_limit: ::Integer?,
1194
+ compute_type: ("CPU" | "GPU_AND_CPU")?,
1195
+ gpu_unit_limit: ::Integer?
1196
+ }?,
1197
+ tags: Hash[::String, ::String]?
1198
+ },
1199
+ ],
1200
+ ?tags: Hash[::String, ::String]
1201
+ ) -> _StartSimulationJobBatchResponseSuccess
1202
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSimulationJobBatchResponseSuccess
1203
+
1204
+ interface _SyncDeploymentJobResponseSuccess
1205
+ include ::Seahorse::Client::_ResponseSuccess[Types::SyncDeploymentJobResponse]
1206
+ def arn: () -> ::String
1207
+ def fleet: () -> ::String
1208
+ def status: () -> ("Pending" | "Preparing" | "InProgress" | "Failed" | "Succeeded" | "Canceled")
1209
+ def deployment_config: () -> Types::DeploymentConfig
1210
+ def deployment_application_configs: () -> ::Array[Types::DeploymentApplicationConfig]
1211
+ def failure_reason: () -> ::String
1212
+ def 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")
1213
+ def created_at: () -> ::Time
1214
+ end
1215
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#sync_deployment_job-instance_method
1216
+ def sync_deployment_job: (
1217
+ client_request_token: ::String,
1218
+ fleet: ::String
1219
+ ) -> _SyncDeploymentJobResponseSuccess
1220
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SyncDeploymentJobResponseSuccess
1221
+
1222
+ interface _TagResourceResponseSuccess
1223
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
1224
+ end
1225
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#tag_resource-instance_method
1226
+ def tag_resource: (
1227
+ resource_arn: ::String,
1228
+ tags: Hash[::String, ::String]
1229
+ ) -> _TagResourceResponseSuccess
1230
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
1231
+
1232
+ interface _UntagResourceResponseSuccess
1233
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
1234
+ end
1235
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#untag_resource-instance_method
1236
+ def untag_resource: (
1237
+ resource_arn: ::String,
1238
+ tag_keys: Array[::String]
1239
+ ) -> _UntagResourceResponseSuccess
1240
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
1241
+
1242
+ interface _UpdateRobotApplicationResponseSuccess
1243
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRobotApplicationResponse]
1244
+ def arn: () -> ::String
1245
+ def name: () -> ::String
1246
+ def version: () -> ::String
1247
+ def sources: () -> ::Array[Types::Source]
1248
+ def robot_software_suite: () -> Types::RobotSoftwareSuite
1249
+ def last_updated_at: () -> ::Time
1250
+ def revision_id: () -> ::String
1251
+ def environment: () -> Types::Environment
1252
+ end
1253
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#update_robot_application-instance_method
1254
+ def update_robot_application: (
1255
+ application: ::String,
1256
+ ?sources: Array[
1257
+ {
1258
+ s3_bucket: ::String?,
1259
+ s3_key: ::String?,
1260
+ architecture: ("X86_64" | "ARM64" | "ARMHF")?
1261
+ },
1262
+ ],
1263
+ robot_software_suite: {
1264
+ name: ("ROS" | "ROS2" | "General")?,
1265
+ version: ("Kinetic" | "Melodic" | "Dashing" | "Foxy")?
1266
+ },
1267
+ ?current_revision_id: ::String,
1268
+ ?environment: {
1269
+ uri: ::String?
1270
+ }
1271
+ ) -> _UpdateRobotApplicationResponseSuccess
1272
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRobotApplicationResponseSuccess
1273
+
1274
+ interface _UpdateSimulationApplicationResponseSuccess
1275
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSimulationApplicationResponse]
1276
+ def arn: () -> ::String
1277
+ def name: () -> ::String
1278
+ def version: () -> ::String
1279
+ def sources: () -> ::Array[Types::Source]
1280
+ def simulation_software_suite: () -> Types::SimulationSoftwareSuite
1281
+ def robot_software_suite: () -> Types::RobotSoftwareSuite
1282
+ def rendering_engine: () -> Types::RenderingEngine
1283
+ def last_updated_at: () -> ::Time
1284
+ def revision_id: () -> ::String
1285
+ def environment: () -> Types::Environment
1286
+ end
1287
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#update_simulation_application-instance_method
1288
+ def update_simulation_application: (
1289
+ application: ::String,
1290
+ ?sources: Array[
1291
+ {
1292
+ s3_bucket: ::String?,
1293
+ s3_key: ::String?,
1294
+ architecture: ("X86_64" | "ARM64" | "ARMHF")?
1295
+ },
1296
+ ],
1297
+ simulation_software_suite: {
1298
+ name: ("Gazebo" | "RosbagPlay" | "SimulationRuntime")?,
1299
+ version: ::String?
1300
+ },
1301
+ robot_software_suite: {
1302
+ name: ("ROS" | "ROS2" | "General")?,
1303
+ version: ("Kinetic" | "Melodic" | "Dashing" | "Foxy")?
1304
+ },
1305
+ ?rendering_engine: {
1306
+ name: ("OGRE")?,
1307
+ version: ::String?
1308
+ },
1309
+ ?current_revision_id: ::String,
1310
+ ?environment: {
1311
+ uri: ::String?
1312
+ }
1313
+ ) -> _UpdateSimulationApplicationResponseSuccess
1314
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSimulationApplicationResponseSuccess
1315
+
1316
+ interface _UpdateWorldTemplateResponseSuccess
1317
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorldTemplateResponse]
1318
+ def arn: () -> ::String
1319
+ def name: () -> ::String
1320
+ def created_at: () -> ::Time
1321
+ def last_updated_at: () -> ::Time
1322
+ end
1323
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RoboMaker/Client.html#update_world_template-instance_method
1324
+ def update_world_template: (
1325
+ template: ::String,
1326
+ ?name: ::String,
1327
+ ?template_body: ::String,
1328
+ ?template_location: {
1329
+ s3_bucket: ::String,
1330
+ s3_key: ::String
1331
+ }
1332
+ ) -> _UpdateWorldTemplateResponseSuccess
1333
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorldTemplateResponseSuccess
1334
+ end
1335
+ end
1336
+ end
1337
+