aws-sdk-ram 1.36.0 → 1.39.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ram/client.rb +17 -10
- data/lib/aws-sdk-ram/types.rb +11 -8
- data/lib/aws-sdk-ram.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: a1ade630d63954f4fb0bd703e0dee352288e8059e34bfd440cfb14782d1cb141
|
4
|
+
data.tar.gz: 7c9b9e86437a59854ba589c0a3fc63774f6c1043630a4bffb261f65821188c87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 165322bfcdf2b424670f2a3718ad20c82844a0849e974f2a2576f082af9280ffda4f867a7860240fed94f02ddd3a9badaabcbe6d5141a9f7a68e06fda7a82df0
|
7
|
+
data.tar.gz: 1bc9b28cd32a650397c1ab22d564ee183ddba6a2f3025b8d9dca061eacf2bb7654ff3716f0b93d11d0ffe461c085e53cd04cc8544aa81cde02625103cda19ea9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.39.0 (2022-03-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Document improvements to the RAM API operations and parameter descriptions.
|
8
|
+
|
9
|
+
1.38.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.37.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.36.0 (2022-01-14)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
data/lib/aws-sdk-ram/client.rb
CHANGED
@@ -27,7 +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'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::RAM
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -1340,10 +1344,11 @@ module Aws::RAM
|
|
1340
1344
|
# Specifies that you want to retrieve details of only those resource
|
1341
1345
|
# shares that match the following:
|
1342
1346
|
#
|
1343
|
-
# * <b> <code>SELF</code> </b> –
|
1347
|
+
# * <b> <code>SELF</code> </b> – resource shares that your account
|
1348
|
+
# shares with other accounts
|
1344
1349
|
#
|
1345
|
-
# * <b> <code>OTHER-ACCOUNTS</code> </b> –
|
1346
|
-
# share with
|
1350
|
+
# * <b> <code>OTHER-ACCOUNTS</code> </b> – resource shares that other
|
1351
|
+
# accounts share with your account
|
1347
1352
|
#
|
1348
1353
|
# @option params [String] :name
|
1349
1354
|
# Specifies the name of an individual resource share that you want to
|
@@ -1660,10 +1665,11 @@ module Aws::RAM
|
|
1660
1665
|
# Specifies that you want to list information for only resource shares
|
1661
1666
|
# that match the following:
|
1662
1667
|
#
|
1663
|
-
# * <b> <code>SELF</code> </b> –
|
1668
|
+
# * <b> <code>SELF</code> </b> – principals that your account is sharing
|
1669
|
+
# resources with
|
1664
1670
|
#
|
1665
|
-
# * <b> <code>OTHER-ACCOUNTS</code> </b> –
|
1666
|
-
#
|
1671
|
+
# * <b> <code>OTHER-ACCOUNTS</code> </b> – principals that are sharing
|
1672
|
+
# resources with your account
|
1667
1673
|
#
|
1668
1674
|
# @option params [String] :resource_arn
|
1669
1675
|
# Specifies that you want to list principal information for the resource
|
@@ -1912,17 +1918,18 @@ module Aws::RAM
|
|
1912
1918
|
req.send_request(options)
|
1913
1919
|
end
|
1914
1920
|
|
1915
|
-
# Lists the resources that you added to a resource
|
1921
|
+
# Lists the resources that you added to a resource share or the
|
1916
1922
|
# resources that are shared with you.
|
1917
1923
|
#
|
1918
1924
|
# @option params [required, String] :resource_owner
|
1919
1925
|
# Specifies that you want to list only the resource shares that match
|
1920
1926
|
# the following:
|
1921
1927
|
#
|
1922
|
-
# * <b> <code>SELF</code> </b> – resources that
|
1928
|
+
# * <b> <code>SELF</code> </b> – resources that your account shares with
|
1929
|
+
# other accounts
|
1923
1930
|
#
|
1924
1931
|
# * <b> <code>OTHER-ACCOUNTS</code> </b> – resources that other accounts
|
1925
|
-
# share with
|
1932
|
+
# share with your account
|
1926
1933
|
#
|
1927
1934
|
# @option params [String] :principal
|
1928
1935
|
# Specifies that you want to list only the resource shares that are
|
@@ -2295,7 +2302,7 @@ module Aws::RAM
|
|
2295
2302
|
params: params,
|
2296
2303
|
config: config)
|
2297
2304
|
context[:gem_name] = 'aws-sdk-ram'
|
2298
|
-
context[:gem_version] = '1.
|
2305
|
+
context[:gem_version] = '1.39.0'
|
2299
2306
|
Seahorse::Client::Request.new(handlers, context)
|
2300
2307
|
end
|
2301
2308
|
|
data/lib/aws-sdk-ram/types.rb
CHANGED
@@ -1073,10 +1073,11 @@ module Aws::RAM
|
|
1073
1073
|
# Specifies that you want to retrieve details of only those resource
|
1074
1074
|
# shares that match the following:
|
1075
1075
|
#
|
1076
|
-
# * <b> <code>SELF</code> </b> –
|
1076
|
+
# * <b> <code>SELF</code> </b> – resource shares that your account
|
1077
|
+
# shares with other accounts
|
1077
1078
|
#
|
1078
|
-
# * <b> <code>OTHER-ACCOUNTS</code> </b> –
|
1079
|
-
# accounts share with
|
1079
|
+
# * <b> <code>OTHER-ACCOUNTS</code> </b> – resource shares that other
|
1080
|
+
# accounts share with your account
|
1080
1081
|
# @return [String]
|
1081
1082
|
#
|
1082
1083
|
# @!attribute [rw] name
|
@@ -1502,10 +1503,11 @@ module Aws::RAM
|
|
1502
1503
|
# Specifies that you want to list information for only resource shares
|
1503
1504
|
# that match the following:
|
1504
1505
|
#
|
1505
|
-
# * <b> <code>SELF</code> </b> –
|
1506
|
+
# * <b> <code>SELF</code> </b> – principals that your account is
|
1507
|
+
# sharing resources with
|
1506
1508
|
#
|
1507
|
-
# * <b> <code>OTHER-ACCOUNTS</code> </b> –
|
1508
|
-
#
|
1509
|
+
# * <b> <code>OTHER-ACCOUNTS</code> </b> – principals that are sharing
|
1510
|
+
# resources with your account
|
1509
1511
|
# @return [String]
|
1510
1512
|
#
|
1511
1513
|
# @!attribute [rw] resource_arn
|
@@ -1795,10 +1797,11 @@ module Aws::RAM
|
|
1795
1797
|
# Specifies that you want to list only the resource shares that match
|
1796
1798
|
# the following:
|
1797
1799
|
#
|
1798
|
-
# * <b> <code>SELF</code> </b> – resources that
|
1800
|
+
# * <b> <code>SELF</code> </b> – resources that your account shares
|
1801
|
+
# with other accounts
|
1799
1802
|
#
|
1800
1803
|
# * <b> <code>OTHER-ACCOUNTS</code> </b> – resources that other
|
1801
|
-
# accounts share with
|
1804
|
+
# accounts share with your account
|
1802
1805
|
# @return [String]
|
1803
1806
|
#
|
1804
1807
|
# @!attribute [rw] principal
|
data/lib/aws-sdk-ram.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ram
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.39.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: 2022-
|
11
|
+
date: 2022-03-21 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
|