aws-sdk-efs 1.60.0 → 1.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-efs/client.rb +27 -4
- data/lib/aws-sdk-efs/endpoints.rb +1 -0
- data/lib/aws-sdk-efs/types.rb +21 -5
- data/lib/aws-sdk-efs.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50406667fdaa995d22b40d315d6b8899f87406fd55ee72569133c598b286aa3d
|
4
|
+
data.tar.gz: 93aac71af73b79551cc49bf5ab340997d7ffbea344f0da93915f20f805b5edb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc04ae1c15649344b83157e0933af7b38653667405f44adfd80b32c9ff0b397796fa2f6adc91c6cce31348c7f2ad187a2b60a8612fdeb1bc2e994a8fc2e79f0b
|
7
|
+
data.tar.gz: 37e729b98949397eb474f6f381afad718c70157a4fe0058ef3375f8f4c510c9dcabe8dc6da671c3689e35e0c8d620a0f1f21a74577c752fabefc8dcd245d4d5c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.62.0 (2023-06-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for EFS.
|
8
|
+
|
9
|
+
1.61.0 (2023-05-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.60.0 (2023-04-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.62.0
|
data/lib/aws-sdk-efs/client.rb
CHANGED
@@ -275,6 +275,11 @@ module Aws::EFS
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -380,18 +385,27 @@ module Aws::EFS
|
|
380
385
|
#
|
381
386
|
# <note markdown="1"> If multiple requests to create access points on the same file system
|
382
387
|
# are sent in quick succession, and the file system is near the limit of
|
383
|
-
#
|
384
|
-
# requests. This is to ensure that the file system does not exceed
|
385
|
-
# stated access point limit.
|
388
|
+
# 1,000 access points, you may experience a throttling response for
|
389
|
+
# these requests. This is to ensure that the file system does not exceed
|
390
|
+
# the stated access point limit.
|
386
391
|
#
|
387
392
|
# </note>
|
388
393
|
#
|
389
394
|
# This operation requires permissions for the
|
390
395
|
# `elasticfilesystem:CreateAccessPoint` action.
|
391
396
|
#
|
397
|
+
# Access points can be tagged on creation. If tags are specified in the
|
398
|
+
# creation action, IAM performs additional authorization on the
|
399
|
+
# `elasticfilesystem:TagResource` action to verify if users have
|
400
|
+
# permissions to create tags. Therefore, you must grant explicit
|
401
|
+
# permissions to use the `elasticfilesystem:TagResource` action. For
|
402
|
+
# more information, see [Granting permissions to tag resources during
|
403
|
+
# creation][2].
|
404
|
+
#
|
392
405
|
#
|
393
406
|
#
|
394
407
|
# [1]: https://docs.aws.amazon.com/efs/latest/ug/efs-access-points.html
|
408
|
+
# [2]: https://docs.aws.amazon.com/efs/latest/ug/using-tags-efs.html#supported-iam-actions-tagging.html
|
395
409
|
#
|
396
410
|
# @option params [required, String] :client_token
|
397
411
|
# A string of up to 64 ASCII characters that Amazon EFS uses to ensure
|
@@ -564,11 +578,20 @@ module Aws::EFS
|
|
564
578
|
# This operation requires permissions for the
|
565
579
|
# `elasticfilesystem:CreateFileSystem` action.
|
566
580
|
#
|
581
|
+
# File systems can be tagged on creation. If tags are specified in the
|
582
|
+
# creation action, IAM performs additional authorization on the
|
583
|
+
# `elasticfilesystem:TagResource` action to verify if users have
|
584
|
+
# permissions to create tags. Therefore, you must grant explicit
|
585
|
+
# permissions to use the `elasticfilesystem:TagResource` action. For
|
586
|
+
# more information, see [Granting permissions to tag resources during
|
587
|
+
# creation][4].
|
588
|
+
#
|
567
589
|
#
|
568
590
|
#
|
569
591
|
# [1]: https://docs.aws.amazon.com/efs/latest/ug/creating-using-create-fs.html#creating-using-create-fs-part1
|
570
592
|
# [2]: https://docs.aws.amazon.com/efs/latest/ug/performance.html#performancemodes.html
|
571
593
|
# [3]: https://docs.aws.amazon.com/efs/latest/ug/how-it-works.html
|
594
|
+
# [4]: https://docs.aws.amazon.com/efs/latest/ug/using-tags-efs.html#supported-iam-actions-tagging.html
|
572
595
|
#
|
573
596
|
# @option params [required, String] :creation_token
|
574
597
|
# A string of up to 64 ASCII characters. Amazon EFS uses this to ensure
|
@@ -2703,7 +2726,7 @@ module Aws::EFS
|
|
2703
2726
|
params: params,
|
2704
2727
|
config: config)
|
2705
2728
|
context[:gem_name] = 'aws-sdk-efs'
|
2706
|
-
context[:gem_version] = '1.
|
2729
|
+
context[:gem_version] = '1.62.0'
|
2707
2730
|
Seahorse::Client::Request.new(handlers, context)
|
2708
2731
|
end
|
2709
2732
|
|
data/lib/aws-sdk-efs/types.rb
CHANGED
@@ -1100,11 +1100,27 @@ module Aws::EFS
|
|
1100
1100
|
# configuration.
|
1101
1101
|
#
|
1102
1102
|
# @!attribute [rw] status
|
1103
|
-
# Describes the status of the destination Amazon EFS file system.
|
1104
|
-
#
|
1105
|
-
#
|
1106
|
-
#
|
1107
|
-
#
|
1103
|
+
# Describes the status of the destination Amazon EFS file system.
|
1104
|
+
#
|
1105
|
+
# * The `Paused` state occurs as a result of opting out of the source
|
1106
|
+
# or destination Region after the replication configuration was
|
1107
|
+
# created. To resume replication for the file system, you need to
|
1108
|
+
# again opt in to the Amazon Web Services Region. For more
|
1109
|
+
# information, see [Managing Amazon Web Services Regions][1] in the
|
1110
|
+
# *Amazon Web Services General Reference Guide*.
|
1111
|
+
#
|
1112
|
+
# * The `Error` state occurs when either the source or the destination
|
1113
|
+
# file system (or both) is in a failed state and is unrecoverable.
|
1114
|
+
# For more information, see [Monitoring replication status][2] in
|
1115
|
+
# the *Amazon EFS User Guide*. You must delete the replication
|
1116
|
+
# configuration, and then restore the most recent backup of the
|
1117
|
+
# failed file system (either the source or the destination) to a new
|
1118
|
+
# file system.
|
1119
|
+
#
|
1120
|
+
#
|
1121
|
+
#
|
1122
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/rande-manage.html#rande-manage-enable
|
1123
|
+
# [2]: https://docs.aws.amazon.com/efs/latest/ug/awsbackup.html#restoring-backup-efsmonitoring-replication-status.html
|
1108
1124
|
# @return [String]
|
1109
1125
|
#
|
1110
1126
|
# @!attribute [rw] file_system_id
|
data/lib/aws-sdk-efs.rb
CHANGED
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.62.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: 2023-
|
11
|
+
date: 2023-06-15 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.174.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.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|