aws-sdk-robomaker 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-robomaker.rb +7 -4
- data/lib/aws-sdk-robomaker/client.rb +41 -10
- data/lib/aws-sdk-robomaker/client_api.rb +2 -1
- data/lib/aws-sdk-robomaker/errors.rb +35 -0
- data/lib/aws-sdk-robomaker/resource.rb +7 -0
- data/lib/aws-sdk-robomaker/types.rb +22 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40a45e6f97d201c8c993aa1d5074719b4a9e832d
|
4
|
+
data.tar.gz: e83c7041b39da2f3c9c8058cd686c45ff449ab12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d50cc86275f74e0e39f7a32cc7d940b4272d65d83a197c933032876b63964b1c82021712aabcf44478a8bf3378aec2c53bf6ef1a00519fb8eb700c77db46b383
|
7
|
+
data.tar.gz: aba22c5f6efb1edf372bd28bd00a59e541c2e832739dc901b0429ae7fcc166993ecd3f96d7256f0ae3cddd7b9972bdbbf01674259b9c641a58ebeceaf1a8ca2f
|
data/lib/aws-sdk-robomaker.rb
CHANGED
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-robomaker/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# robo_maker = Aws::RoboMaker::Client.new
|
28
|
+
# resp = robo_maker.batch_describe_simulation_job(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from AWS RoboMaker
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from AWS RoboMaker are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::RoboMaker::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all AWS RoboMaker API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-robomaker/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::RoboMaker
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.20.0'
|
46
49
|
|
47
50
|
end
|
@@ -30,6 +30,16 @@ require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
30
30
|
Aws::Plugins::GlobalConfiguration.add_identifier(:robomaker)
|
31
31
|
|
32
32
|
module Aws::RoboMaker
|
33
|
+
# An API client for RoboMaker. To construct a client, you need to configure a +:region+ and +:credentials+.
|
34
|
+
# client = Aws::RoboMaker::Client.new(
|
35
|
+
# region: region_name,
|
36
|
+
# credentials: credentials,
|
37
|
+
# # ...
|
38
|
+
# )
|
39
|
+
# For details on configuring region and credentials see
|
40
|
+
# the {developer-guide}[https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/setup-config.html].
|
41
|
+
#
|
42
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
43
|
class Client < Seahorse::Client::Base
|
34
44
|
|
35
45
|
include Aws::ClientStubs
|
@@ -209,16 +219,16 @@ module Aws::RoboMaker
|
|
209
219
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
220
|
#
|
211
221
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
222
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
223
|
# `Timeout::Error`.
|
214
224
|
#
|
215
225
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
226
|
# number of seconds to wait for response data. This value can
|
217
227
|
# safely be set
|
218
|
-
# per-request on the session
|
228
|
+
# per-request on the session yielded by {#session_for}.
|
219
229
|
#
|
220
230
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
231
|
+
# seconds a connection is allowed to sit idle before it is
|
222
232
|
# considered stale. Stale connections are closed and removed
|
223
233
|
# from the pool before making a request.
|
224
234
|
#
|
@@ -227,7 +237,7 @@ module Aws::RoboMaker
|
|
227
237
|
# request body. This option has no effect unless the request has
|
228
238
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
239
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
240
|
+
# request on the session yielded by {#session_for}.
|
231
241
|
#
|
232
242
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
243
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -299,6 +309,7 @@ module Aws::RoboMaker
|
|
299
309
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
300
310
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
301
311
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
312
|
+
# resp.jobs[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
302
313
|
# resp.jobs[0].simulation_applications #=> Array
|
303
314
|
# resp.jobs[0].simulation_applications[0].application #=> String
|
304
315
|
# resp.jobs[0].simulation_applications[0].application_version #=> String
|
@@ -310,6 +321,7 @@ module Aws::RoboMaker
|
|
310
321
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
311
322
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
312
323
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
324
|
+
# resp.jobs[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
313
325
|
# resp.jobs[0].data_sources #=> Array
|
314
326
|
# resp.jobs[0].data_sources[0].name #=> String
|
315
327
|
# resp.jobs[0].data_sources[0].s3_bucket #=> String
|
@@ -506,7 +518,7 @@ module Aws::RoboMaker
|
|
506
518
|
# resp.deployment_application_configs[0].launch_config.environment_variables #=> Hash
|
507
519
|
# resp.deployment_application_configs[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
508
520
|
# resp.failure_reason #=> String
|
509
|
-
# resp.failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
521
|
+
# resp.failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "InvalidGreengrassGroup", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "LambdaDeleted", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
510
522
|
# resp.created_at #=> Time
|
511
523
|
# resp.deployment_config.concurrent_deployment_percentage #=> Integer
|
512
524
|
# resp.deployment_config.failure_threshold_percentage #=> Integer
|
@@ -1017,6 +1029,7 @@ module Aws::RoboMaker
|
|
1017
1029
|
# },
|
1018
1030
|
# ],
|
1019
1031
|
# },
|
1032
|
+
# stream_ui: false,
|
1020
1033
|
# },
|
1021
1034
|
# },
|
1022
1035
|
# ],
|
@@ -1039,6 +1052,7 @@ module Aws::RoboMaker
|
|
1039
1052
|
# },
|
1040
1053
|
# ],
|
1041
1054
|
# },
|
1055
|
+
# stream_ui: false,
|
1042
1056
|
# },
|
1043
1057
|
# },
|
1044
1058
|
# ],
|
@@ -1085,6 +1099,7 @@ module Aws::RoboMaker
|
|
1085
1099
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1086
1100
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1087
1101
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1102
|
+
# resp.robot_applications[0].launch_config.stream_ui #=> Boolean
|
1088
1103
|
# resp.simulation_applications #=> Array
|
1089
1104
|
# resp.simulation_applications[0].application #=> String
|
1090
1105
|
# resp.simulation_applications[0].application_version #=> String
|
@@ -1096,6 +1111,7 @@ module Aws::RoboMaker
|
|
1096
1111
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1097
1112
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1098
1113
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1114
|
+
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1099
1115
|
# resp.data_sources #=> Array
|
1100
1116
|
# resp.data_sources[0].name #=> String
|
1101
1117
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1295,7 +1311,7 @@ module Aws::RoboMaker
|
|
1295
1311
|
# resp.deployment_application_configs[0].launch_config.environment_variables #=> Hash
|
1296
1312
|
# resp.deployment_application_configs[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1297
1313
|
# resp.failure_reason #=> String
|
1298
|
-
# resp.failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
1314
|
+
# resp.failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "InvalidGreengrassGroup", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "LambdaDeleted", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
1299
1315
|
# resp.created_at #=> Time
|
1300
1316
|
# resp.robot_deployment_summary #=> Array
|
1301
1317
|
# resp.robot_deployment_summary[0].arn #=> String
|
@@ -1307,7 +1323,7 @@ module Aws::RoboMaker
|
|
1307
1323
|
# resp.robot_deployment_summary[0].progress_detail.estimated_time_remaining_seconds #=> Integer
|
1308
1324
|
# resp.robot_deployment_summary[0].progress_detail.target_resource #=> String
|
1309
1325
|
# resp.robot_deployment_summary[0].failure_reason #=> String
|
1310
|
-
# resp.robot_deployment_summary[0].failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
1326
|
+
# resp.robot_deployment_summary[0].failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "InvalidGreengrassGroup", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "LambdaDeleted", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
1311
1327
|
# resp.tags #=> Hash
|
1312
1328
|
# resp.tags["TagKey"] #=> String
|
1313
1329
|
#
|
@@ -1591,6 +1607,7 @@ module Aws::RoboMaker
|
|
1591
1607
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1592
1608
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1593
1609
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1610
|
+
# resp.robot_applications[0].launch_config.stream_ui #=> Boolean
|
1594
1611
|
# resp.simulation_applications #=> Array
|
1595
1612
|
# resp.simulation_applications[0].application #=> String
|
1596
1613
|
# resp.simulation_applications[0].application_version #=> String
|
@@ -1602,6 +1619,7 @@ module Aws::RoboMaker
|
|
1602
1619
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1603
1620
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1604
1621
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1622
|
+
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1605
1623
|
# resp.data_sources #=> Array
|
1606
1624
|
# resp.data_sources[0].name #=> String
|
1607
1625
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1685,6 +1703,7 @@ module Aws::RoboMaker
|
|
1685
1703
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1686
1704
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1687
1705
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1706
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.stream_ui #=> Boolean
|
1688
1707
|
# resp.failed_requests[0].request.simulation_applications #=> Array
|
1689
1708
|
# resp.failed_requests[0].request.simulation_applications[0].application #=> String
|
1690
1709
|
# resp.failed_requests[0].request.simulation_applications[0].application_version #=> String
|
@@ -1696,6 +1715,7 @@ module Aws::RoboMaker
|
|
1696
1715
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1697
1716
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1698
1717
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1718
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1699
1719
|
# resp.failed_requests[0].request.data_sources #=> Array
|
1700
1720
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
1701
1721
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -1730,6 +1750,7 @@ module Aws::RoboMaker
|
|
1730
1750
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1731
1751
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1732
1752
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1753
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
1733
1754
|
# resp.pending_requests[0].simulation_applications #=> Array
|
1734
1755
|
# resp.pending_requests[0].simulation_applications[0].application #=> String
|
1735
1756
|
# resp.pending_requests[0].simulation_applications[0].application_version #=> String
|
@@ -1741,6 +1762,7 @@ module Aws::RoboMaker
|
|
1741
1762
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1742
1763
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1743
1764
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1765
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1744
1766
|
# resp.pending_requests[0].data_sources #=> Array
|
1745
1767
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
1746
1768
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -1844,7 +1866,7 @@ module Aws::RoboMaker
|
|
1844
1866
|
# resp.deployment_jobs[0].deployment_config.download_condition_file.key #=> String
|
1845
1867
|
# resp.deployment_jobs[0].deployment_config.download_condition_file.etag #=> String
|
1846
1868
|
# resp.deployment_jobs[0].failure_reason #=> String
|
1847
|
-
# resp.deployment_jobs[0].failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
1869
|
+
# resp.deployment_jobs[0].failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "InvalidGreengrassGroup", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "LambdaDeleted", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
1848
1870
|
# resp.deployment_jobs[0].created_at #=> Time
|
1849
1871
|
# resp.next_token #=> String
|
1850
1872
|
#
|
@@ -2356,6 +2378,9 @@ module Aws::RoboMaker
|
|
2356
2378
|
# Unique, case-sensitive identifier that you provide to ensure the
|
2357
2379
|
# idempotency of the request.
|
2358
2380
|
#
|
2381
|
+
# **A suitable default value is auto-generated.** You should normally
|
2382
|
+
# not need to pass this option.**
|
2383
|
+
#
|
2359
2384
|
# @option params [Types::BatchPolicy] :batch_policy
|
2360
2385
|
# The batch policy.
|
2361
2386
|
#
|
@@ -2420,6 +2445,7 @@ module Aws::RoboMaker
|
|
2420
2445
|
# },
|
2421
2446
|
# ],
|
2422
2447
|
# },
|
2448
|
+
# stream_ui: false,
|
2423
2449
|
# },
|
2424
2450
|
# },
|
2425
2451
|
# ],
|
@@ -2442,6 +2468,7 @@ module Aws::RoboMaker
|
|
2442
2468
|
# },
|
2443
2469
|
# ],
|
2444
2470
|
# },
|
2471
|
+
# stream_ui: false,
|
2445
2472
|
# },
|
2446
2473
|
# },
|
2447
2474
|
# ],
|
@@ -2496,6 +2523,7 @@ module Aws::RoboMaker
|
|
2496
2523
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2497
2524
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2498
2525
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2526
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.stream_ui #=> Boolean
|
2499
2527
|
# resp.failed_requests[0].request.simulation_applications #=> Array
|
2500
2528
|
# resp.failed_requests[0].request.simulation_applications[0].application #=> String
|
2501
2529
|
# resp.failed_requests[0].request.simulation_applications[0].application_version #=> String
|
@@ -2507,6 +2535,7 @@ module Aws::RoboMaker
|
|
2507
2535
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2508
2536
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2509
2537
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2538
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2510
2539
|
# resp.failed_requests[0].request.data_sources #=> Array
|
2511
2540
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
2512
2541
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -2541,6 +2570,7 @@ module Aws::RoboMaker
|
|
2541
2570
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2542
2571
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2543
2572
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2573
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
2544
2574
|
# resp.pending_requests[0].simulation_applications #=> Array
|
2545
2575
|
# resp.pending_requests[0].simulation_applications[0].application #=> String
|
2546
2576
|
# resp.pending_requests[0].simulation_applications[0].application_version #=> String
|
@@ -2552,6 +2582,7 @@ module Aws::RoboMaker
|
|
2552
2582
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2553
2583
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2554
2584
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2585
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2555
2586
|
# resp.pending_requests[0].data_sources #=> Array
|
2556
2587
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
2557
2588
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -2639,7 +2670,7 @@ module Aws::RoboMaker
|
|
2639
2670
|
# resp.deployment_application_configs[0].launch_config.environment_variables #=> Hash
|
2640
2671
|
# resp.deployment_application_configs[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
2641
2672
|
# resp.failure_reason #=> String
|
2642
|
-
# resp.failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
2673
|
+
# resp.failure_code #=> String, one of "ResourceNotFound", "EnvironmentSetupError", "EtagMismatch", "FailureThresholdBreached", "RobotDeploymentAborted", "RobotDeploymentNoResponse", "RobotAgentConnectionTimeout", "GreengrassDeploymentFailed", "InvalidGreengrassGroup", "MissingRobotArchitecture", "MissingRobotApplicationArchitecture", "MissingRobotDeploymentResource", "GreengrassGroupVersionDoesNotExist", "LambdaDeleted", "ExtractingBundleFailure", "PreLaunchFileFailure", "PostLaunchFileFailure", "BadPermissionError", "DownloadConditionFailed", "InternalServerError"
|
2643
2674
|
# resp.created_at #=> Time
|
2644
2675
|
#
|
2645
2676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SyncDeploymentJob AWS API Documentation
|
@@ -2893,7 +2924,7 @@ module Aws::RoboMaker
|
|
2893
2924
|
params: params,
|
2894
2925
|
config: config)
|
2895
2926
|
context[:gem_name] = 'aws-sdk-robomaker'
|
2896
|
-
context[:gem_version] = '1.
|
2927
|
+
context[:gem_version] = '1.20.0'
|
2897
2928
|
Seahorse::Client::Request.new(handlers, context)
|
2898
2929
|
end
|
2899
2930
|
|
@@ -631,6 +631,7 @@ module Aws::RoboMaker
|
|
631
631
|
LaunchConfig.add_member(:launch_file, Shapes::ShapeRef.new(shape: Command, required: true, location_name: "launchFile"))
|
632
632
|
LaunchConfig.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariableMap, location_name: "environmentVariables"))
|
633
633
|
LaunchConfig.add_member(:port_forwarding_config, Shapes::ShapeRef.new(shape: PortForwardingConfig, location_name: "portForwardingConfig"))
|
634
|
+
LaunchConfig.add_member(:stream_ui, Shapes::ShapeRef.new(shape: Boolean, location_name: "streamUI"))
|
634
635
|
LaunchConfig.struct_class = Types::LaunchConfig
|
635
636
|
|
636
637
|
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
@@ -919,7 +920,7 @@ module Aws::RoboMaker
|
|
919
920
|
|
920
921
|
Sources.member = Shapes::ShapeRef.new(shape: Source)
|
921
922
|
|
922
|
-
StartSimulationJobBatchRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
923
|
+
StartSimulationJobBatchRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
923
924
|
StartSimulationJobBatchRequest.add_member(:batch_policy, Shapes::ShapeRef.new(shape: BatchPolicy, location_name: "batchPolicy"))
|
924
925
|
StartSimulationJobBatchRequest.add_member(:create_simulation_job_requests, Shapes::ShapeRef.new(shape: CreateSimulationJobRequests, required: true, location_name: "createSimulationJobRequests"))
|
925
926
|
StartSimulationJobBatchRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
@@ -6,6 +6,41 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::RoboMaker
|
9
|
+
|
10
|
+
# When RoboMaker returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::RoboMaker::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all RoboMaker errors using ServiceError:
|
14
|
+
# begin
|
15
|
+
# # do stuff
|
16
|
+
# rescue Aws::RoboMaker::Errors::ServiceError
|
17
|
+
# # rescues all RoboMaker API errors
|
18
|
+
# end
|
19
|
+
#
|
20
|
+
# ## Request Context
|
21
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
22
|
+
# information about the request that generated the error, including:
|
23
|
+
# *
|
24
|
+
# * #params - The request params
|
25
|
+
# * #operation_name - Name of the API operation invoked
|
26
|
+
# * #http_request
|
27
|
+
# * #http_response
|
28
|
+
# * etc ...
|
29
|
+
#
|
30
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
31
|
+
#
|
32
|
+
# ## Error Classes
|
33
|
+
# * {ConcurrentDeploymentException}
|
34
|
+
# * {IdempotentParameterMismatchException}
|
35
|
+
# * {InternalServerException}
|
36
|
+
# * {InvalidParameterException}
|
37
|
+
# * {LimitExceededException}
|
38
|
+
# * {ResourceAlreadyExistsException}
|
39
|
+
# * {ResourceNotFoundException}
|
40
|
+
# * {ServiceUnavailableException}
|
41
|
+
# * {ThrottlingException}
|
42
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
43
|
+
# if they are not defined above.
|
9
44
|
module Errors
|
10
45
|
|
11
46
|
extend Aws::Errors::DynamicErrors
|
@@ -6,6 +6,13 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::RoboMaker
|
9
|
+
# This class provides a resource oriented interface for RoboMaker.
|
10
|
+
# To create a resource object:
|
11
|
+
# resource = Aws::RoboMaker::Resource.new(region: 'us-west-2')
|
12
|
+
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
+
# If you do not pass +:client+, a default client will be constructed.
|
14
|
+
# client = Aws::RoboMaker::Client.new(region: 'us-west-2')
|
15
|
+
# resource = Aws::RoboMaker::Resource.new(client: client)
|
9
16
|
class Resource
|
10
17
|
|
11
18
|
# @param options ({})
|
@@ -878,6 +878,7 @@ module Aws::RoboMaker
|
|
878
878
|
# },
|
879
879
|
# ],
|
880
880
|
# },
|
881
|
+
# stream_ui: false,
|
881
882
|
# },
|
882
883
|
# },
|
883
884
|
# ],
|
@@ -900,6 +901,7 @@ module Aws::RoboMaker
|
|
900
901
|
# },
|
901
902
|
# ],
|
902
903
|
# },
|
904
|
+
# stream_ui: false,
|
903
905
|
# },
|
904
906
|
# },
|
905
907
|
# ],
|
@@ -2402,6 +2404,7 @@ module Aws::RoboMaker
|
|
2402
2404
|
# },
|
2403
2405
|
# ],
|
2404
2406
|
# },
|
2407
|
+
# stream_ui: false,
|
2405
2408
|
# }
|
2406
2409
|
#
|
2407
2410
|
# @!attribute [rw] package_name
|
@@ -2420,13 +2423,22 @@ module Aws::RoboMaker
|
|
2420
2423
|
# The port forwarding configuration.
|
2421
2424
|
# @return [Types::PortForwardingConfig]
|
2422
2425
|
#
|
2426
|
+
# @!attribute [rw] stream_ui
|
2427
|
+
# Boolean indicating whether a streaming session will be configured
|
2428
|
+
# for the application. If `True`, AWS RoboMaker will configure a
|
2429
|
+
# connection so you can interact with your application as it is
|
2430
|
+
# running in the simulation. You must configure and luanch the
|
2431
|
+
# component. It must have a graphical user interface.
|
2432
|
+
# @return [Boolean]
|
2433
|
+
#
|
2423
2434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/LaunchConfig AWS API Documentation
|
2424
2435
|
#
|
2425
2436
|
class LaunchConfig < Struct.new(
|
2426
2437
|
:package_name,
|
2427
2438
|
:launch_file,
|
2428
2439
|
:environment_variables,
|
2429
|
-
:port_forwarding_config
|
2440
|
+
:port_forwarding_config,
|
2441
|
+
:stream_ui)
|
2430
2442
|
include Aws::Structure
|
2431
2443
|
end
|
2432
2444
|
|
@@ -3357,6 +3369,7 @@ module Aws::RoboMaker
|
|
3357
3369
|
# },
|
3358
3370
|
# ],
|
3359
3371
|
# },
|
3372
|
+
# stream_ui: false,
|
3360
3373
|
# },
|
3361
3374
|
# }
|
3362
3375
|
#
|
@@ -3571,6 +3584,7 @@ module Aws::RoboMaker
|
|
3571
3584
|
# },
|
3572
3585
|
# ],
|
3573
3586
|
# },
|
3587
|
+
# stream_ui: false,
|
3574
3588
|
# },
|
3575
3589
|
# }
|
3576
3590
|
#
|
@@ -3886,6 +3900,7 @@ module Aws::RoboMaker
|
|
3886
3900
|
# },
|
3887
3901
|
# ],
|
3888
3902
|
# },
|
3903
|
+
# stream_ui: false,
|
3889
3904
|
# },
|
3890
3905
|
# },
|
3891
3906
|
# ],
|
@@ -3908,6 +3923,7 @@ module Aws::RoboMaker
|
|
3908
3923
|
# },
|
3909
3924
|
# ],
|
3910
3925
|
# },
|
3926
|
+
# stream_ui: false,
|
3911
3927
|
# },
|
3912
3928
|
# },
|
3913
3929
|
# ],
|
@@ -4184,6 +4200,7 @@ module Aws::RoboMaker
|
|
4184
4200
|
# },
|
4185
4201
|
# ],
|
4186
4202
|
# },
|
4203
|
+
# stream_ui: false,
|
4187
4204
|
# },
|
4188
4205
|
# },
|
4189
4206
|
# ],
|
@@ -4206,6 +4223,7 @@ module Aws::RoboMaker
|
|
4206
4223
|
# },
|
4207
4224
|
# ],
|
4208
4225
|
# },
|
4226
|
+
# stream_ui: false,
|
4209
4227
|
# },
|
4210
4228
|
# },
|
4211
4229
|
# ],
|
@@ -4234,6 +4252,9 @@ module Aws::RoboMaker
|
|
4234
4252
|
# @!attribute [rw] client_request_token
|
4235
4253
|
# Unique, case-sensitive identifier that you provide to ensure the
|
4236
4254
|
# idempotency of the request.
|
4255
|
+
#
|
4256
|
+
# **A suitable default value is auto-generated.** You should normally
|
4257
|
+
# not need to pass this option.
|
4237
4258
|
# @return [String]
|
4238
4259
|
#
|
4239
4260
|
# @!attribute [rw] batch_policy
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-robomaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|