aws-sdk-robomaker 1.21.0 → 1.22.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 +1 -1
- data/lib/aws-sdk-robomaker/client.rb +53 -18
- data/lib/aws-sdk-robomaker/client_api.rb +14 -0
- data/lib/aws-sdk-robomaker/resource.rb +1 -7
- data/lib/aws-sdk-robomaker/types.rb +77 -4
- 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: 0bd0f1c6578423d36db11b9ef44e14750b62c8dc
|
4
|
+
data.tar.gz: 29be58eeeabc977b5da974cef0ba4c668db59076
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4572dab2e9568c8fdd80d932e69e760210b97bfc8d74bf8922515d50bf39352b4cbcca30204588a792f20fde58521b371f1ded32864643cc5b4809cddef21e8
|
7
|
+
data.tar.gz: b5bdf21168fa58122c02b14f5693896c1b7ba772bf96a0c209450d323b3d2ac2754e76a4cadb700a15aec5ef4f63295d5d1a93165bfe638826412612e41d74e1
|
data/lib/aws-sdk-robomaker.rb
CHANGED
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:robomaker)
|
|
32
32
|
module Aws::RoboMaker
|
33
33
|
# An API client for RoboMaker. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::RoboMaker::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::RoboMaker
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
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
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -265,8 +269,7 @@ module Aws::RoboMaker
|
|
265
269
|
#
|
266
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
271
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
270
273
|
#
|
271
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
275
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +281,7 @@ module Aws::RoboMaker
|
|
278
281
|
# request body. This option has no effect unless the request has
|
279
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
283
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
284
|
+
# request on the session.
|
282
285
|
#
|
283
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -380,6 +383,7 @@ module Aws::RoboMaker
|
|
380
383
|
# resp.jobs[0].network_interface.network_interface_id #=> String
|
381
384
|
# resp.jobs[0].network_interface.private_ip_address #=> String
|
382
385
|
# resp.jobs[0].network_interface.public_ip_address #=> String
|
386
|
+
# resp.jobs[0].compute.simulation_unit_limit #=> Integer
|
383
387
|
# resp.unprocessed_jobs #=> Array
|
384
388
|
# resp.unprocessed_jobs[0] #=> String
|
385
389
|
#
|
@@ -1017,6 +1021,9 @@ module Aws::RoboMaker
|
|
1017
1021
|
# These must belong to the same VPC. You must provide at least one
|
1018
1022
|
# security group and one subnet ID.
|
1019
1023
|
#
|
1024
|
+
# @option params [Types::Compute] :compute
|
1025
|
+
# Compute information for the simulation job.
|
1026
|
+
#
|
1020
1027
|
# @return [Types::CreateSimulationJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1021
1028
|
#
|
1022
1029
|
# * {Types::CreateSimulationJobResponse#arn #arn} => String
|
@@ -1036,6 +1043,7 @@ module Aws::RoboMaker
|
|
1036
1043
|
# * {Types::CreateSimulationJobResponse#data_sources #data_sources} => Array<Types::DataSource>
|
1037
1044
|
# * {Types::CreateSimulationJobResponse#tags #tags} => Hash<String,String>
|
1038
1045
|
# * {Types::CreateSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
1046
|
+
# * {Types::CreateSimulationJobResponse#compute #compute} => Types::ComputeResponse
|
1039
1047
|
#
|
1040
1048
|
# @example Request syntax with placeholder values
|
1041
1049
|
#
|
@@ -1112,6 +1120,9 @@ module Aws::RoboMaker
|
|
1112
1120
|
# security_groups: ["NonEmptyString"],
|
1113
1121
|
# assign_public_ip: false,
|
1114
1122
|
# },
|
1123
|
+
# compute: {
|
1124
|
+
# simulation_unit_limit: 1,
|
1125
|
+
# },
|
1115
1126
|
# })
|
1116
1127
|
#
|
1117
1128
|
# @example Response structure
|
@@ -1167,6 +1178,7 @@ module Aws::RoboMaker
|
|
1167
1178
|
# resp.vpc_config.security_groups[0] #=> String
|
1168
1179
|
# resp.vpc_config.vpc_id #=> String
|
1169
1180
|
# resp.vpc_config.assign_public_ip #=> Boolean
|
1181
|
+
# resp.compute.simulation_unit_limit #=> Integer
|
1170
1182
|
#
|
1171
1183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJob AWS API Documentation
|
1172
1184
|
#
|
@@ -1613,6 +1625,7 @@ module Aws::RoboMaker
|
|
1613
1625
|
# * {Types::DescribeSimulationJobResponse#tags #tags} => Hash<String,String>
|
1614
1626
|
# * {Types::DescribeSimulationJobResponse#vpc_config #vpc_config} => Types::VPCConfigResponse
|
1615
1627
|
# * {Types::DescribeSimulationJobResponse#network_interface #network_interface} => Types::NetworkInterface
|
1628
|
+
# * {Types::DescribeSimulationJobResponse#compute #compute} => Types::ComputeResponse
|
1616
1629
|
#
|
1617
1630
|
# @example Request syntax with placeholder values
|
1618
1631
|
#
|
@@ -1678,6 +1691,7 @@ module Aws::RoboMaker
|
|
1678
1691
|
# resp.network_interface.network_interface_id #=> String
|
1679
1692
|
# resp.network_interface.private_ip_address #=> String
|
1680
1693
|
# resp.network_interface.public_ip_address #=> String
|
1694
|
+
# resp.compute.simulation_unit_limit #=> Integer
|
1681
1695
|
#
|
1682
1696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJob AWS API Documentation
|
1683
1697
|
#
|
@@ -1767,6 +1781,7 @@ module Aws::RoboMaker
|
|
1767
1781
|
# resp.failed_requests[0].request.vpc_config.security_groups #=> Array
|
1768
1782
|
# resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
|
1769
1783
|
# resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
|
1784
|
+
# resp.failed_requests[0].request.compute.simulation_unit_limit #=> Integer
|
1770
1785
|
# resp.failed_requests[0].request.tags #=> Hash
|
1771
1786
|
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
1772
1787
|
# resp.failed_requests[0].failure_reason #=> String
|
@@ -1814,6 +1829,7 @@ module Aws::RoboMaker
|
|
1814
1829
|
# resp.pending_requests[0].vpc_config.security_groups #=> Array
|
1815
1830
|
# resp.pending_requests[0].vpc_config.security_groups[0] #=> String
|
1816
1831
|
# resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
|
1832
|
+
# resp.pending_requests[0].compute.simulation_unit_limit #=> Integer
|
1817
1833
|
# resp.pending_requests[0].tags #=> Hash
|
1818
1834
|
# resp.pending_requests[0].tags["TagKey"] #=> String
|
1819
1835
|
# resp.created_requests #=> Array
|
@@ -1872,6 +1888,8 @@ module Aws::RoboMaker
|
|
1872
1888
|
# * {Types::ListDeploymentJobsResponse#deployment_jobs #deployment_jobs} => Array<Types::DeploymentJob>
|
1873
1889
|
# * {Types::ListDeploymentJobsResponse#next_token #next_token} => String
|
1874
1890
|
#
|
1891
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1892
|
+
#
|
1875
1893
|
# @example Request syntax with placeholder values
|
1876
1894
|
#
|
1877
1895
|
# resp = client.list_deployment_jobs({
|
@@ -1955,6 +1973,8 @@ module Aws::RoboMaker
|
|
1955
1973
|
# * {Types::ListFleetsResponse#fleet_details #fleet_details} => Array<Types::Fleet>
|
1956
1974
|
# * {Types::ListFleetsResponse#next_token #next_token} => String
|
1957
1975
|
#
|
1976
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1977
|
+
#
|
1958
1978
|
# @example Request syntax with placeholder values
|
1959
1979
|
#
|
1960
1980
|
# resp = client.list_fleets({
|
@@ -2021,6 +2041,8 @@ module Aws::RoboMaker
|
|
2021
2041
|
# * {Types::ListRobotApplicationsResponse#robot_application_summaries #robot_application_summaries} => Array<Types::RobotApplicationSummary>
|
2022
2042
|
# * {Types::ListRobotApplicationsResponse#next_token #next_token} => String
|
2023
2043
|
#
|
2044
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2045
|
+
#
|
2024
2046
|
# @example Request syntax with placeholder values
|
2025
2047
|
#
|
2026
2048
|
# resp = client.list_robot_applications({
|
@@ -2087,6 +2109,8 @@ module Aws::RoboMaker
|
|
2087
2109
|
# * {Types::ListRobotsResponse#robots #robots} => Array<Types::Robot>
|
2088
2110
|
# * {Types::ListRobotsResponse#next_token #next_token} => String
|
2089
2111
|
#
|
2112
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2113
|
+
#
|
2090
2114
|
# @example Request syntax with placeholder values
|
2091
2115
|
#
|
2092
2116
|
# resp = client.list_robots({
|
@@ -2156,6 +2180,8 @@ module Aws::RoboMaker
|
|
2156
2180
|
# * {Types::ListSimulationApplicationsResponse#simulation_application_summaries #simulation_application_summaries} => Array<Types::SimulationApplicationSummary>
|
2157
2181
|
# * {Types::ListSimulationApplicationsResponse#next_token #next_token} => String
|
2158
2182
|
#
|
2183
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2184
|
+
#
|
2159
2185
|
# @example Request syntax with placeholder values
|
2160
2186
|
#
|
2161
2187
|
# resp = client.list_simulation_applications({
|
@@ -2217,6 +2243,8 @@ module Aws::RoboMaker
|
|
2217
2243
|
# * {Types::ListSimulationJobBatchesResponse#simulation_job_batch_summaries #simulation_job_batch_summaries} => Array<Types::SimulationJobBatchSummary>
|
2218
2244
|
# * {Types::ListSimulationJobBatchesResponse#next_token #next_token} => String
|
2219
2245
|
#
|
2246
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2247
|
+
#
|
2220
2248
|
# @example Request syntax with placeholder values
|
2221
2249
|
#
|
2222
2250
|
# resp = client.list_simulation_job_batches({
|
@@ -2290,6 +2318,8 @@ module Aws::RoboMaker
|
|
2290
2318
|
# * {Types::ListSimulationJobsResponse#simulation_job_summaries #simulation_job_summaries} => Array<Types::SimulationJobSummary>
|
2291
2319
|
# * {Types::ListSimulationJobsResponse#next_token #next_token} => String
|
2292
2320
|
#
|
2321
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2322
|
+
#
|
2293
2323
|
# @example Request syntax with placeholder values
|
2294
2324
|
#
|
2295
2325
|
# resp = client.list_simulation_jobs({
|
@@ -2525,6 +2555,9 @@ module Aws::RoboMaker
|
|
2525
2555
|
# security_groups: ["NonEmptyString"],
|
2526
2556
|
# assign_public_ip: false,
|
2527
2557
|
# },
|
2558
|
+
# compute: {
|
2559
|
+
# simulation_unit_limit: 1,
|
2560
|
+
# },
|
2528
2561
|
# tags: {
|
2529
2562
|
# "TagKey" => "TagValue",
|
2530
2563
|
# },
|
@@ -2587,6 +2620,7 @@ module Aws::RoboMaker
|
|
2587
2620
|
# resp.failed_requests[0].request.vpc_config.security_groups #=> Array
|
2588
2621
|
# resp.failed_requests[0].request.vpc_config.security_groups[0] #=> String
|
2589
2622
|
# resp.failed_requests[0].request.vpc_config.assign_public_ip #=> Boolean
|
2623
|
+
# resp.failed_requests[0].request.compute.simulation_unit_limit #=> Integer
|
2590
2624
|
# resp.failed_requests[0].request.tags #=> Hash
|
2591
2625
|
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
2592
2626
|
# resp.failed_requests[0].failure_reason #=> String
|
@@ -2634,6 +2668,7 @@ module Aws::RoboMaker
|
|
2634
2668
|
# resp.pending_requests[0].vpc_config.security_groups #=> Array
|
2635
2669
|
# resp.pending_requests[0].vpc_config.security_groups[0] #=> String
|
2636
2670
|
# resp.pending_requests[0].vpc_config.assign_public_ip #=> Boolean
|
2671
|
+
# resp.pending_requests[0].compute.simulation_unit_limit #=> Integer
|
2637
2672
|
# resp.pending_requests[0].tags #=> Hash
|
2638
2673
|
# resp.pending_requests[0].tags["TagKey"] #=> String
|
2639
2674
|
# resp.created_requests #=> Array
|
@@ -2965,7 +3000,7 @@ module Aws::RoboMaker
|
|
2965
3000
|
params: params,
|
2966
3001
|
config: config)
|
2967
3002
|
context[:gem_name] = 'aws-sdk-robomaker'
|
2968
|
-
context[:gem_version] = '1.
|
3003
|
+
context[:gem_version] = '1.22.0'
|
2969
3004
|
Seahorse::Client::Request.new(handlers, context)
|
2970
3005
|
end
|
2971
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)
|
@@ -862,6 +874,7 @@ module Aws::RoboMaker
|
|
862
874
|
SimulationJob.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
863
875
|
SimulationJob.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VPCConfigResponse, location_name: "vpcConfig"))
|
864
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"))
|
865
878
|
SimulationJob.struct_class = Types::SimulationJob
|
866
879
|
|
867
880
|
SimulationJobBatchSummaries.member = Shapes::ShapeRef.new(shape: SimulationJobBatchSummary)
|
@@ -885,6 +898,7 @@ module Aws::RoboMaker
|
|
885
898
|
SimulationJobRequest.add_member(:simulation_applications, Shapes::ShapeRef.new(shape: SimulationApplicationConfigs, location_name: "simulationApplications"))
|
886
899
|
SimulationJobRequest.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSourceConfigs, location_name: "dataSources"))
|
887
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"))
|
888
902
|
SimulationJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
889
903
|
SimulationJobRequest.struct_class = Types::SimulationJobRequest
|
890
904
|
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::RoboMaker
|
9
|
-
|
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
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
@@ -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
|
@@ -920,6 +959,9 @@ module Aws::RoboMaker
|
|
920
959
|
# security_groups: ["NonEmptyString"],
|
921
960
|
# assign_public_ip: false,
|
922
961
|
# },
|
962
|
+
# compute: {
|
963
|
+
# simulation_unit_limit: 1,
|
964
|
+
# },
|
923
965
|
# }
|
924
966
|
#
|
925
967
|
# @!attribute [rw] client_request_token
|
@@ -994,6 +1036,10 @@ module Aws::RoboMaker
|
|
994
1036
|
# security group and one subnet ID.
|
995
1037
|
# @return [Types::VPCConfig]
|
996
1038
|
#
|
1039
|
+
# @!attribute [rw] compute
|
1040
|
+
# Compute information for the simulation job.
|
1041
|
+
# @return [Types::Compute]
|
1042
|
+
#
|
997
1043
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJobRequest AWS API Documentation
|
998
1044
|
#
|
999
1045
|
class CreateSimulationJobRequest < Struct.new(
|
@@ -1007,7 +1053,8 @@ module Aws::RoboMaker
|
|
1007
1053
|
:simulation_applications,
|
1008
1054
|
:data_sources,
|
1009
1055
|
:tags,
|
1010
|
-
:vpc_config
|
1056
|
+
:vpc_config,
|
1057
|
+
:compute)
|
1011
1058
|
include Aws::Structure
|
1012
1059
|
end
|
1013
1060
|
|
@@ -1144,6 +1191,10 @@ module Aws::RoboMaker
|
|
1144
1191
|
# Information about the vpc configuration.
|
1145
1192
|
# @return [Types::VPCConfigResponse]
|
1146
1193
|
#
|
1194
|
+
# @!attribute [rw] compute
|
1195
|
+
# Compute information for the simulation job.
|
1196
|
+
# @return [Types::ComputeResponse]
|
1197
|
+
#
|
1147
1198
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationJobResponse AWS API Documentation
|
1148
1199
|
#
|
1149
1200
|
class CreateSimulationJobResponse < Struct.new(
|
@@ -1163,7 +1214,8 @@ module Aws::RoboMaker
|
|
1163
1214
|
:simulation_applications,
|
1164
1215
|
:data_sources,
|
1165
1216
|
:tags,
|
1166
|
-
:vpc_config
|
1217
|
+
:vpc_config,
|
1218
|
+
:compute)
|
1167
1219
|
include Aws::Structure
|
1168
1220
|
end
|
1169
1221
|
|
@@ -2224,6 +2276,10 @@ module Aws::RoboMaker
|
|
2224
2276
|
# The network interface information for the simulation job.
|
2225
2277
|
# @return [Types::NetworkInterface]
|
2226
2278
|
#
|
2279
|
+
# @!attribute [rw] compute
|
2280
|
+
# Compute information for the simulation job.
|
2281
|
+
# @return [Types::ComputeResponse]
|
2282
|
+
#
|
2227
2283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationJobResponse AWS API Documentation
|
2228
2284
|
#
|
2229
2285
|
class DescribeSimulationJobResponse < Struct.new(
|
@@ -2246,7 +2302,8 @@ module Aws::RoboMaker
|
|
2246
2302
|
:data_sources,
|
2247
2303
|
:tags,
|
2248
2304
|
:vpc_config,
|
2249
|
-
:network_interface
|
2305
|
+
:network_interface,
|
2306
|
+
:compute)
|
2250
2307
|
include Aws::Structure
|
2251
2308
|
end
|
2252
2309
|
|
@@ -3744,6 +3801,10 @@ module Aws::RoboMaker
|
|
3744
3801
|
# Information about a network interface.
|
3745
3802
|
# @return [Types::NetworkInterface]
|
3746
3803
|
#
|
3804
|
+
# @!attribute [rw] compute
|
3805
|
+
# Compute information for the simulation job
|
3806
|
+
# @return [Types::ComputeResponse]
|
3807
|
+
#
|
3747
3808
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationJob AWS API Documentation
|
3748
3809
|
#
|
3749
3810
|
class SimulationJob < Struct.new(
|
@@ -3766,7 +3827,8 @@ module Aws::RoboMaker
|
|
3766
3827
|
:data_sources,
|
3767
3828
|
:tags,
|
3768
3829
|
:vpc_config,
|
3769
|
-
:network_interface
|
3830
|
+
:network_interface,
|
3831
|
+
:compute)
|
3770
3832
|
include Aws::Structure
|
3771
3833
|
end
|
3772
3834
|
|
@@ -3939,6 +4001,9 @@ module Aws::RoboMaker
|
|
3939
4001
|
# security_groups: ["NonEmptyString"],
|
3940
4002
|
# assign_public_ip: false,
|
3941
4003
|
# },
|
4004
|
+
# compute: {
|
4005
|
+
# simulation_unit_limit: 1,
|
4006
|
+
# },
|
3942
4007
|
# tags: {
|
3943
4008
|
# "TagKey" => "TagValue",
|
3944
4009
|
# },
|
@@ -4007,6 +4072,10 @@ module Aws::RoboMaker
|
|
4007
4072
|
# security group and two subnet IDs.
|
4008
4073
|
# @return [Types::VPCConfig]
|
4009
4074
|
#
|
4075
|
+
# @!attribute [rw] compute
|
4076
|
+
# Compute information for the simulation job
|
4077
|
+
# @return [Types::Compute]
|
4078
|
+
#
|
4010
4079
|
# @!attribute [rw] tags
|
4011
4080
|
# A map that contains tag keys and tag values that are attached to the
|
4012
4081
|
# simulation job request.
|
@@ -4025,6 +4094,7 @@ module Aws::RoboMaker
|
|
4025
4094
|
:simulation_applications,
|
4026
4095
|
:data_sources,
|
4027
4096
|
:vpc_config,
|
4097
|
+
:compute,
|
4028
4098
|
:tags)
|
4029
4099
|
include Aws::Structure
|
4030
4100
|
end
|
@@ -4239,6 +4309,9 @@ module Aws::RoboMaker
|
|
4239
4309
|
# security_groups: ["NonEmptyString"],
|
4240
4310
|
# assign_public_ip: false,
|
4241
4311
|
# },
|
4312
|
+
# compute: {
|
4313
|
+
# simulation_unit_limit: 1,
|
4314
|
+
# },
|
4242
4315
|
# tags: {
|
4243
4316
|
# "TagKey" => "TagValue",
|
4244
4317
|
# },
|
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.22.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-03
|
11
|
+
date: 2020-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|