aws-sdk-robomaker 1.47.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-robomaker/client.rb +44 -1
- 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,16 @@
|
|
|
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
|
+
|
|
4
14
|
1.47.0 (2021-12-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.49.0
|
|
@@ -28,6 +28,7 @@ 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
30
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
32
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
33
34
|
|
|
@@ -75,6 +76,7 @@ module Aws::RoboMaker
|
|
|
75
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
76
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
77
78
|
add_plugin(Aws::Plugins::DefaultsMode)
|
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
|
78
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
79
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
80
82
|
|
|
@@ -501,6 +503,9 @@ module Aws::RoboMaker
|
|
|
501
503
|
|
|
502
504
|
# Cancels the specified deployment job.
|
|
503
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
|
+
#
|
|
504
509
|
# @option params [required, String] :job
|
|
505
510
|
# The deployment job ARN to cancel.
|
|
506
511
|
#
|
|
@@ -614,6 +619,8 @@ module Aws::RoboMaker
|
|
|
614
619
|
# Deploys a specific version of a robot application to robots in a
|
|
615
620
|
# fleet.
|
|
616
621
|
#
|
|
622
|
+
# This API is no longer supported and will throw an error if used.
|
|
623
|
+
#
|
|
617
624
|
# The robot application must have a numbered `applicationVersion` for
|
|
618
625
|
# consistency reasons. To create a new version, use
|
|
619
626
|
# `CreateRobotApplicationVersion` or see [Creating a Robot Application
|
|
@@ -733,6 +740,8 @@ module Aws::RoboMaker
|
|
|
733
740
|
# Creates a fleet, a logical group of robots running the same robot
|
|
734
741
|
# application.
|
|
735
742
|
#
|
|
743
|
+
# This API is no longer supported and will throw an error if used.
|
|
744
|
+
#
|
|
736
745
|
# @option params [required, String] :name
|
|
737
746
|
# The name of the fleet.
|
|
738
747
|
#
|
|
@@ -775,6 +784,8 @@ module Aws::RoboMaker
|
|
|
775
784
|
|
|
776
785
|
# Creates a robot.
|
|
777
786
|
#
|
|
787
|
+
# This API is no longer supported and will throw an error if used.
|
|
788
|
+
#
|
|
778
789
|
# @option params [required, String] :name
|
|
779
790
|
# The name for the robot.
|
|
780
791
|
#
|
|
@@ -1671,6 +1682,9 @@ module Aws::RoboMaker
|
|
|
1671
1682
|
|
|
1672
1683
|
# Deletes a fleet.
|
|
1673
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
|
+
#
|
|
1674
1688
|
# @option params [required, String] :fleet
|
|
1675
1689
|
# The Amazon Resource Name (ARN) of the fleet.
|
|
1676
1690
|
#
|
|
@@ -1693,6 +1707,9 @@ module Aws::RoboMaker
|
|
|
1693
1707
|
|
|
1694
1708
|
# Deletes a robot.
|
|
1695
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
|
+
#
|
|
1696
1713
|
# @option params [required, String] :robot
|
|
1697
1714
|
# The Amazon Resource Name (ARN) of the robot.
|
|
1698
1715
|
#
|
|
@@ -1790,6 +1807,9 @@ module Aws::RoboMaker
|
|
|
1790
1807
|
|
|
1791
1808
|
# Deregisters a robot.
|
|
1792
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
|
+
#
|
|
1793
1813
|
# @option params [required, String] :fleet
|
|
1794
1814
|
# The Amazon Resource Name (ARN) of the fleet.
|
|
1795
1815
|
#
|
|
@@ -1824,6 +1844,9 @@ module Aws::RoboMaker
|
|
|
1824
1844
|
|
|
1825
1845
|
# Describes a deployment job.
|
|
1826
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
|
+
#
|
|
1827
1850
|
# @option params [required, String] :job
|
|
1828
1851
|
# The Amazon Resource Name (ARN) of the deployment job.
|
|
1829
1852
|
#
|
|
@@ -1894,6 +1917,9 @@ module Aws::RoboMaker
|
|
|
1894
1917
|
|
|
1895
1918
|
# Describes a fleet.
|
|
1896
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
|
+
#
|
|
1897
1923
|
# @option params [required, String] :fleet
|
|
1898
1924
|
# The Amazon Resource Name (ARN) of the fleet.
|
|
1899
1925
|
#
|
|
@@ -1946,6 +1972,9 @@ module Aws::RoboMaker
|
|
|
1946
1972
|
|
|
1947
1973
|
# Describes a robot.
|
|
1948
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
|
+
#
|
|
1949
1978
|
# @option params [required, String] :robot
|
|
1950
1979
|
# The Amazon Resource Name (ARN) of the robot to be described.
|
|
1951
1980
|
#
|
|
@@ -2693,6 +2722,9 @@ module Aws::RoboMaker
|
|
|
2693
2722
|
# Returns a list of deployment jobs for a fleet. You can optionally
|
|
2694
2723
|
# provide filters to retrieve specific deployment jobs.
|
|
2695
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
|
+
#
|
|
2696
2728
|
# @option params [Array<Types::Filter>] :filters
|
|
2697
2729
|
# Optional filters to limit results.
|
|
2698
2730
|
#
|
|
@@ -2777,6 +2809,9 @@ module Aws::RoboMaker
|
|
|
2777
2809
|
# Returns a list of fleets. You can optionally provide filters to
|
|
2778
2810
|
# retrieve specific fleets.
|
|
2779
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
|
+
#
|
|
2780
2815
|
# @option params [String] :next_token
|
|
2781
2816
|
# If the previous paginated request did not return all of the remaining
|
|
2782
2817
|
# results, the response object's `nextToken` parameter value is set to
|
|
@@ -2919,6 +2954,9 @@ module Aws::RoboMaker
|
|
|
2919
2954
|
# Returns a list of robots. You can optionally provide filters to
|
|
2920
2955
|
# retrieve specific robots.
|
|
2921
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
|
+
#
|
|
2922
2960
|
# @option params [String] :next_token
|
|
2923
2961
|
# If the previous paginated request did not return all of the remaining
|
|
2924
2962
|
# results, the response object's `nextToken` parameter value is set to
|
|
@@ -3468,6 +3506,8 @@ module Aws::RoboMaker
|
|
|
3468
3506
|
|
|
3469
3507
|
# Registers a robot with a fleet.
|
|
3470
3508
|
#
|
|
3509
|
+
# This API is no longer supported and will throw an error if used.
|
|
3510
|
+
#
|
|
3471
3511
|
# @option params [required, String] :fleet
|
|
3472
3512
|
# The Amazon Resource Name (ARN) of the fleet.
|
|
3473
3513
|
#
|
|
@@ -3893,6 +3933,9 @@ module Aws::RoboMaker
|
|
|
3893
3933
|
# Syncrhonizes robots in a fleet to the latest deployment. This is
|
|
3894
3934
|
# helpful if robots were added after a deployment.
|
|
3895
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
|
+
#
|
|
3896
3939
|
# @option params [required, String] :client_request_token
|
|
3897
3940
|
# Unique, case-sensitive identifier that you provide to ensure the
|
|
3898
3941
|
# idempotency of the request.
|
|
@@ -4263,7 +4306,7 @@ module Aws::RoboMaker
|
|
|
4263
4306
|
params: params,
|
|
4264
4307
|
config: config)
|
|
4265
4308
|
context[:gem_name] = 'aws-sdk-robomaker'
|
|
4266
|
-
context[:gem_version] = '1.
|
|
4309
|
+
context[:gem_version] = '1.49.0'
|
|
4267
4310
|
Seahorse::Client::Request.new(handlers, context)
|
|
4268
4311
|
end
|
|
4269
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
|