aws-sdk-fsx 1.41.0 → 1.45.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.
@@ -48,12 +48,15 @@ module Aws::FSx
48
48
  # * {InvalidRegion}
49
49
  # * {InvalidSourceKmsKey}
50
50
  # * {MissingFileSystemConfiguration}
51
+ # * {MissingVolumeConfiguration}
51
52
  # * {NotServiceResourceError}
52
53
  # * {ResourceDoesNotSupportTagging}
53
54
  # * {ResourceNotFound}
54
55
  # * {ServiceLimitExceeded}
55
56
  # * {SourceBackupUnavailable}
57
+ # * {StorageVirtualMachineNotFound}
56
58
  # * {UnsupportedOperation}
59
+ # * {VolumeNotFound}
57
60
  #
58
61
  # Additionally, error classes are dynamically generated for service errors based on the error code
59
62
  # if they are not defined above.
@@ -349,6 +352,11 @@ module Aws::FSx
349
352
  def invalid_security_group_id
350
353
  @data[:invalid_security_group_id]
351
354
  end
355
+
356
+ # @return [String]
357
+ def invalid_route_table_id
358
+ @data[:invalid_route_table_id]
359
+ end
352
360
  end
353
361
 
354
362
  class InvalidPerUnitStorageThroughput < ServiceError
@@ -411,6 +419,21 @@ module Aws::FSx
411
419
  end
412
420
  end
413
421
 
422
+ class MissingVolumeConfiguration < ServiceError
423
+
424
+ # @param [Seahorse::Client::RequestContext] context
425
+ # @param [String] message
426
+ # @param [Aws::FSx::Types::MissingVolumeConfiguration] data
427
+ def initialize(context, message, data = Aws::EmptyStructure.new)
428
+ super(context, message, data)
429
+ end
430
+
431
+ # @return [String]
432
+ def message
433
+ @message || @data[:message]
434
+ end
435
+ end
436
+
414
437
  class NotServiceResourceError < ServiceError
415
438
 
416
439
  # @param [Seahorse::Client::RequestContext] context
@@ -511,6 +534,21 @@ module Aws::FSx
511
534
  end
512
535
  end
513
536
 
537
+ class StorageVirtualMachineNotFound < ServiceError
538
+
539
+ # @param [Seahorse::Client::RequestContext] context
540
+ # @param [String] message
541
+ # @param [Aws::FSx::Types::StorageVirtualMachineNotFound] data
542
+ def initialize(context, message, data = Aws::EmptyStructure.new)
543
+ super(context, message, data)
544
+ end
545
+
546
+ # @return [String]
547
+ def message
548
+ @message || @data[:message]
549
+ end
550
+ end
551
+
514
552
  class UnsupportedOperation < ServiceError
515
553
 
516
554
  # @param [Seahorse::Client::RequestContext] context
@@ -526,5 +564,20 @@ module Aws::FSx
526
564
  end
527
565
  end
528
566
 
567
+ class VolumeNotFound < ServiceError
568
+
569
+ # @param [Seahorse::Client::RequestContext] context
570
+ # @param [String] message
571
+ # @param [Aws::FSx::Types::VolumeNotFound] data
572
+ def initialize(context, message, data = Aws::EmptyStructure.new)
573
+ super(context, message, data)
574
+ end
575
+
576
+ # @return [String]
577
+ def message
578
+ @message || @data[:message]
579
+ end
580
+ end
581
+
529
582
  end
530
583
  end