aws-sdk-rds 1.195.0 → 1.196.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/certificate.rb +2 -1
- data/lib/aws-sdk-rds/client.rb +320 -319
- data/lib/aws-sdk-rds/db_cluster.rb +37 -38
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +3 -4
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +45 -50
- data/lib/aws-sdk-rds/db_engine.rb +12 -15
- data/lib/aws-sdk-rds/db_engine_version.rb +14 -14
- data/lib/aws-sdk-rds/db_instance.rb +101 -104
- data/lib/aws-sdk-rds/db_parameter_group.rb +3 -3
- data/lib/aws-sdk-rds/db_snapshot.rb +33 -30
- data/lib/aws-sdk-rds/event_subscription.rb +5 -5
- data/lib/aws-sdk-rds/option_group.rb +2 -3
- data/lib/aws-sdk-rds/option_group_option.rb +2 -2
- data/lib/aws-sdk-rds/parameter.rb +2 -2
- data/lib/aws-sdk-rds/reserved_db_instance.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +30 -32
- data/lib/aws-sdk-rds/types.rb +494 -494
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -402,9 +402,8 @@ module Aws::RDS
|
|
402
402
|
# @option options [Array<String>] :options_to_remove
|
403
403
|
# Options in this list are removed from the option group.
|
404
404
|
# @option options [Boolean] :apply_immediately
|
405
|
-
#
|
406
|
-
#
|
407
|
-
# the option group.
|
405
|
+
# Specifies whether to apply the change immediately or during the next
|
406
|
+
# maintenance window for each instance associated with the option group.
|
408
407
|
# @return [OptionGroup]
|
409
408
|
def modify(options = {})
|
410
409
|
options = options.merge(option_group_name: @name)
|
@@ -58,7 +58,7 @@ module Aws::RDS
|
|
58
58
|
data[:minimum_required_minor_engine_version]
|
59
59
|
end
|
60
60
|
|
61
|
-
#
|
61
|
+
# Indicates whether the option requires a port.
|
62
62
|
# @return [Boolean]
|
63
63
|
def port_required
|
64
64
|
data[:port_required]
|
@@ -137,7 +137,7 @@ module Aws::RDS
|
|
137
137
|
data[:option_group_option_versions]
|
138
138
|
end
|
139
139
|
|
140
|
-
#
|
140
|
+
# Indicates whether the option can be copied across Amazon Web Services
|
141
141
|
# accounts.
|
142
142
|
# @return [Boolean]
|
143
143
|
def copyable_cross_account
|
@@ -35,7 +35,7 @@ module Aws::RDS
|
|
35
35
|
end
|
36
36
|
alias :parameter_name :name
|
37
37
|
|
38
|
-
#
|
38
|
+
# The value of the parameter.
|
39
39
|
# @return [String]
|
40
40
|
def parameter_value
|
41
41
|
data[:parameter_value]
|
@@ -47,7 +47,7 @@ module Aws::RDS
|
|
47
47
|
data[:description]
|
48
48
|
end
|
49
49
|
|
50
|
-
#
|
50
|
+
# The source of the parameter value.
|
51
51
|
# @return [String]
|
52
52
|
def source
|
53
53
|
data[:source]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1346,7 +1346,8 @@ module Aws::RDS
|
|
1346
1346
|
# * Can't be specified if `ManageMasterUserPassword` is turned on.
|
1347
1347
|
#
|
1348
1348
|
# * Can include any printable ASCII character except "/", """, or
|
1349
|
-
# "@".
|
1349
|
+
# "@". For RDS for Oracle, can't include the "&" (ampersand)
|
1350
|
+
# or the "'" (single quotes) character.
|
1350
1351
|
#
|
1351
1352
|
# Length Constraints:
|
1352
1353
|
#
|
@@ -2373,7 +2374,7 @@ module Aws::RDS
|
|
2373
2374
|
# parameter to `db-instance`. For RDS Proxy events, specify `db-proxy`.
|
2374
2375
|
# If this value isn't specified, all events are returned.
|
2375
2376
|
#
|
2376
|
-
# Valid
|
2377
|
+
# Valid Values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
2377
2378
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
|
2378
2379
|
# `db-proxy`
|
2379
2380
|
# @option options [Array<String>] :event_categories
|
@@ -2420,8 +2421,8 @@ module Aws::RDS
|
|
2420
2421
|
# * If the source type is an RDS Proxy, a `DBProxyName` value must be
|
2421
2422
|
# supplied.
|
2422
2423
|
# @option options [Boolean] :enabled
|
2423
|
-
#
|
2424
|
-
#
|
2424
|
+
# Specifies whether to activate the subscription. If the event
|
2425
|
+
# notification subscription isn't activated, the subscription is
|
2425
2426
|
# created but not active.
|
2426
2427
|
# @option options [Array<Types::Tag>] :tags
|
2427
2428
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -2767,7 +2768,7 @@ module Aws::RDS
|
|
2767
2768
|
# })
|
2768
2769
|
# @param [Hash] options ({})
|
2769
2770
|
# @option options [String] :engine
|
2770
|
-
# The database engine to return.
|
2771
|
+
# The database engine to return version details for.
|
2771
2772
|
#
|
2772
2773
|
# Valid Values:
|
2773
2774
|
#
|
@@ -2799,7 +2800,7 @@ module Aws::RDS
|
|
2799
2800
|
#
|
2800
2801
|
# * `sqlserver-web`
|
2801
2802
|
# @option options [String] :engine_version
|
2802
|
-
#
|
2803
|
+
# A specific database engine version to return details for.
|
2803
2804
|
#
|
2804
2805
|
# Example: `5.1.49`
|
2805
2806
|
# @option options [String] :db_parameter_group_family
|
@@ -2808,7 +2809,7 @@ module Aws::RDS
|
|
2808
2809
|
#
|
2809
2810
|
# Constraints:
|
2810
2811
|
#
|
2811
|
-
# * If supplied, must match an existing
|
2812
|
+
# * If supplied, must match an existing DB parameter group family.
|
2812
2813
|
#
|
2813
2814
|
# ^
|
2814
2815
|
# @option options [Array<Types::Filter>] :filters
|
@@ -2849,34 +2850,31 @@ module Aws::RDS
|
|
2849
2850
|
#
|
2850
2851
|
# * `deprecated`
|
2851
2852
|
# @option options [Boolean] :default_only
|
2852
|
-
#
|
2853
|
-
#
|
2853
|
+
# Specifies whether to return only the default version of the specified
|
2854
|
+
# engine or the engine and major version combination.
|
2854
2855
|
# @option options [Boolean] :list_supported_character_sets
|
2855
|
-
#
|
2856
|
-
#
|
2856
|
+
# Specifies whether to list the supported character sets for each engine
|
2857
|
+
# version.
|
2857
2858
|
#
|
2858
2859
|
# If this parameter is enabled and the requested engine supports the
|
2859
2860
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
2860
2861
|
# includes a list of supported character sets for each engine version.
|
2861
2862
|
#
|
2862
2863
|
# For RDS Custom, the default is not to list supported character sets.
|
2863
|
-
# If you
|
2864
|
-
# no results.
|
2864
|
+
# If you enable this parameter, RDS Custom returns no results.
|
2865
2865
|
# @option options [Boolean] :list_supported_timezones
|
2866
|
-
#
|
2867
|
-
#
|
2866
|
+
# Specifies whether to list the supported time zones for each engine
|
2867
|
+
# version.
|
2868
2868
|
#
|
2869
2869
|
# If this parameter is enabled and the requested engine supports the
|
2870
2870
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
2871
2871
|
# list of supported time zones for each engine version.
|
2872
2872
|
#
|
2873
2873
|
# For RDS Custom, the default is not to list supported time zones. If
|
2874
|
-
# you
|
2875
|
-
# results.
|
2874
|
+
# you enable this parameter, RDS Custom returns no results.
|
2876
2875
|
# @option options [Boolean] :include_all
|
2877
|
-
#
|
2878
|
-
# available
|
2879
|
-
# versions.
|
2876
|
+
# Specifies whether to also list the engine versions that aren't
|
2877
|
+
# available. The default is to list only available engine versions.
|
2880
2878
|
# @return [DBEngineVersion::Collection]
|
2881
2879
|
def db_engine_versions(options = {})
|
2882
2880
|
batches = Enumerator.new do |y|
|
@@ -3175,10 +3173,10 @@ module Aws::RDS
|
|
3175
3173
|
#
|
3176
3174
|
# * `engine` - Accepts names of database engines.
|
3177
3175
|
# @option options [Boolean] :include_shared
|
3178
|
-
#
|
3179
|
-
#
|
3180
|
-
#
|
3181
|
-
#
|
3176
|
+
# Specifies whether to include shared manual DB cluster snapshots from
|
3177
|
+
# other Amazon Web Services accounts that this Amazon Web Services
|
3178
|
+
# account has been given permission to copy or restore. By default,
|
3179
|
+
# these snapshots are not included.
|
3182
3180
|
#
|
3183
3181
|
# You can give an Amazon Web Services account permission to restore a
|
3184
3182
|
# manual DB snapshot from another Amazon Web Services account by using
|
@@ -3186,9 +3184,9 @@ module Aws::RDS
|
|
3186
3184
|
#
|
3187
3185
|
# This setting doesn't apply to RDS Custom.
|
3188
3186
|
# @option options [Boolean] :include_public
|
3189
|
-
#
|
3190
|
-
#
|
3191
|
-
#
|
3187
|
+
# Specifies whether to include manual DB cluster snapshots that are
|
3188
|
+
# public and can be copied or restored by any Amazon Web Services
|
3189
|
+
# account. By default, the public snapshots are not included.
|
3192
3190
|
#
|
3193
3191
|
# You can share a manual DB snapshot as public by using the
|
3194
3192
|
# ModifyDBSnapshotAttribute API.
|
@@ -3289,7 +3287,7 @@ module Aws::RDS
|
|
3289
3287
|
# The type of source that is generating the events. For RDS Proxy
|
3290
3288
|
# events, specify `db-proxy`.
|
3291
3289
|
#
|
3292
|
-
# Valid
|
3290
|
+
# Valid Values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
3293
3291
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
|
3294
3292
|
# `db-proxy`
|
3295
3293
|
# @option options [Array<Types::Filter>] :filters
|
@@ -3606,8 +3604,8 @@ module Aws::RDS
|
|
3606
3604
|
#
|
3607
3605
|
# Valid Values: `"Partial Upfront" | "All Upfront" | "No Upfront" `
|
3608
3606
|
# @option options [Boolean] :multi_az
|
3609
|
-
#
|
3610
|
-
#
|
3607
|
+
# Specifies whether to show only those reservations that support
|
3608
|
+
# Multi-AZ.
|
3611
3609
|
# @option options [String] :lease_id
|
3612
3610
|
# The lease identifier filter value. Specify this parameter to show only
|
3613
3611
|
# the reservation that matches the specified lease ID.
|
@@ -3693,8 +3691,8 @@ module Aws::RDS
|
|
3693
3691
|
#
|
3694
3692
|
# Valid Values: `"Partial Upfront" | "All Upfront" | "No Upfront" `
|
3695
3693
|
# @option options [Boolean] :multi_az
|
3696
|
-
#
|
3697
|
-
#
|
3694
|
+
# Specifies whether to show only those reservations that support
|
3695
|
+
# Multi-AZ.
|
3698
3696
|
# @option options [Array<Types::Filter>] :filters
|
3699
3697
|
# This parameter isn't currently supported.
|
3700
3698
|
# @return [ReservedDBInstancesOffering::Collection]
|