aws-sdk-efs 1.64.0 → 1.66.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db10c0fecce03dcf75afbc5f78d4c4e0c7ce70aff3a7c501695d0312621096b0
4
- data.tar.gz: 23c99e2e7268d48e8f571dde8e2b7af067a73baa27ef40028b6a6c984e6e2881
3
+ metadata.gz: 0e89338c4b38443d4ea80716c290eb4d965c5370b388d28538f721e98dfd3246
4
+ data.tar.gz: 4090e0428e1addaa92c44126abf5b613a4d09ff625463f839c6a126d6c10da80
5
5
  SHA512:
6
- metadata.gz: a701a11fb0a04d24ad04492b8c9036338f581297dc236e4bca1ee2dc6c637ff565e577dcf26b16d2e28cc970ad91caa9765bb435727a489c87e63a44d595da37
7
- data.tar.gz: 17f9242abdb164f8db3757d84b21f8a64db58406f868374958af2eda00c9fedcc201eff0eb41c83e31bbcaaecf6bdfdd86acded4eaa6703ee88e37145909172d
6
+ metadata.gz: 56988206ba7f421147f3cb5449c720cb86d3394952072b4023079682c5929f25de5755cd1e8450d6826c8c629da720eff5caf0e2a2c651574c9ce16785ada98a
7
+ data.tar.gz: 5756891ec74658a136c104c1e279905792226d5718153cd02aef7cb9aed318c9fadf8c11984830cf14788abdc703aa7f3a356adc229aeee826ae1ea884c2e0e3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2023-09-22)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Elastic File System
8
+
9
+ 1.65.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.64.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.66.0
@@ -216,6 +216,10 @@ module Aws::EFS
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -624,6 +628,8 @@ module Aws::EFS
624
628
  #
625
629
  # </note>
626
630
  #
631
+ # Default is `generalPurpose`.
632
+ #
627
633
  # @option params [Boolean] :encrypted
628
634
  # A Boolean value that, if true, creates an encrypted file system. When
629
635
  # creating an encrypted file system, you have the option of specifying
@@ -674,12 +680,13 @@ module Aws::EFS
674
680
  # [1]: https://docs.aws.amazon.com/efs/latest/ug/performance.html#provisioned-throughput
675
681
  #
676
682
  # @option params [Float] :provisioned_throughput_in_mibps
677
- # The throughput, measured in MiB/s, that you want to provision for a
678
- # file system that you're creating. Valid values are 1-1024. Required
679
- # if `ThroughputMode` is set to `provisioned`. The upper limit for
680
- # throughput is 1024 MiB/s. To increase this limit, contact Amazon Web
681
- # Services Support. For more information, see [Amazon EFS quotas that
682
- # you can increase][1] in the *Amazon EFS User Guide*.
683
+ # The throughput, measured in mebibytes per second (MiBps), that you
684
+ # want to provision for a file system that you're creating. Required if
685
+ # `ThroughputMode` is set to `provisioned`. Valid values are 1-3414
686
+ # MiBps, with the upper limit depending on Region. To increase this
687
+ # limit, contact Amazon Web Services Support. For more information, see
688
+ # [Amazon EFS quotas that you can increase][1] in the *Amazon EFS User
689
+ # Guide*.
683
690
  #
684
691
  #
685
692
  #
@@ -1072,16 +1079,17 @@ module Aws::EFS
1072
1079
  #
1073
1080
  # * **Amazon Web Services Region** - The Amazon Web Services Region in
1074
1081
  # which the destination file system is created. Amazon EFS
1075
- # replication is available in all Amazon Web Services Regions that
1076
- # Amazon EFS is available in, except Africa (Cape Town), Asia
1077
- # Pacific (Hong Kong), Asia Pacific (Jakarta), Europe (Milan), and
1078
- # Middle East (Bahrain).
1082
+ # replication is available in all Amazon Web Services Regions in
1083
+ # which EFS is available. To use EFS replication in a Region that is
1084
+ # disabled by default, you must first opt in to the Region. For more
1085
+ # information, see [Managing Amazon Web Services Regions][2] in the
1086
+ # *Amazon Web Services General Reference Reference Guide*
1079
1087
  #
1080
1088
  # * **Availability Zone** - If you want the destination file system to
1081
1089
  # use EFS One Zone availability and durability, you must specify the
1082
1090
  # Availability Zone to create the file system in. For more
1083
1091
  # information about EFS storage classes, see [ Amazon EFS storage
1084
- # classes][2] in the *Amazon EFS User Guide*.
1092
+ # classes][3] in the *Amazon EFS User Guide*.
1085
1093
  #
1086
1094
  # * **Encryption** - All destination file systems are created with
1087
1095
  # encryption at rest enabled. You can specify the Key Management
@@ -1112,7 +1120,7 @@ module Aws::EFS
1112
1120
  # After the destination file system is created, you can enable EFS
1113
1121
  # lifecycle management and EFS Intelligent-Tiering.
1114
1122
  #
1115
- # * **Automatic backups** - Automatic daily backups not enabled on the
1123
+ # * **Automatic backups** - Automatic daily backups are enabled on the
1116
1124
  # destination file system. After the file system is created, you can
1117
1125
  # change this setting.
1118
1126
  #
@@ -1122,7 +1130,8 @@ module Aws::EFS
1122
1130
  #
1123
1131
  #
1124
1132
  # [1]: https://docs.aws.amazon.com/efs/latest/ug/efs-replication.html
1125
- # [2]: https://docs.aws.amazon.com/efs/latest/ug/storage-classes.html
1133
+ # [2]: https://docs.aws.amazon.com/general/latest/gr/rande-manage.html#rande-manage-enable
1134
+ # [3]: https://docs.aws.amazon.com/efs/latest/ug/storage-classes.html
1126
1135
  #
1127
1136
  # @option params [required, String] :source_file_system_id
1128
1137
  # Specifies the Amazon EFS file system that you want to replicate. This
@@ -1420,13 +1429,11 @@ module Aws::EFS
1420
1429
  req.send_request(options)
1421
1430
  end
1422
1431
 
1423
- # Deletes an existing replication configuration. To delete a replication
1424
- # configuration, you must make the request from the Amazon Web Services
1425
- # Region in which the destination file system is located. Deleting a
1426
- # replication configuration ends the replication process. After a
1427
- # replication configuration is deleted, the destination file system is
1428
- # no longer read-only. You can write to the destination file system
1429
- # after its status becomes `Writeable`.
1432
+ # Deletes an existing replication configuration. Deleting a replication
1433
+ # configuration ends the replication process. After a replication
1434
+ # configuration is deleted, the destination file system is no longer
1435
+ # read-only. You can write to the destination file system after its
1436
+ # status becomes `Writeable`.
1430
1437
  #
1431
1438
  # @option params [required, String] :source_file_system_id
1432
1439
  # The ID of the source file system in the replication configuration.
@@ -1579,8 +1586,7 @@ module Aws::EFS
1579
1586
 
1580
1587
  # Returns the account preferences settings for the Amazon Web Services
1581
1588
  # account associated with the user making the request, in the current
1582
- # Amazon Web Services Region. For more information, see [Managing Amazon
1583
- # EFS resource IDs](efs/latest/ug/manage-efs-resource-ids.html).
1589
+ # Amazon Web Services Region.
1584
1590
  #
1585
1591
  # @option params [String] :next_token
1586
1592
  # (Optional) You can use `NextToken` in a subsequent request to fetch
@@ -2656,11 +2662,17 @@ module Aws::EFS
2656
2662
  # `ProvisionedThroughputInMibps`.
2657
2663
  #
2658
2664
  # @option params [Float] :provisioned_throughput_in_mibps
2659
- # (Optional) Sets the amount of provisioned throughput, in MiB/s, for
2660
- # the file system. Valid values are 1-1024. If you are changing the
2661
- # throughput mode to provisioned, you must also provide the amount of
2662
- # provisioned throughput. Required if `ThroughputMode` is changed to
2663
- # `provisioned` on update.
2665
+ # (Optional) The throughput, measured in mebibytes per second (MiBps),
2666
+ # that you want to provision for a file system that you're creating.
2667
+ # Required if `ThroughputMode` is set to `provisioned`. Valid values are
2668
+ # 1-3414 MiBps, with the upper limit depending on Region. To increase
2669
+ # this limit, contact Amazon Web Services Support. For more information,
2670
+ # see [Amazon EFS quotas that you can increase][1] in the *Amazon EFS
2671
+ # User Guide*.
2672
+ #
2673
+ #
2674
+ #
2675
+ # [1]: https://docs.aws.amazon.com/efs/latest/ug/limits.html#soft-limits
2664
2676
  #
2665
2677
  # @return [Types::FileSystemDescription] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2666
2678
  #
@@ -2737,7 +2749,7 @@ module Aws::EFS
2737
2749
  params: params,
2738
2750
  config: config)
2739
2751
  context[:gem_name] = 'aws-sdk-efs'
2740
- context[:gem_version] = '1.64.0'
2752
+ context[:gem_version] = '1.66.0'
2741
2753
  Seahorse::Client::Request.new(handlers, context)
2742
2754
  end
2743
2755
 
@@ -357,6 +357,8 @@ module Aws::EFS
357
357
  # storage classes.
358
358
  #
359
359
  # </note>
360
+ #
361
+ # Default is `generalPurpose`.
360
362
  # @return [String]
361
363
  #
362
364
  # @!attribute [rw] encrypted
@@ -412,12 +414,13 @@ module Aws::EFS
412
414
  # @return [String]
413
415
  #
414
416
  # @!attribute [rw] provisioned_throughput_in_mibps
415
- # The throughput, measured in MiB/s, that you want to provision for a
416
- # file system that you're creating. Valid values are 1-1024. Required
417
- # if `ThroughputMode` is set to `provisioned`. The upper limit for
418
- # throughput is 1024 MiB/s. To increase this limit, contact Amazon Web
419
- # Services Support. For more information, see [Amazon EFS quotas that
420
- # you can increase][1] in the *Amazon EFS User Guide*.
417
+ # The throughput, measured in mebibytes per second (MiBps), that you
418
+ # want to provision for a file system that you're creating. Required
419
+ # if `ThroughputMode` is set to `provisioned`. Valid values are 1-3414
420
+ # MiBps, with the upper limit depending on Region. To increase this
421
+ # limit, contact Amazon Web Services Support. For more information,
422
+ # see [Amazon EFS quotas that you can increase][1] in the *Amazon EFS
423
+ # User Guide*.
421
424
  #
422
425
  #
423
426
  #
@@ -1306,7 +1309,7 @@ module Aws::EFS
1306
1309
  # @return [String]
1307
1310
  #
1308
1311
  # @!attribute [rw] provisioned_throughput_in_mibps
1309
- # The amount of provisioned throughput, measured in MiB/s, for the
1312
+ # The amount of provisioned throughput, measured in MiBps, for the
1310
1313
  # file system. Valid for file systems using `ThroughputMode` set to
1311
1314
  # `provisioned`.
1312
1315
  # @return [Float]
@@ -2166,6 +2169,8 @@ module Aws::EFS
2166
2169
  include Aws::Structure
2167
2170
  end
2168
2171
 
2172
+ # Describes the replication configuration for a specific file system.
2173
+ #
2169
2174
  # @!attribute [rw] source_file_system_id
2170
2175
  # The ID of the source Amazon EFS file system that is being
2171
2176
  # replicated.
@@ -2567,11 +2572,17 @@ module Aws::EFS
2567
2572
  # @return [String]
2568
2573
  #
2569
2574
  # @!attribute [rw] provisioned_throughput_in_mibps
2570
- # (Optional) Sets the amount of provisioned throughput, in MiB/s, for
2571
- # the file system. Valid values are 1-1024. If you are changing the
2572
- # throughput mode to provisioned, you must also provide the amount of
2573
- # provisioned throughput. Required if `ThroughputMode` is changed to
2574
- # `provisioned` on update.
2575
+ # (Optional) The throughput, measured in mebibytes per second (MiBps),
2576
+ # that you want to provision for a file system that you're creating.
2577
+ # Required if `ThroughputMode` is set to `provisioned`. Valid values
2578
+ # are 1-3414 MiBps, with the upper limit depending on Region. To
2579
+ # increase this limit, contact Amazon Web Services Support. For more
2580
+ # information, see [Amazon EFS quotas that you can increase][1] in the
2581
+ # *Amazon EFS User Guide*.
2582
+ #
2583
+ #
2584
+ #
2585
+ # [1]: https://docs.aws.amazon.com/efs/latest/ug/limits.html#soft-limits
2575
2586
  # @return [Float]
2576
2587
  #
2577
2588
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem-2015-02-01/UpdateFileSystemRequest AWS API Documentation
data/lib/aws-sdk-efs.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-efs/customizations'
52
52
  # @!group service
53
53
  module Aws::EFS
54
54
 
55
- GEM_VERSION = '1.64.0'
55
+ GEM_VERSION = '1.66.0'
56
56
 
57
57
  end
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.64.0
4
+ version: 1.66.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-07-06 00:00:00.000000000 Z
11
+ date: 2023-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core