aws-sdk-robomaker 1.44.0 → 1.49.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-robomaker/client.rb +66 -3
- data/lib/aws-sdk-robomaker/client_api.rb +15 -0
- data/lib/aws-sdk-robomaker.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a866a75356df00b6115668d812238feed6f4d44419ca9ebb7205917b93ea2c13
|
4
|
+
data.tar.gz: 230a3acec958a3bf56642271aee24119827deafa40bc0f2f499eae51a3fee5b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d525131f2cdbdedcfda108754a652a599e1740ff17697f3551e16ce196d1172b5744cf95ac5facab33ba24afc76a6ae33fcd3a021946b0ea2113a40873d1d843
|
7
|
+
data.tar.gz: 292dbf822c6b866439debe3a040db2c26c2cc955103b9104e1e2a977a76f27cb5f17fa30f8e82d48426fda03cc6b56d423ea2a8315418cb79d3d7d18e3880523
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.49.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - The release deprecates the use various APIs of RoboMaker Deployment Service in favor of AWS IoT GreenGrass v2.0.
|
8
|
+
|
9
|
+
1.48.0 (2022-02-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - The release deprecates the use various APIs of RoboMaker Deployment Service in favor of AWS IoT GreenGrass v2.0.
|
13
|
+
|
14
|
+
1.47.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.46.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
24
|
+
1.45.0 (2021-11-04)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
4
29
|
1.44.0 (2021-10-18)
|
5
30
|
------------------
|
6
31
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::RoboMaker
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::RoboMaker
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::RoboMaker
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -275,6 +285,15 @@ module Aws::RoboMaker
|
|
275
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
286
|
# requests are made, and retries are disabled.
|
277
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
278
297
|
# @option options [Boolean] :validate_params (true)
|
279
298
|
# When `true`, request parameters are validated before
|
280
299
|
# sending the request.
|
@@ -286,7 +305,7 @@ module Aws::RoboMaker
|
|
286
305
|
# seconds to wait when opening a HTTP session before raising a
|
287
306
|
# `Timeout::Error`.
|
288
307
|
#
|
289
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
290
309
|
# number of seconds to wait for response data. This value can
|
291
310
|
# safely be set per-request on the session.
|
292
311
|
#
|
@@ -302,6 +321,9 @@ module Aws::RoboMaker
|
|
302
321
|
# disables this behaviour. This value can safely be set per
|
303
322
|
# request on the session.
|
304
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
305
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
306
328
|
# HTTP debug output will be sent to the `:logger`.
|
307
329
|
#
|
@@ -481,6 +503,9 @@ module Aws::RoboMaker
|
|
481
503
|
|
482
504
|
# Cancels the specified deployment job.
|
483
505
|
#
|
506
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
507
|
+
# remove resources that were created for Deployment Service.
|
508
|
+
#
|
484
509
|
# @option params [required, String] :job
|
485
510
|
# The deployment job ARN to cancel.
|
486
511
|
#
|
@@ -594,6 +619,8 @@ module Aws::RoboMaker
|
|
594
619
|
# Deploys a specific version of a robot application to robots in a
|
595
620
|
# fleet.
|
596
621
|
#
|
622
|
+
# This API is no longer supported and will throw an error if used.
|
623
|
+
#
|
597
624
|
# The robot application must have a numbered `applicationVersion` for
|
598
625
|
# consistency reasons. To create a new version, use
|
599
626
|
# `CreateRobotApplicationVersion` or see [Creating a Robot Application
|
@@ -713,6 +740,8 @@ module Aws::RoboMaker
|
|
713
740
|
# Creates a fleet, a logical group of robots running the same robot
|
714
741
|
# application.
|
715
742
|
#
|
743
|
+
# This API is no longer supported and will throw an error if used.
|
744
|
+
#
|
716
745
|
# @option params [required, String] :name
|
717
746
|
# The name of the fleet.
|
718
747
|
#
|
@@ -755,6 +784,8 @@ module Aws::RoboMaker
|
|
755
784
|
|
756
785
|
# Creates a robot.
|
757
786
|
#
|
787
|
+
# This API is no longer supported and will throw an error if used.
|
788
|
+
#
|
758
789
|
# @option params [required, String] :name
|
759
790
|
# The name for the robot.
|
760
791
|
#
|
@@ -1651,6 +1682,9 @@ module Aws::RoboMaker
|
|
1651
1682
|
|
1652
1683
|
# Deletes a fleet.
|
1653
1684
|
#
|
1685
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1686
|
+
# remove resources that were created for Deployment Service.
|
1687
|
+
#
|
1654
1688
|
# @option params [required, String] :fleet
|
1655
1689
|
# The Amazon Resource Name (ARN) of the fleet.
|
1656
1690
|
#
|
@@ -1673,6 +1707,9 @@ module Aws::RoboMaker
|
|
1673
1707
|
|
1674
1708
|
# Deletes a robot.
|
1675
1709
|
#
|
1710
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1711
|
+
# remove resources that were created for Deployment Service.
|
1712
|
+
#
|
1676
1713
|
# @option params [required, String] :robot
|
1677
1714
|
# The Amazon Resource Name (ARN) of the robot.
|
1678
1715
|
#
|
@@ -1770,6 +1807,9 @@ module Aws::RoboMaker
|
|
1770
1807
|
|
1771
1808
|
# Deregisters a robot.
|
1772
1809
|
#
|
1810
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1811
|
+
# remove resources that were created for Deployment Service.
|
1812
|
+
#
|
1773
1813
|
# @option params [required, String] :fleet
|
1774
1814
|
# The Amazon Resource Name (ARN) of the fleet.
|
1775
1815
|
#
|
@@ -1804,6 +1844,9 @@ module Aws::RoboMaker
|
|
1804
1844
|
|
1805
1845
|
# Describes a deployment job.
|
1806
1846
|
#
|
1847
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1848
|
+
# remove resources that were created for Deployment Service.
|
1849
|
+
#
|
1807
1850
|
# @option params [required, String] :job
|
1808
1851
|
# The Amazon Resource Name (ARN) of the deployment job.
|
1809
1852
|
#
|
@@ -1874,6 +1917,9 @@ module Aws::RoboMaker
|
|
1874
1917
|
|
1875
1918
|
# Describes a fleet.
|
1876
1919
|
#
|
1920
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1921
|
+
# remove resources that were created for Deployment Service.
|
1922
|
+
#
|
1877
1923
|
# @option params [required, String] :fleet
|
1878
1924
|
# The Amazon Resource Name (ARN) of the fleet.
|
1879
1925
|
#
|
@@ -1926,6 +1972,9 @@ module Aws::RoboMaker
|
|
1926
1972
|
|
1927
1973
|
# Describes a robot.
|
1928
1974
|
#
|
1975
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1976
|
+
# remove resources that were created for Deployment Service.
|
1977
|
+
#
|
1929
1978
|
# @option params [required, String] :robot
|
1930
1979
|
# The Amazon Resource Name (ARN) of the robot to be described.
|
1931
1980
|
#
|
@@ -2673,6 +2722,9 @@ module Aws::RoboMaker
|
|
2673
2722
|
# Returns a list of deployment jobs for a fleet. You can optionally
|
2674
2723
|
# provide filters to retrieve specific deployment jobs.
|
2675
2724
|
#
|
2725
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
2726
|
+
# remove resources that were created for Deployment Service.
|
2727
|
+
#
|
2676
2728
|
# @option params [Array<Types::Filter>] :filters
|
2677
2729
|
# Optional filters to limit results.
|
2678
2730
|
#
|
@@ -2757,6 +2809,9 @@ module Aws::RoboMaker
|
|
2757
2809
|
# Returns a list of fleets. You can optionally provide filters to
|
2758
2810
|
# retrieve specific fleets.
|
2759
2811
|
#
|
2812
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
2813
|
+
# remove resources that were created for Deployment Service.
|
2814
|
+
#
|
2760
2815
|
# @option params [String] :next_token
|
2761
2816
|
# If the previous paginated request did not return all of the remaining
|
2762
2817
|
# results, the response object's `nextToken` parameter value is set to
|
@@ -2899,6 +2954,9 @@ module Aws::RoboMaker
|
|
2899
2954
|
# Returns a list of robots. You can optionally provide filters to
|
2900
2955
|
# retrieve specific robots.
|
2901
2956
|
#
|
2957
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
2958
|
+
# remove resources that were created for Deployment Service.
|
2959
|
+
#
|
2902
2960
|
# @option params [String] :next_token
|
2903
2961
|
# If the previous paginated request did not return all of the remaining
|
2904
2962
|
# results, the response object's `nextToken` parameter value is set to
|
@@ -3448,6 +3506,8 @@ module Aws::RoboMaker
|
|
3448
3506
|
|
3449
3507
|
# Registers a robot with a fleet.
|
3450
3508
|
#
|
3509
|
+
# This API is no longer supported and will throw an error if used.
|
3510
|
+
#
|
3451
3511
|
# @option params [required, String] :fleet
|
3452
3512
|
# The Amazon Resource Name (ARN) of the fleet.
|
3453
3513
|
#
|
@@ -3873,6 +3933,9 @@ module Aws::RoboMaker
|
|
3873
3933
|
# Syncrhonizes robots in a fleet to the latest deployment. This is
|
3874
3934
|
# helpful if robots were added after a deployment.
|
3875
3935
|
#
|
3936
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
3937
|
+
# remove resources that were created for Deployment Service.
|
3938
|
+
#
|
3876
3939
|
# @option params [required, String] :client_request_token
|
3877
3940
|
# Unique, case-sensitive identifier that you provide to ensure the
|
3878
3941
|
# idempotency of the request.
|
@@ -4243,7 +4306,7 @@ module Aws::RoboMaker
|
|
4243
4306
|
params: params,
|
4244
4307
|
config: config)
|
4245
4308
|
context[:gem_name] = 'aws-sdk-robomaker'
|
4246
|
-
context[:gem_version] = '1.
|
4309
|
+
context[:gem_version] = '1.49.0'
|
4247
4310
|
Seahorse::Client::Request.new(handlers, context)
|
4248
4311
|
end
|
4249
4312
|
|
@@ -1459,6 +1459,7 @@ module Aws::RoboMaker
|
|
1459
1459
|
o.name = "CancelDeploymentJob"
|
1460
1460
|
o.http_method = "POST"
|
1461
1461
|
o.http_request_uri = "/cancelDeploymentJob"
|
1462
|
+
o.deprecated = true
|
1462
1463
|
o.input = Shapes::ShapeRef.new(shape: CancelDeploymentJobRequest)
|
1463
1464
|
o.output = Shapes::ShapeRef.new(shape: CancelDeploymentJobResponse)
|
1464
1465
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1519,6 +1520,7 @@ module Aws::RoboMaker
|
|
1519
1520
|
o.name = "CreateDeploymentJob"
|
1520
1521
|
o.http_method = "POST"
|
1521
1522
|
o.http_request_uri = "/createDeploymentJob"
|
1523
|
+
o.deprecated = true
|
1522
1524
|
o.input = Shapes::ShapeRef.new(shape: CreateDeploymentJobRequest)
|
1523
1525
|
o.output = Shapes::ShapeRef.new(shape: CreateDeploymentJobResponse)
|
1524
1526
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1534,6 +1536,7 @@ module Aws::RoboMaker
|
|
1534
1536
|
o.name = "CreateFleet"
|
1535
1537
|
o.http_method = "POST"
|
1536
1538
|
o.http_request_uri = "/createFleet"
|
1539
|
+
o.deprecated = true
|
1537
1540
|
o.input = Shapes::ShapeRef.new(shape: CreateFleetRequest)
|
1538
1541
|
o.output = Shapes::ShapeRef.new(shape: CreateFleetResponse)
|
1539
1542
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
@@ -1546,6 +1549,7 @@ module Aws::RoboMaker
|
|
1546
1549
|
o.name = "CreateRobot"
|
1547
1550
|
o.http_method = "POST"
|
1548
1551
|
o.http_request_uri = "/createRobot"
|
1552
|
+
o.deprecated = true
|
1549
1553
|
o.input = Shapes::ShapeRef.new(shape: CreateRobotRequest)
|
1550
1554
|
o.output = Shapes::ShapeRef.new(shape: CreateRobotResponse)
|
1551
1555
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
@@ -1671,6 +1675,7 @@ module Aws::RoboMaker
|
|
1671
1675
|
o.name = "DeleteFleet"
|
1672
1676
|
o.http_method = "POST"
|
1673
1677
|
o.http_request_uri = "/deleteFleet"
|
1678
|
+
o.deprecated = true
|
1674
1679
|
o.input = Shapes::ShapeRef.new(shape: DeleteFleetRequest)
|
1675
1680
|
o.output = Shapes::ShapeRef.new(shape: DeleteFleetResponse)
|
1676
1681
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
@@ -1682,6 +1687,7 @@ module Aws::RoboMaker
|
|
1682
1687
|
o.name = "DeleteRobot"
|
1683
1688
|
o.http_method = "POST"
|
1684
1689
|
o.http_request_uri = "/deleteRobot"
|
1690
|
+
o.deprecated = true
|
1685
1691
|
o.input = Shapes::ShapeRef.new(shape: DeleteRobotRequest)
|
1686
1692
|
o.output = Shapes::ShapeRef.new(shape: DeleteRobotResponse)
|
1687
1693
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
@@ -1727,6 +1733,7 @@ module Aws::RoboMaker
|
|
1727
1733
|
o.name = "DeregisterRobot"
|
1728
1734
|
o.http_method = "POST"
|
1729
1735
|
o.http_request_uri = "/deregisterRobot"
|
1736
|
+
o.deprecated = true
|
1730
1737
|
o.input = Shapes::ShapeRef.new(shape: DeregisterRobotRequest)
|
1731
1738
|
o.output = Shapes::ShapeRef.new(shape: DeregisterRobotResponse)
|
1732
1739
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
@@ -1739,6 +1746,7 @@ module Aws::RoboMaker
|
|
1739
1746
|
o.name = "DescribeDeploymentJob"
|
1740
1747
|
o.http_method = "POST"
|
1741
1748
|
o.http_request_uri = "/describeDeploymentJob"
|
1749
|
+
o.deprecated = true
|
1742
1750
|
o.input = Shapes::ShapeRef.new(shape: DescribeDeploymentJobRequest)
|
1743
1751
|
o.output = Shapes::ShapeRef.new(shape: DescribeDeploymentJobResponse)
|
1744
1752
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1751,6 +1759,7 @@ module Aws::RoboMaker
|
|
1751
1759
|
o.name = "DescribeFleet"
|
1752
1760
|
o.http_method = "POST"
|
1753
1761
|
o.http_request_uri = "/describeFleet"
|
1762
|
+
o.deprecated = true
|
1754
1763
|
o.input = Shapes::ShapeRef.new(shape: DescribeFleetRequest)
|
1755
1764
|
o.output = Shapes::ShapeRef.new(shape: DescribeFleetResponse)
|
1756
1765
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1763,6 +1772,7 @@ module Aws::RoboMaker
|
|
1763
1772
|
o.name = "DescribeRobot"
|
1764
1773
|
o.http_method = "POST"
|
1765
1774
|
o.http_request_uri = "/describeRobot"
|
1775
|
+
o.deprecated = true
|
1766
1776
|
o.input = Shapes::ShapeRef.new(shape: DescribeRobotRequest)
|
1767
1777
|
o.output = Shapes::ShapeRef.new(shape: DescribeRobotResponse)
|
1768
1778
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1882,6 +1892,7 @@ module Aws::RoboMaker
|
|
1882
1892
|
o.name = "ListDeploymentJobs"
|
1883
1893
|
o.http_method = "POST"
|
1884
1894
|
o.http_request_uri = "/listDeploymentJobs"
|
1895
|
+
o.deprecated = true
|
1885
1896
|
o.input = Shapes::ShapeRef.new(shape: ListDeploymentJobsRequest)
|
1886
1897
|
o.output = Shapes::ShapeRef.new(shape: ListDeploymentJobsResponse)
|
1887
1898
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1900,6 +1911,7 @@ module Aws::RoboMaker
|
|
1900
1911
|
o.name = "ListFleets"
|
1901
1912
|
o.http_method = "POST"
|
1902
1913
|
o.http_request_uri = "/listFleets"
|
1914
|
+
o.deprecated = true
|
1903
1915
|
o.input = Shapes::ShapeRef.new(shape: ListFleetsRequest)
|
1904
1916
|
o.output = Shapes::ShapeRef.new(shape: ListFleetsResponse)
|
1905
1917
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1935,6 +1947,7 @@ module Aws::RoboMaker
|
|
1935
1947
|
o.name = "ListRobots"
|
1936
1948
|
o.http_method = "POST"
|
1937
1949
|
o.http_request_uri = "/listRobots"
|
1950
|
+
o.deprecated = true
|
1938
1951
|
o.input = Shapes::ShapeRef.new(shape: ListRobotsRequest)
|
1939
1952
|
o.output = Shapes::ShapeRef.new(shape: ListRobotsResponse)
|
1940
1953
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -2083,6 +2096,7 @@ module Aws::RoboMaker
|
|
2083
2096
|
o.name = "RegisterRobot"
|
2084
2097
|
o.http_method = "POST"
|
2085
2098
|
o.http_request_uri = "/registerRobot"
|
2099
|
+
o.deprecated = true
|
2086
2100
|
o.input = Shapes::ShapeRef.new(shape: RegisterRobotRequest)
|
2087
2101
|
o.output = Shapes::ShapeRef.new(shape: RegisterRobotResponse)
|
2088
2102
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
@@ -2122,6 +2136,7 @@ module Aws::RoboMaker
|
|
2122
2136
|
o.name = "SyncDeploymentJob"
|
2123
2137
|
o.http_method = "POST"
|
2124
2138
|
o.http_request_uri = "/syncDeploymentJob"
|
2139
|
+
o.deprecated = true
|
2125
2140
|
o.input = Shapes::ShapeRef.new(shape: SyncDeploymentJobRequest)
|
2126
2141
|
o.output = Shapes::ShapeRef.new(shape: SyncDeploymentJobResponse)
|
2127
2142
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
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.49.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: 2022-02-03 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.126.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.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|