aws-sdk-robomaker 1.31.0 → 1.32.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 +108 -6
- data/lib/aws-sdk-robomaker/client_api.rb +14 -0
- data/lib/aws-sdk-robomaker/types.rb +163 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 02d8f581b583ca2038d64f28ed2e12e0e793d0595b3cd0b83d907b0276d266a0
|
|
4
|
+
data.tar.gz: fd503e62dc4543d55146341b54226b0aa2c5bc8e9e00cd69dc21072890e497f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba704199f8ad15f49083503e8ca60bf49c906e4f7e66307b4655f39b544906ccf556fba6271d005b64bf638db6f2d32932c118c3a9ecabad6c35e3edfe94f942
|
|
7
|
+
data.tar.gz: 20d3e58d1c67b28ac5902d6c21a01734a8b9ee5022eb7e0a0bb3d674894c09a09eb316b0b7f3eaa69ae59ad99aaf06983aeffbb7eed80a7da2986640fc68852c
|
data/lib/aws-sdk-robomaker.rb
CHANGED
|
@@ -382,7 +382,7 @@ module Aws::RoboMaker
|
|
|
382
382
|
# resp.jobs[0].last_started_at #=> Time
|
|
383
383
|
# resp.jobs[0].last_updated_at #=> Time
|
|
384
384
|
# resp.jobs[0].failure_behavior #=> String, one of "Fail", "Continue"
|
|
385
|
-
# resp.jobs[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
|
385
|
+
# resp.jobs[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication", "UploadContentMismatchError"
|
|
386
386
|
# resp.jobs[0].failure_reason #=> String
|
|
387
387
|
# resp.jobs[0].client_request_token #=> String
|
|
388
388
|
# resp.jobs[0].output_location.s3_bucket #=> String
|
|
@@ -403,6 +403,11 @@ module Aws::RoboMaker
|
|
|
403
403
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
404
404
|
# resp.jobs[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
405
405
|
# resp.jobs[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
|
406
|
+
# resp.jobs[0].robot_applications[0].upload_configurations #=> Array
|
|
407
|
+
# resp.jobs[0].robot_applications[0].upload_configurations[0].name #=> String
|
|
408
|
+
# resp.jobs[0].robot_applications[0].upload_configurations[0].path #=> String
|
|
409
|
+
# resp.jobs[0].robot_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
410
|
+
# resp.jobs[0].robot_applications[0].use_default_upload_configurations #=> Boolean
|
|
406
411
|
# resp.jobs[0].simulation_applications #=> Array
|
|
407
412
|
# resp.jobs[0].simulation_applications[0].application #=> String
|
|
408
413
|
# resp.jobs[0].simulation_applications[0].application_version #=> String
|
|
@@ -415,8 +420,13 @@ module Aws::RoboMaker
|
|
|
415
420
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
416
421
|
# resp.jobs[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
417
422
|
# resp.jobs[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
|
423
|
+
# resp.jobs[0].simulation_applications[0].upload_configurations #=> Array
|
|
424
|
+
# resp.jobs[0].simulation_applications[0].upload_configurations[0].name #=> String
|
|
425
|
+
# resp.jobs[0].simulation_applications[0].upload_configurations[0].path #=> String
|
|
426
|
+
# resp.jobs[0].simulation_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
418
427
|
# resp.jobs[0].simulation_applications[0].world_configs #=> Array
|
|
419
428
|
# resp.jobs[0].simulation_applications[0].world_configs[0].world #=> String
|
|
429
|
+
# resp.jobs[0].simulation_applications[0].use_default_upload_configurations #=> Boolean
|
|
420
430
|
# resp.jobs[0].data_sources #=> Array
|
|
421
431
|
# resp.jobs[0].data_sources[0].name #=> String
|
|
422
432
|
# resp.jobs[0].data_sources[0].s3_bucket #=> String
|
|
@@ -1175,6 +1185,14 @@ module Aws::RoboMaker
|
|
|
1175
1185
|
# },
|
|
1176
1186
|
# stream_ui: false,
|
|
1177
1187
|
# },
|
|
1188
|
+
# upload_configurations: [
|
|
1189
|
+
# {
|
|
1190
|
+
# name: "Name", # required
|
|
1191
|
+
# path: "Path", # required
|
|
1192
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
1193
|
+
# },
|
|
1194
|
+
# ],
|
|
1195
|
+
# use_default_upload_configurations: false,
|
|
1178
1196
|
# },
|
|
1179
1197
|
# ],
|
|
1180
1198
|
# simulation_applications: [
|
|
@@ -1198,11 +1216,19 @@ module Aws::RoboMaker
|
|
|
1198
1216
|
# },
|
|
1199
1217
|
# stream_ui: false,
|
|
1200
1218
|
# },
|
|
1219
|
+
# upload_configurations: [
|
|
1220
|
+
# {
|
|
1221
|
+
# name: "Name", # required
|
|
1222
|
+
# path: "Path", # required
|
|
1223
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
1224
|
+
# },
|
|
1225
|
+
# ],
|
|
1201
1226
|
# world_configs: [
|
|
1202
1227
|
# {
|
|
1203
1228
|
# world: "Arn",
|
|
1204
1229
|
# },
|
|
1205
1230
|
# ],
|
|
1231
|
+
# use_default_upload_configurations: false,
|
|
1206
1232
|
# },
|
|
1207
1233
|
# ],
|
|
1208
1234
|
# data_sources: [
|
|
@@ -1232,7 +1258,7 @@ module Aws::RoboMaker
|
|
|
1232
1258
|
# resp.last_started_at #=> Time
|
|
1233
1259
|
# resp.last_updated_at #=> Time
|
|
1234
1260
|
# resp.failure_behavior #=> String, one of "Fail", "Continue"
|
|
1235
|
-
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
|
1261
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication", "UploadContentMismatchError"
|
|
1236
1262
|
# resp.client_request_token #=> String
|
|
1237
1263
|
# resp.output_location.s3_bucket #=> String
|
|
1238
1264
|
# resp.output_location.s3_prefix #=> String
|
|
@@ -1252,6 +1278,11 @@ module Aws::RoboMaker
|
|
|
1252
1278
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
1253
1279
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
1254
1280
|
# resp.robot_applications[0].launch_config.stream_ui #=> Boolean
|
|
1281
|
+
# resp.robot_applications[0].upload_configurations #=> Array
|
|
1282
|
+
# resp.robot_applications[0].upload_configurations[0].name #=> String
|
|
1283
|
+
# resp.robot_applications[0].upload_configurations[0].path #=> String
|
|
1284
|
+
# resp.robot_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
1285
|
+
# resp.robot_applications[0].use_default_upload_configurations #=> Boolean
|
|
1255
1286
|
# resp.simulation_applications #=> Array
|
|
1256
1287
|
# resp.simulation_applications[0].application #=> String
|
|
1257
1288
|
# resp.simulation_applications[0].application_version #=> String
|
|
@@ -1264,8 +1295,13 @@ module Aws::RoboMaker
|
|
|
1264
1295
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
1265
1296
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
1266
1297
|
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
|
1298
|
+
# resp.simulation_applications[0].upload_configurations #=> Array
|
|
1299
|
+
# resp.simulation_applications[0].upload_configurations[0].name #=> String
|
|
1300
|
+
# resp.simulation_applications[0].upload_configurations[0].path #=> String
|
|
1301
|
+
# resp.simulation_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
1267
1302
|
# resp.simulation_applications[0].world_configs #=> Array
|
|
1268
1303
|
# resp.simulation_applications[0].world_configs[0].world #=> String
|
|
1304
|
+
# resp.simulation_applications[0].use_default_upload_configurations #=> Boolean
|
|
1269
1305
|
# resp.data_sources #=> Array
|
|
1270
1306
|
# resp.data_sources[0].name #=> String
|
|
1271
1307
|
# resp.data_sources[0].s3_bucket #=> String
|
|
@@ -1975,7 +2011,7 @@ module Aws::RoboMaker
|
|
|
1975
2011
|
# resp.last_started_at #=> Time
|
|
1976
2012
|
# resp.last_updated_at #=> Time
|
|
1977
2013
|
# resp.failure_behavior #=> String, one of "Fail", "Continue"
|
|
1978
|
-
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
|
2014
|
+
# resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication", "UploadContentMismatchError"
|
|
1979
2015
|
# resp.failure_reason #=> String
|
|
1980
2016
|
# resp.client_request_token #=> String
|
|
1981
2017
|
# resp.output_location.s3_bucket #=> String
|
|
@@ -1996,6 +2032,11 @@ module Aws::RoboMaker
|
|
|
1996
2032
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
1997
2033
|
# resp.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
1998
2034
|
# resp.robot_applications[0].launch_config.stream_ui #=> Boolean
|
|
2035
|
+
# resp.robot_applications[0].upload_configurations #=> Array
|
|
2036
|
+
# resp.robot_applications[0].upload_configurations[0].name #=> String
|
|
2037
|
+
# resp.robot_applications[0].upload_configurations[0].path #=> String
|
|
2038
|
+
# resp.robot_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
2039
|
+
# resp.robot_applications[0].use_default_upload_configurations #=> Boolean
|
|
1999
2040
|
# resp.simulation_applications #=> Array
|
|
2000
2041
|
# resp.simulation_applications[0].application #=> String
|
|
2001
2042
|
# resp.simulation_applications[0].application_version #=> String
|
|
@@ -2008,8 +2049,13 @@ module Aws::RoboMaker
|
|
|
2008
2049
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
2009
2050
|
# resp.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
2010
2051
|
# resp.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
|
2052
|
+
# resp.simulation_applications[0].upload_configurations #=> Array
|
|
2053
|
+
# resp.simulation_applications[0].upload_configurations[0].name #=> String
|
|
2054
|
+
# resp.simulation_applications[0].upload_configurations[0].path #=> String
|
|
2055
|
+
# resp.simulation_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
2011
2056
|
# resp.simulation_applications[0].world_configs #=> Array
|
|
2012
2057
|
# resp.simulation_applications[0].world_configs[0].world #=> String
|
|
2058
|
+
# resp.simulation_applications[0].use_default_upload_configurations #=> Boolean
|
|
2013
2059
|
# resp.data_sources #=> Array
|
|
2014
2060
|
# resp.data_sources[0].name #=> String
|
|
2015
2061
|
# resp.data_sources[0].s3_bucket #=> String
|
|
@@ -2095,6 +2141,11 @@ module Aws::RoboMaker
|
|
|
2095
2141
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
2096
2142
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
2097
2143
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.stream_ui #=> Boolean
|
|
2144
|
+
# resp.failed_requests[0].request.robot_applications[0].upload_configurations #=> Array
|
|
2145
|
+
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].name #=> String
|
|
2146
|
+
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].path #=> String
|
|
2147
|
+
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
2148
|
+
# resp.failed_requests[0].request.robot_applications[0].use_default_upload_configurations #=> Boolean
|
|
2098
2149
|
# resp.failed_requests[0].request.simulation_applications #=> Array
|
|
2099
2150
|
# resp.failed_requests[0].request.simulation_applications[0].application #=> String
|
|
2100
2151
|
# resp.failed_requests[0].request.simulation_applications[0].application_version #=> String
|
|
@@ -2107,8 +2158,13 @@ module Aws::RoboMaker
|
|
|
2107
2158
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
2108
2159
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
2109
2160
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
|
2161
|
+
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations #=> Array
|
|
2162
|
+
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].name #=> String
|
|
2163
|
+
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].path #=> String
|
|
2164
|
+
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
2110
2165
|
# resp.failed_requests[0].request.simulation_applications[0].world_configs #=> Array
|
|
2111
2166
|
# resp.failed_requests[0].request.simulation_applications[0].world_configs[0].world #=> String
|
|
2167
|
+
# resp.failed_requests[0].request.simulation_applications[0].use_default_upload_configurations #=> Boolean
|
|
2112
2168
|
# resp.failed_requests[0].request.data_sources #=> Array
|
|
2113
2169
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
|
2114
2170
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
|
@@ -2123,7 +2179,7 @@ module Aws::RoboMaker
|
|
|
2123
2179
|
# resp.failed_requests[0].request.tags #=> Hash
|
|
2124
2180
|
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
|
2125
2181
|
# resp.failed_requests[0].failure_reason #=> String
|
|
2126
|
-
# resp.failed_requests[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
|
2182
|
+
# resp.failed_requests[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication", "UploadContentMismatchError"
|
|
2127
2183
|
# resp.failed_requests[0].failed_at #=> Time
|
|
2128
2184
|
# resp.pending_requests #=> Array
|
|
2129
2185
|
# resp.pending_requests[0].output_location.s3_bucket #=> String
|
|
@@ -2145,6 +2201,11 @@ module Aws::RoboMaker
|
|
|
2145
2201
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
2146
2202
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
2147
2203
|
# resp.pending_requests[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
|
2204
|
+
# resp.pending_requests[0].robot_applications[0].upload_configurations #=> Array
|
|
2205
|
+
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].name #=> String
|
|
2206
|
+
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].path #=> String
|
|
2207
|
+
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
2208
|
+
# resp.pending_requests[0].robot_applications[0].use_default_upload_configurations #=> Boolean
|
|
2148
2209
|
# resp.pending_requests[0].simulation_applications #=> Array
|
|
2149
2210
|
# resp.pending_requests[0].simulation_applications[0].application #=> String
|
|
2150
2211
|
# resp.pending_requests[0].simulation_applications[0].application_version #=> String
|
|
@@ -2157,8 +2218,13 @@ module Aws::RoboMaker
|
|
|
2157
2218
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
2158
2219
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
2159
2220
|
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
|
2221
|
+
# resp.pending_requests[0].simulation_applications[0].upload_configurations #=> Array
|
|
2222
|
+
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].name #=> String
|
|
2223
|
+
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].path #=> String
|
|
2224
|
+
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
2160
2225
|
# resp.pending_requests[0].simulation_applications[0].world_configs #=> Array
|
|
2161
2226
|
# resp.pending_requests[0].simulation_applications[0].world_configs[0].world #=> String
|
|
2227
|
+
# resp.pending_requests[0].simulation_applications[0].use_default_upload_configurations #=> Boolean
|
|
2162
2228
|
# resp.pending_requests[0].data_sources #=> Array
|
|
2163
2229
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
|
2164
2230
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
|
@@ -3318,6 +3384,14 @@ module Aws::RoboMaker
|
|
|
3318
3384
|
# },
|
|
3319
3385
|
# stream_ui: false,
|
|
3320
3386
|
# },
|
|
3387
|
+
# upload_configurations: [
|
|
3388
|
+
# {
|
|
3389
|
+
# name: "Name", # required
|
|
3390
|
+
# path: "Path", # required
|
|
3391
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
3392
|
+
# },
|
|
3393
|
+
# ],
|
|
3394
|
+
# use_default_upload_configurations: false,
|
|
3321
3395
|
# },
|
|
3322
3396
|
# ],
|
|
3323
3397
|
# simulation_applications: [
|
|
@@ -3341,11 +3415,19 @@ module Aws::RoboMaker
|
|
|
3341
3415
|
# },
|
|
3342
3416
|
# stream_ui: false,
|
|
3343
3417
|
# },
|
|
3418
|
+
# upload_configurations: [
|
|
3419
|
+
# {
|
|
3420
|
+
# name: "Name", # required
|
|
3421
|
+
# path: "Path", # required
|
|
3422
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
3423
|
+
# },
|
|
3424
|
+
# ],
|
|
3344
3425
|
# world_configs: [
|
|
3345
3426
|
# {
|
|
3346
3427
|
# world: "Arn",
|
|
3347
3428
|
# },
|
|
3348
3429
|
# ],
|
|
3430
|
+
# use_default_upload_configurations: false,
|
|
3349
3431
|
# },
|
|
3350
3432
|
# ],
|
|
3351
3433
|
# data_sources: [
|
|
@@ -3403,6 +3485,11 @@ module Aws::RoboMaker
|
|
|
3403
3485
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
3404
3486
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
3405
3487
|
# resp.failed_requests[0].request.robot_applications[0].launch_config.stream_ui #=> Boolean
|
|
3488
|
+
# resp.failed_requests[0].request.robot_applications[0].upload_configurations #=> Array
|
|
3489
|
+
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].name #=> String
|
|
3490
|
+
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].path #=> String
|
|
3491
|
+
# resp.failed_requests[0].request.robot_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
3492
|
+
# resp.failed_requests[0].request.robot_applications[0].use_default_upload_configurations #=> Boolean
|
|
3406
3493
|
# resp.failed_requests[0].request.simulation_applications #=> Array
|
|
3407
3494
|
# resp.failed_requests[0].request.simulation_applications[0].application #=> String
|
|
3408
3495
|
# resp.failed_requests[0].request.simulation_applications[0].application_version #=> String
|
|
@@ -3415,8 +3502,13 @@ module Aws::RoboMaker
|
|
|
3415
3502
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
3416
3503
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
3417
3504
|
# resp.failed_requests[0].request.simulation_applications[0].launch_config.stream_ui #=> Boolean
|
|
3505
|
+
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations #=> Array
|
|
3506
|
+
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].name #=> String
|
|
3507
|
+
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].path #=> String
|
|
3508
|
+
# resp.failed_requests[0].request.simulation_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
3418
3509
|
# resp.failed_requests[0].request.simulation_applications[0].world_configs #=> Array
|
|
3419
3510
|
# resp.failed_requests[0].request.simulation_applications[0].world_configs[0].world #=> String
|
|
3511
|
+
# resp.failed_requests[0].request.simulation_applications[0].use_default_upload_configurations #=> Boolean
|
|
3420
3512
|
# resp.failed_requests[0].request.data_sources #=> Array
|
|
3421
3513
|
# resp.failed_requests[0].request.data_sources[0].name #=> String
|
|
3422
3514
|
# resp.failed_requests[0].request.data_sources[0].s3_bucket #=> String
|
|
@@ -3431,7 +3523,7 @@ module Aws::RoboMaker
|
|
|
3431
3523
|
# resp.failed_requests[0].request.tags #=> Hash
|
|
3432
3524
|
# resp.failed_requests[0].request.tags["TagKey"] #=> String
|
|
3433
3525
|
# resp.failed_requests[0].failure_reason #=> String
|
|
3434
|
-
# resp.failed_requests[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
|
|
3526
|
+
# resp.failed_requests[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Object", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "InvalidS3Resource", "LimitExceeded", "MismatchedEtag", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "ResourceNotFound", "RequestThrottled", "BatchTimedOut", "BatchCanceled", "InvalidInput", "WrongRegionS3Bucket", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication", "UploadContentMismatchError"
|
|
3435
3527
|
# resp.failed_requests[0].failed_at #=> Time
|
|
3436
3528
|
# resp.pending_requests #=> Array
|
|
3437
3529
|
# resp.pending_requests[0].output_location.s3_bucket #=> String
|
|
@@ -3453,6 +3545,11 @@ module Aws::RoboMaker
|
|
|
3453
3545
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
3454
3546
|
# resp.pending_requests[0].robot_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
3455
3547
|
# resp.pending_requests[0].robot_applications[0].launch_config.stream_ui #=> Boolean
|
|
3548
|
+
# resp.pending_requests[0].robot_applications[0].upload_configurations #=> Array
|
|
3549
|
+
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].name #=> String
|
|
3550
|
+
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].path #=> String
|
|
3551
|
+
# resp.pending_requests[0].robot_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
3552
|
+
# resp.pending_requests[0].robot_applications[0].use_default_upload_configurations #=> Boolean
|
|
3456
3553
|
# resp.pending_requests[0].simulation_applications #=> Array
|
|
3457
3554
|
# resp.pending_requests[0].simulation_applications[0].application #=> String
|
|
3458
3555
|
# resp.pending_requests[0].simulation_applications[0].application_version #=> String
|
|
@@ -3465,8 +3562,13 @@ module Aws::RoboMaker
|
|
|
3465
3562
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].application_port #=> Integer
|
|
3466
3563
|
# resp.pending_requests[0].simulation_applications[0].launch_config.port_forwarding_config.port_mappings[0].enable_on_public_ip #=> Boolean
|
|
3467
3564
|
# resp.pending_requests[0].simulation_applications[0].launch_config.stream_ui #=> Boolean
|
|
3565
|
+
# resp.pending_requests[0].simulation_applications[0].upload_configurations #=> Array
|
|
3566
|
+
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].name #=> String
|
|
3567
|
+
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].path #=> String
|
|
3568
|
+
# resp.pending_requests[0].simulation_applications[0].upload_configurations[0].upload_behavior #=> String, one of "UPLOAD_ON_TERMINATE", "UPLOAD_ROLLING_AUTO_REMOVE"
|
|
3468
3569
|
# resp.pending_requests[0].simulation_applications[0].world_configs #=> Array
|
|
3469
3570
|
# resp.pending_requests[0].simulation_applications[0].world_configs[0].world #=> String
|
|
3571
|
+
# resp.pending_requests[0].simulation_applications[0].use_default_upload_configurations #=> Boolean
|
|
3470
3572
|
# resp.pending_requests[0].data_sources #=> Array
|
|
3471
3573
|
# resp.pending_requests[0].data_sources[0].name #=> String
|
|
3472
3574
|
# resp.pending_requests[0].data_sources[0].s3_bucket #=> String
|
|
@@ -3858,7 +3960,7 @@ module Aws::RoboMaker
|
|
|
3858
3960
|
params: params,
|
|
3859
3961
|
config: config)
|
|
3860
3962
|
context[:gem_name] = 'aws-sdk-robomaker'
|
|
3861
|
-
context[:gem_version] = '1.
|
|
3963
|
+
context[:gem_version] = '1.32.0'
|
|
3862
3964
|
Seahorse::Client::Request.new(handlers, context)
|
|
3863
3965
|
end
|
|
3864
3966
|
|
|
@@ -267,6 +267,9 @@ module Aws::RoboMaker
|
|
|
267
267
|
UpdateSimulationApplicationResponse = Shapes::StructureShape.new(name: 'UpdateSimulationApplicationResponse')
|
|
268
268
|
UpdateWorldTemplateRequest = Shapes::StructureShape.new(name: 'UpdateWorldTemplateRequest')
|
|
269
269
|
UpdateWorldTemplateResponse = Shapes::StructureShape.new(name: 'UpdateWorldTemplateResponse')
|
|
270
|
+
UploadBehavior = Shapes::StringShape.new(name: 'UploadBehavior')
|
|
271
|
+
UploadConfiguration = Shapes::StructureShape.new(name: 'UploadConfiguration')
|
|
272
|
+
UploadConfigurations = Shapes::ListShape.new(name: 'UploadConfigurations')
|
|
270
273
|
VPCConfig = Shapes::StructureShape.new(name: 'VPCConfig')
|
|
271
274
|
VPCConfigResponse = Shapes::StructureShape.new(name: 'VPCConfigResponse')
|
|
272
275
|
Version = Shapes::StringShape.new(name: 'Version')
|
|
@@ -1018,6 +1021,8 @@ module Aws::RoboMaker
|
|
|
1018
1021
|
RobotApplicationConfig.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
|
1019
1022
|
RobotApplicationConfig.add_member(:application_version, Shapes::ShapeRef.new(shape: Version, location_name: "applicationVersion"))
|
|
1020
1023
|
RobotApplicationConfig.add_member(:launch_config, Shapes::ShapeRef.new(shape: LaunchConfig, required: true, location_name: "launchConfig"))
|
|
1024
|
+
RobotApplicationConfig.add_member(:upload_configurations, Shapes::ShapeRef.new(shape: UploadConfigurations, location_name: "uploadConfigurations"))
|
|
1025
|
+
RobotApplicationConfig.add_member(:use_default_upload_configurations, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultUploadConfigurations"))
|
|
1021
1026
|
RobotApplicationConfig.struct_class = Types::RobotApplicationConfig
|
|
1022
1027
|
|
|
1023
1028
|
RobotApplicationConfigs.member = Shapes::ShapeRef.new(shape: RobotApplicationConfig)
|
|
@@ -1071,7 +1076,9 @@ module Aws::RoboMaker
|
|
|
1071
1076
|
SimulationApplicationConfig.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
|
1072
1077
|
SimulationApplicationConfig.add_member(:application_version, Shapes::ShapeRef.new(shape: Version, location_name: "applicationVersion"))
|
|
1073
1078
|
SimulationApplicationConfig.add_member(:launch_config, Shapes::ShapeRef.new(shape: LaunchConfig, required: true, location_name: "launchConfig"))
|
|
1079
|
+
SimulationApplicationConfig.add_member(:upload_configurations, Shapes::ShapeRef.new(shape: UploadConfigurations, location_name: "uploadConfigurations"))
|
|
1074
1080
|
SimulationApplicationConfig.add_member(:world_configs, Shapes::ShapeRef.new(shape: WorldConfigs, location_name: "worldConfigs"))
|
|
1081
|
+
SimulationApplicationConfig.add_member(:use_default_upload_configurations, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultUploadConfigurations"))
|
|
1075
1082
|
SimulationApplicationConfig.struct_class = Types::SimulationApplicationConfig
|
|
1076
1083
|
|
|
1077
1084
|
SimulationApplicationConfigs.member = Shapes::ShapeRef.new(shape: SimulationApplicationConfig)
|
|
@@ -1281,6 +1288,13 @@ module Aws::RoboMaker
|
|
|
1281
1288
|
UpdateWorldTemplateResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
|
1282
1289
|
UpdateWorldTemplateResponse.struct_class = Types::UpdateWorldTemplateResponse
|
|
1283
1290
|
|
|
1291
|
+
UploadConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
|
1292
|
+
UploadConfiguration.add_member(:path, Shapes::ShapeRef.new(shape: Path, required: true, location_name: "path"))
|
|
1293
|
+
UploadConfiguration.add_member(:upload_behavior, Shapes::ShapeRef.new(shape: UploadBehavior, required: true, location_name: "uploadBehavior"))
|
|
1294
|
+
UploadConfiguration.struct_class = Types::UploadConfiguration
|
|
1295
|
+
|
|
1296
|
+
UploadConfigurations.member = Shapes::ShapeRef.new(shape: UploadConfiguration)
|
|
1297
|
+
|
|
1284
1298
|
VPCConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: Subnets, required: true, location_name: "subnets"))
|
|
1285
1299
|
VPCConfig.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, location_name: "securityGroups"))
|
|
1286
1300
|
VPCConfig.add_member(:assign_public_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "assignPublicIp"))
|
|
@@ -1025,6 +1025,14 @@ module Aws::RoboMaker
|
|
|
1025
1025
|
# },
|
|
1026
1026
|
# stream_ui: false,
|
|
1027
1027
|
# },
|
|
1028
|
+
# upload_configurations: [
|
|
1029
|
+
# {
|
|
1030
|
+
# name: "Name", # required
|
|
1031
|
+
# path: "Path", # required
|
|
1032
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
1033
|
+
# },
|
|
1034
|
+
# ],
|
|
1035
|
+
# use_default_upload_configurations: false,
|
|
1028
1036
|
# },
|
|
1029
1037
|
# ],
|
|
1030
1038
|
# simulation_applications: [
|
|
@@ -1048,11 +1056,19 @@ module Aws::RoboMaker
|
|
|
1048
1056
|
# },
|
|
1049
1057
|
# stream_ui: false,
|
|
1050
1058
|
# },
|
|
1059
|
+
# upload_configurations: [
|
|
1060
|
+
# {
|
|
1061
|
+
# name: "Name", # required
|
|
1062
|
+
# path: "Path", # required
|
|
1063
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
1064
|
+
# },
|
|
1065
|
+
# ],
|
|
1051
1066
|
# world_configs: [
|
|
1052
1067
|
# {
|
|
1053
1068
|
# world: "Arn",
|
|
1054
1069
|
# },
|
|
1055
1070
|
# ],
|
|
1071
|
+
# use_default_upload_configurations: false,
|
|
1056
1072
|
# },
|
|
1057
1073
|
# ],
|
|
1058
1074
|
# data_sources: [
|
|
@@ -3527,7 +3543,7 @@ module Aws::RoboMaker
|
|
|
3527
3543
|
# Boolean indicating whether a streaming session will be configured
|
|
3528
3544
|
# for the application. If `True`, AWS RoboMaker will configure a
|
|
3529
3545
|
# connection so you can interact with your application as it is
|
|
3530
|
-
# running in the simulation. You must configure and
|
|
3546
|
+
# running in the simulation. You must configure and launch the
|
|
3531
3547
|
# component. It must have a graphical user interface.
|
|
3532
3548
|
# @return [Boolean]
|
|
3533
3549
|
#
|
|
@@ -4787,6 +4803,14 @@ module Aws::RoboMaker
|
|
|
4787
4803
|
# },
|
|
4788
4804
|
# stream_ui: false,
|
|
4789
4805
|
# },
|
|
4806
|
+
# upload_configurations: [
|
|
4807
|
+
# {
|
|
4808
|
+
# name: "Name", # required
|
|
4809
|
+
# path: "Path", # required
|
|
4810
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
4811
|
+
# },
|
|
4812
|
+
# ],
|
|
4813
|
+
# use_default_upload_configurations: false,
|
|
4790
4814
|
# }
|
|
4791
4815
|
#
|
|
4792
4816
|
# @!attribute [rw] application
|
|
@@ -4801,12 +4825,26 @@ module Aws::RoboMaker
|
|
|
4801
4825
|
# The launch configuration for the robot application.
|
|
4802
4826
|
# @return [Types::LaunchConfig]
|
|
4803
4827
|
#
|
|
4828
|
+
# @!attribute [rw] upload_configurations
|
|
4829
|
+
# The upload configurations for the robot application.
|
|
4830
|
+
# @return [Array<Types::UploadConfiguration>]
|
|
4831
|
+
#
|
|
4832
|
+
# @!attribute [rw] use_default_upload_configurations
|
|
4833
|
+
# A Boolean indicating whether to use default upload configurations.
|
|
4834
|
+
# By default, `.ros` and `.gazebo` files are uploaded when the
|
|
4835
|
+
# application terminates and all ROS topics will be recorded.
|
|
4836
|
+
#
|
|
4837
|
+
# If you set this value, you must specify an `outputLocation`.
|
|
4838
|
+
# @return [Boolean]
|
|
4839
|
+
#
|
|
4804
4840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/RobotApplicationConfig AWS API Documentation
|
|
4805
4841
|
#
|
|
4806
4842
|
class RobotApplicationConfig < Struct.new(
|
|
4807
4843
|
:application,
|
|
4808
4844
|
:application_version,
|
|
4809
|
-
:launch_config
|
|
4845
|
+
:launch_config,
|
|
4846
|
+
:upload_configurations,
|
|
4847
|
+
:use_default_upload_configurations)
|
|
4810
4848
|
SENSITIVE = []
|
|
4811
4849
|
include Aws::Structure
|
|
4812
4850
|
end
|
|
@@ -5009,11 +5047,19 @@ module Aws::RoboMaker
|
|
|
5009
5047
|
# },
|
|
5010
5048
|
# stream_ui: false,
|
|
5011
5049
|
# },
|
|
5050
|
+
# upload_configurations: [
|
|
5051
|
+
# {
|
|
5052
|
+
# name: "Name", # required
|
|
5053
|
+
# path: "Path", # required
|
|
5054
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
5055
|
+
# },
|
|
5056
|
+
# ],
|
|
5012
5057
|
# world_configs: [
|
|
5013
5058
|
# {
|
|
5014
5059
|
# world: "Arn",
|
|
5015
5060
|
# },
|
|
5016
5061
|
# ],
|
|
5062
|
+
# use_default_upload_configurations: false,
|
|
5017
5063
|
# }
|
|
5018
5064
|
#
|
|
5019
5065
|
# @!attribute [rw] application
|
|
@@ -5028,17 +5074,32 @@ module Aws::RoboMaker
|
|
|
5028
5074
|
# The launch configuration for the simulation application.
|
|
5029
5075
|
# @return [Types::LaunchConfig]
|
|
5030
5076
|
#
|
|
5077
|
+
# @!attribute [rw] upload_configurations
|
|
5078
|
+
# Information about upload configurations for the simulation
|
|
5079
|
+
# application.
|
|
5080
|
+
# @return [Array<Types::UploadConfiguration>]
|
|
5081
|
+
#
|
|
5031
5082
|
# @!attribute [rw] world_configs
|
|
5032
5083
|
# A list of world configurations.
|
|
5033
5084
|
# @return [Array<Types::WorldConfig>]
|
|
5034
5085
|
#
|
|
5086
|
+
# @!attribute [rw] use_default_upload_configurations
|
|
5087
|
+
# A Boolean indicating whether to use default upload configurations.
|
|
5088
|
+
# By default, `.ros` and `.gazebo` files are uploaded when the
|
|
5089
|
+
# application terminates and all ROS topics will be recorded.
|
|
5090
|
+
#
|
|
5091
|
+
# If you set this value, you must specify an `outputLocation`.
|
|
5092
|
+
# @return [Boolean]
|
|
5093
|
+
#
|
|
5035
5094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationApplicationConfig AWS API Documentation
|
|
5036
5095
|
#
|
|
5037
5096
|
class SimulationApplicationConfig < Struct.new(
|
|
5038
5097
|
:application,
|
|
5039
5098
|
:application_version,
|
|
5040
5099
|
:launch_config,
|
|
5041
|
-
:
|
|
5100
|
+
:upload_configurations,
|
|
5101
|
+
:world_configs,
|
|
5102
|
+
:use_default_upload_configurations)
|
|
5042
5103
|
SENSITIVE = []
|
|
5043
5104
|
include Aws::Structure
|
|
5044
5105
|
end
|
|
@@ -5344,6 +5405,14 @@ module Aws::RoboMaker
|
|
|
5344
5405
|
# },
|
|
5345
5406
|
# stream_ui: false,
|
|
5346
5407
|
# },
|
|
5408
|
+
# upload_configurations: [
|
|
5409
|
+
# {
|
|
5410
|
+
# name: "Name", # required
|
|
5411
|
+
# path: "Path", # required
|
|
5412
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
5413
|
+
# },
|
|
5414
|
+
# ],
|
|
5415
|
+
# use_default_upload_configurations: false,
|
|
5347
5416
|
# },
|
|
5348
5417
|
# ],
|
|
5349
5418
|
# simulation_applications: [
|
|
@@ -5367,11 +5436,19 @@ module Aws::RoboMaker
|
|
|
5367
5436
|
# },
|
|
5368
5437
|
# stream_ui: false,
|
|
5369
5438
|
# },
|
|
5439
|
+
# upload_configurations: [
|
|
5440
|
+
# {
|
|
5441
|
+
# name: "Name", # required
|
|
5442
|
+
# path: "Path", # required
|
|
5443
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
5444
|
+
# },
|
|
5445
|
+
# ],
|
|
5370
5446
|
# world_configs: [
|
|
5371
5447
|
# {
|
|
5372
5448
|
# world: "Arn",
|
|
5373
5449
|
# },
|
|
5374
5450
|
# ],
|
|
5451
|
+
# use_default_upload_configurations: false,
|
|
5375
5452
|
# },
|
|
5376
5453
|
# ],
|
|
5377
5454
|
# data_sources: [
|
|
@@ -5427,8 +5504,9 @@ module Aws::RoboMaker
|
|
|
5427
5504
|
# @return [String]
|
|
5428
5505
|
#
|
|
5429
5506
|
# @!attribute [rw] use_default_applications
|
|
5430
|
-
# Boolean indicating whether to use default
|
|
5431
|
-
# applications
|
|
5507
|
+
# A Boolean indicating whether to use default applications in the
|
|
5508
|
+
# simulation job. Default applications include Gazebo, rqt, rviz and
|
|
5509
|
+
# terminal access.
|
|
5432
5510
|
# @return [Boolean]
|
|
5433
5511
|
#
|
|
5434
5512
|
# @!attribute [rw] robot_applications
|
|
@@ -5662,6 +5740,14 @@ module Aws::RoboMaker
|
|
|
5662
5740
|
# },
|
|
5663
5741
|
# stream_ui: false,
|
|
5664
5742
|
# },
|
|
5743
|
+
# upload_configurations: [
|
|
5744
|
+
# {
|
|
5745
|
+
# name: "Name", # required
|
|
5746
|
+
# path: "Path", # required
|
|
5747
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
5748
|
+
# },
|
|
5749
|
+
# ],
|
|
5750
|
+
# use_default_upload_configurations: false,
|
|
5665
5751
|
# },
|
|
5666
5752
|
# ],
|
|
5667
5753
|
# simulation_applications: [
|
|
@@ -5685,11 +5771,19 @@ module Aws::RoboMaker
|
|
|
5685
5771
|
# },
|
|
5686
5772
|
# stream_ui: false,
|
|
5687
5773
|
# },
|
|
5774
|
+
# upload_configurations: [
|
|
5775
|
+
# {
|
|
5776
|
+
# name: "Name", # required
|
|
5777
|
+
# path: "Path", # required
|
|
5778
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
5779
|
+
# },
|
|
5780
|
+
# ],
|
|
5688
5781
|
# world_configs: [
|
|
5689
5782
|
# {
|
|
5690
5783
|
# world: "Arn",
|
|
5691
5784
|
# },
|
|
5692
5785
|
# ],
|
|
5786
|
+
# use_default_upload_configurations: false,
|
|
5693
5787
|
# },
|
|
5694
5788
|
# ],
|
|
5695
5789
|
# data_sources: [
|
|
@@ -6418,6 +6512,70 @@ module Aws::RoboMaker
|
|
|
6418
6512
|
include Aws::Structure
|
|
6419
6513
|
end
|
|
6420
6514
|
|
|
6515
|
+
# Provides upload configuration information. Files are uploaded from the
|
|
6516
|
+
# simulation job to a location you specify.
|
|
6517
|
+
#
|
|
6518
|
+
# @note When making an API call, you may pass UploadConfiguration
|
|
6519
|
+
# data as a hash:
|
|
6520
|
+
#
|
|
6521
|
+
# {
|
|
6522
|
+
# name: "Name", # required
|
|
6523
|
+
# path: "Path", # required
|
|
6524
|
+
# upload_behavior: "UPLOAD_ON_TERMINATE", # required, accepts UPLOAD_ON_TERMINATE, UPLOAD_ROLLING_AUTO_REMOVE
|
|
6525
|
+
# }
|
|
6526
|
+
#
|
|
6527
|
+
# @!attribute [rw] name
|
|
6528
|
+
# A prefix that specifies where files will be uploaded in Amazon S3.
|
|
6529
|
+
# It is appended to the simulation output location to determine the
|
|
6530
|
+
# final path.
|
|
6531
|
+
#
|
|
6532
|
+
# For example, if your simulation output location is `s3://my-bucket`
|
|
6533
|
+
# and your upload configuration name is `robot-test`, your files will
|
|
6534
|
+
# be uploaded to `s3://my-bucket/<simid>/<runid>/robot-test`.
|
|
6535
|
+
# @return [String]
|
|
6536
|
+
#
|
|
6537
|
+
# @!attribute [rw] path
|
|
6538
|
+
# Specifies the path of the file(s) to upload. Standard Unix glob
|
|
6539
|
+
# matching rules are accepted, with the addition of `**` as a *super
|
|
6540
|
+
# asterisk*. For example, specifying `/var/log/**.log` causes all .log
|
|
6541
|
+
# files in the `/var/log` directory tree to be collected. For more
|
|
6542
|
+
# examples, see [Glob Library][1].
|
|
6543
|
+
#
|
|
6544
|
+
#
|
|
6545
|
+
#
|
|
6546
|
+
# [1]: https://github.com/gobwas/glob
|
|
6547
|
+
# @return [String]
|
|
6548
|
+
#
|
|
6549
|
+
# @!attribute [rw] upload_behavior
|
|
6550
|
+
# Specifies how to upload the files:
|
|
6551
|
+
#
|
|
6552
|
+
# UPLOAD\_ON\_TERMINATE
|
|
6553
|
+
#
|
|
6554
|
+
# : Matching files are uploaded once the simulation enters the
|
|
6555
|
+
# `TERMINATING` state. Matching files are not uploaded until all of
|
|
6556
|
+
# your code (including tools) have stopped.
|
|
6557
|
+
#
|
|
6558
|
+
# If there is a problem uploading a file, the upload is retried. If
|
|
6559
|
+
# problems persist, no further upload attempts will be made.
|
|
6560
|
+
#
|
|
6561
|
+
# UPLOAD\_ROLLING\_AUTO\_REMOVE
|
|
6562
|
+
#
|
|
6563
|
+
# : Matching files are uploaded as they are created. They are deleted
|
|
6564
|
+
# after they are uploaded. The specified path is checked every 5
|
|
6565
|
+
# seconds. A final check is made when all of your code (including
|
|
6566
|
+
# tools) have stopped.
|
|
6567
|
+
# @return [String]
|
|
6568
|
+
#
|
|
6569
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UploadConfiguration AWS API Documentation
|
|
6570
|
+
#
|
|
6571
|
+
class UploadConfiguration < Struct.new(
|
|
6572
|
+
:name,
|
|
6573
|
+
:path,
|
|
6574
|
+
:upload_behavior)
|
|
6575
|
+
SENSITIVE = []
|
|
6576
|
+
include Aws::Structure
|
|
6577
|
+
end
|
|
6578
|
+
|
|
6421
6579
|
# If your simulation job accesses resources in a VPC, you provide this
|
|
6422
6580
|
# parameter identifying the list of security group IDs and subnet IDs.
|
|
6423
6581
|
# These must belong to the same VPC. You must provide at least one
|
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.32.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:
|
|
11
|
+
date: 2021-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|