aws-sdk-ram 1.13.0 → 1.18.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-ram.rb +7 -4
- data/lib/aws-sdk-ram/client.rb +134 -20
- data/lib/aws-sdk-ram/client_api.rb +33 -0
- data/lib/aws-sdk-ram/errors.rb +43 -21
- data/lib/aws-sdk-ram/resource.rb +1 -0
- data/lib/aws-sdk-ram/types.rb +74 -6
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 35e60d864164f310b5dfcb60259299ffdfdd878c84a07515ff0babbbfc9e9d3d
|
4
|
+
data.tar.gz: f2d3757daae94c3ca60d8301cdee56da0452851c3bc212c30460646c5a514f5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13b0cc76ac5223571e1c1e30b9ca3fc9dfbb4f51a7513e7c9f54611392b05663397e98ed98b2c6508a395a7c44ca998326ce4e399a24e92f9a7806d076616f46
|
7
|
+
data.tar.gz: 21d3cb4074bf63637796fd4380571a169409de44937d66219bc478516e6082e43a21bdc2f44f020fd864ebf50c4aade96efcdd7fbf6ee1307cccc2789d6bf97c
|
data/lib/aws-sdk-ram.rb
CHANGED
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-ram/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# ram = Aws::RAM::Client.new
|
28
|
+
# resp = ram.accept_resource_share_invitation(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from AWS Resource Access Manager
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from AWS Resource Access Manager are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::RAM::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all AWS Resource Access Manager API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-ram/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::RAM
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.18.1'
|
46
49
|
|
47
50
|
end
|
data/lib/aws-sdk-ram/client.rb
CHANGED
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
30
|
|
30
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:ram)
|
31
32
|
|
32
33
|
module Aws::RAM
|
34
|
+
# An API client for RAM. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
|
+
#
|
36
|
+
# client = Aws::RAM::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
41
|
+
#
|
42
|
+
# For details on configuring region and credentials see
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
44
|
+
#
|
45
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
46
|
class Client < Seahorse::Client::Base
|
34
47
|
|
35
48
|
include Aws::ClientStubs
|
@@ -57,6 +70,7 @@ module Aws::RAM
|
|
57
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
75
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
76
|
|
@@ -93,7 +107,7 @@ module Aws::RAM
|
|
93
107
|
# @option options [required, String] :region
|
94
108
|
# The AWS region to connect to. The configured `:region` is
|
95
109
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
97
111
|
#
|
98
112
|
# * `Aws.config[:region]`
|
99
113
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +122,12 @@ module Aws::RAM
|
|
108
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
123
|
# the background every 60 secs (default). Defaults to `false`.
|
110
124
|
#
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
129
|
+
# not retry instead of sleeping.
|
130
|
+
#
|
111
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
133
|
# this client.
|
@@ -132,6 +152,10 @@ module Aws::RAM
|
|
132
152
|
# When `true`, an attempt is made to coerce request parameters into
|
133
153
|
# the required types.
|
134
154
|
#
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
158
|
+
#
|
135
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
160
|
# Set to true to disable SDK automatically adding host prefix
|
137
161
|
# to default service endpoint when available.
|
@@ -139,7 +163,7 @@ module Aws::RAM
|
|
139
163
|
# @option options [String] :endpoint
|
140
164
|
# The client endpoint is normally constructed from the `:region`
|
141
165
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
167
|
#
|
144
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +178,7 @@ module Aws::RAM
|
|
154
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
179
|
#
|
156
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
182
|
#
|
159
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
184
|
# The log formatter.
|
@@ -166,15 +190,29 @@ module Aws::RAM
|
|
166
190
|
# The Logger instance to send log messages to. If this option
|
167
191
|
# is not set, logging will be disabled.
|
168
192
|
#
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
195
|
+
# a single request, including the initial attempt. For example,
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
198
|
+
#
|
169
199
|
# @option options [String] :profile ("default")
|
170
200
|
# Used when loading credentials from the shared credentials file
|
171
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
202
|
#
|
203
|
+
# @option options [Proc] :retry_backoff
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
206
|
+
#
|
173
207
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
209
|
+
# is only used in the `legacy` retry mode.
|
175
210
|
#
|
176
211
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
215
|
+
# in the `legacy` retry mode.
|
178
216
|
#
|
179
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
218
|
#
|
@@ -182,11 +220,30 @@ module Aws::RAM
|
|
182
220
|
# The maximum number of times to retry failed requests. Only
|
183
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
222
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
187
226
|
#
|
188
227
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
229
|
+
# used by the default backoff function. This option is only used in the
|
230
|
+
# `legacy` retry mode.
|
231
|
+
#
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
190
247
|
#
|
191
248
|
# @option options [String] :secret_access_key
|
192
249
|
#
|
@@ -209,16 +266,15 @@ module Aws::RAM
|
|
209
266
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
267
|
#
|
211
268
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
269
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
270
|
# `Timeout::Error`.
|
214
271
|
#
|
215
272
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
273
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
274
|
+
# safely be set per-request on the session.
|
219
275
|
#
|
220
276
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
277
|
+
# seconds a connection is allowed to sit idle before it is
|
222
278
|
# considered stale. Stale connections are closed and removed
|
223
279
|
# from the pool before making a request.
|
224
280
|
#
|
@@ -227,7 +283,7 @@ module Aws::RAM
|
|
227
283
|
# request body. This option has no effect unless the request has
|
228
284
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
285
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
286
|
+
# request on the session.
|
231
287
|
#
|
232
288
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
289
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -691,6 +747,8 @@ module Aws::RAM
|
|
691
747
|
# * {Types::GetResourcePoliciesResponse#policies #policies} => Array<String>
|
692
748
|
# * {Types::GetResourcePoliciesResponse#next_token #next_token} => String
|
693
749
|
#
|
750
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
751
|
+
#
|
694
752
|
# @example Request syntax with placeholder values
|
695
753
|
#
|
696
754
|
# resp = client.get_resource_policies({
|
@@ -750,6 +808,8 @@ module Aws::RAM
|
|
750
808
|
# * {Types::GetResourceShareAssociationsResponse#resource_share_associations #resource_share_associations} => Array<Types::ResourceShareAssociation>
|
751
809
|
# * {Types::GetResourceShareAssociationsResponse#next_token #next_token} => String
|
752
810
|
#
|
811
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
812
|
+
#
|
753
813
|
# @example Request syntax with placeholder values
|
754
814
|
#
|
755
815
|
# resp = client.get_resource_share_associations({
|
@@ -806,6 +866,8 @@ module Aws::RAM
|
|
806
866
|
# * {Types::GetResourceShareInvitationsResponse#resource_share_invitations #resource_share_invitations} => Array<Types::ResourceShareInvitation>
|
807
867
|
# * {Types::GetResourceShareInvitationsResponse#next_token #next_token} => String
|
808
868
|
#
|
869
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
870
|
+
#
|
809
871
|
# @example Request syntax with placeholder values
|
810
872
|
#
|
811
873
|
# resp = client.get_resource_share_invitations({
|
@@ -877,6 +939,8 @@ module Aws::RAM
|
|
877
939
|
# * {Types::GetResourceSharesResponse#resource_shares #resource_shares} => Array<Types::ResourceShare>
|
878
940
|
# * {Types::GetResourceSharesResponse#next_token #next_token} => String
|
879
941
|
#
|
942
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
943
|
+
#
|
880
944
|
# @example Request syntax with placeholder values
|
881
945
|
#
|
882
946
|
# resp = client.get_resource_shares({
|
@@ -939,6 +1003,8 @@ module Aws::RAM
|
|
939
1003
|
# * {Types::ListPendingInvitationResourcesResponse#resources #resources} => Array<Types::Resource>
|
940
1004
|
# * {Types::ListPendingInvitationResourcesResponse#next_token #next_token} => String
|
941
1005
|
#
|
1006
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1007
|
+
#
|
942
1008
|
# @example Request syntax with placeholder values
|
943
1009
|
#
|
944
1010
|
# resp = client.list_pending_invitation_resources({
|
@@ -1034,10 +1100,13 @@ module Aws::RAM
|
|
1034
1100
|
# @option params [String] :resource_type
|
1035
1101
|
# The resource type.
|
1036
1102
|
#
|
1037
|
-
# Valid values: `
|
1103
|
+
# Valid values: `codebuild:Project` \| `codebuild:ReportGroup` \|
|
1104
|
+
# `ec2:CapacityReservation` \| `ec2:DedicatedHost` \| `ec2:Subnet` \|
|
1038
1105
|
# `ec2:TrafficMirrorTarget` \| `ec2:TransitGateway` \|
|
1039
|
-
# `
|
1040
|
-
# `
|
1106
|
+
# `imagebuilder:Component` \| `imagebuilder:Image` \|
|
1107
|
+
# `imagebuilder:ImageRecipe` \| `license-manager:LicenseConfiguration` I
|
1108
|
+
# `resource-groups:Group` \| `rds:Cluster` \|
|
1109
|
+
# `route53resolver:ResolverRule`
|
1041
1110
|
#
|
1042
1111
|
# @option params [Array<String>] :resource_share_arns
|
1043
1112
|
# The Amazon Resource Names (ARN) of the resource shares.
|
@@ -1055,6 +1124,8 @@ module Aws::RAM
|
|
1055
1124
|
# * {Types::ListPrincipalsResponse#principals #principals} => Array<Types::Principal>
|
1056
1125
|
# * {Types::ListPrincipalsResponse#next_token #next_token} => String
|
1057
1126
|
#
|
1127
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1128
|
+
#
|
1058
1129
|
# @example Request syntax with placeholder values
|
1059
1130
|
#
|
1060
1131
|
# resp = client.list_principals({
|
@@ -1135,6 +1206,44 @@ module Aws::RAM
|
|
1135
1206
|
req.send_request(options)
|
1136
1207
|
end
|
1137
1208
|
|
1209
|
+
# Lists the shareable resource types supported by AWS RAM.
|
1210
|
+
#
|
1211
|
+
# @option params [String] :next_token
|
1212
|
+
# The token for the next page of results.
|
1213
|
+
#
|
1214
|
+
# @option params [Integer] :max_results
|
1215
|
+
# The maximum number of results to return with a single call. To
|
1216
|
+
# retrieve the remaining results, make another call with the returned
|
1217
|
+
# `nextToken` value.
|
1218
|
+
#
|
1219
|
+
# @return [Types::ListResourceTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1220
|
+
#
|
1221
|
+
# * {Types::ListResourceTypesResponse#resource_types #resource_types} => Array<Types::ServiceNameAndResourceType>
|
1222
|
+
# * {Types::ListResourceTypesResponse#next_token #next_token} => String
|
1223
|
+
#
|
1224
|
+
# @example Request syntax with placeholder values
|
1225
|
+
#
|
1226
|
+
# resp = client.list_resource_types({
|
1227
|
+
# next_token: "String",
|
1228
|
+
# max_results: 1,
|
1229
|
+
# })
|
1230
|
+
#
|
1231
|
+
# @example Response structure
|
1232
|
+
#
|
1233
|
+
# resp.resource_types #=> Array
|
1234
|
+
# resp.resource_types[0].resource_type #=> String
|
1235
|
+
# resp.resource_types[0].service_name #=> String
|
1236
|
+
# resp.next_token #=> String
|
1237
|
+
#
|
1238
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ram-2018-01-04/ListResourceTypes AWS API Documentation
|
1239
|
+
#
|
1240
|
+
# @overload list_resource_types(params = {})
|
1241
|
+
# @param [Hash] params ({})
|
1242
|
+
def list_resource_types(params = {}, options = {})
|
1243
|
+
req = build_request(:list_resource_types, params)
|
1244
|
+
req.send_request(options)
|
1245
|
+
end
|
1246
|
+
|
1138
1247
|
# Lists the resources that you added to a resource shares or the
|
1139
1248
|
# resources that are shared with you.
|
1140
1249
|
#
|
@@ -1147,10 +1256,13 @@ module Aws::RAM
|
|
1147
1256
|
# @option params [String] :resource_type
|
1148
1257
|
# The resource type.
|
1149
1258
|
#
|
1150
|
-
# Valid values: `
|
1259
|
+
# Valid values: `codebuild:Project` \| `codebuild:ReportGroup` \|
|
1260
|
+
# `ec2:CapacityReservation` \| `ec2:DedicatedHost` \| `ec2:Subnet` \|
|
1151
1261
|
# `ec2:TrafficMirrorTarget` \| `ec2:TransitGateway` \|
|
1152
|
-
# `
|
1153
|
-
# `
|
1262
|
+
# `imagebuilder:Component` \| `imagebuilder:Image` \|
|
1263
|
+
# `imagebuilder:ImageRecipe` \| `license-manager:LicenseConfiguration` I
|
1264
|
+
# `resource-groups:Group` \| `rds:Cluster` \|
|
1265
|
+
# `route53resolver:ResolverRule`
|
1154
1266
|
#
|
1155
1267
|
# @option params [Array<String>] :resource_arns
|
1156
1268
|
# The Amazon Resource Names (ARN) of the resources.
|
@@ -1171,6 +1283,8 @@ module Aws::RAM
|
|
1171
1283
|
# * {Types::ListResourcesResponse#resources #resources} => Array<Types::Resource>
|
1172
1284
|
# * {Types::ListResourcesResponse#next_token #next_token} => String
|
1173
1285
|
#
|
1286
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1287
|
+
#
|
1174
1288
|
# @example Request syntax with placeholder values
|
1175
1289
|
#
|
1176
1290
|
# resp = client.list_resources({
|
@@ -1419,7 +1533,7 @@ module Aws::RAM
|
|
1419
1533
|
params: params,
|
1420
1534
|
config: config)
|
1421
1535
|
context[:gem_name] = 'aws-sdk-ram'
|
1422
|
-
context[:gem_version] = '1.
|
1536
|
+
context[:gem_version] = '1.18.1'
|
1423
1537
|
Seahorse::Client::Request.new(handlers, context)
|
1424
1538
|
end
|
1425
1539
|
|
@@ -55,6 +55,8 @@ module Aws::RAM
|
|
55
55
|
ListPrincipalsResponse = Shapes::StructureShape.new(name: 'ListPrincipalsResponse')
|
56
56
|
ListResourceSharePermissionsRequest = Shapes::StructureShape.new(name: 'ListResourceSharePermissionsRequest')
|
57
57
|
ListResourceSharePermissionsResponse = Shapes::StructureShape.new(name: 'ListResourceSharePermissionsResponse')
|
58
|
+
ListResourceTypesRequest = Shapes::StructureShape.new(name: 'ListResourceTypesRequest')
|
59
|
+
ListResourceTypesResponse = Shapes::StructureShape.new(name: 'ListResourceTypesResponse')
|
58
60
|
ListResourcesRequest = Shapes::StructureShape.new(name: 'ListResourcesRequest')
|
59
61
|
ListResourcesResponse = Shapes::StructureShape.new(name: 'ListResourcesResponse')
|
60
62
|
MalformedArnException = Shapes::StructureShape.new(name: 'MalformedArnException')
|
@@ -99,6 +101,8 @@ module Aws::RAM
|
|
99
101
|
ResourceShareStatus = Shapes::StringShape.new(name: 'ResourceShareStatus')
|
100
102
|
ResourceStatus = Shapes::StringShape.new(name: 'ResourceStatus')
|
101
103
|
ServerInternalException = Shapes::StructureShape.new(name: 'ServerInternalException')
|
104
|
+
ServiceNameAndResourceType = Shapes::StructureShape.new(name: 'ServiceNameAndResourceType')
|
105
|
+
ServiceNameAndResourceTypeList = Shapes::ListShape.new(name: 'ServiceNameAndResourceTypeList')
|
102
106
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
103
107
|
String = Shapes::StringShape.new(name: 'String')
|
104
108
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
@@ -306,6 +310,14 @@ module Aws::RAM
|
|
306
310
|
ListResourceSharePermissionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
307
311
|
ListResourceSharePermissionsResponse.struct_class = Types::ListResourceSharePermissionsResponse
|
308
312
|
|
313
|
+
ListResourceTypesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
314
|
+
ListResourceTypesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
|
315
|
+
ListResourceTypesRequest.struct_class = Types::ListResourceTypesRequest
|
316
|
+
|
317
|
+
ListResourceTypesResponse.add_member(:resource_types, Shapes::ShapeRef.new(shape: ServiceNameAndResourceTypeList, location_name: "resourceTypes"))
|
318
|
+
ListResourceTypesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
319
|
+
ListResourceTypesResponse.struct_class = Types::ListResourceTypesResponse
|
320
|
+
|
309
321
|
ListResourcesRequest.add_member(:resource_owner, Shapes::ShapeRef.new(shape: ResourceOwner, required: true, location_name: "resourceOwner"))
|
310
322
|
ListResourcesRequest.add_member(:principal, Shapes::ShapeRef.new(shape: String, location_name: "principal"))
|
311
323
|
ListResourcesRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
@@ -457,6 +469,12 @@ module Aws::RAM
|
|
457
469
|
ServerInternalException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
458
470
|
ServerInternalException.struct_class = Types::ServerInternalException
|
459
471
|
|
472
|
+
ServiceNameAndResourceType.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
473
|
+
ServiceNameAndResourceType.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceName"))
|
474
|
+
ServiceNameAndResourceType.struct_class = Types::ServiceNameAndResourceType
|
475
|
+
|
476
|
+
ServiceNameAndResourceTypeList.member = Shapes::ShapeRef.new(shape: ServiceNameAndResourceType)
|
477
|
+
|
460
478
|
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
461
479
|
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
462
480
|
|
@@ -681,6 +699,7 @@ module Aws::RAM
|
|
681
699
|
o.errors << Shapes::ShapeRef.new(shape: MalformedArnException)
|
682
700
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
683
701
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
702
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceArnNotFoundException)
|
684
703
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
685
704
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
686
705
|
o[:pager] = Aws::Pager.new(
|
@@ -721,6 +740,7 @@ module Aws::RAM
|
|
721
740
|
o.errors << Shapes::ShapeRef.new(shape: ResourceShareInvitationArnNotFoundException)
|
722
741
|
o.errors << Shapes::ShapeRef.new(shape: InvalidMaxResultsException)
|
723
742
|
o.errors << Shapes::ShapeRef.new(shape: MalformedArnException)
|
743
|
+
o.errors << Shapes::ShapeRef.new(shape: UnknownResourceException)
|
724
744
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
725
745
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
726
746
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
@@ -824,6 +844,18 @@ module Aws::RAM
|
|
824
844
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
825
845
|
end)
|
826
846
|
|
847
|
+
api.add_operation(:list_resource_types, Seahorse::Model::Operation.new.tap do |o|
|
848
|
+
o.name = "ListResourceTypes"
|
849
|
+
o.http_method = "POST"
|
850
|
+
o.http_request_uri = "/listresourcetypes"
|
851
|
+
o.input = Shapes::ShapeRef.new(shape: ListResourceTypesRequest)
|
852
|
+
o.output = Shapes::ShapeRef.new(shape: ListResourceTypesResponse)
|
853
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
|
854
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
855
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
856
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
857
|
+
end)
|
858
|
+
|
827
859
|
api.add_operation(:list_resources, Seahorse::Model::Operation.new.tap do |o|
|
828
860
|
o.name = "ListResources"
|
829
861
|
o.http_method = "POST"
|
@@ -857,6 +889,7 @@ module Aws::RAM
|
|
857
889
|
o.errors << Shapes::ShapeRef.new(shape: MissingRequiredParameterException)
|
858
890
|
o.errors << Shapes::ShapeRef.new(shape: ServerInternalException)
|
859
891
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
892
|
+
o.errors << Shapes::ShapeRef.new(shape: UnknownResourceException)
|
860
893
|
end)
|
861
894
|
|
862
895
|
api.add_operation(:reject_resource_share_invitation, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-ram/errors.rb
CHANGED
@@ -6,6 +6,49 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::RAM
|
9
|
+
|
10
|
+
# When RAM returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::RAM::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all RAM errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::RAM::Errors::ServiceError
|
18
|
+
# # rescues all RAM API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {IdempotentParameterMismatchException}
|
29
|
+
# * {InvalidClientTokenException}
|
30
|
+
# * {InvalidMaxResultsException}
|
31
|
+
# * {InvalidNextTokenException}
|
32
|
+
# * {InvalidParameterException}
|
33
|
+
# * {InvalidResourceTypeException}
|
34
|
+
# * {InvalidStateTransitionException}
|
35
|
+
# * {MalformedArnException}
|
36
|
+
# * {MissingRequiredParameterException}
|
37
|
+
# * {OperationNotPermittedException}
|
38
|
+
# * {ResourceArnNotFoundException}
|
39
|
+
# * {ResourceShareInvitationAlreadyAcceptedException}
|
40
|
+
# * {ResourceShareInvitationAlreadyRejectedException}
|
41
|
+
# * {ResourceShareInvitationArnNotFoundException}
|
42
|
+
# * {ResourceShareInvitationExpiredException}
|
43
|
+
# * {ResourceShareLimitExceededException}
|
44
|
+
# * {ServerInternalException}
|
45
|
+
# * {ServiceUnavailableException}
|
46
|
+
# * {TagLimitExceededException}
|
47
|
+
# * {TagPolicyViolationException}
|
48
|
+
# * {UnknownResourceException}
|
49
|
+
#
|
50
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
51
|
+
# if they are not defined above.
|
9
52
|
module Errors
|
10
53
|
|
11
54
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +66,6 @@ module Aws::RAM
|
|
23
66
|
def message
|
24
67
|
@message || @data[:message]
|
25
68
|
end
|
26
|
-
|
27
69
|
end
|
28
70
|
|
29
71
|
class InvalidClientTokenException < ServiceError
|
@@ -39,7 +81,6 @@ module Aws::RAM
|
|
39
81
|
def message
|
40
82
|
@message || @data[:message]
|
41
83
|
end
|
42
|
-
|
43
84
|
end
|
44
85
|
|
45
86
|
class InvalidMaxResultsException < ServiceError
|
@@ -55,7 +96,6 @@ module Aws::RAM
|
|
55
96
|
def message
|
56
97
|
@message || @data[:message]
|
57
98
|
end
|
58
|
-
|
59
99
|
end
|
60
100
|
|
61
101
|
class InvalidNextTokenException < ServiceError
|
@@ -71,7 +111,6 @@ module Aws::RAM
|
|
71
111
|
def message
|
72
112
|
@message || @data[:message]
|
73
113
|
end
|
74
|
-
|
75
114
|
end
|
76
115
|
|
77
116
|
class InvalidParameterException < ServiceError
|
@@ -87,7 +126,6 @@ module Aws::RAM
|
|
87
126
|
def message
|
88
127
|
@message || @data[:message]
|
89
128
|
end
|
90
|
-
|
91
129
|
end
|
92
130
|
|
93
131
|
class InvalidResourceTypeException < ServiceError
|
@@ -103,7 +141,6 @@ module Aws::RAM
|
|
103
141
|
def message
|
104
142
|
@message || @data[:message]
|
105
143
|
end
|
106
|
-
|
107
144
|
end
|
108
145
|
|
109
146
|
class InvalidStateTransitionException < ServiceError
|
@@ -119,7 +156,6 @@ module Aws::RAM
|
|
119
156
|
def message
|
120
157
|
@message || @data[:message]
|
121
158
|
end
|
122
|
-
|
123
159
|
end
|
124
160
|
|
125
161
|
class MalformedArnException < ServiceError
|
@@ -135,7 +171,6 @@ module Aws::RAM
|
|
135
171
|
def message
|
136
172
|
@message || @data[:message]
|
137
173
|
end
|
138
|
-
|
139
174
|
end
|
140
175
|
|
141
176
|
class MissingRequiredParameterException < ServiceError
|
@@ -151,7 +186,6 @@ module Aws::RAM
|
|
151
186
|
def message
|
152
187
|
@message || @data[:message]
|
153
188
|
end
|
154
|
-
|
155
189
|
end
|
156
190
|
|
157
191
|
class OperationNotPermittedException < ServiceError
|
@@ -167,7 +201,6 @@ module Aws::RAM
|
|
167
201
|
def message
|
168
202
|
@message || @data[:message]
|
169
203
|
end
|
170
|
-
|
171
204
|
end
|
172
205
|
|
173
206
|
class ResourceArnNotFoundException < ServiceError
|
@@ -183,7 +216,6 @@ module Aws::RAM
|
|
183
216
|
def message
|
184
217
|
@message || @data[:message]
|
185
218
|
end
|
186
|
-
|
187
219
|
end
|
188
220
|
|
189
221
|
class ResourceShareInvitationAlreadyAcceptedException < ServiceError
|
@@ -199,7 +231,6 @@ module Aws::RAM
|
|
199
231
|
def message
|
200
232
|
@message || @data[:message]
|
201
233
|
end
|
202
|
-
|
203
234
|
end
|
204
235
|
|
205
236
|
class ResourceShareInvitationAlreadyRejectedException < ServiceError
|
@@ -215,7 +246,6 @@ module Aws::RAM
|
|
215
246
|
def message
|
216
247
|
@message || @data[:message]
|
217
248
|
end
|
218
|
-
|
219
249
|
end
|
220
250
|
|
221
251
|
class ResourceShareInvitationArnNotFoundException < ServiceError
|
@@ -231,7 +261,6 @@ module Aws::RAM
|
|
231
261
|
def message
|
232
262
|
@message || @data[:message]
|
233
263
|
end
|
234
|
-
|
235
264
|
end
|
236
265
|
|
237
266
|
class ResourceShareInvitationExpiredException < ServiceError
|
@@ -247,7 +276,6 @@ module Aws::RAM
|
|
247
276
|
def message
|
248
277
|
@message || @data[:message]
|
249
278
|
end
|
250
|
-
|
251
279
|
end
|
252
280
|
|
253
281
|
class ResourceShareLimitExceededException < ServiceError
|
@@ -263,7 +291,6 @@ module Aws::RAM
|
|
263
291
|
def message
|
264
292
|
@message || @data[:message]
|
265
293
|
end
|
266
|
-
|
267
294
|
end
|
268
295
|
|
269
296
|
class ServerInternalException < ServiceError
|
@@ -279,7 +306,6 @@ module Aws::RAM
|
|
279
306
|
def message
|
280
307
|
@message || @data[:message]
|
281
308
|
end
|
282
|
-
|
283
309
|
end
|
284
310
|
|
285
311
|
class ServiceUnavailableException < ServiceError
|
@@ -295,7 +321,6 @@ module Aws::RAM
|
|
295
321
|
def message
|
296
322
|
@message || @data[:message]
|
297
323
|
end
|
298
|
-
|
299
324
|
end
|
300
325
|
|
301
326
|
class TagLimitExceededException < ServiceError
|
@@ -311,7 +336,6 @@ module Aws::RAM
|
|
311
336
|
def message
|
312
337
|
@message || @data[:message]
|
313
338
|
end
|
314
|
-
|
315
339
|
end
|
316
340
|
|
317
341
|
class TagPolicyViolationException < ServiceError
|
@@ -327,7 +351,6 @@ module Aws::RAM
|
|
327
351
|
def message
|
328
352
|
@message || @data[:message]
|
329
353
|
end
|
330
|
-
|
331
354
|
end
|
332
355
|
|
333
356
|
class UnknownResourceException < ServiceError
|
@@ -343,7 +366,6 @@ module Aws::RAM
|
|
343
366
|
def message
|
344
367
|
@message || @data[:message]
|
345
368
|
end
|
346
|
-
|
347
369
|
end
|
348
370
|
|
349
371
|
end
|
data/lib/aws-sdk-ram/resource.rb
CHANGED
data/lib/aws-sdk-ram/types.rb
CHANGED
@@ -922,10 +922,13 @@ module Aws::RAM
|
|
922
922
|
# @!attribute [rw] resource_type
|
923
923
|
# The resource type.
|
924
924
|
#
|
925
|
-
# Valid values: `
|
925
|
+
# Valid values: `codebuild:Project` \| `codebuild:ReportGroup` \|
|
926
|
+
# `ec2:CapacityReservation` \| `ec2:DedicatedHost` \| `ec2:Subnet` \|
|
926
927
|
# `ec2:TrafficMirrorTarget` \| `ec2:TransitGateway` \|
|
927
|
-
# `
|
928
|
-
# `
|
928
|
+
# `imagebuilder:Component` \| `imagebuilder:Image` \|
|
929
|
+
# `imagebuilder:ImageRecipe` \| `license-manager:LicenseConfiguration`
|
930
|
+
# I `resource-groups:Group` \| `rds:Cluster` \|
|
931
|
+
# `route53resolver:ResolverRule`
|
929
932
|
# @return [String]
|
930
933
|
#
|
931
934
|
# @!attribute [rw] resource_share_arns
|
@@ -1021,6 +1024,49 @@ module Aws::RAM
|
|
1021
1024
|
include Aws::Structure
|
1022
1025
|
end
|
1023
1026
|
|
1027
|
+
# @note When making an API call, you may pass ListResourceTypesRequest
|
1028
|
+
# data as a hash:
|
1029
|
+
#
|
1030
|
+
# {
|
1031
|
+
# next_token: "String",
|
1032
|
+
# max_results: 1,
|
1033
|
+
# }
|
1034
|
+
#
|
1035
|
+
# @!attribute [rw] next_token
|
1036
|
+
# The token for the next page of results.
|
1037
|
+
# @return [String]
|
1038
|
+
#
|
1039
|
+
# @!attribute [rw] max_results
|
1040
|
+
# The maximum number of results to return with a single call. To
|
1041
|
+
# retrieve the remaining results, make another call with the returned
|
1042
|
+
# `nextToken` value.
|
1043
|
+
# @return [Integer]
|
1044
|
+
#
|
1045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ram-2018-01-04/ListResourceTypesRequest AWS API Documentation
|
1046
|
+
#
|
1047
|
+
class ListResourceTypesRequest < Struct.new(
|
1048
|
+
:next_token,
|
1049
|
+
:max_results)
|
1050
|
+
include Aws::Structure
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
# @!attribute [rw] resource_types
|
1054
|
+
# The shareable resource types supported by AWS RAM.
|
1055
|
+
# @return [Array<Types::ServiceNameAndResourceType>]
|
1056
|
+
#
|
1057
|
+
# @!attribute [rw] next_token
|
1058
|
+
# The token to use to retrieve the next page of results. This value is
|
1059
|
+
# `null` when there are no more results to return.
|
1060
|
+
# @return [String]
|
1061
|
+
#
|
1062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ram-2018-01-04/ListResourceTypesResponse AWS API Documentation
|
1063
|
+
#
|
1064
|
+
class ListResourceTypesResponse < Struct.new(
|
1065
|
+
:resource_types,
|
1066
|
+
:next_token)
|
1067
|
+
include Aws::Structure
|
1068
|
+
end
|
1069
|
+
|
1024
1070
|
# @note When making an API call, you may pass ListResourcesRequest
|
1025
1071
|
# data as a hash:
|
1026
1072
|
#
|
@@ -1045,10 +1091,13 @@ module Aws::RAM
|
|
1045
1091
|
# @!attribute [rw] resource_type
|
1046
1092
|
# The resource type.
|
1047
1093
|
#
|
1048
|
-
# Valid values: `
|
1094
|
+
# Valid values: `codebuild:Project` \| `codebuild:ReportGroup` \|
|
1095
|
+
# `ec2:CapacityReservation` \| `ec2:DedicatedHost` \| `ec2:Subnet` \|
|
1049
1096
|
# `ec2:TrafficMirrorTarget` \| `ec2:TransitGateway` \|
|
1050
|
-
# `
|
1051
|
-
# `
|
1097
|
+
# `imagebuilder:Component` \| `imagebuilder:Image` \|
|
1098
|
+
# `imagebuilder:ImageRecipe` \| `license-manager:LicenseConfiguration`
|
1099
|
+
# I `resource-groups:Group` \| `rds:Cluster` \|
|
1100
|
+
# `route53resolver:ResolverRule`
|
1052
1101
|
# @return [String]
|
1053
1102
|
#
|
1054
1103
|
# @!attribute [rw] resource_arns
|
@@ -1659,6 +1708,25 @@ module Aws::RAM
|
|
1659
1708
|
include Aws::Structure
|
1660
1709
|
end
|
1661
1710
|
|
1711
|
+
# Information about the shareable resource types and the AWS services to
|
1712
|
+
# which they belong.
|
1713
|
+
#
|
1714
|
+
# @!attribute [rw] resource_type
|
1715
|
+
# The shareable resource types.
|
1716
|
+
# @return [String]
|
1717
|
+
#
|
1718
|
+
# @!attribute [rw] service_name
|
1719
|
+
# The name of the AWS services to which the resources belong.
|
1720
|
+
# @return [String]
|
1721
|
+
#
|
1722
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ram-2018-01-04/ServiceNameAndResourceType AWS API Documentation
|
1723
|
+
#
|
1724
|
+
class ServiceNameAndResourceType < Struct.new(
|
1725
|
+
:resource_type,
|
1726
|
+
:service_name)
|
1727
|
+
include Aws::Structure
|
1728
|
+
end
|
1729
|
+
|
1662
1730
|
# The service is not available.
|
1663
1731
|
#
|
1664
1732
|
# @!attribute [rw] message
|
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.18.1
|
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: 2020-06-11 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - RAM
|