aws-sdk-efs 1.55.0 → 1.56.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-efs/client.rb +25 -18
- data/lib/aws-sdk-efs/types.rb +18 -15
- data/lib/aws-sdk-efs.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e68f48c752861b7179a14d566a90b36375cd937ba6afe863ca0bcfd03983b6e1
|
4
|
+
data.tar.gz: f489bc3f031652d0fe276723706bd0dda17bc47498f587c3620b9ee0e65d17a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf3dadea195f032fa7676fe2b5ba4cd98e7b68f6ccaf2ff2cfe0ceaa6f874e5a42dd9bb88ba988c07487e6d2b91d32f6f653fb1697e09058e75e6f7f8fd00221
|
7
|
+
data.tar.gz: 72070137331cb08d5d5b5689ef4afa8cb64edcc8426be64bf88decdaa33c03a63eadbb4f1fecada69bc3ef5dbb23f8dde63f76deda108225b2ba46cdbf079ab1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.56.0 (2022-11-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds elastic as a new ThroughputMode value for EFS file systems and adds AFTER_1_DAY as a value for TransitionToIARules.
|
8
|
+
|
4
9
|
1.55.0 (2022-10-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.56.0
|
data/lib/aws-sdk-efs/client.rb
CHANGED
@@ -378,6 +378,14 @@ module Aws::EFS
|
|
378
378
|
# the application's own directory and any subdirectories. To learn
|
379
379
|
# more, see [Mounting a file system using EFS access points][1].
|
380
380
|
#
|
381
|
+
# <note markdown="1"> If multiple requests to create access points on the same file system
|
382
|
+
# are sent in quick succession, and the file system is near the limit of
|
383
|
+
# 120 access points, you may experience a throttling response for these
|
384
|
+
# requests. This is to ensure that the file system does not exceed the
|
385
|
+
# stated access point limit.
|
386
|
+
#
|
387
|
+
# </note>
|
388
|
+
#
|
381
389
|
# This operation requires permissions for the
|
382
390
|
# `elasticfilesystem:CreateAccessPoint` action.
|
383
391
|
#
|
@@ -616,15 +624,14 @@ module Aws::EFS
|
|
616
624
|
# keys with Amazon EFS file systems.
|
617
625
|
#
|
618
626
|
# @option params [String] :throughput_mode
|
619
|
-
# Specifies the throughput mode for the file system
|
620
|
-
# or `
|
621
|
-
# must also set a value for
|
622
|
-
# create the file system, you
|
623
|
-
#
|
624
|
-
#
|
625
|
-
#
|
626
|
-
#
|
627
|
-
# User Guide*.
|
627
|
+
# Specifies the throughput mode for the file system. The mode can be
|
628
|
+
# `bursting`, `provisioned`, or `elastic`. If you set `ThroughputMode`
|
629
|
+
# to `provisioned`, you must also set a value for
|
630
|
+
# `ProvisionedThroughputInMibps`. After you create the file system, you
|
631
|
+
# can decrease your file system's throughput in Provisioned Throughput
|
632
|
+
# mode or change between the throughput modes, with certain time
|
633
|
+
# restrictions. For more information, see [Specifying throughput with
|
634
|
+
# provisioned mode][1] in the *Amazon EFS User Guide*.
|
628
635
|
#
|
629
636
|
# Default is `bursting`.
|
630
637
|
#
|
@@ -760,7 +767,7 @@ module Aws::EFS
|
|
760
767
|
# performance_mode: "generalPurpose", # accepts generalPurpose, maxIO
|
761
768
|
# encrypted: false,
|
762
769
|
# kms_key_id: "KmsKeyId",
|
763
|
-
# throughput_mode: "bursting", # accepts bursting, provisioned
|
770
|
+
# throughput_mode: "bursting", # accepts bursting, provisioned, elastic
|
764
771
|
# provisioned_throughput_in_mibps: 1.0,
|
765
772
|
# availability_zone_name: "AvailabilityZoneName",
|
766
773
|
# backup: false,
|
@@ -789,7 +796,7 @@ module Aws::EFS
|
|
789
796
|
# resp.performance_mode #=> String, one of "generalPurpose", "maxIO"
|
790
797
|
# resp.encrypted #=> Boolean
|
791
798
|
# resp.kms_key_id #=> String
|
792
|
-
# resp.throughput_mode #=> String, one of "bursting", "provisioned"
|
799
|
+
# resp.throughput_mode #=> String, one of "bursting", "provisioned", "elastic"
|
793
800
|
# resp.provisioned_throughput_in_mibps #=> Float
|
794
801
|
# resp.availability_zone_name #=> String
|
795
802
|
# resp.availability_zone_id #=> String
|
@@ -1757,7 +1764,7 @@ module Aws::EFS
|
|
1757
1764
|
# resp.file_systems[0].performance_mode #=> String, one of "generalPurpose", "maxIO"
|
1758
1765
|
# resp.file_systems[0].encrypted #=> Boolean
|
1759
1766
|
# resp.file_systems[0].kms_key_id #=> String
|
1760
|
-
# resp.file_systems[0].throughput_mode #=> String, one of "bursting", "provisioned"
|
1767
|
+
# resp.file_systems[0].throughput_mode #=> String, one of "bursting", "provisioned", "elastic"
|
1761
1768
|
# resp.file_systems[0].provisioned_throughput_in_mibps #=> Float
|
1762
1769
|
# resp.file_systems[0].availability_zone_name #=> String
|
1763
1770
|
# resp.file_systems[0].availability_zone_id #=> String
|
@@ -1824,7 +1831,7 @@ module Aws::EFS
|
|
1824
1831
|
# @example Response structure
|
1825
1832
|
#
|
1826
1833
|
# resp.lifecycle_policies #=> Array
|
1827
|
-
# resp.lifecycle_policies[0].transition_to_ia #=> String, one of "AFTER_7_DAYS", "AFTER_14_DAYS", "AFTER_30_DAYS", "AFTER_60_DAYS", "AFTER_90_DAYS"
|
1834
|
+
# resp.lifecycle_policies[0].transition_to_ia #=> String, one of "AFTER_7_DAYS", "AFTER_14_DAYS", "AFTER_30_DAYS", "AFTER_60_DAYS", "AFTER_90_DAYS", "AFTER_1_DAY"
|
1828
1835
|
# resp.lifecycle_policies[0].transition_to_primary_storage_class #=> String, one of "AFTER_1_ACCESS"
|
1829
1836
|
#
|
1830
1837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/DescribeLifecycleConfiguration AWS API Documentation
|
@@ -2513,7 +2520,7 @@ module Aws::EFS
|
|
2513
2520
|
# file_system_id: "FileSystemId", # required
|
2514
2521
|
# lifecycle_policies: [ # required
|
2515
2522
|
# {
|
2516
|
-
# transition_to_ia: "AFTER_7_DAYS", # accepts AFTER_7_DAYS, AFTER_14_DAYS, AFTER_30_DAYS, AFTER_60_DAYS, AFTER_90_DAYS
|
2523
|
+
# transition_to_ia: "AFTER_7_DAYS", # accepts AFTER_7_DAYS, AFTER_14_DAYS, AFTER_30_DAYS, AFTER_60_DAYS, AFTER_90_DAYS, AFTER_1_DAY
|
2517
2524
|
# transition_to_primary_storage_class: "AFTER_1_ACCESS", # accepts AFTER_1_ACCESS
|
2518
2525
|
# },
|
2519
2526
|
# ],
|
@@ -2522,7 +2529,7 @@ module Aws::EFS
|
|
2522
2529
|
# @example Response structure
|
2523
2530
|
#
|
2524
2531
|
# resp.lifecycle_policies #=> Array
|
2525
|
-
# resp.lifecycle_policies[0].transition_to_ia #=> String, one of "AFTER_7_DAYS", "AFTER_14_DAYS", "AFTER_30_DAYS", "AFTER_60_DAYS", "AFTER_90_DAYS"
|
2532
|
+
# resp.lifecycle_policies[0].transition_to_ia #=> String, one of "AFTER_7_DAYS", "AFTER_14_DAYS", "AFTER_30_DAYS", "AFTER_60_DAYS", "AFTER_90_DAYS", "AFTER_1_DAY"
|
2526
2533
|
# resp.lifecycle_policies[0].transition_to_primary_storage_class #=> String, one of "AFTER_1_ACCESS"
|
2527
2534
|
#
|
2528
2535
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/PutLifecycleConfiguration AWS API Documentation
|
@@ -2645,7 +2652,7 @@ module Aws::EFS
|
|
2645
2652
|
#
|
2646
2653
|
# resp = client.update_file_system({
|
2647
2654
|
# file_system_id: "FileSystemId", # required
|
2648
|
-
# throughput_mode: "bursting", # accepts bursting, provisioned
|
2655
|
+
# throughput_mode: "bursting", # accepts bursting, provisioned, elastic
|
2649
2656
|
# provisioned_throughput_in_mibps: 1.0,
|
2650
2657
|
# })
|
2651
2658
|
#
|
@@ -2666,7 +2673,7 @@ module Aws::EFS
|
|
2666
2673
|
# resp.performance_mode #=> String, one of "generalPurpose", "maxIO"
|
2667
2674
|
# resp.encrypted #=> Boolean
|
2668
2675
|
# resp.kms_key_id #=> String
|
2669
|
-
# resp.throughput_mode #=> String, one of "bursting", "provisioned"
|
2676
|
+
# resp.throughput_mode #=> String, one of "bursting", "provisioned", "elastic"
|
2670
2677
|
# resp.provisioned_throughput_in_mibps #=> Float
|
2671
2678
|
# resp.availability_zone_name #=> String
|
2672
2679
|
# resp.availability_zone_id #=> String
|
@@ -2696,7 +2703,7 @@ module Aws::EFS
|
|
2696
2703
|
params: params,
|
2697
2704
|
config: config)
|
2698
2705
|
context[:gem_name] = 'aws-sdk-efs'
|
2699
|
-
context[:gem_version] = '1.
|
2706
|
+
context[:gem_version] = '1.56.0'
|
2700
2707
|
Seahorse::Client::Request.new(handlers, context)
|
2701
2708
|
end
|
2702
2709
|
|
data/lib/aws-sdk-efs/types.rb
CHANGED
@@ -378,7 +378,7 @@ module Aws::EFS
|
|
378
378
|
# performance_mode: "generalPurpose", # accepts generalPurpose, maxIO
|
379
379
|
# encrypted: false,
|
380
380
|
# kms_key_id: "KmsKeyId",
|
381
|
-
# throughput_mode: "bursting", # accepts bursting, provisioned
|
381
|
+
# throughput_mode: "bursting", # accepts bursting, provisioned, elastic
|
382
382
|
# provisioned_throughput_in_mibps: 1.0,
|
383
383
|
# availability_zone_name: "AvailabilityZoneName",
|
384
384
|
# backup: false,
|
@@ -449,15 +449,14 @@ module Aws::EFS
|
|
449
449
|
# @return [String]
|
450
450
|
#
|
451
451
|
# @!attribute [rw] throughput_mode
|
452
|
-
# Specifies the throughput mode for the file system
|
453
|
-
# or `
|
454
|
-
# must also set a value for
|
455
|
-
#
|
456
|
-
#
|
457
|
-
#
|
458
|
-
#
|
459
|
-
#
|
460
|
-
# User Guide*.
|
452
|
+
# Specifies the throughput mode for the file system. The mode can be
|
453
|
+
# `bursting`, `provisioned`, or `elastic`. If you set `ThroughputMode`
|
454
|
+
# to `provisioned`, you must also set a value for
|
455
|
+
# `ProvisionedThroughputInMibps`. After you create the file system,
|
456
|
+
# you can decrease your file system's throughput in Provisioned
|
457
|
+
# Throughput mode or change between the throughput modes, with certain
|
458
|
+
# time restrictions. For more information, see [Specifying throughput
|
459
|
+
# with provisioned mode][1] in the *Amazon EFS User Guide*.
|
461
460
|
#
|
462
461
|
# Default is `bursting`.
|
463
462
|
#
|
@@ -1935,7 +1934,7 @@ module Aws::EFS
|
|
1935
1934
|
# data as a hash:
|
1936
1935
|
#
|
1937
1936
|
# {
|
1938
|
-
# transition_to_ia: "AFTER_7_DAYS", # accepts AFTER_7_DAYS, AFTER_14_DAYS, AFTER_30_DAYS, AFTER_60_DAYS, AFTER_90_DAYS
|
1937
|
+
# transition_to_ia: "AFTER_7_DAYS", # accepts AFTER_7_DAYS, AFTER_14_DAYS, AFTER_30_DAYS, AFTER_60_DAYS, AFTER_90_DAYS, AFTER_1_DAY
|
1939
1938
|
# transition_to_primary_storage_class: "AFTER_1_ACCESS", # accepts AFTER_1_ACCESS
|
1940
1939
|
# }
|
1941
1940
|
#
|
@@ -2421,7 +2420,7 @@ module Aws::EFS
|
|
2421
2420
|
# file_system_id: "FileSystemId", # required
|
2422
2421
|
# lifecycle_policies: [ # required
|
2423
2422
|
# {
|
2424
|
-
# transition_to_ia: "AFTER_7_DAYS", # accepts AFTER_7_DAYS, AFTER_14_DAYS, AFTER_30_DAYS, AFTER_60_DAYS, AFTER_90_DAYS
|
2423
|
+
# transition_to_ia: "AFTER_7_DAYS", # accepts AFTER_7_DAYS, AFTER_14_DAYS, AFTER_30_DAYS, AFTER_60_DAYS, AFTER_90_DAYS, AFTER_1_DAY
|
2425
2424
|
# transition_to_primary_storage_class: "AFTER_1_ACCESS", # accepts AFTER_1_ACCESS
|
2426
2425
|
# },
|
2427
2426
|
# ],
|
@@ -2749,8 +2748,12 @@ module Aws::EFS
|
|
2749
2748
|
end
|
2750
2749
|
|
2751
2750
|
# Returned when the `CreateAccessPoint` API action is called too quickly
|
2752
|
-
# and the number of Access Points
|
2753
|
-
# 120.
|
2751
|
+
# and the number of Access Points on the file system is nearing the
|
2752
|
+
# [limit of 120][1].
|
2753
|
+
#
|
2754
|
+
#
|
2755
|
+
#
|
2756
|
+
# [1]: https://docs.aws.amazon.com/efs/latest/ug/limits.html#limits-efs-resources-per-account-per-region
|
2754
2757
|
#
|
2755
2758
|
# @!attribute [rw] error_code
|
2756
2759
|
# The error code is a string that uniquely identifies an error
|
@@ -2893,7 +2896,7 @@ module Aws::EFS
|
|
2893
2896
|
#
|
2894
2897
|
# {
|
2895
2898
|
# file_system_id: "FileSystemId", # required
|
2896
|
-
# throughput_mode: "bursting", # accepts bursting, provisioned
|
2899
|
+
# throughput_mode: "bursting", # accepts bursting, provisioned, elastic
|
2897
2900
|
# provisioned_throughput_in_mibps: 1.0,
|
2898
2901
|
# }
|
2899
2902
|
#
|
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.56.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: 2022-
|
11
|
+
date: 2022-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|