aws-sdk-resourcegroups 1.21.0 → 1.26.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 +5 -5
- data/lib/aws-sdk-resourcegroups.rb +9 -4
- data/lib/aws-sdk-resourcegroups/client.rb +78 -14
- data/lib/aws-sdk-resourcegroups/client_api.rb +2 -0
- data/lib/aws-sdk-resourcegroups/errors.rb +31 -7
- data/lib/aws-sdk-resourcegroups/resource.rb +3 -0
- data/lib/aws-sdk-resourcegroups/types.rb +41 -0
- 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: d0e691d2c0a24b1fbf5dbfdd60ebbeb2ea92d8eea8f6c25b8af0ad9f1e3e8695
|
4
|
+
data.tar.gz: c050b10a3ebf3acd446fb9e86c810d7cde98cb77e3e600fdec03208cc5557c3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e47b6689e9e328569a02e7bcf64dcca407a0dbeaff23e658fc0536527fc264019d84786bd02c24fd39508a5f561fb60cc15d47ae62be6a44be6efbaaa943bd5e
|
7
|
+
data.tar.gz: a8b7b1518803c1546a11884cf6b39ba16556a2fcdcc0df67394e40e9e1ef8f88477b4cea0dae8cdf989a39430257233918efd50945be542d6154fbd1860a8476
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-resourcegroups/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# resource_groups = Aws::ResourceGroups::Client.new
|
30
|
+
# resp = resource_groups.create_group(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Resource Groups
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Resource Groups are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::ResourceGroups::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Resource Groups API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-resourcegroups/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::ResourceGroups
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.26.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:resourcegroups)
|
31
34
|
|
32
35
|
module Aws::ResourceGroups
|
36
|
+
# An API client for ResourceGroups. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::ResourceGroups::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::ResourceGroups
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::ResourceGroups
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::ResourceGroups
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::ResourceGroups
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::ResourceGroups
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::ResourceGroups
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::ResourceGroups
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::ResourceGroups
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::ResourceGroups
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# 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}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::ResourceGroups
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -477,6 +535,8 @@ module Aws::ResourceGroups
|
|
477
535
|
# * {Types::ListGroupResourcesOutput#next_token #next_token} => String
|
478
536
|
# * {Types::ListGroupResourcesOutput#query_errors #query_errors} => Array<Types::QueryError>
|
479
537
|
#
|
538
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
539
|
+
#
|
480
540
|
# @example Request syntax with placeholder values
|
481
541
|
#
|
482
542
|
# resp = client.list_group_resources({
|
@@ -537,6 +597,8 @@ module Aws::ResourceGroups
|
|
537
597
|
# * {Types::ListGroupsOutput#groups #groups} => Array<Types::Group>
|
538
598
|
# * {Types::ListGroupsOutput#next_token #next_token} => String
|
539
599
|
#
|
600
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
601
|
+
#
|
540
602
|
# @example Request syntax with placeholder values
|
541
603
|
#
|
542
604
|
# resp = client.list_groups({
|
@@ -593,6 +655,8 @@ module Aws::ResourceGroups
|
|
593
655
|
# * {Types::SearchResourcesOutput#next_token #next_token} => String
|
594
656
|
# * {Types::SearchResourcesOutput#query_errors #query_errors} => Array<Types::QueryError>
|
595
657
|
#
|
658
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
659
|
+
#
|
596
660
|
# @example Request syntax with placeholder values
|
597
661
|
#
|
598
662
|
# resp = client.search_resources({
|
@@ -789,7 +853,7 @@ module Aws::ResourceGroups
|
|
789
853
|
params: params,
|
790
854
|
config: config)
|
791
855
|
context[:gem_name] = 'aws-sdk-resourcegroups'
|
792
|
-
context[:gem_version] = '1.
|
856
|
+
context[:gem_version] = '1.26.0'
|
793
857
|
Seahorse::Client::Request.new(handlers, context)
|
794
858
|
end
|
795
859
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,35 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::ResourceGroups
|
11
|
+
|
12
|
+
# When ResourceGroups returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::ResourceGroups::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all ResourceGroups errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::ResourceGroups::Errors::ServiceError
|
20
|
+
# # rescues all ResourceGroups API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {BadRequestException}
|
31
|
+
# * {ForbiddenException}
|
32
|
+
# * {InternalServerErrorException}
|
33
|
+
# * {MethodNotAllowedException}
|
34
|
+
# * {NotFoundException}
|
35
|
+
# * {TooManyRequestsException}
|
36
|
+
# * {UnauthorizedException}
|
37
|
+
#
|
38
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
39
|
+
# if they are not defined above.
|
9
40
|
module Errors
|
10
41
|
|
11
42
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +54,6 @@ module Aws::ResourceGroups
|
|
23
54
|
def message
|
24
55
|
@message || @data[:message]
|
25
56
|
end
|
26
|
-
|
27
57
|
end
|
28
58
|
|
29
59
|
class ForbiddenException < ServiceError
|
@@ -39,7 +69,6 @@ module Aws::ResourceGroups
|
|
39
69
|
def message
|
40
70
|
@message || @data[:message]
|
41
71
|
end
|
42
|
-
|
43
72
|
end
|
44
73
|
|
45
74
|
class InternalServerErrorException < ServiceError
|
@@ -55,7 +84,6 @@ module Aws::ResourceGroups
|
|
55
84
|
def message
|
56
85
|
@message || @data[:message]
|
57
86
|
end
|
58
|
-
|
59
87
|
end
|
60
88
|
|
61
89
|
class MethodNotAllowedException < ServiceError
|
@@ -71,7 +99,6 @@ module Aws::ResourceGroups
|
|
71
99
|
def message
|
72
100
|
@message || @data[:message]
|
73
101
|
end
|
74
|
-
|
75
102
|
end
|
76
103
|
|
77
104
|
class NotFoundException < ServiceError
|
@@ -87,7 +114,6 @@ module Aws::ResourceGroups
|
|
87
114
|
def message
|
88
115
|
@message || @data[:message]
|
89
116
|
end
|
90
|
-
|
91
117
|
end
|
92
118
|
|
93
119
|
class TooManyRequestsException < ServiceError
|
@@ -103,7 +129,6 @@ module Aws::ResourceGroups
|
|
103
129
|
def message
|
104
130
|
@message || @data[:message]
|
105
131
|
end
|
106
|
-
|
107
132
|
end
|
108
133
|
|
109
134
|
class UnauthorizedException < ServiceError
|
@@ -119,7 +144,6 @@ module Aws::ResourceGroups
|
|
119
144
|
def message
|
120
145
|
@message || @data[:message]
|
121
146
|
end
|
122
|
-
|
123
147
|
end
|
124
148
|
|
125
149
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::ResourceGroups
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -18,6 +20,7 @@ module Aws::ResourceGroups
|
|
18
20
|
#
|
19
21
|
class BadRequestException < Struct.new(
|
20
22
|
:message)
|
23
|
+
SENSITIVE = []
|
21
24
|
include Aws::Structure
|
22
25
|
end
|
23
26
|
|
@@ -70,6 +73,7 @@ module Aws::ResourceGroups
|
|
70
73
|
:description,
|
71
74
|
:resource_query,
|
72
75
|
:tags)
|
76
|
+
SENSITIVE = []
|
73
77
|
include Aws::Structure
|
74
78
|
end
|
75
79
|
|
@@ -91,6 +95,7 @@ module Aws::ResourceGroups
|
|
91
95
|
:group,
|
92
96
|
:resource_query,
|
93
97
|
:tags)
|
98
|
+
SENSITIVE = []
|
94
99
|
include Aws::Structure
|
95
100
|
end
|
96
101
|
|
@@ -109,6 +114,7 @@ module Aws::ResourceGroups
|
|
109
114
|
#
|
110
115
|
class DeleteGroupInput < Struct.new(
|
111
116
|
:group_name)
|
117
|
+
SENSITIVE = []
|
112
118
|
include Aws::Structure
|
113
119
|
end
|
114
120
|
|
@@ -120,6 +126,7 @@ module Aws::ResourceGroups
|
|
120
126
|
#
|
121
127
|
class DeleteGroupOutput < Struct.new(
|
122
128
|
:group)
|
129
|
+
SENSITIVE = []
|
123
130
|
include Aws::Structure
|
124
131
|
end
|
125
132
|
|
@@ -132,6 +139,7 @@ module Aws::ResourceGroups
|
|
132
139
|
#
|
133
140
|
class ForbiddenException < Struct.new(
|
134
141
|
:message)
|
142
|
+
SENSITIVE = []
|
135
143
|
include Aws::Structure
|
136
144
|
end
|
137
145
|
|
@@ -150,6 +158,7 @@ module Aws::ResourceGroups
|
|
150
158
|
#
|
151
159
|
class GetGroupInput < Struct.new(
|
152
160
|
:group_name)
|
161
|
+
SENSITIVE = []
|
153
162
|
include Aws::Structure
|
154
163
|
end
|
155
164
|
|
@@ -161,6 +170,7 @@ module Aws::ResourceGroups
|
|
161
170
|
#
|
162
171
|
class GetGroupOutput < Struct.new(
|
163
172
|
:group)
|
173
|
+
SENSITIVE = []
|
164
174
|
include Aws::Structure
|
165
175
|
end
|
166
176
|
|
@@ -179,6 +189,7 @@ module Aws::ResourceGroups
|
|
179
189
|
#
|
180
190
|
class GetGroupQueryInput < Struct.new(
|
181
191
|
:group_name)
|
192
|
+
SENSITIVE = []
|
182
193
|
include Aws::Structure
|
183
194
|
end
|
184
195
|
|
@@ -190,6 +201,7 @@ module Aws::ResourceGroups
|
|
190
201
|
#
|
191
202
|
class GetGroupQueryOutput < Struct.new(
|
192
203
|
:group_query)
|
204
|
+
SENSITIVE = []
|
193
205
|
include Aws::Structure
|
194
206
|
end
|
195
207
|
|
@@ -209,6 +221,7 @@ module Aws::ResourceGroups
|
|
209
221
|
#
|
210
222
|
class GetTagsInput < Struct.new(
|
211
223
|
:arn)
|
224
|
+
SENSITIVE = []
|
212
225
|
include Aws::Structure
|
213
226
|
end
|
214
227
|
|
@@ -225,6 +238,7 @@ module Aws::ResourceGroups
|
|
225
238
|
class GetTagsOutput < Struct.new(
|
226
239
|
:arn,
|
227
240
|
:tags)
|
241
|
+
SENSITIVE = []
|
228
242
|
include Aws::Structure
|
229
243
|
end
|
230
244
|
|
@@ -248,6 +262,7 @@ module Aws::ResourceGroups
|
|
248
262
|
:group_arn,
|
249
263
|
:name,
|
250
264
|
:description)
|
265
|
+
SENSITIVE = []
|
251
266
|
include Aws::Structure
|
252
267
|
end
|
253
268
|
|
@@ -276,6 +291,7 @@ module Aws::ResourceGroups
|
|
276
291
|
class GroupFilter < Struct.new(
|
277
292
|
:name,
|
278
293
|
:values)
|
294
|
+
SENSITIVE = []
|
279
295
|
include Aws::Structure
|
280
296
|
end
|
281
297
|
|
@@ -294,6 +310,7 @@ module Aws::ResourceGroups
|
|
294
310
|
class GroupIdentifier < Struct.new(
|
295
311
|
:group_name,
|
296
312
|
:group_arn)
|
313
|
+
SENSITIVE = []
|
297
314
|
include Aws::Structure
|
298
315
|
end
|
299
316
|
|
@@ -315,6 +332,7 @@ module Aws::ResourceGroups
|
|
315
332
|
class GroupQuery < Struct.new(
|
316
333
|
:group_name,
|
317
334
|
:resource_query)
|
335
|
+
SENSITIVE = []
|
318
336
|
include Aws::Structure
|
319
337
|
end
|
320
338
|
|
@@ -327,6 +345,7 @@ module Aws::ResourceGroups
|
|
327
345
|
#
|
328
346
|
class InternalServerErrorException < Struct.new(
|
329
347
|
:message)
|
348
|
+
SENSITIVE = []
|
330
349
|
include Aws::Structure
|
331
350
|
end
|
332
351
|
|
@@ -380,6 +399,7 @@ module Aws::ResourceGroups
|
|
380
399
|
:filters,
|
381
400
|
:max_results,
|
382
401
|
:next_token)
|
402
|
+
SENSITIVE = []
|
383
403
|
include Aws::Structure
|
384
404
|
end
|
385
405
|
|
@@ -406,6 +426,7 @@ module Aws::ResourceGroups
|
|
406
426
|
:resource_identifiers,
|
407
427
|
:next_token,
|
408
428
|
:query_errors)
|
429
|
+
SENSITIVE = []
|
409
430
|
include Aws::Structure
|
410
431
|
end
|
411
432
|
|
@@ -451,6 +472,7 @@ module Aws::ResourceGroups
|
|
451
472
|
:filters,
|
452
473
|
:max_results,
|
453
474
|
:next_token)
|
475
|
+
SENSITIVE = []
|
454
476
|
include Aws::Structure
|
455
477
|
end
|
456
478
|
|
@@ -474,6 +496,7 @@ module Aws::ResourceGroups
|
|
474
496
|
:group_identifiers,
|
475
497
|
:groups,
|
476
498
|
:next_token)
|
499
|
+
SENSITIVE = []
|
477
500
|
include Aws::Structure
|
478
501
|
end
|
479
502
|
|
@@ -487,6 +510,7 @@ module Aws::ResourceGroups
|
|
487
510
|
#
|
488
511
|
class MethodNotAllowedException < Struct.new(
|
489
512
|
:message)
|
513
|
+
SENSITIVE = []
|
490
514
|
include Aws::Structure
|
491
515
|
end
|
492
516
|
|
@@ -499,6 +523,7 @@ module Aws::ResourceGroups
|
|
499
523
|
#
|
500
524
|
class NotFoundException < Struct.new(
|
501
525
|
:message)
|
526
|
+
SENSITIVE = []
|
502
527
|
include Aws::Structure
|
503
528
|
end
|
504
529
|
|
@@ -528,6 +553,7 @@ module Aws::ResourceGroups
|
|
528
553
|
class QueryError < Struct.new(
|
529
554
|
:error_code,
|
530
555
|
:message)
|
556
|
+
SENSITIVE = []
|
531
557
|
include Aws::Structure
|
532
558
|
end
|
533
559
|
|
@@ -556,6 +582,7 @@ module Aws::ResourceGroups
|
|
556
582
|
class ResourceFilter < Struct.new(
|
557
583
|
:name,
|
558
584
|
:values)
|
585
|
+
SENSITIVE = []
|
559
586
|
include Aws::Structure
|
560
587
|
end
|
561
588
|
|
@@ -574,6 +601,7 @@ module Aws::ResourceGroups
|
|
574
601
|
class ResourceIdentifier < Struct.new(
|
575
602
|
:resource_arn,
|
576
603
|
:resource_type)
|
604
|
+
SENSITIVE = []
|
577
605
|
include Aws::Structure
|
578
606
|
end
|
579
607
|
|
@@ -644,6 +672,7 @@ module Aws::ResourceGroups
|
|
644
672
|
class ResourceQuery < Struct.new(
|
645
673
|
:type,
|
646
674
|
:query)
|
675
|
+
SENSITIVE = []
|
647
676
|
include Aws::Structure
|
648
677
|
end
|
649
678
|
|
@@ -683,6 +712,7 @@ module Aws::ResourceGroups
|
|
683
712
|
:resource_query,
|
684
713
|
:max_results,
|
685
714
|
:next_token)
|
715
|
+
SENSITIVE = []
|
686
716
|
include Aws::Structure
|
687
717
|
end
|
688
718
|
|
@@ -709,6 +739,7 @@ module Aws::ResourceGroups
|
|
709
739
|
:resource_identifiers,
|
710
740
|
:next_token,
|
711
741
|
:query_errors)
|
742
|
+
SENSITIVE = []
|
712
743
|
include Aws::Structure
|
713
744
|
end
|
714
745
|
|
@@ -738,6 +769,7 @@ module Aws::ResourceGroups
|
|
738
769
|
class TagInput < Struct.new(
|
739
770
|
:arn,
|
740
771
|
:tags)
|
772
|
+
SENSITIVE = []
|
741
773
|
include Aws::Structure
|
742
774
|
end
|
743
775
|
|
@@ -754,6 +786,7 @@ module Aws::ResourceGroups
|
|
754
786
|
class TagOutput < Struct.new(
|
755
787
|
:arn,
|
756
788
|
:tags)
|
789
|
+
SENSITIVE = []
|
757
790
|
include Aws::Structure
|
758
791
|
end
|
759
792
|
|
@@ -766,6 +799,7 @@ module Aws::ResourceGroups
|
|
766
799
|
#
|
767
800
|
class TooManyRequestsException < Struct.new(
|
768
801
|
:message)
|
802
|
+
SENSITIVE = []
|
769
803
|
include Aws::Structure
|
770
804
|
end
|
771
805
|
|
@@ -779,6 +813,7 @@ module Aws::ResourceGroups
|
|
779
813
|
#
|
780
814
|
class UnauthorizedException < Struct.new(
|
781
815
|
:message)
|
816
|
+
SENSITIVE = []
|
782
817
|
include Aws::Structure
|
783
818
|
end
|
784
819
|
|
@@ -803,6 +838,7 @@ module Aws::ResourceGroups
|
|
803
838
|
class UntagInput < Struct.new(
|
804
839
|
:arn,
|
805
840
|
:keys)
|
841
|
+
SENSITIVE = []
|
806
842
|
include Aws::Structure
|
807
843
|
end
|
808
844
|
|
@@ -819,6 +855,7 @@ module Aws::ResourceGroups
|
|
819
855
|
class UntagOutput < Struct.new(
|
820
856
|
:arn,
|
821
857
|
:keys)
|
858
|
+
SENSITIVE = []
|
822
859
|
include Aws::Structure
|
823
860
|
end
|
824
861
|
|
@@ -846,6 +883,7 @@ module Aws::ResourceGroups
|
|
846
883
|
class UpdateGroupInput < Struct.new(
|
847
884
|
:group_name,
|
848
885
|
:description)
|
886
|
+
SENSITIVE = []
|
849
887
|
include Aws::Structure
|
850
888
|
end
|
851
889
|
|
@@ -858,6 +896,7 @@ module Aws::ResourceGroups
|
|
858
896
|
#
|
859
897
|
class UpdateGroupOutput < Struct.new(
|
860
898
|
:group)
|
899
|
+
SENSITIVE = []
|
861
900
|
include Aws::Structure
|
862
901
|
end
|
863
902
|
|
@@ -886,6 +925,7 @@ module Aws::ResourceGroups
|
|
886
925
|
class UpdateGroupQueryInput < Struct.new(
|
887
926
|
:group_name,
|
888
927
|
:resource_query)
|
928
|
+
SENSITIVE = []
|
889
929
|
include Aws::Structure
|
890
930
|
end
|
891
931
|
|
@@ -898,6 +938,7 @@ module Aws::ResourceGroups
|
|
898
938
|
#
|
899
939
|
class UpdateGroupQueryOutput < Struct.new(
|
900
940
|
:group_query)
|
941
|
+
SENSITIVE = []
|
901
942
|
include Aws::Structure
|
902
943
|
end
|
903
944
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-resourcegroups
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.26.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: 2020-06-23 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 - Resource Groups
|