aws-sdk-efs 1.25.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-efs.rb +1 -1
- data/lib/aws-sdk-efs/client.rb +24 -18
- data/lib/aws-sdk-efs/types.rb +3 -0
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 2661eb3f117a01a08a1a844eb86a174f6960fd8e032d1b3bf42bfaf2209845ab
|
|
4
|
+
data.tar.gz: 07af162cb987993d90805213e6bc195c2f5a47d46857a081cf5b08f48adb5e4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb9e83f2268ef3010db158d27cf7318d330cdb8b7ade096c03f3fc51a57730321efa76a66766962218b7e5883eba38187096a23fc13fd5fcdd55421a768fc267
|
|
7
|
+
data.tar.gz: 738419b31b037a227a0cfa04ba895032dbad728ce022c15b472fb45cb58c26fb2ca3a0f5f8ed6cc75ef91cf67e892b2038ad67477ee3ee37c6f146539385b2d8
|
data/lib/aws-sdk-efs.rb
CHANGED
data/lib/aws-sdk-efs/client.rb
CHANGED
|
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:efs)
|
|
|
32
32
|
module Aws::EFS
|
|
33
33
|
# An API client for EFS. To construct a client, you need to configure a `:region` and `:credentials`.
|
|
34
34
|
#
|
|
35
|
-
#
|
|
36
|
-
#
|
|
37
|
-
#
|
|
38
|
-
#
|
|
39
|
-
#
|
|
35
|
+
# client = Aws::EFS::Client.new(
|
|
36
|
+
# region: region_name,
|
|
37
|
+
# credentials: credentials,
|
|
38
|
+
# # ...
|
|
39
|
+
# )
|
|
40
40
|
#
|
|
41
41
|
# For details on configuring region and credentials see
|
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
|
@@ -229,15 +229,19 @@ module Aws::EFS
|
|
|
229
229
|
#
|
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
|
232
|
-
#
|
|
233
|
-
#
|
|
234
|
-
#
|
|
235
|
-
#
|
|
236
|
-
#
|
|
237
|
-
#
|
|
238
|
-
#
|
|
239
|
-
#
|
|
240
|
-
#
|
|
232
|
+
#
|
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
|
234
|
+
# no retry mode is provided.
|
|
235
|
+
#
|
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
|
238
|
+
# unsuccessful retries a client can make.
|
|
239
|
+
#
|
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
|
243
|
+
# in the future.
|
|
244
|
+
#
|
|
241
245
|
#
|
|
242
246
|
# @option options [String] :secret_access_key
|
|
243
247
|
#
|
|
@@ -525,6 +529,9 @@ module Aws::EFS
|
|
|
525
529
|
# If `KmsKeyId` is specified, the CreateFileSystemRequest$Encrypted
|
|
526
530
|
# parameter must be set to true.
|
|
527
531
|
#
|
|
532
|
+
# EFS accepts only symmetric CMKs. You cannot use asymmetric CMKs with
|
|
533
|
+
# EFS file systems.
|
|
534
|
+
#
|
|
528
535
|
# @option params [String] :throughput_mode
|
|
529
536
|
# The throughput mode for the file system to be created. There are two
|
|
530
537
|
# throughput modes to choose from for your file system: `bursting` and
|
|
@@ -1758,15 +1765,14 @@ module Aws::EFS
|
|
|
1758
1765
|
# system policy, which can be the default policy or an explicit policy
|
|
1759
1766
|
# set or updated using this API operation. When an explicit policy is
|
|
1760
1767
|
# set, it overrides the default policy. For more information about the
|
|
1761
|
-
# default file system policy, see [
|
|
1762
|
-
# EFS][1].
|
|
1768
|
+
# default file system policy, see [Default EFS File System Policy][1].
|
|
1763
1769
|
#
|
|
1764
1770
|
# This operation requires permissions for the
|
|
1765
1771
|
# `elasticfilesystem:PutFileSystemPolicy` action.
|
|
1766
1772
|
#
|
|
1767
1773
|
#
|
|
1768
1774
|
#
|
|
1769
|
-
# [1]: https://docs.aws.amazon.com/efs/latest/ug/
|
|
1775
|
+
# [1]: https://docs.aws.amazon.com/efs/latest/ug/iam-access-control-nfs-efs.html#default-filesystempolicy
|
|
1770
1776
|
#
|
|
1771
1777
|
# @option params [required, String] :file_system_id
|
|
1772
1778
|
# The ID of the EFS file system that you want to create or update the
|
|
@@ -2068,7 +2074,7 @@ module Aws::EFS
|
|
|
2068
2074
|
params: params,
|
|
2069
2075
|
config: config)
|
|
2070
2076
|
context[:gem_name] = 'aws-sdk-efs'
|
|
2071
|
-
context[:gem_version] = '1.
|
|
2077
|
+
context[:gem_version] = '1.26.0'
|
|
2072
2078
|
Seahorse::Client::Request.new(handlers, context)
|
|
2073
2079
|
end
|
|
2074
2080
|
|
data/lib/aws-sdk-efs/types.rb
CHANGED
|
@@ -283,6 +283,9 @@ module Aws::EFS
|
|
|
283
283
|
#
|
|
284
284
|
# If `KmsKeyId` is specified, the CreateFileSystemRequest$Encrypted
|
|
285
285
|
# parameter must be set to true.
|
|
286
|
+
#
|
|
287
|
+
# EFS accepts only symmetric CMKs. You cannot use asymmetric CMKs with
|
|
288
|
+
# EFS file systems.
|
|
286
289
|
# @return [String]
|
|
287
290
|
#
|
|
288
291
|
# @!attribute [rw] throughput_mode
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-efs
|
|
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: 2020-03-
|
|
11
|
+
date: 2020-03-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -80,8 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
|
-
|
|
84
|
-
rubygems_version: 2.5.2.3
|
|
83
|
+
rubygems_version: 3.0.3
|
|
85
84
|
signing_key:
|
|
86
85
|
specification_version: 4
|
|
87
86
|
summary: AWS SDK for Ruby - EFS
|