aws-sdk-rds 1.107.0 → 1.112.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 +480 -63
- data/lib/aws-sdk-rds/client_api.rb +19 -0
- data/lib/aws-sdk-rds/db_cluster.rb +9 -1
- data/lib/aws-sdk-rds/db_instance.rb +172 -35
- data/lib/aws-sdk-rds/db_snapshot.rb +22 -2
- data/lib/aws-sdk-rds/option_group.rb +24 -0
- data/lib/aws-sdk-rds/resource.rb +140 -16
- data/lib/aws-sdk-rds/types.rb +495 -87
- metadata +4 -4
@@ -49,6 +49,7 @@ module Aws::RDS
|
|
49
49
|
CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault')
|
50
50
|
CharacterSet = Shapes::StructureShape.new(name: 'CharacterSet')
|
51
51
|
CloudwatchLogsExportConfiguration = Shapes::StructureShape.new(name: 'CloudwatchLogsExportConfiguration')
|
52
|
+
ClusterPendingModifiedValues = Shapes::StructureShape.new(name: 'ClusterPendingModifiedValues')
|
52
53
|
ConnectionPoolConfiguration = Shapes::StructureShape.new(name: 'ConnectionPoolConfiguration')
|
53
54
|
ConnectionPoolConfigurationInfo = Shapes::StructureShape.new(name: 'ConnectionPoolConfigurationInfo')
|
54
55
|
CopyDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'CopyDBClusterParameterGroupMessage')
|
@@ -683,6 +684,13 @@ module Aws::RDS
|
|
683
684
|
CloudwatchLogsExportConfiguration.add_member(:disable_log_types, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "DisableLogTypes"))
|
684
685
|
CloudwatchLogsExportConfiguration.struct_class = Types::CloudwatchLogsExportConfiguration
|
685
686
|
|
687
|
+
ClusterPendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
688
|
+
ClusterPendingModifiedValues.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
689
|
+
ClusterPendingModifiedValues.add_member(:master_user_password, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserPassword"))
|
690
|
+
ClusterPendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
691
|
+
ClusterPendingModifiedValues.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
692
|
+
ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
|
693
|
+
|
686
694
|
ConnectionPoolConfiguration.add_member(:max_connections_percent, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxConnectionsPercent"))
|
687
695
|
ConnectionPoolConfiguration.add_member(:max_idle_connections_percent, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxIdleConnectionsPercent"))
|
688
696
|
ConnectionPoolConfiguration.add_member(:connection_borrow_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ConnectionBorrowTimeout"))
|
@@ -870,6 +878,7 @@ module Aws::RDS
|
|
870
878
|
CreateDBInstanceMessage.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
871
879
|
CreateDBInstanceMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
872
880
|
CreateDBInstanceMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
881
|
+
CreateDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
873
882
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
874
883
|
|
875
884
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -1069,6 +1078,7 @@ module Aws::RDS
|
|
1069
1078
|
DBCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1070
1079
|
DBCluster.add_member(:global_write_forwarding_status, Shapes::ShapeRef.new(shape: WriteForwardingStatus, location_name: "GlobalWriteForwardingStatus"))
|
1071
1080
|
DBCluster.add_member(:global_write_forwarding_requested, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "GlobalWriteForwardingRequested"))
|
1081
|
+
DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
|
1072
1082
|
DBCluster.struct_class = Types::DBCluster
|
1073
1083
|
|
1074
1084
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -1309,6 +1319,7 @@ module Aws::RDS
|
|
1309
1319
|
DBInstance.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
1310
1320
|
DBInstance.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1311
1321
|
DBInstance.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
|
1322
|
+
DBInstance.add_member(:customer_owned_ip_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CustomerOwnedIpEnabled"))
|
1312
1323
|
DBInstance.struct_class = Types::DBInstance
|
1313
1324
|
|
1314
1325
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -2360,6 +2371,7 @@ module Aws::RDS
|
|
2360
2371
|
ModifyDBInstanceMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
2361
2372
|
ModifyDBInstanceMessage.add_member(:certificate_rotation_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CertificateRotationRestart"))
|
2362
2373
|
ModifyDBInstanceMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
2374
|
+
ModifyDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
2363
2375
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
2364
2376
|
|
2365
2377
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -2429,6 +2441,8 @@ module Aws::RDS
|
|
2429
2441
|
ModifyGlobalClusterMessage.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "GlobalClusterIdentifier"))
|
2430
2442
|
ModifyGlobalClusterMessage.add_member(:new_global_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "NewGlobalClusterIdentifier"))
|
2431
2443
|
ModifyGlobalClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
2444
|
+
ModifyGlobalClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
2445
|
+
ModifyGlobalClusterMessage.add_member(:allow_major_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AllowMajorVersionUpgrade"))
|
2432
2446
|
ModifyGlobalClusterMessage.struct_class = Types::ModifyGlobalClusterMessage
|
2433
2447
|
|
2434
2448
|
ModifyGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
|
@@ -2645,6 +2659,7 @@ module Aws::RDS
|
|
2645
2659
|
PendingModifiedValues.add_member(:db_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupName"))
|
2646
2660
|
PendingModifiedValues.add_member(:pending_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: PendingCloudwatchLogsExports, location_name: "PendingCloudwatchLogsExports"))
|
2647
2661
|
PendingModifiedValues.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
2662
|
+
PendingModifiedValues.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IAMDatabaseAuthenticationEnabled"))
|
2648
2663
|
PendingModifiedValues.struct_class = Types::PendingModifiedValues
|
2649
2664
|
|
2650
2665
|
PointInTimeRestoreNotEnabledFault.struct_class = Types::PointInTimeRestoreNotEnabledFault
|
@@ -2926,6 +2941,7 @@ module Aws::RDS
|
|
2926
2941
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:use_default_processor_features, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseDefaultProcessorFeatures"))
|
2927
2942
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
|
2928
2943
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
2944
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
2929
2945
|
RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
|
2930
2946
|
|
2931
2947
|
RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -3013,6 +3029,7 @@ module Aws::RDS
|
|
3013
3029
|
RestoreDBInstanceToPointInTimeMessage.add_member(:source_dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "SourceDbiResourceId"))
|
3014
3030
|
RestoreDBInstanceToPointInTimeMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
3015
3031
|
RestoreDBInstanceToPointInTimeMessage.add_member(:source_db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBInstanceAutomatedBackupsArn"))
|
3032
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
3016
3033
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
3017
3034
|
|
3018
3035
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -4606,6 +4623,8 @@ module Aws::RDS
|
|
4606
4623
|
o.output = Shapes::ShapeRef.new(shape: ModifyGlobalClusterResult)
|
4607
4624
|
o.errors << Shapes::ShapeRef.new(shape: GlobalClusterNotFoundFault)
|
4608
4625
|
o.errors << Shapes::ShapeRef.new(shape: InvalidGlobalClusterStateFault)
|
4626
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4627
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
4609
4628
|
end)
|
4610
4629
|
|
4611
4630
|
api.add_operation(:modify_option_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -471,6 +471,14 @@ module Aws::RDS
|
|
471
471
|
data[:global_write_forwarding_requested]
|
472
472
|
end
|
473
473
|
|
474
|
+
# A value that specifies that changes to the DB cluster are pending.
|
475
|
+
# This element is only included when changes are pending. Specific
|
476
|
+
# changes are identified by subelements.
|
477
|
+
# @return [Types::ClusterPendingModifiedValues]
|
478
|
+
def pending_modified_values
|
479
|
+
data[:pending_modified_values]
|
480
|
+
end
|
481
|
+
|
474
482
|
# @!endgroup
|
475
483
|
|
476
484
|
# @return [Client]
|
@@ -927,7 +935,7 @@ module Aws::RDS
|
|
927
935
|
#
|
928
936
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
929
937
|
# @option options [String] :engine_mode
|
930
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
938
|
+
# The DB engine mode of the DB cluster, either `provisioned`,
|
931
939
|
# `serverless`, `parallelquery`, `global`, or `multimaster`.
|
932
940
|
#
|
933
941
|
# The `parallelquery` engine mode isn't required for Aurora MySQL
|
@@ -163,9 +163,9 @@ module Aws::RDS
|
|
163
163
|
data[:preferred_maintenance_window]
|
164
164
|
end
|
165
165
|
|
166
|
-
#
|
167
|
-
# only included when changes are pending. Specific
|
168
|
-
# identified by subelements.
|
166
|
+
# A value that specifies that changes to the DB instance are pending.
|
167
|
+
# This element is only included when changes are pending. Specific
|
168
|
+
# changes are identified by subelements.
|
169
169
|
# @return [Types::PendingModifiedValues]
|
170
170
|
def pending_modified_values
|
171
171
|
data[:pending_modified_values]
|
@@ -190,7 +190,8 @@ module Aws::RDS
|
|
190
190
|
data[:engine_version]
|
191
191
|
end
|
192
192
|
|
193
|
-
#
|
193
|
+
# A value that indicates that minor version patches are applied
|
194
|
+
# automatically.
|
194
195
|
# @return [Boolean]
|
195
196
|
def auto_minor_version_upgrade
|
196
197
|
data[:auto_minor_version_upgrade]
|
@@ -545,6 +546,30 @@ module Aws::RDS
|
|
545
546
|
data[:db_instance_automated_backups_replications]
|
546
547
|
end
|
547
548
|
|
549
|
+
# Specifies whether a customer-owned IP address (CoIP) is enabled for an
|
550
|
+
# RDS on Outposts DB instance.
|
551
|
+
#
|
552
|
+
# A <i>CoIP </i>provides local or external connectivity to resources in
|
553
|
+
# your Outpost subnets through your on-premises network. For some use
|
554
|
+
# cases, a CoIP can provide lower latency for connections to the DB
|
555
|
+
# instance from outside of its virtual private cloud (VPC) on your local
|
556
|
+
# network.
|
557
|
+
#
|
558
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
559
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
560
|
+
#
|
561
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
562
|
+
# in the *AWS Outposts User Guide*.
|
563
|
+
#
|
564
|
+
#
|
565
|
+
#
|
566
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
567
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
568
|
+
# @return [Boolean]
|
569
|
+
def customer_owned_ip_enabled
|
570
|
+
data[:customer_owned_ip_enabled]
|
571
|
+
end
|
572
|
+
|
548
573
|
# @!endgroup
|
549
574
|
|
550
575
|
# @return [Client]
|
@@ -738,6 +763,7 @@ module Aws::RDS
|
|
738
763
|
# ],
|
739
764
|
# deletion_protection: false,
|
740
765
|
# max_allocated_storage: 1,
|
766
|
+
# enable_customer_owned_ip: false,
|
741
767
|
# })
|
742
768
|
# @param [Hash] options ({})
|
743
769
|
# @option options [String] :db_name
|
@@ -777,7 +803,7 @@ module Aws::RDS
|
|
777
803
|
# **PostgreSQL**
|
778
804
|
#
|
779
805
|
# The name of the database to create when the DB instance is created. If
|
780
|
-
# this parameter isn't specified,
|
806
|
+
# this parameter isn't specified, a database named `postgres` is
|
781
807
|
# created in the DB instance.
|
782
808
|
#
|
783
809
|
# Constraints:
|
@@ -807,17 +833,34 @@ module Aws::RDS
|
|
807
833
|
#
|
808
834
|
# Not applicable. Must be null.
|
809
835
|
#
|
810
|
-
# **Amazon Aurora**
|
836
|
+
# **Amazon Aurora MySQL**
|
811
837
|
#
|
812
|
-
# The name of the database to create when the primary instance of the
|
813
|
-
# cluster is created. If this parameter isn't specified
|
814
|
-
# created in the DB
|
838
|
+
# The name of the database to create when the primary DB instance of the
|
839
|
+
# Aurora MySQL DB cluster is created. If this parameter isn't specified
|
840
|
+
# for an Aurora MySQL DB cluster, no database is created in the DB
|
841
|
+
# cluster.
|
815
842
|
#
|
816
843
|
# Constraints:
|
817
844
|
#
|
818
|
-
# *
|
845
|
+
# * It must contain 1 to 64 alphanumeric characters.
|
819
846
|
#
|
820
|
-
# *
|
847
|
+
# * It can't be a word reserved by the database engine.
|
848
|
+
#
|
849
|
+
# **Amazon Aurora PostgreSQL**
|
850
|
+
#
|
851
|
+
# The name of the database to create when the primary DB instance of the
|
852
|
+
# Aurora PostgreSQL DB cluster is created. If this parameter isn't
|
853
|
+
# specified for an Aurora PostgreSQL DB cluster, a database named
|
854
|
+
# `postgres` is created in the DB cluster.
|
855
|
+
#
|
856
|
+
# Constraints:
|
857
|
+
#
|
858
|
+
# * It must contain 1 to 63 alphanumeric characters.
|
859
|
+
#
|
860
|
+
# * It must begin with a letter or an underscore. Subsequent characters
|
861
|
+
# can be letters, underscores, or digits (0 to 9).
|
862
|
+
#
|
863
|
+
# * It can't be a word reserved by the database engine.
|
821
864
|
# @option options [Integer] :allocated_storage
|
822
865
|
# The amount of storage (in gibibytes) to allocate for the DB instance.
|
823
866
|
#
|
@@ -1076,8 +1119,8 @@ module Aws::RDS
|
|
1076
1119
|
# specify the identifier of the custom Availability Zone to create the
|
1077
1120
|
# DB instance in.
|
1078
1121
|
#
|
1079
|
-
# For more information about RDS on VMware, see the [
|
1080
|
-
#
|
1122
|
+
# For more information about RDS on VMware, see the [ RDS on VMware User
|
1123
|
+
# Guide.][2]
|
1081
1124
|
#
|
1082
1125
|
# </note>
|
1083
1126
|
#
|
@@ -1253,8 +1296,8 @@ module Aws::RDS
|
|
1253
1296
|
#
|
1254
1297
|
# **PostgreSQL**
|
1255
1298
|
#
|
1256
|
-
# See [
|
1257
|
-
# User Guide.*
|
1299
|
+
# See [Amazon RDS for PostgreSQL versions and extensions][5] in the
|
1300
|
+
# *Amazon RDS User Guide.*
|
1258
1301
|
#
|
1259
1302
|
#
|
1260
1303
|
#
|
@@ -1262,7 +1305,7 @@ module Aws::RDS
|
|
1262
1305
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
1263
1306
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
1264
1307
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
1265
|
-
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
1308
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
1266
1309
|
# @option options [Boolean] :auto_minor_version_upgrade
|
1267
1310
|
# A value that indicates whether minor engine upgrades are applied
|
1268
1311
|
# automatically to the DB instance during the maintenance window. By
|
@@ -1287,8 +1330,8 @@ module Aws::RDS
|
|
1287
1330
|
#
|
1288
1331
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
1289
1332
|
# @option options [String] :option_group_name
|
1290
|
-
#
|
1291
|
-
# option group.
|
1333
|
+
# A value that indicates that the DB instance should be associated with
|
1334
|
+
# the specified option group.
|
1292
1335
|
#
|
1293
1336
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
1294
1337
|
# TDE, can't be removed from an option group. Also, that option group
|
@@ -1508,7 +1551,8 @@ module Aws::RDS
|
|
1508
1551
|
#
|
1509
1552
|
# **Oracle**
|
1510
1553
|
#
|
1511
|
-
# Possible values are `alert`, `audit`, `listener`,
|
1554
|
+
# Possible values are `alert`, `audit`, `listener`, `trace`, and
|
1555
|
+
# `oemagent`.
|
1512
1556
|
#
|
1513
1557
|
# **PostgreSQL**
|
1514
1558
|
#
|
@@ -1539,6 +1583,33 @@ module Aws::RDS
|
|
1539
1583
|
# @option options [Integer] :max_allocated_storage
|
1540
1584
|
# The upper limit to which Amazon RDS can automatically scale the
|
1541
1585
|
# storage of the DB instance.
|
1586
|
+
#
|
1587
|
+
# For more information about this setting, including limitations that
|
1588
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
1589
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
1590
|
+
#
|
1591
|
+
#
|
1592
|
+
#
|
1593
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
1594
|
+
# @option options [Boolean] :enable_customer_owned_ip
|
1595
|
+
# A value that indicates whether to enable a customer-owned IP address
|
1596
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
1597
|
+
#
|
1598
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
1599
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
1600
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
1601
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
1602
|
+
#
|
1603
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
1604
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
1605
|
+
#
|
1606
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
1607
|
+
# in the *AWS Outposts User Guide*.
|
1608
|
+
#
|
1609
|
+
#
|
1610
|
+
#
|
1611
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
1612
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
1542
1613
|
# @return [DBInstance]
|
1543
1614
|
def create(options = {})
|
1544
1615
|
options = options.merge(db_instance_identifier: @id)
|
@@ -1764,9 +1835,9 @@ module Aws::RDS
|
|
1764
1835
|
# name for the AWS KMS CMK.
|
1765
1836
|
#
|
1766
1837
|
# If you create an encrypted read replica in the same AWS Region as the
|
1767
|
-
# source DB instance, then
|
1768
|
-
#
|
1769
|
-
# the source DB instance.
|
1838
|
+
# source DB instance, then do not specify a value for this parameter. A
|
1839
|
+
# read replica in the same Region is always encrypted with the same AWS
|
1840
|
+
# KMS CMK as the source DB instance.
|
1770
1841
|
#
|
1771
1842
|
# If you create an encrypted read replica in a different AWS Region,
|
1772
1843
|
# then you must specify a AWS KMS key identifier for the destination AWS
|
@@ -1935,6 +2006,14 @@ module Aws::RDS
|
|
1935
2006
|
# @option options [Integer] :max_allocated_storage
|
1936
2007
|
# The upper limit to which Amazon RDS can automatically scale the
|
1937
2008
|
# storage of the DB instance.
|
2009
|
+
#
|
2010
|
+
# For more information about this setting, including limitations that
|
2011
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
2012
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
2013
|
+
#
|
2014
|
+
#
|
2015
|
+
#
|
2016
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
1938
2017
|
# @option options [String] :source_region
|
1939
2018
|
# The source region of the snapshot. This is only needed when the
|
1940
2019
|
# shapshot is encrypted and in a different region.
|
@@ -2106,6 +2185,7 @@ module Aws::RDS
|
|
2106
2185
|
# max_allocated_storage: 1,
|
2107
2186
|
# certificate_rotation_restart: false,
|
2108
2187
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
2188
|
+
# enable_customer_owned_ip: false,
|
2109
2189
|
# })
|
2110
2190
|
# @param [Hash] options ({})
|
2111
2191
|
# @option options [Integer] :allocated_storage
|
@@ -2139,8 +2219,8 @@ module Aws::RDS
|
|
2139
2219
|
# The new DB subnet group for the DB instance. You can use this
|
2140
2220
|
# parameter to move your DB instance to a different VPC. If your DB
|
2141
2221
|
# instance isn't in a VPC, you can also use this parameter to move your
|
2142
|
-
# DB instance into a VPC. For more information, see [
|
2143
|
-
#
|
2222
|
+
# DB instance into a VPC. For more information, see [Working with a DB
|
2223
|
+
# instance in a VPC][1] in the *Amazon RDS User Guide.*
|
2144
2224
|
#
|
2145
2225
|
# Changing the subnet group causes an outage during the change. The
|
2146
2226
|
# change is applied during the next maintenance window, unless you
|
@@ -2153,7 +2233,7 @@ module Aws::RDS
|
|
2153
2233
|
#
|
2154
2234
|
#
|
2155
2235
|
#
|
2156
|
-
# [1]:
|
2236
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html#USER_VPC.Non-VPC2VPC
|
2157
2237
|
# @option options [Array<String>] :db_security_groups
|
2158
2238
|
# A list of DB security groups to authorize on this DB instance.
|
2159
2239
|
# Changing this setting doesn't result in an outage and the change is
|
@@ -2338,8 +2418,10 @@ module Aws::RDS
|
|
2338
2418
|
# family for the new engine version must be specified. The new DB
|
2339
2419
|
# parameter group can be the default for that DB parameter group family.
|
2340
2420
|
#
|
2341
|
-
#
|
2342
|
-
#
|
2421
|
+
# If you specify only a major version, Amazon RDS will update the DB
|
2422
|
+
# instance to the default minor version if the current minor version is
|
2423
|
+
# lower. For information about valid engine versions, see
|
2424
|
+
# `CreateDBInstance`, or call `DescribeDBEngineVersions`.
|
2343
2425
|
# @option options [Boolean] :allow_major_version_upgrade
|
2344
2426
|
# A value that indicates whether major version upgrades are allowed.
|
2345
2427
|
# Changing this parameter doesn't result in an outage and the change is
|
@@ -2394,14 +2476,14 @@ module Aws::RDS
|
|
2394
2476
|
#
|
2395
2477
|
# Default: Uses existing setting
|
2396
2478
|
# @option options [String] :option_group_name
|
2397
|
-
#
|
2398
|
-
# option group. Changing this parameter doesn't result in an
|
2399
|
-
# except in the following case and the change is applied during
|
2400
|
-
# maintenance window unless the `ApplyImmediately` parameter is
|
2401
|
-
# for this request. If the parameter change results in an option
|
2402
|
-
# that enables OEM, this change can cause a brief (sub-second)
|
2403
|
-
# during which new connections are rejected but existing
|
2404
|
-
# not interrupted.
|
2479
|
+
# A value that indicates the DB instance should be associated with the
|
2480
|
+
# specified option group. Changing this parameter doesn't result in an
|
2481
|
+
# outage except in the following case and the change is applied during
|
2482
|
+
# the next maintenance window unless the `ApplyImmediately` parameter is
|
2483
|
+
# enabled for this request. If the parameter change results in an option
|
2484
|
+
# group that enables OEM, this change can cause a brief (sub-second)
|
2485
|
+
# period during which new connections are rejected but existing
|
2486
|
+
# connections are not interrupted.
|
2405
2487
|
#
|
2406
2488
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
2407
2489
|
# TDE, can't be removed from an option group, and that option group
|
@@ -2647,6 +2729,14 @@ module Aws::RDS
|
|
2647
2729
|
# @option options [Integer] :max_allocated_storage
|
2648
2730
|
# The upper limit to which Amazon RDS can automatically scale the
|
2649
2731
|
# storage of the DB instance.
|
2732
|
+
#
|
2733
|
+
# For more information about this setting, including limitations that
|
2734
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
2735
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
2736
|
+
#
|
2737
|
+
#
|
2738
|
+
#
|
2739
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
2650
2740
|
# @option options [Boolean] :certificate_rotation_restart
|
2651
2741
|
# A value that indicates whether the DB instance is restarted when you
|
2652
2742
|
# rotate your SSL/TLS certificate.
|
@@ -2693,6 +2783,25 @@ module Aws::RDS
|
|
2693
2783
|
#
|
2694
2784
|
#
|
2695
2785
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
2786
|
+
# @option options [Boolean] :enable_customer_owned_ip
|
2787
|
+
# A value that indicates whether to enable a customer-owned IP address
|
2788
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
2789
|
+
#
|
2790
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
2791
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
2792
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
2793
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
2794
|
+
#
|
2795
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
2796
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
2797
|
+
#
|
2798
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
2799
|
+
# in the *AWS Outposts User Guide*.
|
2800
|
+
#
|
2801
|
+
#
|
2802
|
+
#
|
2803
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
2804
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
2696
2805
|
# @return [DBInstance]
|
2697
2806
|
def modify(options = {})
|
2698
2807
|
options = options.merge(db_instance_identifier: @id)
|
@@ -2825,6 +2934,7 @@ module Aws::RDS
|
|
2825
2934
|
# source_dbi_resource_id: "String",
|
2826
2935
|
# max_allocated_storage: 1,
|
2827
2936
|
# source_db_instance_automated_backups_arn: "String",
|
2937
|
+
# enable_customer_owned_ip: false,
|
2828
2938
|
# })
|
2829
2939
|
# @param [Hash] options ({})
|
2830
2940
|
# @option options [required, String] :target_db_instance_identifier
|
@@ -3077,10 +3187,37 @@ module Aws::RDS
|
|
3077
3187
|
# @option options [Integer] :max_allocated_storage
|
3078
3188
|
# The upper limit to which Amazon RDS can automatically scale the
|
3079
3189
|
# storage of the DB instance.
|
3190
|
+
#
|
3191
|
+
# For more information about this setting, including limitations that
|
3192
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
3193
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
3194
|
+
#
|
3195
|
+
#
|
3196
|
+
#
|
3197
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
3080
3198
|
# @option options [String] :source_db_instance_automated_backups_arn
|
3081
3199
|
# The Amazon Resource Name (ARN) of the replicated automated backups
|
3082
3200
|
# from which to restore, for example,
|
3083
3201
|
# `arn:aws:rds:useast-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
3202
|
+
# @option options [Boolean] :enable_customer_owned_ip
|
3203
|
+
# A value that indicates whether to enable a customer-owned IP address
|
3204
|
+
# (CoIP) for an RDS on Outposts DB instance.
|
3205
|
+
#
|
3206
|
+
# A *CoIP* provides local or external connectivity to resources in your
|
3207
|
+
# Outpost subnets through your on-premises network. For some use cases,
|
3208
|
+
# a CoIP can provide lower latency for connections to the DB instance
|
3209
|
+
# from outside of its virtual private cloud (VPC) on your local network.
|
3210
|
+
#
|
3211
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
3212
|
+
# RDS on AWS Outposts][1] in the *Amazon RDS User Guide*.
|
3213
|
+
#
|
3214
|
+
# For more information about CoIPs, see [Customer-owned IP addresses][2]
|
3215
|
+
# in the *AWS Outposts User Guide*.
|
3216
|
+
#
|
3217
|
+
#
|
3218
|
+
#
|
3219
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
3220
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
3084
3221
|
# @return [DBInstance]
|
3085
3222
|
def restore(options = {})
|
3086
3223
|
options = options.merge(source_db_instance_identifier: @id)
|