aws-sdk-rds 1.212.0 → 1.213.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +450 -7
- data/lib/aws-sdk-rds/client_api.rb +132 -0
- data/lib/aws-sdk-rds/db_cluster.rb +18 -0
- data/lib/aws-sdk-rds/endpoints.rb +70 -0
- data/lib/aws-sdk-rds/errors.rb +66 -0
- data/lib/aws-sdk-rds/event_subscription.rb +12 -2
- data/lib/aws-sdk-rds/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-rds/resource.rb +18 -2
- data/lib/aws-sdk-rds/types.rb +362 -4
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2043,6 +2043,13 @@ module Aws::RDS
|
|
2043
2043
|
# Specify the DB instance class for the databases in the green
|
2044
2044
|
# environment.
|
2045
2045
|
#
|
2046
|
+
# This parameter only applies to RDS DB instances, because DB instances
|
2047
|
+
# within an Aurora DB cluster can have multiple different instance
|
2048
|
+
# classes. If you're creating a blue/green deployment from an Aurora DB
|
2049
|
+
# cluster, don't specify this parameter. After the green environment is
|
2050
|
+
# created, you can individually modify the instance classes of the DB
|
2051
|
+
# instances within the green DB cluster.
|
2052
|
+
#
|
2046
2053
|
# @option params [Boolean] :upgrade_target_storage_config
|
2047
2054
|
# Whether to upgrade the storage file system configuration on the green
|
2048
2055
|
# database. This option migrates the green DB instance from the older
|
@@ -3217,6 +3224,12 @@ module Aws::RDS
|
|
3217
3224
|
# If you specify a retention period that isn't valid, such as `94`,
|
3218
3225
|
# Amazon RDS issues an error.
|
3219
3226
|
#
|
3227
|
+
# @option params [Boolean] :enable_limitless_database
|
3228
|
+
# Specifies whether to enable Aurora Limitless Database. You must enable
|
3229
|
+
# Aurora Limitless Database to create a DB shard group.
|
3230
|
+
#
|
3231
|
+
# Valid for: Aurora DB clusters only
|
3232
|
+
#
|
3220
3233
|
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
3221
3234
|
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
3222
3235
|
# cluster.
|
@@ -3504,6 +3517,7 @@ module Aws::RDS
|
|
3504
3517
|
# enable_performance_insights: false,
|
3505
3518
|
# performance_insights_kms_key_id: "String",
|
3506
3519
|
# performance_insights_retention_period: 1,
|
3520
|
+
# enable_limitless_database: false,
|
3507
3521
|
# serverless_v2_scaling_configuration: {
|
3508
3522
|
# min_capacity: 1.0,
|
3509
3523
|
# max_capacity: 1.0,
|
@@ -3647,6 +3661,8 @@ module Aws::RDS
|
|
3647
3661
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
3648
3662
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
3649
3663
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
3664
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
3665
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
3650
3666
|
#
|
3651
3667
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
3652
3668
|
#
|
@@ -7083,6 +7099,111 @@ module Aws::RDS
|
|
7083
7099
|
req.send_request(options)
|
7084
7100
|
end
|
7085
7101
|
|
7102
|
+
# Creates a new DB shard group for Aurora Limitless Database. You must
|
7103
|
+
# enable Aurora Limitless Database to create a DB shard group.
|
7104
|
+
#
|
7105
|
+
# Valid for: Aurora DB clusters only
|
7106
|
+
#
|
7107
|
+
# @option params [required, String] :db_shard_group_identifier
|
7108
|
+
# The name of the DB shard group.
|
7109
|
+
#
|
7110
|
+
# @option params [required, String] :db_cluster_identifier
|
7111
|
+
# The name of the primary DB cluster for the DB shard group.
|
7112
|
+
#
|
7113
|
+
# @option params [Integer] :compute_redundancy
|
7114
|
+
# Specifies whether to create standby instances for the DB shard group.
|
7115
|
+
# Valid values are the following:
|
7116
|
+
#
|
7117
|
+
# * 0 - Creates a single, primary DB instance for each physical shard.
|
7118
|
+
# This is the default value, and the only one supported for the
|
7119
|
+
# preview.
|
7120
|
+
#
|
7121
|
+
# * 1 - Creates a primary DB instance and a standby instance in a
|
7122
|
+
# different Availability Zone (AZ) for each physical shard.
|
7123
|
+
#
|
7124
|
+
# * 2 - Creates a primary DB instance and two standby instances in
|
7125
|
+
# different AZs for each physical shard.
|
7126
|
+
#
|
7127
|
+
# @option params [required, Float] :max_acu
|
7128
|
+
# The maximum capacity of the DB shard group in Aurora capacity units
|
7129
|
+
# (ACUs).
|
7130
|
+
#
|
7131
|
+
# @option params [Boolean] :publicly_accessible
|
7132
|
+
# Specifies whether the DB shard group is publicly accessible.
|
7133
|
+
#
|
7134
|
+
# When the DB shard group is publicly accessible, its Domain Name System
|
7135
|
+
# (DNS) endpoint resolves to the private IP address from within the DB
|
7136
|
+
# shard group's virtual private cloud (VPC). It resolves to the public
|
7137
|
+
# IP address from outside of the DB shard group's VPC. Access to the DB
|
7138
|
+
# shard group is ultimately controlled by the security group it uses.
|
7139
|
+
# That public access is not permitted if the security group assigned to
|
7140
|
+
# the DB shard group doesn't permit it.
|
7141
|
+
#
|
7142
|
+
# When the DB shard group isn't publicly accessible, it is an internal
|
7143
|
+
# DB shard group with a DNS name that resolves to a private IP address.
|
7144
|
+
#
|
7145
|
+
# Default: The default behavior varies depending on whether
|
7146
|
+
# `DBSubnetGroupName` is specified.
|
7147
|
+
#
|
7148
|
+
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
7149
|
+
# isn't specified, the following applies:
|
7150
|
+
#
|
7151
|
+
# * If the default VPC in the target Region doesn’t have an internet
|
7152
|
+
# gateway attached to it, the DB shard group is private.
|
7153
|
+
#
|
7154
|
+
# * If the default VPC in the target Region has an internet gateway
|
7155
|
+
# attached to it, the DB shard group is public.
|
7156
|
+
#
|
7157
|
+
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
7158
|
+
# specified, the following applies:
|
7159
|
+
#
|
7160
|
+
# * If the subnets are part of a VPC that doesn’t have an internet
|
7161
|
+
# gateway attached to it, the DB shard group is private.
|
7162
|
+
#
|
7163
|
+
# * If the subnets are part of a VPC that has an internet gateway
|
7164
|
+
# attached to it, the DB shard group is public.
|
7165
|
+
#
|
7166
|
+
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7167
|
+
#
|
7168
|
+
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
7169
|
+
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
7170
|
+
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
7171
|
+
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
7172
|
+
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
7173
|
+
# * {Types::DBShardGroup#status #status} => String
|
7174
|
+
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
7175
|
+
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
7176
|
+
#
|
7177
|
+
# @example Request syntax with placeholder values
|
7178
|
+
#
|
7179
|
+
# resp = client.create_db_shard_group({
|
7180
|
+
# db_shard_group_identifier: "String", # required
|
7181
|
+
# db_cluster_identifier: "String", # required
|
7182
|
+
# compute_redundancy: 1,
|
7183
|
+
# max_acu: 1.0, # required
|
7184
|
+
# publicly_accessible: false,
|
7185
|
+
# })
|
7186
|
+
#
|
7187
|
+
# @example Response structure
|
7188
|
+
#
|
7189
|
+
# resp.db_shard_group_resource_id #=> String
|
7190
|
+
# resp.db_shard_group_identifier #=> String
|
7191
|
+
# resp.db_cluster_identifier #=> String
|
7192
|
+
# resp.max_acu #=> Float
|
7193
|
+
# resp.compute_redundancy #=> Integer
|
7194
|
+
# resp.status #=> String
|
7195
|
+
# resp.publicly_accessible #=> Boolean
|
7196
|
+
# resp.endpoint #=> String
|
7197
|
+
#
|
7198
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroup AWS API Documentation
|
7199
|
+
#
|
7200
|
+
# @overload create_db_shard_group(params = {})
|
7201
|
+
# @param [Hash] params ({})
|
7202
|
+
def create_db_shard_group(params = {}, options = {})
|
7203
|
+
req = build_request(:create_db_shard_group, params)
|
7204
|
+
req.send_request(options)
|
7205
|
+
end
|
7206
|
+
|
7086
7207
|
# Creates a snapshot of a DB instance. The source DB instance must be in
|
7087
7208
|
# the `available` or `storage-optimization` state.
|
7088
7209
|
#
|
@@ -7389,8 +7510,18 @@ module Aws::RDS
|
|
7389
7510
|
#
|
7390
7511
|
# @option params [required, String] :sns_topic_arn
|
7391
7512
|
# The Amazon Resource Name (ARN) of the SNS topic created for event
|
7392
|
-
# notification.
|
7393
|
-
# and subscribe to it.
|
7513
|
+
# notification. SNS automatically creates the ARN when you create a
|
7514
|
+
# topic and subscribe to it.
|
7515
|
+
#
|
7516
|
+
# <note markdown="1"> RDS doesn't support FIFO (first in, first out) topics. For more
|
7517
|
+
# information, see [Message ordering and deduplication (FIFO topics)][1]
|
7518
|
+
# in the *Amazon Simple Notification Service Developer Guide*.
|
7519
|
+
#
|
7520
|
+
# </note>
|
7521
|
+
#
|
7522
|
+
#
|
7523
|
+
#
|
7524
|
+
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
7394
7525
|
#
|
7395
7526
|
# @option params [String] :source_type
|
7396
7527
|
# The type of source that is generating the events. For example, if you
|
@@ -7755,6 +7886,29 @@ module Aws::RDS
|
|
7755
7886
|
# * {Types::Integration#create_time #create_time} => Time
|
7756
7887
|
# * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
|
7757
7888
|
#
|
7889
|
+
#
|
7890
|
+
# @example Example: To create a zero-ETL integration
|
7891
|
+
#
|
7892
|
+
# # The following example creates a zero-ETL integration with Amazon Redshift.
|
7893
|
+
#
|
7894
|
+
# resp = client.create_integration({
|
7895
|
+
# integration_name: "my-integration",
|
7896
|
+
# source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
7897
|
+
# target_arn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8",
|
7898
|
+
# })
|
7899
|
+
#
|
7900
|
+
# resp.to_h outputs the following:
|
7901
|
+
# {
|
7902
|
+
# create_time: Time.parse("2023-12-28T17:20:20.629Z"),
|
7903
|
+
# integration_name: "my-integration",
|
7904
|
+
# kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
|
7905
|
+
# source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
7906
|
+
# status: "creating",
|
7907
|
+
# tags: [
|
7908
|
+
# ],
|
7909
|
+
# target_arn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8",
|
7910
|
+
# }
|
7911
|
+
#
|
7758
7912
|
# @example Request syntax with placeholder values
|
7759
7913
|
#
|
7760
7914
|
# resp = client.create_integration({
|
@@ -8648,6 +8802,8 @@ module Aws::RDS
|
|
8648
8802
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
8649
8803
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
8650
8804
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
8805
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
8806
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
8651
8807
|
#
|
8652
8808
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
8653
8809
|
#
|
@@ -9563,6 +9719,48 @@ module Aws::RDS
|
|
9563
9719
|
req.send_request(options)
|
9564
9720
|
end
|
9565
9721
|
|
9722
|
+
# Deletes an Aurora Limitless Database DB shard group.
|
9723
|
+
#
|
9724
|
+
# @option params [required, String] :db_shard_group_identifier
|
9725
|
+
# Teh name of the DB shard group to delete.
|
9726
|
+
#
|
9727
|
+
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9728
|
+
#
|
9729
|
+
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
9730
|
+
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
9731
|
+
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
9732
|
+
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
9733
|
+
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
9734
|
+
# * {Types::DBShardGroup#status #status} => String
|
9735
|
+
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
9736
|
+
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
9737
|
+
#
|
9738
|
+
# @example Request syntax with placeholder values
|
9739
|
+
#
|
9740
|
+
# resp = client.delete_db_shard_group({
|
9741
|
+
# db_shard_group_identifier: "String", # required
|
9742
|
+
# })
|
9743
|
+
#
|
9744
|
+
# @example Response structure
|
9745
|
+
#
|
9746
|
+
# resp.db_shard_group_resource_id #=> String
|
9747
|
+
# resp.db_shard_group_identifier #=> String
|
9748
|
+
# resp.db_cluster_identifier #=> String
|
9749
|
+
# resp.max_acu #=> Float
|
9750
|
+
# resp.compute_redundancy #=> Integer
|
9751
|
+
# resp.status #=> String
|
9752
|
+
# resp.publicly_accessible #=> Boolean
|
9753
|
+
# resp.endpoint #=> String
|
9754
|
+
#
|
9755
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBShardGroup AWS API Documentation
|
9756
|
+
#
|
9757
|
+
# @overload delete_db_shard_group(params = {})
|
9758
|
+
# @param [Hash] params ({})
|
9759
|
+
def delete_db_shard_group(params = {}, options = {})
|
9760
|
+
req = build_request(:delete_db_shard_group, params)
|
9761
|
+
req.send_request(options)
|
9762
|
+
end
|
9763
|
+
|
9566
9764
|
# Deletes a DB snapshot. If the snapshot is being copied, the copy
|
9567
9765
|
# operation is terminated.
|
9568
9766
|
#
|
@@ -9888,6 +10086,27 @@ module Aws::RDS
|
|
9888
10086
|
# * {Types::Integration#create_time #create_time} => Time
|
9889
10087
|
# * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
|
9890
10088
|
#
|
10089
|
+
#
|
10090
|
+
# @example Example: To delete a zero-ETL integration
|
10091
|
+
#
|
10092
|
+
# # The following example deletes a zero-ETL integration with Amazon Redshift.
|
10093
|
+
#
|
10094
|
+
# resp = client.delete_integration({
|
10095
|
+
# integration_identifier: "5b9f3d79-7392-4a3e-896c-58eaa1b53231",
|
10096
|
+
# })
|
10097
|
+
#
|
10098
|
+
# resp.to_h outputs the following:
|
10099
|
+
# {
|
10100
|
+
# create_time: Time.parse("2023-12-28T17:20:20.629Z"),
|
10101
|
+
# integration_name: "my-integration",
|
10102
|
+
# kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
|
10103
|
+
# source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
10104
|
+
# status: "deleting",
|
10105
|
+
# tags: [
|
10106
|
+
# ],
|
10107
|
+
# target_arn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8",
|
10108
|
+
# }
|
10109
|
+
#
|
9891
10110
|
# @example Request syntax with placeholder values
|
9892
10111
|
#
|
9893
10112
|
# resp = client.delete_integration({
|
@@ -11733,7 +11952,7 @@ module Aws::RDS
|
|
11733
11952
|
#
|
11734
11953
|
# Default: 100
|
11735
11954
|
#
|
11736
|
-
# Constraints: Minimum 20, maximum 100
|
11955
|
+
# Constraints: Minimum 20, maximum 100
|
11737
11956
|
#
|
11738
11957
|
# @option params [String] :marker
|
11739
11958
|
# An optional pagination token provided by a previous
|
@@ -11998,6 +12217,8 @@ module Aws::RDS
|
|
11998
12217
|
# resp.db_clusters[0].io_optimized_next_allowed_modification_time #=> Time
|
11999
12218
|
# resp.db_clusters[0].local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
12000
12219
|
# resp.db_clusters[0].aws_backup_recovery_point_arn #=> String
|
12220
|
+
# resp.db_clusters[0].limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
12221
|
+
# resp.db_clusters[0].limitless_database.min_required_acu #=> Float
|
12001
12222
|
#
|
12002
12223
|
#
|
12003
12224
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -13729,6 +13950,80 @@ module Aws::RDS
|
|
13729
13950
|
req.send_request(options)
|
13730
13951
|
end
|
13731
13952
|
|
13953
|
+
# Describes existing Aurora Limitless Database DB shard groups.
|
13954
|
+
#
|
13955
|
+
# @option params [String] :db_shard_group_identifier
|
13956
|
+
# The user-supplied DB shard group identifier or the Amazon Resource
|
13957
|
+
# Name (ARN) of the DB shard group. If this parameter is specified,
|
13958
|
+
# information for only the specific DB shard group is returned. This
|
13959
|
+
# parameter isn't case-sensitive.
|
13960
|
+
#
|
13961
|
+
# Constraints:
|
13962
|
+
#
|
13963
|
+
# * If supplied, must match an existing DB shard group identifier.
|
13964
|
+
#
|
13965
|
+
# ^
|
13966
|
+
#
|
13967
|
+
# @option params [Array<Types::Filter>] :filters
|
13968
|
+
# A filter that specifies one or more DB shard groups to describe.
|
13969
|
+
#
|
13970
|
+
# @option params [String] :marker
|
13971
|
+
# An optional pagination token provided by a previous
|
13972
|
+
# `DescribeDBShardGroups` request. If this parameter is specified, the
|
13973
|
+
# response includes only records beyond the marker, up to the value
|
13974
|
+
# specified by `MaxRecords`.
|
13975
|
+
#
|
13976
|
+
# @option params [Integer] :max_records
|
13977
|
+
# The maximum number of records to include in the response. If more
|
13978
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
13979
|
+
# token called a marker is included in the response so you can retrieve
|
13980
|
+
# the remaining results.
|
13981
|
+
#
|
13982
|
+
# Default: 100
|
13983
|
+
#
|
13984
|
+
# Constraints: Minimum 20, maximum 100
|
13985
|
+
#
|
13986
|
+
# @return [Types::DescribeDBShardGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13987
|
+
#
|
13988
|
+
# * {Types::DescribeDBShardGroupsResponse#db_shard_groups #db_shard_groups} => Array<Types::DBShardGroup>
|
13989
|
+
# * {Types::DescribeDBShardGroupsResponse#marker #marker} => String
|
13990
|
+
#
|
13991
|
+
# @example Request syntax with placeholder values
|
13992
|
+
#
|
13993
|
+
# resp = client.describe_db_shard_groups({
|
13994
|
+
# db_shard_group_identifier: "String",
|
13995
|
+
# filters: [
|
13996
|
+
# {
|
13997
|
+
# name: "String", # required
|
13998
|
+
# values: ["String"], # required
|
13999
|
+
# },
|
14000
|
+
# ],
|
14001
|
+
# marker: "String",
|
14002
|
+
# max_records: 1,
|
14003
|
+
# })
|
14004
|
+
#
|
14005
|
+
# @example Response structure
|
14006
|
+
#
|
14007
|
+
# resp.db_shard_groups #=> Array
|
14008
|
+
# resp.db_shard_groups[0].db_shard_group_resource_id #=> String
|
14009
|
+
# resp.db_shard_groups[0].db_shard_group_identifier #=> String
|
14010
|
+
# resp.db_shard_groups[0].db_cluster_identifier #=> String
|
14011
|
+
# resp.db_shard_groups[0].max_acu #=> Float
|
14012
|
+
# resp.db_shard_groups[0].compute_redundancy #=> Integer
|
14013
|
+
# resp.db_shard_groups[0].status #=> String
|
14014
|
+
# resp.db_shard_groups[0].publicly_accessible #=> Boolean
|
14015
|
+
# resp.db_shard_groups[0].endpoint #=> String
|
14016
|
+
# resp.marker #=> String
|
14017
|
+
#
|
14018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBShardGroups AWS API Documentation
|
14019
|
+
#
|
14020
|
+
# @overload describe_db_shard_groups(params = {})
|
14021
|
+
# @param [Hash] params ({})
|
14022
|
+
def describe_db_shard_groups(params = {}, options = {})
|
14023
|
+
req = build_request(:describe_db_shard_groups, params)
|
14024
|
+
req.send_request(options)
|
14025
|
+
end
|
14026
|
+
|
13732
14027
|
# Returns a list of DB snapshot attribute names and values for a manual
|
13733
14028
|
# DB snapshot.
|
13734
14029
|
#
|
@@ -15352,6 +15647,31 @@ module Aws::RDS
|
|
15352
15647
|
#
|
15353
15648
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
15354
15649
|
#
|
15650
|
+
#
|
15651
|
+
# @example Example: To describe a zero-ETL integration
|
15652
|
+
#
|
15653
|
+
# # The following example retrieves information about a zero-ETL integration with Amazon Redshift.
|
15654
|
+
#
|
15655
|
+
# resp = client.describe_integrations({
|
15656
|
+
# integration_identifier: "5b9f3d79-7392-4a3e-896c-58eaa1b53231",
|
15657
|
+
# })
|
15658
|
+
#
|
15659
|
+
# resp.to_h outputs the following:
|
15660
|
+
# {
|
15661
|
+
# integrations: [
|
15662
|
+
# {
|
15663
|
+
# create_time: Time.parse("2023-12-28T17:20:20.629Z"),
|
15664
|
+
# integration_name: "my-integration",
|
15665
|
+
# kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
|
15666
|
+
# source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
|
15667
|
+
# status: "active",
|
15668
|
+
# tags: [
|
15669
|
+
# ],
|
15670
|
+
# target_arn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8",
|
15671
|
+
# },
|
15672
|
+
# ],
|
15673
|
+
# }
|
15674
|
+
#
|
15355
15675
|
# @example Request syntax with placeholder values
|
15356
15676
|
#
|
15357
15677
|
# resp = client.describe_integrations({
|
@@ -16960,9 +17280,11 @@ module Aws::RDS
|
|
16960
17280
|
# the Aurora Replicas (read-only instances) in the DB cluster to be the
|
16961
17281
|
# primary DB instance (the cluster writer).
|
16962
17282
|
#
|
16963
|
-
# For a Multi-AZ DB cluster,
|
16964
|
-
# the
|
16965
|
-
#
|
17283
|
+
# For a Multi-AZ DB cluster, after RDS terminates the primary DB
|
17284
|
+
# instance, the internal monitoring system detects that the primary DB
|
17285
|
+
# instance is unhealthy and promotes a readable standby (read-only
|
17286
|
+
# instances) in the DB cluster to be the primary DB instance (the
|
17287
|
+
# cluster writer). Failover times are typically less than 35 seconds.
|
16966
17288
|
#
|
16967
17289
|
# An Amazon Aurora DB cluster automatically fails over to an Aurora
|
16968
17290
|
# Replica, if one exists, when the primary DB instance fails. A Multi-AZ
|
@@ -17163,6 +17485,8 @@ module Aws::RDS
|
|
17163
17485
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
17164
17486
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
17165
17487
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
17488
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
17489
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
17166
17490
|
#
|
17167
17491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
17168
17492
|
#
|
@@ -18535,6 +18859,12 @@ module Aws::RDS
|
|
18535
18859
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
18536
18860
|
# Services Backup.
|
18537
18861
|
#
|
18862
|
+
# @option params [Boolean] :enable_limitless_database
|
18863
|
+
# Specifies whether to enable Aurora Limitless Database. You must enable
|
18864
|
+
# Aurora Limitless Database to create a DB shard group.
|
18865
|
+
#
|
18866
|
+
# Valid for: Aurora DB clusters only
|
18867
|
+
#
|
18538
18868
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18539
18869
|
#
|
18540
18870
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -18673,6 +19003,7 @@ module Aws::RDS
|
|
18673
19003
|
# allow_engine_mode_change: false,
|
18674
19004
|
# enable_local_write_forwarding: false,
|
18675
19005
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
19006
|
+
# enable_limitless_database: false,
|
18676
19007
|
# })
|
18677
19008
|
#
|
18678
19009
|
# @example Response structure
|
@@ -18806,6 +19137,8 @@ module Aws::RDS
|
|
18806
19137
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
18807
19138
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
18808
19139
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
19140
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
19141
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
18809
19142
|
#
|
18810
19143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
18811
19144
|
#
|
@@ -20988,6 +21321,55 @@ module Aws::RDS
|
|
20988
21321
|
req.send_request(options)
|
20989
21322
|
end
|
20990
21323
|
|
21324
|
+
# Modifies the settings of an Aurora Limitless Database DB shard group.
|
21325
|
+
# You can change one or more settings by specifying these parameters and
|
21326
|
+
# the new values in the request.
|
21327
|
+
#
|
21328
|
+
# @option params [required, String] :db_shard_group_identifier
|
21329
|
+
# The name of the DB shard group to modify.
|
21330
|
+
#
|
21331
|
+
# @option params [Float] :max_acu
|
21332
|
+
# The maximum capacity of the DB shard group in Aurora capacity units
|
21333
|
+
# (ACUs).
|
21334
|
+
#
|
21335
|
+
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21336
|
+
#
|
21337
|
+
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
21338
|
+
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
21339
|
+
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
21340
|
+
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
21341
|
+
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
21342
|
+
# * {Types::DBShardGroup#status #status} => String
|
21343
|
+
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
21344
|
+
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
21345
|
+
#
|
21346
|
+
# @example Request syntax with placeholder values
|
21347
|
+
#
|
21348
|
+
# resp = client.modify_db_shard_group({
|
21349
|
+
# db_shard_group_identifier: "String", # required
|
21350
|
+
# max_acu: 1.0,
|
21351
|
+
# })
|
21352
|
+
#
|
21353
|
+
# @example Response structure
|
21354
|
+
#
|
21355
|
+
# resp.db_shard_group_resource_id #=> String
|
21356
|
+
# resp.db_shard_group_identifier #=> String
|
21357
|
+
# resp.db_cluster_identifier #=> String
|
21358
|
+
# resp.max_acu #=> Float
|
21359
|
+
# resp.compute_redundancy #=> Integer
|
21360
|
+
# resp.status #=> String
|
21361
|
+
# resp.publicly_accessible #=> Boolean
|
21362
|
+
# resp.endpoint #=> String
|
21363
|
+
#
|
21364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBShardGroup AWS API Documentation
|
21365
|
+
#
|
21366
|
+
# @overload modify_db_shard_group(params = {})
|
21367
|
+
# @param [Hash] params ({})
|
21368
|
+
def modify_db_shard_group(params = {}, options = {})
|
21369
|
+
req = build_request(:modify_db_shard_group, params)
|
21370
|
+
req.send_request(options)
|
21371
|
+
end
|
21372
|
+
|
20991
21373
|
# Updates a manual DB snapshot with a new engine version. The snapshot
|
20992
21374
|
# can be encrypted or unencrypted, but not shared or public.
|
20993
21375
|
#
|
@@ -22320,6 +22702,8 @@ module Aws::RDS
|
|
22320
22702
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
22321
22703
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
22322
22704
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
22705
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
22706
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
22323
22707
|
#
|
22324
22708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
22325
22709
|
#
|
@@ -22608,6 +22992,8 @@ module Aws::RDS
|
|
22608
22992
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
22609
22993
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
22610
22994
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
22995
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
22996
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
22611
22997
|
#
|
22612
22998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
22613
22999
|
#
|
@@ -22863,6 +23249,53 @@ module Aws::RDS
|
|
22863
23249
|
req.send_request(options)
|
22864
23250
|
end
|
22865
23251
|
|
23252
|
+
# You might need to reboot your DB shard group, usually for maintenance
|
23253
|
+
# reasons. For example, if you make certain modifications, reboot the DB
|
23254
|
+
# shard group for the changes to take effect.
|
23255
|
+
#
|
23256
|
+
# This operation applies only to Aurora Limitless Database DBb shard
|
23257
|
+
# groups.
|
23258
|
+
#
|
23259
|
+
# @option params [required, String] :db_shard_group_identifier
|
23260
|
+
# The name of the DB shard group to reboot.
|
23261
|
+
#
|
23262
|
+
# @return [Types::DBShardGroup] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23263
|
+
#
|
23264
|
+
# * {Types::DBShardGroup#db_shard_group_resource_id #db_shard_group_resource_id} => String
|
23265
|
+
# * {Types::DBShardGroup#db_shard_group_identifier #db_shard_group_identifier} => String
|
23266
|
+
# * {Types::DBShardGroup#db_cluster_identifier #db_cluster_identifier} => String
|
23267
|
+
# * {Types::DBShardGroup#max_acu #max_acu} => Float
|
23268
|
+
# * {Types::DBShardGroup#compute_redundancy #compute_redundancy} => Integer
|
23269
|
+
# * {Types::DBShardGroup#status #status} => String
|
23270
|
+
# * {Types::DBShardGroup#publicly_accessible #publicly_accessible} => Boolean
|
23271
|
+
# * {Types::DBShardGroup#endpoint #endpoint} => String
|
23272
|
+
#
|
23273
|
+
# @example Request syntax with placeholder values
|
23274
|
+
#
|
23275
|
+
# resp = client.reboot_db_shard_group({
|
23276
|
+
# db_shard_group_identifier: "String", # required
|
23277
|
+
# })
|
23278
|
+
#
|
23279
|
+
# @example Response structure
|
23280
|
+
#
|
23281
|
+
# resp.db_shard_group_resource_id #=> String
|
23282
|
+
# resp.db_shard_group_identifier #=> String
|
23283
|
+
# resp.db_cluster_identifier #=> String
|
23284
|
+
# resp.max_acu #=> Float
|
23285
|
+
# resp.compute_redundancy #=> Integer
|
23286
|
+
# resp.status #=> String
|
23287
|
+
# resp.publicly_accessible #=> Boolean
|
23288
|
+
# resp.endpoint #=> String
|
23289
|
+
#
|
23290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBShardGroup AWS API Documentation
|
23291
|
+
#
|
23292
|
+
# @overload reboot_db_shard_group(params = {})
|
23293
|
+
# @param [Hash] params ({})
|
23294
|
+
def reboot_db_shard_group(params = {}, options = {})
|
23295
|
+
req = build_request(:reboot_db_shard_group, params)
|
23296
|
+
req.send_request(options)
|
23297
|
+
end
|
23298
|
+
|
22866
23299
|
# Associate one or more `DBProxyTarget` data structures with a
|
22867
23300
|
# `DBProxyTargetGroup`.
|
22868
23301
|
#
|
@@ -24082,6 +24515,8 @@ module Aws::RDS
|
|
24082
24515
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
24083
24516
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
24084
24517
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
24518
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
24519
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
24085
24520
|
#
|
24086
24521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
24087
24522
|
#
|
@@ -24794,6 +25229,8 @@ module Aws::RDS
|
|
24794
25229
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
24795
25230
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
24796
25231
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
25232
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
25233
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
24797
25234
|
#
|
24798
25235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
24799
25236
|
#
|
@@ -25481,6 +25918,8 @@ module Aws::RDS
|
|
25481
25918
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
25482
25919
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
25483
25920
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
25921
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
25922
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
25484
25923
|
#
|
25485
25924
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
25486
25925
|
#
|
@@ -28289,6 +28728,8 @@ module Aws::RDS
|
|
28289
28728
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
28290
28729
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
28291
28730
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
28731
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
28732
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
28292
28733
|
#
|
28293
28734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
28294
28735
|
#
|
@@ -29123,6 +29564,8 @@ module Aws::RDS
|
|
29123
29564
|
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
29124
29565
|
# resp.db_cluster.local_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "requested"
|
29125
29566
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
29567
|
+
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
29568
|
+
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
29126
29569
|
#
|
29127
29570
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
29128
29571
|
#
|
@@ -29970,7 +30413,7 @@ module Aws::RDS
|
|
29970
30413
|
params: params,
|
29971
30414
|
config: config)
|
29972
30415
|
context[:gem_name] = 'aws-sdk-rds'
|
29973
|
-
context[:gem_version] = '1.
|
30416
|
+
context[:gem_version] = '1.213.0'
|
29974
30417
|
Seahorse::Client::Request.new(handlers, context)
|
29975
30418
|
end
|
29976
30419
|
|