aws-sdk-rds 1.74.0 → 1.75.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/certificate.rb +13 -0
- data/lib/aws-sdk-rds/client.rb +108 -2
- data/lib/aws-sdk-rds/client_api.rb +20 -0
- data/lib/aws-sdk-rds/db_cluster.rb +19 -0
- data/lib/aws-sdk-rds/resource.rb +19 -0
- data/lib/aws-sdk-rds/types.rb +78 -3
- 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: 58787abdfd2d8c2a49ab9771c11495aa13fb4770
|
4
|
+
data.tar.gz: 9e43c6d75fa7fc07b65d5b11089f3a7a1d9e3fbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e06e7ab5c038936d610100a64fd75db8172ab857aa45fa29fec4c360d41516a2027b9e46ed281e23b9ef541578e9ff136c346831bc87a849d3b4d886106290df
|
7
|
+
data.tar.gz: b71674433b418c9e1a8ee744b01a481975bb69f5189f15c0531709ed44bb0216b39689fddd759acc60cf059ff51a04f510bfc8c430442fc2c34c7600112f4541
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -62,6 +62,19 @@ module Aws::RDS
|
|
62
62
|
data[:certificate_arn]
|
63
63
|
end
|
64
64
|
|
65
|
+
# Whether there is an override for the default certificate identifier.
|
66
|
+
# @return [Boolean]
|
67
|
+
def customer_override
|
68
|
+
data[:customer_override]
|
69
|
+
end
|
70
|
+
|
71
|
+
# If there is an override for the default certificate identifier, when
|
72
|
+
# the override expires.
|
73
|
+
# @return [Time]
|
74
|
+
def customer_override_valid_till
|
75
|
+
data[:customer_override_valid_till]
|
76
|
+
end
|
77
|
+
|
65
78
|
# @!endgroup
|
66
79
|
|
67
80
|
# @return [Client]
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2010,6 +2010,25 @@ module Aws::RDS
|
|
2010
2010
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
2011
2011
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
2012
2012
|
#
|
2013
|
+
# Limitations and requirements apply to some DB engine modes. For more
|
2014
|
+
# information, see the following sections in the *Amazon Aurora User
|
2015
|
+
# Guide*\:
|
2016
|
+
#
|
2017
|
+
# * [ Limitations of Aurora Serverless][1]
|
2018
|
+
#
|
2019
|
+
# * [ Limitations of Parallel Query][2]
|
2020
|
+
#
|
2021
|
+
# * [ Requirements for Aurora Global Databases][3]
|
2022
|
+
#
|
2023
|
+
# * [ Limitations of Multi-Master Clusters][4]
|
2024
|
+
#
|
2025
|
+
#
|
2026
|
+
#
|
2027
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
2028
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
2029
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
2030
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
2031
|
+
#
|
2013
2032
|
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
2014
2033
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
2015
2034
|
# of the DB cluster.
|
@@ -6345,6 +6364,8 @@ module Aws::RDS
|
|
6345
6364
|
# resp.certificates[0].valid_from #=> Time
|
6346
6365
|
# resp.certificates[0].valid_till #=> Time
|
6347
6366
|
# resp.certificates[0].certificate_arn #=> String
|
6367
|
+
# resp.certificates[0].customer_override #=> Boolean
|
6368
|
+
# resp.certificates[0].customer_override_valid_till #=> Time
|
6348
6369
|
# resp.marker #=> String
|
6349
6370
|
#
|
6350
6371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeCertificates AWS API Documentation
|
@@ -7106,7 +7127,8 @@ module Aws::RDS
|
|
7106
7127
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
7107
7128
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
7108
7129
|
#
|
7109
|
-
# <note markdown="1"> This
|
7130
|
+
# <note markdown="1"> This operation can also return information for Amazon Neptune DB
|
7131
|
+
# instances and Amazon DocumentDB instances.
|
7110
7132
|
#
|
7111
7133
|
# </note>
|
7112
7134
|
#
|
@@ -7537,6 +7559,11 @@ module Aws::RDS
|
|
7537
7559
|
# Returns information about provisioned RDS instances. This API supports
|
7538
7560
|
# pagination.
|
7539
7561
|
#
|
7562
|
+
# <note markdown="1"> This operation can also return information for Amazon Neptune DB
|
7563
|
+
# instances and Amazon DocumentDB instances.
|
7564
|
+
#
|
7565
|
+
# </note>
|
7566
|
+
#
|
7540
7567
|
# @option params [String] :db_instance_identifier
|
7541
7568
|
# The user-supplied instance identifier. If this parameter is specified,
|
7542
7569
|
# information from only the specific DB instance is returned. This
|
@@ -10615,6 +10642,85 @@ module Aws::RDS
|
|
10615
10642
|
req.send_request(options)
|
10616
10643
|
end
|
10617
10644
|
|
10645
|
+
# Override the system-default Secure Sockets Layer/Transport Layer
|
10646
|
+
# Security (SSL/TLS) certificate for Amazon RDS for new DB instances, or
|
10647
|
+
# remove the override.
|
10648
|
+
#
|
10649
|
+
# By using this operation, you can specify an RDS-approved SSL/TLS
|
10650
|
+
# certificate for new DB instances that is different from the default
|
10651
|
+
# certificate provided by RDS. You can also use this operation to remove
|
10652
|
+
# the override, so that new DB instances use the default certificate
|
10653
|
+
# provided by RDS.
|
10654
|
+
#
|
10655
|
+
# You might need to override the default certificate in the following
|
10656
|
+
# situations:
|
10657
|
+
#
|
10658
|
+
# * You already migrated your applications to support the latest
|
10659
|
+
# certificate authority (CA) certificate, but the new CA certificate
|
10660
|
+
# is not yet the RDS default CA certificate for the specified AWS
|
10661
|
+
# Region.
|
10662
|
+
#
|
10663
|
+
# * RDS has already moved to a new default CA certificate for the
|
10664
|
+
# specified AWS Region, but you are still in the process of supporting
|
10665
|
+
# the new CA certificate. In this case, you temporarily need
|
10666
|
+
# additional time to finish your application changes.
|
10667
|
+
#
|
10668
|
+
# For more information about rotating your SSL/TLS certificate for RDS
|
10669
|
+
# DB engines, see [ Rotating Your SSL/TLS Certificate][1] in the *Amazon
|
10670
|
+
# RDS User Guide*.
|
10671
|
+
#
|
10672
|
+
# For more information about rotating your SSL/TLS certificate for
|
10673
|
+
# Aurora DB engines, see [ Rotating Your SSL/TLS Certificate][2] in the
|
10674
|
+
# *Amazon Aurora User Guide*.
|
10675
|
+
#
|
10676
|
+
#
|
10677
|
+
#
|
10678
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
10679
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
10680
|
+
#
|
10681
|
+
# @option params [String] :certificate_identifier
|
10682
|
+
# The new default certificate identifier to override the current one
|
10683
|
+
# with.
|
10684
|
+
#
|
10685
|
+
# To determine the valid values, use the `describe-certificates` AWS CLI
|
10686
|
+
# command or the `DescribeCertificates` API operation.
|
10687
|
+
#
|
10688
|
+
# @option params [Boolean] :remove_customer_override
|
10689
|
+
# A value that indicates whether to remove the override for the default
|
10690
|
+
# certificate. If the override is removed, the default certificate is
|
10691
|
+
# the system default.
|
10692
|
+
#
|
10693
|
+
# @return [Types::ModifyCertificatesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10694
|
+
#
|
10695
|
+
# * {Types::ModifyCertificatesResult#certificate #certificate} => Types::Certificate
|
10696
|
+
#
|
10697
|
+
# @example Request syntax with placeholder values
|
10698
|
+
#
|
10699
|
+
# resp = client.modify_certificates({
|
10700
|
+
# certificate_identifier: "String",
|
10701
|
+
# remove_customer_override: false,
|
10702
|
+
# })
|
10703
|
+
#
|
10704
|
+
# @example Response structure
|
10705
|
+
#
|
10706
|
+
# resp.certificate.certificate_identifier #=> String
|
10707
|
+
# resp.certificate.certificate_type #=> String
|
10708
|
+
# resp.certificate.thumbprint #=> String
|
10709
|
+
# resp.certificate.valid_from #=> Time
|
10710
|
+
# resp.certificate.valid_till #=> Time
|
10711
|
+
# resp.certificate.certificate_arn #=> String
|
10712
|
+
# resp.certificate.customer_override #=> Boolean
|
10713
|
+
# resp.certificate.customer_override_valid_till #=> Time
|
10714
|
+
#
|
10715
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificates AWS API Documentation
|
10716
|
+
#
|
10717
|
+
# @overload modify_certificates(params = {})
|
10718
|
+
# @param [Hash] params ({})
|
10719
|
+
def modify_certificates(params = {}, options = {})
|
10720
|
+
req = build_request(:modify_certificates, params)
|
10721
|
+
req.send_request(options)
|
10722
|
+
end
|
10723
|
+
|
10618
10724
|
# Set the capacity of an Aurora Serverless DB cluster to a specific
|
10619
10725
|
# value.
|
10620
10726
|
#
|
@@ -17736,7 +17842,7 @@ module Aws::RDS
|
|
17736
17842
|
params: params,
|
17737
17843
|
config: config)
|
17738
17844
|
context[:gem_name] = 'aws-sdk-rds'
|
17739
|
-
context[:gem_version] = '1.
|
17845
|
+
context[:gem_version] = '1.75.0'
|
17740
17846
|
Seahorse::Client::Request.new(handlers, context)
|
17741
17847
|
end
|
17742
17848
|
|
@@ -364,6 +364,8 @@ module Aws::RDS
|
|
364
364
|
MaxRecords = Shapes::IntegerShape.new(name: 'MaxRecords')
|
365
365
|
MinimumEngineVersionPerAllowedValue = Shapes::StructureShape.new(name: 'MinimumEngineVersionPerAllowedValue')
|
366
366
|
MinimumEngineVersionPerAllowedValueList = Shapes::ListShape.new(name: 'MinimumEngineVersionPerAllowedValueList')
|
367
|
+
ModifyCertificatesMessage = Shapes::StructureShape.new(name: 'ModifyCertificatesMessage')
|
368
|
+
ModifyCertificatesResult = Shapes::StructureShape.new(name: 'ModifyCertificatesResult')
|
367
369
|
ModifyCurrentDBClusterCapacityMessage = Shapes::StructureShape.new(name: 'ModifyCurrentDBClusterCapacityMessage')
|
368
370
|
ModifyDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterEndpointMessage')
|
369
371
|
ModifyDBClusterMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterMessage')
|
@@ -622,6 +624,8 @@ module Aws::RDS
|
|
622
624
|
Certificate.add_member(:valid_from, Shapes::ShapeRef.new(shape: TStamp, location_name: "ValidFrom"))
|
623
625
|
Certificate.add_member(:valid_till, Shapes::ShapeRef.new(shape: TStamp, location_name: "ValidTill"))
|
624
626
|
Certificate.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "CertificateArn"))
|
627
|
+
Certificate.add_member(:customer_override, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CustomerOverride"))
|
628
|
+
Certificate.add_member(:customer_override_valid_till, Shapes::ShapeRef.new(shape: TStamp, location_name: "CustomerOverrideValidTill"))
|
625
629
|
Certificate.struct_class = Types::Certificate
|
626
630
|
|
627
631
|
CertificateList.member = Shapes::ShapeRef.new(shape: Certificate, location_name: "Certificate")
|
@@ -1980,6 +1984,13 @@ module Aws::RDS
|
|
1980
1984
|
|
1981
1985
|
MinimumEngineVersionPerAllowedValueList.member = Shapes::ShapeRef.new(shape: MinimumEngineVersionPerAllowedValue, location_name: "MinimumEngineVersionPerAllowedValue")
|
1982
1986
|
|
1987
|
+
ModifyCertificatesMessage.add_member(:certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CertificateIdentifier"))
|
1988
|
+
ModifyCertificatesMessage.add_member(:remove_customer_override, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RemoveCustomerOverride"))
|
1989
|
+
ModifyCertificatesMessage.struct_class = Types::ModifyCertificatesMessage
|
1990
|
+
|
1991
|
+
ModifyCertificatesResult.add_member(:certificate, Shapes::ShapeRef.new(shape: Certificate, location_name: "Certificate"))
|
1992
|
+
ModifyCertificatesResult.struct_class = Types::ModifyCertificatesResult
|
1993
|
+
|
1983
1994
|
ModifyCurrentDBClusterCapacityMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
1984
1995
|
ModifyCurrentDBClusterCapacityMessage.add_member(:capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Capacity"))
|
1985
1996
|
ModifyCurrentDBClusterCapacityMessage.add_member(:seconds_before_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsBeforeTimeout"))
|
@@ -3958,6 +3969,15 @@ module Aws::RDS
|
|
3958
3969
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
3959
3970
|
end)
|
3960
3971
|
|
3972
|
+
api.add_operation(:modify_certificates, Seahorse::Model::Operation.new.tap do |o|
|
3973
|
+
o.name = "ModifyCertificates"
|
3974
|
+
o.http_method = "POST"
|
3975
|
+
o.http_request_uri = "/"
|
3976
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyCertificatesMessage)
|
3977
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyCertificatesResult)
|
3978
|
+
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
3979
|
+
end)
|
3980
|
+
|
3961
3981
|
api.add_operation(:modify_current_db_cluster_capacity, Seahorse::Model::Operation.new.tap do |o|
|
3962
3982
|
o.name = "ModifyCurrentDBClusterCapacity"
|
3963
3983
|
o.http_method = "POST"
|
@@ -865,6 +865,25 @@ module Aws::RDS
|
|
865
865
|
# @option options [String] :engine_mode
|
866
866
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
867
867
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
868
|
+
#
|
869
|
+
# Limitations and requirements apply to some DB engine modes. For more
|
870
|
+
# information, see the following sections in the *Amazon Aurora User
|
871
|
+
# Guide*\:
|
872
|
+
#
|
873
|
+
# * [ Limitations of Aurora Serverless][1]
|
874
|
+
#
|
875
|
+
# * [ Limitations of Parallel Query][2]
|
876
|
+
#
|
877
|
+
# * [ Requirements for Aurora Global Databases][3]
|
878
|
+
#
|
879
|
+
# * [ Limitations of Multi-Master Clusters][4]
|
880
|
+
#
|
881
|
+
#
|
882
|
+
#
|
883
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
884
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
885
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
886
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
868
887
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
869
888
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
870
889
|
# of the DB cluster.
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -347,6 +347,25 @@ module Aws::RDS
|
|
347
347
|
# @option options [String] :engine_mode
|
348
348
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
349
349
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
350
|
+
#
|
351
|
+
# Limitations and requirements apply to some DB engine modes. For more
|
352
|
+
# information, see the following sections in the *Amazon Aurora User
|
353
|
+
# Guide*\:
|
354
|
+
#
|
355
|
+
# * [ Limitations of Aurora Serverless][1]
|
356
|
+
#
|
357
|
+
# * [ Limitations of Parallel Query][2]
|
358
|
+
#
|
359
|
+
# * [ Requirements for Aurora Global Databases][3]
|
360
|
+
#
|
361
|
+
# * [ Limitations of Multi-Master Clusters][4]
|
362
|
+
#
|
363
|
+
#
|
364
|
+
#
|
365
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
366
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
367
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
368
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
350
369
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
351
370
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
352
371
|
# of the DB cluster.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -63,6 +63,9 @@ module Aws::RDS
|
|
63
63
|
# * `DBInstances` - The number of DB instances per account. The used
|
64
64
|
# value is the count of the DB instances in the account.
|
65
65
|
#
|
66
|
+
# Amazon RDS DB instances, Amazon Aurora DB instances, Amazon Neptune
|
67
|
+
# instances, and Amazon DocumentDB instances apply to this quota.
|
68
|
+
#
|
66
69
|
# * `DBParameterGroups` - The number of DB parameter groups per account,
|
67
70
|
# excluding default parameter groups. The used value is the count of
|
68
71
|
# nondefault DB parameter groups in the account.
|
@@ -101,8 +104,9 @@ module Aws::RDS
|
|
101
104
|
# group in the account. Other DB subnet groups in the account might
|
102
105
|
# have a lower number of subnets.
|
103
106
|
#
|
104
|
-
# For more information, see [
|
105
|
-
# and [
|
107
|
+
# For more information, see [Quotas for Amazon RDS][1] in the *Amazon
|
108
|
+
# RDS User Guide* and [Quotas for Amazon Aurora][2] in the *Amazon
|
109
|
+
# Aurora User Guide*.
|
106
110
|
#
|
107
111
|
#
|
108
112
|
#
|
@@ -562,6 +566,15 @@ module Aws::RDS
|
|
562
566
|
# The Amazon Resource Name (ARN) for the certificate.
|
563
567
|
# @return [String]
|
564
568
|
#
|
569
|
+
# @!attribute [rw] customer_override
|
570
|
+
# Whether there is an override for the default certificate identifier.
|
571
|
+
# @return [Boolean]
|
572
|
+
#
|
573
|
+
# @!attribute [rw] customer_override_valid_till
|
574
|
+
# If there is an override for the default certificate identifier, when
|
575
|
+
# the override expires.
|
576
|
+
# @return [Time]
|
577
|
+
#
|
565
578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Certificate AWS API Documentation
|
566
579
|
#
|
567
580
|
class Certificate < Struct.new(
|
@@ -570,7 +583,9 @@ module Aws::RDS
|
|
570
583
|
:thumbprint,
|
571
584
|
:valid_from,
|
572
585
|
:valid_till,
|
573
|
-
:certificate_arn
|
586
|
+
:certificate_arn,
|
587
|
+
:customer_override,
|
588
|
+
:customer_override_valid_till)
|
574
589
|
include Aws::Structure
|
575
590
|
end
|
576
591
|
|
@@ -1962,6 +1977,25 @@ module Aws::RDS
|
|
1962
1977
|
# @!attribute [rw] engine_mode
|
1963
1978
|
# The DB engine mode of the DB cluster, either `provisioned`,
|
1964
1979
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
1980
|
+
#
|
1981
|
+
# Limitations and requirements apply to some DB engine modes. For more
|
1982
|
+
# information, see the following sections in the *Amazon Aurora User
|
1983
|
+
# Guide*\:
|
1984
|
+
#
|
1985
|
+
# * [ Limitations of Aurora Serverless][1]
|
1986
|
+
#
|
1987
|
+
# * [ Limitations of Parallel Query][2]
|
1988
|
+
#
|
1989
|
+
# * [ Requirements for Aurora Global Databases][3]
|
1990
|
+
#
|
1991
|
+
# * [ Limitations of Multi-Master Clusters][4]
|
1992
|
+
#
|
1993
|
+
#
|
1994
|
+
#
|
1995
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
1996
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
1997
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
1998
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
1965
1999
|
# @return [String]
|
1966
2000
|
#
|
1967
2001
|
# @!attribute [rw] scaling_configuration
|
@@ -11184,6 +11218,47 @@ module Aws::RDS
|
|
11184
11218
|
include Aws::Structure
|
11185
11219
|
end
|
11186
11220
|
|
11221
|
+
# @note When making an API call, you may pass ModifyCertificatesMessage
|
11222
|
+
# data as a hash:
|
11223
|
+
#
|
11224
|
+
# {
|
11225
|
+
# certificate_identifier: "String",
|
11226
|
+
# remove_customer_override: false,
|
11227
|
+
# }
|
11228
|
+
#
|
11229
|
+
# @!attribute [rw] certificate_identifier
|
11230
|
+
# The new default certificate identifier to override the current one
|
11231
|
+
# with.
|
11232
|
+
#
|
11233
|
+
# To determine the valid values, use the `describe-certificates` AWS
|
11234
|
+
# CLI command or the `DescribeCertificates` API operation.
|
11235
|
+
# @return [String]
|
11236
|
+
#
|
11237
|
+
# @!attribute [rw] remove_customer_override
|
11238
|
+
# A value that indicates whether to remove the override for the
|
11239
|
+
# default certificate. If the override is removed, the default
|
11240
|
+
# certificate is the system default.
|
11241
|
+
# @return [Boolean]
|
11242
|
+
#
|
11243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificatesMessage AWS API Documentation
|
11244
|
+
#
|
11245
|
+
class ModifyCertificatesMessage < Struct.new(
|
11246
|
+
:certificate_identifier,
|
11247
|
+
:remove_customer_override)
|
11248
|
+
include Aws::Structure
|
11249
|
+
end
|
11250
|
+
|
11251
|
+
# @!attribute [rw] certificate
|
11252
|
+
# A CA certificate for an AWS account.
|
11253
|
+
# @return [Types::Certificate]
|
11254
|
+
#
|
11255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificatesResult AWS API Documentation
|
11256
|
+
#
|
11257
|
+
class ModifyCertificatesResult < Struct.new(
|
11258
|
+
:certificate)
|
11259
|
+
include Aws::Structure
|
11260
|
+
end
|
11261
|
+
|
11187
11262
|
# @note When making an API call, you may pass ModifyCurrentDBClusterCapacityMessage
|
11188
11263
|
# data as a hash:
|
11189
11264
|
#
|
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.75.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:
|
11
|
+
date: 2020-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|