aws-sdk-rds 1.99.0 → 1.100.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f22d6231e3802b41314a9e2c1bb1f75077b5747e606076dd47506d81e02b35c4
4
- data.tar.gz: 4ccd3faecf2ca988d2793ec30bc92a119779871b98bf3841f445433232bc2f89
3
+ metadata.gz: 9561986025439a6795590ebe176dee6dc10c6a7de1c9f7489d093d58af553a59
4
+ data.tar.gz: 89319fff16a633dbc246bbd92bf892a52050393071e9f08b4ca7c2031ec27e38
5
5
  SHA512:
6
- metadata.gz: c9c0306de182adebd9604d1f57249fcb6ae560ffd397a32543fffbcd59e4187480967f2dc5638088ad7bc0e34d94fa0a0f0678ba60ce3317124610ef361f0c77
7
- data.tar.gz: 278858a02b7b0a32d25aa9b2366f03b16475b2e1420f679def1118e93c4f9d2f3a29ce7b5afde1bc83984d297caaf4f5f8e83b90d4afab90eaa1ce376d508142
6
+ metadata.gz: dbd4756c465d7c915fd0f91654aa02e970104bb399c264377d53019c4c563dfd1efaec3f4a0dc34c7ef55b41df4f75b66a3e9065aec9a0f8e59adf2ced5c2be7
7
+ data.tar.gz: 9ed98386ed026c8f91c6275319da98c168eb850631d989074bca4d8d0f47ffc9f4a7194ea40739ac003f62bd0bbd2a8454222a04cfeee9d73cf89b36abb19d72
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-rds/customizations'
74
74
  # @!group service
75
75
  module Aws::RDS
76
76
 
77
- GEM_VERSION = '1.99.0'
77
+ GEM_VERSION = '1.100.0'
78
78
 
79
79
  end
@@ -18661,7 +18661,7 @@ module Aws::RDS
18661
18661
  params: params,
18662
18662
  config: config)
18663
18663
  context[:gem_name] = 'aws-sdk-rds'
18664
- context[:gem_version] = '1.99.0'
18664
+ context[:gem_version] = '1.100.0'
18665
18665
  Seahorse::Client::Request.new(handlers, context)
18666
18666
  end
18667
18667
 
@@ -341,6 +341,7 @@ module Aws::RDS
341
341
  InstallationMediaMessage = Shapes::StructureShape.new(name: 'InstallationMediaMessage')
342
342
  InstallationMediaNotFoundFault = Shapes::StructureShape.new(name: 'InstallationMediaNotFoundFault')
343
343
  InstanceQuotaExceededFault = Shapes::StructureShape.new(name: 'InstanceQuotaExceededFault')
344
+ InsufficientAvailableIPsInSubnetFault = Shapes::StructureShape.new(name: 'InsufficientAvailableIPsInSubnetFault')
344
345
  InsufficientDBClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientDBClusterCapacityFault')
345
346
  InsufficientDBInstanceCapacityFault = Shapes::StructureShape.new(name: 'InsufficientDBInstanceCapacityFault')
346
347
  InsufficientStorageClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientStorageClusterCapacityFault')
@@ -2163,6 +2164,8 @@ module Aws::RDS
2163
2164
 
2164
2165
  InstanceQuotaExceededFault.struct_class = Types::InstanceQuotaExceededFault
2165
2166
 
2167
+ InsufficientAvailableIPsInSubnetFault.struct_class = Types::InsufficientAvailableIPsInSubnetFault
2168
+
2166
2169
  InsufficientDBClusterCapacityFault.struct_class = Types::InsufficientDBClusterCapacityFault
2167
2170
 
2168
2171
  InsufficientDBInstanceCapacityFault.struct_class = Types::InsufficientDBInstanceCapacityFault
@@ -4627,6 +4630,7 @@ module Aws::RDS
4627
4630
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
4628
4631
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
4629
4632
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
4633
+ o.errors << Shapes::ShapeRef.new(shape: InsufficientAvailableIPsInSubnetFault)
4630
4634
  end)
4631
4635
 
4632
4636
  api.add_operation(:remove_from_global_cluster, Seahorse::Model::Operation.new.tap do |o|
@@ -90,6 +90,7 @@ module Aws::RDS
90
90
  # * {InstallationMediaAlreadyExistsFault}
91
91
  # * {InstallationMediaNotFoundFault}
92
92
  # * {InstanceQuotaExceededFault}
93
+ # * {InsufficientAvailableIPsInSubnetFault}
93
94
  # * {InsufficientDBClusterCapacityFault}
94
95
  # * {InsufficientDBInstanceCapacityFault}
95
96
  # * {InsufficientStorageClusterCapacityFault}
@@ -776,6 +777,16 @@ module Aws::RDS
776
777
  end
777
778
  end
778
779
 
780
+ class InsufficientAvailableIPsInSubnetFault < ServiceError
781
+
782
+ # @param [Seahorse::Client::RequestContext] context
783
+ # @param [String] message
784
+ # @param [Aws::RDS::Types::InsufficientAvailableIPsInSubnetFault] data
785
+ def initialize(context, message, data = Aws::EmptyStructure.new)
786
+ super(context, message, data)
787
+ end
788
+ end
789
+
779
790
  class InsufficientDBClusterCapacityFault < ServiceError
780
791
 
781
792
  # @param [Seahorse::Client::RequestContext] context
@@ -51,9 +51,12 @@ module Aws::RDS
51
51
  data[:auto_applied_after_date]
52
52
  end
53
53
 
54
- # The date when the maintenance action is automatically applied. The
55
- # maintenance action is applied to the resource on this date regardless
56
- # of the maintenance window for the resource.
54
+ # The date when the maintenance action is automatically applied.
55
+ #
56
+ # On this date, the maintenance action is applied to the resource as
57
+ # soon as possible, regardless of the maintenance window for the
58
+ # resource. There might be a delay of one or more days from this date
59
+ # before the maintenance action is applied.
57
60
  # @return [Time]
58
61
  def forced_apply_date
59
62
  data[:forced_apply_date]
@@ -12218,6 +12218,15 @@ module Aws::RDS
12218
12218
  #
12219
12219
  class InstanceQuotaExceededFault < Aws::EmptyStructure; end
12220
12220
 
12221
+ # The requested operation can't be performed because there aren't
12222
+ # enough available IP addresses in the proxy's subnets. Add more CIDR
12223
+ # blocks to the VPC or remove IP address that aren't required from the
12224
+ # subnets.
12225
+ #
12226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InsufficientAvailableIPsInSubnetFault AWS API Documentation
12227
+ #
12228
+ class InsufficientAvailableIPsInSubnetFault < Aws::EmptyStructure; end
12229
+
12221
12230
  # The DB cluster doesn't have enough capacity for the current
12222
12231
  # operation.
12223
12232
  #
@@ -15399,9 +15408,12 @@ module Aws::RDS
15399
15408
  # @return [Time]
15400
15409
  #
15401
15410
  # @!attribute [rw] forced_apply_date
15402
- # The date when the maintenance action is automatically applied. The
15403
- # maintenance action is applied to the resource on this date
15404
- # regardless of the maintenance window for the resource.
15411
+ # The date when the maintenance action is automatically applied.
15412
+ #
15413
+ # On this date, the maintenance action is applied to the resource as
15414
+ # soon as possible, regardless of the maintenance window for the
15415
+ # resource. There might be a delay of one or more days from this date
15416
+ # before the maintenance action is applied.
15405
15417
  # @return [Time]
15406
15418
  #
15407
15419
  # @!attribute [rw] opt_in_status
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.99.0
4
+ version: 1.100.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-09-21 00:00:00.000000000 Z
11
+ date: 2020-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4