aws-sdk-robomaker 1.29.0 → 1.34.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 +183 -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 +122 -7
- data/lib/aws-sdk-robomaker/client_api.rb +18 -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 +200 -9
- metadata +8 -5
@@ -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
|
|
@@ -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')
|
@@ -504,6 +507,7 @@ module Aws::RoboMaker
|
|
504
507
|
CreateWorldGenerationJobRequest.add_member(:template, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "template"))
|
505
508
|
CreateWorldGenerationJobRequest.add_member(:world_count, Shapes::ShapeRef.new(shape: WorldCount, required: true, location_name: "worldCount"))
|
506
509
|
CreateWorldGenerationJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
510
|
+
CreateWorldGenerationJobRequest.add_member(:world_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "worldTags"))
|
507
511
|
CreateWorldGenerationJobRequest.struct_class = Types::CreateWorldGenerationJobRequest
|
508
512
|
|
509
513
|
CreateWorldGenerationJobResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
|
@@ -514,6 +518,7 @@ module Aws::RoboMaker
|
|
514
518
|
CreateWorldGenerationJobResponse.add_member(:template, Shapes::ShapeRef.new(shape: Arn, location_name: "template"))
|
515
519
|
CreateWorldGenerationJobResponse.add_member(:world_count, Shapes::ShapeRef.new(shape: WorldCount, location_name: "worldCount"))
|
516
520
|
CreateWorldGenerationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
521
|
+
CreateWorldGenerationJobResponse.add_member(:world_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "worldTags"))
|
517
522
|
CreateWorldGenerationJobResponse.struct_class = Types::CreateWorldGenerationJobResponse
|
518
523
|
|
519
524
|
CreateWorldTemplateRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
@@ -757,6 +762,7 @@ module Aws::RoboMaker
|
|
757
762
|
DescribeWorldGenerationJobResponse.add_member(:world_count, Shapes::ShapeRef.new(shape: WorldCount, location_name: "worldCount"))
|
758
763
|
DescribeWorldGenerationJobResponse.add_member(:finished_worlds_summary, Shapes::ShapeRef.new(shape: FinishedWorldsSummary, location_name: "finishedWorldsSummary"))
|
759
764
|
DescribeWorldGenerationJobResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
765
|
+
DescribeWorldGenerationJobResponse.add_member(:world_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "worldTags"))
|
760
766
|
DescribeWorldGenerationJobResponse.struct_class = Types::DescribeWorldGenerationJobResponse
|
761
767
|
|
762
768
|
DescribeWorldRequest.add_member(:world, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "world"))
|
@@ -1015,6 +1021,8 @@ module Aws::RoboMaker
|
|
1015
1021
|
RobotApplicationConfig.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
1016
1022
|
RobotApplicationConfig.add_member(:application_version, Shapes::ShapeRef.new(shape: Version, location_name: "applicationVersion"))
|
1017
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"))
|
1018
1026
|
RobotApplicationConfig.struct_class = Types::RobotApplicationConfig
|
1019
1027
|
|
1020
1028
|
RobotApplicationConfigs.member = Shapes::ShapeRef.new(shape: RobotApplicationConfig)
|
@@ -1068,7 +1076,9 @@ module Aws::RoboMaker
|
|
1068
1076
|
SimulationApplicationConfig.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
|
1069
1077
|
SimulationApplicationConfig.add_member(:application_version, Shapes::ShapeRef.new(shape: Version, location_name: "applicationVersion"))
|
1070
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"))
|
1071
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"))
|
1072
1082
|
SimulationApplicationConfig.struct_class = Types::SimulationApplicationConfig
|
1073
1083
|
|
1074
1084
|
SimulationApplicationConfigs.member = Shapes::ShapeRef.new(shape: SimulationApplicationConfig)
|
@@ -1278,6 +1288,13 @@ module Aws::RoboMaker
|
|
1278
1288
|
UpdateWorldTemplateResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
|
1279
1289
|
UpdateWorldTemplateResponse.struct_class = Types::UpdateWorldTemplateResponse
|
1280
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
|
+
|
1281
1298
|
VPCConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: Subnets, required: true, location_name: "subnets"))
|
1282
1299
|
VPCConfig.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroups, location_name: "securityGroups"))
|
1283
1300
|
VPCConfig.add_member(:assign_public_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "assignPublicIp"))
|
@@ -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
|
|
@@ -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: [
|
@@ -1449,6 +1465,18 @@ module Aws::RoboMaker
|
|
1449
1465
|
# InvalidInput
|
1450
1466
|
#
|
1451
1467
|
# : An input parameter in the request is not valid.
|
1468
|
+
#
|
1469
|
+
# AllWorldGenerationFailed
|
1470
|
+
#
|
1471
|
+
# : All of the worlds in the world generation job failed. This can
|
1472
|
+
# happen if your `worldCount` is greater than 50 or less than 1.
|
1473
|
+
#
|
1474
|
+
# For more information about troubleshooting WorldForge, see
|
1475
|
+
# [Troubleshooting Simulation WorldForge][1].
|
1476
|
+
#
|
1477
|
+
#
|
1478
|
+
#
|
1479
|
+
# [1]: https://docs.aws.amazon.com/robomaker/latest/dg/troubleshooting-worldforge.html
|
1452
1480
|
# @return [String]
|
1453
1481
|
#
|
1454
1482
|
# @!attribute [rw] client_request_token
|
@@ -1498,6 +1526,9 @@ module Aws::RoboMaker
|
|
1498
1526
|
# tags: {
|
1499
1527
|
# "TagKey" => "TagValue",
|
1500
1528
|
# },
|
1529
|
+
# world_tags: {
|
1530
|
+
# "TagKey" => "TagValue",
|
1531
|
+
# },
|
1501
1532
|
# }
|
1502
1533
|
#
|
1503
1534
|
# @!attribute [rw] client_request_token
|
@@ -1522,13 +1553,19 @@ module Aws::RoboMaker
|
|
1522
1553
|
# world generator job.
|
1523
1554
|
# @return [Hash<String,String>]
|
1524
1555
|
#
|
1556
|
+
# @!attribute [rw] world_tags
|
1557
|
+
# A map that contains tag keys and tag values that are attached to the
|
1558
|
+
# generated worlds.
|
1559
|
+
# @return [Hash<String,String>]
|
1560
|
+
#
|
1525
1561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJobRequest AWS API Documentation
|
1526
1562
|
#
|
1527
1563
|
class CreateWorldGenerationJobRequest < Struct.new(
|
1528
1564
|
:client_request_token,
|
1529
1565
|
:template,
|
1530
1566
|
:world_count,
|
1531
|
-
:tags
|
1567
|
+
:tags,
|
1568
|
+
:world_tags)
|
1532
1569
|
SENSITIVE = []
|
1533
1570
|
include Aws::Structure
|
1534
1571
|
end
|
@@ -1619,6 +1656,11 @@ module Aws::RoboMaker
|
|
1619
1656
|
# world generator job.
|
1620
1657
|
# @return [Hash<String,String>]
|
1621
1658
|
#
|
1659
|
+
# @!attribute [rw] world_tags
|
1660
|
+
# A map that contains tag keys and tag values that are attached to the
|
1661
|
+
# generated worlds.
|
1662
|
+
# @return [Hash<String,String>]
|
1663
|
+
#
|
1622
1664
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateWorldGenerationJobResponse AWS API Documentation
|
1623
1665
|
#
|
1624
1666
|
class CreateWorldGenerationJobResponse < Struct.new(
|
@@ -1629,7 +1671,8 @@ module Aws::RoboMaker
|
|
1629
1671
|
:client_request_token,
|
1630
1672
|
:template,
|
1631
1673
|
:world_count,
|
1632
|
-
:tags
|
1674
|
+
:tags,
|
1675
|
+
:world_tags)
|
1633
1676
|
SENSITIVE = []
|
1634
1677
|
include Aws::Structure
|
1635
1678
|
end
|
@@ -3099,6 +3142,11 @@ module Aws::RoboMaker
|
|
3099
3142
|
# world generation job.
|
3100
3143
|
# @return [Hash<String,String>]
|
3101
3144
|
#
|
3145
|
+
# @!attribute [rw] world_tags
|
3146
|
+
# A map that contains tag keys and tag values that are attached to the
|
3147
|
+
# generated worlds.
|
3148
|
+
# @return [Hash<String,String>]
|
3149
|
+
#
|
3102
3150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeWorldGenerationJobResponse AWS API Documentation
|
3103
3151
|
#
|
3104
3152
|
class DescribeWorldGenerationJobResponse < Struct.new(
|
@@ -3111,7 +3159,8 @@ module Aws::RoboMaker
|
|
3111
3159
|
:template,
|
3112
3160
|
:world_count,
|
3113
3161
|
:finished_worlds_summary,
|
3114
|
-
:tags
|
3162
|
+
:tags,
|
3163
|
+
:world_tags)
|
3115
3164
|
SENSITIVE = []
|
3116
3165
|
include Aws::Structure
|
3117
3166
|
end
|
@@ -3494,7 +3543,7 @@ module Aws::RoboMaker
|
|
3494
3543
|
# Boolean indicating whether a streaming session will be configured
|
3495
3544
|
# for the application. If `True`, AWS RoboMaker will configure a
|
3496
3545
|
# connection so you can interact with your application as it is
|
3497
|
-
# running in the simulation. You must configure and
|
3546
|
+
# running in the simulation. You must configure and launch the
|
3498
3547
|
# component. It must have a graphical user interface.
|
3499
3548
|
# @return [Boolean]
|
3500
3549
|
#
|
@@ -4754,6 +4803,14 @@ module Aws::RoboMaker
|
|
4754
4803
|
# },
|
4755
4804
|
# stream_ui: false,
|
4756
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,
|
4757
4814
|
# }
|
4758
4815
|
#
|
4759
4816
|
# @!attribute [rw] application
|
@@ -4768,12 +4825,26 @@ module Aws::RoboMaker
|
|
4768
4825
|
# The launch configuration for the robot application.
|
4769
4826
|
# @return [Types::LaunchConfig]
|
4770
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
|
+
#
|
4771
4840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/RobotApplicationConfig AWS API Documentation
|
4772
4841
|
#
|
4773
4842
|
class RobotApplicationConfig < Struct.new(
|
4774
4843
|
:application,
|
4775
4844
|
:application_version,
|
4776
|
-
:launch_config
|
4845
|
+
:launch_config,
|
4846
|
+
:upload_configurations,
|
4847
|
+
:use_default_upload_configurations)
|
4777
4848
|
SENSITIVE = []
|
4778
4849
|
include Aws::Structure
|
4779
4850
|
end
|
@@ -4976,11 +5047,19 @@ module Aws::RoboMaker
|
|
4976
5047
|
# },
|
4977
5048
|
# stream_ui: false,
|
4978
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
|
+
# ],
|
4979
5057
|
# world_configs: [
|
4980
5058
|
# {
|
4981
5059
|
# world: "Arn",
|
4982
5060
|
# },
|
4983
5061
|
# ],
|
5062
|
+
# use_default_upload_configurations: false,
|
4984
5063
|
# }
|
4985
5064
|
#
|
4986
5065
|
# @!attribute [rw] application
|
@@ -4995,17 +5074,32 @@ module Aws::RoboMaker
|
|
4995
5074
|
# The launch configuration for the simulation application.
|
4996
5075
|
# @return [Types::LaunchConfig]
|
4997
5076
|
#
|
5077
|
+
# @!attribute [rw] upload_configurations
|
5078
|
+
# Information about upload configurations for the simulation
|
5079
|
+
# application.
|
5080
|
+
# @return [Array<Types::UploadConfiguration>]
|
5081
|
+
#
|
4998
5082
|
# @!attribute [rw] world_configs
|
4999
5083
|
# A list of world configurations.
|
5000
5084
|
# @return [Array<Types::WorldConfig>]
|
5001
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
|
+
#
|
5002
5094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationApplicationConfig AWS API Documentation
|
5003
5095
|
#
|
5004
5096
|
class SimulationApplicationConfig < Struct.new(
|
5005
5097
|
:application,
|
5006
5098
|
:application_version,
|
5007
5099
|
:launch_config,
|
5008
|
-
:
|
5100
|
+
:upload_configurations,
|
5101
|
+
:world_configs,
|
5102
|
+
:use_default_upload_configurations)
|
5009
5103
|
SENSITIVE = []
|
5010
5104
|
include Aws::Structure
|
5011
5105
|
end
|
@@ -5311,6 +5405,14 @@ module Aws::RoboMaker
|
|
5311
5405
|
# },
|
5312
5406
|
# stream_ui: false,
|
5313
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,
|
5314
5416
|
# },
|
5315
5417
|
# ],
|
5316
5418
|
# simulation_applications: [
|
@@ -5334,11 +5436,19 @@ module Aws::RoboMaker
|
|
5334
5436
|
# },
|
5335
5437
|
# stream_ui: false,
|
5336
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
|
+
# ],
|
5337
5446
|
# world_configs: [
|
5338
5447
|
# {
|
5339
5448
|
# world: "Arn",
|
5340
5449
|
# },
|
5341
5450
|
# ],
|
5451
|
+
# use_default_upload_configurations: false,
|
5342
5452
|
# },
|
5343
5453
|
# ],
|
5344
5454
|
# data_sources: [
|
@@ -5394,8 +5504,9 @@ module Aws::RoboMaker
|
|
5394
5504
|
# @return [String]
|
5395
5505
|
#
|
5396
5506
|
# @!attribute [rw] use_default_applications
|
5397
|
-
# Boolean indicating whether to use default
|
5398
|
-
# 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.
|
5399
5510
|
# @return [Boolean]
|
5400
5511
|
#
|
5401
5512
|
# @!attribute [rw] robot_applications
|
@@ -5629,6 +5740,14 @@ module Aws::RoboMaker
|
|
5629
5740
|
# },
|
5630
5741
|
# stream_ui: false,
|
5631
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,
|
5632
5751
|
# },
|
5633
5752
|
# ],
|
5634
5753
|
# simulation_applications: [
|
@@ -5652,11 +5771,19 @@ module Aws::RoboMaker
|
|
5652
5771
|
# },
|
5653
5772
|
# stream_ui: false,
|
5654
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
|
+
# ],
|
5655
5781
|
# world_configs: [
|
5656
5782
|
# {
|
5657
5783
|
# world: "Arn",
|
5658
5784
|
# },
|
5659
5785
|
# ],
|
5786
|
+
# use_default_upload_configurations: false,
|
5660
5787
|
# },
|
5661
5788
|
# ],
|
5662
5789
|
# data_sources: [
|
@@ -6385,6 +6512,70 @@ module Aws::RoboMaker
|
|
6385
6512
|
include Aws::Structure
|
6386
6513
|
end
|
6387
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
|
+
|
6388
6579
|
# If your simulation job accesses resources in a VPC, you provide this
|
6389
6580
|
# parameter identifying the list of security group IDs and subnet IDs.
|
6390
6581
|
# These must belong to the same VPC. You must provide at least one
|