aws-sdk-fsx 1.99.0 → 1.101.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-fsx/client.rb +5 -6
- data/lib/aws-sdk-fsx/types.rb +12 -9
- data/lib/aws-sdk-fsx.rb +3 -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: 641b674eb69238063a79f1b14c1e79a9e2c3bcd8430934bdae0df35fc6de2e4e
|
4
|
+
data.tar.gz: 687b7284b7ebea33f3317219a1e775fa147264a2a2233de13cc4eefa15607c81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 666cb87b57e668459d0f254df103d2b0b25ed031c320f60848c27a2b0dafa0648839385ed438b4f6d70af17523882c798f031624ab80f2e063ec85874558324f
|
7
|
+
data.tar.gz: 7dc6336212563fbfaf560ccd171d02bb502ff5086734fb7334cdb314a54f9244fd0262b631737f3a3aa310d204ec29601c6ebd76343cc46c6326c35880d9f33f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.101.0 (2024-09-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Doc-only update to address Lustre S3 hard-coded names.
|
8
|
+
|
9
|
+
1.100.0 (2024-09-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.99.0 (2024-09-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.101.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
|
|
36
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
37
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
38
38
|
|
39
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:fsx)
|
40
|
-
|
41
39
|
module Aws::FSx
|
42
40
|
# An API client for FSx. To construct a client, you need to configure a `:region` and `:credentials`.
|
43
41
|
#
|
@@ -2041,8 +2039,9 @@ module Aws::FSx
|
|
2041
2039
|
# @option params [required, String] :data_repository_path
|
2042
2040
|
# The path to the Amazon S3 data repository that will be linked to the
|
2043
2041
|
# file system. The path can be an S3 bucket or prefix in the format
|
2044
|
-
# `s3://
|
2045
|
-
# repository files will be imported from
|
2042
|
+
# `s3://bucket-name/prefix/` (where `prefix` is optional). This path
|
2043
|
+
# specifies where in the S3 data repository files will be imported from
|
2044
|
+
# or exported to.
|
2046
2045
|
#
|
2047
2046
|
# @option params [Boolean] :batch_import_meta_data_on_create
|
2048
2047
|
# Set to `true` to run an import data repository task to import metadata
|
@@ -2207,7 +2206,7 @@ module Aws::FSx
|
|
2207
2206
|
# * For import tasks, the list contains paths in the Amazon S3 bucket
|
2208
2207
|
# from which POSIX metadata changes are imported to the FSx for Lustre
|
2209
2208
|
# file system. The path can be an S3 bucket or prefix in the format
|
2210
|
-
# `s3://
|
2209
|
+
# `s3://bucket-name/prefix` (where `prefix` is optional).
|
2211
2210
|
#
|
2212
2211
|
# * For release tasks, the list contains directory or file paths on the
|
2213
2212
|
# FSx for Lustre file system from which to release exported files. If
|
@@ -9332,7 +9331,7 @@ module Aws::FSx
|
|
9332
9331
|
tracer: tracer
|
9333
9332
|
)
|
9334
9333
|
context[:gem_name] = 'aws-sdk-fsx'
|
9335
|
-
context[:gem_version] = '1.
|
9334
|
+
context[:gem_version] = '1.101.0'
|
9336
9335
|
Seahorse::Client::Request.new(handlers, context)
|
9337
9336
|
end
|
9338
9337
|
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -840,9 +840,9 @@ module Aws::FSx
|
|
840
840
|
# absolute path that defines where the completion report will be
|
841
841
|
# stored in the destination location. The `Path` you provide must be
|
842
842
|
# located within the file system’s ExportPath. An example `Path` value
|
843
|
-
# is "s3://
|
844
|
-
# provides the following information for each file in the
|
845
|
-
# FilePath, FileStatus, and ErrorCode.
|
843
|
+
# is "s3://amzn-s3-demo-bucket/myExportPath/optionalPrefix". The
|
844
|
+
# report provides the following information for each file in the
|
845
|
+
# report: FilePath, FileStatus, and ErrorCode.
|
846
846
|
# @return [String]
|
847
847
|
#
|
848
848
|
# @!attribute [rw] format
|
@@ -1169,8 +1169,9 @@ module Aws::FSx
|
|
1169
1169
|
# @!attribute [rw] data_repository_path
|
1170
1170
|
# The path to the Amazon S3 data repository that will be linked to the
|
1171
1171
|
# file system. The path can be an S3 bucket or prefix in the format
|
1172
|
-
# `s3://
|
1173
|
-
# repository files will be imported
|
1172
|
+
# `s3://bucket-name/prefix/` (where `prefix` is optional). This path
|
1173
|
+
# specifies where in the S3 data repository files will be imported
|
1174
|
+
# from or exported to.
|
1174
1175
|
# @return [String]
|
1175
1176
|
#
|
1176
1177
|
# @!attribute [rw] batch_import_meta_data_on_create
|
@@ -1278,7 +1279,7 @@ module Aws::FSx
|
|
1278
1279
|
# * For import tasks, the list contains paths in the Amazon S3 bucket
|
1279
1280
|
# from which POSIX metadata changes are imported to the FSx for
|
1280
1281
|
# Lustre file system. The path can be an S3 bucket or prefix in the
|
1281
|
-
# format `s3://
|
1282
|
+
# format `s3://bucket-name/prefix` (where `prefix` is optional).
|
1282
1283
|
#
|
1283
1284
|
# * For release tasks, the list contains directory or file paths on
|
1284
1285
|
# the FSx for Lustre file system from which to release exported
|
@@ -3633,10 +3634,12 @@ module Aws::FSx
|
|
3633
3634
|
# parameter.
|
3634
3635
|
#
|
3635
3636
|
# * For Amazon File Cache, the path can be an S3 bucket or prefix in
|
3636
|
-
# the format `s3://
|
3637
|
+
# the format `s3://bucket-name/prefix/` (where `prefix` is
|
3638
|
+
# optional).
|
3637
3639
|
#
|
3638
3640
|
# * For Amazon FSx for Lustre, the path can be an S3 bucket or prefix
|
3639
|
-
# in the format `s3://
|
3641
|
+
# in the format `s3://bucket-name/prefix/` (where `prefix` is
|
3642
|
+
# optional).
|
3640
3643
|
# @return [String]
|
3641
3644
|
#
|
3642
3645
|
# @!attribute [rw] batch_import_meta_data_on_create
|
@@ -5728,7 +5731,7 @@ module Aws::FSx
|
|
5728
5731
|
# parameter.
|
5729
5732
|
#
|
5730
5733
|
# * The path can be an S3 bucket or prefix in the format
|
5731
|
-
# `s3://
|
5734
|
+
# `s3://bucket-name/prefix/` (where `prefix` is optional).
|
5732
5735
|
# @return [String]
|
5733
5736
|
#
|
5734
5737
|
# @!attribute [rw] data_repository_subdirectories
|
data/lib/aws-sdk-fsx.rb
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
require 'aws-sdk-core'
|
12
12
|
require 'aws-sigv4'
|
13
13
|
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:fsx)
|
15
|
+
|
14
16
|
# This module provides support for Amazon FSx. This module is available in the
|
15
17
|
# `aws-sdk-fsx` gem.
|
16
18
|
#
|
@@ -52,7 +54,7 @@ module Aws::FSx
|
|
52
54
|
autoload :EndpointProvider, 'aws-sdk-fsx/endpoint_provider'
|
53
55
|
autoload :Endpoints, 'aws-sdk-fsx/endpoints'
|
54
56
|
|
55
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.101.0'
|
56
58
|
|
57
59
|
end
|
58
60
|
|
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.101.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: 2024-09-
|
11
|
+
date: 2024-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|