aws-sdk-fsx 1.0.0 → 1.1.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/lib/aws-sdk-fsx.rb +1 -1
- data/lib/aws-sdk-fsx/client.rb +3 -2
- data/lib/aws-sdk-fsx/client_api.rb +4 -0
- data/lib/aws-sdk-fsx/types.rb +37 -16
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0178658f0bdbbe100bfe779474043b1644a8f65
|
4
|
+
data.tar.gz: 2f2c01dc259ebd4a18241287e8048319dd746486
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c17ea94dad3f4a8716da28ce491d04e2df7b5e105f86af79077474ef24dd142bb0a29bd5166990381878e92293e59b843083627fa7c11aca362dea8f55934ed
|
7
|
+
data.tar.gz: 59042288e68be4c588ed8544a8b8b2637bfb7ae99a9ea60a93c4e7a8f9ccbddf349dbb2e986d352752de6bde09bed3454ca69f003a2dd2597e149299737acea8
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -458,7 +458,7 @@ module Aws::FSx
|
|
458
458
|
#
|
459
459
|
#
|
460
460
|
#
|
461
|
-
# [1]:
|
461
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html
|
462
462
|
#
|
463
463
|
# @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
|
464
464
|
# The configuration for this Microsoft Windows file system.
|
@@ -559,6 +559,7 @@ module Aws::FSx
|
|
559
559
|
# lustre_configuration: {
|
560
560
|
# weekly_maintenance_start_time: "WeeklyTime",
|
561
561
|
# import_path: "ArchivePath",
|
562
|
+
# export_path: "ArchivePath",
|
562
563
|
# imported_file_chunk_size: 1,
|
563
564
|
# },
|
564
565
|
# })
|
@@ -1567,7 +1568,7 @@ module Aws::FSx
|
|
1567
1568
|
params: params,
|
1568
1569
|
config: config)
|
1569
1570
|
context[:gem_name] = 'aws-sdk-fsx'
|
1570
|
-
context[:gem_version] = '1.
|
1571
|
+
context[:gem_version] = '1.1.0'
|
1571
1572
|
Seahorse::Client::Request.new(handlers, context)
|
1572
1573
|
end
|
1573
1574
|
|
@@ -70,6 +70,7 @@ module Aws::FSx
|
|
70
70
|
Flag = Shapes::BooleanShape.new(name: 'Flag')
|
71
71
|
IncompatibleParameterError = Shapes::StructureShape.new(name: 'IncompatibleParameterError')
|
72
72
|
InternalServerError = Shapes::StructureShape.new(name: 'InternalServerError')
|
73
|
+
InvalidExportPath = Shapes::StructureShape.new(name: 'InvalidExportPath')
|
73
74
|
InvalidImportPath = Shapes::StructureShape.new(name: 'InvalidImportPath')
|
74
75
|
InvalidNetworkSettings = Shapes::StructureShape.new(name: 'InvalidNetworkSettings')
|
75
76
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
@@ -153,6 +154,7 @@ module Aws::FSx
|
|
153
154
|
|
154
155
|
CreateFileSystemLustreConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
155
156
|
CreateFileSystemLustreConfiguration.add_member(:import_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ImportPath"))
|
157
|
+
CreateFileSystemLustreConfiguration.add_member(:export_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ExportPath"))
|
156
158
|
CreateFileSystemLustreConfiguration.add_member(:imported_file_chunk_size, Shapes::ShapeRef.new(shape: Megabytes, location_name: "ImportedFileChunkSize"))
|
157
159
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
158
160
|
|
@@ -370,6 +372,7 @@ module Aws::FSx
|
|
370
372
|
o.errors << Shapes::ShapeRef.new(shape: ActiveDirectoryError)
|
371
373
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleParameterError)
|
372
374
|
o.errors << Shapes::ShapeRef.new(shape: InvalidImportPath)
|
375
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidExportPath)
|
373
376
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNetworkSettings)
|
374
377
|
o.errors << Shapes::ShapeRef.new(shape: ServiceLimitExceeded)
|
375
378
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
@@ -399,6 +402,7 @@ module Aws::FSx
|
|
399
402
|
o.input = Shapes::ShapeRef.new(shape: DeleteBackupRequest)
|
400
403
|
o.output = Shapes::ShapeRef.new(shape: DeleteBackupResponse)
|
401
404
|
o.errors << Shapes::ShapeRef.new(shape: BadRequest)
|
405
|
+
o.errors << Shapes::ShapeRef.new(shape: BackupInProgress)
|
402
406
|
o.errors << Shapes::ShapeRef.new(shape: BackupNotFound)
|
403
407
|
o.errors << Shapes::ShapeRef.new(shape: BackupRestoring)
|
404
408
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleParameterError)
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -237,6 +237,7 @@ module Aws::FSx
|
|
237
237
|
# {
|
238
238
|
# weekly_maintenance_start_time: "WeeklyTime",
|
239
239
|
# import_path: "ArchivePath",
|
240
|
+
# export_path: "ArchivePath",
|
240
241
|
# imported_file_chunk_size: 1,
|
241
242
|
# }
|
242
243
|
#
|
@@ -246,11 +247,35 @@ module Aws::FSx
|
|
246
247
|
# @return [String]
|
247
248
|
#
|
248
249
|
# @!attribute [rw] import_path
|
249
|
-
# (Optional) The path to the Amazon S3 bucket (
|
250
|
-
# that you're using as the data repository for your
|
251
|
-
# file system
|
252
|
-
#
|
253
|
-
#
|
250
|
+
# (Optional) The path to the Amazon S3 bucket (including the optional
|
251
|
+
# prefix) that you're using as the data repository for your Amazon
|
252
|
+
# FSx for Lustre file system. The root of your FSx for Lustre file
|
253
|
+
# system will be mapped to the root of the Amazon S3 bucket you
|
254
|
+
# select. An example is `s3://import-bucket/optional-prefix`. If you
|
255
|
+
# specify a prefix after the Amazon S3 bucket name, only object keys
|
256
|
+
# with that prefix are loaded into the file system.
|
257
|
+
# @return [String]
|
258
|
+
#
|
259
|
+
# @!attribute [rw] export_path
|
260
|
+
# (Optional) The path in Amazon S3 where the root of your Amazon FSx
|
261
|
+
# file system is exported. The path must use the same Amazon S3 bucket
|
262
|
+
# as specified in ImportPath. You can provide an optional prefix to
|
263
|
+
# which new and changed data is to be exported from your Amazon FSx
|
264
|
+
# for Lustre file system. If an `ExportPath` value is not provided,
|
265
|
+
# Amazon FSx sets a default export path,
|
266
|
+
# `s3://import-bucket/FSxLustre[creation-timestamp]`. The timestamp is
|
267
|
+
# in UTC format, for example
|
268
|
+
# `s3://import-bucket/FSxLustre20181105T222312Z`.
|
269
|
+
#
|
270
|
+
# The Amazon S3 export bucket must be the same as the import bucket
|
271
|
+
# specified by `ImportPath`. If you only specify a bucket name, such
|
272
|
+
# as `s3://import-bucket`, you get a 1:1 mapping of file system
|
273
|
+
# objects to S3 bucket objects. This mapping means that the input data
|
274
|
+
# in S3 is overwritten on export. If you provide a custom prefix in
|
275
|
+
# the export path, such as
|
276
|
+
# `s3://import-bucket/[custom-optional-prefix]`, Amazon FSx exports
|
277
|
+
# the contents of your file system to that export prefix in the Amazon
|
278
|
+
# S3 bucket.
|
254
279
|
# @return [String]
|
255
280
|
#
|
256
281
|
# @!attribute [rw] imported_file_chunk_size
|
@@ -270,6 +295,7 @@ module Aws::FSx
|
|
270
295
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
271
296
|
:weekly_maintenance_start_time,
|
272
297
|
:import_path,
|
298
|
+
:export_path,
|
273
299
|
:imported_file_chunk_size)
|
274
300
|
include Aws::Structure
|
275
301
|
end
|
@@ -303,6 +329,7 @@ module Aws::FSx
|
|
303
329
|
# lustre_configuration: {
|
304
330
|
# weekly_maintenance_start_time: "WeeklyTime",
|
305
331
|
# import_path: "ArchivePath",
|
332
|
+
# export_path: "ArchivePath",
|
306
333
|
# imported_file_chunk_size: 1,
|
307
334
|
# },
|
308
335
|
# }
|
@@ -358,7 +385,7 @@ module Aws::FSx
|
|
358
385
|
#
|
359
386
|
#
|
360
387
|
#
|
361
|
-
# [1]:
|
388
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html
|
362
389
|
# @return [String]
|
363
390
|
#
|
364
391
|
# @!attribute [rw] windows_configuration
|
@@ -473,14 +500,8 @@ module Aws::FSx
|
|
473
500
|
# @return [String]
|
474
501
|
#
|
475
502
|
# @!attribute [rw] export_path
|
476
|
-
# The
|
477
|
-
#
|
478
|
-
# system to Amazon S3. The value is
|
479
|
-
# `s3://import-bucket/FSxLustre[creationtimestamp]`. The timestamp is
|
480
|
-
# presented in UTC format, for example
|
481
|
-
# `s3://import-bucket/FSxLustre20181105T222312Z`. Files are archived
|
482
|
-
# to a different prefix in the Amazon S3 bucket, preventing input data
|
483
|
-
# from being overwritten.
|
503
|
+
# The export path to the Amazon S3 bucket (and prefix) that you are
|
504
|
+
# using to store new and changed Lustre file system files in S3.
|
484
505
|
# @return [String]
|
485
506
|
#
|
486
507
|
# @!attribute [rw] imported_file_chunk_size
|
@@ -868,7 +889,7 @@ module Aws::FSx
|
|
868
889
|
#
|
869
890
|
#
|
870
891
|
#
|
871
|
-
# [1]:
|
892
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html
|
872
893
|
# @return [Array<String>]
|
873
894
|
#
|
874
895
|
# @!attribute [rw] dns_name
|
@@ -892,7 +913,7 @@ module Aws::FSx
|
|
892
913
|
#
|
893
914
|
#
|
894
915
|
#
|
895
|
-
# [1]:
|
916
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html
|
896
917
|
# @return [Array<Types::Tag>]
|
897
918
|
#
|
898
919
|
# @!attribute [rw] windows_configuration
|
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.1.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:
|
11
|
+
date: 2019-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|