aws-sdk-rds 1.60.0 → 1.61.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +35 -8
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +28 -0
- data/lib/aws-sdk-rds/db_instance.rb +2 -2
- data/lib/aws-sdk-rds/types.rb +40 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0278a9e82010c58b53fe60927549f466b3e4aa2
|
4
|
+
data.tar.gz: 032d1e779216d64e914636313451721839252870
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cabd8e00d4a643ba40c0d0596dc2f54ab24c90ecd451f5ca976f2fa7c9518d677a7aebcf4e0146bfd82a9337993cd25146fc3e4ddbb3f50e9f1ab0b711c7d16b
|
7
|
+
data.tar.gz: af98ff40e43e8c059109bd5b764422e2fa8276aebeb8a743866c1e56fe69197c5d11ed5f2039d83cd20917e390560e4ea6a8e4028a8d0e855cd9a9ce0c43947b
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -9648,11 +9648,8 @@ module Aws::RDS
|
|
9648
9648
|
# The DB cluster identifier for the cluster being modified. This
|
9649
9649
|
# parameter is not case-sensitive.
|
9650
9650
|
#
|
9651
|
-
# Constraints:
|
9652
|
-
#
|
9653
|
-
# * Must match the identifier of an existing DBCluster.
|
9654
|
-
#
|
9655
|
-
# ^
|
9651
|
+
# Constraints: This identifier must match the identifier of an existing
|
9652
|
+
# DB cluster.
|
9656
9653
|
#
|
9657
9654
|
# @option params [String] :new_db_cluster_identifier
|
9658
9655
|
# The new DB cluster identifier for the DB cluster when renaming a DB
|
@@ -9804,6 +9801,34 @@ module Aws::RDS
|
|
9804
9801
|
#
|
9805
9802
|
# For a list of valid engine versions, use DescribeDBEngineVersions.
|
9806
9803
|
#
|
9804
|
+
# @option params [Boolean] :allow_major_version_upgrade
|
9805
|
+
# A value that indicates whether major version upgrades are allowed.
|
9806
|
+
#
|
9807
|
+
# Constraints: You must allow major version upgrades when specifying a
|
9808
|
+
# value for the `EngineVersion` parameter that is a different major
|
9809
|
+
# version than the DB cluster's current version.
|
9810
|
+
#
|
9811
|
+
# @option params [String] :db_instance_parameter_group_name
|
9812
|
+
# The name of the DB parameter group to apply to all instances of the DB
|
9813
|
+
# cluster.
|
9814
|
+
#
|
9815
|
+
# <note markdown="1"> When you apply a parameter group using the
|
9816
|
+
# `DBInstanceParameterGroupName` parameter, the DB cluster isn't
|
9817
|
+
# rebooted automatically. Also, parameter changes aren't applied during
|
9818
|
+
# the next maintenance window but instead are applied immediately.
|
9819
|
+
#
|
9820
|
+
# </note>
|
9821
|
+
#
|
9822
|
+
# Default: The existing name setting
|
9823
|
+
#
|
9824
|
+
# Constraints:
|
9825
|
+
#
|
9826
|
+
# * The DB parameter group must be in the same DB parameter group family
|
9827
|
+
# as this DB cluster.
|
9828
|
+
#
|
9829
|
+
# * The `DBInstanceParameterGroupName` parameter is only valid in
|
9830
|
+
# combination with the `AllowMajorVersionUpgrade` parameter.
|
9831
|
+
#
|
9807
9832
|
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
9808
9833
|
# The scaling properties of the DB cluster. You can only modify scaling
|
9809
9834
|
# properties for DB clusters in `serverless` DB engine mode.
|
@@ -9879,6 +9904,8 @@ module Aws::RDS
|
|
9879
9904
|
# disable_log_types: ["String"],
|
9880
9905
|
# },
|
9881
9906
|
# engine_version: "String",
|
9907
|
+
# allow_major_version_upgrade: false,
|
9908
|
+
# db_instance_parameter_group_name: "String",
|
9882
9909
|
# scaling_configuration: {
|
9883
9910
|
# min_capacity: 1,
|
9884
9911
|
# max_capacity: 1,
|
@@ -10408,8 +10435,8 @@ module Aws::RDS
|
|
10408
10435
|
# Changing this setting doesn't result in an outage. The parameter
|
10409
10436
|
# group name itself is changed immediately, but the actual parameter
|
10410
10437
|
# changes are not applied until you reboot the instance without
|
10411
|
-
# failover.
|
10412
|
-
# parameter changes
|
10438
|
+
# failover. In this case, the DB instance isn't rebooted automatically
|
10439
|
+
# and the parameter changes isn't applied during the next maintenance
|
10413
10440
|
# window.
|
10414
10441
|
#
|
10415
10442
|
# Default: Uses existing setting
|
@@ -16179,7 +16206,7 @@ module Aws::RDS
|
|
16179
16206
|
params: params,
|
16180
16207
|
config: config)
|
16181
16208
|
context[:gem_name] = 'aws-sdk-rds'
|
16182
|
-
context[:gem_version] = '1.
|
16209
|
+
context[:gem_version] = '1.61.0'
|
16183
16210
|
Seahorse::Client::Request.new(handlers, context)
|
16184
16211
|
end
|
16185
16212
|
|
@@ -1755,6 +1755,8 @@ module Aws::RDS
|
|
1755
1755
|
ModifyDBClusterMessage.add_member(:backtrack_window, Shapes::ShapeRef.new(shape: LongOptional, location_name: "BacktrackWindow"))
|
1756
1756
|
ModifyDBClusterMessage.add_member(:cloudwatch_logs_export_configuration, Shapes::ShapeRef.new(shape: CloudwatchLogsExportConfiguration, location_name: "CloudwatchLogsExportConfiguration"))
|
1757
1757
|
ModifyDBClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
1758
|
+
ModifyDBClusterMessage.add_member(:allow_major_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowMajorVersionUpgrade"))
|
1759
|
+
ModifyDBClusterMessage.add_member(:db_instance_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceParameterGroupName"))
|
1758
1760
|
ModifyDBClusterMessage.add_member(:scaling_configuration, Shapes::ShapeRef.new(shape: ScalingConfiguration, location_name: "ScalingConfiguration"))
|
1759
1761
|
ModifyDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
1760
1762
|
ModifyDBClusterMessage.add_member(:enable_http_endpoint, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableHttpEndpoint"))
|
@@ -977,6 +977,8 @@ module Aws::RDS
|
|
977
977
|
# disable_log_types: ["String"],
|
978
978
|
# },
|
979
979
|
# engine_version: "String",
|
980
|
+
# allow_major_version_upgrade: false,
|
981
|
+
# db_instance_parameter_group_name: "String",
|
980
982
|
# scaling_configuration: {
|
981
983
|
# min_capacity: 1,
|
982
984
|
# max_capacity: 1,
|
@@ -1125,6 +1127,32 @@ module Aws::RDS
|
|
1125
1127
|
# is enabled.
|
1126
1128
|
#
|
1127
1129
|
# For a list of valid engine versions, use DescribeDBEngineVersions.
|
1130
|
+
# @option options [Boolean] :allow_major_version_upgrade
|
1131
|
+
# A value that indicates whether major version upgrades are allowed.
|
1132
|
+
#
|
1133
|
+
# Constraints: You must allow major version upgrades when specifying a
|
1134
|
+
# value for the `EngineVersion` parameter that is a different major
|
1135
|
+
# version than the DB cluster's current version.
|
1136
|
+
# @option options [String] :db_instance_parameter_group_name
|
1137
|
+
# The name of the DB parameter group to apply to all instances of the DB
|
1138
|
+
# cluster.
|
1139
|
+
#
|
1140
|
+
# <note markdown="1"> When you apply a parameter group using the
|
1141
|
+
# `DBInstanceParameterGroupName` parameter, the DB cluster isn't
|
1142
|
+
# rebooted automatically. Also, parameter changes aren't applied during
|
1143
|
+
# the next maintenance window but instead are applied immediately.
|
1144
|
+
#
|
1145
|
+
# </note>
|
1146
|
+
#
|
1147
|
+
# Default: The existing name setting
|
1148
|
+
#
|
1149
|
+
# Constraints:
|
1150
|
+
#
|
1151
|
+
# * The DB parameter group must be in the same DB parameter group family
|
1152
|
+
# as this DB cluster.
|
1153
|
+
#
|
1154
|
+
# * The `DBInstanceParameterGroupName` parameter is only valid in
|
1155
|
+
# combination with the `AllowMajorVersionUpgrade` parameter.
|
1128
1156
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
1129
1157
|
# The scaling properties of the DB cluster. You can only modify scaling
|
1130
1158
|
# properties for DB clusters in `serverless` DB engine mode.
|
@@ -2038,8 +2038,8 @@ module Aws::RDS
|
|
2038
2038
|
# Changing this setting doesn't result in an outage. The parameter
|
2039
2039
|
# group name itself is changed immediately, but the actual parameter
|
2040
2040
|
# changes are not applied until you reboot the instance without
|
2041
|
-
# failover.
|
2042
|
-
# parameter changes
|
2041
|
+
# failover. In this case, the DB instance isn't rebooted automatically
|
2042
|
+
# and the parameter changes isn't applied during the next maintenance
|
2043
2043
|
# window.
|
2044
2044
|
#
|
2045
2045
|
# Default: Uses existing setting
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -9830,6 +9830,8 @@ module Aws::RDS
|
|
9830
9830
|
# disable_log_types: ["String"],
|
9831
9831
|
# },
|
9832
9832
|
# engine_version: "String",
|
9833
|
+
# allow_major_version_upgrade: false,
|
9834
|
+
# db_instance_parameter_group_name: "String",
|
9833
9835
|
# scaling_configuration: {
|
9834
9836
|
# min_capacity: 1,
|
9835
9837
|
# max_capacity: 1,
|
@@ -9846,11 +9848,8 @@ module Aws::RDS
|
|
9846
9848
|
# The DB cluster identifier for the cluster being modified. This
|
9847
9849
|
# parameter is not case-sensitive.
|
9848
9850
|
#
|
9849
|
-
# Constraints:
|
9850
|
-
#
|
9851
|
-
# * Must match the identifier of an existing DBCluster.
|
9852
|
-
#
|
9853
|
-
# ^
|
9851
|
+
# Constraints: This identifier must match the identifier of an
|
9852
|
+
# existing DB cluster.
|
9854
9853
|
# @return [String]
|
9855
9854
|
#
|
9856
9855
|
# @!attribute [rw] new_db_cluster_identifier
|
@@ -10020,6 +10019,37 @@ module Aws::RDS
|
|
10020
10019
|
# For a list of valid engine versions, use DescribeDBEngineVersions.
|
10021
10020
|
# @return [String]
|
10022
10021
|
#
|
10022
|
+
# @!attribute [rw] allow_major_version_upgrade
|
10023
|
+
# A value that indicates whether major version upgrades are allowed.
|
10024
|
+
#
|
10025
|
+
# Constraints: You must allow major version upgrades when specifying a
|
10026
|
+
# value for the `EngineVersion` parameter that is a different major
|
10027
|
+
# version than the DB cluster's current version.
|
10028
|
+
# @return [Boolean]
|
10029
|
+
#
|
10030
|
+
# @!attribute [rw] db_instance_parameter_group_name
|
10031
|
+
# The name of the DB parameter group to apply to all instances of the
|
10032
|
+
# DB cluster.
|
10033
|
+
#
|
10034
|
+
# <note markdown="1"> When you apply a parameter group using the
|
10035
|
+
# `DBInstanceParameterGroupName` parameter, the DB cluster isn't
|
10036
|
+
# rebooted automatically. Also, parameter changes aren't applied
|
10037
|
+
# during the next maintenance window but instead are applied
|
10038
|
+
# immediately.
|
10039
|
+
#
|
10040
|
+
# </note>
|
10041
|
+
#
|
10042
|
+
# Default: The existing name setting
|
10043
|
+
#
|
10044
|
+
# Constraints:
|
10045
|
+
#
|
10046
|
+
# * The DB parameter group must be in the same DB parameter group
|
10047
|
+
# family as this DB cluster.
|
10048
|
+
#
|
10049
|
+
# * The `DBInstanceParameterGroupName` parameter is only valid in
|
10050
|
+
# combination with the `AllowMajorVersionUpgrade` parameter.
|
10051
|
+
# @return [String]
|
10052
|
+
#
|
10023
10053
|
# @!attribute [rw] scaling_configuration
|
10024
10054
|
# The scaling properties of the DB cluster. You can only modify
|
10025
10055
|
# scaling properties for DB clusters in `serverless` DB engine mode.
|
@@ -10072,6 +10102,8 @@ module Aws::RDS
|
|
10072
10102
|
:backtrack_window,
|
10073
10103
|
:cloudwatch_logs_export_configuration,
|
10074
10104
|
:engine_version,
|
10105
|
+
:allow_major_version_upgrade,
|
10106
|
+
:db_instance_parameter_group_name,
|
10075
10107
|
:scaling_configuration,
|
10076
10108
|
:deletion_protection,
|
10077
10109
|
:enable_http_endpoint,
|
@@ -10422,9 +10454,9 @@ module Aws::RDS
|
|
10422
10454
|
# Changing this setting doesn't result in an outage. The parameter
|
10423
10455
|
# group name itself is changed immediately, but the actual parameter
|
10424
10456
|
# changes are not applied until you reboot the instance without
|
10425
|
-
# failover.
|
10426
|
-
# parameter changes
|
10427
|
-
# window.
|
10457
|
+
# failover. In this case, the DB instance isn't rebooted
|
10458
|
+
# automatically and the parameter changes isn't applied during the
|
10459
|
+
# next maintenance window.
|
10428
10460
|
#
|
10429
10461
|
# Default: Uses existing setting
|
10430
10462
|
#
|
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.
|
4
|
+
version: 1.61.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
|
+
date: 2019-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '3'
|
34
34
|
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 3.
|
36
|
+
version: 3.58.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3'
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 3.
|
46
|
+
version: 3.58.0
|
47
47
|
description: Official AWS Ruby gem for Amazon Relational Database Service (Amazon
|
48
48
|
RDS). This gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|