aws-sdk-fsx 1.45.0 → 1.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +3084 -314
- data/lib/aws-sdk-fsx/client_api.rb +507 -0
- data/lib/aws-sdk-fsx/errors.rb +48 -0
- data/lib/aws-sdk-fsx/types.rb +3174 -564
- data/lib/aws-sdk-fsx.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-fsx/errors.rb
CHANGED
@@ -33,6 +33,7 @@ module Aws::FSx
|
|
33
33
|
# * {BackupNotFound}
|
34
34
|
# * {BackupRestoring}
|
35
35
|
# * {BadRequest}
|
36
|
+
# * {DataRepositoryAssociationNotFound}
|
36
37
|
# * {DataRepositoryTaskEnded}
|
37
38
|
# * {DataRepositoryTaskExecuting}
|
38
39
|
# * {DataRepositoryTaskNotFound}
|
@@ -40,6 +41,7 @@ module Aws::FSx
|
|
40
41
|
# * {IncompatibleParameterError}
|
41
42
|
# * {IncompatibleRegionForMultiAZ}
|
42
43
|
# * {InternalServerError}
|
44
|
+
# * {InvalidDataRepositoryType}
|
43
45
|
# * {InvalidDestinationKmsKey}
|
44
46
|
# * {InvalidExportPath}
|
45
47
|
# * {InvalidImportPath}
|
@@ -53,6 +55,7 @@ module Aws::FSx
|
|
53
55
|
# * {ResourceDoesNotSupportTagging}
|
54
56
|
# * {ResourceNotFound}
|
55
57
|
# * {ServiceLimitExceeded}
|
58
|
+
# * {SnapshotNotFound}
|
56
59
|
# * {SourceBackupUnavailable}
|
57
60
|
# * {StorageVirtualMachineNotFound}
|
58
61
|
# * {UnsupportedOperation}
|
@@ -174,6 +177,21 @@ module Aws::FSx
|
|
174
177
|
end
|
175
178
|
end
|
176
179
|
|
180
|
+
class DataRepositoryAssociationNotFound < ServiceError
|
181
|
+
|
182
|
+
# @param [Seahorse::Client::RequestContext] context
|
183
|
+
# @param [String] message
|
184
|
+
# @param [Aws::FSx::Types::DataRepositoryAssociationNotFound] data
|
185
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
186
|
+
super(context, message, data)
|
187
|
+
end
|
188
|
+
|
189
|
+
# @return [String]
|
190
|
+
def message
|
191
|
+
@message || @data[:message]
|
192
|
+
end
|
193
|
+
end
|
194
|
+
|
177
195
|
class DataRepositoryTaskEnded < ServiceError
|
178
196
|
|
179
197
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -284,6 +302,21 @@ module Aws::FSx
|
|
284
302
|
end
|
285
303
|
end
|
286
304
|
|
305
|
+
class InvalidDataRepositoryType < ServiceError
|
306
|
+
|
307
|
+
# @param [Seahorse::Client::RequestContext] context
|
308
|
+
# @param [String] message
|
309
|
+
# @param [Aws::FSx::Types::InvalidDataRepositoryType] data
|
310
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
311
|
+
super(context, message, data)
|
312
|
+
end
|
313
|
+
|
314
|
+
# @return [String]
|
315
|
+
def message
|
316
|
+
@message || @data[:message]
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
287
320
|
class InvalidDestinationKmsKey < ServiceError
|
288
321
|
|
289
322
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -514,6 +547,21 @@ module Aws::FSx
|
|
514
547
|
end
|
515
548
|
end
|
516
549
|
|
550
|
+
class SnapshotNotFound < ServiceError
|
551
|
+
|
552
|
+
# @param [Seahorse::Client::RequestContext] context
|
553
|
+
# @param [String] message
|
554
|
+
# @param [Aws::FSx::Types::SnapshotNotFound] data
|
555
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
556
|
+
super(context, message, data)
|
557
|
+
end
|
558
|
+
|
559
|
+
# @return [String]
|
560
|
+
def message
|
561
|
+
@message || @data[:message]
|
562
|
+
end
|
563
|
+
end
|
564
|
+
|
517
565
|
class SourceBackupUnavailable < ServiceError
|
518
566
|
|
519
567
|
# @param [Seahorse::Client::RequestContext] context
|