aws-sdk-fsx 1.17.0 → 1.22.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 +5 -5
- data/lib/aws-sdk-fsx.rb +3 -1
- data/lib/aws-sdk-fsx/client.rb +92 -14
- data/lib/aws-sdk-fsx/client_api.rb +25 -0
- data/lib/aws-sdk-fsx/errors.rb +2 -0
- data/lib/aws-sdk-fsx/resource.rb +2 -0
- data/lib/aws-sdk-fsx/types.rb +254 -32
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 7d2a339a99b5dfc4e820e02f30859ddc154df36106936a32184b3e2dc87bff98
|
|
4
|
+
data.tar.gz: 9ba7f4ecbad3583ed7526db0f1d0fa414264e2845e793ee1b222955c538610d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c5d867c9da1e54ab440feb5e86f4feb1a0f8c5be7d213e11d0389e7bf1830d44e6ac3b2e7ba545ed8f6992c13aa9ad28def1e3d3eab63f06c5d58d8434169a1
|
|
7
|
+
data.tar.gz: b6c3cbd819ce7109920f026b860694802db2bb6ed7d72b790cec7de82cb488372f63dd754eca24c967300b813bb5bc1679f4d78237c5028effec14a80401c1c5
|
data/lib/aws-sdk-fsx.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-fsx/customizations'
|
|
|
45
47
|
# @service
|
|
46
48
|
module Aws::FSx
|
|
47
49
|
|
|
48
|
-
GEM_VERSION = '1.
|
|
50
|
+
GEM_VERSION = '1.22.0'
|
|
49
51
|
|
|
50
52
|
end
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
29
32
|
|
|
@@ -69,6 +72,7 @@ module Aws::FSx
|
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
74
78
|
|
|
@@ -105,7 +109,7 @@ module Aws::FSx
|
|
|
105
109
|
# @option options [required, String] :region
|
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
|
108
|
-
# a default `:region` is
|
|
112
|
+
# a default `:region` is searched for in the following locations:
|
|
109
113
|
#
|
|
110
114
|
# * `Aws.config[:region]`
|
|
111
115
|
# * `ENV['AWS_REGION']`
|
|
@@ -161,7 +165,7 @@ module Aws::FSx
|
|
|
161
165
|
# @option options [String] :endpoint
|
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be
|
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
165
169
|
#
|
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -176,7 +180,7 @@ module Aws::FSx
|
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
|
177
181
|
#
|
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
180
184
|
#
|
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
182
186
|
# The log formatter.
|
|
@@ -525,6 +529,13 @@ module Aws::FSx
|
|
|
525
529
|
# resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
526
530
|
# resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
527
531
|
# resp.backup.file_system.lustre_configuration.mount_name #=> String
|
|
532
|
+
# resp.backup.file_system.administrative_actions #=> Array
|
|
533
|
+
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
534
|
+
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
535
|
+
# resp.backup.file_system.administrative_actions[0].request_time #=> Time
|
|
536
|
+
# resp.backup.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
537
|
+
# resp.backup.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
538
|
+
# resp.backup.file_system.administrative_actions[0].failure_details.message #=> String
|
|
528
539
|
# resp.backup.directory_information.domain_name #=> String
|
|
529
540
|
# resp.backup.directory_information.active_directory_id #=> String
|
|
530
541
|
#
|
|
@@ -731,7 +742,7 @@ module Aws::FSx
|
|
|
731
742
|
#
|
|
732
743
|
#
|
|
733
744
|
#
|
|
734
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-
|
|
745
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
|
735
746
|
#
|
|
736
747
|
# @option params [required, Array<String>] :subnet_ids
|
|
737
748
|
# Specifies the IDs of the subnets that the file system will be
|
|
@@ -930,6 +941,13 @@ module Aws::FSx
|
|
|
930
941
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
931
942
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
932
943
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
|
944
|
+
# resp.file_system.administrative_actions #=> Array
|
|
945
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
946
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
947
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
948
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
949
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
950
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
|
933
951
|
#
|
|
934
952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystem AWS API Documentation
|
|
935
953
|
#
|
|
@@ -1177,6 +1195,13 @@ module Aws::FSx
|
|
|
1177
1195
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
1178
1196
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
1179
1197
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
|
1198
|
+
# resp.file_system.administrative_actions #=> Array
|
|
1199
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
1200
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
1201
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
1202
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
1203
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
1204
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
|
1180
1205
|
#
|
|
1181
1206
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackup AWS API Documentation
|
|
1182
1207
|
#
|
|
@@ -1509,6 +1534,13 @@ module Aws::FSx
|
|
|
1509
1534
|
# resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
1510
1535
|
# resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
1511
1536
|
# resp.backups[0].file_system.lustre_configuration.mount_name #=> String
|
|
1537
|
+
# resp.backups[0].file_system.administrative_actions #=> Array
|
|
1538
|
+
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
1539
|
+
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
|
1540
|
+
# resp.backups[0].file_system.administrative_actions[0].request_time #=> Time
|
|
1541
|
+
# resp.backups[0].file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
1542
|
+
# resp.backups[0].file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
1543
|
+
# resp.backups[0].file_system.administrative_actions[0].failure_details.message #=> String
|
|
1512
1544
|
# resp.backups[0].directory_information.domain_name #=> String
|
|
1513
1545
|
# resp.backups[0].directory_information.active_directory_id #=> String
|
|
1514
1546
|
# resp.next_token #=> String
|
|
@@ -1762,6 +1794,13 @@ module Aws::FSx
|
|
|
1762
1794
|
# resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
1763
1795
|
# resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
1764
1796
|
# resp.file_systems[0].lustre_configuration.mount_name #=> String
|
|
1797
|
+
# resp.file_systems[0].administrative_actions #=> Array
|
|
1798
|
+
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
1799
|
+
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
|
1800
|
+
# resp.file_systems[0].administrative_actions[0].request_time #=> Time
|
|
1801
|
+
# resp.file_systems[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
1802
|
+
# resp.file_systems[0].administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
1803
|
+
# resp.file_systems[0].administrative_actions[0].failure_details.message #=> String
|
|
1765
1804
|
# resp.next_token #=> String
|
|
1766
1805
|
#
|
|
1767
1806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeFileSystems AWS API Documentation
|
|
@@ -1947,24 +1986,54 @@ module Aws::FSx
|
|
|
1947
1986
|
req.send_request(options)
|
|
1948
1987
|
end
|
|
1949
1988
|
|
|
1950
|
-
#
|
|
1989
|
+
# Use this operation to update the configuration of an existing Amazon
|
|
1990
|
+
# FSx file system. For an Amazon FSx for Lustre file system, you can
|
|
1991
|
+
# update only the WeeklyMaintenanceStartTime. For an Amazon for Windows
|
|
1992
|
+
# File Server file system, you can update the following properties:
|
|
1993
|
+
#
|
|
1994
|
+
# * AutomaticBackupRetentionDays
|
|
1995
|
+
#
|
|
1996
|
+
# * DailyAutomaticBackupStartTime
|
|
1997
|
+
#
|
|
1998
|
+
# * SelfManagedActiveDirectoryConfiguration
|
|
1999
|
+
#
|
|
2000
|
+
# * StorageCapacity
|
|
2001
|
+
#
|
|
2002
|
+
# * ThroughputCapacity
|
|
2003
|
+
#
|
|
2004
|
+
# * WeeklyMaintenanceStartTime
|
|
2005
|
+
#
|
|
2006
|
+
# You can update multiple properties in a single request.
|
|
1951
2007
|
#
|
|
1952
2008
|
# @option params [required, String] :file_system_id
|
|
1953
|
-
#
|
|
2009
|
+
# Identifies the file system that you are updating.
|
|
1954
2010
|
#
|
|
1955
2011
|
# @option params [String] :client_request_token
|
|
1956
|
-
#
|
|
1957
|
-
#
|
|
1958
|
-
#
|
|
1959
|
-
# an AWS SDK.
|
|
2012
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
|
2013
|
+
# idempotent updates. This string is automatically filled on your behalf
|
|
2014
|
+
# when you use the AWS Command Line Interface (AWS CLI) or an AWS SDK.
|
|
1960
2015
|
#
|
|
1961
2016
|
# **A suitable default value is auto-generated.** You should normally
|
|
1962
2017
|
# not need to pass this option.**
|
|
1963
2018
|
#
|
|
2019
|
+
# @option params [Integer] :storage_capacity
|
|
2020
|
+
# Use this parameter to increase the storage capacity of an Amazon FSx
|
|
2021
|
+
# for Windows File Server file system. Specifies the storage capacity
|
|
2022
|
+
# target value, GiB, for the file system you're updating. The storage
|
|
2023
|
+
# capacity target value must be at least 10 percent (%) greater than the
|
|
2024
|
+
# current storage capacity value. In order to increase storage capacity,
|
|
2025
|
+
# the file system needs to have at least 16 MB/s of throughput capacity.
|
|
2026
|
+
# You cannot make a storage capacity increase request if there is an
|
|
2027
|
+
# existing storage capacity increase request in progress. For more
|
|
2028
|
+
# information, see [Managing Storage Capacity][1].
|
|
2029
|
+
#
|
|
2030
|
+
#
|
|
2031
|
+
#
|
|
2032
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
|
2033
|
+
#
|
|
1964
2034
|
# @option params [Types::UpdateFileSystemWindowsConfiguration] :windows_configuration
|
|
1965
|
-
# The configuration
|
|
1966
|
-
#
|
|
1967
|
-
# self-managed Active Directory configuration.
|
|
2035
|
+
# The configuration updates for an Amazon FSx for Windows File Server
|
|
2036
|
+
# file system.
|
|
1968
2037
|
#
|
|
1969
2038
|
# @option params [Types::UpdateFileSystemLustreConfiguration] :lustre_configuration
|
|
1970
2039
|
# The configuration object for Amazon FSx for Lustre file systems used
|
|
@@ -2023,10 +2092,12 @@ module Aws::FSx
|
|
|
2023
2092
|
# resp = client.update_file_system({
|
|
2024
2093
|
# file_system_id: "FileSystemId", # required
|
|
2025
2094
|
# client_request_token: "ClientRequestToken",
|
|
2095
|
+
# storage_capacity: 1,
|
|
2026
2096
|
# windows_configuration: {
|
|
2027
2097
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
2028
2098
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
2029
2099
|
# automatic_backup_retention_days: 1,
|
|
2100
|
+
# throughput_capacity: 1,
|
|
2030
2101
|
# self_managed_active_directory_configuration: {
|
|
2031
2102
|
# user_name: "DirectoryUserName",
|
|
2032
2103
|
# password: "DirectoryPassword",
|
|
@@ -2084,6 +2155,13 @@ module Aws::FSx
|
|
|
2084
2155
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
2085
2156
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
2086
2157
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
|
2158
|
+
# resp.file_system.administrative_actions #=> Array
|
|
2159
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
2160
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
2161
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
2162
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
2163
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
2164
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
|
2087
2165
|
#
|
|
2088
2166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystem AWS API Documentation
|
|
2089
2167
|
#
|
|
@@ -2107,7 +2185,7 @@ module Aws::FSx
|
|
|
2107
2185
|
params: params,
|
|
2108
2186
|
config: config)
|
|
2109
2187
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
2110
|
-
context[:gem_version] = '1.
|
|
2188
|
+
context[:gem_version] = '1.22.0'
|
|
2111
2189
|
Seahorse::Client::Request.new(handlers, context)
|
|
2112
2190
|
end
|
|
2113
2191
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -16,6 +18,10 @@ module Aws::FSx
|
|
|
16
18
|
ActiveDirectoryError = Shapes::StructureShape.new(name: 'ActiveDirectoryError')
|
|
17
19
|
ActiveDirectoryErrorType = Shapes::StringShape.new(name: 'ActiveDirectoryErrorType')
|
|
18
20
|
ActiveDirectoryFullyQualifiedName = Shapes::StringShape.new(name: 'ActiveDirectoryFullyQualifiedName')
|
|
21
|
+
AdministrativeAction = Shapes::StructureShape.new(name: 'AdministrativeAction')
|
|
22
|
+
AdministrativeActionFailureDetails = Shapes::StructureShape.new(name: 'AdministrativeActionFailureDetails')
|
|
23
|
+
AdministrativeActionType = Shapes::StringShape.new(name: 'AdministrativeActionType')
|
|
24
|
+
AdministrativeActions = Shapes::ListShape.new(name: 'AdministrativeActions')
|
|
19
25
|
ArchivePath = Shapes::StringShape.new(name: 'ArchivePath')
|
|
20
26
|
AutomaticBackupRetentionDays = Shapes::IntegerShape.new(name: 'AutomaticBackupRetentionDays')
|
|
21
27
|
Backup = Shapes::StructureShape.new(name: 'Backup')
|
|
@@ -127,6 +133,7 @@ module Aws::FSx
|
|
|
127
133
|
ProgressPercent = Shapes::IntegerShape.new(name: 'ProgressPercent')
|
|
128
134
|
ReportFormat = Shapes::StringShape.new(name: 'ReportFormat')
|
|
129
135
|
ReportScope = Shapes::StringShape.new(name: 'ReportScope')
|
|
136
|
+
RequestTime = Shapes::TimestampShape.new(name: 'RequestTime')
|
|
130
137
|
ResourceARN = Shapes::StringShape.new(name: 'ResourceARN')
|
|
131
138
|
ResourceDoesNotSupportTagging = Shapes::StructureShape.new(name: 'ResourceDoesNotSupportTagging')
|
|
132
139
|
ResourceNotFound = Shapes::StructureShape.new(name: 'ResourceNotFound')
|
|
@@ -138,6 +145,7 @@ module Aws::FSx
|
|
|
138
145
|
ServiceLimit = Shapes::StringShape.new(name: 'ServiceLimit')
|
|
139
146
|
ServiceLimitExceeded = Shapes::StructureShape.new(name: 'ServiceLimitExceeded')
|
|
140
147
|
StartTime = Shapes::TimestampShape.new(name: 'StartTime')
|
|
148
|
+
Status = Shapes::StringShape.new(name: 'Status')
|
|
141
149
|
StorageCapacity = Shapes::IntegerShape.new(name: 'StorageCapacity')
|
|
142
150
|
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
|
143
151
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
@@ -174,6 +182,19 @@ module Aws::FSx
|
|
|
174
182
|
ActiveDirectoryError.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
175
183
|
ActiveDirectoryError.struct_class = Types::ActiveDirectoryError
|
|
176
184
|
|
|
185
|
+
AdministrativeAction.add_member(:administrative_action_type, Shapes::ShapeRef.new(shape: AdministrativeActionType, location_name: "AdministrativeActionType"))
|
|
186
|
+
AdministrativeAction.add_member(:progress_percent, Shapes::ShapeRef.new(shape: ProgressPercent, location_name: "ProgressPercent"))
|
|
187
|
+
AdministrativeAction.add_member(:request_time, Shapes::ShapeRef.new(shape: RequestTime, location_name: "RequestTime"))
|
|
188
|
+
AdministrativeAction.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "Status"))
|
|
189
|
+
AdministrativeAction.add_member(:target_file_system_values, Shapes::ShapeRef.new(shape: FileSystem, location_name: "TargetFileSystemValues"))
|
|
190
|
+
AdministrativeAction.add_member(:failure_details, Shapes::ShapeRef.new(shape: AdministrativeActionFailureDetails, location_name: "FailureDetails"))
|
|
191
|
+
AdministrativeAction.struct_class = Types::AdministrativeAction
|
|
192
|
+
|
|
193
|
+
AdministrativeActionFailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
194
|
+
AdministrativeActionFailureDetails.struct_class = Types::AdministrativeActionFailureDetails
|
|
195
|
+
|
|
196
|
+
AdministrativeActions.member = Shapes::ShapeRef.new(shape: AdministrativeAction)
|
|
197
|
+
|
|
177
198
|
Backup.add_member(:backup_id, Shapes::ShapeRef.new(shape: BackupId, required: true, location_name: "BackupId"))
|
|
178
199
|
Backup.add_member(:lifecycle, Shapes::ShapeRef.new(shape: BackupLifecycle, required: true, location_name: "Lifecycle"))
|
|
179
200
|
Backup.add_member(:failure_details, Shapes::ShapeRef.new(shape: BackupFailureDetails, location_name: "FailureDetails"))
|
|
@@ -409,6 +430,7 @@ module Aws::FSx
|
|
|
409
430
|
FileSystem.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
410
431
|
FileSystem.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: WindowsFileSystemConfiguration, location_name: "WindowsConfiguration"))
|
|
411
432
|
FileSystem.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: LustreFileSystemConfiguration, location_name: "LustreConfiguration"))
|
|
433
|
+
FileSystem.add_member(:administrative_actions, Shapes::ShapeRef.new(shape: AdministrativeActions, location_name: "AdministrativeActions"))
|
|
412
434
|
FileSystem.struct_class = Types::FileSystem
|
|
413
435
|
|
|
414
436
|
FileSystemFailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
@@ -543,6 +565,7 @@ module Aws::FSx
|
|
|
543
565
|
|
|
544
566
|
UpdateFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
|
545
567
|
UpdateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
568
|
+
UpdateFileSystemRequest.add_member(:storage_capacity, Shapes::ShapeRef.new(shape: StorageCapacity, location_name: "StorageCapacity"))
|
|
546
569
|
UpdateFileSystemRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: UpdateFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
|
547
570
|
UpdateFileSystemRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: UpdateFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
|
|
548
571
|
UpdateFileSystemRequest.struct_class = Types::UpdateFileSystemRequest
|
|
@@ -553,6 +576,7 @@ module Aws::FSx
|
|
|
553
576
|
UpdateFileSystemWindowsConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
|
554
577
|
UpdateFileSystemWindowsConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
|
555
578
|
UpdateFileSystemWindowsConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
579
|
+
UpdateFileSystemWindowsConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: MegabytesPerSecond, location_name: "ThroughputCapacity"))
|
|
556
580
|
UpdateFileSystemWindowsConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryConfigurationUpdates, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
|
557
581
|
UpdateFileSystemWindowsConfiguration.struct_class = Types::UpdateFileSystemWindowsConfiguration
|
|
558
582
|
|
|
@@ -797,6 +821,7 @@ module Aws::FSx
|
|
|
797
821
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
798
822
|
o.errors << Shapes::ShapeRef.new(shape: FileSystemNotFound)
|
|
799
823
|
o.errors << Shapes::ShapeRef.new(shape: MissingFileSystemConfiguration)
|
|
824
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLimitExceeded)
|
|
800
825
|
end)
|
|
801
826
|
end
|
|
802
827
|
|
data/lib/aws-sdk-fsx/errors.rb
CHANGED
data/lib/aws-sdk-fsx/resource.rb
CHANGED
data/lib/aws-sdk-fsx/types.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -25,6 +27,7 @@ module Aws::FSx
|
|
|
25
27
|
class ActiveDirectoryBackupAttributes < Struct.new(
|
|
26
28
|
:domain_name,
|
|
27
29
|
:active_directory_id)
|
|
30
|
+
SENSITIVE = []
|
|
28
31
|
include Aws::Structure
|
|
29
32
|
end
|
|
30
33
|
|
|
@@ -48,6 +51,103 @@ module Aws::FSx
|
|
|
48
51
|
:active_directory_id,
|
|
49
52
|
:type,
|
|
50
53
|
:message)
|
|
54
|
+
SENSITIVE = []
|
|
55
|
+
include Aws::Structure
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Describes a specific Amazon FSx Administrative Action for the current
|
|
59
|
+
# Windows file system.
|
|
60
|
+
#
|
|
61
|
+
# @!attribute [rw] administrative_action_type
|
|
62
|
+
# Describes the type of administrative action, as follows:
|
|
63
|
+
#
|
|
64
|
+
# * `FILE_SYSTEM_UPDATE` - A file system update administrative action
|
|
65
|
+
# initiated by the user from the Amazon FSx console, API
|
|
66
|
+
# (UpdateFileSystem), or CLI (update-file-system). A
|
|
67
|
+
#
|
|
68
|
+
# * `STORAGE_OPTIMIZATION` - Once the `FILE_SYSTEM_UPDATE` task to
|
|
69
|
+
# increase a file system's storage capacity completes successfully,
|
|
70
|
+
# a `STORAGE_OPTIMIZATION` task starts. Storage optimization is the
|
|
71
|
+
# process of migrating the file system data to the new, larger
|
|
72
|
+
# disks. You can track the storage migration progress using the
|
|
73
|
+
# `ProgressPercent` property. When `STORAGE_OPTIMIZATION` completes
|
|
74
|
+
# successfully, the parent `FILE_SYSTEM_UPDATE` action status
|
|
75
|
+
# changes to `COMPLETED`. For more information, see [Managing
|
|
76
|
+
# Storage Capacity][1].
|
|
77
|
+
#
|
|
78
|
+
#
|
|
79
|
+
#
|
|
80
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
|
81
|
+
# @return [String]
|
|
82
|
+
#
|
|
83
|
+
# @!attribute [rw] progress_percent
|
|
84
|
+
# Provides the percent complete of a `STORAGE_OPTIMIZATION`
|
|
85
|
+
# administrative action.
|
|
86
|
+
# @return [Integer]
|
|
87
|
+
#
|
|
88
|
+
# @!attribute [rw] request_time
|
|
89
|
+
# Time that the administrative action request was received.
|
|
90
|
+
# @return [Time]
|
|
91
|
+
#
|
|
92
|
+
# @!attribute [rw] status
|
|
93
|
+
# Describes the status of the administrative action, as follows:
|
|
94
|
+
#
|
|
95
|
+
# * `FAILED` - Amazon FSx failed to process the administrative action
|
|
96
|
+
# successfully.
|
|
97
|
+
#
|
|
98
|
+
# * `IN_PROGRESS` - Amazon FSx is processing the administrative
|
|
99
|
+
# action.
|
|
100
|
+
#
|
|
101
|
+
# * `PENDING` - Amazon FSx is waiting to process the administrative
|
|
102
|
+
# action.
|
|
103
|
+
#
|
|
104
|
+
# * `COMPLETED` - Amazon FSx has finished processing the
|
|
105
|
+
# administrative task.
|
|
106
|
+
#
|
|
107
|
+
# * `UPDATED_OPTIMIZING` - For a storage capacity increase update,
|
|
108
|
+
# Amazon FSx has updated the file system with the new storage
|
|
109
|
+
# capacity, and is now performing the storage optimization process.
|
|
110
|
+
# For more information, see [Managing Storage Capacity][1].
|
|
111
|
+
#
|
|
112
|
+
#
|
|
113
|
+
#
|
|
114
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
|
115
|
+
# @return [String]
|
|
116
|
+
#
|
|
117
|
+
# @!attribute [rw] target_file_system_values
|
|
118
|
+
# Describes the target `StorageCapacity` or `ThroughputCapacity` value
|
|
119
|
+
# provided in the `UpdateFileSystem` operation. Returned for
|
|
120
|
+
# `FILE_SYSTEM_UPDATE` administrative actions.
|
|
121
|
+
# @return [Types::FileSystem]
|
|
122
|
+
#
|
|
123
|
+
# @!attribute [rw] failure_details
|
|
124
|
+
# Provides information about a failed administrative action.
|
|
125
|
+
# @return [Types::AdministrativeActionFailureDetails]
|
|
126
|
+
#
|
|
127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/AdministrativeAction AWS API Documentation
|
|
128
|
+
#
|
|
129
|
+
class AdministrativeAction < Struct.new(
|
|
130
|
+
:administrative_action_type,
|
|
131
|
+
:progress_percent,
|
|
132
|
+
:request_time,
|
|
133
|
+
:status,
|
|
134
|
+
:target_file_system_values,
|
|
135
|
+
:failure_details)
|
|
136
|
+
SENSITIVE = []
|
|
137
|
+
include Aws::Structure
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
# Provides information about a failed administrative action.
|
|
141
|
+
#
|
|
142
|
+
# @!attribute [rw] message
|
|
143
|
+
# Error message providing details about the failure.
|
|
144
|
+
# @return [String]
|
|
145
|
+
#
|
|
146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/AdministrativeActionFailureDetails AWS API Documentation
|
|
147
|
+
#
|
|
148
|
+
class AdministrativeActionFailureDetails < Struct.new(
|
|
149
|
+
:message)
|
|
150
|
+
SENSITIVE = []
|
|
51
151
|
include Aws::Structure
|
|
52
152
|
end
|
|
53
153
|
|
|
@@ -116,6 +216,7 @@ module Aws::FSx
|
|
|
116
216
|
:tags,
|
|
117
217
|
:file_system,
|
|
118
218
|
:directory_information)
|
|
219
|
+
SENSITIVE = []
|
|
119
220
|
include Aws::Structure
|
|
120
221
|
end
|
|
121
222
|
|
|
@@ -130,6 +231,7 @@ module Aws::FSx
|
|
|
130
231
|
#
|
|
131
232
|
class BackupFailureDetails < Struct.new(
|
|
132
233
|
:message)
|
|
234
|
+
SENSITIVE = []
|
|
133
235
|
include Aws::Structure
|
|
134
236
|
end
|
|
135
237
|
|
|
@@ -144,6 +246,7 @@ module Aws::FSx
|
|
|
144
246
|
#
|
|
145
247
|
class BackupInProgress < Struct.new(
|
|
146
248
|
:message)
|
|
249
|
+
SENSITIVE = []
|
|
147
250
|
include Aws::Structure
|
|
148
251
|
end
|
|
149
252
|
|
|
@@ -157,6 +260,7 @@ module Aws::FSx
|
|
|
157
260
|
#
|
|
158
261
|
class BackupNotFound < Struct.new(
|
|
159
262
|
:message)
|
|
263
|
+
SENSITIVE = []
|
|
160
264
|
include Aws::Structure
|
|
161
265
|
end
|
|
162
266
|
|
|
@@ -176,6 +280,7 @@ module Aws::FSx
|
|
|
176
280
|
class BackupRestoring < Struct.new(
|
|
177
281
|
:message,
|
|
178
282
|
:file_system_id)
|
|
283
|
+
SENSITIVE = []
|
|
179
284
|
include Aws::Structure
|
|
180
285
|
end
|
|
181
286
|
|
|
@@ -189,6 +294,7 @@ module Aws::FSx
|
|
|
189
294
|
#
|
|
190
295
|
class BadRequest < Struct.new(
|
|
191
296
|
:message)
|
|
297
|
+
SENSITIVE = []
|
|
192
298
|
include Aws::Structure
|
|
193
299
|
end
|
|
194
300
|
|
|
@@ -209,6 +315,7 @@ module Aws::FSx
|
|
|
209
315
|
#
|
|
210
316
|
class CancelDataRepositoryTaskRequest < Struct.new(
|
|
211
317
|
:task_id)
|
|
318
|
+
SENSITIVE = []
|
|
212
319
|
include Aws::Structure
|
|
213
320
|
end
|
|
214
321
|
|
|
@@ -240,6 +347,7 @@ module Aws::FSx
|
|
|
240
347
|
class CancelDataRepositoryTaskResponse < Struct.new(
|
|
241
348
|
:lifecycle,
|
|
242
349
|
:task_id)
|
|
350
|
+
SENSITIVE = []
|
|
243
351
|
include Aws::Structure
|
|
244
352
|
end
|
|
245
353
|
|
|
@@ -302,6 +410,7 @@ module Aws::FSx
|
|
|
302
410
|
:path,
|
|
303
411
|
:format,
|
|
304
412
|
:scope)
|
|
413
|
+
SENSITIVE = []
|
|
305
414
|
include Aws::Structure
|
|
306
415
|
end
|
|
307
416
|
|
|
@@ -346,6 +455,7 @@ module Aws::FSx
|
|
|
346
455
|
:file_system_id,
|
|
347
456
|
:client_request_token,
|
|
348
457
|
:tags)
|
|
458
|
+
SENSITIVE = []
|
|
349
459
|
include Aws::Structure
|
|
350
460
|
end
|
|
351
461
|
|
|
@@ -359,6 +469,7 @@ module Aws::FSx
|
|
|
359
469
|
#
|
|
360
470
|
class CreateBackupResponse < Struct.new(
|
|
361
471
|
:backup)
|
|
472
|
+
SENSITIVE = []
|
|
362
473
|
include Aws::Structure
|
|
363
474
|
end
|
|
364
475
|
|
|
@@ -437,6 +548,7 @@ module Aws::FSx
|
|
|
437
548
|
:report,
|
|
438
549
|
:client_request_token,
|
|
439
550
|
:tags)
|
|
551
|
+
SENSITIVE = []
|
|
440
552
|
include Aws::Structure
|
|
441
553
|
end
|
|
442
554
|
|
|
@@ -448,6 +560,7 @@ module Aws::FSx
|
|
|
448
560
|
#
|
|
449
561
|
class CreateDataRepositoryTaskResponse < Struct.new(
|
|
450
562
|
:data_repository_task)
|
|
563
|
+
SENSITIVE = []
|
|
451
564
|
include Aws::Structure
|
|
452
565
|
end
|
|
453
566
|
|
|
@@ -566,6 +679,7 @@ module Aws::FSx
|
|
|
566
679
|
:tags,
|
|
567
680
|
:windows_configuration,
|
|
568
681
|
:storage_type)
|
|
682
|
+
SENSITIVE = []
|
|
569
683
|
include Aws::Structure
|
|
570
684
|
end
|
|
571
685
|
|
|
@@ -579,6 +693,7 @@ module Aws::FSx
|
|
|
579
693
|
#
|
|
580
694
|
class CreateFileSystemFromBackupResponse < Struct.new(
|
|
581
695
|
:file_system)
|
|
696
|
+
SENSITIVE = []
|
|
582
697
|
include Aws::Structure
|
|
583
698
|
end
|
|
584
699
|
|
|
@@ -597,8 +712,9 @@ module Aws::FSx
|
|
|
597
712
|
# }
|
|
598
713
|
#
|
|
599
714
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
600
|
-
# The preferred time to perform weekly maintenance,
|
|
601
|
-
# zone
|
|
715
|
+
# The preferred start time to perform weekly maintenance, formatted
|
|
716
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
|
717
|
+
# through 7, beginning with Monday and ending with Sunday.
|
|
602
718
|
# @return [String]
|
|
603
719
|
#
|
|
604
720
|
# @!attribute [rw] import_path
|
|
@@ -693,6 +809,7 @@ module Aws::FSx
|
|
|
693
809
|
:imported_file_chunk_size,
|
|
694
810
|
:deployment_type,
|
|
695
811
|
:per_unit_storage_throughput)
|
|
812
|
+
SENSITIVE = []
|
|
696
813
|
include Aws::Structure
|
|
697
814
|
end
|
|
698
815
|
|
|
@@ -794,7 +911,7 @@ module Aws::FSx
|
|
|
794
911
|
#
|
|
795
912
|
#
|
|
796
913
|
#
|
|
797
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-
|
|
914
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
|
798
915
|
# @return [String]
|
|
799
916
|
#
|
|
800
917
|
# @!attribute [rw] subnet_ids
|
|
@@ -858,6 +975,7 @@ module Aws::FSx
|
|
|
858
975
|
:kms_key_id,
|
|
859
976
|
:windows_configuration,
|
|
860
977
|
:lustre_configuration)
|
|
978
|
+
SENSITIVE = []
|
|
861
979
|
include Aws::Structure
|
|
862
980
|
end
|
|
863
981
|
|
|
@@ -871,6 +989,7 @@ module Aws::FSx
|
|
|
871
989
|
#
|
|
872
990
|
class CreateFileSystemResponse < Struct.new(
|
|
873
991
|
:file_system)
|
|
992
|
+
SENSITIVE = []
|
|
874
993
|
include Aws::Structure
|
|
875
994
|
end
|
|
876
995
|
|
|
@@ -952,7 +1071,8 @@ module Aws::FSx
|
|
|
952
1071
|
#
|
|
953
1072
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
954
1073
|
# The preferred start time to perform weekly maintenance, formatted
|
|
955
|
-
# d:HH:MM in the UTC time zone
|
|
1074
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
|
1075
|
+
# through 7, beginning with Monday and ending with Sunday.
|
|
956
1076
|
# @return [String]
|
|
957
1077
|
#
|
|
958
1078
|
# @!attribute [rw] daily_automatic_backup_start_time
|
|
@@ -990,6 +1110,7 @@ module Aws::FSx
|
|
|
990
1110
|
:daily_automatic_backup_start_time,
|
|
991
1111
|
:automatic_backup_retention_days,
|
|
992
1112
|
:copy_tags_to_backups)
|
|
1113
|
+
SENSITIVE = []
|
|
993
1114
|
include Aws::Structure
|
|
994
1115
|
end
|
|
995
1116
|
|
|
@@ -1027,6 +1148,7 @@ module Aws::FSx
|
|
|
1027
1148
|
:import_path,
|
|
1028
1149
|
:export_path,
|
|
1029
1150
|
:imported_file_chunk_size)
|
|
1151
|
+
SENSITIVE = []
|
|
1030
1152
|
include Aws::Structure
|
|
1031
1153
|
end
|
|
1032
1154
|
|
|
@@ -1152,6 +1274,7 @@ module Aws::FSx
|
|
|
1152
1274
|
:failure_details,
|
|
1153
1275
|
:status,
|
|
1154
1276
|
:report)
|
|
1277
|
+
SENSITIVE = []
|
|
1155
1278
|
include Aws::Structure
|
|
1156
1279
|
end
|
|
1157
1280
|
|
|
@@ -1166,6 +1289,7 @@ module Aws::FSx
|
|
|
1166
1289
|
#
|
|
1167
1290
|
class DataRepositoryTaskEnded < Struct.new(
|
|
1168
1291
|
:message)
|
|
1292
|
+
SENSITIVE = []
|
|
1169
1293
|
include Aws::Structure
|
|
1170
1294
|
end
|
|
1171
1295
|
|
|
@@ -1181,6 +1305,7 @@ module Aws::FSx
|
|
|
1181
1305
|
#
|
|
1182
1306
|
class DataRepositoryTaskExecuting < Struct.new(
|
|
1183
1307
|
:message)
|
|
1308
|
+
SENSITIVE = []
|
|
1184
1309
|
include Aws::Structure
|
|
1185
1310
|
end
|
|
1186
1311
|
|
|
@@ -1195,6 +1320,7 @@ module Aws::FSx
|
|
|
1195
1320
|
#
|
|
1196
1321
|
class DataRepositoryTaskFailureDetails < Struct.new(
|
|
1197
1322
|
:message)
|
|
1323
|
+
SENSITIVE = []
|
|
1198
1324
|
include Aws::Structure
|
|
1199
1325
|
end
|
|
1200
1326
|
|
|
@@ -1234,6 +1360,7 @@ module Aws::FSx
|
|
|
1234
1360
|
class DataRepositoryTaskFilter < Struct.new(
|
|
1235
1361
|
:name,
|
|
1236
1362
|
:values)
|
|
1363
|
+
SENSITIVE = []
|
|
1237
1364
|
include Aws::Structure
|
|
1238
1365
|
end
|
|
1239
1366
|
|
|
@@ -1247,6 +1374,7 @@ module Aws::FSx
|
|
|
1247
1374
|
#
|
|
1248
1375
|
class DataRepositoryTaskNotFound < Struct.new(
|
|
1249
1376
|
:message)
|
|
1377
|
+
SENSITIVE = []
|
|
1250
1378
|
include Aws::Structure
|
|
1251
1379
|
end
|
|
1252
1380
|
|
|
@@ -1282,6 +1410,7 @@ module Aws::FSx
|
|
|
1282
1410
|
:succeeded_count,
|
|
1283
1411
|
:failed_count,
|
|
1284
1412
|
:last_updated_time)
|
|
1413
|
+
SENSITIVE = []
|
|
1285
1414
|
include Aws::Structure
|
|
1286
1415
|
end
|
|
1287
1416
|
|
|
@@ -1313,6 +1442,7 @@ module Aws::FSx
|
|
|
1313
1442
|
class DeleteBackupRequest < Struct.new(
|
|
1314
1443
|
:backup_id,
|
|
1315
1444
|
:client_request_token)
|
|
1445
|
+
SENSITIVE = []
|
|
1316
1446
|
include Aws::Structure
|
|
1317
1447
|
end
|
|
1318
1448
|
|
|
@@ -1331,6 +1461,7 @@ module Aws::FSx
|
|
|
1331
1461
|
class DeleteBackupResponse < Struct.new(
|
|
1332
1462
|
:backup_id,
|
|
1333
1463
|
:lifecycle)
|
|
1464
|
+
SENSITIVE = []
|
|
1334
1465
|
include Aws::Structure
|
|
1335
1466
|
end
|
|
1336
1467
|
|
|
@@ -1377,6 +1508,7 @@ module Aws::FSx
|
|
|
1377
1508
|
:file_system_id,
|
|
1378
1509
|
:client_request_token,
|
|
1379
1510
|
:windows_configuration)
|
|
1511
|
+
SENSITIVE = []
|
|
1380
1512
|
include Aws::Structure
|
|
1381
1513
|
end
|
|
1382
1514
|
|
|
@@ -1402,6 +1534,7 @@ module Aws::FSx
|
|
|
1402
1534
|
:file_system_id,
|
|
1403
1535
|
:lifecycle,
|
|
1404
1536
|
:windows_response)
|
|
1537
|
+
SENSITIVE = []
|
|
1405
1538
|
include Aws::Structure
|
|
1406
1539
|
end
|
|
1407
1540
|
|
|
@@ -1438,6 +1571,7 @@ module Aws::FSx
|
|
|
1438
1571
|
class DeleteFileSystemWindowsConfiguration < Struct.new(
|
|
1439
1572
|
:skip_final_backup,
|
|
1440
1573
|
:final_backup_tags)
|
|
1574
|
+
SENSITIVE = []
|
|
1441
1575
|
include Aws::Structure
|
|
1442
1576
|
end
|
|
1443
1577
|
|
|
@@ -1457,6 +1591,7 @@ module Aws::FSx
|
|
|
1457
1591
|
class DeleteFileSystemWindowsResponse < Struct.new(
|
|
1458
1592
|
:final_backup_id,
|
|
1459
1593
|
:final_backup_tags)
|
|
1594
|
+
SENSITIVE = []
|
|
1460
1595
|
include Aws::Structure
|
|
1461
1596
|
end
|
|
1462
1597
|
|
|
@@ -1509,6 +1644,7 @@ module Aws::FSx
|
|
|
1509
1644
|
:filters,
|
|
1510
1645
|
:max_results,
|
|
1511
1646
|
:next_token)
|
|
1647
|
+
SENSITIVE = []
|
|
1512
1648
|
include Aws::Structure
|
|
1513
1649
|
end
|
|
1514
1650
|
|
|
@@ -1529,6 +1665,7 @@ module Aws::FSx
|
|
|
1529
1665
|
class DescribeBackupsResponse < Struct.new(
|
|
1530
1666
|
:backups,
|
|
1531
1667
|
:next_token)
|
|
1668
|
+
SENSITIVE = []
|
|
1532
1669
|
include Aws::Structure
|
|
1533
1670
|
end
|
|
1534
1671
|
|
|
@@ -1577,6 +1714,7 @@ module Aws::FSx
|
|
|
1577
1714
|
:filters,
|
|
1578
1715
|
:max_results,
|
|
1579
1716
|
:next_token)
|
|
1717
|
+
SENSITIVE = []
|
|
1580
1718
|
include Aws::Structure
|
|
1581
1719
|
end
|
|
1582
1720
|
|
|
@@ -1596,6 +1734,7 @@ module Aws::FSx
|
|
|
1596
1734
|
class DescribeDataRepositoryTasksResponse < Struct.new(
|
|
1597
1735
|
:data_repository_tasks,
|
|
1598
1736
|
:next_token)
|
|
1737
|
+
SENSITIVE = []
|
|
1599
1738
|
include Aws::Structure
|
|
1600
1739
|
end
|
|
1601
1740
|
|
|
@@ -1635,6 +1774,7 @@ module Aws::FSx
|
|
|
1635
1774
|
:file_system_ids,
|
|
1636
1775
|
:max_results,
|
|
1637
1776
|
:next_token)
|
|
1777
|
+
SENSITIVE = []
|
|
1638
1778
|
include Aws::Structure
|
|
1639
1779
|
end
|
|
1640
1780
|
|
|
@@ -1655,6 +1795,7 @@ module Aws::FSx
|
|
|
1655
1795
|
class DescribeFileSystemsResponse < Struct.new(
|
|
1656
1796
|
:file_systems,
|
|
1657
1797
|
:next_token)
|
|
1798
|
+
SENSITIVE = []
|
|
1658
1799
|
include Aws::Structure
|
|
1659
1800
|
end
|
|
1660
1801
|
|
|
@@ -1792,6 +1933,13 @@ module Aws::FSx
|
|
|
1792
1933
|
# The configuration for the Amazon FSx for Lustre file system.
|
|
1793
1934
|
# @return [Types::LustreFileSystemConfiguration]
|
|
1794
1935
|
#
|
|
1936
|
+
# @!attribute [rw] administrative_actions
|
|
1937
|
+
# A list of administrative actions for the file system that are in
|
|
1938
|
+
# process or waiting to be processed. Administrative actions describe
|
|
1939
|
+
# changes to the Windows file system that you have initiated using the
|
|
1940
|
+
# `UpdateFileSystem` action.
|
|
1941
|
+
# @return [Array<Types::AdministrativeAction>]
|
|
1942
|
+
#
|
|
1795
1943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/FileSystem AWS API Documentation
|
|
1796
1944
|
#
|
|
1797
1945
|
class FileSystem < Struct.new(
|
|
@@ -1811,7 +1959,9 @@ module Aws::FSx
|
|
|
1811
1959
|
:resource_arn,
|
|
1812
1960
|
:tags,
|
|
1813
1961
|
:windows_configuration,
|
|
1814
|
-
:lustre_configuration
|
|
1962
|
+
:lustre_configuration,
|
|
1963
|
+
:administrative_actions)
|
|
1964
|
+
SENSITIVE = []
|
|
1815
1965
|
include Aws::Structure
|
|
1816
1966
|
end
|
|
1817
1967
|
|
|
@@ -1827,6 +1977,7 @@ module Aws::FSx
|
|
|
1827
1977
|
#
|
|
1828
1978
|
class FileSystemFailureDetails < Struct.new(
|
|
1829
1979
|
:message)
|
|
1980
|
+
SENSITIVE = []
|
|
1830
1981
|
include Aws::Structure
|
|
1831
1982
|
end
|
|
1832
1983
|
|
|
@@ -1840,6 +1991,7 @@ module Aws::FSx
|
|
|
1840
1991
|
#
|
|
1841
1992
|
class FileSystemNotFound < Struct.new(
|
|
1842
1993
|
:message)
|
|
1994
|
+
SENSITIVE = []
|
|
1843
1995
|
include Aws::Structure
|
|
1844
1996
|
end
|
|
1845
1997
|
|
|
@@ -1869,6 +2021,7 @@ module Aws::FSx
|
|
|
1869
2021
|
class Filter < Struct.new(
|
|
1870
2022
|
:name,
|
|
1871
2023
|
:values)
|
|
2024
|
+
SENSITIVE = []
|
|
1872
2025
|
include Aws::Structure
|
|
1873
2026
|
end
|
|
1874
2027
|
|
|
@@ -1889,6 +2042,7 @@ module Aws::FSx
|
|
|
1889
2042
|
class IncompatibleParameterError < Struct.new(
|
|
1890
2043
|
:parameter,
|
|
1891
2044
|
:message)
|
|
2045
|
+
SENSITIVE = []
|
|
1892
2046
|
include Aws::Structure
|
|
1893
2047
|
end
|
|
1894
2048
|
|
|
@@ -1902,6 +2056,7 @@ module Aws::FSx
|
|
|
1902
2056
|
#
|
|
1903
2057
|
class InternalServerError < Struct.new(
|
|
1904
2058
|
:message)
|
|
2059
|
+
SENSITIVE = []
|
|
1905
2060
|
include Aws::Structure
|
|
1906
2061
|
end
|
|
1907
2062
|
|
|
@@ -1915,6 +2070,7 @@ module Aws::FSx
|
|
|
1915
2070
|
#
|
|
1916
2071
|
class InvalidExportPath < Struct.new(
|
|
1917
2072
|
:message)
|
|
2073
|
+
SENSITIVE = []
|
|
1918
2074
|
include Aws::Structure
|
|
1919
2075
|
end
|
|
1920
2076
|
|
|
@@ -1928,6 +2084,7 @@ module Aws::FSx
|
|
|
1928
2084
|
#
|
|
1929
2085
|
class InvalidImportPath < Struct.new(
|
|
1930
2086
|
:message)
|
|
2087
|
+
SENSITIVE = []
|
|
1931
2088
|
include Aws::Structure
|
|
1932
2089
|
end
|
|
1933
2090
|
|
|
@@ -1970,6 +2127,7 @@ module Aws::FSx
|
|
|
1970
2127
|
:message,
|
|
1971
2128
|
:invalid_subnet_id,
|
|
1972
2129
|
:invalid_security_group_id)
|
|
2130
|
+
SENSITIVE = []
|
|
1973
2131
|
include Aws::Structure
|
|
1974
2132
|
end
|
|
1975
2133
|
|
|
@@ -1984,6 +2142,7 @@ module Aws::FSx
|
|
|
1984
2142
|
#
|
|
1985
2143
|
class InvalidPerUnitStorageThroughput < Struct.new(
|
|
1986
2144
|
:message)
|
|
2145
|
+
SENSITIVE = []
|
|
1987
2146
|
include Aws::Structure
|
|
1988
2147
|
end
|
|
1989
2148
|
|
|
@@ -2022,6 +2181,7 @@ module Aws::FSx
|
|
|
2022
2181
|
:resource_arn,
|
|
2023
2182
|
:max_results,
|
|
2024
2183
|
:next_token)
|
|
2184
|
+
SENSITIVE = []
|
|
2025
2185
|
include Aws::Structure
|
|
2026
2186
|
end
|
|
2027
2187
|
|
|
@@ -2042,13 +2202,16 @@ module Aws::FSx
|
|
|
2042
2202
|
class ListTagsForResourceResponse < Struct.new(
|
|
2043
2203
|
:tags,
|
|
2044
2204
|
:next_token)
|
|
2205
|
+
SENSITIVE = []
|
|
2045
2206
|
include Aws::Structure
|
|
2046
2207
|
end
|
|
2047
2208
|
|
|
2048
2209
|
# The configuration for the Amazon FSx for Lustre file system.
|
|
2049
2210
|
#
|
|
2050
2211
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
2051
|
-
# The
|
|
2212
|
+
# The preferred start time to perform weekly maintenance, formatted
|
|
2213
|
+
# d:HH:MM in the UTC time zone. d is the weekday number, from 1
|
|
2214
|
+
# through 7, beginning with Monday and ending with Sunday.
|
|
2052
2215
|
# @return [String]
|
|
2053
2216
|
#
|
|
2054
2217
|
# @!attribute [rw] data_repository_configuration
|
|
@@ -2084,6 +2247,7 @@ module Aws::FSx
|
|
|
2084
2247
|
:deployment_type,
|
|
2085
2248
|
:per_unit_storage_throughput,
|
|
2086
2249
|
:mount_name)
|
|
2250
|
+
SENSITIVE = []
|
|
2087
2251
|
include Aws::Structure
|
|
2088
2252
|
end
|
|
2089
2253
|
|
|
@@ -2097,6 +2261,7 @@ module Aws::FSx
|
|
|
2097
2261
|
#
|
|
2098
2262
|
class MissingFileSystemConfiguration < Struct.new(
|
|
2099
2263
|
:message)
|
|
2264
|
+
SENSITIVE = []
|
|
2100
2265
|
include Aws::Structure
|
|
2101
2266
|
end
|
|
2102
2267
|
|
|
@@ -2117,6 +2282,7 @@ module Aws::FSx
|
|
|
2117
2282
|
class NotServiceResourceError < Struct.new(
|
|
2118
2283
|
:resource_arn,
|
|
2119
2284
|
:message)
|
|
2285
|
+
SENSITIVE = []
|
|
2120
2286
|
include Aws::Structure
|
|
2121
2287
|
end
|
|
2122
2288
|
|
|
@@ -2136,6 +2302,7 @@ module Aws::FSx
|
|
|
2136
2302
|
class ResourceDoesNotSupportTagging < Struct.new(
|
|
2137
2303
|
:resource_arn,
|
|
2138
2304
|
:message)
|
|
2305
|
+
SENSITIVE = []
|
|
2139
2306
|
include Aws::Structure
|
|
2140
2307
|
end
|
|
2141
2308
|
|
|
@@ -2155,6 +2322,7 @@ module Aws::FSx
|
|
|
2155
2322
|
class ResourceNotFound < Struct.new(
|
|
2156
2323
|
:resource_arn,
|
|
2157
2324
|
:message)
|
|
2325
|
+
SENSITIVE = []
|
|
2158
2326
|
include Aws::Structure
|
|
2159
2327
|
end
|
|
2160
2328
|
|
|
@@ -2194,6 +2362,7 @@ module Aws::FSx
|
|
|
2194
2362
|
:file_system_administrators_group,
|
|
2195
2363
|
:user_name,
|
|
2196
2364
|
:dns_ips)
|
|
2365
|
+
SENSITIVE = []
|
|
2197
2366
|
include Aws::Structure
|
|
2198
2367
|
end
|
|
2199
2368
|
|
|
@@ -2286,12 +2455,12 @@ module Aws::FSx
|
|
|
2286
2455
|
:user_name,
|
|
2287
2456
|
:password,
|
|
2288
2457
|
:dns_ips)
|
|
2458
|
+
SENSITIVE = [:password]
|
|
2289
2459
|
include Aws::Structure
|
|
2290
2460
|
end
|
|
2291
2461
|
|
|
2292
2462
|
# The configuration that Amazon FSx uses to join the Windows File Server
|
|
2293
|
-
# instance to
|
|
2294
|
-
# directory.
|
|
2463
|
+
# instance to a self-managed Microsoft Active Directory (AD) directory.
|
|
2295
2464
|
#
|
|
2296
2465
|
# @note When making an API call, you may pass SelfManagedActiveDirectoryConfigurationUpdates
|
|
2297
2466
|
# data as a hash:
|
|
@@ -2326,6 +2495,7 @@ module Aws::FSx
|
|
|
2326
2495
|
:user_name,
|
|
2327
2496
|
:password,
|
|
2328
2497
|
:dns_ips)
|
|
2498
|
+
SENSITIVE = [:password]
|
|
2329
2499
|
include Aws::Structure
|
|
2330
2500
|
end
|
|
2331
2501
|
|
|
@@ -2345,6 +2515,7 @@ module Aws::FSx
|
|
|
2345
2515
|
class ServiceLimitExceeded < Struct.new(
|
|
2346
2516
|
:limit,
|
|
2347
2517
|
:message)
|
|
2518
|
+
SENSITIVE = []
|
|
2348
2519
|
include Aws::Structure
|
|
2349
2520
|
end
|
|
2350
2521
|
|
|
@@ -2375,6 +2546,7 @@ module Aws::FSx
|
|
|
2375
2546
|
class Tag < Struct.new(
|
|
2376
2547
|
:key,
|
|
2377
2548
|
:value)
|
|
2549
|
+
SENSITIVE = []
|
|
2378
2550
|
include Aws::Structure
|
|
2379
2551
|
end
|
|
2380
2552
|
|
|
@@ -2409,6 +2581,7 @@ module Aws::FSx
|
|
|
2409
2581
|
class TagResourceRequest < Struct.new(
|
|
2410
2582
|
:resource_arn,
|
|
2411
2583
|
:tags)
|
|
2584
|
+
SENSITIVE = []
|
|
2412
2585
|
include Aws::Structure
|
|
2413
2586
|
end
|
|
2414
2587
|
|
|
@@ -2428,6 +2601,7 @@ module Aws::FSx
|
|
|
2428
2601
|
#
|
|
2429
2602
|
class UnsupportedOperation < Struct.new(
|
|
2430
2603
|
:message)
|
|
2604
|
+
SENSITIVE = []
|
|
2431
2605
|
include Aws::Structure
|
|
2432
2606
|
end
|
|
2433
2607
|
|
|
@@ -2455,6 +2629,7 @@ module Aws::FSx
|
|
|
2455
2629
|
class UntagResourceRequest < Struct.new(
|
|
2456
2630
|
:resource_arn,
|
|
2457
2631
|
:tag_keys)
|
|
2632
|
+
SENSITIVE = []
|
|
2458
2633
|
include Aws::Structure
|
|
2459
2634
|
end
|
|
2460
2635
|
|
|
@@ -2475,14 +2650,16 @@ module Aws::FSx
|
|
|
2475
2650
|
# }
|
|
2476
2651
|
#
|
|
2477
2652
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
2478
|
-
# The preferred time to perform weekly maintenance,
|
|
2479
|
-
# zone.
|
|
2653
|
+
# The preferred start time to perform weekly maintenance, formatted
|
|
2654
|
+
# d:HH:MM in the UTC time zone. d is the weekday number, from 1
|
|
2655
|
+
# through 7, beginning with Monday and ending with Sunday.
|
|
2480
2656
|
# @return [String]
|
|
2481
2657
|
#
|
|
2482
2658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
|
2483
2659
|
#
|
|
2484
2660
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
|
2485
2661
|
:weekly_maintenance_start_time)
|
|
2662
|
+
SENSITIVE = []
|
|
2486
2663
|
include Aws::Structure
|
|
2487
2664
|
end
|
|
2488
2665
|
|
|
@@ -2494,10 +2671,12 @@ module Aws::FSx
|
|
|
2494
2671
|
# {
|
|
2495
2672
|
# file_system_id: "FileSystemId", # required
|
|
2496
2673
|
# client_request_token: "ClientRequestToken",
|
|
2674
|
+
# storage_capacity: 1,
|
|
2497
2675
|
# windows_configuration: {
|
|
2498
2676
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
2499
2677
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
2500
2678
|
# automatic_backup_retention_days: 1,
|
|
2679
|
+
# throughput_capacity: 1,
|
|
2501
2680
|
# self_managed_active_directory_configuration: {
|
|
2502
2681
|
# user_name: "DirectoryUserName",
|
|
2503
2682
|
# password: "DirectoryPassword",
|
|
@@ -2510,23 +2689,38 @@ module Aws::FSx
|
|
|
2510
2689
|
# }
|
|
2511
2690
|
#
|
|
2512
2691
|
# @!attribute [rw] file_system_id
|
|
2513
|
-
#
|
|
2692
|
+
# Identifies the file system that you are updating.
|
|
2514
2693
|
# @return [String]
|
|
2515
2694
|
#
|
|
2516
2695
|
# @!attribute [rw] client_request_token
|
|
2517
|
-
#
|
|
2518
|
-
#
|
|
2519
|
-
#
|
|
2520
|
-
#
|
|
2696
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
|
2697
|
+
# idempotent updates. This string is automatically filled on your
|
|
2698
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
|
2699
|
+
# AWS SDK.
|
|
2521
2700
|
#
|
|
2522
2701
|
# **A suitable default value is auto-generated.** You should normally
|
|
2523
2702
|
# not need to pass this option.
|
|
2524
2703
|
# @return [String]
|
|
2525
2704
|
#
|
|
2705
|
+
# @!attribute [rw] storage_capacity
|
|
2706
|
+
# Use this parameter to increase the storage capacity of an Amazon FSx
|
|
2707
|
+
# for Windows File Server file system. Specifies the storage capacity
|
|
2708
|
+
# target value, GiB, for the file system you're updating. The storage
|
|
2709
|
+
# capacity target value must be at least 10 percent (%) greater than
|
|
2710
|
+
# the current storage capacity value. In order to increase storage
|
|
2711
|
+
# capacity, the file system needs to have at least 16 MB/s of
|
|
2712
|
+
# throughput capacity. You cannot make a storage capacity increase
|
|
2713
|
+
# request if there is an existing storage capacity increase request in
|
|
2714
|
+
# progress. For more information, see [Managing Storage Capacity][1].
|
|
2715
|
+
#
|
|
2716
|
+
#
|
|
2717
|
+
#
|
|
2718
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
|
2719
|
+
# @return [Integer]
|
|
2720
|
+
#
|
|
2526
2721
|
# @!attribute [rw] windows_configuration
|
|
2527
|
-
# The configuration
|
|
2528
|
-
#
|
|
2529
|
-
# self-managed Active Directory configuration.
|
|
2722
|
+
# The configuration updates for an Amazon FSx for Windows File Server
|
|
2723
|
+
# file system.
|
|
2530
2724
|
# @return [Types::UpdateFileSystemWindowsConfiguration]
|
|
2531
2725
|
#
|
|
2532
2726
|
# @!attribute [rw] lustre_configuration
|
|
@@ -2539,8 +2733,10 @@ module Aws::FSx
|
|
|
2539
2733
|
class UpdateFileSystemRequest < Struct.new(
|
|
2540
2734
|
:file_system_id,
|
|
2541
2735
|
:client_request_token,
|
|
2736
|
+
:storage_capacity,
|
|
2542
2737
|
:windows_configuration,
|
|
2543
2738
|
:lustre_configuration)
|
|
2739
|
+
SENSITIVE = []
|
|
2544
2740
|
include Aws::Structure
|
|
2545
2741
|
end
|
|
2546
2742
|
|
|
@@ -2554,13 +2750,13 @@ module Aws::FSx
|
|
|
2554
2750
|
#
|
|
2555
2751
|
class UpdateFileSystemResponse < Struct.new(
|
|
2556
2752
|
:file_system)
|
|
2753
|
+
SENSITIVE = []
|
|
2557
2754
|
include Aws::Structure
|
|
2558
2755
|
end
|
|
2559
2756
|
|
|
2560
|
-
# Updates the
|
|
2561
|
-
#
|
|
2562
|
-
#
|
|
2563
|
-
# specify a non-null value for a property, that property is not updated.
|
|
2757
|
+
# Updates the configuration for an existing Amazon FSx for Windows File
|
|
2758
|
+
# Server file system. Amazon FSx only overwrites existing properties
|
|
2759
|
+
# with non-null values provided in the request.
|
|
2564
2760
|
#
|
|
2565
2761
|
# @note When making an API call, you may pass UpdateFileSystemWindowsConfiguration
|
|
2566
2762
|
# data as a hash:
|
|
@@ -2569,6 +2765,7 @@ module Aws::FSx
|
|
|
2569
2765
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
2570
2766
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
2571
2767
|
# automatic_backup_retention_days: 1,
|
|
2768
|
+
# throughput_capacity: 1,
|
|
2572
2769
|
# self_managed_active_directory_configuration: {
|
|
2573
2770
|
# user_name: "DirectoryUserName",
|
|
2574
2771
|
# password: "DirectoryPassword",
|
|
@@ -2577,24 +2774,45 @@ module Aws::FSx
|
|
|
2577
2774
|
# }
|
|
2578
2775
|
#
|
|
2579
2776
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
2580
|
-
# The preferred time to perform weekly maintenance,
|
|
2581
|
-
# zone.
|
|
2777
|
+
# The preferred start time to perform weekly maintenance, formatted
|
|
2778
|
+
# d:HH:MM in the UTC time zone. Where d is the weekday number, from 1
|
|
2779
|
+
# through 7, with 1 = Monday and 7 = Sunday.
|
|
2582
2780
|
# @return [String]
|
|
2583
2781
|
#
|
|
2584
2782
|
# @!attribute [rw] daily_automatic_backup_start_time
|
|
2585
|
-
# The preferred time to
|
|
2586
|
-
# zone
|
|
2783
|
+
# The preferred time to start the daily automatic backup, in the UTC
|
|
2784
|
+
# time zone, for example, `02:00`
|
|
2587
2785
|
# @return [String]
|
|
2588
2786
|
#
|
|
2589
2787
|
# @!attribute [rw] automatic_backup_retention_days
|
|
2590
|
-
# The number of days to retain automatic backups. Setting this
|
|
2591
|
-
# disables automatic backups. You can retain
|
|
2592
|
-
# maximum of 35 days.
|
|
2788
|
+
# The number of days to retain automatic daily backups. Setting this
|
|
2789
|
+
# to zero (0) disables automatic daily backups. You can retain
|
|
2790
|
+
# automatic daily backups for a maximum of 35 days. For more
|
|
2791
|
+
# information, see [Working with Automatic Daily Backups][1].
|
|
2792
|
+
#
|
|
2793
|
+
#
|
|
2794
|
+
#
|
|
2795
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/using-backups.html#automatic-backups
|
|
2796
|
+
# @return [Integer]
|
|
2797
|
+
#
|
|
2798
|
+
# @!attribute [rw] throughput_capacity
|
|
2799
|
+
# Sets the target value for a file system's throughput capacity, in
|
|
2800
|
+
# MB/s, that you are updating the file system to. Valid values are 8,
|
|
2801
|
+
# 16, 32, 64, 128, 256, 512, 1024, 2048. You cannot make a throughput
|
|
2802
|
+
# capacity update request if there is an existing throughput capacity
|
|
2803
|
+
# update request in progress. For more information, see [Managing
|
|
2804
|
+
# Throughput Capacity][1].
|
|
2805
|
+
#
|
|
2806
|
+
#
|
|
2807
|
+
#
|
|
2808
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-throughput-capacity.html
|
|
2593
2809
|
# @return [Integer]
|
|
2594
2810
|
#
|
|
2595
2811
|
# @!attribute [rw] self_managed_active_directory_configuration
|
|
2596
2812
|
# The configuration Amazon FSx uses to join the Windows File Server
|
|
2597
|
-
# instance to the self-managed Microsoft AD directory.
|
|
2813
|
+
# instance to the self-managed Microsoft AD directory. You cannot make
|
|
2814
|
+
# a self-managed Microsoft AD update request if there is an existing
|
|
2815
|
+
# self-managed Microsoft AD update request in progress.
|
|
2598
2816
|
# @return [Types::SelfManagedActiveDirectoryConfigurationUpdates]
|
|
2599
2817
|
#
|
|
2600
2818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemWindowsConfiguration AWS API Documentation
|
|
@@ -2603,7 +2821,9 @@ module Aws::FSx
|
|
|
2603
2821
|
:weekly_maintenance_start_time,
|
|
2604
2822
|
:daily_automatic_backup_start_time,
|
|
2605
2823
|
:automatic_backup_retention_days,
|
|
2824
|
+
:throughput_capacity,
|
|
2606
2825
|
:self_managed_active_directory_configuration)
|
|
2826
|
+
SENSITIVE = []
|
|
2607
2827
|
include Aws::Structure
|
|
2608
2828
|
end
|
|
2609
2829
|
|
|
@@ -2699,8 +2919,9 @@ module Aws::FSx
|
|
|
2699
2919
|
# @return [Array<String>]
|
|
2700
2920
|
#
|
|
2701
2921
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
2702
|
-
# The preferred time to perform weekly maintenance,
|
|
2703
|
-
# zone.
|
|
2922
|
+
# The preferred start time to perform weekly maintenance, formatted
|
|
2923
|
+
# d:HH:MM in the UTC time zone. d is the weekday number, from 1
|
|
2924
|
+
# through 7, beginning with Monday and ending with Sunday.
|
|
2704
2925
|
# @return [String]
|
|
2705
2926
|
#
|
|
2706
2927
|
# @!attribute [rw] daily_automatic_backup_start_time
|
|
@@ -2740,6 +2961,7 @@ module Aws::FSx
|
|
|
2740
2961
|
:daily_automatic_backup_start_time,
|
|
2741
2962
|
:automatic_backup_retention_days,
|
|
2742
2963
|
:copy_tags_to_backups)
|
|
2964
|
+
SENSITIVE = []
|
|
2743
2965
|
include Aws::Structure
|
|
2744
2966
|
end
|
|
2745
2967
|
|
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.22.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: 2020-
|
|
11
|
+
date: 2020-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.99.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.99.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
83
|
rubyforge_project:
|
|
84
|
-
rubygems_version: 2.
|
|
84
|
+
rubygems_version: 2.7.6.2
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: AWS SDK for Ruby - Amazon FSx
|