aws-sdk-rds 1.36.0 → 1.37.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +318 -6
- data/lib/aws-sdk-rds/client_api.rb +103 -0
- data/lib/aws-sdk-rds/db_cluster.rb +6 -0
- data/lib/aws-sdk-rds/db_instance.rb +4 -4
- data/lib/aws-sdk-rds/resource.rb +2 -2
- data/lib/aws-sdk-rds/types.rb +296 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7af0712f224c112f96d1b965e0d65762207dbc5
|
4
|
+
data.tar.gz: 57c5dc98fdfcbdc3eb6974a62178e2f496a33e8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7947e9b8f73997b03bd52f63d91f559fb67907f9116db25189491f9dd746faf5188a6b4b6f10972533bf587aecdb61bf5841b4ef6196df600fa2777c174962a
|
7
|
+
data.tar.gz: 448f15c610f48a4d22db28c699e59fa846fd214020b6e5fd3f07ecf9b7f29db53c53e7e1dfff54940046b604c640ed83d99f9c20fdd4185154dbda11e0f3e91d
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
|
|
15
15
|
require 'aws-sdk-core/plugins/retry_errors.rb'
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
|
+
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
18
19
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
20
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
21
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -46,6 +47,7 @@ module Aws::RDS
|
|
46
47
|
add_plugin(Aws::Plugins::RetryErrors)
|
47
48
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
48
49
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
50
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
49
51
|
add_plugin(Aws::Plugins::ResponsePaging)
|
50
52
|
add_plugin(Aws::Plugins::StubResponses)
|
51
53
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -100,6 +102,10 @@ module Aws::RDS
|
|
100
102
|
#
|
101
103
|
# @option options [String] :access_key_id
|
102
104
|
#
|
105
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
106
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
107
|
+
# the background every 60 secs (default). Defaults to `false`.
|
108
|
+
#
|
103
109
|
# @option options [Boolean] :client_side_monitoring (false)
|
104
110
|
# When `true`, client-side metrics will be collected for all API requests from
|
105
111
|
# this client.
|
@@ -125,6 +131,21 @@ module Aws::RDS
|
|
125
131
|
# option. You should only configure an `:endpoint` when connecting
|
126
132
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
127
133
|
#
|
134
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
135
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
136
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
137
|
+
#
|
138
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
139
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
140
|
+
#
|
141
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
142
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
143
|
+
# Use this option to config the time interval in seconds for making
|
144
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
145
|
+
#
|
146
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
147
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
148
|
+
#
|
128
149
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
129
150
|
# The log formatter.
|
130
151
|
#
|
@@ -1849,6 +1870,8 @@ module Aws::RDS
|
|
1849
1870
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
1850
1871
|
# resp.db_cluster.endpoint #=> String
|
1851
1872
|
# resp.db_cluster.reader_endpoint #=> String
|
1873
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
1874
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
1852
1875
|
# resp.db_cluster.multi_az #=> Boolean
|
1853
1876
|
# resp.db_cluster.engine #=> String
|
1854
1877
|
# resp.db_cluster.engine_version #=> String
|
@@ -1905,6 +1928,76 @@ module Aws::RDS
|
|
1905
1928
|
req.send_request(options)
|
1906
1929
|
end
|
1907
1930
|
|
1931
|
+
# Creates a new custom endpoint and associates it with an Amazon Aurora
|
1932
|
+
# DB cluster.
|
1933
|
+
#
|
1934
|
+
# @option params [required, String] :db_cluster_identifier
|
1935
|
+
# The DB cluster identifier of the DB cluster associated with the
|
1936
|
+
# endpoint. This parameter is stored as a lowercase string.
|
1937
|
+
#
|
1938
|
+
# @option params [required, String] :db_cluster_endpoint_identifier
|
1939
|
+
# The identifier to use for the new endpoint. This parameter is stored
|
1940
|
+
# as a lowercase string.
|
1941
|
+
#
|
1942
|
+
# @option params [required, String] :endpoint_type
|
1943
|
+
# The type of the endpoint. One of: `READER`, `ANY`.
|
1944
|
+
#
|
1945
|
+
# @option params [Array<String>] :static_members
|
1946
|
+
# List of DB instance identifiers that are part of the custom endpoint
|
1947
|
+
# group.
|
1948
|
+
#
|
1949
|
+
# @option params [Array<String>] :excluded_members
|
1950
|
+
# List of DB instance identifiers that aren't part of the custom
|
1951
|
+
# endpoint group. All other eligible instances are reachable through the
|
1952
|
+
# custom endpoint. Only relevant if the list of static members is empty.
|
1953
|
+
#
|
1954
|
+
# @return [Types::DBClusterEndpoint] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1955
|
+
#
|
1956
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_identifier #db_cluster_endpoint_identifier} => String
|
1957
|
+
# * {Types::DBClusterEndpoint#db_cluster_identifier #db_cluster_identifier} => String
|
1958
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_resource_identifier #db_cluster_endpoint_resource_identifier} => String
|
1959
|
+
# * {Types::DBClusterEndpoint#endpoint #endpoint} => String
|
1960
|
+
# * {Types::DBClusterEndpoint#status #status} => String
|
1961
|
+
# * {Types::DBClusterEndpoint#endpoint_type #endpoint_type} => String
|
1962
|
+
# * {Types::DBClusterEndpoint#custom_endpoint_type #custom_endpoint_type} => String
|
1963
|
+
# * {Types::DBClusterEndpoint#static_members #static_members} => Array<String>
|
1964
|
+
# * {Types::DBClusterEndpoint#excluded_members #excluded_members} => Array<String>
|
1965
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_arn #db_cluster_endpoint_arn} => String
|
1966
|
+
#
|
1967
|
+
# @example Request syntax with placeholder values
|
1968
|
+
#
|
1969
|
+
# resp = client.create_db_cluster_endpoint({
|
1970
|
+
# db_cluster_identifier: "String", # required
|
1971
|
+
# db_cluster_endpoint_identifier: "String", # required
|
1972
|
+
# endpoint_type: "String", # required
|
1973
|
+
# static_members: ["String"],
|
1974
|
+
# excluded_members: ["String"],
|
1975
|
+
# })
|
1976
|
+
#
|
1977
|
+
# @example Response structure
|
1978
|
+
#
|
1979
|
+
# resp.db_cluster_endpoint_identifier #=> String
|
1980
|
+
# resp.db_cluster_identifier #=> String
|
1981
|
+
# resp.db_cluster_endpoint_resource_identifier #=> String
|
1982
|
+
# resp.endpoint #=> String
|
1983
|
+
# resp.status #=> String
|
1984
|
+
# resp.endpoint_type #=> String
|
1985
|
+
# resp.custom_endpoint_type #=> String
|
1986
|
+
# resp.static_members #=> Array
|
1987
|
+
# resp.static_members[0] #=> String
|
1988
|
+
# resp.excluded_members #=> Array
|
1989
|
+
# resp.excluded_members[0] #=> String
|
1990
|
+
# resp.db_cluster_endpoint_arn #=> String
|
1991
|
+
#
|
1992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterEndpoint AWS API Documentation
|
1993
|
+
#
|
1994
|
+
# @overload create_db_cluster_endpoint(params = {})
|
1995
|
+
# @param [Hash] params ({})
|
1996
|
+
def create_db_cluster_endpoint(params = {}, options = {})
|
1997
|
+
req = build_request(:create_db_cluster_endpoint, params)
|
1998
|
+
req.send_request(options)
|
1999
|
+
end
|
2000
|
+
|
1908
2001
|
# Creates a new DB cluster parameter group.
|
1909
2002
|
#
|
1910
2003
|
# Parameters in a DB cluster parameter group apply to all of the
|
@@ -2281,10 +2374,10 @@ module Aws::RDS
|
|
2281
2374
|
# following:
|
2282
2375
|
#
|
2283
2376
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
2284
|
-
#
|
2377
|
+
# 32768.
|
2285
2378
|
#
|
2286
2379
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2287
|
-
#
|
2380
|
+
# 32768.
|
2288
2381
|
#
|
2289
2382
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
2290
2383
|
#
|
@@ -3172,7 +3265,7 @@ module Aws::RDS
|
|
3172
3265
|
# DB instance.
|
3173
3266
|
#
|
3174
3267
|
# * Can specify a DB instance that is a MySQL Read Replica only if the
|
3175
|
-
# source is running MySQL 5.6.
|
3268
|
+
# source is running MySQL 5.6 or later.
|
3176
3269
|
#
|
3177
3270
|
# * Can specify a DB instance that is a PostgreSQL DB instance only if
|
3178
3271
|
# the source is running PostgreSQL 9.3.5 or later (9.4.7 and higher
|
@@ -3407,7 +3500,7 @@ module Aws::RDS
|
|
3407
3500
|
#
|
3408
3501
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
3409
3502
|
#
|
3410
|
-
# * Aurora 5.6 or higher
|
3503
|
+
# * Aurora MySQL 5.6 or higher
|
3411
3504
|
#
|
3412
3505
|
# Default: `false`
|
3413
3506
|
#
|
@@ -4431,6 +4524,8 @@ module Aws::RDS
|
|
4431
4524
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
4432
4525
|
# resp.db_cluster.endpoint #=> String
|
4433
4526
|
# resp.db_cluster.reader_endpoint #=> String
|
4527
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
4528
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
4434
4529
|
# resp.db_cluster.multi_az #=> Boolean
|
4435
4530
|
# resp.db_cluster.engine #=> String
|
4436
4531
|
# resp.db_cluster.engine_version #=> String
|
@@ -4487,6 +4582,56 @@ module Aws::RDS
|
|
4487
4582
|
req.send_request(options)
|
4488
4583
|
end
|
4489
4584
|
|
4585
|
+
# Deletes a custom endpoint and removes it from an Amazon Aurora DB
|
4586
|
+
# cluster.
|
4587
|
+
#
|
4588
|
+
# @option params [required, String] :db_cluster_endpoint_identifier
|
4589
|
+
# The identifier associated with the custom endpoint. This parameter is
|
4590
|
+
# stored as a lowercase string.
|
4591
|
+
#
|
4592
|
+
# @return [Types::DBClusterEndpoint] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4593
|
+
#
|
4594
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_identifier #db_cluster_endpoint_identifier} => String
|
4595
|
+
# * {Types::DBClusterEndpoint#db_cluster_identifier #db_cluster_identifier} => String
|
4596
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_resource_identifier #db_cluster_endpoint_resource_identifier} => String
|
4597
|
+
# * {Types::DBClusterEndpoint#endpoint #endpoint} => String
|
4598
|
+
# * {Types::DBClusterEndpoint#status #status} => String
|
4599
|
+
# * {Types::DBClusterEndpoint#endpoint_type #endpoint_type} => String
|
4600
|
+
# * {Types::DBClusterEndpoint#custom_endpoint_type #custom_endpoint_type} => String
|
4601
|
+
# * {Types::DBClusterEndpoint#static_members #static_members} => Array<String>
|
4602
|
+
# * {Types::DBClusterEndpoint#excluded_members #excluded_members} => Array<String>
|
4603
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_arn #db_cluster_endpoint_arn} => String
|
4604
|
+
#
|
4605
|
+
# @example Request syntax with placeholder values
|
4606
|
+
#
|
4607
|
+
# resp = client.delete_db_cluster_endpoint({
|
4608
|
+
# db_cluster_endpoint_identifier: "String", # required
|
4609
|
+
# })
|
4610
|
+
#
|
4611
|
+
# @example Response structure
|
4612
|
+
#
|
4613
|
+
# resp.db_cluster_endpoint_identifier #=> String
|
4614
|
+
# resp.db_cluster_identifier #=> String
|
4615
|
+
# resp.db_cluster_endpoint_resource_identifier #=> String
|
4616
|
+
# resp.endpoint #=> String
|
4617
|
+
# resp.status #=> String
|
4618
|
+
# resp.endpoint_type #=> String
|
4619
|
+
# resp.custom_endpoint_type #=> String
|
4620
|
+
# resp.static_members #=> Array
|
4621
|
+
# resp.static_members[0] #=> String
|
4622
|
+
# resp.excluded_members #=> Array
|
4623
|
+
# resp.excluded_members[0] #=> String
|
4624
|
+
# resp.db_cluster_endpoint_arn #=> String
|
4625
|
+
#
|
4626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterEndpoint AWS API Documentation
|
4627
|
+
#
|
4628
|
+
# @overload delete_db_cluster_endpoint(params = {})
|
4629
|
+
# @param [Hash] params ({})
|
4630
|
+
def delete_db_cluster_endpoint(params = {}, options = {})
|
4631
|
+
req = build_request(:delete_db_cluster_endpoint, params)
|
4632
|
+
req.send_request(options)
|
4633
|
+
end
|
4634
|
+
|
4490
4635
|
# Deletes a specified DB cluster parameter group. The DB cluster
|
4491
4636
|
# parameter group to be deleted can't be associated with any DB
|
4492
4637
|
# clusters.
|
@@ -5393,6 +5538,91 @@ module Aws::RDS
|
|
5393
5538
|
req.send_request(options)
|
5394
5539
|
end
|
5395
5540
|
|
5541
|
+
# Returns information about endpoints for an Amazon Aurora DB cluster.
|
5542
|
+
#
|
5543
|
+
# @option params [String] :db_cluster_identifier
|
5544
|
+
# The DB cluster identifier of the DB cluster associated with the
|
5545
|
+
# endpoint. This parameter is stored as a lowercase string.
|
5546
|
+
#
|
5547
|
+
# @option params [String] :db_cluster_endpoint_identifier
|
5548
|
+
# The identifier of the endpoint to describe. This parameter is stored
|
5549
|
+
# as a lowercase string.
|
5550
|
+
#
|
5551
|
+
# @option params [Array<Types::Filter>] :filters
|
5552
|
+
# A set of name-value pairs that define which endpoints to include in
|
5553
|
+
# the output. The filters are specified as name-value pairs, in the
|
5554
|
+
# format `Name=endpoint_type,Values=endpoint_type1,endpoint_type2,...`.
|
5555
|
+
# `Name` can be one of: `db-cluster-endpoint-type`,
|
5556
|
+
# `db-cluster-endpoint-custom-type`, `db-cluster-endpoint-id`,
|
5557
|
+
# `db-cluster-endpoint-status`. `Values` for the `
|
5558
|
+
# db-cluster-endpoint-type` filter can be one or more of: `reader`,
|
5559
|
+
# `writer`, `custom`. `Values` for the `db-cluster-endpoint-custom-type`
|
5560
|
+
# filter can be one or more of: `reader`, `any`. `Values` for the
|
5561
|
+
# `db-cluster-endpoint-status` filter can be one or more of:
|
5562
|
+
# `available`, `creating`, `deleting`, `modifying`.
|
5563
|
+
#
|
5564
|
+
# @option params [Integer] :max_records
|
5565
|
+
# The maximum number of records to include in the response. If more
|
5566
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
5567
|
+
# token called a marker is included in the response so that the
|
5568
|
+
# remaining results can be retrieved.
|
5569
|
+
#
|
5570
|
+
# Default: 100
|
5571
|
+
#
|
5572
|
+
# Constraints: Minimum 20, maximum 100.
|
5573
|
+
#
|
5574
|
+
# @option params [String] :marker
|
5575
|
+
# An optional pagination token provided by a previous
|
5576
|
+
# DescribeDBClusterEndpoints request. If this parameter is specified,
|
5577
|
+
# the response includes only records beyond the marker, up to the value
|
5578
|
+
# specified by `MaxRecords`.
|
5579
|
+
#
|
5580
|
+
# @return [Types::DBClusterEndpointMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5581
|
+
#
|
5582
|
+
# * {Types::DBClusterEndpointMessage#marker #marker} => String
|
5583
|
+
# * {Types::DBClusterEndpointMessage#db_cluster_endpoints #db_cluster_endpoints} => Array<Types::DBClusterEndpoint>
|
5584
|
+
#
|
5585
|
+
# @example Request syntax with placeholder values
|
5586
|
+
#
|
5587
|
+
# resp = client.describe_db_cluster_endpoints({
|
5588
|
+
# db_cluster_identifier: "String",
|
5589
|
+
# db_cluster_endpoint_identifier: "String",
|
5590
|
+
# filters: [
|
5591
|
+
# {
|
5592
|
+
# name: "String", # required
|
5593
|
+
# values: ["String"], # required
|
5594
|
+
# },
|
5595
|
+
# ],
|
5596
|
+
# max_records: 1,
|
5597
|
+
# marker: "String",
|
5598
|
+
# })
|
5599
|
+
#
|
5600
|
+
# @example Response structure
|
5601
|
+
#
|
5602
|
+
# resp.marker #=> String
|
5603
|
+
# resp.db_cluster_endpoints #=> Array
|
5604
|
+
# resp.db_cluster_endpoints[0].db_cluster_endpoint_identifier #=> String
|
5605
|
+
# resp.db_cluster_endpoints[0].db_cluster_identifier #=> String
|
5606
|
+
# resp.db_cluster_endpoints[0].db_cluster_endpoint_resource_identifier #=> String
|
5607
|
+
# resp.db_cluster_endpoints[0].endpoint #=> String
|
5608
|
+
# resp.db_cluster_endpoints[0].status #=> String
|
5609
|
+
# resp.db_cluster_endpoints[0].endpoint_type #=> String
|
5610
|
+
# resp.db_cluster_endpoints[0].custom_endpoint_type #=> String
|
5611
|
+
# resp.db_cluster_endpoints[0].static_members #=> Array
|
5612
|
+
# resp.db_cluster_endpoints[0].static_members[0] #=> String
|
5613
|
+
# resp.db_cluster_endpoints[0].excluded_members #=> Array
|
5614
|
+
# resp.db_cluster_endpoints[0].excluded_members[0] #=> String
|
5615
|
+
# resp.db_cluster_endpoints[0].db_cluster_endpoint_arn #=> String
|
5616
|
+
#
|
5617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterEndpoints AWS API Documentation
|
5618
|
+
#
|
5619
|
+
# @overload describe_db_cluster_endpoints(params = {})
|
5620
|
+
# @param [Hash] params ({})
|
5621
|
+
def describe_db_cluster_endpoints(params = {}, options = {})
|
5622
|
+
req = build_request(:describe_db_cluster_endpoints, params)
|
5623
|
+
req.send_request(options)
|
5624
|
+
end
|
5625
|
+
|
5396
5626
|
# Returns a list of `DBClusterParameterGroup` descriptions. If a
|
5397
5627
|
# `DBClusterParameterGroupName` parameter is specified, the list will
|
5398
5628
|
# contain only the description of the specified DB cluster parameter
|
@@ -5917,6 +6147,8 @@ module Aws::RDS
|
|
5917
6147
|
# resp.db_clusters[0].earliest_restorable_time #=> Time
|
5918
6148
|
# resp.db_clusters[0].endpoint #=> String
|
5919
6149
|
# resp.db_clusters[0].reader_endpoint #=> String
|
6150
|
+
# resp.db_clusters[0].custom_endpoints #=> Array
|
6151
|
+
# resp.db_clusters[0].custom_endpoints[0] #=> String
|
5920
6152
|
# resp.db_clusters[0].multi_az #=> Boolean
|
5921
6153
|
# resp.db_clusters[0].engine #=> String
|
5922
6154
|
# resp.db_clusters[0].engine_version #=> String
|
@@ -8489,6 +8721,8 @@ module Aws::RDS
|
|
8489
8721
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
8490
8722
|
# resp.db_cluster.endpoint #=> String
|
8491
8723
|
# resp.db_cluster.reader_endpoint #=> String
|
8724
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
8725
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
8492
8726
|
# resp.db_cluster.multi_az #=> Boolean
|
8493
8727
|
# resp.db_cluster.engine #=> String
|
8494
8728
|
# resp.db_cluster.engine_version #=> String
|
@@ -8960,6 +9194,8 @@ module Aws::RDS
|
|
8960
9194
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
8961
9195
|
# resp.db_cluster.endpoint #=> String
|
8962
9196
|
# resp.db_cluster.reader_endpoint #=> String
|
9197
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
9198
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
8963
9199
|
# resp.db_cluster.multi_az #=> Boolean
|
8964
9200
|
# resp.db_cluster.engine #=> String
|
8965
9201
|
# resp.db_cluster.engine_version #=> String
|
@@ -9016,6 +9252,70 @@ module Aws::RDS
|
|
9016
9252
|
req.send_request(options)
|
9017
9253
|
end
|
9018
9254
|
|
9255
|
+
# Modifies the properties of an endpoint in an Amazon Aurora DB cluster.
|
9256
|
+
#
|
9257
|
+
# @option params [required, String] :db_cluster_endpoint_identifier
|
9258
|
+
# The identifier of the endpoint to modify. This parameter is stored as
|
9259
|
+
# a lowercase string.
|
9260
|
+
#
|
9261
|
+
# @option params [String] :endpoint_type
|
9262
|
+
# The type of the endpoint. One of: `READER`, `ANY`.
|
9263
|
+
#
|
9264
|
+
# @option params [Array<String>] :static_members
|
9265
|
+
# List of DB instance identifiers that are part of the custom endpoint
|
9266
|
+
# group.
|
9267
|
+
#
|
9268
|
+
# @option params [Array<String>] :excluded_members
|
9269
|
+
# List of DB instance identifiers that aren't part of the custom
|
9270
|
+
# endpoint group. All other eligible instances are reachable through the
|
9271
|
+
# custom endpoint. Only relevant if the list of static members is empty.
|
9272
|
+
#
|
9273
|
+
# @return [Types::DBClusterEndpoint] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9274
|
+
#
|
9275
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_identifier #db_cluster_endpoint_identifier} => String
|
9276
|
+
# * {Types::DBClusterEndpoint#db_cluster_identifier #db_cluster_identifier} => String
|
9277
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_resource_identifier #db_cluster_endpoint_resource_identifier} => String
|
9278
|
+
# * {Types::DBClusterEndpoint#endpoint #endpoint} => String
|
9279
|
+
# * {Types::DBClusterEndpoint#status #status} => String
|
9280
|
+
# * {Types::DBClusterEndpoint#endpoint_type #endpoint_type} => String
|
9281
|
+
# * {Types::DBClusterEndpoint#custom_endpoint_type #custom_endpoint_type} => String
|
9282
|
+
# * {Types::DBClusterEndpoint#static_members #static_members} => Array<String>
|
9283
|
+
# * {Types::DBClusterEndpoint#excluded_members #excluded_members} => Array<String>
|
9284
|
+
# * {Types::DBClusterEndpoint#db_cluster_endpoint_arn #db_cluster_endpoint_arn} => String
|
9285
|
+
#
|
9286
|
+
# @example Request syntax with placeholder values
|
9287
|
+
#
|
9288
|
+
# resp = client.modify_db_cluster_endpoint({
|
9289
|
+
# db_cluster_endpoint_identifier: "String", # required
|
9290
|
+
# endpoint_type: "String",
|
9291
|
+
# static_members: ["String"],
|
9292
|
+
# excluded_members: ["String"],
|
9293
|
+
# })
|
9294
|
+
#
|
9295
|
+
# @example Response structure
|
9296
|
+
#
|
9297
|
+
# resp.db_cluster_endpoint_identifier #=> String
|
9298
|
+
# resp.db_cluster_identifier #=> String
|
9299
|
+
# resp.db_cluster_endpoint_resource_identifier #=> String
|
9300
|
+
# resp.endpoint #=> String
|
9301
|
+
# resp.status #=> String
|
9302
|
+
# resp.endpoint_type #=> String
|
9303
|
+
# resp.custom_endpoint_type #=> String
|
9304
|
+
# resp.static_members #=> Array
|
9305
|
+
# resp.static_members[0] #=> String
|
9306
|
+
# resp.excluded_members #=> Array
|
9307
|
+
# resp.excluded_members[0] #=> String
|
9308
|
+
# resp.db_cluster_endpoint_arn #=> String
|
9309
|
+
#
|
9310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterEndpoint AWS API Documentation
|
9311
|
+
#
|
9312
|
+
# @overload modify_db_cluster_endpoint(params = {})
|
9313
|
+
# @param [Hash] params ({})
|
9314
|
+
def modify_db_cluster_endpoint(params = {}, options = {})
|
9315
|
+
req = build_request(:modify_db_cluster_endpoint, params)
|
9316
|
+
req.send_request(options)
|
9317
|
+
end
|
9318
|
+
|
9019
9319
|
# Modifies the parameters of a DB cluster parameter group. To modify
|
9020
9320
|
# more than one parameter, submit a list of the following:
|
9021
9321
|
# `ParameterName`, `ParameterValue`, and `ApplyMethod`. A maximum of 20
|
@@ -9411,7 +9711,7 @@ module Aws::RDS
|
|
9411
9711
|
# * Must be a value from 0 to 35
|
9412
9712
|
#
|
9413
9713
|
# * Can be specified for a MySQL Read Replica only if the source is
|
9414
|
-
# running MySQL 5.6
|
9714
|
+
# running MySQL 5.6 or later
|
9415
9715
|
#
|
9416
9716
|
# * Can be specified for a PostgreSQL Read Replica only if the source is
|
9417
9717
|
# running PostgreSQL 9.3.5
|
@@ -10833,6 +11133,8 @@ module Aws::RDS
|
|
10833
11133
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
10834
11134
|
# resp.db_cluster.endpoint #=> String
|
10835
11135
|
# resp.db_cluster.reader_endpoint #=> String
|
11136
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
11137
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
10836
11138
|
# resp.db_cluster.multi_az #=> Boolean
|
10837
11139
|
# resp.db_cluster.engine #=> String
|
10838
11140
|
# resp.db_cluster.engine_version #=> String
|
@@ -11804,6 +12106,8 @@ module Aws::RDS
|
|
11804
12106
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
11805
12107
|
# resp.db_cluster.endpoint #=> String
|
11806
12108
|
# resp.db_cluster.reader_endpoint #=> String
|
12109
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
12110
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
11807
12111
|
# resp.db_cluster.multi_az #=> Boolean
|
11808
12112
|
# resp.db_cluster.engine #=> String
|
11809
12113
|
# resp.db_cluster.engine_version #=> String
|
@@ -12096,6 +12400,8 @@ module Aws::RDS
|
|
12096
12400
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
12097
12401
|
# resp.db_cluster.endpoint #=> String
|
12098
12402
|
# resp.db_cluster.reader_endpoint #=> String
|
12403
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
12404
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
12099
12405
|
# resp.db_cluster.multi_az #=> Boolean
|
12100
12406
|
# resp.db_cluster.engine #=> String
|
12101
12407
|
# resp.db_cluster.engine_version #=> String
|
@@ -12409,6 +12715,8 @@ module Aws::RDS
|
|
12409
12715
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
12410
12716
|
# resp.db_cluster.endpoint #=> String
|
12411
12717
|
# resp.db_cluster.reader_endpoint #=> String
|
12718
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
12719
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
12412
12720
|
# resp.db_cluster.multi_az #=> Boolean
|
12413
12721
|
# resp.db_cluster.engine #=> String
|
12414
12722
|
# resp.db_cluster.engine_version #=> String
|
@@ -14201,6 +14509,8 @@ module Aws::RDS
|
|
14201
14509
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
14202
14510
|
# resp.db_cluster.endpoint #=> String
|
14203
14511
|
# resp.db_cluster.reader_endpoint #=> String
|
14512
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
14513
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
14204
14514
|
# resp.db_cluster.multi_az #=> Boolean
|
14205
14515
|
# resp.db_cluster.engine #=> String
|
14206
14516
|
# resp.db_cluster.engine_version #=> String
|
@@ -14448,6 +14758,8 @@ module Aws::RDS
|
|
14448
14758
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
14449
14759
|
# resp.db_cluster.endpoint #=> String
|
14450
14760
|
# resp.db_cluster.reader_endpoint #=> String
|
14761
|
+
# resp.db_cluster.custom_endpoints #=> Array
|
14762
|
+
# resp.db_cluster.custom_endpoints[0] #=> String
|
14451
14763
|
# resp.db_cluster.multi_az #=> Boolean
|
14452
14764
|
# resp.db_cluster.engine #=> String
|
14453
14765
|
# resp.db_cluster.engine_version #=> String
|
@@ -14673,7 +14985,7 @@ module Aws::RDS
|
|
14673
14985
|
params: params,
|
14674
14986
|
config: config)
|
14675
14987
|
context[:gem_name] = 'aws-sdk-rds'
|
14676
|
-
context[:gem_version] = '1.
|
14988
|
+
context[:gem_version] = '1.37.0'
|
14677
14989
|
Seahorse::Client::Request.new(handlers, context)
|
14678
14990
|
end
|
14679
14991
|
|
@@ -52,6 +52,7 @@ module Aws::RDS
|
|
52
52
|
CopyDBSnapshotResult = Shapes::StructureShape.new(name: 'CopyDBSnapshotResult')
|
53
53
|
CopyOptionGroupMessage = Shapes::StructureShape.new(name: 'CopyOptionGroupMessage')
|
54
54
|
CopyOptionGroupResult = Shapes::StructureShape.new(name: 'CopyOptionGroupResult')
|
55
|
+
CreateDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'CreateDBClusterEndpointMessage')
|
55
56
|
CreateDBClusterMessage = Shapes::StructureShape.new(name: 'CreateDBClusterMessage')
|
56
57
|
CreateDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'CreateDBClusterParameterGroupMessage')
|
57
58
|
CreateDBClusterParameterGroupResult = Shapes::StructureShape.new(name: 'CreateDBClusterParameterGroupResult')
|
@@ -81,6 +82,12 @@ module Aws::RDS
|
|
81
82
|
DBClusterBacktrackMessage = Shapes::StructureShape.new(name: 'DBClusterBacktrackMessage')
|
82
83
|
DBClusterBacktrackNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterBacktrackNotFoundFault')
|
83
84
|
DBClusterCapacityInfo = Shapes::StructureShape.new(name: 'DBClusterCapacityInfo')
|
85
|
+
DBClusterEndpoint = Shapes::StructureShape.new(name: 'DBClusterEndpoint')
|
86
|
+
DBClusterEndpointAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterEndpointAlreadyExistsFault')
|
87
|
+
DBClusterEndpointList = Shapes::ListShape.new(name: 'DBClusterEndpointList')
|
88
|
+
DBClusterEndpointMessage = Shapes::StructureShape.new(name: 'DBClusterEndpointMessage')
|
89
|
+
DBClusterEndpointNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterEndpointNotFoundFault')
|
90
|
+
DBClusterEndpointQuotaExceededFault = Shapes::StructureShape.new(name: 'DBClusterEndpointQuotaExceededFault')
|
84
91
|
DBClusterList = Shapes::ListShape.new(name: 'DBClusterList')
|
85
92
|
DBClusterMember = Shapes::StructureShape.new(name: 'DBClusterMember')
|
86
93
|
DBClusterMemberList = Shapes::ListShape.new(name: 'DBClusterMemberList')
|
@@ -157,6 +164,7 @@ module Aws::RDS
|
|
157
164
|
DBSubnetGroups = Shapes::ListShape.new(name: 'DBSubnetGroups')
|
158
165
|
DBSubnetQuotaExceededFault = Shapes::StructureShape.new(name: 'DBSubnetQuotaExceededFault')
|
159
166
|
DBUpgradeDependencyFailureFault = Shapes::StructureShape.new(name: 'DBUpgradeDependencyFailureFault')
|
167
|
+
DeleteDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'DeleteDBClusterEndpointMessage')
|
160
168
|
DeleteDBClusterMessage = Shapes::StructureShape.new(name: 'DeleteDBClusterMessage')
|
161
169
|
DeleteDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBClusterParameterGroupMessage')
|
162
170
|
DeleteDBClusterResult = Shapes::StructureShape.new(name: 'DeleteDBClusterResult')
|
@@ -175,6 +183,7 @@ module Aws::RDS
|
|
175
183
|
DescribeAccountAttributesMessage = Shapes::StructureShape.new(name: 'DescribeAccountAttributesMessage')
|
176
184
|
DescribeCertificatesMessage = Shapes::StructureShape.new(name: 'DescribeCertificatesMessage')
|
177
185
|
DescribeDBClusterBacktracksMessage = Shapes::StructureShape.new(name: 'DescribeDBClusterBacktracksMessage')
|
186
|
+
DescribeDBClusterEndpointsMessage = Shapes::StructureShape.new(name: 'DescribeDBClusterEndpointsMessage')
|
178
187
|
DescribeDBClusterParameterGroupsMessage = Shapes::StructureShape.new(name: 'DescribeDBClusterParameterGroupsMessage')
|
179
188
|
DescribeDBClusterParametersMessage = Shapes::StructureShape.new(name: 'DescribeDBClusterParametersMessage')
|
180
189
|
DescribeDBClusterSnapshotAttributesMessage = Shapes::StructureShape.new(name: 'DescribeDBClusterSnapshotAttributesMessage')
|
@@ -249,6 +258,7 @@ module Aws::RDS
|
|
249
258
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
250
259
|
IntegerOptional = Shapes::IntegerShape.new(name: 'IntegerOptional')
|
251
260
|
InvalidDBClusterCapacityFault = Shapes::StructureShape.new(name: 'InvalidDBClusterCapacityFault')
|
261
|
+
InvalidDBClusterEndpointStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterEndpointStateFault')
|
252
262
|
InvalidDBClusterSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterSnapshotStateFault')
|
253
263
|
InvalidDBClusterStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterStateFault')
|
254
264
|
InvalidDBInstanceStateFault = Shapes::StructureShape.new(name: 'InvalidDBInstanceStateFault')
|
@@ -273,6 +283,7 @@ module Aws::RDS
|
|
273
283
|
MinimumEngineVersionPerAllowedValue = Shapes::StructureShape.new(name: 'MinimumEngineVersionPerAllowedValue')
|
274
284
|
MinimumEngineVersionPerAllowedValueList = Shapes::ListShape.new(name: 'MinimumEngineVersionPerAllowedValueList')
|
275
285
|
ModifyCurrentDBClusterCapacityMessage = Shapes::StructureShape.new(name: 'ModifyCurrentDBClusterCapacityMessage')
|
286
|
+
ModifyDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterEndpointMessage')
|
276
287
|
ModifyDBClusterMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterMessage')
|
277
288
|
ModifyDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterParameterGroupMessage')
|
278
289
|
ModifyDBClusterResult = Shapes::StructureShape.new(name: 'ModifyDBClusterResult')
|
@@ -402,6 +413,7 @@ module Aws::RDS
|
|
402
413
|
StorageQuotaExceededFault = Shapes::StructureShape.new(name: 'StorageQuotaExceededFault')
|
403
414
|
StorageTypeNotSupportedFault = Shapes::StructureShape.new(name: 'StorageTypeNotSupportedFault')
|
404
415
|
String = Shapes::StringShape.new(name: 'String')
|
416
|
+
StringList = Shapes::ListShape.new(name: 'StringList')
|
405
417
|
Subnet = Shapes::StructureShape.new(name: 'Subnet')
|
406
418
|
SubnetAlreadyInUse = Shapes::StructureShape.new(name: 'SubnetAlreadyInUse')
|
407
419
|
SubnetIdentifierList = Shapes::ListShape.new(name: 'SubnetIdentifierList')
|
@@ -566,6 +578,13 @@ module Aws::RDS
|
|
566
578
|
CopyOptionGroupResult.add_member(:option_group, Shapes::ShapeRef.new(shape: OptionGroup, location_name: "OptionGroup"))
|
567
579
|
CopyOptionGroupResult.struct_class = Types::CopyOptionGroupResult
|
568
580
|
|
581
|
+
CreateDBClusterEndpointMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
582
|
+
CreateDBClusterEndpointMessage.add_member(:db_cluster_endpoint_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterEndpointIdentifier"))
|
583
|
+
CreateDBClusterEndpointMessage.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EndpointType"))
|
584
|
+
CreateDBClusterEndpointMessage.add_member(:static_members, Shapes::ShapeRef.new(shape: StringList, location_name: "StaticMembers"))
|
585
|
+
CreateDBClusterEndpointMessage.add_member(:excluded_members, Shapes::ShapeRef.new(shape: StringList, location_name: "ExcludedMembers"))
|
586
|
+
CreateDBClusterEndpointMessage.struct_class = Types::CreateDBClusterEndpointMessage
|
587
|
+
|
569
588
|
CreateDBClusterMessage.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
570
589
|
CreateDBClusterMessage.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
571
590
|
CreateDBClusterMessage.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
@@ -769,6 +788,7 @@ module Aws::RDS
|
|
769
788
|
DBCluster.add_member(:earliest_restorable_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "EarliestRestorableTime"))
|
770
789
|
DBCluster.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
771
790
|
DBCluster.add_member(:reader_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "ReaderEndpoint"))
|
791
|
+
DBCluster.add_member(:custom_endpoints, Shapes::ShapeRef.new(shape: StringList, location_name: "CustomEndpoints"))
|
772
792
|
DBCluster.add_member(:multi_az, Shapes::ShapeRef.new(shape: Boolean, location_name: "MultiAZ"))
|
773
793
|
DBCluster.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
774
794
|
DBCluster.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
@@ -822,6 +842,24 @@ module Aws::RDS
|
|
822
842
|
DBClusterCapacityInfo.add_member(:timeout_action, Shapes::ShapeRef.new(shape: String, location_name: "TimeoutAction"))
|
823
843
|
DBClusterCapacityInfo.struct_class = Types::DBClusterCapacityInfo
|
824
844
|
|
845
|
+
DBClusterEndpoint.add_member(:db_cluster_endpoint_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterEndpointIdentifier"))
|
846
|
+
DBClusterEndpoint.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
847
|
+
DBClusterEndpoint.add_member(:db_cluster_endpoint_resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterEndpointResourceIdentifier"))
|
848
|
+
DBClusterEndpoint.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
849
|
+
DBClusterEndpoint.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
850
|
+
DBClusterEndpoint.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: String, location_name: "EndpointType"))
|
851
|
+
DBClusterEndpoint.add_member(:custom_endpoint_type, Shapes::ShapeRef.new(shape: String, location_name: "CustomEndpointType"))
|
852
|
+
DBClusterEndpoint.add_member(:static_members, Shapes::ShapeRef.new(shape: StringList, location_name: "StaticMembers"))
|
853
|
+
DBClusterEndpoint.add_member(:excluded_members, Shapes::ShapeRef.new(shape: StringList, location_name: "ExcludedMembers"))
|
854
|
+
DBClusterEndpoint.add_member(:db_cluster_endpoint_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterEndpointArn"))
|
855
|
+
DBClusterEndpoint.struct_class = Types::DBClusterEndpoint
|
856
|
+
|
857
|
+
DBClusterEndpointList.member = Shapes::ShapeRef.new(shape: DBClusterEndpoint, location_name: "DBClusterEndpointList")
|
858
|
+
|
859
|
+
DBClusterEndpointMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
860
|
+
DBClusterEndpointMessage.add_member(:db_cluster_endpoints, Shapes::ShapeRef.new(shape: DBClusterEndpointList, location_name: "DBClusterEndpoints"))
|
861
|
+
DBClusterEndpointMessage.struct_class = Types::DBClusterEndpointMessage
|
862
|
+
|
825
863
|
DBClusterList.member = Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster")
|
826
864
|
|
827
865
|
DBClusterMember.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceIdentifier"))
|
@@ -1106,6 +1144,9 @@ module Aws::RDS
|
|
1106
1144
|
|
1107
1145
|
DBSubnetGroups.member = Shapes::ShapeRef.new(shape: DBSubnetGroup, location_name: "DBSubnetGroup")
|
1108
1146
|
|
1147
|
+
DeleteDBClusterEndpointMessage.add_member(:db_cluster_endpoint_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterEndpointIdentifier"))
|
1148
|
+
DeleteDBClusterEndpointMessage.struct_class = Types::DeleteDBClusterEndpointMessage
|
1149
|
+
|
1109
1150
|
DeleteDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
1110
1151
|
DeleteDBClusterMessage.add_member(:skip_final_snapshot, Shapes::ShapeRef.new(shape: Boolean, location_name: "SkipFinalSnapshot"))
|
1111
1152
|
DeleteDBClusterMessage.add_member(:final_db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "FinalDBSnapshotIdentifier"))
|
@@ -1170,6 +1211,13 @@ module Aws::RDS
|
|
1170
1211
|
DescribeDBClusterBacktracksMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1171
1212
|
DescribeDBClusterBacktracksMessage.struct_class = Types::DescribeDBClusterBacktracksMessage
|
1172
1213
|
|
1214
|
+
DescribeDBClusterEndpointsMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
1215
|
+
DescribeDBClusterEndpointsMessage.add_member(:db_cluster_endpoint_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterEndpointIdentifier"))
|
1216
|
+
DescribeDBClusterEndpointsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
1217
|
+
DescribeDBClusterEndpointsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
1218
|
+
DescribeDBClusterEndpointsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1219
|
+
DescribeDBClusterEndpointsMessage.struct_class = Types::DescribeDBClusterEndpointsMessage
|
1220
|
+
|
1173
1221
|
DescribeDBClusterParameterGroupsMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
1174
1222
|
DescribeDBClusterParameterGroupsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
1175
1223
|
DescribeDBClusterParameterGroupsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
@@ -1517,6 +1565,12 @@ module Aws::RDS
|
|
1517
1565
|
ModifyCurrentDBClusterCapacityMessage.add_member(:timeout_action, Shapes::ShapeRef.new(shape: String, location_name: "TimeoutAction"))
|
1518
1566
|
ModifyCurrentDBClusterCapacityMessage.struct_class = Types::ModifyCurrentDBClusterCapacityMessage
|
1519
1567
|
|
1568
|
+
ModifyDBClusterEndpointMessage.add_member(:db_cluster_endpoint_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterEndpointIdentifier"))
|
1569
|
+
ModifyDBClusterEndpointMessage.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: String, location_name: "EndpointType"))
|
1570
|
+
ModifyDBClusterEndpointMessage.add_member(:static_members, Shapes::ShapeRef.new(shape: StringList, location_name: "StaticMembers"))
|
1571
|
+
ModifyDBClusterEndpointMessage.add_member(:excluded_members, Shapes::ShapeRef.new(shape: StringList, location_name: "ExcludedMembers"))
|
1572
|
+
ModifyDBClusterEndpointMessage.struct_class = Types::ModifyDBClusterEndpointMessage
|
1573
|
+
|
1520
1574
|
ModifyDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
1521
1575
|
ModifyDBClusterMessage.add_member(:new_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "NewDBClusterIdentifier"))
|
1522
1576
|
ModifyDBClusterMessage.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: Boolean, location_name: "ApplyImmediately"))
|
@@ -2212,6 +2266,8 @@ module Aws::RDS
|
|
2212
2266
|
StopDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
2213
2267
|
StopDBInstanceResult.struct_class = Types::StopDBInstanceResult
|
2214
2268
|
|
2269
|
+
StringList.member = Shapes::ShapeRef.new(shape: String)
|
2270
|
+
|
2215
2271
|
Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
|
2216
2272
|
Subnet.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "SubnetAvailabilityZone"))
|
2217
2273
|
Subnet.add_member(:subnet_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetStatus"))
|
@@ -2433,6 +2489,20 @@ module Aws::RDS
|
|
2433
2489
|
o.errors << Shapes::ShapeRef.new(shape: DBSubnetGroupDoesNotCoverEnoughAZs)
|
2434
2490
|
end)
|
2435
2491
|
|
2492
|
+
api.add_operation(:create_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
2493
|
+
o.name = "CreateDBClusterEndpoint"
|
2494
|
+
o.http_method = "POST"
|
2495
|
+
o.http_request_uri = "/"
|
2496
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDBClusterEndpointMessage)
|
2497
|
+
o.output = Shapes::ShapeRef.new(shape: DBClusterEndpoint)
|
2498
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterEndpointQuotaExceededFault)
|
2499
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterEndpointAlreadyExistsFault)
|
2500
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
2501
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
2502
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
2503
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
2504
|
+
end)
|
2505
|
+
|
2436
2506
|
api.add_operation(:create_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
2437
2507
|
o.name = "CreateDBClusterParameterGroup"
|
2438
2508
|
o.http_method = "POST"
|
@@ -2593,6 +2663,17 @@ module Aws::RDS
|
|
2593
2663
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterSnapshotStateFault)
|
2594
2664
|
end)
|
2595
2665
|
|
2666
|
+
api.add_operation(:delete_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
2667
|
+
o.name = "DeleteDBClusterEndpoint"
|
2668
|
+
o.http_method = "POST"
|
2669
|
+
o.http_request_uri = "/"
|
2670
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteDBClusterEndpointMessage)
|
2671
|
+
o.output = Shapes::ShapeRef.new(shape: DBClusterEndpoint)
|
2672
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterEndpointStateFault)
|
2673
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterEndpointNotFoundFault)
|
2674
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
2675
|
+
end)
|
2676
|
+
|
2596
2677
|
api.add_operation(:delete_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
2597
2678
|
o.name = "DeleteDBClusterParameterGroup"
|
2598
2679
|
o.http_method = "POST"
|
@@ -2714,6 +2795,15 @@ module Aws::RDS
|
|
2714
2795
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterBacktrackNotFoundFault)
|
2715
2796
|
end)
|
2716
2797
|
|
2798
|
+
api.add_operation(:describe_db_cluster_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
2799
|
+
o.name = "DescribeDBClusterEndpoints"
|
2800
|
+
o.http_method = "POST"
|
2801
|
+
o.http_request_uri = "/"
|
2802
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeDBClusterEndpointsMessage)
|
2803
|
+
o.output = Shapes::ShapeRef.new(shape: DBClusterEndpointMessage)
|
2804
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
2805
|
+
end)
|
2806
|
+
|
2717
2807
|
api.add_operation(:describe_db_cluster_parameter_groups, Seahorse::Model::Operation.new.tap do |o|
|
2718
2808
|
o.name = "DescribeDBClusterParameterGroups"
|
2719
2809
|
o.http_method = "POST"
|
@@ -3121,6 +3211,19 @@ module Aws::RDS
|
|
3121
3211
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterAlreadyExistsFault)
|
3122
3212
|
end)
|
3123
3213
|
|
3214
|
+
api.add_operation(:modify_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
3215
|
+
o.name = "ModifyDBClusterEndpoint"
|
3216
|
+
o.http_method = "POST"
|
3217
|
+
o.http_request_uri = "/"
|
3218
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyDBClusterEndpointMessage)
|
3219
|
+
o.output = Shapes::ShapeRef.new(shape: DBClusterEndpoint)
|
3220
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
3221
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterEndpointStateFault)
|
3222
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterEndpointNotFoundFault)
|
3223
|
+
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
3224
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
3225
|
+
end)
|
3226
|
+
|
3124
3227
|
api.add_operation(:modify_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
3125
3228
|
o.name = "ModifyDBClusterParameterGroup"
|
3126
3229
|
o.http_method = "POST"
|
@@ -126,6 +126,12 @@ module Aws::RDS
|
|
126
126
|
data[:reader_endpoint]
|
127
127
|
end
|
128
128
|
|
129
|
+
# Identifies all custom endpoints associated with the cluster.
|
130
|
+
# @return [Array<String>]
|
131
|
+
def custom_endpoints
|
132
|
+
data[:custom_endpoints]
|
133
|
+
end
|
134
|
+
|
129
135
|
# Specifies whether the DB cluster has instances in multiple
|
130
136
|
# Availability Zones.
|
131
137
|
# @return [Boolean]
|
@@ -779,10 +779,10 @@ module Aws::RDS
|
|
779
779
|
# following:
|
780
780
|
#
|
781
781
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
782
|
-
#
|
782
|
+
# 32768.
|
783
783
|
#
|
784
784
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
785
|
-
#
|
785
|
+
# 32768.
|
786
786
|
#
|
787
787
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
788
788
|
#
|
@@ -1641,7 +1641,7 @@ module Aws::RDS
|
|
1641
1641
|
#
|
1642
1642
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
1643
1643
|
#
|
1644
|
-
# * Aurora 5.6 or higher
|
1644
|
+
# * Aurora MySQL 5.6 or higher
|
1645
1645
|
#
|
1646
1646
|
# Default: `false`
|
1647
1647
|
# @option options [Boolean] :enable_performance_insights
|
@@ -2022,7 +2022,7 @@ module Aws::RDS
|
|
2022
2022
|
# * Must be a value from 0 to 35
|
2023
2023
|
#
|
2024
2024
|
# * Can be specified for a MySQL Read Replica only if the source is
|
2025
|
-
# running MySQL 5.6
|
2025
|
+
# running MySQL 5.6 or later
|
2026
2026
|
#
|
2027
2027
|
# * Can be specified for a PostgreSQL Read Replica only if the source is
|
2028
2028
|
# running PostgreSQL 9.3.5
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -598,10 +598,10 @@ module Aws::RDS
|
|
598
598
|
# following:
|
599
599
|
#
|
600
600
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
601
|
-
#
|
601
|
+
# 32768.
|
602
602
|
#
|
603
603
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
604
|
-
#
|
604
|
+
# 32768.
|
605
605
|
#
|
606
606
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
607
607
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1174,6 +1174,54 @@ module Aws::RDS
|
|
1174
1174
|
include Aws::Structure
|
1175
1175
|
end
|
1176
1176
|
|
1177
|
+
# @note When making an API call, you may pass CreateDBClusterEndpointMessage
|
1178
|
+
# data as a hash:
|
1179
|
+
#
|
1180
|
+
# {
|
1181
|
+
# db_cluster_identifier: "String", # required
|
1182
|
+
# db_cluster_endpoint_identifier: "String", # required
|
1183
|
+
# endpoint_type: "String", # required
|
1184
|
+
# static_members: ["String"],
|
1185
|
+
# excluded_members: ["String"],
|
1186
|
+
# }
|
1187
|
+
#
|
1188
|
+
# @!attribute [rw] db_cluster_identifier
|
1189
|
+
# The DB cluster identifier of the DB cluster associated with the
|
1190
|
+
# endpoint. This parameter is stored as a lowercase string.
|
1191
|
+
# @return [String]
|
1192
|
+
#
|
1193
|
+
# @!attribute [rw] db_cluster_endpoint_identifier
|
1194
|
+
# The identifier to use for the new endpoint. This parameter is stored
|
1195
|
+
# as a lowercase string.
|
1196
|
+
# @return [String]
|
1197
|
+
#
|
1198
|
+
# @!attribute [rw] endpoint_type
|
1199
|
+
# The type of the endpoint. One of: `READER`, `ANY`.
|
1200
|
+
# @return [String]
|
1201
|
+
#
|
1202
|
+
# @!attribute [rw] static_members
|
1203
|
+
# List of DB instance identifiers that are part of the custom endpoint
|
1204
|
+
# group.
|
1205
|
+
# @return [Array<String>]
|
1206
|
+
#
|
1207
|
+
# @!attribute [rw] excluded_members
|
1208
|
+
# List of DB instance identifiers that aren't part of the custom
|
1209
|
+
# endpoint group. All other eligible instances are reachable through
|
1210
|
+
# the custom endpoint. Only relevant if the list of static members is
|
1211
|
+
# empty.
|
1212
|
+
# @return [Array<String>]
|
1213
|
+
#
|
1214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterEndpointMessage AWS API Documentation
|
1215
|
+
#
|
1216
|
+
class CreateDBClusterEndpointMessage < Struct.new(
|
1217
|
+
:db_cluster_identifier,
|
1218
|
+
:db_cluster_endpoint_identifier,
|
1219
|
+
:endpoint_type,
|
1220
|
+
:static_members,
|
1221
|
+
:excluded_members)
|
1222
|
+
include Aws::Structure
|
1223
|
+
end
|
1224
|
+
|
1177
1225
|
# @note When making an API call, you may pass CreateDBClusterMessage
|
1178
1226
|
# data as a hash:
|
1179
1227
|
#
|
@@ -1949,10 +1997,10 @@ module Aws::RDS
|
|
1949
1997
|
# following:
|
1950
1998
|
#
|
1951
1999
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
1952
|
-
#
|
2000
|
+
# 32768.
|
1953
2001
|
#
|
1954
2002
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
1955
|
-
#
|
2003
|
+
# 32768.
|
1956
2004
|
#
|
1957
2005
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
1958
2006
|
#
|
@@ -2760,7 +2808,7 @@ module Aws::RDS
|
|
2760
2808
|
# PostgreSQL DB instance.
|
2761
2809
|
#
|
2762
2810
|
# * Can specify a DB instance that is a MySQL Read Replica only if the
|
2763
|
-
# source is running MySQL 5.6.
|
2811
|
+
# source is running MySQL 5.6 or later.
|
2764
2812
|
#
|
2765
2813
|
# * Can specify a DB instance that is a PostgreSQL DB instance only if
|
2766
2814
|
# the source is running PostgreSQL 9.3.5 or later (9.4.7 and higher
|
@@ -3015,7 +3063,7 @@ module Aws::RDS
|
|
3015
3063
|
#
|
3016
3064
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
3017
3065
|
#
|
3018
|
-
# * Aurora 5.6 or higher
|
3066
|
+
# * Aurora MySQL 5.6 or higher
|
3019
3067
|
#
|
3020
3068
|
# Default: `false`
|
3021
3069
|
# @return [Boolean]
|
@@ -3709,6 +3757,10 @@ module Aws::RDS
|
|
3709
3757
|
# endpoint.
|
3710
3758
|
# @return [String]
|
3711
3759
|
#
|
3760
|
+
# @!attribute [rw] custom_endpoints
|
3761
|
+
# Identifies all custom endpoints associated with the cluster.
|
3762
|
+
# @return [Array<String>]
|
3763
|
+
#
|
3712
3764
|
# @!attribute [rw] multi_az
|
3713
3765
|
# Specifies whether the DB cluster has instances in multiple
|
3714
3766
|
# Availability Zones.
|
@@ -3883,6 +3935,7 @@ module Aws::RDS
|
|
3883
3935
|
:earliest_restorable_time,
|
3884
3936
|
:endpoint,
|
3885
3937
|
:reader_endpoint,
|
3938
|
+
:custom_endpoints,
|
3886
3939
|
:multi_az,
|
3887
3940
|
:engine,
|
3888
3941
|
:engine_version,
|
@@ -4024,6 +4077,105 @@ module Aws::RDS
|
|
4024
4077
|
include Aws::Structure
|
4025
4078
|
end
|
4026
4079
|
|
4080
|
+
# This data type represents the information you need to connect to an
|
4081
|
+
# Amazon Aurora DB cluster. This data type is used as a response element
|
4082
|
+
# in the following actions:
|
4083
|
+
#
|
4084
|
+
# * CreateDBClusterEndpoint
|
4085
|
+
#
|
4086
|
+
# * DescribeDBClusterEndpoints
|
4087
|
+
#
|
4088
|
+
# * ModifyDBClusterEndpoint
|
4089
|
+
#
|
4090
|
+
# * DeleteDBClusterEndpoint
|
4091
|
+
#
|
4092
|
+
# For the data structure that represents Amazon RDS DB instance
|
4093
|
+
# endpoints, see Endpoint.
|
4094
|
+
#
|
4095
|
+
# @!attribute [rw] db_cluster_endpoint_identifier
|
4096
|
+
# The identifier associated with the endpoint. This parameter is
|
4097
|
+
# stored as a lowercase string.
|
4098
|
+
# @return [String]
|
4099
|
+
#
|
4100
|
+
# @!attribute [rw] db_cluster_identifier
|
4101
|
+
# The DB cluster identifier of the DB cluster associated with the
|
4102
|
+
# endpoint. This parameter is stored as a lowercase string.
|
4103
|
+
# @return [String]
|
4104
|
+
#
|
4105
|
+
# @!attribute [rw] db_cluster_endpoint_resource_identifier
|
4106
|
+
# A unique system-generated identifier for an endpoint. It remains the
|
4107
|
+
# same for the whole life of the endpoint.
|
4108
|
+
# @return [String]
|
4109
|
+
#
|
4110
|
+
# @!attribute [rw] endpoint
|
4111
|
+
# The DNS address of the endpoint.
|
4112
|
+
# @return [String]
|
4113
|
+
#
|
4114
|
+
# @!attribute [rw] status
|
4115
|
+
# The current status of the endpoint. One of: `creating`, `available`,
|
4116
|
+
# `deleting`, `modifying`.
|
4117
|
+
# @return [String]
|
4118
|
+
#
|
4119
|
+
# @!attribute [rw] endpoint_type
|
4120
|
+
# The type of the endpoint. One of: `READER`, `WRITER`, `CUSTOM`.
|
4121
|
+
# @return [String]
|
4122
|
+
#
|
4123
|
+
# @!attribute [rw] custom_endpoint_type
|
4124
|
+
# The type associated with a custom endpoint. One of: `READER`, `ANY`.
|
4125
|
+
# @return [String]
|
4126
|
+
#
|
4127
|
+
# @!attribute [rw] static_members
|
4128
|
+
# List of DB instance identifiers that are part of the custom endpoint
|
4129
|
+
# group.
|
4130
|
+
# @return [Array<String>]
|
4131
|
+
#
|
4132
|
+
# @!attribute [rw] excluded_members
|
4133
|
+
# List of DB instance identifiers that aren't part of the custom
|
4134
|
+
# endpoint group. All other eligible instances are reachable through
|
4135
|
+
# the custom endpoint. Only relevant if the list of static members is
|
4136
|
+
# empty.
|
4137
|
+
# @return [Array<String>]
|
4138
|
+
#
|
4139
|
+
# @!attribute [rw] db_cluster_endpoint_arn
|
4140
|
+
# The Amazon Resource Name (ARN) for the endpoint.
|
4141
|
+
# @return [String]
|
4142
|
+
#
|
4143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterEndpoint AWS API Documentation
|
4144
|
+
#
|
4145
|
+
class DBClusterEndpoint < Struct.new(
|
4146
|
+
:db_cluster_endpoint_identifier,
|
4147
|
+
:db_cluster_identifier,
|
4148
|
+
:db_cluster_endpoint_resource_identifier,
|
4149
|
+
:endpoint,
|
4150
|
+
:status,
|
4151
|
+
:endpoint_type,
|
4152
|
+
:custom_endpoint_type,
|
4153
|
+
:static_members,
|
4154
|
+
:excluded_members,
|
4155
|
+
:db_cluster_endpoint_arn)
|
4156
|
+
include Aws::Structure
|
4157
|
+
end
|
4158
|
+
|
4159
|
+
# @!attribute [rw] marker
|
4160
|
+
# An optional pagination token provided by a previous
|
4161
|
+
# DescribeDBClusterEndpoints request. If this parameter is specified,
|
4162
|
+
# the response includes only records beyond the marker, up to the
|
4163
|
+
# value specified by `MaxRecords`.
|
4164
|
+
# @return [String]
|
4165
|
+
#
|
4166
|
+
# @!attribute [rw] db_cluster_endpoints
|
4167
|
+
# Contains the details of the endpoints associated with the cluster
|
4168
|
+
# and matching any filter conditions.
|
4169
|
+
# @return [Array<Types::DBClusterEndpoint>]
|
4170
|
+
#
|
4171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterEndpointMessage AWS API Documentation
|
4172
|
+
#
|
4173
|
+
class DBClusterEndpointMessage < Struct.new(
|
4174
|
+
:marker,
|
4175
|
+
:db_cluster_endpoints)
|
4176
|
+
include Aws::Structure
|
4177
|
+
end
|
4178
|
+
|
4027
4179
|
# Contains information about an instance that is part of a DB cluster.
|
4028
4180
|
#
|
4029
4181
|
# @!attribute [rw] db_instance_identifier
|
@@ -5499,6 +5651,25 @@ module Aws::RDS
|
|
5499
5651
|
include Aws::Structure
|
5500
5652
|
end
|
5501
5653
|
|
5654
|
+
# @note When making an API call, you may pass DeleteDBClusterEndpointMessage
|
5655
|
+
# data as a hash:
|
5656
|
+
#
|
5657
|
+
# {
|
5658
|
+
# db_cluster_endpoint_identifier: "String", # required
|
5659
|
+
# }
|
5660
|
+
#
|
5661
|
+
# @!attribute [rw] db_cluster_endpoint_identifier
|
5662
|
+
# The identifier associated with the custom endpoint. This parameter
|
5663
|
+
# is stored as a lowercase string.
|
5664
|
+
# @return [String]
|
5665
|
+
#
|
5666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterEndpointMessage AWS API Documentation
|
5667
|
+
#
|
5668
|
+
class DeleteDBClusterEndpointMessage < Struct.new(
|
5669
|
+
:db_cluster_endpoint_identifier)
|
5670
|
+
include Aws::Structure
|
5671
|
+
end
|
5672
|
+
|
5502
5673
|
# @note When making an API call, you may pass DeleteDBClusterMessage
|
5503
5674
|
# data as a hash:
|
5504
5675
|
#
|
@@ -6062,6 +6233,77 @@ module Aws::RDS
|
|
6062
6233
|
include Aws::Structure
|
6063
6234
|
end
|
6064
6235
|
|
6236
|
+
# @note When making an API call, you may pass DescribeDBClusterEndpointsMessage
|
6237
|
+
# data as a hash:
|
6238
|
+
#
|
6239
|
+
# {
|
6240
|
+
# db_cluster_identifier: "String",
|
6241
|
+
# db_cluster_endpoint_identifier: "String",
|
6242
|
+
# filters: [
|
6243
|
+
# {
|
6244
|
+
# name: "String", # required
|
6245
|
+
# values: ["String"], # required
|
6246
|
+
# },
|
6247
|
+
# ],
|
6248
|
+
# max_records: 1,
|
6249
|
+
# marker: "String",
|
6250
|
+
# }
|
6251
|
+
#
|
6252
|
+
# @!attribute [rw] db_cluster_identifier
|
6253
|
+
# The DB cluster identifier of the DB cluster associated with the
|
6254
|
+
# endpoint. This parameter is stored as a lowercase string.
|
6255
|
+
# @return [String]
|
6256
|
+
#
|
6257
|
+
# @!attribute [rw] db_cluster_endpoint_identifier
|
6258
|
+
# The identifier of the endpoint to describe. This parameter is stored
|
6259
|
+
# as a lowercase string.
|
6260
|
+
# @return [String]
|
6261
|
+
#
|
6262
|
+
# @!attribute [rw] filters
|
6263
|
+
# A set of name-value pairs that define which endpoints to include in
|
6264
|
+
# the output. The filters are specified as name-value pairs, in the
|
6265
|
+
# format
|
6266
|
+
# `Name=endpoint_type,Values=endpoint_type1,endpoint_type2,...`.
|
6267
|
+
# `Name` can be one of: `db-cluster-endpoint-type`,
|
6268
|
+
# `db-cluster-endpoint-custom-type`, `db-cluster-endpoint-id`,
|
6269
|
+
# `db-cluster-endpoint-status`. `Values` for the `
|
6270
|
+
# db-cluster-endpoint-type` filter can be one or more of: `reader`,
|
6271
|
+
# `writer`, `custom`. `Values` for the
|
6272
|
+
# `db-cluster-endpoint-custom-type` filter can be one or more of:
|
6273
|
+
# `reader`, `any`. `Values` for the `db-cluster-endpoint-status`
|
6274
|
+
# filter can be one or more of: `available`, `creating`, `deleting`,
|
6275
|
+
# `modifying`.
|
6276
|
+
# @return [Array<Types::Filter>]
|
6277
|
+
#
|
6278
|
+
# @!attribute [rw] max_records
|
6279
|
+
# The maximum number of records to include in the response. If more
|
6280
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
6281
|
+
# token called a marker is included in the response so that the
|
6282
|
+
# remaining results can be retrieved.
|
6283
|
+
#
|
6284
|
+
# Default: 100
|
6285
|
+
#
|
6286
|
+
# Constraints: Minimum 20, maximum 100.
|
6287
|
+
# @return [Integer]
|
6288
|
+
#
|
6289
|
+
# @!attribute [rw] marker
|
6290
|
+
# An optional pagination token provided by a previous
|
6291
|
+
# DescribeDBClusterEndpoints request. If this parameter is specified,
|
6292
|
+
# the response includes only records beyond the marker, up to the
|
6293
|
+
# value specified by `MaxRecords`.
|
6294
|
+
# @return [String]
|
6295
|
+
#
|
6296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterEndpointsMessage AWS API Documentation
|
6297
|
+
#
|
6298
|
+
class DescribeDBClusterEndpointsMessage < Struct.new(
|
6299
|
+
:db_cluster_identifier,
|
6300
|
+
:db_cluster_endpoint_identifier,
|
6301
|
+
:filters,
|
6302
|
+
:max_records,
|
6303
|
+
:marker)
|
6304
|
+
include Aws::Structure
|
6305
|
+
end
|
6306
|
+
|
6065
6307
|
# @note When making an API call, you may pass DescribeDBClusterParameterGroupsMessage
|
6066
6308
|
# data as a hash:
|
6067
6309
|
#
|
@@ -8157,7 +8399,9 @@ module Aws::RDS
|
|
8157
8399
|
include Aws::Structure
|
8158
8400
|
end
|
8159
8401
|
|
8160
|
-
# This data type
|
8402
|
+
# This data type represents the information you need to connect to an
|
8403
|
+
# Amazon RDS DB instance. This data type is used as a response element
|
8404
|
+
# in the following actions:
|
8161
8405
|
#
|
8162
8406
|
# * CreateDBInstance
|
8163
8407
|
#
|
@@ -8165,6 +8409,9 @@ module Aws::RDS
|
|
8165
8409
|
#
|
8166
8410
|
# * DeleteDBInstance
|
8167
8411
|
#
|
8412
|
+
# For the data structure that represents Amazon Aurora DB cluster
|
8413
|
+
# endpoints, see DBClusterEndpoint.
|
8414
|
+
#
|
8168
8415
|
# @!attribute [rw] address
|
8169
8416
|
# Specifies the DNS address of the DB instance.
|
8170
8417
|
# @return [String]
|
@@ -8462,6 +8709,8 @@ module Aws::RDS
|
|
8462
8709
|
#
|
8463
8710
|
# * DescribeDBClusterBacktracks
|
8464
8711
|
#
|
8712
|
+
# * DescribeDBClusterEndpoints
|
8713
|
+
#
|
8465
8714
|
# * DescribeDBClusters
|
8466
8715
|
#
|
8467
8716
|
# * DescribeDBInstances
|
@@ -8629,6 +8878,47 @@ module Aws::RDS
|
|
8629
8878
|
include Aws::Structure
|
8630
8879
|
end
|
8631
8880
|
|
8881
|
+
# @note When making an API call, you may pass ModifyDBClusterEndpointMessage
|
8882
|
+
# data as a hash:
|
8883
|
+
#
|
8884
|
+
# {
|
8885
|
+
# db_cluster_endpoint_identifier: "String", # required
|
8886
|
+
# endpoint_type: "String",
|
8887
|
+
# static_members: ["String"],
|
8888
|
+
# excluded_members: ["String"],
|
8889
|
+
# }
|
8890
|
+
#
|
8891
|
+
# @!attribute [rw] db_cluster_endpoint_identifier
|
8892
|
+
# The identifier of the endpoint to modify. This parameter is stored
|
8893
|
+
# as a lowercase string.
|
8894
|
+
# @return [String]
|
8895
|
+
#
|
8896
|
+
# @!attribute [rw] endpoint_type
|
8897
|
+
# The type of the endpoint. One of: `READER`, `ANY`.
|
8898
|
+
# @return [String]
|
8899
|
+
#
|
8900
|
+
# @!attribute [rw] static_members
|
8901
|
+
# List of DB instance identifiers that are part of the custom endpoint
|
8902
|
+
# group.
|
8903
|
+
# @return [Array<String>]
|
8904
|
+
#
|
8905
|
+
# @!attribute [rw] excluded_members
|
8906
|
+
# List of DB instance identifiers that aren't part of the custom
|
8907
|
+
# endpoint group. All other eligible instances are reachable through
|
8908
|
+
# the custom endpoint. Only relevant if the list of static members is
|
8909
|
+
# empty.
|
8910
|
+
# @return [Array<String>]
|
8911
|
+
#
|
8912
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterEndpointMessage AWS API Documentation
|
8913
|
+
#
|
8914
|
+
class ModifyDBClusterEndpointMessage < Struct.new(
|
8915
|
+
:db_cluster_endpoint_identifier,
|
8916
|
+
:endpoint_type,
|
8917
|
+
:static_members,
|
8918
|
+
:excluded_members)
|
8919
|
+
include Aws::Structure
|
8920
|
+
end
|
8921
|
+
|
8632
8922
|
# @note When making an API call, you may pass ModifyDBClusterMessage
|
8633
8923
|
# data as a hash:
|
8634
8924
|
#
|
@@ -9253,7 +9543,7 @@ module Aws::RDS
|
|
9253
9543
|
# * Must be a value from 0 to 35
|
9254
9544
|
#
|
9255
9545
|
# * Can be specified for a MySQL Read Replica only if the source is
|
9256
|
-
# running MySQL 5.6
|
9546
|
+
# running MySQL 5.6 or later
|
9257
9547
|
#
|
9258
9548
|
# * Can be specified for a PostgreSQL Read Replica only if the source
|
9259
9549
|
# is running PostgreSQL 9.3.5
|
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.37.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: 2018-
|
11
|
+
date: 2018-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|