aws-sdk-fsx 1.27.0 → 1.33.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 +4 -3
- data/lib/aws-sdk-fsx/client.rb +339 -61
- data/lib/aws-sdk-fsx/client_api.rb +86 -0
- data/lib/aws-sdk-fsx/types.rb +521 -121
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf4cb2c9255cd47c113ea8527fd4360681ed978f56110468c9d309a2f685ce76
|
4
|
+
data.tar.gz: 567642551659206f346a1e675c9d24e77064c45104319759e0411380ed64c301
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be4059070a4ff1acbaf83be3a5d38c04fe232c3b484796bf20ba0944e6b32ada12777cfe9267aa96d3d28d81b4b7e287f25f9657bb947aa03ba08847f84aa045
|
7
|
+
data.tar.gz: b54ad620f333150eb073f8f019cc9ca95a911504993c80ef69d6a4fbe37e2340c8cba82907bb0f6deb5d4c541b99905dd73274f3d89d5ea6289927d1b3c0bc51
|
data/lib/aws-sdk-fsx.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -27,7 +28,7 @@ require_relative 'aws-sdk-fsx/customizations'
|
|
27
28
|
# structure.
|
28
29
|
#
|
29
30
|
# f_sx = Aws::FSx::Client.new
|
30
|
-
# resp = f_sx.
|
31
|
+
# resp = f_sx.associate_file_system_aliases(params)
|
31
32
|
#
|
32
33
|
# See {Client} for more information.
|
33
34
|
#
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-fsx/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::FSx
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.33.0'
|
51
52
|
|
52
53
|
end
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -85,13 +85,28 @@ module Aws::FSx
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::FSx
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -322,6 +337,86 @@ module Aws::FSx
|
|
322
337
|
|
323
338
|
# @!group API Operations
|
324
339
|
|
340
|
+
# Use this action to associate one or more Domain Name Server (DNS)
|
341
|
+
# aliases with an existing Amazon FSx for Windows File Server file
|
342
|
+
# system. A file systen can have a maximum of 50 DNS aliases associated
|
343
|
+
# with it at any one time. If you try to associate a DNS alias that is
|
344
|
+
# already associated with the file system, FSx takes no action on that
|
345
|
+
# alias in the request. For more information, see [Working with DNS
|
346
|
+
# Aliases][1] and [Walkthrough 5: Using DNS aliases to access your file
|
347
|
+
# system][2], including additional steps you must take to be able to
|
348
|
+
# access your file system using a DNS alias.
|
349
|
+
#
|
350
|
+
# The system response shows the DNS aliases that Amazon FSx is
|
351
|
+
# attempting to associate with the file system. Use the API operation to
|
352
|
+
# monitor the status of the aliases Amazon FSx is associating with the
|
353
|
+
# file system.
|
354
|
+
#
|
355
|
+
#
|
356
|
+
#
|
357
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-dns-aliases.html
|
358
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/walkthrough05-file-system-custom-CNAME.html
|
359
|
+
#
|
360
|
+
# @option params [String] :client_request_token
|
361
|
+
# (Optional) An idempotency token for resource creation, in a string of
|
362
|
+
# up to 64 ASCII characters. This token is automatically filled on your
|
363
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
364
|
+
# SDK.
|
365
|
+
#
|
366
|
+
# **A suitable default value is auto-generated.** You should normally
|
367
|
+
# not need to pass this option.**
|
368
|
+
#
|
369
|
+
# @option params [required, String] :file_system_id
|
370
|
+
# Specifies the file system with which you want to associate one or more
|
371
|
+
# DNS aliases.
|
372
|
+
#
|
373
|
+
# @option params [required, Array<String>] :aliases
|
374
|
+
# An array of one or more DNS alias names to associate with the file
|
375
|
+
# system. The alias name has to comply with the following formatting
|
376
|
+
# requirements:
|
377
|
+
#
|
378
|
+
# * Formatted as a fully-qualified domain name (FQDN), <i>
|
379
|
+
# <code>hostname.domain</code> </i>, for example,
|
380
|
+
# `accounting.corp.example.com`.
|
381
|
+
#
|
382
|
+
# * Can contain alphanumeric characters and the hyphen (-).
|
383
|
+
#
|
384
|
+
# * Cannot start or end with a hyphen.
|
385
|
+
#
|
386
|
+
# * Can start with a numeric.
|
387
|
+
#
|
388
|
+
# For DNS alias names, Amazon FSx stores alphabetic characters as
|
389
|
+
# lowercase letters (a-z), regardless of how you specify them: as
|
390
|
+
# uppercase letters, lowercase letters, or the corresponding letters in
|
391
|
+
# escape codes.
|
392
|
+
#
|
393
|
+
# @return [Types::AssociateFileSystemAliasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
394
|
+
#
|
395
|
+
# * {Types::AssociateFileSystemAliasesResponse#aliases #aliases} => Array<Types::Alias>
|
396
|
+
#
|
397
|
+
# @example Request syntax with placeholder values
|
398
|
+
#
|
399
|
+
# resp = client.associate_file_system_aliases({
|
400
|
+
# client_request_token: "ClientRequestToken",
|
401
|
+
# file_system_id: "FileSystemId", # required
|
402
|
+
# aliases: ["AlternateDNSName"], # required
|
403
|
+
# })
|
404
|
+
#
|
405
|
+
# @example Response structure
|
406
|
+
#
|
407
|
+
# resp.aliases #=> Array
|
408
|
+
# resp.aliases[0].name #=> String
|
409
|
+
# resp.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
410
|
+
#
|
411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/AssociateFileSystemAliases AWS API Documentation
|
412
|
+
#
|
413
|
+
# @overload associate_file_system_aliases(params = {})
|
414
|
+
# @param [Hash] params ({})
|
415
|
+
def associate_file_system_aliases(params = {}, options = {})
|
416
|
+
req = build_request(:associate_file_system_aliases, params)
|
417
|
+
req.send_request(options)
|
418
|
+
end
|
419
|
+
|
325
420
|
# Cancels an existing Amazon FSx for Lustre data repository task if that
|
326
421
|
# task is in either the `PENDING` or `EXECUTING` state. When you cancel
|
327
422
|
# a task, Amazon FSx does the following.
|
@@ -371,12 +466,12 @@ module Aws::FSx
|
|
371
466
|
#
|
372
467
|
# * a Persistent deployment type
|
373
468
|
#
|
374
|
-
# * is *not* linked to
|
469
|
+
# * is *not* linked to a data respository.
|
375
470
|
#
|
376
471
|
# For more information about backing up Amazon FSx for Lustre file
|
377
472
|
# systems, see [Working with FSx for Lustre backups][1].
|
378
473
|
#
|
379
|
-
# For more information about backing up Amazon FSx for
|
474
|
+
# For more information about backing up Amazon FSx for Windows file
|
380
475
|
# systems, see [Working with FSx for Windows backups][2].
|
381
476
|
#
|
382
477
|
# If a backup with the specified client request token exists, and the
|
@@ -412,20 +507,20 @@ module Aws::FSx
|
|
412
507
|
# The ID of the file system to back up.
|
413
508
|
#
|
414
509
|
# @option params [String] :client_request_token
|
415
|
-
# A string of up to 64 ASCII characters that Amazon FSx uses
|
416
|
-
# idempotent creation. This string is automatically filled on
|
417
|
-
# behalf when you use the AWS Command Line Interface (AWS CLI) or
|
418
|
-
# SDK.
|
510
|
+
# (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
|
511
|
+
# to ensure idempotent creation. This string is automatically filled on
|
512
|
+
# your behalf when you use the AWS Command Line Interface (AWS CLI) or
|
513
|
+
# an AWS SDK.
|
419
514
|
#
|
420
515
|
# **A suitable default value is auto-generated.** You should normally
|
421
516
|
# not need to pass this option.**
|
422
517
|
#
|
423
518
|
# @option params [Array<Types::Tag>] :tags
|
424
|
-
# The tags to apply to the backup at backup creation. The key
|
425
|
-
# the `Name` tag appears in the console as the backup name. If
|
426
|
-
# set `CopyTagsToBackups` to true, and you specify one or more
|
427
|
-
# using the `CreateBackup` action, no existing
|
428
|
-
#
|
519
|
+
# (Optional) The tags to apply to the backup at backup creation. The key
|
520
|
+
# value of the `Name` tag appears in the console as the backup name. If
|
521
|
+
# you have set `CopyTagsToBackups` to true, and you specify one or more
|
522
|
+
# tags using the `CreateBackup` action, no existing file system tags are
|
523
|
+
# copied from the file system to the backup.
|
429
524
|
#
|
430
525
|
# @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
431
526
|
#
|
@@ -491,9 +586,9 @@ module Aws::FSx
|
|
491
586
|
# @example Response structure
|
492
587
|
#
|
493
588
|
# resp.backup.backup_id #=> String
|
494
|
-
# resp.backup.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
589
|
+
# resp.backup.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED", "PENDING"
|
495
590
|
# resp.backup.failure_details.message #=> String
|
496
|
-
# resp.backup.type #=> String, one of "AUTOMATIC", "USER_INITIATED"
|
591
|
+
# resp.backup.type #=> String, one of "AUTOMATIC", "USER_INITIATED", "AWS_BACKUP"
|
497
592
|
# resp.backup.progress_percent #=> Integer
|
498
593
|
# resp.backup.creation_time #=> Time
|
499
594
|
# resp.backup.kms_key_id #=> String
|
@@ -538,6 +633,9 @@ module Aws::FSx
|
|
538
633
|
# resp.backup.file_system.windows_configuration.daily_automatic_backup_start_time #=> String
|
539
634
|
# resp.backup.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
540
635
|
# resp.backup.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
636
|
+
# resp.backup.file_system.windows_configuration.aliases #=> Array
|
637
|
+
# resp.backup.file_system.windows_configuration.aliases[0].name #=> String
|
638
|
+
# resp.backup.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
541
639
|
# resp.backup.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
542
640
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
543
641
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
@@ -553,7 +651,7 @@ module Aws::FSx
|
|
553
651
|
# resp.backup.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
554
652
|
# resp.backup.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
555
653
|
# resp.backup.file_system.administrative_actions #=> Array
|
556
|
-
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
654
|
+
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION"
|
557
655
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
558
656
|
# resp.backup.file_system.administrative_actions[0].request_time #=> Time
|
559
657
|
# resp.backup.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -579,14 +677,14 @@ module Aws::FSx
|
|
579
677
|
# from your FSx file system to its linked data repository. A
|
580
678
|
# `CreateDataRepositoryTask` operation will fail if a data repository is
|
581
679
|
# not linked to the FSx file system. To learn more about data repository
|
582
|
-
# tasks, see [
|
583
|
-
#
|
584
|
-
#
|
680
|
+
# tasks, see [Data Repository Tasks][1]. To learn more about linking a
|
681
|
+
# data repository to your file system, see [Linking your file system to
|
682
|
+
# an S3 bucket][2].
|
585
683
|
#
|
586
684
|
#
|
587
685
|
#
|
588
686
|
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-repository-tasks.html
|
589
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/
|
687
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/create-fs-linked-data-repo.html
|
590
688
|
#
|
591
689
|
# @option params [required, String] :type
|
592
690
|
# Specifies the type of data repository task to create.
|
@@ -737,11 +835,15 @@ module Aws::FSx
|
|
737
835
|
#
|
738
836
|
# For Lustre file systems:
|
739
837
|
#
|
740
|
-
# * For `SCRATCH_2` and `PERSISTENT_1` deployment types, valid
|
741
|
-
# are
|
838
|
+
# * For `SCRATCH_2` and `PERSISTENT_1 SSD` deployment types, valid
|
839
|
+
# values are 1200 GiB, 2400 GiB, and increments of 2400 GiB.
|
742
840
|
#
|
743
|
-
# * For `
|
744
|
-
# increments of
|
841
|
+
# * For `PERSISTENT HDD` file systems, valid values are increments of
|
842
|
+
# 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB for
|
843
|
+
# 40 MB/s/TiB file systems.
|
844
|
+
#
|
845
|
+
# * For `SCRATCH_1` deployment type, valid values are 1200 GiB, 2400
|
846
|
+
# GiB, and increments of 3600 GiB.
|
745
847
|
#
|
746
848
|
# For Windows file systems:
|
747
849
|
#
|
@@ -751,21 +853,24 @@ module Aws::FSx
|
|
751
853
|
# TiB).
|
752
854
|
#
|
753
855
|
# @option params [String] :storage_type
|
754
|
-
# Sets the storage type for the
|
755
|
-
#
|
856
|
+
# Sets the storage type for the file system you're creating. Valid
|
857
|
+
# values are `SSD` and `HDD`.
|
756
858
|
#
|
757
859
|
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
758
|
-
# all Windows deployment types.
|
860
|
+
# all Windows and Lustre deployment types.
|
759
861
|
#
|
760
862
|
# * Set to `HDD` to use hard disk drive storage. HDD is supported on
|
761
|
-
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment types
|
863
|
+
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment types,
|
864
|
+
# and on `PERSISTENT` Lustre file system deployment types.
|
762
865
|
#
|
763
866
|
# Default value is `SSD`. For more information, see [ Storage Type
|
764
|
-
# Options][1] in the *Amazon FSx for Windows User Guide
|
867
|
+
# Options][1] in the *Amazon FSx for Windows User Guide* and [Multiple
|
868
|
+
# Storage Options][2] in the *Amazon FSx for Lustre User Guide*.
|
765
869
|
#
|
766
870
|
#
|
767
871
|
#
|
768
872
|
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
873
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/what-is.html#storage-options
|
769
874
|
#
|
770
875
|
# @option params [required, Array<String>] :subnet_ids
|
771
876
|
# Specifies the IDs of the subnets that the file system will be
|
@@ -815,16 +920,17 @@ module Aws::FSx
|
|
815
920
|
#
|
816
921
|
# @example Example: To create a new file system
|
817
922
|
#
|
818
|
-
# # This operation creates a new file system.
|
923
|
+
# # This operation creates a new Amazon FSx for Windows File Server file system.
|
819
924
|
#
|
820
925
|
# resp = client.create_file_system({
|
821
926
|
# client_request_token: "a8ca07e4-61ec-4399-99f4-19853801bcd5",
|
822
927
|
# file_system_type: "WINDOWS",
|
823
|
-
# kms_key_id: "arn:aws:kms:us-east-1:012345678912:key/
|
928
|
+
# kms_key_id: "arn:aws:kms:us-east-1:012345678912:key/1111abcd-2222-3333-4444-55556666eeff",
|
824
929
|
# security_group_ids: [
|
825
930
|
# "sg-edcd9784",
|
826
931
|
# ],
|
827
|
-
# storage_capacity:
|
932
|
+
# storage_capacity: 3200,
|
933
|
+
# storage_type: "HDD",
|
828
934
|
# subnet_ids: [
|
829
935
|
# "subnet-1234abcd",
|
830
936
|
# ],
|
@@ -836,9 +942,12 @@ module Aws::FSx
|
|
836
942
|
# ],
|
837
943
|
# windows_configuration: {
|
838
944
|
# active_directory_id: "d-1234abcd12",
|
945
|
+
# aliases: [
|
946
|
+
# "accounting.corp.example.com",
|
947
|
+
# ],
|
839
948
|
# automatic_backup_retention_days: 30,
|
840
949
|
# daily_automatic_backup_start_time: "05:00",
|
841
|
-
# throughput_capacity:
|
950
|
+
# throughput_capacity: 32,
|
842
951
|
# weekly_maintenance_start_time: "1:05:00",
|
843
952
|
# },
|
844
953
|
# })
|
@@ -847,13 +956,14 @@ module Aws::FSx
|
|
847
956
|
# {
|
848
957
|
# file_system: {
|
849
958
|
# creation_time: Time.parse("1481841524.0"),
|
850
|
-
# dns_name: "fs-
|
851
|
-
# file_system_id: "fs-
|
852
|
-
# kms_key_id: "arn:aws:kms:us-east-1:012345678912:key/
|
959
|
+
# dns_name: "fs-0123456789abcdef0.fsx.com",
|
960
|
+
# file_system_id: "fs-0123456789abcdef0",
|
961
|
+
# kms_key_id: "arn:aws:kms:us-east-1:012345678912:key/1111abcd-2222-3333-4444-55556666eeff",
|
853
962
|
# lifecycle: "CREATING",
|
854
963
|
# owner_id: "012345678912",
|
855
|
-
# resource_arn: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-
|
856
|
-
# storage_capacity:
|
964
|
+
# resource_arn: "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0123456789abcdef0",
|
965
|
+
# storage_capacity: 3200,
|
966
|
+
# storage_type: "HDD",
|
857
967
|
# subnet_ids: [
|
858
968
|
# "subnet-1234abcd",
|
859
969
|
# ],
|
@@ -866,9 +976,15 @@ module Aws::FSx
|
|
866
976
|
# vpc_id: "vpc-ab1234cd",
|
867
977
|
# windows_configuration: {
|
868
978
|
# active_directory_id: "d-1234abcd12",
|
979
|
+
# aliases: [
|
980
|
+
# {
|
981
|
+
# lifecycle: "CREATING",
|
982
|
+
# name: "accounting.corp.example.com",
|
983
|
+
# },
|
984
|
+
# ],
|
869
985
|
# automatic_backup_retention_days: 30,
|
870
986
|
# daily_automatic_backup_start_time: "05:00",
|
871
|
-
# throughput_capacity:
|
987
|
+
# throughput_capacity: 32,
|
872
988
|
# weekly_maintenance_start_time: "1:05:00",
|
873
989
|
# },
|
874
990
|
# },
|
@@ -907,6 +1023,7 @@ module Aws::FSx
|
|
907
1023
|
# daily_automatic_backup_start_time: "DailyTime",
|
908
1024
|
# automatic_backup_retention_days: 1,
|
909
1025
|
# copy_tags_to_backups: false,
|
1026
|
+
# aliases: ["AlternateDNSName"],
|
910
1027
|
# },
|
911
1028
|
# lustre_configuration: {
|
912
1029
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -962,6 +1079,9 @@ module Aws::FSx
|
|
962
1079
|
# resp.file_system.windows_configuration.daily_automatic_backup_start_time #=> String
|
963
1080
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
964
1081
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
1082
|
+
# resp.file_system.windows_configuration.aliases #=> Array
|
1083
|
+
# resp.file_system.windows_configuration.aliases[0].name #=> String
|
1084
|
+
# resp.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
965
1085
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
966
1086
|
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
967
1087
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
@@ -977,7 +1097,7 @@ module Aws::FSx
|
|
977
1097
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
978
1098
|
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
979
1099
|
# resp.file_system.administrative_actions #=> Array
|
980
|
-
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1100
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION"
|
981
1101
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
982
1102
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
983
1103
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -1183,6 +1303,7 @@ module Aws::FSx
|
|
1183
1303
|
# daily_automatic_backup_start_time: "DailyTime",
|
1184
1304
|
# automatic_backup_retention_days: 1,
|
1185
1305
|
# copy_tags_to_backups: false,
|
1306
|
+
# aliases: ["AlternateDNSName"],
|
1186
1307
|
# },
|
1187
1308
|
# lustre_configuration: {
|
1188
1309
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -1239,6 +1360,9 @@ module Aws::FSx
|
|
1239
1360
|
# resp.file_system.windows_configuration.daily_automatic_backup_start_time #=> String
|
1240
1361
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
1241
1362
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
1363
|
+
# resp.file_system.windows_configuration.aliases #=> Array
|
1364
|
+
# resp.file_system.windows_configuration.aliases[0].name #=> String
|
1365
|
+
# resp.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
1242
1366
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
1243
1367
|
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1244
1368
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
@@ -1254,7 +1378,7 @@ module Aws::FSx
|
|
1254
1378
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1255
1379
|
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1256
1380
|
# resp.file_system.administrative_actions #=> Array
|
1257
|
-
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1381
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION"
|
1258
1382
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
1259
1383
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
1260
1384
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -1320,7 +1444,7 @@ module Aws::FSx
|
|
1320
1444
|
# @example Response structure
|
1321
1445
|
#
|
1322
1446
|
# resp.backup_id #=> String
|
1323
|
-
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
1447
|
+
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED", "PENDING"
|
1324
1448
|
#
|
1325
1449
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteBackup AWS API Documentation
|
1326
1450
|
#
|
@@ -1553,9 +1677,9 @@ module Aws::FSx
|
|
1553
1677
|
#
|
1554
1678
|
# resp.backups #=> Array
|
1555
1679
|
# resp.backups[0].backup_id #=> String
|
1556
|
-
# resp.backups[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
1680
|
+
# resp.backups[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED", "PENDING"
|
1557
1681
|
# resp.backups[0].failure_details.message #=> String
|
1558
|
-
# resp.backups[0].type #=> String, one of "AUTOMATIC", "USER_INITIATED"
|
1682
|
+
# resp.backups[0].type #=> String, one of "AUTOMATIC", "USER_INITIATED", "AWS_BACKUP"
|
1559
1683
|
# resp.backups[0].progress_percent #=> Integer
|
1560
1684
|
# resp.backups[0].creation_time #=> Time
|
1561
1685
|
# resp.backups[0].kms_key_id #=> String
|
@@ -1600,6 +1724,9 @@ module Aws::FSx
|
|
1600
1724
|
# resp.backups[0].file_system.windows_configuration.daily_automatic_backup_start_time #=> String
|
1601
1725
|
# resp.backups[0].file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
1602
1726
|
# resp.backups[0].file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
1727
|
+
# resp.backups[0].file_system.windows_configuration.aliases #=> Array
|
1728
|
+
# resp.backups[0].file_system.windows_configuration.aliases[0].name #=> String
|
1729
|
+
# resp.backups[0].file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
1603
1730
|
# resp.backups[0].file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
1604
1731
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1605
1732
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
@@ -1615,7 +1742,7 @@ module Aws::FSx
|
|
1615
1742
|
# resp.backups[0].file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1616
1743
|
# resp.backups[0].file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1617
1744
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
1618
|
-
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1745
|
+
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION"
|
1619
1746
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
1620
1747
|
# resp.backups[0].file_system.administrative_actions[0].request_time #=> Time
|
1621
1748
|
# resp.backups[0].file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -1725,6 +1852,70 @@ module Aws::FSx
|
|
1725
1852
|
req.send_request(options)
|
1726
1853
|
end
|
1727
1854
|
|
1855
|
+
# Returns the DNS aliases that are associated with the specified Amazon
|
1856
|
+
# FSx for Windows File Server file system. A history of all DNS aliases
|
1857
|
+
# that have been associated with and disassociated from the file system
|
1858
|
+
# is available in the list of AdministrativeAction provided in the
|
1859
|
+
# DescribeFileSystems operation response.
|
1860
|
+
#
|
1861
|
+
# @option params [String] :client_request_token
|
1862
|
+
# (Optional) An idempotency token for resource creation, in a string of
|
1863
|
+
# up to 64 ASCII characters. This token is automatically filled on your
|
1864
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
1865
|
+
# SDK.
|
1866
|
+
#
|
1867
|
+
# **A suitable default value is auto-generated.** You should normally
|
1868
|
+
# not need to pass this option.**
|
1869
|
+
#
|
1870
|
+
# @option params [required, String] :file_system_id
|
1871
|
+
# The ID of the file system to return the associated DNS aliases for
|
1872
|
+
# (String).
|
1873
|
+
#
|
1874
|
+
# @option params [Integer] :max_results
|
1875
|
+
# Maximum number of DNS aliases to return in the response (integer).
|
1876
|
+
# This parameter value must be greater than 0. The number of items that
|
1877
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1878
|
+
# specified in the request and the service's internal maximum number of
|
1879
|
+
# items per page.
|
1880
|
+
#
|
1881
|
+
# @option params [String] :next_token
|
1882
|
+
# Opaque pagination token returned from a previous
|
1883
|
+
# `DescribeFileSystemAliases` operation (String). If a token is included
|
1884
|
+
# in the request, the action continues the list from where the previous
|
1885
|
+
# returning call left off.
|
1886
|
+
#
|
1887
|
+
# @return [Types::DescribeFileSystemAliasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1888
|
+
#
|
1889
|
+
# * {Types::DescribeFileSystemAliasesResponse#aliases #aliases} => Array<Types::Alias>
|
1890
|
+
# * {Types::DescribeFileSystemAliasesResponse#next_token #next_token} => String
|
1891
|
+
#
|
1892
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1893
|
+
#
|
1894
|
+
# @example Request syntax with placeholder values
|
1895
|
+
#
|
1896
|
+
# resp = client.describe_file_system_aliases({
|
1897
|
+
# client_request_token: "ClientRequestToken",
|
1898
|
+
# file_system_id: "FileSystemId", # required
|
1899
|
+
# max_results: 1,
|
1900
|
+
# next_token: "NextToken",
|
1901
|
+
# })
|
1902
|
+
#
|
1903
|
+
# @example Response structure
|
1904
|
+
#
|
1905
|
+
# resp.aliases #=> Array
|
1906
|
+
# resp.aliases[0].name #=> String
|
1907
|
+
# resp.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
1908
|
+
# resp.next_token #=> String
|
1909
|
+
#
|
1910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeFileSystemAliases AWS API Documentation
|
1911
|
+
#
|
1912
|
+
# @overload describe_file_system_aliases(params = {})
|
1913
|
+
# @param [Hash] params ({})
|
1914
|
+
def describe_file_system_aliases(params = {}, options = {})
|
1915
|
+
req = build_request(:describe_file_system_aliases, params)
|
1916
|
+
req.send_request(options)
|
1917
|
+
end
|
1918
|
+
|
1728
1919
|
# Returns the description of specific Amazon FSx file systems, if a
|
1729
1920
|
# `FileSystemIds` value is provided for that file system. Otherwise, it
|
1730
1921
|
# returns descriptions of all file systems owned by your AWS account in
|
@@ -1867,6 +2058,9 @@ module Aws::FSx
|
|
1867
2058
|
# resp.file_systems[0].windows_configuration.daily_automatic_backup_start_time #=> String
|
1868
2059
|
# resp.file_systems[0].windows_configuration.automatic_backup_retention_days #=> Integer
|
1869
2060
|
# resp.file_systems[0].windows_configuration.copy_tags_to_backups #=> Boolean
|
2061
|
+
# resp.file_systems[0].windows_configuration.aliases #=> Array
|
2062
|
+
# resp.file_systems[0].windows_configuration.aliases[0].name #=> String
|
2063
|
+
# resp.file_systems[0].windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
1870
2064
|
# resp.file_systems[0].lustre_configuration.weekly_maintenance_start_time #=> String
|
1871
2065
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1872
2066
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.import_path #=> String
|
@@ -1882,7 +2076,7 @@ module Aws::FSx
|
|
1882
2076
|
# resp.file_systems[0].lustre_configuration.copy_tags_to_backups #=> Boolean
|
1883
2077
|
# resp.file_systems[0].lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1884
2078
|
# resp.file_systems[0].administrative_actions #=> Array
|
1885
|
-
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
2079
|
+
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION"
|
1886
2080
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
1887
2081
|
# resp.file_systems[0].administrative_actions[0].request_time #=> Time
|
1888
2082
|
# resp.file_systems[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -1899,6 +2093,64 @@ module Aws::FSx
|
|
1899
2093
|
req.send_request(options)
|
1900
2094
|
end
|
1901
2095
|
|
2096
|
+
# Use this action to disassociate, or remove, one or more Domain Name
|
2097
|
+
# Service (DNS) aliases from an Amazon FSx for Windows File Server file
|
2098
|
+
# system. If you attempt to disassociate a DNS alias that is not
|
2099
|
+
# associated with the file system, Amazon FSx responds with a 400 Bad
|
2100
|
+
# Request. For more information, see [Working with DNS Aliases][1].
|
2101
|
+
#
|
2102
|
+
# The system generated response showing the DNS aliases that Amazon FSx
|
2103
|
+
# is attempting to disassociate from the file system. Use the API
|
2104
|
+
# operation to monitor the status of the aliases Amazon FSx is
|
2105
|
+
# disassociating with the file system.
|
2106
|
+
#
|
2107
|
+
#
|
2108
|
+
#
|
2109
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-dns-aliases.html
|
2110
|
+
#
|
2111
|
+
# @option params [String] :client_request_token
|
2112
|
+
# (Optional) An idempotency token for resource creation, in a string of
|
2113
|
+
# up to 64 ASCII characters. This token is automatically filled on your
|
2114
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
2115
|
+
# SDK.
|
2116
|
+
#
|
2117
|
+
# **A suitable default value is auto-generated.** You should normally
|
2118
|
+
# not need to pass this option.**
|
2119
|
+
#
|
2120
|
+
# @option params [required, String] :file_system_id
|
2121
|
+
# Specifies the file system from which to disassociate the DNS aliases.
|
2122
|
+
#
|
2123
|
+
# @option params [required, Array<String>] :aliases
|
2124
|
+
# An array of one or more DNS alias names to disassociate, or remove,
|
2125
|
+
# from the file system.
|
2126
|
+
#
|
2127
|
+
# @return [Types::DisassociateFileSystemAliasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2128
|
+
#
|
2129
|
+
# * {Types::DisassociateFileSystemAliasesResponse#aliases #aliases} => Array<Types::Alias>
|
2130
|
+
#
|
2131
|
+
# @example Request syntax with placeholder values
|
2132
|
+
#
|
2133
|
+
# resp = client.disassociate_file_system_aliases({
|
2134
|
+
# client_request_token: "ClientRequestToken",
|
2135
|
+
# file_system_id: "FileSystemId", # required
|
2136
|
+
# aliases: ["AlternateDNSName"], # required
|
2137
|
+
# })
|
2138
|
+
#
|
2139
|
+
# @example Response structure
|
2140
|
+
#
|
2141
|
+
# resp.aliases #=> Array
|
2142
|
+
# resp.aliases[0].name #=> String
|
2143
|
+
# resp.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
2144
|
+
#
|
2145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DisassociateFileSystemAliases AWS API Documentation
|
2146
|
+
#
|
2147
|
+
# @overload disassociate_file_system_aliases(params = {})
|
2148
|
+
# @param [Hash] params ({})
|
2149
|
+
def disassociate_file_system_aliases(params = {}, options = {})
|
2150
|
+
req = build_request(:disassociate_file_system_aliases, params)
|
2151
|
+
req.send_request(options)
|
2152
|
+
end
|
2153
|
+
|
1902
2154
|
# Lists tags for an Amazon FSx file systems and backups in the case of
|
1903
2155
|
# Amazon FSx for Windows File Server.
|
1904
2156
|
#
|
@@ -2101,6 +2353,8 @@ module Aws::FSx
|
|
2101
2353
|
#
|
2102
2354
|
# * DailyAutomaticBackupStartTime
|
2103
2355
|
#
|
2356
|
+
# * StorageCapacity
|
2357
|
+
#
|
2104
2358
|
# * WeeklyMaintenanceStartTime
|
2105
2359
|
#
|
2106
2360
|
# @option params [required, String] :file_system_id
|
@@ -2116,18 +2370,39 @@ module Aws::FSx
|
|
2116
2370
|
#
|
2117
2371
|
# @option params [Integer] :storage_capacity
|
2118
2372
|
# Use this parameter to increase the storage capacity of an Amazon FSx
|
2119
|
-
#
|
2120
|
-
#
|
2121
|
-
#
|
2122
|
-
#
|
2123
|
-
#
|
2124
|
-
#
|
2125
|
-
#
|
2126
|
-
#
|
2373
|
+
# file system. Specifies the storage capacity target value, GiB, to
|
2374
|
+
# increase the storage capacity for the file system that you're
|
2375
|
+
# updating. You cannot make a storage capacity increase request if there
|
2376
|
+
# is an existing storage capacity increase request in progress.
|
2377
|
+
#
|
2378
|
+
# For Windows file systems, the storage capacity target value must be at
|
2379
|
+
# least 10 percent (%) greater than the current storage capacity value.
|
2380
|
+
# In order to increase storage capacity, the file system must have at
|
2381
|
+
# least 16 MB/s of throughput capacity.
|
2382
|
+
#
|
2383
|
+
# For Lustre file systems, the storage capacity target value can be the
|
2384
|
+
# following:
|
2385
|
+
#
|
2386
|
+
# * For `SCRATCH_2` and `PERSISTENT_1 SSD` deployment types, valid
|
2387
|
+
# values are in multiples of 2400 GiB. The value must be greater than
|
2388
|
+
# the current storage capacity.
|
2389
|
+
#
|
2390
|
+
# * For `PERSISTENT HDD` file systems, valid values are multiples of
|
2391
|
+
# 6000 GiB for 12 MB/s/TiB file systems and multiples of 1800 GiB for
|
2392
|
+
# 40 MB/s/TiB file systems. The values must be greater than the
|
2393
|
+
# current storage capacity.
|
2394
|
+
#
|
2395
|
+
# * For `SCRATCH_1` file systems, you cannot increase the storage
|
2396
|
+
# capacity.
|
2397
|
+
#
|
2398
|
+
# For more information, see [Managing storage capacity][1] in the
|
2399
|
+
# *Amazon FSx for Windows File Server User Guide* and [Managing storage
|
2400
|
+
# and throughput capacity][2] in the *Amazon FSx for Lustre User Guide*.
|
2127
2401
|
#
|
2128
2402
|
#
|
2129
2403
|
#
|
2130
2404
|
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
2405
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/managing-storage-capacity.html
|
2131
2406
|
#
|
2132
2407
|
# @option params [Types::UpdateFileSystemWindowsConfiguration] :windows_configuration
|
2133
2408
|
# The configuration updates for an Amazon FSx for Windows File Server
|
@@ -2249,6 +2524,9 @@ module Aws::FSx
|
|
2249
2524
|
# resp.file_system.windows_configuration.daily_automatic_backup_start_time #=> String
|
2250
2525
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
2251
2526
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
2527
|
+
# resp.file_system.windows_configuration.aliases #=> Array
|
2528
|
+
# resp.file_system.windows_configuration.aliases[0].name #=> String
|
2529
|
+
# resp.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
2252
2530
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
2253
2531
|
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
2254
2532
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
@@ -2264,7 +2542,7 @@ module Aws::FSx
|
|
2264
2542
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
2265
2543
|
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
2266
2544
|
# resp.file_system.administrative_actions #=> Array
|
2267
|
-
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
2545
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION"
|
2268
2546
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
2269
2547
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
2270
2548
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -2293,7 +2571,7 @@ module Aws::FSx
|
|
2293
2571
|
params: params,
|
2294
2572
|
config: config)
|
2295
2573
|
context[:gem_name] = 'aws-sdk-fsx'
|
2296
|
-
context[:gem_version] = '1.
|
2574
|
+
context[:gem_version] = '1.33.0'
|
2297
2575
|
Seahorse::Client::Request.new(handlers, context)
|
2298
2576
|
end
|
2299
2577
|
|