aws-sdk-robomaker 1.19.0 → 1.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-robomaker.rb +7 -4
- data/lib/aws-sdk-robomaker/client.rb +126 -19
- data/lib/aws-sdk-robomaker/client_api.rb +16 -1
- data/lib/aws-sdk-robomaker/errors.rb +31 -9
- data/lib/aws-sdk-robomaker/resource.rb +1 -0
- data/lib/aws-sdk-robomaker/types.rb +99 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6a61c34d52097a63429bd59d950cb97a2b3408be0451a1b193296510e099318b
|
4
|
+
data.tar.gz: d8678b45fe462b736e34179cbc94df1f2fabc032da9268f9877227eb2fd39274
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8384a760ec6b0c509e63d57ac7215550759a845add8d91765dbd2c966e32c2ca2da814505b12d1ebd0a09d501a1f88a583e1082121bfa680c2f36ec49f31b3f8
|
7
|
+
data.tar.gz: d2101ce23ce59b11fc3cdb8c0eebbde4cf3894ac634e9f7d881d8a377ce2c5feb25d7f3463da7358ff797bda37cf5281aabaf877456561caee28b66ff9df9996
|
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.24.0'
|
46
49
|
|
47
50
|
end
|
@@ -30,6 +30,18 @@ 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
|
+
#
|
35
|
+
# client = Aws::RoboMaker::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
|
+
#
|
41
|
+
# For details on configuring region and credentials see
|
42
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
43
|
+
#
|
44
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
45
|
class Client < Seahorse::Client::Base
|
34
46
|
|
35
47
|
include Aws::ClientStubs
|
@@ -93,7 +105,7 @@ module Aws::RoboMaker
|
|
93
105
|
# @option options [required, String] :region
|
94
106
|
# The AWS region to connect to. The configured `:region` is
|
95
107
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
97
109
|
#
|
98
110
|
# * `Aws.config[:region]`
|
99
111
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +120,12 @@ module Aws::RoboMaker
|
|
108
120
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
121
|
# the background every 60 secs (default). Defaults to `false`.
|
110
122
|
#
|
123
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
124
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
125
|
+
# until there is sufficent client side capacity to retry the request.
|
126
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
127
|
+
# not retry instead of sleeping.
|
128
|
+
#
|
111
129
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
130
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
131
|
# this client.
|
@@ -132,6 +150,10 @@ module Aws::RoboMaker
|
|
132
150
|
# When `true`, an attempt is made to coerce request parameters into
|
133
151
|
# the required types.
|
134
152
|
#
|
153
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
154
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
155
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
156
|
+
#
|
135
157
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
158
|
# Set to true to disable SDK automatically adding host prefix
|
137
159
|
# to default service endpoint when available.
|
@@ -139,7 +161,7 @@ module Aws::RoboMaker
|
|
139
161
|
# @option options [String] :endpoint
|
140
162
|
# The client endpoint is normally constructed from the `:region`
|
141
163
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
143
165
|
#
|
144
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +176,7 @@ module Aws::RoboMaker
|
|
154
176
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
177
|
#
|
156
178
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
179
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
180
|
#
|
159
181
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
182
|
# The log formatter.
|
@@ -166,15 +188,29 @@ module Aws::RoboMaker
|
|
166
188
|
# The Logger instance to send log messages to. If this option
|
167
189
|
# is not set, logging will be disabled.
|
168
190
|
#
|
191
|
+
# @option options [Integer] :max_attempts (3)
|
192
|
+
# An integer representing the maximum number attempts that will be made for
|
193
|
+
# a single request, including the initial attempt. For example,
|
194
|
+
# setting this value to 5 will result in a request being retried up to
|
195
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
196
|
+
#
|
169
197
|
# @option options [String] :profile ("default")
|
170
198
|
# Used when loading credentials from the shared credentials file
|
171
199
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
200
|
#
|
201
|
+
# @option options [Proc] :retry_backoff
|
202
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
203
|
+
# This option is only used in the `legacy` retry mode.
|
204
|
+
#
|
173
205
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
206
|
+
# The base delay in seconds used by the default backoff function. This option
|
207
|
+
# is only used in the `legacy` retry mode.
|
175
208
|
#
|
176
209
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
210
|
+
# A delay randomiser function used by the default backoff function.
|
211
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
212
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
213
|
+
# in the `legacy` retry mode.
|
178
214
|
#
|
179
215
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
216
|
#
|
@@ -182,11 +218,30 @@ module Aws::RoboMaker
|
|
182
218
|
# The maximum number of times to retry failed requests. Only
|
183
219
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
220
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
221
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
222
|
+
# endpoint discovery, and errors from expired credentials.
|
223
|
+
# This option is only used in the `legacy` retry mode.
|
187
224
|
#
|
188
225
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
226
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
227
|
+
# used by the default backoff function. This option is only used in the
|
228
|
+
# `legacy` retry mode.
|
229
|
+
#
|
230
|
+
# @option options [String] :retry_mode ("legacy")
|
231
|
+
# Specifies which retry algorithm to use. Values are:
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
190
245
|
#
|
191
246
|
# @option options [String] :secret_access_key
|
192
247
|
#
|
@@ -209,16 +264,15 @@ module Aws::RoboMaker
|
|
209
264
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
265
|
#
|
211
266
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
267
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
268
|
# `Timeout::Error`.
|
214
269
|
#
|
215
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
271
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
219
273
|
#
|
220
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
275
|
+
# seconds a connection is allowed to sit idle before it is
|
222
276
|
# considered stale. Stale connections are closed and removed
|
223
277
|
# from the pool before making a request.
|
224
278
|
#
|
@@ -227,7 +281,7 @@ module Aws::RoboMaker
|
|
227
281
|
# request body. This option has no effect unless the request has
|
228
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
283
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
284
|
+
# request on the session.
|
231
285
|
#
|
232
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -299,6 +353,7 @@ module Aws::RoboMaker
|
|
299
353
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
300
354
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
301
355
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
356
|
+
# resp.jobs[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
302
357
|
# resp.jobs[0].simulation_applications #=> Array
|
303
358
|
# resp.jobs[0].simulation_applications[0].application #=> String
|
304
359
|
# resp.jobs[0].simulation_applications[0].application_version #=> String
|
@@ -310,6 +365,7 @@ module Aws::RoboMaker
|
|
310
365
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
311
366
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
312
367
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
368
|
+
# resp.jobs[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
313
369
|
# resp.jobs[0].data_sources #=> Array
|
314
370
|
# resp.jobs[0].data_sources[0].name #=> String
|
315
371
|
# resp.jobs[0].data_sources[0].s3_bucket #=> String
|
@@ -327,6 +383,7 @@ module Aws::RoboMaker
|
|
327
383
|
# resp.jobs[0].network_interface.network_interface_id #=> String
|
328
384
|
# resp.jobs[0].network_interface.private_ip_address #=> String
|
329
385
|
# resp.jobs[0].network_interface.public_ip_address #=> String
|
386
|
+
# resp.jobs[0].compute.simulation_unit_limit #=> Integer
|
330
387
|
# resp.unprocessed_jobs #=> Array
|
331
388
|
# resp.unprocessed_jobs[0] #=> String
|
332
389
|
#
|
@@ -506,7 +563,7 @@ module Aws::RoboMaker
|
|
506
563
|
# resp.deployment_application_configs[0].launch_config.environment_variables #=> Hash
|
507
564
|
# resp.deployment_application_configs[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
508
565
|
# 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"
|
566
|
+
# 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
567
|
# resp.created_at #=> Time
|
511
568
|
# resp.deployment_config.concurrent_deployment_percentage #=> Integer
|
512
569
|
# resp.deployment_config.failure_threshold_percentage #=> Integer
|
@@ -964,6 +1021,9 @@ module Aws::RoboMaker
|
|
964
1021
|
# These must belong to the same VPC. You must provide at least one
|
965
1022
|
# security group and one subnet ID.
|
966
1023
|
#
|
1024
|
+
# @option params [Types::Compute] :compute
|
1025
|
+
# Compute information for the simulation job.
|
1026
|
+
#
|
967
1027
|
# @return [Types::CreateSimulationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
968
1028
|
#
|
969
1029
|
# * {Types::CreateSimulationJobResponse#arn #arn} => String
|
@@ -983,6 +1043,7 @@ module Aws::RoboMaker
|
|
983
1043
|
# * {Types::CreateSimulationJobResponse#data_sources #data_sources} => Array<Types::DataSource>
|
984
1044
|
# * {Types::CreateSimulationJobResponse#tags #tags} => Hash<String,String>
|
985
1045
|
# * {Types::CreateSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
1046
|
+
# * {Types::CreateSimulationJobResponse#compute #compute} => Types::ComputeResponse
|
986
1047
|
#
|
987
1048
|
# @example Request syntax with placeholder values
|
988
1049
|
#
|
@@ -1017,6 +1078,7 @@ module Aws::RoboMaker
|
|
1017
1078
|
# },
|
1018
1079
|
# ],
|
1019
1080
|
# },
|
1081
|
+
# stream_ui: false,
|
1020
1082
|
# },
|
1021
1083
|
# },
|
1022
1084
|
# ],
|
@@ -1039,6 +1101,7 @@ module Aws::RoboMaker
|
|
1039
1101
|
# },
|
1040
1102
|
# ],
|
1041
1103
|
# },
|
1104
|
+
# stream_ui: false,
|
1042
1105
|
# },
|
1043
1106
|
# },
|
1044
1107
|
# ],
|
@@ -1057,6 +1120,9 @@ module Aws::RoboMaker
|
|
1057
1120
|
# security_groups: ["NonEmptyString"],
|
1058
1121
|
# assign_public_ip: false,
|
1059
1122
|
# },
|
1123
|
+
# compute: {
|
1124
|
+
# simulation_unit_limit: 1,
|
1125
|
+
# },
|
1060
1126
|
# })
|
1061
1127
|
#
|
1062
1128
|
# @example Response structure
|
@@ -1085,6 +1151,7 @@ module Aws::RoboMaker
|
|
1085
1151
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1086
1152
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1087
1153
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1154
|
+
# resp.robot_applications[0].launch_config.stream_ui #=> Boolean
|
1088
1155
|
# resp.simulation_applications #=> Array
|
1089
1156
|
# resp.simulation_applications[0].application #=> String
|
1090
1157
|
# resp.simulation_applications[0].application_version #=> String
|
@@ -1096,6 +1163,7 @@ module Aws::RoboMaker
|
|
1096
1163
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1097
1164
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1098
1165
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1166
|
+
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1099
1167
|
# resp.data_sources #=> Array
|
1100
1168
|
# resp.data_sources[0].name #=> String
|
1101
1169
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1110,6 +1178,7 @@ module Aws::RoboMaker
|
|
1110
1178
|
# resp.vpc_config.security_groups[0] #=> String
|
1111
1179
|
# resp.vpc_config.vpc_id #=> String
|
1112
1180
|
# resp.vpc_config.assign_public_ip #=> Boolean
|
1181
|
+
# resp.compute.simulation_unit_limit #=> Integer
|
1113
1182
|
#
|
1114
1183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJob AWS API Documentation
|
1115
1184
|
#
|
@@ -1295,7 +1364,7 @@ module Aws::RoboMaker
|
|
1295
1364
|
# resp.deployment_application_configs[0].launch_config.environment_variables #=> Hash
|
1296
1365
|
# resp.deployment_application_configs[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
1297
1366
|
# 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"
|
1367
|
+
# 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
1368
|
# resp.created_at #=> Time
|
1300
1369
|
# resp.robot_deployment_summary #=> Array
|
1301
1370
|
# resp.robot_deployment_summary[0].arn #=> String
|
@@ -1307,7 +1376,7 @@ module Aws::RoboMaker
|
|
1307
1376
|
# resp.robot_deployment_summary[0].progress_detail.estimated_time_remaining_seconds #=> Integer
|
1308
1377
|
# resp.robot_deployment_summary[0].progress_detail.target_resource #=> String
|
1309
1378
|
# 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"
|
1379
|
+
# 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
1380
|
# resp.tags #=> Hash
|
1312
1381
|
# resp.tags["TagKey"] #=> String
|
1313
1382
|
#
|
@@ -1556,6 +1625,7 @@ module Aws::RoboMaker
|
|
1556
1625
|
# * {Types::DescribeSimulationJobResponse#tags #tags} => Hash<String,String>
|
1557
1626
|
# * {Types::DescribeSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
1558
1627
|
# * {Types::DescribeSimulationJobResponse#network_interface #network_interface} => Types::NetworkInterface
|
1628
|
+
# * {Types::DescribeSimulationJobResponse#compute #compute} => Types::ComputeResponse
|
1559
1629
|
#
|
1560
1630
|
# @example Request syntax with placeholder values
|
1561
1631
|
#
|
@@ -1591,6 +1661,7 @@ module Aws::RoboMaker
|
|
1591
1661
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1592
1662
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1593
1663
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1664
|
+
# resp.robot_applications[0].launch_config.stream_ui #=> Boolean
|
1594
1665
|
# resp.simulation_applications #=> Array
|
1595
1666
|
# resp.simulation_applications[0].application #=> String
|
1596
1667
|
# resp.simulation_applications[0].application_version #=> String
|
@@ -1602,6 +1673,7 @@ module Aws::RoboMaker
|
|
1602
1673
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1603
1674
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1604
1675
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1676
|
+
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1605
1677
|
# resp.data_sources #=> Array
|
1606
1678
|
# resp.data_sources[0].name #=> String
|
1607
1679
|
# resp.data_sources[0].s3_bucket #=> String
|
@@ -1619,6 +1691,7 @@ module Aws::RoboMaker
|
|
1619
1691
|
# resp.network_interface.network_interface_id #=> String
|
1620
1692
|
# resp.network_interface.private_ip_address #=> String
|
1621
1693
|
# resp.network_interface.public_ip_address #=> String
|
1694
|
+
# resp.compute.simulation_unit_limit #=> Integer
|
1622
1695
|
#
|
1623
1696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJob AWS API Documentation
|
1624
1697
|
#
|
@@ -1685,6 +1758,7 @@ module Aws::RoboMaker
|
|
1685
1758
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1686
1759
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1687
1760
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1761
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.stream_ui #=> Boolean
|
1688
1762
|
# resp.failed_requests[0].request.simulation_applications #=> Array
|
1689
1763
|
# resp.failed_requests[0].request.simulation_applications[0].application #=> String
|
1690
1764
|
# resp.failed_requests[0].request.simulation_applications[0].application_version #=> String
|
@@ -1696,6 +1770,7 @@ module Aws::RoboMaker
|
|
1696
1770
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1697
1771
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1698
1772
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1773
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1699
1774
|
# resp.failed_requests[0].request.data_sources #=> Array
|
1700
1775
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
1701
1776
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -1706,6 +1781,7 @@ module Aws::RoboMaker
|
|
1706
1781
|
# resp.failed_requests[0].request.vpc_config.security_groups #=> Array
|
1707
1782
|
# resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
|
1708
1783
|
# resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
|
1784
|
+
# resp.failed_requests[0].request.compute.simulation_unit_limit #=> Integer
|
1709
1785
|
# resp.failed_requests[0].request.tags #=> Hash
|
1710
1786
|
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
1711
1787
|
# resp.failed_requests[0].failure_reason #=> String
|
@@ -1730,6 +1806,7 @@ module Aws::RoboMaker
|
|
1730
1806
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1731
1807
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1732
1808
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1809
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
1733
1810
|
# resp.pending_requests[0].simulation_applications #=> Array
|
1734
1811
|
# resp.pending_requests[0].simulation_applications[0].application #=> String
|
1735
1812
|
# resp.pending_requests[0].simulation_applications[0].application_version #=> String
|
@@ -1741,6 +1818,7 @@ module Aws::RoboMaker
|
|
1741
1818
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
1742
1819
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
1743
1820
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
1821
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
1744
1822
|
# resp.pending_requests[0].data_sources #=> Array
|
1745
1823
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
1746
1824
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -1751,6 +1829,7 @@ module Aws::RoboMaker
|
|
1751
1829
|
# resp.pending_requests[0].vpc_config.security_groups #=> Array
|
1752
1830
|
# resp.pending_requests[0].vpc_config.security_groups[0] #=> String
|
1753
1831
|
# resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
|
1832
|
+
# resp.pending_requests[0].compute.simulation_unit_limit #=> Integer
|
1754
1833
|
# resp.pending_requests[0].tags #=> Hash
|
1755
1834
|
# resp.pending_requests[0].tags["TagKey"] #=> String
|
1756
1835
|
# resp.created_requests #=> Array
|
@@ -1809,6 +1888,8 @@ module Aws::RoboMaker
|
|
1809
1888
|
# * {Types::ListDeploymentJobsResponse#deployment_jobs #deployment_jobs} => Array<Types::DeploymentJob>
|
1810
1889
|
# * {Types::ListDeploymentJobsResponse#next_token #next_token} => String
|
1811
1890
|
#
|
1891
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1892
|
+
#
|
1812
1893
|
# @example Request syntax with placeholder values
|
1813
1894
|
#
|
1814
1895
|
# resp = client.list_deployment_jobs({
|
@@ -1844,7 +1925,7 @@ module Aws::RoboMaker
|
|
1844
1925
|
# resp.deployment_jobs[0].deployment_config.download_condition_file.key #=> String
|
1845
1926
|
# resp.deployment_jobs[0].deployment_config.download_condition_file.etag #=> String
|
1846
1927
|
# 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"
|
1928
|
+
# 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
1929
|
# resp.deployment_jobs[0].created_at #=> Time
|
1849
1930
|
# resp.next_token #=> String
|
1850
1931
|
#
|
@@ -1892,6 +1973,8 @@ module Aws::RoboMaker
|
|
1892
1973
|
# * {Types::ListFleetsResponse#fleet_details #fleet_details} => Array<Types::Fleet>
|
1893
1974
|
# * {Types::ListFleetsResponse#next_token #next_token} => String
|
1894
1975
|
#
|
1976
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1977
|
+
#
|
1895
1978
|
# @example Request syntax with placeholder values
|
1896
1979
|
#
|
1897
1980
|
# resp = client.list_fleets({
|
@@ -1958,6 +2041,8 @@ module Aws::RoboMaker
|
|
1958
2041
|
# * {Types::ListRobotApplicationsResponse#robot_application_summaries #robot_application_summaries} => Array<Types::RobotApplicationSummary>
|
1959
2042
|
# * {Types::ListRobotApplicationsResponse#next_token #next_token} => String
|
1960
2043
|
#
|
2044
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2045
|
+
#
|
1961
2046
|
# @example Request syntax with placeholder values
|
1962
2047
|
#
|
1963
2048
|
# resp = client.list_robot_applications({
|
@@ -2024,6 +2109,8 @@ module Aws::RoboMaker
|
|
2024
2109
|
# * {Types::ListRobotsResponse#robots #robots} => Array<Types::Robot>
|
2025
2110
|
# * {Types::ListRobotsResponse#next_token #next_token} => String
|
2026
2111
|
#
|
2112
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2113
|
+
#
|
2027
2114
|
# @example Request syntax with placeholder values
|
2028
2115
|
#
|
2029
2116
|
# resp = client.list_robots({
|
@@ -2093,6 +2180,8 @@ module Aws::RoboMaker
|
|
2093
2180
|
# * {Types::ListSimulationApplicationsResponse#simulation_application_summaries #simulation_application_summaries} => Array<Types::SimulationApplicationSummary>
|
2094
2181
|
# * {Types::ListSimulationApplicationsResponse#next_token #next_token} => String
|
2095
2182
|
#
|
2183
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2184
|
+
#
|
2096
2185
|
# @example Request syntax with placeholder values
|
2097
2186
|
#
|
2098
2187
|
# resp = client.list_simulation_applications({
|
@@ -2154,6 +2243,8 @@ module Aws::RoboMaker
|
|
2154
2243
|
# * {Types::ListSimulationJobBatchesResponse#simulation_job_batch_summaries #simulation_job_batch_summaries} => Array<Types::SimulationJobBatchSummary>
|
2155
2244
|
# * {Types::ListSimulationJobBatchesResponse#next_token #next_token} => String
|
2156
2245
|
#
|
2246
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2247
|
+
#
|
2157
2248
|
# @example Request syntax with placeholder values
|
2158
2249
|
#
|
2159
2250
|
# resp = client.list_simulation_job_batches({
|
@@ -2227,6 +2318,8 @@ module Aws::RoboMaker
|
|
2227
2318
|
# * {Types::ListSimulationJobsResponse#simulation_job_summaries #simulation_job_summaries} => Array<Types::SimulationJobSummary>
|
2228
2319
|
# * {Types::ListSimulationJobsResponse#next_token #next_token} => String
|
2229
2320
|
#
|
2321
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2322
|
+
#
|
2230
2323
|
# @example Request syntax with placeholder values
|
2231
2324
|
#
|
2232
2325
|
# resp = client.list_simulation_jobs({
|
@@ -2356,6 +2449,9 @@ module Aws::RoboMaker
|
|
2356
2449
|
# Unique, case-sensitive identifier that you provide to ensure the
|
2357
2450
|
# idempotency of the request.
|
2358
2451
|
#
|
2452
|
+
# **A suitable default value is auto-generated.** You should normally
|
2453
|
+
# not need to pass this option.**
|
2454
|
+
#
|
2359
2455
|
# @option params [Types::BatchPolicy] :batch_policy
|
2360
2456
|
# The batch policy.
|
2361
2457
|
#
|
@@ -2420,6 +2516,7 @@ module Aws::RoboMaker
|
|
2420
2516
|
# },
|
2421
2517
|
# ],
|
2422
2518
|
# },
|
2519
|
+
# stream_ui: false,
|
2423
2520
|
# },
|
2424
2521
|
# },
|
2425
2522
|
# ],
|
@@ -2442,6 +2539,7 @@ module Aws::RoboMaker
|
|
2442
2539
|
# },
|
2443
2540
|
# ],
|
2444
2541
|
# },
|
2542
|
+
# stream_ui: false,
|
2445
2543
|
# },
|
2446
2544
|
# },
|
2447
2545
|
# ],
|
@@ -2457,6 +2555,9 @@ module Aws::RoboMaker
|
|
2457
2555
|
# security_groups: ["NonEmptyString"],
|
2458
2556
|
# assign_public_ip: false,
|
2459
2557
|
# },
|
2558
|
+
# compute: {
|
2559
|
+
# simulation_unit_limit: 1,
|
2560
|
+
# },
|
2460
2561
|
# tags: {
|
2461
2562
|
# "TagKey" => "TagValue",
|
2462
2563
|
# },
|
@@ -2496,6 +2597,7 @@ module Aws::RoboMaker
|
|
2496
2597
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2497
2598
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2498
2599
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2600
|
+
# resp.failed_requests[0].request.robot_applications[0].launch_config.stream_ui #=> Boolean
|
2499
2601
|
# resp.failed_requests[0].request.simulation_applications #=> Array
|
2500
2602
|
# resp.failed_requests[0].request.simulation_applications[0].application #=> String
|
2501
2603
|
# resp.failed_requests[0].request.simulation_applications[0].application_version #=> String
|
@@ -2507,6 +2609,7 @@ module Aws::RoboMaker
|
|
2507
2609
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2508
2610
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2509
2611
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2612
|
+
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2510
2613
|
# resp.failed_requests[0].request.data_sources #=> Array
|
2511
2614
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
2512
2615
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
@@ -2517,6 +2620,7 @@ module Aws::RoboMaker
|
|
2517
2620
|
# resp.failed_requests[0].request.vpc_config.security_groups #=> Array
|
2518
2621
|
# resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
|
2519
2622
|
# resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
|
2623
|
+
# resp.failed_requests[0].request.compute.simulation_unit_limit #=> Integer
|
2520
2624
|
# resp.failed_requests[0].request.tags #=> Hash
|
2521
2625
|
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
2522
2626
|
# resp.failed_requests[0].failure_reason #=> String
|
@@ -2541,6 +2645,7 @@ module Aws::RoboMaker
|
|
2541
2645
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2542
2646
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2543
2647
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2648
|
+
# resp.pending_requests[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
2544
2649
|
# resp.pending_requests[0].simulation_applications #=> Array
|
2545
2650
|
# resp.pending_requests[0].simulation_applications[0].application #=> String
|
2546
2651
|
# resp.pending_requests[0].simulation_applications[0].application_version #=> String
|
@@ -2552,6 +2657,7 @@ module Aws::RoboMaker
|
|
2552
2657
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].job_port #=> Integer
|
2553
2658
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
2554
2659
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
2660
|
+
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
2555
2661
|
# resp.pending_requests[0].data_sources #=> Array
|
2556
2662
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
2557
2663
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
@@ -2562,6 +2668,7 @@ module Aws::RoboMaker
|
|
2562
2668
|
# resp.pending_requests[0].vpc_config.security_groups #=> Array
|
2563
2669
|
# resp.pending_requests[0].vpc_config.security_groups[0] #=> String
|
2564
2670
|
# resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
|
2671
|
+
# resp.pending_requests[0].compute.simulation_unit_limit #=> Integer
|
2565
2672
|
# resp.pending_requests[0].tags #=> Hash
|
2566
2673
|
# resp.pending_requests[0].tags["TagKey"] #=> String
|
2567
2674
|
# resp.created_requests #=> Array
|
@@ -2639,7 +2746,7 @@ module Aws::RoboMaker
|
|
2639
2746
|
# resp.deployment_application_configs[0].launch_config.environment_variables #=> Hash
|
2640
2747
|
# resp.deployment_application_configs[0].launch_config.environment_variables["EnvironmentVariableKey"] #=> String
|
2641
2748
|
# 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"
|
2749
|
+
# 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
2750
|
# resp.created_at #=> Time
|
2644
2751
|
#
|
2645
2752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SyncDeploymentJob AWS API Documentation
|
@@ -2893,7 +3000,7 @@ module Aws::RoboMaker
|
|
2893
3000
|
params: params,
|
2894
3001
|
config: config)
|
2895
3002
|
context[:gem_name] = 'aws-sdk-robomaker'
|
2896
|
-
context[:gem_version] = '1.
|
3003
|
+
context[:gem_version] = '1.24.0'
|
2897
3004
|
Seahorse::Client::Request.new(handlers, context)
|
2898
3005
|
end
|
2899
3006
|
|
@@ -28,6 +28,8 @@ module Aws::RoboMaker
|
|
28
28
|
CancelSimulationJobResponse = Shapes::StructureShape.new(name: 'CancelSimulationJobResponse')
|
29
29
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
30
30
|
Command = Shapes::StringShape.new(name: 'Command')
|
31
|
+
Compute = Shapes::StructureShape.new(name: 'Compute')
|
32
|
+
ComputeResponse = Shapes::StructureShape.new(name: 'ComputeResponse')
|
31
33
|
ConcurrentDeploymentException = Shapes::StructureShape.new(name: 'ConcurrentDeploymentException')
|
32
34
|
CreateDeploymentJobRequest = Shapes::StructureShape.new(name: 'CreateDeploymentJobRequest')
|
33
35
|
CreateDeploymentJobResponse = Shapes::StructureShape.new(name: 'CreateDeploymentJobResponse')
|
@@ -197,6 +199,7 @@ module Aws::RoboMaker
|
|
197
199
|
SimulationSoftwareSuiteType = Shapes::StringShape.new(name: 'SimulationSoftwareSuiteType')
|
198
200
|
SimulationSoftwareSuiteVersionType = Shapes::StringShape.new(name: 'SimulationSoftwareSuiteVersionType')
|
199
201
|
SimulationTimeMillis = Shapes::IntegerShape.new(name: 'SimulationTimeMillis')
|
202
|
+
SimulationUnit = Shapes::IntegerShape.new(name: 'SimulationUnit')
|
200
203
|
Source = Shapes::StructureShape.new(name: 'Source')
|
201
204
|
SourceConfig = Shapes::StructureShape.new(name: 'SourceConfig')
|
202
205
|
SourceConfigs = Shapes::ListShape.new(name: 'SourceConfigs')
|
@@ -253,6 +256,12 @@ module Aws::RoboMaker
|
|
253
256
|
|
254
257
|
CancelSimulationJobResponse.struct_class = Types::CancelSimulationJobResponse
|
255
258
|
|
259
|
+
Compute.add_member(:simulation_unit_limit, Shapes::ShapeRef.new(shape: SimulationUnit, location_name: "simulationUnitLimit"))
|
260
|
+
Compute.struct_class = Types::Compute
|
261
|
+
|
262
|
+
ComputeResponse.add_member(:simulation_unit_limit, Shapes::ShapeRef.new(shape: SimulationUnit, location_name: "simulationUnitLimit"))
|
263
|
+
ComputeResponse.struct_class = Types::ComputeResponse
|
264
|
+
|
256
265
|
ConcurrentDeploymentException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
257
266
|
ConcurrentDeploymentException.struct_class = Types::ConcurrentDeploymentException
|
258
267
|
|
@@ -373,6 +382,7 @@ module Aws::RoboMaker
|
|
373
382
|
CreateSimulationJobRequest.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSourceConfigs, location_name: "dataSources"))
|
374
383
|
CreateSimulationJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
375
384
|
CreateSimulationJobRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfig, location_name: "vpcConfig"))
|
385
|
+
CreateSimulationJobRequest.add_member(:compute, Shapes::ShapeRef.new(shape: Compute, location_name: "compute"))
|
376
386
|
CreateSimulationJobRequest.struct_class = Types::CreateSimulationJobRequest
|
377
387
|
|
378
388
|
CreateSimulationJobRequests.member = Shapes::ShapeRef.new(shape: SimulationJobRequest)
|
@@ -394,6 +404,7 @@ module Aws::RoboMaker
|
|
394
404
|
CreateSimulationJobResponse.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSources, location_name: "dataSources"))
|
395
405
|
CreateSimulationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
396
406
|
CreateSimulationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
407
|
+
CreateSimulationJobResponse.add_member(:compute, Shapes::ShapeRef.new(shape: ComputeResponse, location_name: "compute"))
|
397
408
|
CreateSimulationJobResponse.struct_class = Types::CreateSimulationJobResponse
|
398
409
|
|
399
410
|
DataSource.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
|
@@ -587,6 +598,7 @@ module Aws::RoboMaker
|
|
587
598
|
DescribeSimulationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
588
599
|
DescribeSimulationJobResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
589
600
|
DescribeSimulationJobResponse.add_member(:network_interface, Shapes::ShapeRef.new(shape: NetworkInterface, location_name: "networkInterface"))
|
601
|
+
DescribeSimulationJobResponse.add_member(:compute, Shapes::ShapeRef.new(shape: ComputeResponse, location_name: "compute"))
|
590
602
|
DescribeSimulationJobResponse.struct_class = Types::DescribeSimulationJobResponse
|
591
603
|
|
592
604
|
EnvironmentVariableMap.key = Shapes::ShapeRef.new(shape: EnvironmentVariableKey)
|
@@ -631,6 +643,7 @@ module Aws::RoboMaker
|
|
631
643
|
LaunchConfig.add_member(:launch_file, Shapes::ShapeRef.new(shape: Command, required: true, location_name: "launchFile"))
|
632
644
|
LaunchConfig.add_member(:environment_variables, Shapes::ShapeRef.new(shape: EnvironmentVariableMap, location_name: "environmentVariables"))
|
633
645
|
LaunchConfig.add_member(:port_forwarding_config, Shapes::ShapeRef.new(shape: PortForwardingConfig, location_name: "portForwardingConfig"))
|
646
|
+
LaunchConfig.add_member(:stream_ui, Shapes::ShapeRef.new(shape: Boolean, location_name: "streamUI"))
|
634
647
|
LaunchConfig.struct_class = Types::LaunchConfig
|
635
648
|
|
636
649
|
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
@@ -861,6 +874,7 @@ module Aws::RoboMaker
|
|
861
874
|
SimulationJob.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
862
875
|
SimulationJob.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
863
876
|
SimulationJob.add_member(:network_interface, Shapes::ShapeRef.new(shape: NetworkInterface, location_name: "networkInterface"))
|
877
|
+
SimulationJob.add_member(:compute, Shapes::ShapeRef.new(shape: ComputeResponse, location_name: "compute"))
|
864
878
|
SimulationJob.struct_class = Types::SimulationJob
|
865
879
|
|
866
880
|
SimulationJobBatchSummaries.member = Shapes::ShapeRef.new(shape: SimulationJobBatchSummary)
|
@@ -884,6 +898,7 @@ module Aws::RoboMaker
|
|
884
898
|
SimulationJobRequest.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
885
899
|
SimulationJobRequest.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSourceConfigs, location_name: "dataSources"))
|
886
900
|
SimulationJobRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfig, location_name: "vpcConfig"))
|
901
|
+
SimulationJobRequest.add_member(:compute, Shapes::ShapeRef.new(shape: Compute, location_name: "compute"))
|
887
902
|
SimulationJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
888
903
|
SimulationJobRequest.struct_class = Types::SimulationJobRequest
|
889
904
|
|
@@ -919,7 +934,7 @@ module Aws::RoboMaker
|
|
919
934
|
|
920
935
|
Sources.member = Shapes::ShapeRef.new(shape: Source)
|
921
936
|
|
922
|
-
StartSimulationJobBatchRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
937
|
+
StartSimulationJobBatchRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
923
938
|
StartSimulationJobBatchRequest.add_member(:batch_policy, Shapes::ShapeRef.new(shape: BatchPolicy, location_name: "batchPolicy"))
|
924
939
|
StartSimulationJobBatchRequest.add_member(:create_simulation_job_requests, Shapes::ShapeRef.new(shape: CreateSimulationJobRequests, required: true, location_name: "createSimulationJobRequests"))
|
925
940
|
StartSimulationJobBatchRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
@@ -6,6 +6,37 @@
|
|
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
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::RoboMaker::Errors::ServiceError
|
18
|
+
# # rescues all RoboMaker API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {ConcurrentDeploymentException}
|
29
|
+
# * {IdempotentParameterMismatchException}
|
30
|
+
# * {InternalServerException}
|
31
|
+
# * {InvalidParameterException}
|
32
|
+
# * {LimitExceededException}
|
33
|
+
# * {ResourceAlreadyExistsException}
|
34
|
+
# * {ResourceNotFoundException}
|
35
|
+
# * {ServiceUnavailableException}
|
36
|
+
# * {ThrottlingException}
|
37
|
+
#
|
38
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
39
|
+
# if they are not defined above.
|
9
40
|
module Errors
|
10
41
|
|
11
42
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +54,6 @@ module Aws::RoboMaker
|
|
23
54
|
def message
|
24
55
|
@message || @data[:message]
|
25
56
|
end
|
26
|
-
|
27
57
|
end
|
28
58
|
|
29
59
|
class IdempotentParameterMismatchException < ServiceError
|
@@ -39,7 +69,6 @@ module Aws::RoboMaker
|
|
39
69
|
def message
|
40
70
|
@message || @data[:message]
|
41
71
|
end
|
42
|
-
|
43
72
|
end
|
44
73
|
|
45
74
|
class InternalServerException < ServiceError
|
@@ -55,7 +84,6 @@ module Aws::RoboMaker
|
|
55
84
|
def message
|
56
85
|
@message || @data[:message]
|
57
86
|
end
|
58
|
-
|
59
87
|
end
|
60
88
|
|
61
89
|
class InvalidParameterException < ServiceError
|
@@ -71,7 +99,6 @@ module Aws::RoboMaker
|
|
71
99
|
def message
|
72
100
|
@message || @data[:message]
|
73
101
|
end
|
74
|
-
|
75
102
|
end
|
76
103
|
|
77
104
|
class LimitExceededException < ServiceError
|
@@ -87,7 +114,6 @@ module Aws::RoboMaker
|
|
87
114
|
def message
|
88
115
|
@message || @data[:message]
|
89
116
|
end
|
90
|
-
|
91
117
|
end
|
92
118
|
|
93
119
|
class ResourceAlreadyExistsException < ServiceError
|
@@ -103,7 +129,6 @@ module Aws::RoboMaker
|
|
103
129
|
def message
|
104
130
|
@message || @data[:message]
|
105
131
|
end
|
106
|
-
|
107
132
|
end
|
108
133
|
|
109
134
|
class ResourceNotFoundException < ServiceError
|
@@ -119,7 +144,6 @@ module Aws::RoboMaker
|
|
119
144
|
def message
|
120
145
|
@message || @data[:message]
|
121
146
|
end
|
122
|
-
|
123
147
|
end
|
124
148
|
|
125
149
|
class ServiceUnavailableException < ServiceError
|
@@ -135,7 +159,6 @@ module Aws::RoboMaker
|
|
135
159
|
def message
|
136
160
|
@message || @data[:message]
|
137
161
|
end
|
138
|
-
|
139
162
|
end
|
140
163
|
|
141
164
|
class ThrottlingException < ServiceError
|
@@ -151,7 +174,6 @@ module Aws::RoboMaker
|
|
151
174
|
def message
|
152
175
|
@message || @data[:message]
|
153
176
|
end
|
154
|
-
|
155
177
|
end
|
156
178
|
|
157
179
|
end
|
@@ -147,6 +147,45 @@ module Aws::RoboMaker
|
|
147
147
|
#
|
148
148
|
class CancelSimulationJobResponse < Aws::EmptyStructure; end
|
149
149
|
|
150
|
+
# Compute information for the simulation job.
|
151
|
+
#
|
152
|
+
# @note When making an API call, you may pass Compute
|
153
|
+
# data as a hash:
|
154
|
+
#
|
155
|
+
# {
|
156
|
+
# simulation_unit_limit: 1,
|
157
|
+
# }
|
158
|
+
#
|
159
|
+
# @!attribute [rw] simulation_unit_limit
|
160
|
+
# The simulation unit limit. Your simulation is allocated CPU and
|
161
|
+
# memory proportional to the supplied simulation unit limit. A
|
162
|
+
# simulation unit is 1 vcpu and 2GB of memory. You are only billed for
|
163
|
+
# the SU utilization you consume up to the maximim value provided.
|
164
|
+
# @return [Integer]
|
165
|
+
#
|
166
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/Compute AWS API Documentation
|
167
|
+
#
|
168
|
+
class Compute < Struct.new(
|
169
|
+
:simulation_unit_limit)
|
170
|
+
include Aws::Structure
|
171
|
+
end
|
172
|
+
|
173
|
+
# Compute information for the simulation job
|
174
|
+
#
|
175
|
+
# @!attribute [rw] simulation_unit_limit
|
176
|
+
# The simulation unit limit. Your simulation is allocated CPU and
|
177
|
+
# memory proportional to the supplied simulation unit limit. A
|
178
|
+
# simulation unit is 1 vcpu and 2GB of memory. You are only billed for
|
179
|
+
# the SU utilization you consume up to the maximim value provided.
|
180
|
+
# @return [Integer]
|
181
|
+
#
|
182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ComputeResponse AWS API Documentation
|
183
|
+
#
|
184
|
+
class ComputeResponse < Struct.new(
|
185
|
+
:simulation_unit_limit)
|
186
|
+
include Aws::Structure
|
187
|
+
end
|
188
|
+
|
150
189
|
# The failure percentage threshold percentage was met.
|
151
190
|
#
|
152
191
|
# @!attribute [rw] message
|
@@ -878,6 +917,7 @@ module Aws::RoboMaker
|
|
878
917
|
# },
|
879
918
|
# ],
|
880
919
|
# },
|
920
|
+
# stream_ui: false,
|
881
921
|
# },
|
882
922
|
# },
|
883
923
|
# ],
|
@@ -900,6 +940,7 @@ module Aws::RoboMaker
|
|
900
940
|
# },
|
901
941
|
# ],
|
902
942
|
# },
|
943
|
+
# stream_ui: false,
|
903
944
|
# },
|
904
945
|
# },
|
905
946
|
# ],
|
@@ -918,6 +959,9 @@ module Aws::RoboMaker
|
|
918
959
|
# security_groups: ["NonEmptyString"],
|
919
960
|
# assign_public_ip: false,
|
920
961
|
# },
|
962
|
+
# compute: {
|
963
|
+
# simulation_unit_limit: 1,
|
964
|
+
# },
|
921
965
|
# }
|
922
966
|
#
|
923
967
|
# @!attribute [rw] client_request_token
|
@@ -992,6 +1036,10 @@ module Aws::RoboMaker
|
|
992
1036
|
# security group and one subnet ID.
|
993
1037
|
# @return [Types::VPCConfig]
|
994
1038
|
#
|
1039
|
+
# @!attribute [rw] compute
|
1040
|
+
# Compute information for the simulation job.
|
1041
|
+
# @return [Types::Compute]
|
1042
|
+
#
|
995
1043
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJobRequest AWS API Documentation
|
996
1044
|
#
|
997
1045
|
class CreateSimulationJobRequest < Struct.new(
|
@@ -1005,7 +1053,8 @@ module Aws::RoboMaker
|
|
1005
1053
|
:simulation_applications,
|
1006
1054
|
:data_sources,
|
1007
1055
|
:tags,
|
1008
|
-
:vpc_config
|
1056
|
+
:vpc_config,
|
1057
|
+
:compute)
|
1009
1058
|
include Aws::Structure
|
1010
1059
|
end
|
1011
1060
|
|
@@ -1142,6 +1191,10 @@ module Aws::RoboMaker
|
|
1142
1191
|
# Information about the vpc configuration.
|
1143
1192
|
# @return [Types::VPCConfigResponse]
|
1144
1193
|
#
|
1194
|
+
# @!attribute [rw] compute
|
1195
|
+
# Compute information for the simulation job.
|
1196
|
+
# @return [Types::ComputeResponse]
|
1197
|
+
#
|
1145
1198
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJobResponse AWS API Documentation
|
1146
1199
|
#
|
1147
1200
|
class CreateSimulationJobResponse < Struct.new(
|
@@ -1161,7 +1214,8 @@ module Aws::RoboMaker
|
|
1161
1214
|
:simulation_applications,
|
1162
1215
|
:data_sources,
|
1163
1216
|
:tags,
|
1164
|
-
:vpc_config
|
1217
|
+
:vpc_config,
|
1218
|
+
:compute)
|
1165
1219
|
include Aws::Structure
|
1166
1220
|
end
|
1167
1221
|
|
@@ -2222,6 +2276,10 @@ module Aws::RoboMaker
|
|
2222
2276
|
# The network interface information for the simulation job.
|
2223
2277
|
# @return [Types::NetworkInterface]
|
2224
2278
|
#
|
2279
|
+
# @!attribute [rw] compute
|
2280
|
+
# Compute information for the simulation job.
|
2281
|
+
# @return [Types::ComputeResponse]
|
2282
|
+
#
|
2225
2283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobResponse AWS API Documentation
|
2226
2284
|
#
|
2227
2285
|
class DescribeSimulationJobResponse < Struct.new(
|
@@ -2244,7 +2302,8 @@ module Aws::RoboMaker
|
|
2244
2302
|
:data_sources,
|
2245
2303
|
:tags,
|
2246
2304
|
:vpc_config,
|
2247
|
-
:network_interface
|
2305
|
+
:network_interface,
|
2306
|
+
:compute)
|
2248
2307
|
include Aws::Structure
|
2249
2308
|
end
|
2250
2309
|
|
@@ -2402,6 +2461,7 @@ module Aws::RoboMaker
|
|
2402
2461
|
# },
|
2403
2462
|
# ],
|
2404
2463
|
# },
|
2464
|
+
# stream_ui: false,
|
2405
2465
|
# }
|
2406
2466
|
#
|
2407
2467
|
# @!attribute [rw] package_name
|
@@ -2420,13 +2480,22 @@ module Aws::RoboMaker
|
|
2420
2480
|
# The port forwarding configuration.
|
2421
2481
|
# @return [Types::PortForwardingConfig]
|
2422
2482
|
#
|
2483
|
+
# @!attribute [rw] stream_ui
|
2484
|
+
# Boolean indicating whether a streaming session will be configured
|
2485
|
+
# for the application. If `True`, AWS RoboMaker will configure a
|
2486
|
+
# connection so you can interact with your application as it is
|
2487
|
+
# running in the simulation. You must configure and luanch the
|
2488
|
+
# component. It must have a graphical user interface.
|
2489
|
+
# @return [Boolean]
|
2490
|
+
#
|
2423
2491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/LaunchConfig AWS API Documentation
|
2424
2492
|
#
|
2425
2493
|
class LaunchConfig < Struct.new(
|
2426
2494
|
:package_name,
|
2427
2495
|
:launch_file,
|
2428
2496
|
:environment_variables,
|
2429
|
-
:port_forwarding_config
|
2497
|
+
:port_forwarding_config,
|
2498
|
+
:stream_ui)
|
2430
2499
|
include Aws::Structure
|
2431
2500
|
end
|
2432
2501
|
|
@@ -3357,6 +3426,7 @@ module Aws::RoboMaker
|
|
3357
3426
|
# },
|
3358
3427
|
# ],
|
3359
3428
|
# },
|
3429
|
+
# stream_ui: false,
|
3360
3430
|
# },
|
3361
3431
|
# }
|
3362
3432
|
#
|
@@ -3571,6 +3641,7 @@ module Aws::RoboMaker
|
|
3571
3641
|
# },
|
3572
3642
|
# ],
|
3573
3643
|
# },
|
3644
|
+
# stream_ui: false,
|
3574
3645
|
# },
|
3575
3646
|
# }
|
3576
3647
|
#
|
@@ -3730,6 +3801,10 @@ module Aws::RoboMaker
|
|
3730
3801
|
# Information about a network interface.
|
3731
3802
|
# @return [Types::NetworkInterface]
|
3732
3803
|
#
|
3804
|
+
# @!attribute [rw] compute
|
3805
|
+
# Compute information for the simulation job
|
3806
|
+
# @return [Types::ComputeResponse]
|
3807
|
+
#
|
3733
3808
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationJob AWS API Documentation
|
3734
3809
|
#
|
3735
3810
|
class SimulationJob < Struct.new(
|
@@ -3752,7 +3827,8 @@ module Aws::RoboMaker
|
|
3752
3827
|
:data_sources,
|
3753
3828
|
:tags,
|
3754
3829
|
:vpc_config,
|
3755
|
-
:network_interface
|
3830
|
+
:network_interface,
|
3831
|
+
:compute)
|
3756
3832
|
include Aws::Structure
|
3757
3833
|
end
|
3758
3834
|
|
@@ -3886,6 +3962,7 @@ module Aws::RoboMaker
|
|
3886
3962
|
# },
|
3887
3963
|
# ],
|
3888
3964
|
# },
|
3965
|
+
# stream_ui: false,
|
3889
3966
|
# },
|
3890
3967
|
# },
|
3891
3968
|
# ],
|
@@ -3908,6 +3985,7 @@ module Aws::RoboMaker
|
|
3908
3985
|
# },
|
3909
3986
|
# ],
|
3910
3987
|
# },
|
3988
|
+
# stream_ui: false,
|
3911
3989
|
# },
|
3912
3990
|
# },
|
3913
3991
|
# ],
|
@@ -3923,6 +4001,9 @@ module Aws::RoboMaker
|
|
3923
4001
|
# security_groups: ["NonEmptyString"],
|
3924
4002
|
# assign_public_ip: false,
|
3925
4003
|
# },
|
4004
|
+
# compute: {
|
4005
|
+
# simulation_unit_limit: 1,
|
4006
|
+
# },
|
3926
4007
|
# tags: {
|
3927
4008
|
# "TagKey" => "TagValue",
|
3928
4009
|
# },
|
@@ -3991,6 +4072,10 @@ module Aws::RoboMaker
|
|
3991
4072
|
# security group and two subnet IDs.
|
3992
4073
|
# @return [Types::VPCConfig]
|
3993
4074
|
#
|
4075
|
+
# @!attribute [rw] compute
|
4076
|
+
# Compute information for the simulation job
|
4077
|
+
# @return [Types::Compute]
|
4078
|
+
#
|
3994
4079
|
# @!attribute [rw] tags
|
3995
4080
|
# A map that contains tag keys and tag values that are attached to the
|
3996
4081
|
# simulation job request.
|
@@ -4009,6 +4094,7 @@ module Aws::RoboMaker
|
|
4009
4094
|
:simulation_applications,
|
4010
4095
|
:data_sources,
|
4011
4096
|
:vpc_config,
|
4097
|
+
:compute,
|
4012
4098
|
:tags)
|
4013
4099
|
include Aws::Structure
|
4014
4100
|
end
|
@@ -4184,6 +4270,7 @@ module Aws::RoboMaker
|
|
4184
4270
|
# },
|
4185
4271
|
# ],
|
4186
4272
|
# },
|
4273
|
+
# stream_ui: false,
|
4187
4274
|
# },
|
4188
4275
|
# },
|
4189
4276
|
# ],
|
@@ -4206,6 +4293,7 @@ module Aws::RoboMaker
|
|
4206
4293
|
# },
|
4207
4294
|
# ],
|
4208
4295
|
# },
|
4296
|
+
# stream_ui: false,
|
4209
4297
|
# },
|
4210
4298
|
# },
|
4211
4299
|
# ],
|
@@ -4221,6 +4309,9 @@ module Aws::RoboMaker
|
|
4221
4309
|
# security_groups: ["NonEmptyString"],
|
4222
4310
|
# assign_public_ip: false,
|
4223
4311
|
# },
|
4312
|
+
# compute: {
|
4313
|
+
# simulation_unit_limit: 1,
|
4314
|
+
# },
|
4224
4315
|
# tags: {
|
4225
4316
|
# "TagKey" => "TagValue",
|
4226
4317
|
# },
|
@@ -4234,6 +4325,9 @@ module Aws::RoboMaker
|
|
4234
4325
|
# @!attribute [rw] client_request_token
|
4235
4326
|
# Unique, case-sensitive identifier that you provide to ensure the
|
4236
4327
|
# idempotency of the request.
|
4328
|
+
#
|
4329
|
+
# **A suitable default value is auto-generated.** You should normally
|
4330
|
+
# not need to pass this option.
|
4237
4331
|
# @return [String]
|
4238
4332
|
#
|
4239
4333
|
# @!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.24.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-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - RoboMaker
|