aws-sdk-fsx 1.56.0 → 1.57.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6547dcef290654ab59ec1d28a254fe45e85d36b08f3961e3f29125a8b3ed62e
4
- data.tar.gz: d1dd12e60acc0a90e6236da1057cabe43b64a2b2ac13c42b66627b8d971d6496
3
+ metadata.gz: 7033f967d0f3843866ceff1767852e58dad02a0063765bad429404d1c6de563b
4
+ data.tar.gz: 7ae042ce6bedd722e6fa7772053ac71db99c7fd4f4efca385a8107127ba3d91b
5
5
  SHA512:
6
- metadata.gz: 8e0dc7caf5a8639cadca270942c1822139d28375571446235f586b58632332e89a018580994563a62ce78a486c961597585950b339ff76c67cabd1579631d475
7
- data.tar.gz: e621eb1220452f31971729f8efcd14f41171a8daa26273429b98fb066e9e5284f3b8825d6ae6a398cd43ca8ca427f4b91c99631558230137235b374c18cb685a
6
+ metadata.gz: 121c4e23ef41a6fffe787c233f33d63662912e135d1be57e158bd47ea77db5c7cf5dcc84ec550d5bcbc9fc211702f0f6e73204e8ea372e482189102b7ebe237a
7
+ data.tar.gz: 0a02b54b07b9c98db3aeb22f52c01e145bc91a9587a442585099a7d37d08c61f5bc3fb12cf2fdd2a23872988794b5a4b24410d9b2a8c715eb1bfa78a41a7687b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2022-07-29)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon FSx
8
+
4
9
  1.56.0 (2022-05-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.57.0
@@ -1608,13 +1608,21 @@ module Aws::FSx
1608
1608
  # Specifies the type of data repository task to create.
1609
1609
  #
1610
1610
  # @option params [Array<String>] :paths
1611
- # (Optional) The path or paths on the Amazon FSx file system to use when
1612
- # the data repository task is processed. The default path is the file
1613
- # system root directory. The paths you provide need to be relative to
1614
- # the mount point of the file system. If the mount point is `/mnt/fsx`
1615
- # and `/mnt/fsx/path1` is a directory or file on the file system you
1616
- # want to export, then the path to provide is `path1`. If a path that
1617
- # you provide isn't valid, the task fails.
1611
+ # A list of paths for the data repository task to use when the task is
1612
+ # processed. If a path that you provide isn't valid, the task fails.
1613
+ #
1614
+ # * For export tasks, the list contains paths on the Amazon FSx file
1615
+ # system from which the files are exported to the Amazon S3 bucket.
1616
+ # The default path is the file system root directory. The paths you
1617
+ # provide need to be relative to the mount point of the file system.
1618
+ # If the mount point is `/mnt/fsx` and `/mnt/fsx/path1` is a directory
1619
+ # or file on the file system you want to export, then the path to
1620
+ # provide is `path1`.
1621
+ #
1622
+ # * For import tasks, the list contains paths in the Amazon S3 bucket
1623
+ # from which POSIX metadata changes are imported to the Amazon FSx
1624
+ # file system. The path can be an S3 bucket or prefix in the format
1625
+ # `s3://myBucket/myPrefix` (where `myPrefix` is optional).
1618
1626
  #
1619
1627
  # @option params [required, String] :file_system_id
1620
1628
  # The globally unique ID of the file system, assigned by Amazon FSx.
@@ -5534,8 +5542,7 @@ module Aws::FSx
5534
5542
  req.send_request(options)
5535
5543
  end
5536
5544
 
5537
- # Lists tags for an Amazon FSx file systems and backups in the case of
5538
- # Amazon FSx for Windows File Server.
5545
+ # Lists tags for Amazon FSx resources.
5539
5546
  #
5540
5547
  # When retrieving all tags, you can optionally specify the `MaxResults`
5541
5548
  # parameter to limit the number of tags in a response. If more tags
@@ -6988,7 +6995,7 @@ module Aws::FSx
6988
6995
  params: params,
6989
6996
  config: config)
6990
6997
  context[:gem_name] = 'aws-sdk-fsx'
6991
- context[:gem_version] = '1.56.0'
6998
+ context[:gem_version] = '1.57.0'
6992
6999
  Seahorse::Client::Request.new(handlers, context)
6993
7000
  end
6994
7001
 
@@ -1087,13 +1087,21 @@ module Aws::FSx
1087
1087
  # @return [String]
1088
1088
  #
1089
1089
  # @!attribute [rw] paths
1090
- # (Optional) The path or paths on the Amazon FSx file system to use
1091
- # when the data repository task is processed. The default path is the
1092
- # file system root directory. The paths you provide need to be
1093
- # relative to the mount point of the file system. If the mount point
1094
- # is `/mnt/fsx` and `/mnt/fsx/path1` is a directory or file on the
1095
- # file system you want to export, then the path to provide is `path1`.
1096
- # If a path that you provide isn't valid, the task fails.
1090
+ # A list of paths for the data repository task to use when the task is
1091
+ # processed. If a path that you provide isn't valid, the task fails.
1092
+ #
1093
+ # * For export tasks, the list contains paths on the Amazon FSx file
1094
+ # system from which the files are exported to the Amazon S3 bucket.
1095
+ # The default path is the file system root directory. The paths you
1096
+ # provide need to be relative to the mount point of the file system.
1097
+ # If the mount point is `/mnt/fsx` and `/mnt/fsx/path1` is a
1098
+ # directory or file on the file system you want to export, then the
1099
+ # path to provide is `path1`.
1100
+ #
1101
+ # * For import tasks, the list contains paths in the Amazon S3 bucket
1102
+ # from which POSIX metadata changes are imported to the Amazon FSx
1103
+ # file system. The path can be an S3 bucket or prefix in the format
1104
+ # `s3://myBucket/myPrefix` (where `myPrefix` is optional).
1097
1105
  # @return [Array<String>]
1098
1106
  #
1099
1107
  # @!attribute [rw] file_system_id
@@ -1916,13 +1924,13 @@ module Aws::FSx
1916
1924
  # @return [Boolean]
1917
1925
  #
1918
1926
  # @!attribute [rw] copy_tags_to_volumes
1919
- # A Boolean value indicating whether tags for the volume should be
1920
- # copied to snapshots. This value defaults to `false`. If it's set to
1921
- # `true`, all tags for the volume are copied to snapshots where the
1922
- # user doesn't specify tags. If this value is `true`, and you specify
1923
- # one or more tags, only the specified tags are copied to snapshots.
1924
- # If you specify one or more tags when creating the snapshot, no tags
1925
- # are copied from the volume, regardless of this value.
1927
+ # A Boolean value indicating whether tags for the file system should
1928
+ # be copied to volumes. This value defaults to `false`. If it's set
1929
+ # to `true`, all tags for the file system are copied to volumes where
1930
+ # the user doesn't specify tags. If this value is `true`, and you
1931
+ # specify one or more tags, only the specified tags are copied to
1932
+ # volumes. If you specify one or more tags when creating the volume,
1933
+ # no tags are copied from the file system, regardless of this value.
1926
1934
  # @return [Boolean]
1927
1935
  #
1928
1936
  # @!attribute [rw] daily_automatic_backup_start_time
data/lib/aws-sdk-fsx.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-fsx/customizations'
48
48
  # @!group service
49
49
  module Aws::FSx
50
50
 
51
- GEM_VERSION = '1.56.0'
51
+ GEM_VERSION = '1.57.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-fsx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.57.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-05-25 00:00:00.000000000 Z
11
+ date: 2022-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core