aws-sdk-robomaker 1.46.0 → 1.50.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-robomaker/client.rb +56 -2
- 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: 9ffeb9e493f471e8223e6ef04e292caafbcd4da01fbbcef3d058ff2a3d197f05
|
4
|
+
data.tar.gz: fb4a731d25cbf504d0a05771f0fa2035fd41a2173d66a673639b8e810eae875f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22b99e797656fce14fd219b90cb89e2c2d5ed88cea71d360692901e80f332acd51e62624dd182d4a16a4c1efda534c45bf7eced1db0e92c2fc33a1aa8b07e9b5
|
7
|
+
data.tar.gz: 20dc2edcd1cae2900b81d70e40eadd44ab3dfd07121b2caddc63d40bfb6ea24a7399587ec50a110dd3a958d7ecf3c4f71d208484040124dabb88b78891f3a682
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.49.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.48.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - The release deprecates the use various APIs of RoboMaker Deployment Service in favor of AWS IoT GreenGrass v2.0.
|
18
|
+
|
19
|
+
1.47.0 (2021-12-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.46.0 (2021-11-30)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -27,6 +27,9 @@ 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/checksum_algorithm.rb'
|
31
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
35
|
|
@@ -73,6 +76,9 @@ module Aws::RoboMaker
|
|
73
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
84
|
|
@@ -175,6 +181,10 @@ module Aws::RoboMaker
|
|
175
181
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
182
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
183
|
#
|
184
|
+
# @option options [String] :defaults_mode ("legacy")
|
185
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
186
|
+
# accepted modes and the configuration defaults that are included.
|
187
|
+
#
|
178
188
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
189
|
# Set to true to disable SDK automatically adding host prefix
|
180
190
|
# to default service endpoint when available.
|
@@ -297,7 +307,7 @@ module Aws::RoboMaker
|
|
297
307
|
# seconds to wait when opening a HTTP session before raising a
|
298
308
|
# `Timeout::Error`.
|
299
309
|
#
|
300
|
-
# @option options [
|
310
|
+
# @option options [Float] :http_read_timeout (60) The default
|
301
311
|
# number of seconds to wait for response data. This value can
|
302
312
|
# safely be set per-request on the session.
|
303
313
|
#
|
@@ -313,6 +323,9 @@ module Aws::RoboMaker
|
|
313
323
|
# disables this behaviour. This value can safely be set per
|
314
324
|
# request on the session.
|
315
325
|
#
|
326
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
327
|
+
# in seconds.
|
328
|
+
#
|
316
329
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
317
330
|
# HTTP debug output will be sent to the `:logger`.
|
318
331
|
#
|
@@ -492,6 +505,9 @@ module Aws::RoboMaker
|
|
492
505
|
|
493
506
|
# Cancels the specified deployment job.
|
494
507
|
#
|
508
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
509
|
+
# remove resources that were created for Deployment Service.
|
510
|
+
#
|
495
511
|
# @option params [required, String] :job
|
496
512
|
# The deployment job ARN to cancel.
|
497
513
|
#
|
@@ -605,6 +621,8 @@ module Aws::RoboMaker
|
|
605
621
|
# Deploys a specific version of a robot application to robots in a
|
606
622
|
# fleet.
|
607
623
|
#
|
624
|
+
# This API is no longer supported and will throw an error if used.
|
625
|
+
#
|
608
626
|
# The robot application must have a numbered `applicationVersion` for
|
609
627
|
# consistency reasons. To create a new version, use
|
610
628
|
# `CreateRobotApplicationVersion` or see [Creating a Robot Application
|
@@ -724,6 +742,8 @@ module Aws::RoboMaker
|
|
724
742
|
# Creates a fleet, a logical group of robots running the same robot
|
725
743
|
# application.
|
726
744
|
#
|
745
|
+
# This API is no longer supported and will throw an error if used.
|
746
|
+
#
|
727
747
|
# @option params [required, String] :name
|
728
748
|
# The name of the fleet.
|
729
749
|
#
|
@@ -766,6 +786,8 @@ module Aws::RoboMaker
|
|
766
786
|
|
767
787
|
# Creates a robot.
|
768
788
|
#
|
789
|
+
# This API is no longer supported and will throw an error if used.
|
790
|
+
#
|
769
791
|
# @option params [required, String] :name
|
770
792
|
# The name for the robot.
|
771
793
|
#
|
@@ -1662,6 +1684,9 @@ module Aws::RoboMaker
|
|
1662
1684
|
|
1663
1685
|
# Deletes a fleet.
|
1664
1686
|
#
|
1687
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1688
|
+
# remove resources that were created for Deployment Service.
|
1689
|
+
#
|
1665
1690
|
# @option params [required, String] :fleet
|
1666
1691
|
# The Amazon Resource Name (ARN) of the fleet.
|
1667
1692
|
#
|
@@ -1684,6 +1709,9 @@ module Aws::RoboMaker
|
|
1684
1709
|
|
1685
1710
|
# Deletes a robot.
|
1686
1711
|
#
|
1712
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1713
|
+
# remove resources that were created for Deployment Service.
|
1714
|
+
#
|
1687
1715
|
# @option params [required, String] :robot
|
1688
1716
|
# The Amazon Resource Name (ARN) of the robot.
|
1689
1717
|
#
|
@@ -1781,6 +1809,9 @@ module Aws::RoboMaker
|
|
1781
1809
|
|
1782
1810
|
# Deregisters a robot.
|
1783
1811
|
#
|
1812
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1813
|
+
# remove resources that were created for Deployment Service.
|
1814
|
+
#
|
1784
1815
|
# @option params [required, String] :fleet
|
1785
1816
|
# The Amazon Resource Name (ARN) of the fleet.
|
1786
1817
|
#
|
@@ -1815,6 +1846,9 @@ module Aws::RoboMaker
|
|
1815
1846
|
|
1816
1847
|
# Describes a deployment job.
|
1817
1848
|
#
|
1849
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1850
|
+
# remove resources that were created for Deployment Service.
|
1851
|
+
#
|
1818
1852
|
# @option params [required, String] :job
|
1819
1853
|
# The Amazon Resource Name (ARN) of the deployment job.
|
1820
1854
|
#
|
@@ -1885,6 +1919,9 @@ module Aws::RoboMaker
|
|
1885
1919
|
|
1886
1920
|
# Describes a fleet.
|
1887
1921
|
#
|
1922
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1923
|
+
# remove resources that were created for Deployment Service.
|
1924
|
+
#
|
1888
1925
|
# @option params [required, String] :fleet
|
1889
1926
|
# The Amazon Resource Name (ARN) of the fleet.
|
1890
1927
|
#
|
@@ -1937,6 +1974,9 @@ module Aws::RoboMaker
|
|
1937
1974
|
|
1938
1975
|
# Describes a robot.
|
1939
1976
|
#
|
1977
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
1978
|
+
# remove resources that were created for Deployment Service.
|
1979
|
+
#
|
1940
1980
|
# @option params [required, String] :robot
|
1941
1981
|
# The Amazon Resource Name (ARN) of the robot to be described.
|
1942
1982
|
#
|
@@ -2684,6 +2724,9 @@ module Aws::RoboMaker
|
|
2684
2724
|
# Returns a list of deployment jobs for a fleet. You can optionally
|
2685
2725
|
# provide filters to retrieve specific deployment jobs.
|
2686
2726
|
#
|
2727
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
2728
|
+
# remove resources that were created for Deployment Service.
|
2729
|
+
#
|
2687
2730
|
# @option params [Array<Types::Filter>] :filters
|
2688
2731
|
# Optional filters to limit results.
|
2689
2732
|
#
|
@@ -2768,6 +2811,9 @@ module Aws::RoboMaker
|
|
2768
2811
|
# Returns a list of fleets. You can optionally provide filters to
|
2769
2812
|
# retrieve specific fleets.
|
2770
2813
|
#
|
2814
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
2815
|
+
# remove resources that were created for Deployment Service.
|
2816
|
+
#
|
2771
2817
|
# @option params [String] :next_token
|
2772
2818
|
# If the previous paginated request did not return all of the remaining
|
2773
2819
|
# results, the response object's `nextToken` parameter value is set to
|
@@ -2910,6 +2956,9 @@ module Aws::RoboMaker
|
|
2910
2956
|
# Returns a list of robots. You can optionally provide filters to
|
2911
2957
|
# retrieve specific robots.
|
2912
2958
|
#
|
2959
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
2960
|
+
# remove resources that were created for Deployment Service.
|
2961
|
+
#
|
2913
2962
|
# @option params [String] :next_token
|
2914
2963
|
# If the previous paginated request did not return all of the remaining
|
2915
2964
|
# results, the response object's `nextToken` parameter value is set to
|
@@ -3459,6 +3508,8 @@ module Aws::RoboMaker
|
|
3459
3508
|
|
3460
3509
|
# Registers a robot with a fleet.
|
3461
3510
|
#
|
3511
|
+
# This API is no longer supported and will throw an error if used.
|
3512
|
+
#
|
3462
3513
|
# @option params [required, String] :fleet
|
3463
3514
|
# The Amazon Resource Name (ARN) of the fleet.
|
3464
3515
|
#
|
@@ -3884,6 +3935,9 @@ module Aws::RoboMaker
|
|
3884
3935
|
# Syncrhonizes robots in a fleet to the latest deployment. This is
|
3885
3936
|
# helpful if robots were added after a deployment.
|
3886
3937
|
#
|
3938
|
+
# This API will no longer be supported as of May 2, 2022. Use it to
|
3939
|
+
# remove resources that were created for Deployment Service.
|
3940
|
+
#
|
3887
3941
|
# @option params [required, String] :client_request_token
|
3888
3942
|
# Unique, case-sensitive identifier that you provide to ensure the
|
3889
3943
|
# idempotency of the request.
|
@@ -4254,7 +4308,7 @@ module Aws::RoboMaker
|
|
4254
4308
|
params: params,
|
4255
4309
|
config: config)
|
4256
4310
|
context[:gem_name] = 'aws-sdk-robomaker'
|
4257
|
-
context[:gem_version] = '1.
|
4311
|
+
context[:gem_version] = '1.50.0'
|
4258
4312
|
Seahorse::Client::Request.new(handlers, context)
|
4259
4313
|
end
|
4260
4314
|
|
@@ -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.50.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-24 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.127.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.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|