aws-sdk-robomaker 1.33.0 → 1.37.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/CHANGELOG.md +198 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-robomaker.rb +2 -2
- data/lib/aws-sdk-robomaker/client.rb +169 -26
- data/lib/aws-sdk-robomaker/client_api.rb +21 -1
- data/lib/aws-sdk-robomaker/errors.rb +1 -1
- data/lib/aws-sdk-robomaker/resource.rb +1 -1
- data/lib/aws-sdk-robomaker/types.rb +185 -12
- metadata +9 -7
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -115,6 +115,7 @@ module Aws::RoboMaker
|
|
|
115
115
|
EnvironmentVariableKey = Shapes::StringShape.new(name: 'EnvironmentVariableKey')
|
|
116
116
|
EnvironmentVariableMap = Shapes::MapShape.new(name: 'EnvironmentVariableMap')
|
|
117
117
|
EnvironmentVariableValue = Shapes::StringShape.new(name: 'EnvironmentVariableValue')
|
|
118
|
+
ExitBehavior = Shapes::StringShape.new(name: 'ExitBehavior')
|
|
118
119
|
FailedAt = Shapes::TimestampShape.new(name: 'FailedAt')
|
|
119
120
|
FailedCreateSimulationJobRequest = Shapes::StructureShape.new(name: 'FailedCreateSimulationJobRequest')
|
|
120
121
|
FailedCreateSimulationJobRequests = Shapes::ListShape.new(name: 'FailedCreateSimulationJobRequests')
|
|
@@ -259,6 +260,9 @@ module Aws::RoboMaker
|
|
|
259
260
|
TemplateSummaries = Shapes::ListShape.new(name: 'TemplateSummaries')
|
|
260
261
|
TemplateSummary = Shapes::StructureShape.new(name: 'TemplateSummary')
|
|
261
262
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
263
|
+
Tool = Shapes::StructureShape.new(name: 'Tool')
|
|
264
|
+
Tools = Shapes::ListShape.new(name: 'Tools')
|
|
265
|
+
UnrestrictedCommand = Shapes::StringShape.new(name: 'UnrestrictedCommand')
|
|
262
266
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
263
267
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
|
264
268
|
UpdateRobotApplicationRequest = Shapes::StructureShape.new(name: 'UpdateRobotApplicationRequest')
|
|
@@ -773,6 +777,7 @@ module Aws::RoboMaker
|
|
|
773
777
|
DescribeWorldResponse.add_member(:template, Shapes::ShapeRef.new(shape: Arn, location_name: "template"))
|
|
774
778
|
DescribeWorldResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
775
779
|
DescribeWorldResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
780
|
+
DescribeWorldResponse.add_member(:world_description_body, Shapes::ShapeRef.new(shape: Json, location_name: "worldDescriptionBody"))
|
|
776
781
|
DescribeWorldResponse.struct_class = Types::DescribeWorldResponse
|
|
777
782
|
|
|
778
783
|
DescribeWorldTemplateRequest.add_member(:template, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "template"))
|
|
@@ -784,6 +789,7 @@ module Aws::RoboMaker
|
|
|
784
789
|
DescribeWorldTemplateResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
785
790
|
DescribeWorldTemplateResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
|
786
791
|
DescribeWorldTemplateResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
792
|
+
DescribeWorldTemplateResponse.add_member(:version, Shapes::ShapeRef.new(shape: GenericString, location_name: "version"))
|
|
787
793
|
DescribeWorldTemplateResponse.struct_class = Types::DescribeWorldTemplateResponse
|
|
788
794
|
|
|
789
795
|
EnvironmentVariableMap.key = Shapes::ShapeRef.new(shape: EnvironmentVariableKey)
|
|
@@ -1023,6 +1029,8 @@ module Aws::RoboMaker
|
|
|
1023
1029
|
RobotApplicationConfig.add_member(:launch_config, Shapes::ShapeRef.new(shape: LaunchConfig, required: true, location_name: "launchConfig"))
|
|
1024
1030
|
RobotApplicationConfig.add_member(:upload_configurations, Shapes::ShapeRef.new(shape: UploadConfigurations, location_name: "uploadConfigurations"))
|
|
1025
1031
|
RobotApplicationConfig.add_member(:use_default_upload_configurations, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultUploadConfigurations"))
|
|
1032
|
+
RobotApplicationConfig.add_member(:tools, Shapes::ShapeRef.new(shape: Tools, location_name: "tools"))
|
|
1033
|
+
RobotApplicationConfig.add_member(:use_default_tools, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultTools"))
|
|
1026
1034
|
RobotApplicationConfig.struct_class = Types::RobotApplicationConfig
|
|
1027
1035
|
|
|
1028
1036
|
RobotApplicationConfigs.member = Shapes::ShapeRef.new(shape: RobotApplicationConfig)
|
|
@@ -1079,6 +1087,8 @@ module Aws::RoboMaker
|
|
|
1079
1087
|
SimulationApplicationConfig.add_member(:upload_configurations, Shapes::ShapeRef.new(shape: UploadConfigurations, location_name: "uploadConfigurations"))
|
|
1080
1088
|
SimulationApplicationConfig.add_member(:world_configs, Shapes::ShapeRef.new(shape: WorldConfigs, location_name: "worldConfigs"))
|
|
1081
1089
|
SimulationApplicationConfig.add_member(:use_default_upload_configurations, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultUploadConfigurations"))
|
|
1090
|
+
SimulationApplicationConfig.add_member(:tools, Shapes::ShapeRef.new(shape: Tools, location_name: "tools"))
|
|
1091
|
+
SimulationApplicationConfig.add_member(:use_default_tools, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultTools"))
|
|
1082
1092
|
SimulationApplicationConfig.struct_class = Types::SimulationApplicationConfig
|
|
1083
1093
|
|
|
1084
1094
|
SimulationApplicationConfigs.member = Shapes::ShapeRef.new(shape: SimulationApplicationConfig)
|
|
@@ -1231,11 +1241,21 @@ module Aws::RoboMaker
|
|
|
1231
1241
|
TemplateSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
1232
1242
|
TemplateSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
|
1233
1243
|
TemplateSummary.add_member(:name, Shapes::ShapeRef.new(shape: TemplateName, location_name: "name"))
|
|
1244
|
+
TemplateSummary.add_member(:version, Shapes::ShapeRef.new(shape: GenericString, location_name: "version"))
|
|
1234
1245
|
TemplateSummary.struct_class = Types::TemplateSummary
|
|
1235
1246
|
|
|
1236
1247
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
|
1237
1248
|
ThrottlingException.struct_class = Types::ThrottlingException
|
|
1238
1249
|
|
|
1250
|
+
Tool.add_member(:stream_ui, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "streamUI"))
|
|
1251
|
+
Tool.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
|
1252
|
+
Tool.add_member(:command, Shapes::ShapeRef.new(shape: UnrestrictedCommand, required: true, location_name: "command"))
|
|
1253
|
+
Tool.add_member(:stream_output_to_cloud_watch, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "streamOutputToCloudWatch"))
|
|
1254
|
+
Tool.add_member(:exit_behavior, Shapes::ShapeRef.new(shape: ExitBehavior, location_name: "exitBehavior"))
|
|
1255
|
+
Tool.struct_class = Types::Tool
|
|
1256
|
+
|
|
1257
|
+
Tools.member = Shapes::ShapeRef.new(shape: Tool)
|
|
1258
|
+
|
|
1239
1259
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "resourceArn"))
|
|
1240
1260
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
|
1241
1261
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
|
4
4
|
#
|
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
@@ -548,7 +548,7 @@ module Aws::RoboMaker
|
|
|
548
548
|
# ],
|
|
549
549
|
# robot_software_suite: { # required
|
|
550
550
|
# name: "ROS", # accepts ROS, ROS2
|
|
551
|
-
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing
|
|
551
|
+
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
|
552
552
|
# },
|
|
553
553
|
# tags: {
|
|
554
554
|
# "TagKey" => "TagValue",
|
|
@@ -801,7 +801,7 @@ module Aws::RoboMaker
|
|
|
801
801
|
# },
|
|
802
802
|
# robot_software_suite: { # required
|
|
803
803
|
# name: "ROS", # accepts ROS, ROS2
|
|
804
|
-
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing
|
|
804
|
+
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
|
805
805
|
# },
|
|
806
806
|
# rendering_engine: {
|
|
807
807
|
# name: "OGRE", # accepts OGRE
|
|
@@ -1033,6 +1033,16 @@ module Aws::RoboMaker
|
|
|
1033
1033
|
# },
|
|
1034
1034
|
# ],
|
|
1035
1035
|
# use_default_upload_configurations: false,
|
|
1036
|
+
# tools: [
|
|
1037
|
+
# {
|
|
1038
|
+
# stream_ui: false,
|
|
1039
|
+
# name: "Name", # required
|
|
1040
|
+
# command: "UnrestrictedCommand", # required
|
|
1041
|
+
# stream_output_to_cloud_watch: false,
|
|
1042
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
1043
|
+
# },
|
|
1044
|
+
# ],
|
|
1045
|
+
# use_default_tools: false,
|
|
1036
1046
|
# },
|
|
1037
1047
|
# ],
|
|
1038
1048
|
# simulation_applications: [
|
|
@@ -1069,6 +1079,16 @@ module Aws::RoboMaker
|
|
|
1069
1079
|
# },
|
|
1070
1080
|
# ],
|
|
1071
1081
|
# use_default_upload_configurations: false,
|
|
1082
|
+
# tools: [
|
|
1083
|
+
# {
|
|
1084
|
+
# stream_ui: false,
|
|
1085
|
+
# name: "Name", # required
|
|
1086
|
+
# command: "UnrestrictedCommand", # required
|
|
1087
|
+
# stream_output_to_cloud_watch: false,
|
|
1088
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
1089
|
+
# },
|
|
1090
|
+
# ],
|
|
1091
|
+
# use_default_tools: false,
|
|
1072
1092
|
# },
|
|
1073
1093
|
# ],
|
|
1074
1094
|
# data_sources: [
|
|
@@ -3207,6 +3227,11 @@ module Aws::RoboMaker
|
|
|
3207
3227
|
# world.
|
|
3208
3228
|
# @return [Hash<String,String>]
|
|
3209
3229
|
#
|
|
3230
|
+
# @!attribute [rw] world_description_body
|
|
3231
|
+
# Returns the JSON formatted string that describes the contents of
|
|
3232
|
+
# your world.
|
|
3233
|
+
# @return [String]
|
|
3234
|
+
#
|
|
3210
3235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldResponse AWS API Documentation
|
|
3211
3236
|
#
|
|
3212
3237
|
class DescribeWorldResponse < Struct.new(
|
|
@@ -3214,7 +3239,8 @@ module Aws::RoboMaker
|
|
|
3214
3239
|
:generation_job,
|
|
3215
3240
|
:template,
|
|
3216
3241
|
:created_at,
|
|
3217
|
-
:tags
|
|
3242
|
+
:tags,
|
|
3243
|
+
:world_description_body)
|
|
3218
3244
|
SENSITIVE = []
|
|
3219
3245
|
include Aws::Structure
|
|
3220
3246
|
end
|
|
@@ -3267,6 +3293,10 @@ module Aws::RoboMaker
|
|
|
3267
3293
|
# world template.
|
|
3268
3294
|
# @return [Hash<String,String>]
|
|
3269
3295
|
#
|
|
3296
|
+
# @!attribute [rw] version
|
|
3297
|
+
# The version of the world template that you're using.
|
|
3298
|
+
# @return [String]
|
|
3299
|
+
#
|
|
3270
3300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldTemplateResponse AWS API Documentation
|
|
3271
3301
|
#
|
|
3272
3302
|
class DescribeWorldTemplateResponse < Struct.new(
|
|
@@ -3275,7 +3305,8 @@ module Aws::RoboMaker
|
|
|
3275
3305
|
:name,
|
|
3276
3306
|
:created_at,
|
|
3277
3307
|
:last_updated_at,
|
|
3278
|
-
:tags
|
|
3308
|
+
:tags,
|
|
3309
|
+
:version)
|
|
3279
3310
|
SENSITIVE = []
|
|
3280
3311
|
include Aws::Structure
|
|
3281
3312
|
end
|
|
@@ -4811,6 +4842,16 @@ module Aws::RoboMaker
|
|
|
4811
4842
|
# },
|
|
4812
4843
|
# ],
|
|
4813
4844
|
# use_default_upload_configurations: false,
|
|
4845
|
+
# tools: [
|
|
4846
|
+
# {
|
|
4847
|
+
# stream_ui: false,
|
|
4848
|
+
# name: "Name", # required
|
|
4849
|
+
# command: "UnrestrictedCommand", # required
|
|
4850
|
+
# stream_output_to_cloud_watch: false,
|
|
4851
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
4852
|
+
# },
|
|
4853
|
+
# ],
|
|
4854
|
+
# use_default_tools: false,
|
|
4814
4855
|
# }
|
|
4815
4856
|
#
|
|
4816
4857
|
# @!attribute [rw] application
|
|
@@ -4837,6 +4878,16 @@ module Aws::RoboMaker
|
|
|
4837
4878
|
# If you set this value, you must specify an `outputLocation`.
|
|
4838
4879
|
# @return [Boolean]
|
|
4839
4880
|
#
|
|
4881
|
+
# @!attribute [rw] tools
|
|
4882
|
+
# Information about tools configured for the robot application.
|
|
4883
|
+
# @return [Array<Types::Tool>]
|
|
4884
|
+
#
|
|
4885
|
+
# @!attribute [rw] use_default_tools
|
|
4886
|
+
# A Boolean indicating whether to use default robot application tools.
|
|
4887
|
+
# The default tools are rviz, rqt, terminal and rosbag record. The
|
|
4888
|
+
# default is `False`.
|
|
4889
|
+
# @return [Boolean]
|
|
4890
|
+
#
|
|
4840
4891
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/RobotApplicationConfig AWS API Documentation
|
|
4841
4892
|
#
|
|
4842
4893
|
class RobotApplicationConfig < Struct.new(
|
|
@@ -4844,7 +4895,9 @@ module Aws::RoboMaker
|
|
|
4844
4895
|
:application_version,
|
|
4845
4896
|
:launch_config,
|
|
4846
4897
|
:upload_configurations,
|
|
4847
|
-
:use_default_upload_configurations
|
|
4898
|
+
:use_default_upload_configurations,
|
|
4899
|
+
:tools,
|
|
4900
|
+
:use_default_tools)
|
|
4848
4901
|
SENSITIVE = []
|
|
4849
4902
|
include Aws::Structure
|
|
4850
4903
|
end
|
|
@@ -4937,7 +4990,7 @@ module Aws::RoboMaker
|
|
|
4937
4990
|
#
|
|
4938
4991
|
# {
|
|
4939
4992
|
# name: "ROS", # accepts ROS, ROS2
|
|
4940
|
-
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing
|
|
4993
|
+
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
|
4941
4994
|
# }
|
|
4942
4995
|
#
|
|
4943
4996
|
# @!attribute [rw] name
|
|
@@ -5060,6 +5113,16 @@ module Aws::RoboMaker
|
|
|
5060
5113
|
# },
|
|
5061
5114
|
# ],
|
|
5062
5115
|
# use_default_upload_configurations: false,
|
|
5116
|
+
# tools: [
|
|
5117
|
+
# {
|
|
5118
|
+
# stream_ui: false,
|
|
5119
|
+
# name: "Name", # required
|
|
5120
|
+
# command: "UnrestrictedCommand", # required
|
|
5121
|
+
# stream_output_to_cloud_watch: false,
|
|
5122
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
5123
|
+
# },
|
|
5124
|
+
# ],
|
|
5125
|
+
# use_default_tools: false,
|
|
5063
5126
|
# }
|
|
5064
5127
|
#
|
|
5065
5128
|
# @!attribute [rw] application
|
|
@@ -5091,6 +5154,16 @@ module Aws::RoboMaker
|
|
|
5091
5154
|
# If you set this value, you must specify an `outputLocation`.
|
|
5092
5155
|
# @return [Boolean]
|
|
5093
5156
|
#
|
|
5157
|
+
# @!attribute [rw] tools
|
|
5158
|
+
# Information about tools configured for the simulation application.
|
|
5159
|
+
# @return [Array<Types::Tool>]
|
|
5160
|
+
#
|
|
5161
|
+
# @!attribute [rw] use_default_tools
|
|
5162
|
+
# A Boolean indicating whether to use default simulation application
|
|
5163
|
+
# tools. The default tools are rviz, rqt, terminal and rosbag record.
|
|
5164
|
+
# The default is `False`.
|
|
5165
|
+
# @return [Boolean]
|
|
5166
|
+
#
|
|
5094
5167
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationApplicationConfig AWS API Documentation
|
|
5095
5168
|
#
|
|
5096
5169
|
class SimulationApplicationConfig < Struct.new(
|
|
@@ -5099,7 +5172,9 @@ module Aws::RoboMaker
|
|
|
5099
5172
|
:launch_config,
|
|
5100
5173
|
:upload_configurations,
|
|
5101
5174
|
:world_configs,
|
|
5102
|
-
:use_default_upload_configurations
|
|
5175
|
+
:use_default_upload_configurations,
|
|
5176
|
+
:tools,
|
|
5177
|
+
:use_default_tools)
|
|
5103
5178
|
SENSITIVE = []
|
|
5104
5179
|
include Aws::Structure
|
|
5105
5180
|
end
|
|
@@ -5413,6 +5488,16 @@ module Aws::RoboMaker
|
|
|
5413
5488
|
# },
|
|
5414
5489
|
# ],
|
|
5415
5490
|
# use_default_upload_configurations: false,
|
|
5491
|
+
# tools: [
|
|
5492
|
+
# {
|
|
5493
|
+
# stream_ui: false,
|
|
5494
|
+
# name: "Name", # required
|
|
5495
|
+
# command: "UnrestrictedCommand", # required
|
|
5496
|
+
# stream_output_to_cloud_watch: false,
|
|
5497
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
5498
|
+
# },
|
|
5499
|
+
# ],
|
|
5500
|
+
# use_default_tools: false,
|
|
5416
5501
|
# },
|
|
5417
5502
|
# ],
|
|
5418
5503
|
# simulation_applications: [
|
|
@@ -5449,6 +5534,16 @@ module Aws::RoboMaker
|
|
|
5449
5534
|
# },
|
|
5450
5535
|
# ],
|
|
5451
5536
|
# use_default_upload_configurations: false,
|
|
5537
|
+
# tools: [
|
|
5538
|
+
# {
|
|
5539
|
+
# stream_ui: false,
|
|
5540
|
+
# name: "Name", # required
|
|
5541
|
+
# command: "UnrestrictedCommand", # required
|
|
5542
|
+
# stream_output_to_cloud_watch: false,
|
|
5543
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
5544
|
+
# },
|
|
5545
|
+
# ],
|
|
5546
|
+
# use_default_tools: false,
|
|
5452
5547
|
# },
|
|
5453
5548
|
# ],
|
|
5454
5549
|
# data_sources: [
|
|
@@ -5748,6 +5843,16 @@ module Aws::RoboMaker
|
|
|
5748
5843
|
# },
|
|
5749
5844
|
# ],
|
|
5750
5845
|
# use_default_upload_configurations: false,
|
|
5846
|
+
# tools: [
|
|
5847
|
+
# {
|
|
5848
|
+
# stream_ui: false,
|
|
5849
|
+
# name: "Name", # required
|
|
5850
|
+
# command: "UnrestrictedCommand", # required
|
|
5851
|
+
# stream_output_to_cloud_watch: false,
|
|
5852
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
5853
|
+
# },
|
|
5854
|
+
# ],
|
|
5855
|
+
# use_default_tools: false,
|
|
5751
5856
|
# },
|
|
5752
5857
|
# ],
|
|
5753
5858
|
# simulation_applications: [
|
|
@@ -5784,6 +5889,16 @@ module Aws::RoboMaker
|
|
|
5784
5889
|
# },
|
|
5785
5890
|
# ],
|
|
5786
5891
|
# use_default_upload_configurations: false,
|
|
5892
|
+
# tools: [
|
|
5893
|
+
# {
|
|
5894
|
+
# stream_ui: false,
|
|
5895
|
+
# name: "Name", # required
|
|
5896
|
+
# command: "UnrestrictedCommand", # required
|
|
5897
|
+
# stream_output_to_cloud_watch: false,
|
|
5898
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
5899
|
+
# },
|
|
5900
|
+
# ],
|
|
5901
|
+
# use_default_tools: false,
|
|
5787
5902
|
# },
|
|
5788
5903
|
# ],
|
|
5789
5904
|
# data_sources: [
|
|
@@ -6178,13 +6293,18 @@ module Aws::RoboMaker
|
|
|
6178
6293
|
# The name of the template.
|
|
6179
6294
|
# @return [String]
|
|
6180
6295
|
#
|
|
6296
|
+
# @!attribute [rw] version
|
|
6297
|
+
# The version of the template that you're using.
|
|
6298
|
+
# @return [String]
|
|
6299
|
+
#
|
|
6181
6300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/TemplateSummary AWS API Documentation
|
|
6182
6301
|
#
|
|
6183
6302
|
class TemplateSummary < Struct.new(
|
|
6184
6303
|
:arn,
|
|
6185
6304
|
:created_at,
|
|
6186
6305
|
:last_updated_at,
|
|
6187
|
-
:name
|
|
6306
|
+
:name,
|
|
6307
|
+
:version)
|
|
6188
6308
|
SENSITIVE = []
|
|
6189
6309
|
include Aws::Structure
|
|
6190
6310
|
end
|
|
@@ -6203,6 +6323,59 @@ module Aws::RoboMaker
|
|
|
6203
6323
|
include Aws::Structure
|
|
6204
6324
|
end
|
|
6205
6325
|
|
|
6326
|
+
# Information about a tool. Tools are used in a simulation job.
|
|
6327
|
+
#
|
|
6328
|
+
# @note When making an API call, you may pass Tool
|
|
6329
|
+
# data as a hash:
|
|
6330
|
+
#
|
|
6331
|
+
# {
|
|
6332
|
+
# stream_ui: false,
|
|
6333
|
+
# name: "Name", # required
|
|
6334
|
+
# command: "UnrestrictedCommand", # required
|
|
6335
|
+
# stream_output_to_cloud_watch: false,
|
|
6336
|
+
# exit_behavior: "FAIL", # accepts FAIL, RESTART
|
|
6337
|
+
# }
|
|
6338
|
+
#
|
|
6339
|
+
# @!attribute [rw] stream_ui
|
|
6340
|
+
# Boolean indicating whether a streaming session will be configured
|
|
6341
|
+
# for the tool. If `True`, AWS RoboMaker will configure a connection
|
|
6342
|
+
# so you can interact with the tool as it is running in the
|
|
6343
|
+
# simulation. It must have a graphical user interface. The default is
|
|
6344
|
+
# `False`.
|
|
6345
|
+
# @return [Boolean]
|
|
6346
|
+
#
|
|
6347
|
+
# @!attribute [rw] name
|
|
6348
|
+
# The name of the tool.
|
|
6349
|
+
# @return [String]
|
|
6350
|
+
#
|
|
6351
|
+
# @!attribute [rw] command
|
|
6352
|
+
# Command-line arguments for the tool. It must include the tool
|
|
6353
|
+
# executable name.
|
|
6354
|
+
# @return [String]
|
|
6355
|
+
#
|
|
6356
|
+
# @!attribute [rw] stream_output_to_cloud_watch
|
|
6357
|
+
# Boolean indicating whether logs will be recorded in CloudWatch for
|
|
6358
|
+
# the tool. The default is `False`.
|
|
6359
|
+
# @return [Boolean]
|
|
6360
|
+
#
|
|
6361
|
+
# @!attribute [rw] exit_behavior
|
|
6362
|
+
# Exit behavior determines what happens when your tool quits running.
|
|
6363
|
+
# `RESTART` will cause your tool to be restarted. `FAIL` will cause
|
|
6364
|
+
# your job to exit. The default is `RESTART`.
|
|
6365
|
+
# @return [String]
|
|
6366
|
+
#
|
|
6367
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/Tool AWS API Documentation
|
|
6368
|
+
#
|
|
6369
|
+
class Tool < Struct.new(
|
|
6370
|
+
:stream_ui,
|
|
6371
|
+
:name,
|
|
6372
|
+
:command,
|
|
6373
|
+
:stream_output_to_cloud_watch,
|
|
6374
|
+
:exit_behavior)
|
|
6375
|
+
SENSITIVE = []
|
|
6376
|
+
include Aws::Structure
|
|
6377
|
+
end
|
|
6378
|
+
|
|
6206
6379
|
# @note When making an API call, you may pass UntagResourceRequest
|
|
6207
6380
|
# data as a hash:
|
|
6208
6381
|
#
|
|
@@ -6248,7 +6421,7 @@ module Aws::RoboMaker
|
|
|
6248
6421
|
# ],
|
|
6249
6422
|
# robot_software_suite: { # required
|
|
6250
6423
|
# name: "ROS", # accepts ROS, ROS2
|
|
6251
|
-
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing
|
|
6424
|
+
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
|
6252
6425
|
# },
|
|
6253
6426
|
# current_revision_id: "RevisionId",
|
|
6254
6427
|
# }
|
|
@@ -6343,7 +6516,7 @@ module Aws::RoboMaker
|
|
|
6343
6516
|
# },
|
|
6344
6517
|
# robot_software_suite: { # required
|
|
6345
6518
|
# name: "ROS", # accepts ROS, ROS2
|
|
6346
|
-
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing
|
|
6519
|
+
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
|
6347
6520
|
# },
|
|
6348
6521
|
# rendering_engine: {
|
|
6349
6522
|
# name: "OGRE", # accepts OGRE
|
|
@@ -6547,7 +6720,7 @@ module Aws::RoboMaker
|
|
|
6547
6720
|
# @return [String]
|
|
6548
6721
|
#
|
|
6549
6722
|
# @!attribute [rw] upload_behavior
|
|
6550
|
-
# Specifies
|
|
6723
|
+
# Specifies when to upload the files:
|
|
6551
6724
|
#
|
|
6552
6725
|
# UPLOAD\_ON\_TERMINATE
|
|
6553
6726
|
#
|