aws-sdk-rds 1.92.0 → 1.97.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +2 -2
- data/lib/aws-sdk-rds/client.rb +260 -148
- data/lib/aws-sdk-rds/client_api.rb +13 -0
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +11 -22
- data/lib/aws-sdk-rds/db_cluster.rb +7 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +10 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +14 -0
- data/lib/aws-sdk-rds/db_instance.rb +84 -54
- data/lib/aws-sdk-rds/db_snapshot.rb +4 -13
- data/lib/aws-sdk-rds/event_subscription.rb +35 -22
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +46 -35
- data/lib/aws-sdk-rds/types.rb +279 -126
- metadata +2 -2
@@ -434,6 +434,7 @@ module Aws::RDS
|
|
434
434
|
OrderableDBInstanceOption = Shapes::StructureShape.new(name: 'OrderableDBInstanceOption')
|
435
435
|
OrderableDBInstanceOptionsList = Shapes::ListShape.new(name: 'OrderableDBInstanceOptionsList')
|
436
436
|
OrderableDBInstanceOptionsMessage = Shapes::StructureShape.new(name: 'OrderableDBInstanceOptionsMessage')
|
437
|
+
Outpost = Shapes::StructureShape.new(name: 'Outpost')
|
437
438
|
Parameter = Shapes::StructureShape.new(name: 'Parameter')
|
438
439
|
ParametersList = Shapes::ListShape.new(name: 'ParametersList')
|
439
440
|
PendingCloudwatchLogsExports = Shapes::StructureShape.new(name: 'PendingCloudwatchLogsExports')
|
@@ -471,6 +472,7 @@ module Aws::RDS
|
|
471
472
|
RemoveSourceIdentifierFromSubscriptionMessage = Shapes::StructureShape.new(name: 'RemoveSourceIdentifierFromSubscriptionMessage')
|
472
473
|
RemoveSourceIdentifierFromSubscriptionResult = Shapes::StructureShape.new(name: 'RemoveSourceIdentifierFromSubscriptionResult')
|
473
474
|
RemoveTagsFromResourceMessage = Shapes::StructureShape.new(name: 'RemoveTagsFromResourceMessage')
|
475
|
+
ReplicaMode = Shapes::StringShape.new(name: 'ReplicaMode')
|
474
476
|
ReservedDBInstance = Shapes::StructureShape.new(name: 'ReservedDBInstance')
|
475
477
|
ReservedDBInstanceAlreadyExistsFault = Shapes::StructureShape.new(name: 'ReservedDBInstanceAlreadyExistsFault')
|
476
478
|
ReservedDBInstanceList = Shapes::ListShape.new(name: 'ReservedDBInstanceList')
|
@@ -894,6 +896,7 @@ module Aws::RDS
|
|
894
896
|
CreateDBInstanceReadReplicaMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
895
897
|
CreateDBInstanceReadReplicaMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
896
898
|
CreateDBInstanceReadReplicaMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
899
|
+
CreateDBInstanceReadReplicaMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
897
900
|
CreateDBInstanceReadReplicaMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
898
901
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
899
902
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
@@ -1225,6 +1228,8 @@ module Aws::RDS
|
|
1225
1228
|
DBEngineVersion.add_member(:supported_engine_modes, Shapes::ShapeRef.new(shape: EngineModeList, location_name: "SupportedEngineModes"))
|
1226
1229
|
DBEngineVersion.add_member(:supported_feature_names, Shapes::ShapeRef.new(shape: FeatureNameList, location_name: "SupportedFeatureNames"))
|
1227
1230
|
DBEngineVersion.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
1231
|
+
DBEngineVersion.add_member(:supports_parallel_query, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsParallelQuery"))
|
1232
|
+
DBEngineVersion.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsGlobalDatabases"))
|
1228
1233
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1229
1234
|
|
1230
1235
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -1258,6 +1263,7 @@ module Aws::RDS
|
|
1258
1263
|
DBInstance.add_member(:read_replica_source_db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReadReplicaSourceDBInstanceIdentifier"))
|
1259
1264
|
DBInstance.add_member(:read_replica_db_instance_identifiers, Shapes::ShapeRef.new(shape: ReadReplicaDBInstanceIdentifierList, location_name: "ReadReplicaDBInstanceIdentifiers"))
|
1260
1265
|
DBInstance.add_member(:read_replica_db_cluster_identifiers, Shapes::ShapeRef.new(shape: ReadReplicaDBClusterIdentifierList, location_name: "ReadReplicaDBClusterIdentifiers"))
|
1266
|
+
DBInstance.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
1261
1267
|
DBInstance.add_member(:license_model, Shapes::ShapeRef.new(shape: String, location_name: "LicenseModel"))
|
1262
1268
|
DBInstance.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
1263
1269
|
DBInstance.add_member(:option_group_memberships, Shapes::ShapeRef.new(shape: OptionGroupMembershipList, location_name: "OptionGroupMemberships"))
|
@@ -2328,6 +2334,7 @@ module Aws::RDS
|
|
2328
2334
|
ModifyDBInstanceMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
2329
2335
|
ModifyDBInstanceMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
2330
2336
|
ModifyDBInstanceMessage.add_member(:certificate_rotation_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CertificateRotationRestart"))
|
2337
|
+
ModifyDBInstanceMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
2331
2338
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
2332
2339
|
|
2333
2340
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -2550,6 +2557,8 @@ module Aws::RDS
|
|
2550
2557
|
OrderableDBInstanceOption.add_member(:supported_engine_modes, Shapes::ShapeRef.new(shape: EngineModeList, location_name: "SupportedEngineModes"))
|
2551
2558
|
OrderableDBInstanceOption.add_member(:supports_storage_autoscaling, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsStorageAutoscaling"))
|
2552
2559
|
OrderableDBInstanceOption.add_member(:supports_kerberos_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsKerberosAuthentication"))
|
2560
|
+
OrderableDBInstanceOption.add_member(:outpost_capable, Shapes::ShapeRef.new(shape: Boolean, location_name: "OutpostCapable"))
|
2561
|
+
OrderableDBInstanceOption.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsGlobalDatabases"))
|
2553
2562
|
OrderableDBInstanceOption.struct_class = Types::OrderableDBInstanceOption
|
2554
2563
|
|
2555
2564
|
OrderableDBInstanceOptionsList.member = Shapes::ShapeRef.new(shape: OrderableDBInstanceOption, location_name: "OrderableDBInstanceOption")
|
@@ -2558,6 +2567,9 @@ module Aws::RDS
|
|
2558
2567
|
OrderableDBInstanceOptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2559
2568
|
OrderableDBInstanceOptionsMessage.struct_class = Types::OrderableDBInstanceOptionsMessage
|
2560
2569
|
|
2570
|
+
Outpost.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "Arn"))
|
2571
|
+
Outpost.struct_class = Types::Outpost
|
2572
|
+
|
2561
2573
|
Parameter.add_member(:parameter_name, Shapes::ShapeRef.new(shape: String, location_name: "ParameterName"))
|
2562
2574
|
Parameter.add_member(:parameter_value, Shapes::ShapeRef.new(shape: String, location_name: "ParameterValue"))
|
2563
2575
|
Parameter.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
@@ -3095,6 +3107,7 @@ module Aws::RDS
|
|
3095
3107
|
|
3096
3108
|
Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
|
3097
3109
|
Subnet.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "SubnetAvailabilityZone"))
|
3110
|
+
Subnet.add_member(:subnet_outpost, Shapes::ShapeRef.new(shape: Outpost, location_name: "SubnetOutpost"))
|
3098
3111
|
Subnet.add_member(:subnet_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetStatus"))
|
3099
3112
|
Subnet.struct_class = Types::Subnet
|
3100
3113
|
|
@@ -4,30 +4,20 @@ require 'aws-sigv4'
|
|
4
4
|
|
5
5
|
module Aws
|
6
6
|
module RDS
|
7
|
-
|
8
|
-
#
|
9
|
-
#
|
7
|
+
# A utility class that generates an auth token that supports database
|
8
|
+
# logins. IAM credentials are used for authentication instead of the
|
9
|
+
# database password.
|
10
10
|
#
|
11
|
-
#
|
12
|
-
# a presigned url
|
11
|
+
# @see https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
13
12
|
class AuthTokenGenerator
|
14
|
-
|
15
|
-
#
|
16
|
-
#
|
17
|
-
# returning another object that responds to `#access_key_id`, `#secret_access_key`,
|
18
|
-
# and `#session_token`.
|
19
|
-
#
|
20
|
-
# For example, you could provide an instance of following classes:
|
21
|
-
# * `Aws::Credentials`
|
22
|
-
# * `Aws::SharedCredentials`
|
23
|
-
# * `Aws::InstanceProfileCredentials`
|
24
|
-
# * `Aws::AssumeRoleCredentials`
|
25
|
-
# * `Aws::ECSCredentials`
|
13
|
+
# @option options [required, Credentials] :credentials An object that
|
14
|
+
# responds to `#credentials` returning another object that responds to
|
15
|
+
# `#access_key_id`, `#secret_access_key`, and `#session_token`.
|
26
16
|
def initialize(options = {})
|
27
17
|
@credentials = options.fetch(:credentials)
|
28
18
|
end
|
29
19
|
|
30
|
-
#
|
20
|
+
# Creates an auth login token.
|
31
21
|
#
|
32
22
|
# @param [Hash] params The parameters for auth token creation.
|
33
23
|
# @option params [required, String] :region Region where the database
|
@@ -35,7 +25,7 @@ module Aws
|
|
35
25
|
# @option params [required, String] :endpoint Hostname of the database
|
36
26
|
# with a port number.
|
37
27
|
# For example: my-instance.us-west-2.rds.amazonaws.com:3306
|
38
|
-
# @option params [required, String] :user_name Username to login as
|
28
|
+
# @option params [required, String] :user_name Username to login as.
|
39
29
|
#
|
40
30
|
# @return [String]
|
41
31
|
def auth_token(params)
|
@@ -52,17 +42,16 @@ module Aws
|
|
52
42
|
region: region,
|
53
43
|
credentials_provider: @credentials
|
54
44
|
)
|
55
|
-
|
45
|
+
|
56
46
|
presigned_url = signer.presign_url(
|
57
47
|
http_method: 'GET',
|
58
|
-
url:
|
48
|
+
url: "https://#{endpoint}/?#{param_list}",
|
59
49
|
body: '',
|
60
50
|
expires_in: 900
|
61
51
|
).to_s
|
62
52
|
# Remove extra scheme for token
|
63
53
|
presigned_url[8..-1]
|
64
54
|
end
|
65
|
-
|
66
55
|
end
|
67
56
|
end
|
68
57
|
end
|
@@ -1339,6 +1339,13 @@ module Aws::RDS
|
|
1339
1339
|
# The Active Directory directory ID to move the DB cluster to. Specify
|
1340
1340
|
# `none` to remove the cluster from its current domain. The domain must
|
1341
1341
|
# be created prior to this operation.
|
1342
|
+
#
|
1343
|
+
# For more information, see [Kerberos Authentication][1] in the *Amazon
|
1344
|
+
# Aurora User Guide*.
|
1345
|
+
#
|
1346
|
+
#
|
1347
|
+
#
|
1348
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
1342
1349
|
# @option options [String] :domain_iam_role_name
|
1343
1350
|
# Specify the name of the IAM role to be used when making API calls to
|
1344
1351
|
# the Directory Service.
|
@@ -667,7 +667,16 @@ module Aws::RDS
|
|
667
667
|
# copy them.
|
668
668
|
# @option options [String] :domain
|
669
669
|
# Specify the Active Directory directory ID to restore the DB cluster
|
670
|
-
# in. The domain must be created prior to this operation.
|
670
|
+
# in. The domain must be created prior to this operation. Currently,
|
671
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
672
|
+
# can be created in an Active Directory Domain.
|
673
|
+
#
|
674
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
675
|
+
# RDS User Guide*.
|
676
|
+
#
|
677
|
+
#
|
678
|
+
#
|
679
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
671
680
|
# @option options [String] :domain_iam_role_name
|
672
681
|
# Specify the name of the IAM role to be used when making API calls to
|
673
682
|
# the Directory Service.
|
@@ -141,6 +141,20 @@ module Aws::RDS
|
|
141
141
|
data[:status]
|
142
142
|
end
|
143
143
|
|
144
|
+
# A value that indicates whether you can use Aurora parallel query with
|
145
|
+
# a specific DB engine version.
|
146
|
+
# @return [Boolean]
|
147
|
+
def supports_parallel_query
|
148
|
+
data[:supports_parallel_query]
|
149
|
+
end
|
150
|
+
|
151
|
+
# A value that indicates whether you can use Aurora global databases
|
152
|
+
# with a specific DB engine version.
|
153
|
+
# @return [Boolean]
|
154
|
+
def supports_global_databases
|
155
|
+
data[:supports_global_databases]
|
156
|
+
end
|
157
|
+
|
144
158
|
# @!endgroup
|
145
159
|
|
146
160
|
# @return [Client]
|
@@ -225,6 +225,22 @@ module Aws::RDS
|
|
225
225
|
data[:read_replica_db_cluster_identifiers]
|
226
226
|
end
|
227
227
|
|
228
|
+
# The open mode of an Oracle read replica. The default is
|
229
|
+
# `open-read-only`. For more information, see [Working with Oracle Read
|
230
|
+
# Replicas for Amazon RDS][1] in the *Amazon RDS User Guide*.
|
231
|
+
#
|
232
|
+
# <note markdown="1"> This attribute is only supported in RDS for Oracle.
|
233
|
+
#
|
234
|
+
# </note>
|
235
|
+
#
|
236
|
+
#
|
237
|
+
#
|
238
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
239
|
+
# @return [String]
|
240
|
+
def replica_mode
|
241
|
+
data[:replica_mode]
|
242
|
+
end
|
243
|
+
|
228
244
|
# License model information for this DB instance.
|
229
245
|
# @return [String]
|
230
246
|
def license_model
|
@@ -707,6 +723,9 @@ module Aws::RDS
|
|
707
723
|
#
|
708
724
|
# * Must contain 1 to 64 letters or numbers.
|
709
725
|
#
|
726
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
727
|
+
# underscores, or digits (0-9).
|
728
|
+
#
|
710
729
|
# * Can't be a word reserved by the specified database engine
|
711
730
|
#
|
712
731
|
# **MariaDB**
|
@@ -719,6 +738,9 @@ module Aws::RDS
|
|
719
738
|
#
|
720
739
|
# * Must contain 1 to 64 letters or numbers.
|
721
740
|
#
|
741
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
742
|
+
# underscores, or digits (0-9).
|
743
|
+
#
|
722
744
|
# * Can't be a word reserved by the specified database engine
|
723
745
|
#
|
724
746
|
# **PostgreSQL**
|
@@ -731,8 +753,8 @@ module Aws::RDS
|
|
731
753
|
#
|
732
754
|
# * Must contain 1 to 63 letters, numbers, or underscores.
|
733
755
|
#
|
734
|
-
# * Must begin with a letter
|
735
|
-
#
|
756
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
757
|
+
# underscores, or digits (0-9).
|
736
758
|
#
|
737
759
|
# * Can't be a word reserved by the specified database engine
|
738
760
|
#
|
@@ -1330,24 +1352,15 @@ module Aws::RDS
|
|
1330
1352
|
# for each AWS Region.
|
1331
1353
|
# @option options [String] :domain
|
1332
1354
|
# The Active Directory directory ID to create the DB instance in.
|
1333
|
-
# Currently, only Microsoft SQL Server and
|
1334
|
-
# created in an Active Directory Domain.
|
1355
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
1356
|
+
# instances can be created in an Active Directory Domain.
|
1335
1357
|
#
|
1336
|
-
# For
|
1337
|
-
# Authentication to authenticate users that connect to the DB instance.
|
1338
|
-
# For more information, see [ Using Windows Authentication with an
|
1339
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
1358
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
1340
1359
|
# RDS User Guide*.
|
1341
1360
|
#
|
1342
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
1343
|
-
# authenticate users that connect to the DB instance. For more
|
1344
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
1345
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
1346
1361
|
#
|
1347
1362
|
#
|
1348
|
-
#
|
1349
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
1350
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
1363
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
1351
1364
|
# @option options [Boolean] :copy_tags_to_snapshot
|
1352
1365
|
# A value that indicates whether to copy tags from the DB instance to
|
1353
1366
|
# snapshots of the DB instance. By default, tags are not copied.
|
@@ -1544,6 +1557,7 @@ module Aws::RDS
|
|
1544
1557
|
# deletion_protection: false,
|
1545
1558
|
# domain: "String",
|
1546
1559
|
# domain_iam_role_name: "String",
|
1560
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
1547
1561
|
# source_region: "String",
|
1548
1562
|
# })
|
1549
1563
|
# @param [Hash] options ({})
|
@@ -1847,25 +1861,39 @@ module Aws::RDS
|
|
1847
1861
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_DeleteInstance.html
|
1848
1862
|
# @option options [String] :domain
|
1849
1863
|
# The Active Directory directory ID to create the DB instance in.
|
1864
|
+
# Currently, only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
1865
|
+
# instances can be created in an Active Directory Domain.
|
1850
1866
|
#
|
1851
|
-
# For
|
1852
|
-
# authenticate users that connect to the DB instance. For more
|
1853
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
1854
|
-
# Oracle][1] in the *Amazon RDS User Guide*.
|
1855
|
-
#
|
1856
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
1857
|
-
# Authentication to authenticate users that connect to the DB instance.
|
1858
|
-
# For more information, see [ Using Windows Authentication with an
|
1859
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][2] in the *Amazon
|
1867
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
1860
1868
|
# RDS User Guide*.
|
1861
1869
|
#
|
1862
1870
|
#
|
1863
1871
|
#
|
1864
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
1865
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
1872
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
1866
1873
|
# @option options [String] :domain_iam_role_name
|
1867
1874
|
# Specify the name of the IAM role to be used when making API calls to
|
1868
1875
|
# the Directory Service.
|
1876
|
+
# @option options [String] :replica_mode
|
1877
|
+
# The open mode of the replica database: mounted or read-only.
|
1878
|
+
#
|
1879
|
+
# <note markdown="1"> This parameter is only supported for Oracle DB instances.
|
1880
|
+
#
|
1881
|
+
# </note>
|
1882
|
+
#
|
1883
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
1884
|
+
# main use case for mounted replicas is cross-Region disaster recovery.
|
1885
|
+
# The primary database doesn't use Active Data Guard to transmit
|
1886
|
+
# information to the mounted replica. Because it doesn't accept user
|
1887
|
+
# connections, a mounted replica can't serve a read-only workload.
|
1888
|
+
#
|
1889
|
+
# You can create a combination of mounted and read-only DB replicas for
|
1890
|
+
# the same primary DB instance. For more information, see [Working with
|
1891
|
+
# Oracle Read Replicas for Amazon RDS][1] in the *Amazon RDS User
|
1892
|
+
# Guide*.
|
1893
|
+
#
|
1894
|
+
#
|
1895
|
+
#
|
1896
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
1869
1897
|
# @option options [String] :destination_region
|
1870
1898
|
# @option options [String] :source_region
|
1871
1899
|
# The source region of the snapshot. This is only needed when the
|
@@ -2037,6 +2065,7 @@ module Aws::RDS
|
|
2037
2065
|
# deletion_protection: false,
|
2038
2066
|
# max_allocated_storage: 1,
|
2039
2067
|
# certificate_rotation_restart: false,
|
2068
|
+
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
2040
2069
|
# })
|
2041
2070
|
# @param [Hash] options ({})
|
2042
2071
|
# @option options [Integer] :allocated_storage
|
@@ -2390,25 +2419,16 @@ module Aws::RDS
|
|
2390
2419
|
# @option options [String] :domain
|
2391
2420
|
# The Active Directory directory ID to move the DB instance to. Specify
|
2392
2421
|
# `none` to remove the instance from its current domain. The domain must
|
2393
|
-
# be created prior to this operation. Currently, only Microsoft
|
2394
|
-
# Server and
|
2395
|
-
# Domain.
|
2396
|
-
#
|
2397
|
-
# For Microsoft SQL Server DB instances, Amazon RDS can use Windows
|
2398
|
-
# Authentication to authenticate users that connect to the DB instance.
|
2399
|
-
# For more information, see [ Using Windows Authentication with an
|
2400
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
2401
|
-
# RDS User Guide*.
|
2422
|
+
# be created prior to this operation. Currently, only MySQL, Microsoft
|
2423
|
+
# SQL Server, Oracle, and PostgreSQL DB instances can be created in an
|
2424
|
+
# Active Directory Domain.
|
2402
2425
|
#
|
2403
|
-
# For
|
2404
|
-
#
|
2405
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
2406
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
2426
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
2427
|
+
# RDS User Guide*.
|
2407
2428
|
#
|
2408
2429
|
#
|
2409
2430
|
#
|
2410
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
2411
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
2431
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
2412
2432
|
# @option options [Boolean] :copy_tags_to_snapshot
|
2413
2433
|
# A value that indicates whether to copy all tags from the DB instance
|
2414
2434
|
# to snapshots of the DB instance. By default, tags are not copied.
|
@@ -2610,6 +2630,25 @@ module Aws::RDS
|
|
2610
2630
|
#
|
2611
2631
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
2612
2632
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
2633
|
+
# @option options [String] :replica_mode
|
2634
|
+
# A value that sets the open mode of a replica database to either
|
2635
|
+
# mounted or read-only.
|
2636
|
+
#
|
2637
|
+
# <note markdown="1"> Currently, this parameter is only supported for Oracle DB instances.
|
2638
|
+
#
|
2639
|
+
# </note>
|
2640
|
+
#
|
2641
|
+
# Mounted DB replicas are included in Oracle Enterprise Edition. The
|
2642
|
+
# main use case for mounted replicas is cross-Region disaster recovery.
|
2643
|
+
# The primary database doesn't use Active Data Guard to transmit
|
2644
|
+
# information to the mounted replica. Because it doesn't accept user
|
2645
|
+
# connections, a mounted replica can't serve a read-only workload. For
|
2646
|
+
# more information, see [Working with Oracle Read Replicas for Amazon
|
2647
|
+
# RDS][1] in the *Amazon RDS User Guide*.
|
2648
|
+
#
|
2649
|
+
#
|
2650
|
+
#
|
2651
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
2613
2652
|
# @return [DBInstance]
|
2614
2653
|
def modify(options = {})
|
2615
2654
|
options = options.merge(db_instance_identifier: @id)
|
@@ -2924,24 +2963,15 @@ module Aws::RDS
|
|
2924
2963
|
# @option options [String] :domain
|
2925
2964
|
# Specify the Active Directory directory ID to restore the DB instance
|
2926
2965
|
# in. The domain must be created prior to this operation. Currently,
|
2927
|
-
# only Microsoft SQL Server and
|
2928
|
-
# Active Directory Domain.
|
2966
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
2967
|
+
# can be created in an Active Directory Domain.
|
2929
2968
|
#
|
2930
|
-
# For
|
2931
|
-
# Authentication to authenticate users that connect to the DB instance.
|
2932
|
-
# For more information, see [ Using Windows Authentication with an
|
2933
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
2969
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
2934
2970
|
# RDS User Guide*.
|
2935
2971
|
#
|
2936
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
2937
|
-
# authenticate users that connect to the DB instance. For more
|
2938
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
2939
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
2940
|
-
#
|
2941
2972
|
#
|
2942
2973
|
#
|
2943
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
2944
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
2974
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
2945
2975
|
# @option options [String] :domain_iam_role_name
|
2946
2976
|
# Specify the name of the IAM role to be used when making API calls to
|
2947
2977
|
# the Directory Service.
|
@@ -759,24 +759,15 @@ module Aws::RDS
|
|
759
759
|
# @option options [String] :domain
|
760
760
|
# Specify the Active Directory directory ID to restore the DB instance
|
761
761
|
# in. The domain must be created prior to this operation. Currently,
|
762
|
-
# only Microsoft SQL Server and
|
763
|
-
# Active Directory Domain.
|
762
|
+
# only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances
|
763
|
+
# can be created in an Active Directory Domain.
|
764
764
|
#
|
765
|
-
# For
|
766
|
-
# Authentication to authenticate users that connect to the DB instance.
|
767
|
-
# For more information, see [ Using Windows Authentication with an
|
768
|
-
# Amazon RDS DB Instance Running Microsoft SQL Server][1] in the *Amazon
|
765
|
+
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
769
766
|
# RDS User Guide*.
|
770
767
|
#
|
771
|
-
# For Oracle DB instances, Amazon RDS can use Kerberos Authentication to
|
772
|
-
# authenticate users that connect to the DB instance. For more
|
773
|
-
# information, see [ Using Kerberos Authentication with Amazon RDS for
|
774
|
-
# Oracle][2] in the *Amazon RDS User Guide*.
|
775
768
|
#
|
776
769
|
#
|
777
|
-
#
|
778
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_SQLServerWinAuth.html
|
779
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-kerberos.html
|
770
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
780
771
|
# @option options [Boolean] :copy_tags_to_snapshot
|
781
772
|
# A value that indicates whether to copy all tags from the restored DB
|
782
773
|
# instance to snapshots of the DB instance. By default, tags are not
|