aws-sdk-resourceexplorer2 1.41.0 → 1.42.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 +537 -192
- data/lib/aws-sdk-resourceexplorer2/client_api.rb +320 -50
- data/lib/aws-sdk-resourceexplorer2/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-resourceexplorer2/errors.rb +4 -4
- data/lib/aws-sdk-resourceexplorer2/types.rb +821 -335
- data/lib/aws-sdk-resourceexplorer2/waiters.rb +15 -0
- data/lib/aws-sdk-resourceexplorer2.rb +2 -1
- data/sig/client.rbs +131 -39
- data/sig/errors.rbs +1 -1
- data/sig/types.rbs +178 -47
- metadata +2 -1
@@ -13,22 +13,22 @@ module Aws::ResourceExplorer2
|
|
13
13
|
# @!attribute region
|
14
14
|
# The AWS region used to dispatch the request.
|
15
15
|
#
|
16
|
-
# @return [
|
16
|
+
# @return [string]
|
17
17
|
#
|
18
18
|
# @!attribute use_dual_stack
|
19
19
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
20
|
#
|
21
|
-
# @return [
|
21
|
+
# @return [boolean]
|
22
22
|
#
|
23
23
|
# @!attribute use_fips
|
24
24
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
25
|
#
|
26
|
-
# @return [
|
26
|
+
# @return [boolean]
|
27
27
|
#
|
28
28
|
# @!attribute endpoint
|
29
29
|
# Override the endpoint used to send this request
|
30
30
|
#
|
31
|
-
# @return [
|
31
|
+
# @return [string]
|
32
32
|
#
|
33
33
|
EndpointParameters = Struct.new(
|
34
34
|
:region,
|
@@ -167,13 +167,13 @@ module Aws::ResourceExplorer2
|
|
167
167
|
end
|
168
168
|
|
169
169
|
# @return [String]
|
170
|
-
def
|
171
|
-
@data[:
|
170
|
+
def message
|
171
|
+
@message || @data[:message]
|
172
172
|
end
|
173
173
|
|
174
174
|
# @return [String]
|
175
|
-
def
|
176
|
-
@
|
175
|
+
def field_list
|
176
|
+
@data[:field_list]
|
177
177
|
end
|
178
178
|
end
|
179
179
|
|