aws-sdk-rds 1.142.0 → 1.145.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +357 -408
- data/lib/aws-sdk-rds/client_api.rb +34 -175
- data/lib/aws-sdk-rds/db_cluster.rb +56 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +14 -0
- data/lib/aws-sdk-rds/db_instance.rb +110 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +20 -0
- data/lib/aws-sdk-rds/db_subnet_group.rb +22 -0
- data/lib/aws-sdk-rds/errors.rb +11 -44
- data/lib/aws-sdk-rds/resource.rb +39 -2
- data/lib/aws-sdk-rds/types.rb +481 -559
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1796,71 +1796,6 @@ module Aws::RDS
|
|
1796
1796
|
req.send_request(options)
|
1797
1797
|
end
|
1798
1798
|
|
1799
|
-
# Creates a custom Availability Zone (AZ).
|
1800
|
-
#
|
1801
|
-
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
1802
|
-
# vSphere cluster.
|
1803
|
-
#
|
1804
|
-
# For more information about RDS on VMware, see the [ RDS on VMware User
|
1805
|
-
# Guide.][1]
|
1806
|
-
#
|
1807
|
-
#
|
1808
|
-
#
|
1809
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
1810
|
-
#
|
1811
|
-
# @option params [required, String] :custom_availability_zone_name
|
1812
|
-
# The name of the custom Availability Zone (AZ).
|
1813
|
-
#
|
1814
|
-
# @option params [String] :existing_vpn_id
|
1815
|
-
# The ID of an existing virtual private network (VPN) between the Amazon
|
1816
|
-
# RDS website and the VMware vSphere cluster.
|
1817
|
-
#
|
1818
|
-
# @option params [String] :new_vpn_tunnel_name
|
1819
|
-
# The name of a new VPN tunnel between the Amazon RDS website and the
|
1820
|
-
# VMware vSphere cluster.
|
1821
|
-
#
|
1822
|
-
# Specify this parameter only if `ExistingVpnId` isn't specified.
|
1823
|
-
#
|
1824
|
-
# @option params [String] :vpn_tunnel_originator_ip
|
1825
|
-
# The IP address of network traffic from your on-premises data center. A
|
1826
|
-
# custom AZ receives the network traffic.
|
1827
|
-
#
|
1828
|
-
# Specify this parameter only if `ExistingVpnId` isn't specified.
|
1829
|
-
#
|
1830
|
-
# @return [Types::CreateCustomAvailabilityZoneResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1831
|
-
#
|
1832
|
-
# * {Types::CreateCustomAvailabilityZoneResult#custom_availability_zone #custom_availability_zone} => Types::CustomAvailabilityZone
|
1833
|
-
#
|
1834
|
-
# @example Request syntax with placeholder values
|
1835
|
-
#
|
1836
|
-
# resp = client.create_custom_availability_zone({
|
1837
|
-
# custom_availability_zone_name: "String", # required
|
1838
|
-
# existing_vpn_id: "String",
|
1839
|
-
# new_vpn_tunnel_name: "String",
|
1840
|
-
# vpn_tunnel_originator_ip: "String",
|
1841
|
-
# })
|
1842
|
-
#
|
1843
|
-
# @example Response structure
|
1844
|
-
#
|
1845
|
-
# resp.custom_availability_zone.custom_availability_zone_id #=> String
|
1846
|
-
# resp.custom_availability_zone.custom_availability_zone_name #=> String
|
1847
|
-
# resp.custom_availability_zone.custom_availability_zone_status #=> String
|
1848
|
-
# resp.custom_availability_zone.vpn_details.vpn_id #=> String
|
1849
|
-
# resp.custom_availability_zone.vpn_details.vpn_tunnel_originator_ip #=> String
|
1850
|
-
# resp.custom_availability_zone.vpn_details.vpn_gateway_ip #=> String
|
1851
|
-
# resp.custom_availability_zone.vpn_details.vpn_psk #=> String
|
1852
|
-
# resp.custom_availability_zone.vpn_details.vpn_name #=> String
|
1853
|
-
# resp.custom_availability_zone.vpn_details.vpn_state #=> String
|
1854
|
-
#
|
1855
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomAvailabilityZone AWS API Documentation
|
1856
|
-
#
|
1857
|
-
# @overload create_custom_availability_zone(params = {})
|
1858
|
-
# @param [Hash] params ({})
|
1859
|
-
def create_custom_availability_zone(params = {}, options = {})
|
1860
|
-
req = build_request(:create_custom_availability_zone, params)
|
1861
|
-
req.send_request(options)
|
1862
|
-
end
|
1863
|
-
|
1864
1799
|
# Creates a custom DB engine version (CEV). A CEV is a binary volume
|
1865
1800
|
# snapshot of a database engine and specific AMI. The supported engines
|
1866
1801
|
# are the following:
|
@@ -2833,6 +2768,17 @@ module Aws::RDS
|
|
2833
2768
|
#
|
2834
2769
|
# Valid for: Multi-AZ DB clusters only
|
2835
2770
|
#
|
2771
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
2772
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
2773
|
+
# cluster.
|
2774
|
+
#
|
2775
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
2776
|
+
# the *Amazon Aurora User Guide*.
|
2777
|
+
#
|
2778
|
+
#
|
2779
|
+
#
|
2780
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
2781
|
+
#
|
2836
2782
|
# @option params [String] :source_region
|
2837
2783
|
# The source region of the snapshot. This is only needed when the
|
2838
2784
|
# shapshot is encrypted and in a different region.
|
@@ -2927,6 +2873,10 @@ module Aws::RDS
|
|
2927
2873
|
# enable_performance_insights: false,
|
2928
2874
|
# performance_insights_kms_key_id: "String",
|
2929
2875
|
# performance_insights_retention_period: 1,
|
2876
|
+
# serverless_v2_scaling_configuration: {
|
2877
|
+
# min_capacity: 1.0,
|
2878
|
+
# max_capacity: 1.0,
|
2879
|
+
# },
|
2930
2880
|
# source_region: "String",
|
2931
2881
|
# })
|
2932
2882
|
#
|
@@ -3032,6 +2982,8 @@ module Aws::RDS
|
|
3032
2982
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
3033
2983
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
3034
2984
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
2985
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
2986
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
3035
2987
|
#
|
3036
2988
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
3037
2989
|
#
|
@@ -3771,7 +3723,10 @@ module Aws::RDS
|
|
3771
3723
|
#
|
3772
3724
|
# **Amazon Aurora**
|
3773
3725
|
#
|
3774
|
-
#
|
3726
|
+
# Each Aurora DB cluster hosts copies of its storage in three separate
|
3727
|
+
# Availability Zones. Specify one of these Availability Zones. Aurora
|
3728
|
+
# automatically chooses an appropriate Availability Zone if you don't
|
3729
|
+
# specify one.
|
3775
3730
|
#
|
3776
3731
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
3777
3732
|
# Amazon Web Services Region.
|
@@ -3997,7 +3952,7 @@ module Aws::RDS
|
|
3997
3952
|
#
|
3998
3953
|
#
|
3999
3954
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
|
4000
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html
|
3955
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html
|
4001
3956
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
4002
3957
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
4003
3958
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
@@ -4429,6 +4384,26 @@ module Aws::RDS
|
|
4429
4384
|
#
|
4430
4385
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4431
4386
|
#
|
4387
|
+
# @option params [String] :network_type
|
4388
|
+
# The network type of the DB instance.
|
4389
|
+
#
|
4390
|
+
# Valid values:
|
4391
|
+
#
|
4392
|
+
# * `IPV4`
|
4393
|
+
#
|
4394
|
+
# * `DUAL`
|
4395
|
+
#
|
4396
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
4397
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
4398
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
4399
|
+
#
|
4400
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
4401
|
+
# the *Amazon RDS User Guide.*
|
4402
|
+
#
|
4403
|
+
#
|
4404
|
+
#
|
4405
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4406
|
+
#
|
4432
4407
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4433
4408
|
#
|
4434
4409
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -4516,6 +4491,7 @@ module Aws::RDS
|
|
4516
4491
|
# enable_customer_owned_ip: false,
|
4517
4492
|
# custom_iam_instance_profile: "String",
|
4518
4493
|
# backup_target: "String",
|
4494
|
+
# network_type: "String",
|
4519
4495
|
# })
|
4520
4496
|
#
|
4521
4497
|
# @example Response structure
|
@@ -4554,6 +4530,8 @@ module Aws::RDS
|
|
4554
4530
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
4555
4531
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
4556
4532
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
4533
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
4534
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
4557
4535
|
# resp.db_instance.preferred_maintenance_window #=> String
|
4558
4536
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
4559
4537
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -4656,6 +4634,7 @@ module Aws::RDS
|
|
4656
4634
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
4657
4635
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
4658
4636
|
# resp.db_instance.backup_target #=> String
|
4637
|
+
# resp.db_instance.network_type #=> String
|
4659
4638
|
#
|
4660
4639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
4661
4640
|
#
|
@@ -5176,6 +5155,26 @@ module Aws::RDS
|
|
5176
5155
|
#
|
5177
5156
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
5178
5157
|
#
|
5158
|
+
# @option params [String] :network_type
|
5159
|
+
# The network type of the DB instance.
|
5160
|
+
#
|
5161
|
+
# Valid values:
|
5162
|
+
#
|
5163
|
+
# * `IPV4`
|
5164
|
+
#
|
5165
|
+
# * `DUAL`
|
5166
|
+
#
|
5167
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
5168
|
+
# read replica. A `DBSubnetGroup` can support only the IPv4 protocol or
|
5169
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
5170
|
+
#
|
5171
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
5172
|
+
# the *Amazon RDS User Guide.*
|
5173
|
+
#
|
5174
|
+
#
|
5175
|
+
#
|
5176
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
5177
|
+
#
|
5179
5178
|
# @option params [String] :source_region
|
5180
5179
|
# The source region of the snapshot. This is only needed when the
|
5181
5180
|
# shapshot is encrypted and in a different region.
|
@@ -5257,6 +5256,7 @@ module Aws::RDS
|
|
5257
5256
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
5258
5257
|
# max_allocated_storage: 1,
|
5259
5258
|
# custom_iam_instance_profile: "String",
|
5259
|
+
# network_type: "String",
|
5260
5260
|
# source_region: "String",
|
5261
5261
|
# })
|
5262
5262
|
#
|
@@ -5296,6 +5296,8 @@ module Aws::RDS
|
|
5296
5296
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
5297
5297
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
5298
5298
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
5299
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
5300
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
5299
5301
|
# resp.db_instance.preferred_maintenance_window #=> String
|
5300
5302
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
5301
5303
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -5398,6 +5400,7 @@ module Aws::RDS
|
|
5398
5400
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
5399
5401
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
5400
5402
|
# resp.db_instance.backup_target #=> String
|
5403
|
+
# resp.db_instance.network_type #=> String
|
5401
5404
|
#
|
5402
5405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
5403
5406
|
#
|
@@ -6041,6 +6044,8 @@ module Aws::RDS
|
|
6041
6044
|
# resp.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
6042
6045
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
6043
6046
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
6047
|
+
# resp.db_subnet_group.supported_network_types #=> Array
|
6048
|
+
# resp.db_subnet_group.supported_network_types[0] #=> String
|
6044
6049
|
#
|
6045
6050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSubnetGroup AWS API Documentation
|
6046
6051
|
#
|
@@ -6447,52 +6452,6 @@ module Aws::RDS
|
|
6447
6452
|
req.send_request(options)
|
6448
6453
|
end
|
6449
6454
|
|
6450
|
-
# Deletes a custom Availability Zone (AZ).
|
6451
|
-
#
|
6452
|
-
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
6453
|
-
# vSphere cluster.
|
6454
|
-
#
|
6455
|
-
# For more information about RDS on VMware, see the [ RDS on VMware User
|
6456
|
-
# Guide.][1]
|
6457
|
-
#
|
6458
|
-
#
|
6459
|
-
#
|
6460
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
6461
|
-
#
|
6462
|
-
# @option params [required, String] :custom_availability_zone_id
|
6463
|
-
# The custom AZ identifier.
|
6464
|
-
#
|
6465
|
-
# @return [Types::DeleteCustomAvailabilityZoneResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6466
|
-
#
|
6467
|
-
# * {Types::DeleteCustomAvailabilityZoneResult#custom_availability_zone #custom_availability_zone} => Types::CustomAvailabilityZone
|
6468
|
-
#
|
6469
|
-
# @example Request syntax with placeholder values
|
6470
|
-
#
|
6471
|
-
# resp = client.delete_custom_availability_zone({
|
6472
|
-
# custom_availability_zone_id: "String", # required
|
6473
|
-
# })
|
6474
|
-
#
|
6475
|
-
# @example Response structure
|
6476
|
-
#
|
6477
|
-
# resp.custom_availability_zone.custom_availability_zone_id #=> String
|
6478
|
-
# resp.custom_availability_zone.custom_availability_zone_name #=> String
|
6479
|
-
# resp.custom_availability_zone.custom_availability_zone_status #=> String
|
6480
|
-
# resp.custom_availability_zone.vpn_details.vpn_id #=> String
|
6481
|
-
# resp.custom_availability_zone.vpn_details.vpn_tunnel_originator_ip #=> String
|
6482
|
-
# resp.custom_availability_zone.vpn_details.vpn_gateway_ip #=> String
|
6483
|
-
# resp.custom_availability_zone.vpn_details.vpn_psk #=> String
|
6484
|
-
# resp.custom_availability_zone.vpn_details.vpn_name #=> String
|
6485
|
-
# resp.custom_availability_zone.vpn_details.vpn_state #=> String
|
6486
|
-
#
|
6487
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomAvailabilityZone AWS API Documentation
|
6488
|
-
#
|
6489
|
-
# @overload delete_custom_availability_zone(params = {})
|
6490
|
-
# @param [Hash] params ({})
|
6491
|
-
def delete_custom_availability_zone(params = {}, options = {})
|
6492
|
-
req = build_request(:delete_custom_availability_zone, params)
|
6493
|
-
req.send_request(options)
|
6494
|
-
end
|
6495
|
-
|
6496
6455
|
# Deletes a custom engine version. To run this command, make sure you
|
6497
6456
|
# meet the following prerequisites:
|
6498
6457
|
#
|
@@ -6814,6 +6773,8 @@ module Aws::RDS
|
|
6814
6773
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
6815
6774
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
6816
6775
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
6776
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
6777
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
6817
6778
|
#
|
6818
6779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
6819
6780
|
#
|
@@ -7174,6 +7135,8 @@ module Aws::RDS
|
|
7174
7135
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
7175
7136
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
7176
7137
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
7138
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
7139
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
7177
7140
|
# resp.db_instance.preferred_maintenance_window #=> String
|
7178
7141
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
7179
7142
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -7276,6 +7239,7 @@ module Aws::RDS
|
|
7276
7239
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
7277
7240
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
7278
7241
|
# resp.db_instance.backup_target #=> String
|
7242
|
+
# resp.db_instance.network_type #=> String
|
7279
7243
|
#
|
7280
7244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
7281
7245
|
#
|
@@ -7771,49 +7735,6 @@ module Aws::RDS
|
|
7771
7735
|
req.send_request(options)
|
7772
7736
|
end
|
7773
7737
|
|
7774
|
-
# Deletes the installation medium for a DB engine that requires an
|
7775
|
-
# on-premises customer provided license, such as Microsoft SQL Server.
|
7776
|
-
#
|
7777
|
-
# @option params [required, String] :installation_media_id
|
7778
|
-
# The installation medium ID.
|
7779
|
-
#
|
7780
|
-
# @return [Types::InstallationMedia] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7781
|
-
#
|
7782
|
-
# * {Types::InstallationMedia#installation_media_id #installation_media_id} => String
|
7783
|
-
# * {Types::InstallationMedia#custom_availability_zone_id #custom_availability_zone_id} => String
|
7784
|
-
# * {Types::InstallationMedia#engine #engine} => String
|
7785
|
-
# * {Types::InstallationMedia#engine_version #engine_version} => String
|
7786
|
-
# * {Types::InstallationMedia#engine_installation_media_path #engine_installation_media_path} => String
|
7787
|
-
# * {Types::InstallationMedia#os_installation_media_path #os_installation_media_path} => String
|
7788
|
-
# * {Types::InstallationMedia#status #status} => String
|
7789
|
-
# * {Types::InstallationMedia#failure_cause #failure_cause} => Types::InstallationMediaFailureCause
|
7790
|
-
#
|
7791
|
-
# @example Request syntax with placeholder values
|
7792
|
-
#
|
7793
|
-
# resp = client.delete_installation_media({
|
7794
|
-
# installation_media_id: "String", # required
|
7795
|
-
# })
|
7796
|
-
#
|
7797
|
-
# @example Response structure
|
7798
|
-
#
|
7799
|
-
# resp.installation_media_id #=> String
|
7800
|
-
# resp.custom_availability_zone_id #=> String
|
7801
|
-
# resp.engine #=> String
|
7802
|
-
# resp.engine_version #=> String
|
7803
|
-
# resp.engine_installation_media_path #=> String
|
7804
|
-
# resp.os_installation_media_path #=> String
|
7805
|
-
# resp.status #=> String
|
7806
|
-
# resp.failure_cause.message #=> String
|
7807
|
-
#
|
7808
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteInstallationMedia AWS API Documentation
|
7809
|
-
#
|
7810
|
-
# @overload delete_installation_media(params = {})
|
7811
|
-
# @param [Hash] params ({})
|
7812
|
-
def delete_installation_media(params = {}, options = {})
|
7813
|
-
req = build_request(:delete_installation_media, params)
|
7814
|
-
req.send_request(options)
|
7815
|
-
end
|
7816
|
-
|
7817
7738
|
# Deletes an existing option group.
|
7818
7739
|
#
|
7819
7740
|
# @option params [required, String] :option_group_name
|
@@ -8014,85 +7935,6 @@ module Aws::RDS
|
|
8014
7935
|
req.send_request(options)
|
8015
7936
|
end
|
8016
7937
|
|
8017
|
-
# Returns information about custom Availability Zones (AZs).
|
8018
|
-
#
|
8019
|
-
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
8020
|
-
# vSphere cluster.
|
8021
|
-
#
|
8022
|
-
# For more information about RDS on VMware, see the [ RDS on VMware User
|
8023
|
-
# Guide.][1]
|
8024
|
-
#
|
8025
|
-
#
|
8026
|
-
#
|
8027
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
8028
|
-
#
|
8029
|
-
# @option params [String] :custom_availability_zone_id
|
8030
|
-
# The custom AZ identifier. If this parameter is specified, information
|
8031
|
-
# from only the specific custom AZ is returned.
|
8032
|
-
#
|
8033
|
-
# @option params [Array<Types::Filter>] :filters
|
8034
|
-
# A filter that specifies one or more custom AZs to describe.
|
8035
|
-
#
|
8036
|
-
# @option params [Integer] :max_records
|
8037
|
-
# The maximum number of records to include in the response. If more
|
8038
|
-
# records exist than the specified `MaxRecords` value, a pagination
|
8039
|
-
# token called a marker is included in the response so you can retrieve
|
8040
|
-
# the remaining results.
|
8041
|
-
#
|
8042
|
-
# Default: 100
|
8043
|
-
#
|
8044
|
-
# Constraints: Minimum 20, maximum 100.
|
8045
|
-
#
|
8046
|
-
# @option params [String] :marker
|
8047
|
-
# An optional pagination token provided by a previous
|
8048
|
-
# `DescribeCustomAvailabilityZones` request. If this parameter is
|
8049
|
-
# specified, the response includes only records beyond the marker, up to
|
8050
|
-
# the value specified by `MaxRecords`.
|
8051
|
-
#
|
8052
|
-
# @return [Types::CustomAvailabilityZoneMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8053
|
-
#
|
8054
|
-
# * {Types::CustomAvailabilityZoneMessage#marker #marker} => String
|
8055
|
-
# * {Types::CustomAvailabilityZoneMessage#custom_availability_zones #custom_availability_zones} => Array<Types::CustomAvailabilityZone>
|
8056
|
-
#
|
8057
|
-
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8058
|
-
#
|
8059
|
-
# @example Request syntax with placeholder values
|
8060
|
-
#
|
8061
|
-
# resp = client.describe_custom_availability_zones({
|
8062
|
-
# custom_availability_zone_id: "String",
|
8063
|
-
# filters: [
|
8064
|
-
# {
|
8065
|
-
# name: "String", # required
|
8066
|
-
# values: ["String"], # required
|
8067
|
-
# },
|
8068
|
-
# ],
|
8069
|
-
# max_records: 1,
|
8070
|
-
# marker: "String",
|
8071
|
-
# })
|
8072
|
-
#
|
8073
|
-
# @example Response structure
|
8074
|
-
#
|
8075
|
-
# resp.marker #=> String
|
8076
|
-
# resp.custom_availability_zones #=> Array
|
8077
|
-
# resp.custom_availability_zones[0].custom_availability_zone_id #=> String
|
8078
|
-
# resp.custom_availability_zones[0].custom_availability_zone_name #=> String
|
8079
|
-
# resp.custom_availability_zones[0].custom_availability_zone_status #=> String
|
8080
|
-
# resp.custom_availability_zones[0].vpn_details.vpn_id #=> String
|
8081
|
-
# resp.custom_availability_zones[0].vpn_details.vpn_tunnel_originator_ip #=> String
|
8082
|
-
# resp.custom_availability_zones[0].vpn_details.vpn_gateway_ip #=> String
|
8083
|
-
# resp.custom_availability_zones[0].vpn_details.vpn_psk #=> String
|
8084
|
-
# resp.custom_availability_zones[0].vpn_details.vpn_name #=> String
|
8085
|
-
# resp.custom_availability_zones[0].vpn_details.vpn_state #=> String
|
8086
|
-
#
|
8087
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeCustomAvailabilityZones AWS API Documentation
|
8088
|
-
#
|
8089
|
-
# @overload describe_custom_availability_zones(params = {})
|
8090
|
-
# @param [Hash] params ({})
|
8091
|
-
def describe_custom_availability_zones(params = {}, options = {})
|
8092
|
-
req = build_request(:describe_custom_availability_zones, params)
|
8093
|
-
req.send_request(options)
|
8094
|
-
end
|
8095
|
-
|
8096
7938
|
# Returns information about backtracks for a DB cluster.
|
8097
7939
|
#
|
8098
7940
|
# For more information on Amazon Aurora, see [ What is Amazon
|
@@ -8991,6 +8833,8 @@ module Aws::RDS
|
|
8991
8833
|
# resp.db_clusters[0].performance_insights_enabled #=> Boolean
|
8992
8834
|
# resp.db_clusters[0].performance_insights_kms_key_id #=> String
|
8993
8835
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
8836
|
+
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
8837
|
+
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
8994
8838
|
#
|
8995
8839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
8996
8840
|
#
|
@@ -9504,6 +9348,8 @@ module Aws::RDS
|
|
9504
9348
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
9505
9349
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_status #=> String
|
9506
9350
|
# resp.db_instances[0].db_subnet_group.db_subnet_group_arn #=> String
|
9351
|
+
# resp.db_instances[0].db_subnet_group.supported_network_types #=> Array
|
9352
|
+
# resp.db_instances[0].db_subnet_group.supported_network_types[0] #=> String
|
9507
9353
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
9508
9354
|
# resp.db_instances[0].pending_modified_values.db_instance_class #=> String
|
9509
9355
|
# resp.db_instances[0].pending_modified_values.allocated_storage #=> Integer
|
@@ -9606,6 +9452,7 @@ module Aws::RDS
|
|
9606
9452
|
# resp.db_instances[0].resume_full_automation_mode_time #=> Time
|
9607
9453
|
# resp.db_instances[0].custom_iam_instance_profile #=> String
|
9608
9454
|
# resp.db_instances[0].backup_target #=> String
|
9455
|
+
# resp.db_instances[0].network_type #=> String
|
9609
9456
|
#
|
9610
9457
|
#
|
9611
9458
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -10663,6 +10510,8 @@ module Aws::RDS
|
|
10663
10510
|
# resp.db_subnet_groups[0].subnets[0].subnet_outpost.arn #=> String
|
10664
10511
|
# resp.db_subnet_groups[0].subnets[0].subnet_status #=> String
|
10665
10512
|
# resp.db_subnet_groups[0].db_subnet_group_arn #=> String
|
10513
|
+
# resp.db_subnet_groups[0].supported_network_types #=> Array
|
10514
|
+
# resp.db_subnet_groups[0].supported_network_types[0] #=> String
|
10666
10515
|
#
|
10667
10516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSubnetGroups AWS API Documentation
|
10668
10517
|
#
|
@@ -10772,6 +10621,86 @@ module Aws::RDS
|
|
10772
10621
|
# @option params [required, String] :db_parameter_group_family
|
10773
10622
|
# The name of the DB parameter group family.
|
10774
10623
|
#
|
10624
|
+
# Valid Values:
|
10625
|
+
#
|
10626
|
+
# * `aurora5.6`
|
10627
|
+
#
|
10628
|
+
# * `aurora-mysql5.7`
|
10629
|
+
#
|
10630
|
+
# * `aurora-mysql8.0`
|
10631
|
+
#
|
10632
|
+
# * `aurora-postgresql10`
|
10633
|
+
#
|
10634
|
+
# * `aurora-postgresql11`
|
10635
|
+
#
|
10636
|
+
# * `aurora-postgresql12`
|
10637
|
+
#
|
10638
|
+
# * `aurora-postgresql13`
|
10639
|
+
#
|
10640
|
+
# * `mariadb10.2`
|
10641
|
+
#
|
10642
|
+
# * `mariadb10.3`
|
10643
|
+
#
|
10644
|
+
# * `mariadb10.4`
|
10645
|
+
#
|
10646
|
+
# * `mariadb10.5`
|
10647
|
+
#
|
10648
|
+
# * `mariadb10.6`
|
10649
|
+
#
|
10650
|
+
# * `mysql5.7`
|
10651
|
+
#
|
10652
|
+
# * `mysql8.0`
|
10653
|
+
#
|
10654
|
+
# * `postgres10`
|
10655
|
+
#
|
10656
|
+
# * `postgres11`
|
10657
|
+
#
|
10658
|
+
# * `postgres12`
|
10659
|
+
#
|
10660
|
+
# * `postgres13`
|
10661
|
+
#
|
10662
|
+
# * `postgres14`
|
10663
|
+
#
|
10664
|
+
# * `sqlserver-ee-11.0`
|
10665
|
+
#
|
10666
|
+
# * `sqlserver-ee-12.0`
|
10667
|
+
#
|
10668
|
+
# * `sqlserver-ee-13.0`
|
10669
|
+
#
|
10670
|
+
# * `sqlserver-ee-14.0`
|
10671
|
+
#
|
10672
|
+
# * `sqlserver-ee-15.0`
|
10673
|
+
#
|
10674
|
+
# * `sqlserver-ex-11.0`
|
10675
|
+
#
|
10676
|
+
# * `sqlserver-ex-12.0`
|
10677
|
+
#
|
10678
|
+
# * `sqlserver-ex-13.0`
|
10679
|
+
#
|
10680
|
+
# * `sqlserver-ex-14.0`
|
10681
|
+
#
|
10682
|
+
# * `sqlserver-ex-15.0`
|
10683
|
+
#
|
10684
|
+
# * `sqlserver-se-11.0`
|
10685
|
+
#
|
10686
|
+
# * `sqlserver-se-12.0`
|
10687
|
+
#
|
10688
|
+
# * `sqlserver-se-13.0`
|
10689
|
+
#
|
10690
|
+
# * `sqlserver-se-14.0`
|
10691
|
+
#
|
10692
|
+
# * `sqlserver-se-15.0`
|
10693
|
+
#
|
10694
|
+
# * `sqlserver-web-11.0`
|
10695
|
+
#
|
10696
|
+
# * `sqlserver-web-12.0`
|
10697
|
+
#
|
10698
|
+
# * `sqlserver-web-13.0`
|
10699
|
+
#
|
10700
|
+
# * `sqlserver-web-14.0`
|
10701
|
+
#
|
10702
|
+
# * `sqlserver-web-15.0`
|
10703
|
+
#
|
10775
10704
|
# @option params [Array<Types::Filter>] :filters
|
10776
10705
|
# This parameter isn't currently supported.
|
10777
10706
|
#
|
@@ -11377,82 +11306,6 @@ module Aws::RDS
|
|
11377
11306
|
req.send_request(options)
|
11378
11307
|
end
|
11379
11308
|
|
11380
|
-
# Describes the available installation media for a DB engine that
|
11381
|
-
# requires an on-premises customer provided license, such as Microsoft
|
11382
|
-
# SQL Server.
|
11383
|
-
#
|
11384
|
-
# @option params [String] :installation_media_id
|
11385
|
-
# The installation medium ID.
|
11386
|
-
#
|
11387
|
-
# @option params [Array<Types::Filter>] :filters
|
11388
|
-
# A filter that specifies one or more installation media to describe.
|
11389
|
-
# Supported filters include the following:
|
11390
|
-
#
|
11391
|
-
# * `custom-availability-zone-id` - Accepts custom Availability Zone
|
11392
|
-
# (AZ) identifiers. The results list includes information about only
|
11393
|
-
# the custom AZs identified by these identifiers.
|
11394
|
-
#
|
11395
|
-
# * `engine` - Accepts database engines. The results list includes
|
11396
|
-
# information about only the database engines identified by these
|
11397
|
-
# identifiers.
|
11398
|
-
#
|
11399
|
-
# For more information about the valid engines for installation media,
|
11400
|
-
# see ImportInstallationMedia.
|
11401
|
-
#
|
11402
|
-
# @option params [Integer] :max_records
|
11403
|
-
# An optional pagination token provided by a previous
|
11404
|
-
# DescribeInstallationMedia request. If this parameter is specified, the
|
11405
|
-
# response includes only records beyond the marker, up to the value
|
11406
|
-
# specified by `MaxRecords`.
|
11407
|
-
#
|
11408
|
-
# @option params [String] :marker
|
11409
|
-
# An optional pagination token provided by a previous request. If this
|
11410
|
-
# parameter is specified, the response includes only records beyond the
|
11411
|
-
# marker, up to the value specified by `MaxRecords`.
|
11412
|
-
#
|
11413
|
-
# @return [Types::InstallationMediaMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11414
|
-
#
|
11415
|
-
# * {Types::InstallationMediaMessage#marker #marker} => String
|
11416
|
-
# * {Types::InstallationMediaMessage#installation_media #installation_media} => Array<Types::InstallationMedia>
|
11417
|
-
#
|
11418
|
-
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
11419
|
-
#
|
11420
|
-
# @example Request syntax with placeholder values
|
11421
|
-
#
|
11422
|
-
# resp = client.describe_installation_media({
|
11423
|
-
# installation_media_id: "String",
|
11424
|
-
# filters: [
|
11425
|
-
# {
|
11426
|
-
# name: "String", # required
|
11427
|
-
# values: ["String"], # required
|
11428
|
-
# },
|
11429
|
-
# ],
|
11430
|
-
# max_records: 1,
|
11431
|
-
# marker: "String",
|
11432
|
-
# })
|
11433
|
-
#
|
11434
|
-
# @example Response structure
|
11435
|
-
#
|
11436
|
-
# resp.marker #=> String
|
11437
|
-
# resp.installation_media #=> Array
|
11438
|
-
# resp.installation_media[0].installation_media_id #=> String
|
11439
|
-
# resp.installation_media[0].custom_availability_zone_id #=> String
|
11440
|
-
# resp.installation_media[0].engine #=> String
|
11441
|
-
# resp.installation_media[0].engine_version #=> String
|
11442
|
-
# resp.installation_media[0].engine_installation_media_path #=> String
|
11443
|
-
# resp.installation_media[0].os_installation_media_path #=> String
|
11444
|
-
# resp.installation_media[0].status #=> String
|
11445
|
-
# resp.installation_media[0].failure_cause.message #=> String
|
11446
|
-
#
|
11447
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeInstallationMedia AWS API Documentation
|
11448
|
-
#
|
11449
|
-
# @overload describe_installation_media(params = {})
|
11450
|
-
# @param [Hash] params ({})
|
11451
|
-
def describe_installation_media(params = {}, options = {})
|
11452
|
-
req = build_request(:describe_installation_media, params)
|
11453
|
-
req.send_request(options)
|
11454
|
-
end
|
11455
|
-
|
11456
11309
|
# Describes all available options.
|
11457
11310
|
#
|
11458
11311
|
# @option params [required, String] :engine_name
|
@@ -11893,6 +11746,8 @@ module Aws::RDS
|
|
11893
11746
|
# resp.orderable_db_instance_options[0].supported_activity_stream_modes[0] #=> String
|
11894
11747
|
# resp.orderable_db_instance_options[0].supports_global_databases #=> Boolean
|
11895
11748
|
# resp.orderable_db_instance_options[0].supports_clusters #=> Boolean
|
11749
|
+
# resp.orderable_db_instance_options[0].supported_network_types #=> Array
|
11750
|
+
# resp.orderable_db_instance_options[0].supported_network_types[0] #=> String
|
11896
11751
|
# resp.marker #=> String
|
11897
11752
|
#
|
11898
11753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -12725,6 +12580,8 @@ module Aws::RDS
|
|
12725
12580
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
12726
12581
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
12727
12582
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
12583
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
12584
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
12728
12585
|
#
|
12729
12586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
12730
12587
|
#
|
@@ -12822,100 +12679,6 @@ module Aws::RDS
|
|
12822
12679
|
req.send_request(options)
|
12823
12680
|
end
|
12824
12681
|
|
12825
|
-
# Imports the installation media for a DB engine that requires an
|
12826
|
-
# on-premises customer provided license, such as SQL Server.
|
12827
|
-
#
|
12828
|
-
# @option params [required, String] :custom_availability_zone_id
|
12829
|
-
# The identifier of the custom Availability Zone (AZ) to import the
|
12830
|
-
# installation media to.
|
12831
|
-
#
|
12832
|
-
# @option params [required, String] :engine
|
12833
|
-
# The name of the database engine to be used for this instance.
|
12834
|
-
#
|
12835
|
-
# The list only includes supported DB engines that require an
|
12836
|
-
# on-premises customer provided license.
|
12837
|
-
#
|
12838
|
-
# Valid Values:
|
12839
|
-
#
|
12840
|
-
# * `sqlserver-ee`
|
12841
|
-
#
|
12842
|
-
# * `sqlserver-se`
|
12843
|
-
#
|
12844
|
-
# * `sqlserver-ex`
|
12845
|
-
#
|
12846
|
-
# * `sqlserver-web`
|
12847
|
-
#
|
12848
|
-
# @option params [required, String] :engine_version
|
12849
|
-
# The version number of the database engine to use.
|
12850
|
-
#
|
12851
|
-
# For a list of valid engine versions, call DescribeDBEngineVersions.
|
12852
|
-
#
|
12853
|
-
# The following are the database engines and links to information about
|
12854
|
-
# the major and minor versions. The list only includes DB engines that
|
12855
|
-
# require an on-premises customer provided license.
|
12856
|
-
#
|
12857
|
-
# **Microsoft SQL Server**
|
12858
|
-
#
|
12859
|
-
# See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
|
12860
|
-
# RDS User Guide*.
|
12861
|
-
#
|
12862
|
-
#
|
12863
|
-
#
|
12864
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
12865
|
-
#
|
12866
|
-
# @option params [required, String] :engine_installation_media_path
|
12867
|
-
# The path to the installation medium for the specified DB engine.
|
12868
|
-
#
|
12869
|
-
# Example:
|
12870
|
-
# `SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso`
|
12871
|
-
#
|
12872
|
-
# @option params [required, String] :os_installation_media_path
|
12873
|
-
# The path to the installation medium for the operating system
|
12874
|
-
# associated with the specified DB engine.
|
12875
|
-
#
|
12876
|
-
# Example: `WindowsISO/en_windows_server_2016_x64_dvd_9327751.iso`
|
12877
|
-
#
|
12878
|
-
# @return [Types::InstallationMedia] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12879
|
-
#
|
12880
|
-
# * {Types::InstallationMedia#installation_media_id #installation_media_id} => String
|
12881
|
-
# * {Types::InstallationMedia#custom_availability_zone_id #custom_availability_zone_id} => String
|
12882
|
-
# * {Types::InstallationMedia#engine #engine} => String
|
12883
|
-
# * {Types::InstallationMedia#engine_version #engine_version} => String
|
12884
|
-
# * {Types::InstallationMedia#engine_installation_media_path #engine_installation_media_path} => String
|
12885
|
-
# * {Types::InstallationMedia#os_installation_media_path #os_installation_media_path} => String
|
12886
|
-
# * {Types::InstallationMedia#status #status} => String
|
12887
|
-
# * {Types::InstallationMedia#failure_cause #failure_cause} => Types::InstallationMediaFailureCause
|
12888
|
-
#
|
12889
|
-
# @example Request syntax with placeholder values
|
12890
|
-
#
|
12891
|
-
# resp = client.import_installation_media({
|
12892
|
-
# custom_availability_zone_id: "String", # required
|
12893
|
-
# engine: "String", # required
|
12894
|
-
# engine_version: "String", # required
|
12895
|
-
# engine_installation_media_path: "String", # required
|
12896
|
-
# os_installation_media_path: "String", # required
|
12897
|
-
# })
|
12898
|
-
#
|
12899
|
-
# @example Response structure
|
12900
|
-
#
|
12901
|
-
# resp.installation_media_id #=> String
|
12902
|
-
# resp.custom_availability_zone_id #=> String
|
12903
|
-
# resp.engine #=> String
|
12904
|
-
# resp.engine_version #=> String
|
12905
|
-
# resp.engine_installation_media_path #=> String
|
12906
|
-
# resp.os_installation_media_path #=> String
|
12907
|
-
# resp.status #=> String
|
12908
|
-
# resp.failure_cause.message #=> String
|
12909
|
-
#
|
12910
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ImportInstallationMedia AWS API Documentation
|
12911
|
-
#
|
12912
|
-
# @overload import_installation_media(params = {})
|
12913
|
-
# @param [Hash] params ({})
|
12914
|
-
def import_installation_media(params = {}, options = {})
|
12915
|
-
req = build_request(:import_installation_media, params)
|
12916
|
-
req.send_request(options)
|
12917
|
-
end
|
12918
|
-
|
12919
12682
|
# Lists all tags on an Amazon RDS resource.
|
12920
12683
|
#
|
12921
12684
|
# For an overview on tagging an Amazon RDS resource, see [Tagging Amazon
|
@@ -12983,8 +12746,8 @@ module Aws::RDS
|
|
12983
12746
|
end
|
12984
12747
|
|
12985
12748
|
# Override the system-default Secure Sockets Layer/Transport Layer
|
12986
|
-
# Security (SSL/TLS) certificate for Amazon RDS for new DB instances
|
12987
|
-
#
|
12749
|
+
# Security (SSL/TLS) certificate for Amazon RDS for new DB instances, or
|
12750
|
+
# remove the override.
|
12988
12751
|
#
|
12989
12752
|
# By using this operation, you can specify an RDS-approved SSL/TLS
|
12990
12753
|
# certificate for new DB instances that is different from the default
|
@@ -13806,6 +13569,17 @@ module Aws::RDS
|
|
13806
13569
|
#
|
13807
13570
|
# Valid for: Multi-AZ DB clusters only
|
13808
13571
|
#
|
13572
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
13573
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
13574
|
+
# cluster.
|
13575
|
+
#
|
13576
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
13577
|
+
# the *Amazon Aurora User Guide*.
|
13578
|
+
#
|
13579
|
+
#
|
13580
|
+
#
|
13581
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
13582
|
+
#
|
13809
13583
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13810
13584
|
#
|
13811
13585
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -13877,6 +13651,10 @@ module Aws::RDS
|
|
13877
13651
|
# enable_performance_insights: false,
|
13878
13652
|
# performance_insights_kms_key_id: "String",
|
13879
13653
|
# performance_insights_retention_period: 1,
|
13654
|
+
# serverless_v2_scaling_configuration: {
|
13655
|
+
# min_capacity: 1.0,
|
13656
|
+
# max_capacity: 1.0,
|
13657
|
+
# },
|
13880
13658
|
# })
|
13881
13659
|
#
|
13882
13660
|
# @example Response structure
|
@@ -13981,6 +13759,8 @@ module Aws::RDS
|
|
13981
13759
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
13982
13760
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
13983
13761
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
13762
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
13763
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
13984
13764
|
#
|
13985
13765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
13986
13766
|
#
|
@@ -15082,6 +14862,26 @@ module Aws::RDS
|
|
15082
14862
|
# ends, RDS Custom resumes full automation. The minimum value is `60`
|
15083
14863
|
# (default). The maximum value is `1,440`.
|
15084
14864
|
#
|
14865
|
+
# @option params [String] :network_type
|
14866
|
+
# The network type of the DB instance.
|
14867
|
+
#
|
14868
|
+
# Valid values:
|
14869
|
+
#
|
14870
|
+
# * `IPV4`
|
14871
|
+
#
|
14872
|
+
# * `DUAL`
|
14873
|
+
#
|
14874
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
14875
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
14876
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
14877
|
+
#
|
14878
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
14879
|
+
# the *Amazon RDS User Guide.*
|
14880
|
+
#
|
14881
|
+
#
|
14882
|
+
#
|
14883
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
14884
|
+
#
|
15085
14885
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15086
14886
|
#
|
15087
14887
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -15166,6 +14966,7 @@ module Aws::RDS
|
|
15166
14966
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
15167
14967
|
# automation_mode: "full", # accepts full, all-paused
|
15168
14968
|
# resume_full_automation_mode_minutes: 1,
|
14969
|
+
# network_type: "String",
|
15169
14970
|
# })
|
15170
14971
|
#
|
15171
14972
|
# @example Response structure
|
@@ -15204,6 +15005,8 @@ module Aws::RDS
|
|
15204
15005
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
15205
15006
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
15206
15007
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
15008
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
15009
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
15207
15010
|
# resp.db_instance.preferred_maintenance_window #=> String
|
15208
15011
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
15209
15012
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -15306,6 +15109,7 @@ module Aws::RDS
|
|
15306
15109
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
15307
15110
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
15308
15111
|
# resp.db_instance.backup_target #=> String
|
15112
|
+
# resp.db_instance.network_type #=> String
|
15309
15113
|
#
|
15310
15114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
15311
15115
|
#
|
@@ -15936,6 +15740,8 @@ module Aws::RDS
|
|
15936
15740
|
# resp.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
15937
15741
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
15938
15742
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
15743
|
+
# resp.db_subnet_group.supported_network_types #=> Array
|
15744
|
+
# resp.db_subnet_group.supported_network_types[0] #=> String
|
15939
15745
|
#
|
15940
15746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSubnetGroup AWS API Documentation
|
15941
15747
|
#
|
@@ -16428,6 +16234,8 @@ module Aws::RDS
|
|
16428
16234
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
16429
16235
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
16430
16236
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
16237
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
16238
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
16431
16239
|
# resp.db_instance.preferred_maintenance_window #=> String
|
16432
16240
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
16433
16241
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -16530,6 +16338,7 @@ module Aws::RDS
|
|
16530
16338
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
16531
16339
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
16532
16340
|
# resp.db_instance.backup_target #=> String
|
16341
|
+
# resp.db_instance.network_type #=> String
|
16533
16342
|
#
|
16534
16343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
16535
16344
|
#
|
@@ -16666,6 +16475,8 @@ module Aws::RDS
|
|
16666
16475
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
16667
16476
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
16668
16477
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
16478
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
16479
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
16669
16480
|
#
|
16670
16481
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
16671
16482
|
#
|
@@ -16906,6 +16717,8 @@ module Aws::RDS
|
|
16906
16717
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
16907
16718
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
16908
16719
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
16720
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
16721
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
16909
16722
|
#
|
16910
16723
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
16911
16724
|
#
|
@@ -17014,6 +16827,8 @@ module Aws::RDS
|
|
17014
16827
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
17015
16828
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
17016
16829
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
16830
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
16831
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
17017
16832
|
# resp.db_instance.preferred_maintenance_window #=> String
|
17018
16833
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
17019
16834
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -17116,6 +16931,7 @@ module Aws::RDS
|
|
17116
16931
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
17117
16932
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
17118
16933
|
# resp.db_instance.backup_target #=> String
|
16934
|
+
# resp.db_instance.network_type #=> String
|
17119
16935
|
#
|
17120
16936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
17121
16937
|
#
|
@@ -17960,6 +17776,17 @@ module Aws::RDS
|
|
17960
17776
|
# Specify the name of the IAM role to be used when making API calls to
|
17961
17777
|
# the Directory Service.
|
17962
17778
|
#
|
17779
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
17780
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
17781
|
+
# cluster.
|
17782
|
+
#
|
17783
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
17784
|
+
# the *Amazon Aurora User Guide*.
|
17785
|
+
#
|
17786
|
+
#
|
17787
|
+
#
|
17788
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
17789
|
+
#
|
17963
17790
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17964
17791
|
#
|
17965
17792
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
@@ -18003,6 +17830,10 @@ module Aws::RDS
|
|
18003
17830
|
# copy_tags_to_snapshot: false,
|
18004
17831
|
# domain: "String",
|
18005
17832
|
# domain_iam_role_name: "String",
|
17833
|
+
# serverless_v2_scaling_configuration: {
|
17834
|
+
# min_capacity: 1.0,
|
17835
|
+
# max_capacity: 1.0,
|
17836
|
+
# },
|
18006
17837
|
# })
|
18007
17838
|
#
|
18008
17839
|
# @example Response structure
|
@@ -18107,6 +17938,8 @@ module Aws::RDS
|
|
18107
17938
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
18108
17939
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
18109
17940
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
17941
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
17942
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18110
17943
|
#
|
18111
17944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
18112
17945
|
#
|
@@ -18535,6 +18368,17 @@ module Aws::RDS
|
|
18535
18368
|
#
|
18536
18369
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
18537
18370
|
#
|
18371
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
18372
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18373
|
+
# cluster.
|
18374
|
+
#
|
18375
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18376
|
+
# the *Amazon Aurora User Guide*.
|
18377
|
+
#
|
18378
|
+
#
|
18379
|
+
#
|
18380
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18381
|
+
#
|
18538
18382
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
18539
18383
|
#
|
18540
18384
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -18597,6 +18441,10 @@ module Aws::RDS
|
|
18597
18441
|
# storage_type: "String",
|
18598
18442
|
# iops: 1,
|
18599
18443
|
# publicly_accessible: false,
|
18444
|
+
# serverless_v2_scaling_configuration: {
|
18445
|
+
# min_capacity: 1.0,
|
18446
|
+
# max_capacity: 1.0,
|
18447
|
+
# },
|
18600
18448
|
# })
|
18601
18449
|
#
|
18602
18450
|
# @example Response structure
|
@@ -18701,6 +18549,8 @@ module Aws::RDS
|
|
18701
18549
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
18702
18550
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
18703
18551
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
18552
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
18553
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18704
18554
|
#
|
18705
18555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
18706
18556
|
#
|
@@ -19099,6 +18949,17 @@ module Aws::RDS
|
|
19099
18949
|
#
|
19100
18950
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
19101
18951
|
#
|
18952
|
+
# @option params [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
18953
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18954
|
+
# cluster.
|
18955
|
+
#
|
18956
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18957
|
+
# the *Amazon Aurora User Guide*.
|
18958
|
+
#
|
18959
|
+
#
|
18960
|
+
#
|
18961
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18962
|
+
#
|
19102
18963
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19103
18964
|
#
|
19104
18965
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -19160,6 +19021,10 @@ module Aws::RDS
|
|
19160
19021
|
# storage_type: "String",
|
19161
19022
|
# publicly_accessible: false,
|
19162
19023
|
# iops: 1,
|
19024
|
+
# serverless_v2_scaling_configuration: {
|
19025
|
+
# min_capacity: 1.0,
|
19026
|
+
# max_capacity: 1.0,
|
19027
|
+
# },
|
19163
19028
|
# })
|
19164
19029
|
#
|
19165
19030
|
# @example Response structure
|
@@ -19264,6 +19129,8 @@ module Aws::RDS
|
|
19264
19129
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
19265
19130
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
19266
19131
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
19132
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
19133
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
19267
19134
|
#
|
19268
19135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
19269
19136
|
#
|
@@ -19676,6 +19543,26 @@ module Aws::RDS
|
|
19676
19543
|
#
|
19677
19544
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
19678
19545
|
#
|
19546
|
+
# @option params [String] :network_type
|
19547
|
+
# The network type of the DB instance.
|
19548
|
+
#
|
19549
|
+
# Valid values:
|
19550
|
+
#
|
19551
|
+
# * `IPV4`
|
19552
|
+
#
|
19553
|
+
# * `DUAL`
|
19554
|
+
#
|
19555
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
19556
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
19557
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
19558
|
+
#
|
19559
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
19560
|
+
# the *Amazon RDS User Guide.*
|
19561
|
+
#
|
19562
|
+
#
|
19563
|
+
#
|
19564
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
19565
|
+
#
|
19679
19566
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19680
19567
|
#
|
19681
19568
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -19819,6 +19706,7 @@ module Aws::RDS
|
|
19819
19706
|
# enable_customer_owned_ip: false,
|
19820
19707
|
# custom_iam_instance_profile: "String",
|
19821
19708
|
# backup_target: "String",
|
19709
|
+
# network_type: "String",
|
19822
19710
|
# })
|
19823
19711
|
#
|
19824
19712
|
# @example Response structure
|
@@ -19857,6 +19745,8 @@ module Aws::RDS
|
|
19857
19745
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
19858
19746
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
19859
19747
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
19748
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
19749
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
19860
19750
|
# resp.db_instance.preferred_maintenance_window #=> String
|
19861
19751
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
19862
19752
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -19959,6 +19849,7 @@ module Aws::RDS
|
|
19959
19849
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
19960
19850
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
19961
19851
|
# resp.db_instance.backup_target #=> String
|
19852
|
+
# resp.db_instance.network_type #=> String
|
19962
19853
|
#
|
19963
19854
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
19964
19855
|
#
|
@@ -20362,6 +20253,26 @@ module Aws::RDS
|
|
20362
20253
|
#
|
20363
20254
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
20364
20255
|
#
|
20256
|
+
# @option params [String] :network_type
|
20257
|
+
# The network type of the DB instance.
|
20258
|
+
#
|
20259
|
+
# Valid values:
|
20260
|
+
#
|
20261
|
+
# * `IPV4`
|
20262
|
+
#
|
20263
|
+
# * `DUAL`
|
20264
|
+
#
|
20265
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
20266
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
20267
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
20268
|
+
#
|
20269
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
20270
|
+
# the *Amazon RDS User Guide.*
|
20271
|
+
#
|
20272
|
+
#
|
20273
|
+
#
|
20274
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
20275
|
+
#
|
20365
20276
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20366
20277
|
#
|
20367
20278
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -20423,6 +20334,7 @@ module Aws::RDS
|
|
20423
20334
|
# use_default_processor_features: false,
|
20424
20335
|
# deletion_protection: false,
|
20425
20336
|
# max_allocated_storage: 1,
|
20337
|
+
# network_type: "String",
|
20426
20338
|
# })
|
20427
20339
|
#
|
20428
20340
|
# @example Response structure
|
@@ -20461,6 +20373,8 @@ module Aws::RDS
|
|
20461
20373
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
20462
20374
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
20463
20375
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
20376
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
20377
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
20464
20378
|
# resp.db_instance.preferred_maintenance_window #=> String
|
20465
20379
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
20466
20380
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -20563,6 +20477,7 @@ module Aws::RDS
|
|
20563
20477
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
20564
20478
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
20565
20479
|
# resp.db_instance.backup_target #=> String
|
20480
|
+
# resp.db_instance.network_type #=> String
|
20566
20481
|
#
|
20567
20482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
20568
20483
|
#
|
@@ -20988,6 +20903,26 @@ module Aws::RDS
|
|
20988
20903
|
#
|
20989
20904
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
20990
20905
|
#
|
20906
|
+
# @option params [String] :network_type
|
20907
|
+
# The network type of the DB instance.
|
20908
|
+
#
|
20909
|
+
# Valid values:
|
20910
|
+
#
|
20911
|
+
# * `IPV4`
|
20912
|
+
#
|
20913
|
+
# * `DUAL`
|
20914
|
+
#
|
20915
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
20916
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
20917
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
20918
|
+
#
|
20919
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
20920
|
+
# the *Amazon RDS User Guide.*
|
20921
|
+
#
|
20922
|
+
#
|
20923
|
+
#
|
20924
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
20925
|
+
#
|
20991
20926
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20992
20927
|
#
|
20993
20928
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -21137,6 +21072,7 @@ module Aws::RDS
|
|
21137
21072
|
# enable_customer_owned_ip: false,
|
21138
21073
|
# custom_iam_instance_profile: "String",
|
21139
21074
|
# backup_target: "String",
|
21075
|
+
# network_type: "String",
|
21140
21076
|
# })
|
21141
21077
|
#
|
21142
21078
|
# @example Response structure
|
@@ -21175,6 +21111,8 @@ module Aws::RDS
|
|
21175
21111
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
21176
21112
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
21177
21113
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
21114
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
21115
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
21178
21116
|
# resp.db_instance.preferred_maintenance_window #=> String
|
21179
21117
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
21180
21118
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -21277,6 +21215,7 @@ module Aws::RDS
|
|
21277
21215
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
21278
21216
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
21279
21217
|
# resp.db_instance.backup_target #=> String
|
21218
|
+
# resp.db_instance.network_type #=> String
|
21280
21219
|
#
|
21281
21220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
21282
21221
|
#
|
@@ -21578,6 +21517,8 @@ module Aws::RDS
|
|
21578
21517
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
21579
21518
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
21580
21519
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
21520
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
21521
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
21581
21522
|
#
|
21582
21523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
21583
21524
|
#
|
@@ -21653,6 +21594,8 @@ module Aws::RDS
|
|
21653
21594
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
21654
21595
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
21655
21596
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
21597
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
21598
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
21656
21599
|
# resp.db_instance.preferred_maintenance_window #=> String
|
21657
21600
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
21658
21601
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -21755,6 +21698,7 @@ module Aws::RDS
|
|
21755
21698
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
21756
21699
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
21757
21700
|
# resp.db_instance.backup_target #=> String
|
21701
|
+
# resp.db_instance.network_type #=> String
|
21758
21702
|
#
|
21759
21703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
21760
21704
|
#
|
@@ -22168,6 +22112,8 @@ module Aws::RDS
|
|
22168
22112
|
# resp.db_cluster.performance_insights_enabled #=> Boolean
|
22169
22113
|
# resp.db_cluster.performance_insights_kms_key_id #=> String
|
22170
22114
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
22115
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
22116
|
+
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
22171
22117
|
#
|
22172
22118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
22173
22119
|
#
|
@@ -22250,6 +22196,8 @@ module Aws::RDS
|
|
22250
22196
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_outpost.arn #=> String
|
22251
22197
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
22252
22198
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
22199
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
22200
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
22253
22201
|
# resp.db_instance.preferred_maintenance_window #=> String
|
22254
22202
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
22255
22203
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
@@ -22352,6 +22300,7 @@ module Aws::RDS
|
|
22352
22300
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
22353
22301
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
22354
22302
|
# resp.db_instance.backup_target #=> String
|
22303
|
+
# resp.db_instance.network_type #=> String
|
22355
22304
|
#
|
22356
22305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
22357
22306
|
#
|
@@ -22442,7 +22391,7 @@ module Aws::RDS
|
|
22442
22391
|
params: params,
|
22443
22392
|
config: config)
|
22444
22393
|
context[:gem_name] = 'aws-sdk-rds'
|
22445
|
-
context[:gem_version] = '1.
|
22394
|
+
context[:gem_version] = '1.145.0'
|
22446
22395
|
Seahorse::Client::Request.new(handlers, context)
|
22447
22396
|
end
|
22448
22397
|
|