aws-sdk-fsx 1.124.0 → 1.125.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-fsx/client.rb +1 -1
- data/lib/aws-sdk-fsx/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-fsx.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4852031a05dc0a9393100020d92fb68f2ab549d249e240e0c974c9ad667650c8
|
|
4
|
+
data.tar.gz: 6a483b5f91c66a7de04845d7d3109fd90976a6bba03955f62463998f5849a25e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e9d50827f08f8b97cb7cb2978c13351c39c1a9026ce54206cea40b0126deed57bcb7ca16284dabe44be7da6bd7b964c7b9e70700542165da379148ad8b8e5a7
|
|
7
|
+
data.tar.gz: 8ce8010be0a496291bd8fa8e1ef6965a59b331d43d7b1da99e292592001e9bea0558e77eb75f6265da8c532b06a543734171bf034449bc4a10a63491f1ed3730
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.125.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -10055,7 +10055,7 @@ module Aws::FSx
|
|
|
10055
10055
|
tracer: tracer
|
|
10056
10056
|
)
|
|
10057
10057
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
10058
|
-
context[:gem_version] = '1.
|
|
10058
|
+
context[:gem_version] = '1.125.0'
|
|
10059
10059
|
Seahorse::Client::Request.new(handlers, context)
|
|
10060
10060
|
end
|
|
10061
10061
|
|
|
@@ -13,22 +13,22 @@ module Aws::FSx
|
|
|
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,
|
data/lib/aws-sdk-fsx.rb
CHANGED