aws-sdk-rds 1.71.0 → 1.72.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
  SHA1:
3
- metadata.gz: 376b11c4d4892dda0e7373c384753c065d2a9244
4
- data.tar.gz: dae9cec5fd693c18aba45adcdca7a34b3cf5d740
3
+ metadata.gz: e15eb8231b78a158891b55f25cdd2aeaaf587f89
4
+ data.tar.gz: b9dae8763e8150734f077e22797cb8116beded5a
5
5
  SHA512:
6
- metadata.gz: e598dbe1368b8778b4b29877ddd23f9957b5a49cb45f62d74ad822cfc462b726546192f19fd7396b05b78669c01a78ca2ce0b3b89b3a5ffc91fe8a3029d15022
7
- data.tar.gz: 3cce577af43ab728b204b9344e3ec73e5c927b681a3f5fd3fb929cde1623c86bf433e67b36deb79f4eedbd4abeffa6ac3c0209ebfb3627f1354d10fdfc376a31
6
+ metadata.gz: '08cf71cd91efebd1371f965c6ed6b7581b9891e2055b5562b04d9fcdb4b36fe336aef6228f436699b8301887671de8712377514bafea96af3d0228b41e33362c'
7
+ data.tar.gz: 0e0a8fe9c74c0b6ac8224d66e164f2661b0286924d2ade012efe069ea2ce7b4064e03d37373f5f835953203fc8eb643df6871ac658f0caec6459b3b8ca7ed990
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.71.0'
71
+ GEM_VERSION = '1.72.0'
72
72
 
73
73
  end
@@ -492,7 +492,8 @@ module Aws::RDS
492
492
  # @option params [required, String] :apply_action
493
493
  # The pending maintenance action to apply to this resource.
494
494
  #
495
- # Valid values: `system-update`, `db-upgrade`, `hardware-maintenance`
495
+ # Valid values: `system-update`, `db-upgrade`, `hardware-maintenance`,
496
+ # `ca-certificate-rotation`
496
497
  #
497
498
  # @option params [required, String] :opt_in_type
498
499
  # A value that specifies the type of opt-in request, or undoes an opt-in
@@ -2234,6 +2235,9 @@ module Aws::RDS
2234
2235
  # endpoint group. All other eligible instances are reachable through the
2235
2236
  # custom endpoint. Only relevant if the list of static members is empty.
2236
2237
  #
2238
+ # @option params [Array<Types::Tag>] :tags
2239
+ # The tags to be assigned to the Amazon RDS resource.
2240
+ #
2237
2241
  # @return [Types::DBClusterEndpoint] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2238
2242
  #
2239
2243
  # * {Types::DBClusterEndpoint#db_cluster_endpoint_identifier #db_cluster_endpoint_identifier} => String
@@ -2255,6 +2259,12 @@ module Aws::RDS
2255
2259
  # endpoint_type: "String", # required
2256
2260
  # static_members: ["String"],
2257
2261
  # excluded_members: ["String"],
2262
+ # tags: [
2263
+ # {
2264
+ # key: "String",
2265
+ # value: "String",
2266
+ # },
2267
+ # ],
2258
2268
  # })
2259
2269
  #
2260
2270
  # @example Response structure
@@ -3080,8 +3090,10 @@ module Aws::RDS
3080
3090
  # valid Iops values, see [Amazon RDS Provisioned IOPS Storage to Improve
3081
3091
  # Performance][1] in the *Amazon RDS User Guide*.
3082
3092
  #
3083
- # Constraints: Must be a multiple between 1 and 50 of the storage amount
3084
- # for the DB instance.
3093
+ # Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL DB instances,
3094
+ # must be a multiple between .5 and 50 of the storage amount for the DB
3095
+ # instance. For SQL Server DB instances, must be a multiple between 1
3096
+ # and 50 of the storage amount for the DB instance.
3085
3097
  #
3086
3098
  #
3087
3099
  #
@@ -10749,6 +10761,12 @@ module Aws::RDS
10749
10761
  # the `DescribeDBClusterParameters` action to verify that your DB
10750
10762
  # cluster parameter group has been created or modified.
10751
10763
  #
10764
+ # If the modified DB cluster parameter group is used by an Aurora
10765
+ # Serverless cluster, Aurora applies the update immediately. The cluster
10766
+ # restart might interrupt your workload. In that case, your application
10767
+ # must reopen any connections and retry any transactions that were
10768
+ # active when the parameter changes took effect.
10769
+ #
10752
10770
  # <note markdown="1"> This action only applies to Aurora DB clusters.
10753
10771
  #
10754
10772
  # </note>
@@ -17017,7 +17035,7 @@ module Aws::RDS
17017
17035
  params: params,
17018
17036
  config: config)
17019
17037
  context[:gem_name] = 'aws-sdk-rds'
17020
- context[:gem_version] = '1.71.0'
17038
+ context[:gem_version] = '1.72.0'
17021
17039
  Seahorse::Client::Request.new(handlers, context)
17022
17040
  end
17023
17041
 
@@ -663,6 +663,7 @@ module Aws::RDS
663
663
  CreateDBClusterEndpointMessage.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EndpointType"))
664
664
  CreateDBClusterEndpointMessage.add_member(:static_members, Shapes::ShapeRef.new(shape: StringList, location_name: "StaticMembers"))
665
665
  CreateDBClusterEndpointMessage.add_member(:excluded_members, Shapes::ShapeRef.new(shape: StringList, location_name: "ExcludedMembers"))
666
+ CreateDBClusterEndpointMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
666
667
  CreateDBClusterEndpointMessage.struct_class = Types::CreateDBClusterEndpointMessage
667
668
 
668
669
  CreateDBClusterMessage.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
@@ -1204,8 +1204,10 @@ module Aws::RDS
1204
1204
  # valid Iops values, see [Amazon RDS Provisioned IOPS Storage to Improve
1205
1205
  # Performance][1] in the *Amazon RDS User Guide*.
1206
1206
  #
1207
- # Constraints: Must be a multiple between 1 and 50 of the storage amount
1208
- # for the DB instance.
1207
+ # Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL DB instances,
1208
+ # must be a multiple between .5 and 50 of the storage amount for the DB
1209
+ # instance. For SQL Server DB instances, must be a multiple between 1
1210
+ # and 50 of the storage amount for the DB instance.
1209
1211
  #
1210
1212
  #
1211
1213
  #
@@ -1050,8 +1050,10 @@ module Aws::RDS
1050
1050
  # valid Iops values, see [Amazon RDS Provisioned IOPS Storage to Improve
1051
1051
  # Performance][1] in the *Amazon RDS User Guide*.
1052
1052
  #
1053
- # Constraints: Must be a multiple between 1 and 50 of the storage amount
1054
- # for the DB instance.
1053
+ # Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL DB instances,
1054
+ # must be a multiple between .5 and 50 of the storage amount for the DB
1055
+ # instance. For SQL Server DB instances, must be a multiple between 1
1056
+ # and 50 of the storage amount for the DB instance.
1055
1057
  #
1056
1058
  #
1057
1059
  #
@@ -306,7 +306,8 @@ module Aws::RDS
306
306
  # @!attribute [rw] apply_action
307
307
  # The pending maintenance action to apply to this resource.
308
308
  #
309
- # Valid values: `system-update`, `db-upgrade`, `hardware-maintenance`
309
+ # Valid values: `system-update`, `db-upgrade`, `hardware-maintenance`,
310
+ # `ca-certificate-rotation`
310
311
  # @return [String]
311
312
  #
312
313
  # @!attribute [rw] opt_in_type
@@ -1385,6 +1386,12 @@ module Aws::RDS
1385
1386
  # endpoint_type: "String", # required
1386
1387
  # static_members: ["String"],
1387
1388
  # excluded_members: ["String"],
1389
+ # tags: [
1390
+ # {
1391
+ # key: "String",
1392
+ # value: "String",
1393
+ # },
1394
+ # ],
1388
1395
  # }
1389
1396
  #
1390
1397
  # @!attribute [rw] db_cluster_identifier
@@ -1413,6 +1420,10 @@ module Aws::RDS
1413
1420
  # empty.
1414
1421
  # @return [Array<String>]
1415
1422
  #
1423
+ # @!attribute [rw] tags
1424
+ # The tags to be assigned to the Amazon RDS resource.
1425
+ # @return [Array<Types::Tag>]
1426
+ #
1416
1427
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterEndpointMessage AWS API Documentation
1417
1428
  #
1418
1429
  class CreateDBClusterEndpointMessage < Struct.new(
@@ -1420,7 +1431,8 @@ module Aws::RDS
1420
1431
  :db_cluster_endpoint_identifier,
1421
1432
  :endpoint_type,
1422
1433
  :static_members,
1423
- :excluded_members)
1434
+ :excluded_members,
1435
+ :tags)
1424
1436
  include Aws::Structure
1425
1437
  end
1426
1438
 
@@ -2697,8 +2709,10 @@ module Aws::RDS
2697
2709
  # valid Iops values, see [Amazon RDS Provisioned IOPS Storage to
2698
2710
  # Improve Performance][1] in the *Amazon RDS User Guide*.
2699
2711
  #
2700
- # Constraints: Must be a multiple between 1 and 50 of the storage
2701
- # amount for the DB instance.
2712
+ # Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL DB
2713
+ # instances, must be a multiple between .5 and 50 of the storage
2714
+ # amount for the DB instance. For SQL Server DB instances, must be a
2715
+ # multiple between 1 and 50 of the storage amount for the DB instance.
2702
2716
  #
2703
2717
  #
2704
2718
  #
@@ -12914,8 +12928,8 @@ module Aws::RDS
12914
12928
  #
12915
12929
  # @!attribute [rw] action
12916
12930
  # The type of pending maintenance action that is available for the
12917
- # resource. Valid actions are `system-update`, `db-upgrade`, and
12918
- # `hardware-maintenance`.
12931
+ # resource. Valid actions are `system-update`, `db-upgrade`,
12932
+ # `hardware-maintenance`, and `ca-certificate-rotation`.
12919
12933
  # @return [String]
12920
12934
  #
12921
12935
  # @!attribute [rw] auto_applied_after_date
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.71.0
4
+ version: 1.72.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: 2019-11-18 00:00:00.000000000 Z
11
+ date: 2019-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4