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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +17 -10
- data/lib/aws-sdk-fsx/types.rb +22 -14
- data/lib/aws-sdk-fsx.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: 7033f967d0f3843866ceff1767852e58dad02a0063765bad429404d1c6de563b
|
4
|
+
data.tar.gz: 7ae042ce6bedd722e6fa7772053ac71db99c7fd4f4efca385a8107127ba3d91b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 121c4e23ef41a6fffe787c233f33d63662912e135d1be57e158bd47ea77db5c7cf5dcc84ec550d5bcbc9fc211702f0f6e73204e8ea372e482189102b7ebe237a
|
7
|
+
data.tar.gz: 0a02b54b07b9c98db3aeb22f52c01e145bc91a9587a442585099a7d37d08c61f5bc3fb12cf2fdd2a23872988794b5a4b24410d9b2a8c715eb1bfa78a41a7687b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.57.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -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
|
-
#
|
1612
|
-
#
|
1613
|
-
#
|
1614
|
-
#
|
1615
|
-
#
|
1616
|
-
#
|
1617
|
-
#
|
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
|
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.
|
6998
|
+
context[:gem_version] = '1.57.0'
|
6992
6999
|
Seahorse::Client::Request.new(handlers, context)
|
6993
7000
|
end
|
6994
7001
|
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -1087,13 +1087,21 @@ module Aws::FSx
|
|
1087
1087
|
# @return [String]
|
1088
1088
|
#
|
1089
1089
|
# @!attribute [rw] paths
|
1090
|
-
#
|
1091
|
-
#
|
1092
|
-
#
|
1093
|
-
#
|
1094
|
-
#
|
1095
|
-
#
|
1096
|
-
#
|
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
|
1920
|
-
# copied to
|
1921
|
-
# `true`, all tags for the
|
1922
|
-
# user doesn't specify tags. If this value is `true`, and you
|
1923
|
-
# one or more tags, only the specified tags are copied to
|
1924
|
-
# If you specify one or more tags when creating the
|
1925
|
-
# are copied from the
|
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
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.
|
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-
|
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
|