aws-sdk-robomaker 1.76.0 → 1.78.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-robomaker/client.rb +727 -41
- data/lib/aws-sdk-robomaker/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-robomaker/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-robomaker/endpoints.rb +2 -625
- data/lib/aws-sdk-robomaker/plugins/endpoints.rb +1 -120
- data/lib/aws-sdk-robomaker/types.rb +29 -29
- data/lib/aws-sdk-robomaker.rb +1 -1
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::RoboMaker::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,125 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :batch_delete_worlds
|
74
|
-
Aws::RoboMaker::Endpoints::BatchDeleteWorlds.build(context)
|
75
|
-
when :batch_describe_simulation_job
|
76
|
-
Aws::RoboMaker::Endpoints::BatchDescribeSimulationJob.build(context)
|
77
|
-
when :cancel_deployment_job
|
78
|
-
Aws::RoboMaker::Endpoints::CancelDeploymentJob.build(context)
|
79
|
-
when :cancel_simulation_job
|
80
|
-
Aws::RoboMaker::Endpoints::CancelSimulationJob.build(context)
|
81
|
-
when :cancel_simulation_job_batch
|
82
|
-
Aws::RoboMaker::Endpoints::CancelSimulationJobBatch.build(context)
|
83
|
-
when :cancel_world_export_job
|
84
|
-
Aws::RoboMaker::Endpoints::CancelWorldExportJob.build(context)
|
85
|
-
when :cancel_world_generation_job
|
86
|
-
Aws::RoboMaker::Endpoints::CancelWorldGenerationJob.build(context)
|
87
|
-
when :create_deployment_job
|
88
|
-
Aws::RoboMaker::Endpoints::CreateDeploymentJob.build(context)
|
89
|
-
when :create_fleet
|
90
|
-
Aws::RoboMaker::Endpoints::CreateFleet.build(context)
|
91
|
-
when :create_robot
|
92
|
-
Aws::RoboMaker::Endpoints::CreateRobot.build(context)
|
93
|
-
when :create_robot_application
|
94
|
-
Aws::RoboMaker::Endpoints::CreateRobotApplication.build(context)
|
95
|
-
when :create_robot_application_version
|
96
|
-
Aws::RoboMaker::Endpoints::CreateRobotApplicationVersion.build(context)
|
97
|
-
when :create_simulation_application
|
98
|
-
Aws::RoboMaker::Endpoints::CreateSimulationApplication.build(context)
|
99
|
-
when :create_simulation_application_version
|
100
|
-
Aws::RoboMaker::Endpoints::CreateSimulationApplicationVersion.build(context)
|
101
|
-
when :create_simulation_job
|
102
|
-
Aws::RoboMaker::Endpoints::CreateSimulationJob.build(context)
|
103
|
-
when :create_world_export_job
|
104
|
-
Aws::RoboMaker::Endpoints::CreateWorldExportJob.build(context)
|
105
|
-
when :create_world_generation_job
|
106
|
-
Aws::RoboMaker::Endpoints::CreateWorldGenerationJob.build(context)
|
107
|
-
when :create_world_template
|
108
|
-
Aws::RoboMaker::Endpoints::CreateWorldTemplate.build(context)
|
109
|
-
when :delete_fleet
|
110
|
-
Aws::RoboMaker::Endpoints::DeleteFleet.build(context)
|
111
|
-
when :delete_robot
|
112
|
-
Aws::RoboMaker::Endpoints::DeleteRobot.build(context)
|
113
|
-
when :delete_robot_application
|
114
|
-
Aws::RoboMaker::Endpoints::DeleteRobotApplication.build(context)
|
115
|
-
when :delete_simulation_application
|
116
|
-
Aws::RoboMaker::Endpoints::DeleteSimulationApplication.build(context)
|
117
|
-
when :delete_world_template
|
118
|
-
Aws::RoboMaker::Endpoints::DeleteWorldTemplate.build(context)
|
119
|
-
when :deregister_robot
|
120
|
-
Aws::RoboMaker::Endpoints::DeregisterRobot.build(context)
|
121
|
-
when :describe_deployment_job
|
122
|
-
Aws::RoboMaker::Endpoints::DescribeDeploymentJob.build(context)
|
123
|
-
when :describe_fleet
|
124
|
-
Aws::RoboMaker::Endpoints::DescribeFleet.build(context)
|
125
|
-
when :describe_robot
|
126
|
-
Aws::RoboMaker::Endpoints::DescribeRobot.build(context)
|
127
|
-
when :describe_robot_application
|
128
|
-
Aws::RoboMaker::Endpoints::DescribeRobotApplication.build(context)
|
129
|
-
when :describe_simulation_application
|
130
|
-
Aws::RoboMaker::Endpoints::DescribeSimulationApplication.build(context)
|
131
|
-
when :describe_simulation_job
|
132
|
-
Aws::RoboMaker::Endpoints::DescribeSimulationJob.build(context)
|
133
|
-
when :describe_simulation_job_batch
|
134
|
-
Aws::RoboMaker::Endpoints::DescribeSimulationJobBatch.build(context)
|
135
|
-
when :describe_world
|
136
|
-
Aws::RoboMaker::Endpoints::DescribeWorld.build(context)
|
137
|
-
when :describe_world_export_job
|
138
|
-
Aws::RoboMaker::Endpoints::DescribeWorldExportJob.build(context)
|
139
|
-
when :describe_world_generation_job
|
140
|
-
Aws::RoboMaker::Endpoints::DescribeWorldGenerationJob.build(context)
|
141
|
-
when :describe_world_template
|
142
|
-
Aws::RoboMaker::Endpoints::DescribeWorldTemplate.build(context)
|
143
|
-
when :get_world_template_body
|
144
|
-
Aws::RoboMaker::Endpoints::GetWorldTemplateBody.build(context)
|
145
|
-
when :list_deployment_jobs
|
146
|
-
Aws::RoboMaker::Endpoints::ListDeploymentJobs.build(context)
|
147
|
-
when :list_fleets
|
148
|
-
Aws::RoboMaker::Endpoints::ListFleets.build(context)
|
149
|
-
when :list_robot_applications
|
150
|
-
Aws::RoboMaker::Endpoints::ListRobotApplications.build(context)
|
151
|
-
when :list_robots
|
152
|
-
Aws::RoboMaker::Endpoints::ListRobots.build(context)
|
153
|
-
when :list_simulation_applications
|
154
|
-
Aws::RoboMaker::Endpoints::ListSimulationApplications.build(context)
|
155
|
-
when :list_simulation_job_batches
|
156
|
-
Aws::RoboMaker::Endpoints::ListSimulationJobBatches.build(context)
|
157
|
-
when :list_simulation_jobs
|
158
|
-
Aws::RoboMaker::Endpoints::ListSimulationJobs.build(context)
|
159
|
-
when :list_tags_for_resource
|
160
|
-
Aws::RoboMaker::Endpoints::ListTagsForResource.build(context)
|
161
|
-
when :list_world_export_jobs
|
162
|
-
Aws::RoboMaker::Endpoints::ListWorldExportJobs.build(context)
|
163
|
-
when :list_world_generation_jobs
|
164
|
-
Aws::RoboMaker::Endpoints::ListWorldGenerationJobs.build(context)
|
165
|
-
when :list_world_templates
|
166
|
-
Aws::RoboMaker::Endpoints::ListWorldTemplates.build(context)
|
167
|
-
when :list_worlds
|
168
|
-
Aws::RoboMaker::Endpoints::ListWorlds.build(context)
|
169
|
-
when :register_robot
|
170
|
-
Aws::RoboMaker::Endpoints::RegisterRobot.build(context)
|
171
|
-
when :restart_simulation_job
|
172
|
-
Aws::RoboMaker::Endpoints::RestartSimulationJob.build(context)
|
173
|
-
when :start_simulation_job_batch
|
174
|
-
Aws::RoboMaker::Endpoints::StartSimulationJobBatch.build(context)
|
175
|
-
when :sync_deployment_job
|
176
|
-
Aws::RoboMaker::Endpoints::SyncDeploymentJob.build(context)
|
177
|
-
when :tag_resource
|
178
|
-
Aws::RoboMaker::Endpoints::TagResource.build(context)
|
179
|
-
when :untag_resource
|
180
|
-
Aws::RoboMaker::Endpoints::UntagResource.build(context)
|
181
|
-
when :update_robot_application
|
182
|
-
Aws::RoboMaker::Endpoints::UpdateRobotApplication.build(context)
|
183
|
-
when :update_simulation_application
|
184
|
-
Aws::RoboMaker::Endpoints::UpdateSimulationApplication.build(context)
|
185
|
-
when :update_world_template
|
186
|
-
Aws::RoboMaker::Endpoints::UpdateWorldTemplate.build(context)
|
187
|
-
end
|
188
|
-
end
|
189
70
|
end
|
190
71
|
|
191
72
|
def add_handlers(handlers, _config)
|
@@ -455,8 +455,7 @@ module Aws::RoboMaker
|
|
455
455
|
# @return [Array<Types::SourceConfig>]
|
456
456
|
#
|
457
457
|
# @!attribute [rw] robot_software_suite
|
458
|
-
# The robot software suite
|
459
|
-
# application.
|
458
|
+
# The robot software suite used by the robot application.
|
460
459
|
# @return [Types::RobotSoftwareSuite]
|
461
460
|
#
|
462
461
|
# @!attribute [rw] tags
|
@@ -498,8 +497,7 @@ module Aws::RoboMaker
|
|
498
497
|
# @return [Array<Types::Source>]
|
499
498
|
#
|
500
499
|
# @!attribute [rw] robot_software_suite
|
501
|
-
# The robot software suite
|
502
|
-
# application.
|
500
|
+
# The robot software suite used by the robot application.
|
503
501
|
# @return [Types::RobotSoftwareSuite]
|
504
502
|
#
|
505
503
|
# @!attribute [rw] last_updated_at
|
@@ -584,8 +582,7 @@ module Aws::RoboMaker
|
|
584
582
|
# @return [Array<Types::Source>]
|
585
583
|
#
|
586
584
|
# @!attribute [rw] robot_software_suite
|
587
|
-
# The robot software suite
|
588
|
-
# application.
|
585
|
+
# The robot software suite used by the robot application.
|
589
586
|
# @return [Types::RobotSoftwareSuite]
|
590
587
|
#
|
591
588
|
# @!attribute [rw] last_updated_at
|
@@ -697,8 +694,7 @@ module Aws::RoboMaker
|
|
697
694
|
# @return [Types::SimulationSoftwareSuite]
|
698
695
|
#
|
699
696
|
# @!attribute [rw] robot_software_suite
|
700
|
-
# The robot software suite
|
701
|
-
# application.
|
697
|
+
# The robot software suite used by the simulation application.
|
702
698
|
# @return [Types::RobotSoftwareSuite]
|
703
699
|
#
|
704
700
|
# @!attribute [rw] rendering_engine
|
@@ -750,7 +746,7 @@ module Aws::RoboMaker
|
|
750
746
|
# @return [Types::SimulationSoftwareSuite]
|
751
747
|
#
|
752
748
|
# @!attribute [rw] robot_software_suite
|
753
|
-
# Information about the robot software suite
|
749
|
+
# Information about the robot software suite.
|
754
750
|
# @return [Types::RobotSoftwareSuite]
|
755
751
|
#
|
756
752
|
# @!attribute [rw] rendering_engine
|
@@ -845,7 +841,7 @@ module Aws::RoboMaker
|
|
845
841
|
# @return [Types::SimulationSoftwareSuite]
|
846
842
|
#
|
847
843
|
# @!attribute [rw] robot_software_suite
|
848
|
-
# Information about the robot software suite
|
844
|
+
# Information about the robot software suite.
|
849
845
|
# @return [Types::RobotSoftwareSuite]
|
850
846
|
#
|
851
847
|
# @!attribute [rw] rendering_engine
|
@@ -2040,8 +2036,7 @@ module Aws::RoboMaker
|
|
2040
2036
|
# @return [Array<Types::Source>]
|
2041
2037
|
#
|
2042
2038
|
# @!attribute [rw] robot_software_suite
|
2043
|
-
# The robot software suite
|
2044
|
-
# application.
|
2039
|
+
# The robot software suite used by the robot application.
|
2045
2040
|
# @return [Types::RobotSoftwareSuite]
|
2046
2041
|
#
|
2047
2042
|
# @!attribute [rw] revision_id
|
@@ -2192,7 +2187,7 @@ module Aws::RoboMaker
|
|
2192
2187
|
# @return [Types::SimulationSoftwareSuite]
|
2193
2188
|
#
|
2194
2189
|
# @!attribute [rw] robot_software_suite
|
2195
|
-
# Information about the robot software suite
|
2190
|
+
# Information about the robot software suite.
|
2196
2191
|
# @return [Types::RobotSoftwareSuite]
|
2197
2192
|
#
|
2198
2193
|
# @!attribute [rw] rendering_engine
|
@@ -4282,7 +4277,7 @@ module Aws::RoboMaker
|
|
4282
4277
|
# @return [Time]
|
4283
4278
|
#
|
4284
4279
|
# @!attribute [rw] robot_software_suite
|
4285
|
-
# Information about a robot software suite
|
4280
|
+
# Information about a robot software suite.
|
4286
4281
|
# @return [Types::RobotSoftwareSuite]
|
4287
4282
|
#
|
4288
4283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/RobotApplicationSummary AWS API Documentation
|
@@ -4343,14 +4338,16 @@ module Aws::RoboMaker
|
|
4343
4338
|
include Aws::Structure
|
4344
4339
|
end
|
4345
4340
|
|
4346
|
-
# Information about a robot software suite
|
4341
|
+
# Information about a robot software suite.
|
4347
4342
|
#
|
4348
4343
|
# @!attribute [rw] name
|
4349
|
-
# The name of the robot software suite
|
4344
|
+
# The name of the robot software suite. `General` is the only
|
4345
|
+
# supported value.
|
4350
4346
|
# @return [String]
|
4351
4347
|
#
|
4352
4348
|
# @!attribute [rw] version
|
4353
|
-
# The version of the robot software suite
|
4349
|
+
# The version of the robot software suite. Not applicable for General
|
4350
|
+
# software suite.
|
4354
4351
|
# @return [String]
|
4355
4352
|
#
|
4356
4353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/RobotSoftwareSuite AWS API Documentation
|
@@ -4439,6 +4436,8 @@ module Aws::RoboMaker
|
|
4439
4436
|
#
|
4440
4437
|
# @!attribute [rw] world_configs
|
4441
4438
|
# A list of world configurations.
|
4439
|
+
#
|
4440
|
+
# This API is no longer supported and will throw an error if used.
|
4442
4441
|
# @return [Array<Types::WorldConfig>]
|
4443
4442
|
#
|
4444
4443
|
# @!attribute [rw] use_default_upload_configurations
|
@@ -4498,7 +4497,7 @@ module Aws::RoboMaker
|
|
4498
4497
|
# @return [Time]
|
4499
4498
|
#
|
4500
4499
|
# @!attribute [rw] robot_software_suite
|
4501
|
-
# Information about a robot software suite
|
4500
|
+
# Information about a robot software suite.
|
4502
4501
|
# @return [Types::RobotSoftwareSuite]
|
4503
4502
|
#
|
4504
4503
|
# @!attribute [rw] simulation_software_suite
|
@@ -4890,11 +4889,13 @@ module Aws::RoboMaker
|
|
4890
4889
|
# Information about a simulation software suite.
|
4891
4890
|
#
|
4892
4891
|
# @!attribute [rw] name
|
4893
|
-
# The name of the simulation software suite.
|
4892
|
+
# The name of the simulation software suite. `SimulationRuntime` is
|
4893
|
+
# the only supported value.
|
4894
4894
|
# @return [String]
|
4895
4895
|
#
|
4896
4896
|
# @!attribute [rw] version
|
4897
|
-
# The version of the simulation software suite.
|
4897
|
+
# The version of the simulation software suite. Not applicable for
|
4898
|
+
# `SimulationRuntime`.
|
4898
4899
|
# @return [String]
|
4899
4900
|
#
|
4900
4901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationSoftwareSuite AWS API Documentation
|
@@ -5404,8 +5405,7 @@ module Aws::RoboMaker
|
|
5404
5405
|
# @return [Array<Types::SourceConfig>]
|
5405
5406
|
#
|
5406
5407
|
# @!attribute [rw] robot_software_suite
|
5407
|
-
# The robot software suite
|
5408
|
-
# application.
|
5408
|
+
# The robot software suite used by the robot application.
|
5409
5409
|
# @return [Types::RobotSoftwareSuite]
|
5410
5410
|
#
|
5411
5411
|
# @!attribute [rw] current_revision_id
|
@@ -5446,8 +5446,7 @@ module Aws::RoboMaker
|
|
5446
5446
|
# @return [Array<Types::Source>]
|
5447
5447
|
#
|
5448
5448
|
# @!attribute [rw] robot_software_suite
|
5449
|
-
# The robot software suite
|
5450
|
-
# application.
|
5449
|
+
# The robot software suite used by the robot application.
|
5451
5450
|
# @return [Types::RobotSoftwareSuite]
|
5452
5451
|
#
|
5453
5452
|
# @!attribute [rw] last_updated_at
|
@@ -5492,7 +5491,7 @@ module Aws::RoboMaker
|
|
5492
5491
|
# @return [Types::SimulationSoftwareSuite]
|
5493
5492
|
#
|
5494
5493
|
# @!attribute [rw] robot_software_suite
|
5495
|
-
# Information about the robot software suite
|
5494
|
+
# Information about the robot software suite.
|
5496
5495
|
# @return [Types::RobotSoftwareSuite]
|
5497
5496
|
#
|
5498
5497
|
# @!attribute [rw] rendering_engine
|
@@ -5544,7 +5543,7 @@ module Aws::RoboMaker
|
|
5544
5543
|
# @return [Types::SimulationSoftwareSuite]
|
5545
5544
|
#
|
5546
5545
|
# @!attribute [rw] robot_software_suite
|
5547
|
-
# Information about the robot software suite
|
5546
|
+
# Information about the robot software suite.
|
5548
5547
|
# @return [Types::RobotSoftwareSuite]
|
5549
5548
|
#
|
5550
5549
|
# @!attribute [rw] rendering_engine
|
@@ -5646,9 +5645,10 @@ module Aws::RoboMaker
|
|
5646
5645
|
# It is appended to the simulation output location to determine the
|
5647
5646
|
# final path.
|
5648
5647
|
#
|
5649
|
-
# For example, if your simulation output location is
|
5650
|
-
# and your upload configuration name is
|
5651
|
-
# be uploaded to
|
5648
|
+
# For example, if your simulation output location is
|
5649
|
+
# `s3://amzn-s3-demo-bucket` and your upload configuration name is
|
5650
|
+
# `robot-test`, your files will be uploaded to
|
5651
|
+
# `s3://amzn-s3-demo-bucket/<simid>/<runid>/robot-test`.
|
5652
5652
|
# @return [String]
|
5653
5653
|
#
|
5654
5654
|
# @!attribute [rw] path
|
data/lib/aws-sdk-robomaker.rb
CHANGED
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.78.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: 2024-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|