aws-sdk-resourceexplorer2 1.14.0 → 1.15.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-resourceexplorer2/client.rb +1 -1
- data/lib/aws-sdk-resourceexplorer2/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-resourceexplorer2.rb +1 -1
- data/sig/client.rbs +329 -0
- data/sig/errors.rbs +43 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +362 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa7bdab7fdc662fc6eb00dc06fa7e5872fb43963440c4d8b730819c8ae9e0cd9
|
4
|
+
data.tar.gz: 689005bfd0aec4f2ccdfd84d59203682310f51062a96746e6bd956b9a3bc1a47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7dee75dfe52cdebd948e4939f64eedda27ae98118e5b13068828742b3a0ded9bff764f70f0a312a198891e46e7ab1fc3de20935904a91294f1a77c38baff1b58
|
7
|
+
data.tar.gz: beb85fbe922d6385d7397f242f08cef508410032db961dac1a385bb1bace0afda7bd0f51f48d5f4897e72536baa8c04374acf37913f1198aa01dccfe746b7b80
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.0
|
@@ -1611,7 +1611,7 @@ module Aws::ResourceExplorer2
|
|
1611
1611
|
params: params,
|
1612
1612
|
config: config)
|
1613
1613
|
context[:gem_name] = 'aws-sdk-resourceexplorer2'
|
1614
|
-
context[:gem_version] = '1.
|
1614
|
+
context[:gem_version] = '1.15.0'
|
1615
1615
|
Seahorse::Client::Request.new(handlers, context)
|
1616
1616
|
end
|
1617
1617
|
|
@@ -14,6 +14,7 @@ module Aws::ResourceExplorer2
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::ResourceExplorer2::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,329 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ResourceExplorer2
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _AssociateDefaultViewResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateDefaultViewOutput]
|
77
|
+
def view_arn: () -> ::String
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#associate_default_view-instance_method
|
80
|
+
def associate_default_view: (
|
81
|
+
view_arn: ::String
|
82
|
+
) -> _AssociateDefaultViewResponseSuccess
|
83
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDefaultViewResponseSuccess
|
84
|
+
|
85
|
+
interface _BatchGetViewResponseSuccess
|
86
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetViewOutput]
|
87
|
+
def errors: () -> ::Array[Types::BatchGetViewError]
|
88
|
+
def views: () -> ::Array[Types::View]
|
89
|
+
end
|
90
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#batch_get_view-instance_method
|
91
|
+
def batch_get_view: (
|
92
|
+
?view_arns: Array[::String]
|
93
|
+
) -> _BatchGetViewResponseSuccess
|
94
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetViewResponseSuccess
|
95
|
+
|
96
|
+
interface _CreateIndexResponseSuccess
|
97
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIndexOutput]
|
98
|
+
def arn: () -> ::String
|
99
|
+
def created_at: () -> ::Time
|
100
|
+
def state: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
|
101
|
+
end
|
102
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#create_index-instance_method
|
103
|
+
def create_index: (
|
104
|
+
?client_token: ::String,
|
105
|
+
?tags: Hash[::String, ::String]
|
106
|
+
) -> _CreateIndexResponseSuccess
|
107
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIndexResponseSuccess
|
108
|
+
|
109
|
+
interface _CreateViewResponseSuccess
|
110
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateViewOutput]
|
111
|
+
def view: () -> Types::View
|
112
|
+
end
|
113
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#create_view-instance_method
|
114
|
+
def create_view: (
|
115
|
+
?client_token: ::String,
|
116
|
+
?filters: {
|
117
|
+
filter_string: ::String
|
118
|
+
},
|
119
|
+
?included_properties: Array[
|
120
|
+
{
|
121
|
+
name: ::String
|
122
|
+
},
|
123
|
+
],
|
124
|
+
?scope: ::String,
|
125
|
+
?tags: Hash[::String, ::String],
|
126
|
+
view_name: ::String
|
127
|
+
) -> _CreateViewResponseSuccess
|
128
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateViewResponseSuccess
|
129
|
+
|
130
|
+
interface _DeleteIndexResponseSuccess
|
131
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIndexOutput]
|
132
|
+
def arn: () -> ::String
|
133
|
+
def last_updated_at: () -> ::Time
|
134
|
+
def state: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
|
135
|
+
end
|
136
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#delete_index-instance_method
|
137
|
+
def delete_index: (
|
138
|
+
arn: ::String
|
139
|
+
) -> _DeleteIndexResponseSuccess
|
140
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIndexResponseSuccess
|
141
|
+
|
142
|
+
interface _DeleteViewResponseSuccess
|
143
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteViewOutput]
|
144
|
+
def view_arn: () -> ::String
|
145
|
+
end
|
146
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#delete_view-instance_method
|
147
|
+
def delete_view: (
|
148
|
+
view_arn: ::String
|
149
|
+
) -> _DeleteViewResponseSuccess
|
150
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteViewResponseSuccess
|
151
|
+
|
152
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#disassociate_default_view-instance_method
|
153
|
+
def disassociate_default_view: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
154
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
155
|
+
|
156
|
+
interface _GetAccountLevelServiceConfigurationResponseSuccess
|
157
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountLevelServiceConfigurationOutput]
|
158
|
+
def org_configuration: () -> Types::OrgConfiguration
|
159
|
+
end
|
160
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_account_level_service_configuration-instance_method
|
161
|
+
def get_account_level_service_configuration: () -> _GetAccountLevelServiceConfigurationResponseSuccess
|
162
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountLevelServiceConfigurationResponseSuccess
|
163
|
+
|
164
|
+
interface _GetDefaultViewResponseSuccess
|
165
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDefaultViewOutput]
|
166
|
+
def view_arn: () -> ::String
|
167
|
+
end
|
168
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_default_view-instance_method
|
169
|
+
def get_default_view: () -> _GetDefaultViewResponseSuccess
|
170
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDefaultViewResponseSuccess
|
171
|
+
|
172
|
+
interface _GetIndexResponseSuccess
|
173
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIndexOutput]
|
174
|
+
def arn: () -> ::String
|
175
|
+
def created_at: () -> ::Time
|
176
|
+
def last_updated_at: () -> ::Time
|
177
|
+
def replicating_from: () -> ::Array[::String]
|
178
|
+
def replicating_to: () -> ::Array[::String]
|
179
|
+
def state: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
|
180
|
+
def tags: () -> ::Hash[::String, ::String]
|
181
|
+
def type: () -> ("LOCAL" | "AGGREGATOR")
|
182
|
+
end
|
183
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_index-instance_method
|
184
|
+
def get_index: () -> _GetIndexResponseSuccess
|
185
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIndexResponseSuccess
|
186
|
+
|
187
|
+
interface _GetViewResponseSuccess
|
188
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetViewOutput]
|
189
|
+
def tags: () -> ::Hash[::String, ::String]
|
190
|
+
def view: () -> Types::View
|
191
|
+
end
|
192
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_view-instance_method
|
193
|
+
def get_view: (
|
194
|
+
view_arn: ::String
|
195
|
+
) -> _GetViewResponseSuccess
|
196
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetViewResponseSuccess
|
197
|
+
|
198
|
+
interface _ListIndexesResponseSuccess
|
199
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIndexesOutput]
|
200
|
+
def indexes: () -> ::Array[Types::Index]
|
201
|
+
def next_token: () -> ::String
|
202
|
+
end
|
203
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_indexes-instance_method
|
204
|
+
def list_indexes: (
|
205
|
+
?max_results: ::Integer,
|
206
|
+
?next_token: ::String,
|
207
|
+
?regions: Array[::String],
|
208
|
+
?type: ("LOCAL" | "AGGREGATOR")
|
209
|
+
) -> _ListIndexesResponseSuccess
|
210
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIndexesResponseSuccess
|
211
|
+
|
212
|
+
interface _ListIndexesForMembersResponseSuccess
|
213
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIndexesForMembersOutput]
|
214
|
+
def indexes: () -> ::Array[Types::MemberIndex]
|
215
|
+
def next_token: () -> ::String
|
216
|
+
end
|
217
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_indexes_for_members-instance_method
|
218
|
+
def list_indexes_for_members: (
|
219
|
+
account_id_list: Array[::String],
|
220
|
+
?max_results: ::Integer,
|
221
|
+
?next_token: ::String
|
222
|
+
) -> _ListIndexesForMembersResponseSuccess
|
223
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIndexesForMembersResponseSuccess
|
224
|
+
|
225
|
+
interface _ListSupportedResourceTypesResponseSuccess
|
226
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSupportedResourceTypesOutput]
|
227
|
+
def next_token: () -> ::String
|
228
|
+
def resource_types: () -> ::Array[Types::SupportedResourceType]
|
229
|
+
end
|
230
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_supported_resource_types-instance_method
|
231
|
+
def list_supported_resource_types: (
|
232
|
+
?max_results: ::Integer,
|
233
|
+
?next_token: ::String
|
234
|
+
) -> _ListSupportedResourceTypesResponseSuccess
|
235
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSupportedResourceTypesResponseSuccess
|
236
|
+
|
237
|
+
interface _ListTagsForResourceResponseSuccess
|
238
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
|
239
|
+
def tags: () -> ::Hash[::String, ::String]
|
240
|
+
end
|
241
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_tags_for_resource-instance_method
|
242
|
+
def list_tags_for_resource: (
|
243
|
+
resource_arn: ::String
|
244
|
+
) -> _ListTagsForResourceResponseSuccess
|
245
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
246
|
+
|
247
|
+
interface _ListViewsResponseSuccess
|
248
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListViewsOutput]
|
249
|
+
def next_token: () -> ::String
|
250
|
+
def views: () -> ::Array[::String]
|
251
|
+
end
|
252
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_views-instance_method
|
253
|
+
def list_views: (
|
254
|
+
?max_results: ::Integer,
|
255
|
+
?next_token: ::String
|
256
|
+
) -> _ListViewsResponseSuccess
|
257
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListViewsResponseSuccess
|
258
|
+
|
259
|
+
interface _SearchResponseSuccess
|
260
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchOutput]
|
261
|
+
def count: () -> Types::ResourceCount
|
262
|
+
def next_token: () -> ::String
|
263
|
+
def resources: () -> ::Array[Types::Resource]
|
264
|
+
def view_arn: () -> ::String
|
265
|
+
end
|
266
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#search-instance_method
|
267
|
+
def search: (
|
268
|
+
?max_results: ::Integer,
|
269
|
+
?next_token: ::String,
|
270
|
+
query_string: ::String,
|
271
|
+
?view_arn: ::String
|
272
|
+
) -> _SearchResponseSuccess
|
273
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchResponseSuccess
|
274
|
+
|
275
|
+
interface _TagResourceResponseSuccess
|
276
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
|
277
|
+
end
|
278
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#tag_resource-instance_method
|
279
|
+
def tag_resource: (
|
280
|
+
?tags: Hash[::String, ::String],
|
281
|
+
resource_arn: ::String
|
282
|
+
) -> _TagResourceResponseSuccess
|
283
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
284
|
+
|
285
|
+
interface _UntagResourceResponseSuccess
|
286
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
|
287
|
+
end
|
288
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#untag_resource-instance_method
|
289
|
+
def untag_resource: (
|
290
|
+
resource_arn: ::String,
|
291
|
+
tag_keys: Array[::String]
|
292
|
+
) -> _UntagResourceResponseSuccess
|
293
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
294
|
+
|
295
|
+
interface _UpdateIndexTypeResponseSuccess
|
296
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIndexTypeOutput]
|
297
|
+
def arn: () -> ::String
|
298
|
+
def last_updated_at: () -> ::Time
|
299
|
+
def state: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
|
300
|
+
def type: () -> ("LOCAL" | "AGGREGATOR")
|
301
|
+
end
|
302
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#update_index_type-instance_method
|
303
|
+
def update_index_type: (
|
304
|
+
arn: ::String,
|
305
|
+
type: ("LOCAL" | "AGGREGATOR")
|
306
|
+
) -> _UpdateIndexTypeResponseSuccess
|
307
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIndexTypeResponseSuccess
|
308
|
+
|
309
|
+
interface _UpdateViewResponseSuccess
|
310
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateViewOutput]
|
311
|
+
def view: () -> Types::View
|
312
|
+
end
|
313
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#update_view-instance_method
|
314
|
+
def update_view: (
|
315
|
+
?filters: {
|
316
|
+
filter_string: ::String
|
317
|
+
},
|
318
|
+
?included_properties: Array[
|
319
|
+
{
|
320
|
+
name: ::String
|
321
|
+
},
|
322
|
+
],
|
323
|
+
view_arn: ::String
|
324
|
+
) -> _UpdateViewResponseSuccess
|
325
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateViewResponseSuccess
|
326
|
+
end
|
327
|
+
end
|
328
|
+
end
|
329
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ResourceExplorer2
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
def name: () -> ::String
|
29
|
+
def value: () -> ::String
|
30
|
+
end
|
31
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
32
|
+
def message: () -> ::String
|
33
|
+
end
|
34
|
+
class UnauthorizedException < ::Aws::Errors::ServiceError
|
35
|
+
def message: () -> ::String
|
36
|
+
end
|
37
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
38
|
+
def field_list: () -> ::String
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ResourceExplorer2
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,362 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::ResourceExplorer2
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AssociateDefaultViewInput
|
17
|
+
attr_accessor view_arn: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AssociateDefaultViewOutput
|
22
|
+
attr_accessor view_arn: ::String
|
23
|
+
SENSITIVE: []
|
24
|
+
end
|
25
|
+
|
26
|
+
class BatchGetViewError
|
27
|
+
attr_accessor error_message: ::String
|
28
|
+
attr_accessor view_arn: ::String
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class BatchGetViewInput
|
33
|
+
attr_accessor view_arns: ::Array[::String]
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class BatchGetViewOutput
|
38
|
+
attr_accessor errors: ::Array[Types::BatchGetViewError]
|
39
|
+
attr_accessor views: ::Array[Types::View]
|
40
|
+
SENSITIVE: []
|
41
|
+
end
|
42
|
+
|
43
|
+
class ConflictException
|
44
|
+
attr_accessor message: ::String
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class CreateIndexInput
|
49
|
+
attr_accessor client_token: ::String
|
50
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
51
|
+
SENSITIVE: [:tags]
|
52
|
+
end
|
53
|
+
|
54
|
+
class CreateIndexOutput
|
55
|
+
attr_accessor arn: ::String
|
56
|
+
attr_accessor created_at: ::Time
|
57
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class CreateViewInput
|
62
|
+
attr_accessor client_token: ::String
|
63
|
+
attr_accessor filters: Types::SearchFilter
|
64
|
+
attr_accessor included_properties: ::Array[Types::IncludedProperty]
|
65
|
+
attr_accessor scope: ::String
|
66
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
67
|
+
attr_accessor view_name: ::String
|
68
|
+
SENSITIVE: [:filters, :tags]
|
69
|
+
end
|
70
|
+
|
71
|
+
class CreateViewOutput
|
72
|
+
attr_accessor view: Types::View
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class DeleteIndexInput
|
77
|
+
attr_accessor arn: ::String
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class DeleteIndexOutput
|
82
|
+
attr_accessor arn: ::String
|
83
|
+
attr_accessor last_updated_at: ::Time
|
84
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class DeleteViewInput
|
89
|
+
attr_accessor view_arn: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class DeleteViewOutput
|
94
|
+
attr_accessor view_arn: ::String
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class GetAccountLevelServiceConfigurationOutput
|
99
|
+
attr_accessor org_configuration: Types::OrgConfiguration
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class GetDefaultViewOutput
|
104
|
+
attr_accessor view_arn: ::String
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class GetIndexOutput
|
109
|
+
attr_accessor arn: ::String
|
110
|
+
attr_accessor created_at: ::Time
|
111
|
+
attr_accessor last_updated_at: ::Time
|
112
|
+
attr_accessor replicating_from: ::Array[::String]
|
113
|
+
attr_accessor replicating_to: ::Array[::String]
|
114
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
|
115
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
116
|
+
attr_accessor type: ("LOCAL" | "AGGREGATOR")
|
117
|
+
SENSITIVE: [:tags]
|
118
|
+
end
|
119
|
+
|
120
|
+
class GetViewInput
|
121
|
+
attr_accessor view_arn: ::String
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class GetViewOutput
|
126
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
127
|
+
attr_accessor view: Types::View
|
128
|
+
SENSITIVE: [:tags]
|
129
|
+
end
|
130
|
+
|
131
|
+
class IncludedProperty
|
132
|
+
attr_accessor name: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class Index
|
137
|
+
attr_accessor arn: ::String
|
138
|
+
attr_accessor region: ::String
|
139
|
+
attr_accessor type: ("LOCAL" | "AGGREGATOR")
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class InternalServerException
|
144
|
+
attr_accessor message: ::String
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class ListIndexesForMembersInput
|
149
|
+
attr_accessor account_id_list: ::Array[::String]
|
150
|
+
attr_accessor max_results: ::Integer
|
151
|
+
attr_accessor next_token: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class ListIndexesForMembersOutput
|
156
|
+
attr_accessor indexes: ::Array[Types::MemberIndex]
|
157
|
+
attr_accessor next_token: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class ListIndexesInput
|
162
|
+
attr_accessor max_results: ::Integer
|
163
|
+
attr_accessor next_token: ::String
|
164
|
+
attr_accessor regions: ::Array[::String]
|
165
|
+
attr_accessor type: ("LOCAL" | "AGGREGATOR")
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class ListIndexesOutput
|
170
|
+
attr_accessor indexes: ::Array[Types::Index]
|
171
|
+
attr_accessor next_token: ::String
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class ListSupportedResourceTypesInput
|
176
|
+
attr_accessor max_results: ::Integer
|
177
|
+
attr_accessor next_token: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class ListSupportedResourceTypesOutput
|
182
|
+
attr_accessor next_token: ::String
|
183
|
+
attr_accessor resource_types: ::Array[Types::SupportedResourceType]
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class ListTagsForResourceInput
|
188
|
+
attr_accessor resource_arn: ::String
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class ListTagsForResourceOutput
|
193
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
194
|
+
SENSITIVE: [:tags]
|
195
|
+
end
|
196
|
+
|
197
|
+
class ListViewsInput
|
198
|
+
attr_accessor max_results: ::Integer
|
199
|
+
attr_accessor next_token: ::String
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class ListViewsOutput
|
204
|
+
attr_accessor next_token: ::String
|
205
|
+
attr_accessor views: ::Array[::String]
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class MemberIndex
|
210
|
+
attr_accessor account_id: ::String
|
211
|
+
attr_accessor arn: ::String
|
212
|
+
attr_accessor region: ::String
|
213
|
+
attr_accessor type: ("LOCAL" | "AGGREGATOR")
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class OrgConfiguration
|
218
|
+
attr_accessor aws_service_access_status: ("ENABLED" | "DISABLED")
|
219
|
+
attr_accessor service_linked_role: ::String
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class Resource
|
224
|
+
attr_accessor arn: ::String
|
225
|
+
attr_accessor last_reported_at: ::Time
|
226
|
+
attr_accessor owning_account_id: ::String
|
227
|
+
attr_accessor properties: ::Array[Types::ResourceProperty]
|
228
|
+
attr_accessor region: ::String
|
229
|
+
attr_accessor resource_type: ::String
|
230
|
+
attr_accessor service: ::String
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class ResourceCount
|
235
|
+
attr_accessor complete: bool
|
236
|
+
attr_accessor total_resources: ::Integer
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class ResourceNotFoundException
|
241
|
+
attr_accessor message: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class ResourceProperty
|
246
|
+
attr_accessor data: untyped
|
247
|
+
attr_accessor last_reported_at: ::Time
|
248
|
+
attr_accessor name: ::String
|
249
|
+
SENSITIVE: []
|
250
|
+
end
|
251
|
+
|
252
|
+
class SearchFilter
|
253
|
+
attr_accessor filter_string: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class SearchInput
|
258
|
+
attr_accessor max_results: ::Integer
|
259
|
+
attr_accessor next_token: ::String
|
260
|
+
attr_accessor query_string: ::String
|
261
|
+
attr_accessor view_arn: ::String
|
262
|
+
SENSITIVE: [:query_string]
|
263
|
+
end
|
264
|
+
|
265
|
+
class SearchOutput
|
266
|
+
attr_accessor count: Types::ResourceCount
|
267
|
+
attr_accessor next_token: ::String
|
268
|
+
attr_accessor resources: ::Array[Types::Resource]
|
269
|
+
attr_accessor view_arn: ::String
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class ServiceQuotaExceededException
|
274
|
+
attr_accessor message: ::String
|
275
|
+
attr_accessor name: ::String
|
276
|
+
attr_accessor value: ::String
|
277
|
+
SENSITIVE: []
|
278
|
+
end
|
279
|
+
|
280
|
+
class SupportedResourceType
|
281
|
+
attr_accessor resource_type: ::String
|
282
|
+
attr_accessor service: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class TagResourceInput
|
287
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
288
|
+
attr_accessor resource_arn: ::String
|
289
|
+
SENSITIVE: [:tags]
|
290
|
+
end
|
291
|
+
|
292
|
+
class TagResourceOutput < Aws::EmptyStructure
|
293
|
+
end
|
294
|
+
|
295
|
+
class ThrottlingException
|
296
|
+
attr_accessor message: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class UnauthorizedException
|
301
|
+
attr_accessor message: ::String
|
302
|
+
SENSITIVE: []
|
303
|
+
end
|
304
|
+
|
305
|
+
class UntagResourceInput
|
306
|
+
attr_accessor resource_arn: ::String
|
307
|
+
attr_accessor tag_keys: ::Array[::String]
|
308
|
+
SENSITIVE: [:tag_keys]
|
309
|
+
end
|
310
|
+
|
311
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
312
|
+
end
|
313
|
+
|
314
|
+
class UpdateIndexTypeInput
|
315
|
+
attr_accessor arn: ::String
|
316
|
+
attr_accessor type: ("LOCAL" | "AGGREGATOR")
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class UpdateIndexTypeOutput
|
321
|
+
attr_accessor arn: ::String
|
322
|
+
attr_accessor last_updated_at: ::Time
|
323
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
|
324
|
+
attr_accessor type: ("LOCAL" | "AGGREGATOR")
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class UpdateViewInput
|
329
|
+
attr_accessor filters: Types::SearchFilter
|
330
|
+
attr_accessor included_properties: ::Array[Types::IncludedProperty]
|
331
|
+
attr_accessor view_arn: ::String
|
332
|
+
SENSITIVE: [:filters]
|
333
|
+
end
|
334
|
+
|
335
|
+
class UpdateViewOutput
|
336
|
+
attr_accessor view: Types::View
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class ValidationException
|
341
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
342
|
+
attr_accessor message: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class ValidationExceptionField
|
347
|
+
attr_accessor name: ::String
|
348
|
+
attr_accessor validation_issue: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class View
|
353
|
+
attr_accessor filters: Types::SearchFilter
|
354
|
+
attr_accessor included_properties: ::Array[Types::IncludedProperty]
|
355
|
+
attr_accessor last_updated_at: ::Time
|
356
|
+
attr_accessor owner: ::String
|
357
|
+
attr_accessor scope: ::String
|
358
|
+
attr_accessor view_arn: ::String
|
359
|
+
SENSITIVE: [:filters]
|
360
|
+
end
|
361
|
+
end
|
362
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ResourceExplorer2
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-resourceexplorer2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 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.191.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.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-resourceexplorer2/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-resourceexplorer2/resource.rb
|
68
68
|
- lib/aws-sdk-resourceexplorer2/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resourceexplorer2
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resourceexplorer2/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - AWS Resource Explorer
|
94
99
|
test_files: []
|