aws-sdk-rds 1.67.0 → 1.68.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 +465 -57
- data/lib/aws-sdk-rds/client_api.rb +168 -0
- data/lib/aws-sdk-rds/db_cluster.rb +2 -2
- data/lib/aws-sdk-rds/db_instance.rb +12 -2
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +2 -2
- data/lib/aws-sdk-rds/resource.rb +16 -6
- data/lib/aws-sdk-rds/types.rb +562 -56
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbd09762cd2959f20d0e74c0dca4fa9c3e6ace86
|
4
|
+
data.tar.gz: 0c114feeb01c42355072801bfa931c237c07d693
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27fa3450ec6c26cbad12d3b65944e7e148494f7b8e366960874aede2355b2d7de002ecd6c9e690fe6ee5404d3d4200ee5751b94d167ee17319add1cc6b21e817
|
7
|
+
data.tar.gz: 432f1048ced97be3192af0dc5d87641d3145d54d93c50f9c1a4a0aca064e77f53b3721725afc36c830c3765e8a9bbfec2c4f45541312fa72e06c174fd40caeae
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1596,6 +1596,71 @@ module Aws::RDS
|
|
1596
1596
|
req.send_request(options)
|
1597
1597
|
end
|
1598
1598
|
|
1599
|
+
# Creates a custom Availability Zone (AZ).
|
1600
|
+
#
|
1601
|
+
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
1602
|
+
# vSphere cluster.
|
1603
|
+
#
|
1604
|
+
# For more information about RDS on VMware, see the [ *RDS on VMware
|
1605
|
+
# User Guide.* ][1]
|
1606
|
+
#
|
1607
|
+
#
|
1608
|
+
#
|
1609
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
1610
|
+
#
|
1611
|
+
# @option params [required, String] :custom_availability_zone_name
|
1612
|
+
# The name of the custom Availability Zone (AZ).
|
1613
|
+
#
|
1614
|
+
# @option params [String] :existing_vpn_id
|
1615
|
+
# The ID of an existing virtual private network (VPN) between the Amazon
|
1616
|
+
# RDS website and the VMware vSphere cluster.
|
1617
|
+
#
|
1618
|
+
# @option params [String] :new_vpn_tunnel_name
|
1619
|
+
# The name of a new VPN tunnel between the Amazon RDS website and the
|
1620
|
+
# VMware vSphere cluster.
|
1621
|
+
#
|
1622
|
+
# Specify this parameter only if `ExistingVpnId` is not specified.
|
1623
|
+
#
|
1624
|
+
# @option params [String] :vpn_tunnel_originator_ip
|
1625
|
+
# The IP address of network traffic from your on-premises data center. A
|
1626
|
+
# custom AZ receives the network traffic.
|
1627
|
+
#
|
1628
|
+
# Specify this parameter only if `ExistingVpnId` is not specified.
|
1629
|
+
#
|
1630
|
+
# @return [Types::CreateCustomAvailabilityZoneResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1631
|
+
#
|
1632
|
+
# * {Types::CreateCustomAvailabilityZoneResult#custom_availability_zone #custom_availability_zone} => Types::CustomAvailabilityZone
|
1633
|
+
#
|
1634
|
+
# @example Request syntax with placeholder values
|
1635
|
+
#
|
1636
|
+
# resp = client.create_custom_availability_zone({
|
1637
|
+
# custom_availability_zone_name: "String", # required
|
1638
|
+
# existing_vpn_id: "String",
|
1639
|
+
# new_vpn_tunnel_name: "String",
|
1640
|
+
# vpn_tunnel_originator_ip: "String",
|
1641
|
+
# })
|
1642
|
+
#
|
1643
|
+
# @example Response structure
|
1644
|
+
#
|
1645
|
+
# resp.custom_availability_zone.custom_availability_zone_id #=> String
|
1646
|
+
# resp.custom_availability_zone.custom_availability_zone_name #=> String
|
1647
|
+
# resp.custom_availability_zone.custom_availability_zone_status #=> String
|
1648
|
+
# resp.custom_availability_zone.vpn_details.vpn_id #=> String
|
1649
|
+
# resp.custom_availability_zone.vpn_details.vpn_tunnel_originator_ip #=> String
|
1650
|
+
# resp.custom_availability_zone.vpn_details.vpn_gateway_ip #=> String
|
1651
|
+
# resp.custom_availability_zone.vpn_details.vpn_psk #=> String
|
1652
|
+
# resp.custom_availability_zone.vpn_details.vpn_name #=> String
|
1653
|
+
# resp.custom_availability_zone.vpn_details.vpn_state #=> String
|
1654
|
+
#
|
1655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomAvailabilityZone AWS API Documentation
|
1656
|
+
#
|
1657
|
+
# @overload create_custom_availability_zone(params = {})
|
1658
|
+
# @param [Hash] params ({})
|
1659
|
+
def create_custom_availability_zone(params = {}, options = {})
|
1660
|
+
req = build_request(:create_custom_availability_zone, params)
|
1661
|
+
req.send_request(options)
|
1662
|
+
end
|
1663
|
+
|
1599
1664
|
# Creates a new Amazon Aurora DB cluster.
|
1600
1665
|
#
|
1601
1666
|
# You can use the `ReplicationSourceIdentifier` parameter to create the
|
@@ -2764,9 +2829,19 @@ module Aws::RDS
|
|
2764
2829
|
# the DB instance is a Multi-AZ deployment. The specified Availability
|
2765
2830
|
# Zone must be in the same AWS Region as the current endpoint.
|
2766
2831
|
#
|
2832
|
+
# <note markdown="1"> If you're creating a DB instance in an RDS on VMware environment,
|
2833
|
+
# specify the identifier of the custom Availability Zone to create the
|
2834
|
+
# DB instance in.
|
2835
|
+
#
|
2836
|
+
# For more information about RDS on VMware, see the [ *RDS on VMware
|
2837
|
+
# User Guide.* ][2]
|
2838
|
+
#
|
2839
|
+
# </note>
|
2840
|
+
#
|
2767
2841
|
#
|
2768
2842
|
#
|
2769
2843
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html
|
2844
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
2770
2845
|
#
|
2771
2846
|
# @option params [String] :db_subnet_group_name
|
2772
2847
|
# A DB subnet group to associate with this DB instance.
|
@@ -4778,6 +4853,52 @@ module Aws::RDS
|
|
4778
4853
|
req.send_request(options)
|
4779
4854
|
end
|
4780
4855
|
|
4856
|
+
# Deletes a custom Availability Zone (AZ).
|
4857
|
+
#
|
4858
|
+
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
4859
|
+
# vSphere cluster.
|
4860
|
+
#
|
4861
|
+
# For more information about RDS on VMware, see the [ *RDS on VMware
|
4862
|
+
# User Guide.* ][1]
|
4863
|
+
#
|
4864
|
+
#
|
4865
|
+
#
|
4866
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
4867
|
+
#
|
4868
|
+
# @option params [required, String] :custom_availability_zone_id
|
4869
|
+
# The custom AZ identifier.
|
4870
|
+
#
|
4871
|
+
# @return [Types::DeleteCustomAvailabilityZoneResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4872
|
+
#
|
4873
|
+
# * {Types::DeleteCustomAvailabilityZoneResult#custom_availability_zone #custom_availability_zone} => Types::CustomAvailabilityZone
|
4874
|
+
#
|
4875
|
+
# @example Request syntax with placeholder values
|
4876
|
+
#
|
4877
|
+
# resp = client.delete_custom_availability_zone({
|
4878
|
+
# custom_availability_zone_id: "String", # required
|
4879
|
+
# })
|
4880
|
+
#
|
4881
|
+
# @example Response structure
|
4882
|
+
#
|
4883
|
+
# resp.custom_availability_zone.custom_availability_zone_id #=> String
|
4884
|
+
# resp.custom_availability_zone.custom_availability_zone_name #=> String
|
4885
|
+
# resp.custom_availability_zone.custom_availability_zone_status #=> String
|
4886
|
+
# resp.custom_availability_zone.vpn_details.vpn_id #=> String
|
4887
|
+
# resp.custom_availability_zone.vpn_details.vpn_tunnel_originator_ip #=> String
|
4888
|
+
# resp.custom_availability_zone.vpn_details.vpn_gateway_ip #=> String
|
4889
|
+
# resp.custom_availability_zone.vpn_details.vpn_psk #=> String
|
4890
|
+
# resp.custom_availability_zone.vpn_details.vpn_name #=> String
|
4891
|
+
# resp.custom_availability_zone.vpn_details.vpn_state #=> String
|
4892
|
+
#
|
4893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomAvailabilityZone AWS API Documentation
|
4894
|
+
#
|
4895
|
+
# @overload delete_custom_availability_zone(params = {})
|
4896
|
+
# @param [Hash] params ({})
|
4897
|
+
def delete_custom_availability_zone(params = {}, options = {})
|
4898
|
+
req = build_request(:delete_custom_availability_zone, params)
|
4899
|
+
req.send_request(options)
|
4900
|
+
end
|
4901
|
+
|
4781
4902
|
# The DeleteDBCluster action deletes a previously provisioned DB
|
4782
4903
|
# cluster. When you delete a DB cluster, all automated backups for that
|
4783
4904
|
# DB cluster are deleted and can't be recovered. Manual DB cluster
|
@@ -5745,6 +5866,49 @@ module Aws::RDS
|
|
5745
5866
|
req.send_request(options)
|
5746
5867
|
end
|
5747
5868
|
|
5869
|
+
# Deletes the installation media for an on-premises, bring your own
|
5870
|
+
# media (BYOM) DB engine, such as Microsoft SQL Server.
|
5871
|
+
#
|
5872
|
+
# @option params [required, String] :installation_media_id
|
5873
|
+
# The installation media ID.
|
5874
|
+
#
|
5875
|
+
# @return [Types::InstallationMedia] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5876
|
+
#
|
5877
|
+
# * {Types::InstallationMedia#installation_media_id #installation_media_id} => String
|
5878
|
+
# * {Types::InstallationMedia#custom_availability_zone_id #custom_availability_zone_id} => String
|
5879
|
+
# * {Types::InstallationMedia#engine #engine} => String
|
5880
|
+
# * {Types::InstallationMedia#engine_version #engine_version} => String
|
5881
|
+
# * {Types::InstallationMedia#engine_installation_media_path #engine_installation_media_path} => String
|
5882
|
+
# * {Types::InstallationMedia#os_installation_media_path #os_installation_media_path} => String
|
5883
|
+
# * {Types::InstallationMedia#status #status} => String
|
5884
|
+
# * {Types::InstallationMedia#failure_cause #failure_cause} => Types::InstallationMediaFailureCause
|
5885
|
+
#
|
5886
|
+
# @example Request syntax with placeholder values
|
5887
|
+
#
|
5888
|
+
# resp = client.delete_installation_media({
|
5889
|
+
# installation_media_id: "String", # required
|
5890
|
+
# })
|
5891
|
+
#
|
5892
|
+
# @example Response structure
|
5893
|
+
#
|
5894
|
+
# resp.installation_media_id #=> String
|
5895
|
+
# resp.custom_availability_zone_id #=> String
|
5896
|
+
# resp.engine #=> String
|
5897
|
+
# resp.engine_version #=> String
|
5898
|
+
# resp.engine_installation_media_path #=> String
|
5899
|
+
# resp.os_installation_media_path #=> String
|
5900
|
+
# resp.status #=> String
|
5901
|
+
# resp.failure_cause.message #=> String
|
5902
|
+
#
|
5903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteInstallationMedia AWS API Documentation
|
5904
|
+
#
|
5905
|
+
# @overload delete_installation_media(params = {})
|
5906
|
+
# @param [Hash] params ({})
|
5907
|
+
def delete_installation_media(params = {}, options = {})
|
5908
|
+
req = build_request(:delete_installation_media, params)
|
5909
|
+
req.send_request(options)
|
5910
|
+
end
|
5911
|
+
|
5748
5912
|
# Deletes an existing option group.
|
5749
5913
|
#
|
5750
5914
|
# @option params [required, String] :option_group_name
|
@@ -5839,8 +6003,8 @@ module Aws::RDS
|
|
5839
6003
|
# @option params [Integer] :max_records
|
5840
6004
|
# The maximum number of records to include in the response. If more
|
5841
6005
|
# records exist than the specified `MaxRecords` value, a pagination
|
5842
|
-
# token called a marker is included in the response so that
|
5843
|
-
# remaining results
|
6006
|
+
# token called a marker is included in the response so that you can
|
6007
|
+
# retrieve the remaining results.
|
5844
6008
|
#
|
5845
6009
|
# Default: 100
|
5846
6010
|
#
|
@@ -5905,6 +6069,83 @@ module Aws::RDS
|
|
5905
6069
|
req.send_request(options)
|
5906
6070
|
end
|
5907
6071
|
|
6072
|
+
# Returns information about custom Availability Zones (AZs).
|
6073
|
+
#
|
6074
|
+
# A custom AZ is an on-premises AZ that is integrated with a VMware
|
6075
|
+
# vSphere cluster.
|
6076
|
+
#
|
6077
|
+
# For more information about RDS on VMware, see the [ *RDS on VMware
|
6078
|
+
# User Guide.* ][1]
|
6079
|
+
#
|
6080
|
+
#
|
6081
|
+
#
|
6082
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
6083
|
+
#
|
6084
|
+
# @option params [String] :custom_availability_zone_id
|
6085
|
+
# The custom AZ identifier. If this parameter is specified, information
|
6086
|
+
# from only the specific custom AZ is returned.
|
6087
|
+
#
|
6088
|
+
# @option params [Array<Types::Filter>] :filters
|
6089
|
+
# A filter that specifies one or more custom AZs to describe.
|
6090
|
+
#
|
6091
|
+
# @option params [Integer] :max_records
|
6092
|
+
# The maximum number of records to include in the response. If more
|
6093
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
6094
|
+
# token called a marker is included in the response so that you can
|
6095
|
+
# retrieve the remaining results.
|
6096
|
+
#
|
6097
|
+
# Default: 100
|
6098
|
+
#
|
6099
|
+
# Constraints: Minimum 20, maximum 100.
|
6100
|
+
#
|
6101
|
+
# @option params [String] :marker
|
6102
|
+
# An optional pagination token provided by a previous
|
6103
|
+
# `DescribeCustomAvailabilityZones` request. If this parameter is
|
6104
|
+
# specified, the response includes only records beyond the marker, up to
|
6105
|
+
# the value specified by `MaxRecords`.
|
6106
|
+
#
|
6107
|
+
# @return [Types::CustomAvailabilityZoneMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6108
|
+
#
|
6109
|
+
# * {Types::CustomAvailabilityZoneMessage#marker #marker} => String
|
6110
|
+
# * {Types::CustomAvailabilityZoneMessage#custom_availability_zones #custom_availability_zones} => Array<Types::CustomAvailabilityZone>
|
6111
|
+
#
|
6112
|
+
# @example Request syntax with placeholder values
|
6113
|
+
#
|
6114
|
+
# resp = client.describe_custom_availability_zones({
|
6115
|
+
# custom_availability_zone_id: "String",
|
6116
|
+
# filters: [
|
6117
|
+
# {
|
6118
|
+
# name: "String", # required
|
6119
|
+
# values: ["String"], # required
|
6120
|
+
# },
|
6121
|
+
# ],
|
6122
|
+
# max_records: 1,
|
6123
|
+
# marker: "String",
|
6124
|
+
# })
|
6125
|
+
#
|
6126
|
+
# @example Response structure
|
6127
|
+
#
|
6128
|
+
# resp.marker #=> String
|
6129
|
+
# resp.custom_availability_zones #=> Array
|
6130
|
+
# resp.custom_availability_zones[0].custom_availability_zone_id #=> String
|
6131
|
+
# resp.custom_availability_zones[0].custom_availability_zone_name #=> String
|
6132
|
+
# resp.custom_availability_zones[0].custom_availability_zone_status #=> String
|
6133
|
+
# resp.custom_availability_zones[0].vpn_details.vpn_id #=> String
|
6134
|
+
# resp.custom_availability_zones[0].vpn_details.vpn_tunnel_originator_ip #=> String
|
6135
|
+
# resp.custom_availability_zones[0].vpn_details.vpn_gateway_ip #=> String
|
6136
|
+
# resp.custom_availability_zones[0].vpn_details.vpn_psk #=> String
|
6137
|
+
# resp.custom_availability_zones[0].vpn_details.vpn_name #=> String
|
6138
|
+
# resp.custom_availability_zones[0].vpn_details.vpn_state #=> String
|
6139
|
+
#
|
6140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeCustomAvailabilityZones AWS API Documentation
|
6141
|
+
#
|
6142
|
+
# @overload describe_custom_availability_zones(params = {})
|
6143
|
+
# @param [Hash] params ({})
|
6144
|
+
def describe_custom_availability_zones(params = {}, options = {})
|
6145
|
+
req = build_request(:describe_custom_availability_zones, params)
|
6146
|
+
req.send_request(options)
|
6147
|
+
end
|
6148
|
+
|
5908
6149
|
# Returns information about backtracks for a DB cluster.
|
5909
6150
|
#
|
5910
6151
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
@@ -5975,8 +6216,8 @@ module Aws::RDS
|
|
5975
6216
|
# @option params [Integer] :max_records
|
5976
6217
|
# The maximum number of records to include in the response. If more
|
5977
6218
|
# records exist than the specified `MaxRecords` value, a pagination
|
5978
|
-
# token called a marker is included in the response so that
|
5979
|
-
# remaining results
|
6219
|
+
# token called a marker is included in the response so that you can
|
6220
|
+
# retrieve the remaining results.
|
5980
6221
|
#
|
5981
6222
|
# Default: 100
|
5982
6223
|
#
|
@@ -6058,8 +6299,8 @@ module Aws::RDS
|
|
6058
6299
|
# @option params [Integer] :max_records
|
6059
6300
|
# The maximum number of records to include in the response. If more
|
6060
6301
|
# records exist than the specified `MaxRecords` value, a pagination
|
6061
|
-
# token called a marker is included in the response so that
|
6062
|
-
# remaining results
|
6302
|
+
# token called a marker is included in the response so that you can
|
6303
|
+
# retrieve the remaining results.
|
6063
6304
|
#
|
6064
6305
|
# Default: 100
|
6065
6306
|
#
|
@@ -6150,8 +6391,8 @@ module Aws::RDS
|
|
6150
6391
|
# @option params [Integer] :max_records
|
6151
6392
|
# The maximum number of records to include in the response. If more
|
6152
6393
|
# records exist than the specified `MaxRecords` value, a pagination
|
6153
|
-
# token called a marker is included in the response so that
|
6154
|
-
# remaining results
|
6394
|
+
# token called a marker is included in the response so that you can
|
6395
|
+
# retrieve the remaining results.
|
6155
6396
|
#
|
6156
6397
|
# Default: 100
|
6157
6398
|
#
|
@@ -6248,8 +6489,8 @@ module Aws::RDS
|
|
6248
6489
|
# @option params [Integer] :max_records
|
6249
6490
|
# The maximum number of records to include in the response. If more
|
6250
6491
|
# records exist than the specified `MaxRecords` value, a pagination
|
6251
|
-
# token called a marker is included in the response so that
|
6252
|
-
# remaining results
|
6492
|
+
# token called a marker is included in the response so that you can
|
6493
|
+
# retrieve the remaining results.
|
6253
6494
|
#
|
6254
6495
|
# Default: 100
|
6255
6496
|
#
|
@@ -6469,8 +6710,8 @@ module Aws::RDS
|
|
6469
6710
|
# @option params [Integer] :max_records
|
6470
6711
|
# The maximum number of records to include in the response. If more
|
6471
6712
|
# records exist than the specified `MaxRecords` value, a pagination
|
6472
|
-
# token called a marker is included in the response so that
|
6473
|
-
# remaining results
|
6713
|
+
# token called a marker is included in the response so that you can
|
6714
|
+
# retrieve the remaining results.
|
6474
6715
|
#
|
6475
6716
|
# Default: 100
|
6476
6717
|
#
|
@@ -6611,8 +6852,8 @@ module Aws::RDS
|
|
6611
6852
|
# @option params [Integer] :max_records
|
6612
6853
|
# The maximum number of records to include in the response. If more
|
6613
6854
|
# records exist than the specified `MaxRecords` value, a pagination
|
6614
|
-
# token called a marker is included in the response so that
|
6615
|
-
# remaining results
|
6855
|
+
# token called a marker is included in the response so that you can
|
6856
|
+
# retrieve the remaining results.
|
6616
6857
|
#
|
6617
6858
|
# Default: 100
|
6618
6859
|
#
|
@@ -6771,8 +7012,8 @@ module Aws::RDS
|
|
6771
7012
|
# @option params [Integer] :max_records
|
6772
7013
|
# The maximum number of records to include in the response. If more than
|
6773
7014
|
# the `MaxRecords` value is available, a pagination token called a
|
6774
|
-
# marker is included in the response so that
|
6775
|
-
#
|
7015
|
+
# marker is included in the response so that you can retrieve the
|
7016
|
+
# remaining results.
|
6776
7017
|
#
|
6777
7018
|
# Default: 100
|
6778
7019
|
#
|
@@ -6940,8 +7181,8 @@ module Aws::RDS
|
|
6940
7181
|
# @option params [Integer] :max_records
|
6941
7182
|
# The maximum number of records to include in the response. If more
|
6942
7183
|
# records exist than the specified `MaxRecords` value, a pagination
|
6943
|
-
# token called a marker is included in the response so that
|
6944
|
-
# remaining results
|
7184
|
+
# token called a marker is included in the response so that you can
|
7185
|
+
# retrieve the remaining results.
|
6945
7186
|
#
|
6946
7187
|
# @option params [String] :marker
|
6947
7188
|
# The pagination token provided in the previous request. If this
|
@@ -7048,8 +7289,8 @@ module Aws::RDS
|
|
7048
7289
|
# @option params [Integer] :max_records
|
7049
7290
|
# The maximum number of records to include in the response. If more
|
7050
7291
|
# records exist than the specified `MaxRecords` value, a pagination
|
7051
|
-
# token called a marker is included in the response so that
|
7052
|
-
# remaining results
|
7292
|
+
# token called a marker is included in the response so that you can
|
7293
|
+
# retrieve the remaining results.
|
7053
7294
|
#
|
7054
7295
|
# Default: 100
|
7055
7296
|
#
|
@@ -7250,8 +7491,8 @@ module Aws::RDS
|
|
7250
7491
|
# @option params [Integer] :max_records
|
7251
7492
|
# The maximum number of records to include in the response. If more
|
7252
7493
|
# records exist than the specified MaxRecords value, a pagination token
|
7253
|
-
# called a marker is included in the response so that
|
7254
|
-
#
|
7494
|
+
# called a marker is included in the response so that you can retrieve
|
7495
|
+
# the remaining results.
|
7255
7496
|
#
|
7256
7497
|
# @option params [String] :marker
|
7257
7498
|
# The pagination token provided in the previous request. If this
|
@@ -7334,8 +7575,8 @@ module Aws::RDS
|
|
7334
7575
|
# @option params [Integer] :max_records
|
7335
7576
|
# The maximum number of records to include in the response. If more
|
7336
7577
|
# records exist than the specified `MaxRecords` value, a pagination
|
7337
|
-
# token called a marker is included in the response so that
|
7338
|
-
# remaining results
|
7578
|
+
# token called a marker is included in the response so that you can
|
7579
|
+
# retrieve the remaining results.
|
7339
7580
|
#
|
7340
7581
|
# Default: 100
|
7341
7582
|
#
|
@@ -7422,8 +7663,8 @@ module Aws::RDS
|
|
7422
7663
|
# @option params [Integer] :max_records
|
7423
7664
|
# The maximum number of records to include in the response. If more
|
7424
7665
|
# records exist than the specified `MaxRecords` value, a pagination
|
7425
|
-
# token called a marker is included in the response so that
|
7426
|
-
# remaining results
|
7666
|
+
# token called a marker is included in the response so that you can
|
7667
|
+
# retrieve the remaining results.
|
7427
7668
|
#
|
7428
7669
|
# Default: 100
|
7429
7670
|
#
|
@@ -7509,8 +7750,8 @@ module Aws::RDS
|
|
7509
7750
|
# @option params [Integer] :max_records
|
7510
7751
|
# The maximum number of records to include in the response. If more
|
7511
7752
|
# records exist than the specified `MaxRecords` value, a pagination
|
7512
|
-
# token called a marker is included in the response so that
|
7513
|
-
# remaining results
|
7753
|
+
# token called a marker is included in the response so that you can
|
7754
|
+
# retrieve the remaining results.
|
7514
7755
|
#
|
7515
7756
|
# Default: 100
|
7516
7757
|
#
|
@@ -7725,8 +7966,8 @@ module Aws::RDS
|
|
7725
7966
|
# @option params [Integer] :max_records
|
7726
7967
|
# The maximum number of records to include in the response. If more
|
7727
7968
|
# records exist than the specified `MaxRecords` value, a pagination
|
7728
|
-
# token called a marker is included in the response so that
|
7729
|
-
# remaining results
|
7969
|
+
# token called a marker is included in the response so that you can
|
7970
|
+
# retrieve the remaining results.
|
7730
7971
|
#
|
7731
7972
|
# Default: 100
|
7732
7973
|
#
|
@@ -7862,8 +8103,8 @@ module Aws::RDS
|
|
7862
8103
|
# @option params [Integer] :max_records
|
7863
8104
|
# The maximum number of records to include in the response. If more
|
7864
8105
|
# records exist than the specified `MaxRecords` value, a pagination
|
7865
|
-
# token called a marker is included in the response so that
|
7866
|
-
# remaining results
|
8106
|
+
# token called a marker is included in the response so that you can
|
8107
|
+
# retrieve the remaining results.
|
7867
8108
|
#
|
7868
8109
|
# Default: 100
|
7869
8110
|
#
|
@@ -7950,8 +8191,8 @@ module Aws::RDS
|
|
7950
8191
|
# @option params [Integer] :max_records
|
7951
8192
|
# The maximum number of records to include in the response. If more
|
7952
8193
|
# records exist than the specified `MaxRecords` value, a pagination
|
7953
|
-
# token called a marker is included in the response so that
|
7954
|
-
# remaining results
|
8194
|
+
# token called a marker is included in the response so that you can
|
8195
|
+
# retrieve the remaining results.
|
7955
8196
|
#
|
7956
8197
|
# Default: 100
|
7957
8198
|
#
|
@@ -8035,8 +8276,8 @@ module Aws::RDS
|
|
8035
8276
|
# @option params [Integer] :max_records
|
8036
8277
|
# The maximum number of records to include in the response. If more
|
8037
8278
|
# records exist than the specified `MaxRecords` value, a pagination
|
8038
|
-
# token called a marker is included in the response so that
|
8039
|
-
# remaining results
|
8279
|
+
# token called a marker is included in the response so that you can
|
8280
|
+
# retrieve the remaining results.
|
8040
8281
|
#
|
8041
8282
|
# Default: 100
|
8042
8283
|
#
|
@@ -8188,8 +8429,8 @@ module Aws::RDS
|
|
8188
8429
|
# @option params [Integer] :max_records
|
8189
8430
|
# The maximum number of records to include in the response. If more
|
8190
8431
|
# records exist than the specified `MaxRecords` value, a pagination
|
8191
|
-
# token called a marker is included in the response so that
|
8192
|
-
# remaining results
|
8432
|
+
# token called a marker is included in the response so that you can
|
8433
|
+
# retrieve the remaining results.
|
8193
8434
|
#
|
8194
8435
|
# Default: 100
|
8195
8436
|
#
|
@@ -8328,8 +8569,8 @@ module Aws::RDS
|
|
8328
8569
|
# @option params [Integer] :max_records
|
8329
8570
|
# The maximum number of records to include in the response. If more
|
8330
8571
|
# records exist than the specified `MaxRecords` value, a pagination
|
8331
|
-
# token called a marker is included in the response so that
|
8332
|
-
# remaining results
|
8572
|
+
# token called a marker is included in the response so that you can
|
8573
|
+
# retrieve the remaining results.
|
8333
8574
|
#
|
8334
8575
|
# Default: 100
|
8335
8576
|
#
|
@@ -8443,8 +8684,8 @@ module Aws::RDS
|
|
8443
8684
|
# @option params [Integer] :max_records
|
8444
8685
|
# The maximum number of records to include in the response. If more
|
8445
8686
|
# records exist than the specified `MaxRecords` value, a pagination
|
8446
|
-
# token called a marker is included in the response so that
|
8447
|
-
# remaining results
|
8687
|
+
# token called a marker is included in the response so that you can
|
8688
|
+
# retrieve the remaining results.
|
8448
8689
|
#
|
8449
8690
|
# Default: 100
|
8450
8691
|
#
|
@@ -8503,6 +8744,79 @@ module Aws::RDS
|
|
8503
8744
|
req.send_request(options)
|
8504
8745
|
end
|
8505
8746
|
|
8747
|
+
# Describes the available installation media for on-premises, bring your
|
8748
|
+
# own media (BYOM) DB engines, such as Microsoft SQL Server.
|
8749
|
+
#
|
8750
|
+
# @option params [String] :installation_media_id
|
8751
|
+
# The installation media ID.
|
8752
|
+
#
|
8753
|
+
# @option params [Array<Types::Filter>] :filters
|
8754
|
+
# A filter that specifies one or more installation media to describe.
|
8755
|
+
# Supported filters include the following:
|
8756
|
+
#
|
8757
|
+
# * `custom-availability-zone-id` - Accepts custom Availability Zone
|
8758
|
+
# (AZ) identifiers. The results list includes information about only
|
8759
|
+
# the custom AZs identified by these identifiers.
|
8760
|
+
#
|
8761
|
+
# * `engine` - Accepts database engines. The results list includes
|
8762
|
+
# information about only the database engines identified by these
|
8763
|
+
# identifiers.
|
8764
|
+
#
|
8765
|
+
# For more information about the valid engines for installation media,
|
8766
|
+
# see ImportInstallationMedia.
|
8767
|
+
#
|
8768
|
+
# @option params [Integer] :max_records
|
8769
|
+
# An optional pagination token provided by a previous
|
8770
|
+
# DescribeInstallationMedia request. If this parameter is specified, the
|
8771
|
+
# response includes only records beyond the marker, up to the value
|
8772
|
+
# specified by `MaxRecords`.
|
8773
|
+
#
|
8774
|
+
# @option params [String] :marker
|
8775
|
+
# An optional pagination token provided by a previous request. If this
|
8776
|
+
# parameter is specified, the response includes only records beyond the
|
8777
|
+
# marker, up to the value specified by `MaxRecords`.
|
8778
|
+
#
|
8779
|
+
# @return [Types::InstallationMediaMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8780
|
+
#
|
8781
|
+
# * {Types::InstallationMediaMessage#marker #marker} => String
|
8782
|
+
# * {Types::InstallationMediaMessage#installation_media #installation_media} => Array<Types::InstallationMedia>
|
8783
|
+
#
|
8784
|
+
# @example Request syntax with placeholder values
|
8785
|
+
#
|
8786
|
+
# resp = client.describe_installation_media({
|
8787
|
+
# installation_media_id: "String",
|
8788
|
+
# filters: [
|
8789
|
+
# {
|
8790
|
+
# name: "String", # required
|
8791
|
+
# values: ["String"], # required
|
8792
|
+
# },
|
8793
|
+
# ],
|
8794
|
+
# max_records: 1,
|
8795
|
+
# marker: "String",
|
8796
|
+
# })
|
8797
|
+
#
|
8798
|
+
# @example Response structure
|
8799
|
+
#
|
8800
|
+
# resp.marker #=> String
|
8801
|
+
# resp.installation_media #=> Array
|
8802
|
+
# resp.installation_media[0].installation_media_id #=> String
|
8803
|
+
# resp.installation_media[0].custom_availability_zone_id #=> String
|
8804
|
+
# resp.installation_media[0].engine #=> String
|
8805
|
+
# resp.installation_media[0].engine_version #=> String
|
8806
|
+
# resp.installation_media[0].engine_installation_media_path #=> String
|
8807
|
+
# resp.installation_media[0].os_installation_media_path #=> String
|
8808
|
+
# resp.installation_media[0].status #=> String
|
8809
|
+
# resp.installation_media[0].failure_cause.message #=> String
|
8810
|
+
#
|
8811
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeInstallationMedia AWS API Documentation
|
8812
|
+
#
|
8813
|
+
# @overload describe_installation_media(params = {})
|
8814
|
+
# @param [Hash] params ({})
|
8815
|
+
def describe_installation_media(params = {}, options = {})
|
8816
|
+
req = build_request(:describe_installation_media, params)
|
8817
|
+
req.send_request(options)
|
8818
|
+
end
|
8819
|
+
|
8506
8820
|
# Describes all available options.
|
8507
8821
|
#
|
8508
8822
|
# @option params [required, String] :engine_name
|
@@ -8519,8 +8833,8 @@ module Aws::RDS
|
|
8519
8833
|
# @option params [Integer] :max_records
|
8520
8834
|
# The maximum number of records to include in the response. If more
|
8521
8835
|
# records exist than the specified `MaxRecords` value, a pagination
|
8522
|
-
# token called a marker is included in the response so that
|
8523
|
-
# remaining results
|
8836
|
+
# token called a marker is included in the response so that you can
|
8837
|
+
# retrieve the remaining results.
|
8524
8838
|
#
|
8525
8839
|
# Default: 100
|
8526
8840
|
#
|
@@ -8627,8 +8941,8 @@ module Aws::RDS
|
|
8627
8941
|
# @option params [Integer] :max_records
|
8628
8942
|
# The maximum number of records to include in the response. If more
|
8629
8943
|
# records exist than the specified `MaxRecords` value, a pagination
|
8630
|
-
# token called a marker is included in the response so that
|
8631
|
-
# remaining results
|
8944
|
+
# token called a marker is included in the response so that you can
|
8945
|
+
# retrieve the remaining results.
|
8632
8946
|
#
|
8633
8947
|
# Default: 100
|
8634
8948
|
#
|
@@ -8749,8 +9063,8 @@ module Aws::RDS
|
|
8749
9063
|
# @option params [Integer] :max_records
|
8750
9064
|
# The maximum number of records to include in the response. If more
|
8751
9065
|
# records exist than the specified `MaxRecords` value, a pagination
|
8752
|
-
# token called a marker is included in the response so that
|
8753
|
-
# remaining results
|
9066
|
+
# token called a marker is included in the response so that you can
|
9067
|
+
# retrieve the remaining results.
|
8754
9068
|
#
|
8755
9069
|
# Default: 100
|
8756
9070
|
#
|
@@ -8876,8 +9190,8 @@ module Aws::RDS
|
|
8876
9190
|
# @option params [Integer] :max_records
|
8877
9191
|
# The maximum number of records to include in the response. If more
|
8878
9192
|
# records exist than the specified `MaxRecords` value, a pagination
|
8879
|
-
# token called a marker is included in the response so that
|
8880
|
-
# remaining results
|
9193
|
+
# token called a marker is included in the response so that you can
|
9194
|
+
# retrieve the remaining results.
|
8881
9195
|
#
|
8882
9196
|
# Default: 100
|
8883
9197
|
#
|
@@ -8989,8 +9303,8 @@ module Aws::RDS
|
|
8989
9303
|
# @option params [Integer] :max_records
|
8990
9304
|
# The maximum number of records to include in the response. If more than
|
8991
9305
|
# the `MaxRecords` value is available, a pagination token called a
|
8992
|
-
# marker is included in the response so that
|
8993
|
-
#
|
9306
|
+
# marker is included in the response so that you can retrieve the
|
9307
|
+
# remaining results.
|
8994
9308
|
#
|
8995
9309
|
# Default: 100
|
8996
9310
|
#
|
@@ -9121,8 +9435,8 @@ module Aws::RDS
|
|
9121
9435
|
# @option params [Integer] :max_records
|
9122
9436
|
# The maximum number of records to include in the response. If more than
|
9123
9437
|
# the `MaxRecords` value is available, a pagination token called a
|
9124
|
-
# marker is included in the response so that
|
9125
|
-
#
|
9438
|
+
# marker is included in the response so that you can retrieve the
|
9439
|
+
# reamaining results.
|
9126
9440
|
#
|
9127
9441
|
# Default: 100
|
9128
9442
|
#
|
@@ -9217,8 +9531,8 @@ module Aws::RDS
|
|
9217
9531
|
# @option params [Integer] :max_records
|
9218
9532
|
# The maximum number of records to include in the response. If more
|
9219
9533
|
# records exist than the specified `MaxRecords` value, a pagination
|
9220
|
-
# token called a marker is included in the response so that
|
9221
|
-
# remaining results
|
9534
|
+
# token called a marker is included in the response so that you can
|
9535
|
+
# retrieve the remaining results.
|
9222
9536
|
#
|
9223
9537
|
# Default: 100
|
9224
9538
|
#
|
@@ -9620,6 +9934,100 @@ module Aws::RDS
|
|
9620
9934
|
req.send_request(options)
|
9621
9935
|
end
|
9622
9936
|
|
9937
|
+
# Imports the installation media for an on-premises, bring your own
|
9938
|
+
# media (BYOM) DB engine, such as SQL Server.
|
9939
|
+
#
|
9940
|
+
# @option params [required, String] :custom_availability_zone_id
|
9941
|
+
# The identifier of the custom Availability Zone (AZ) to import the
|
9942
|
+
# installation media to.
|
9943
|
+
#
|
9944
|
+
# @option params [required, String] :engine
|
9945
|
+
# The name of the database engine to be used for this instance.
|
9946
|
+
#
|
9947
|
+
# The list only includes supported on-premises, bring your own media
|
9948
|
+
# (BYOM) DB engines.
|
9949
|
+
#
|
9950
|
+
# Valid Values:
|
9951
|
+
#
|
9952
|
+
# * `sqlserver-ee`
|
9953
|
+
#
|
9954
|
+
# * `sqlserver-se`
|
9955
|
+
#
|
9956
|
+
# * `sqlserver-ex`
|
9957
|
+
#
|
9958
|
+
# * `sqlserver-web`
|
9959
|
+
#
|
9960
|
+
# @option params [required, String] :engine_version
|
9961
|
+
# The version number of the database engine to use.
|
9962
|
+
#
|
9963
|
+
# For a list of valid engine versions, call DescribeDBEngineVersions.
|
9964
|
+
#
|
9965
|
+
# The following are the database engines and links to information about
|
9966
|
+
# the major and minor versions. The list only includes supported
|
9967
|
+
# on-premises, bring your own media (BYOM) DB engines.
|
9968
|
+
#
|
9969
|
+
# **Microsoft SQL Server**
|
9970
|
+
#
|
9971
|
+
# See [Version and Feature Support on Amazon RDS][1] in the *Amazon RDS
|
9972
|
+
# User Guide.*
|
9973
|
+
#
|
9974
|
+
#
|
9975
|
+
#
|
9976
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.FeatureSupport
|
9977
|
+
#
|
9978
|
+
# @option params [required, String] :engine_installation_media_path
|
9979
|
+
# The path to the installation media for the specified DB engine.
|
9980
|
+
#
|
9981
|
+
# Example:
|
9982
|
+
# `SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso`
|
9983
|
+
#
|
9984
|
+
# @option params [required, String] :os_installation_media_path
|
9985
|
+
# The path to the installation media for the operating system associated
|
9986
|
+
# with the specified DB engine.
|
9987
|
+
#
|
9988
|
+
# Example: `WindowsISO/en_windows_server_2016_x64_dvd_9327751.iso`
|
9989
|
+
#
|
9990
|
+
# @return [Types::InstallationMedia] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9991
|
+
#
|
9992
|
+
# * {Types::InstallationMedia#installation_media_id #installation_media_id} => String
|
9993
|
+
# * {Types::InstallationMedia#custom_availability_zone_id #custom_availability_zone_id} => String
|
9994
|
+
# * {Types::InstallationMedia#engine #engine} => String
|
9995
|
+
# * {Types::InstallationMedia#engine_version #engine_version} => String
|
9996
|
+
# * {Types::InstallationMedia#engine_installation_media_path #engine_installation_media_path} => String
|
9997
|
+
# * {Types::InstallationMedia#os_installation_media_path #os_installation_media_path} => String
|
9998
|
+
# * {Types::InstallationMedia#status #status} => String
|
9999
|
+
# * {Types::InstallationMedia#failure_cause #failure_cause} => Types::InstallationMediaFailureCause
|
10000
|
+
#
|
10001
|
+
# @example Request syntax with placeholder values
|
10002
|
+
#
|
10003
|
+
# resp = client.import_installation_media({
|
10004
|
+
# custom_availability_zone_id: "String", # required
|
10005
|
+
# engine: "String", # required
|
10006
|
+
# engine_version: "String", # required
|
10007
|
+
# engine_installation_media_path: "String", # required
|
10008
|
+
# os_installation_media_path: "String", # required
|
10009
|
+
# })
|
10010
|
+
#
|
10011
|
+
# @example Response structure
|
10012
|
+
#
|
10013
|
+
# resp.installation_media_id #=> String
|
10014
|
+
# resp.custom_availability_zone_id #=> String
|
10015
|
+
# resp.engine #=> String
|
10016
|
+
# resp.engine_version #=> String
|
10017
|
+
# resp.engine_installation_media_path #=> String
|
10018
|
+
# resp.os_installation_media_path #=> String
|
10019
|
+
# resp.status #=> String
|
10020
|
+
# resp.failure_cause.message #=> String
|
10021
|
+
#
|
10022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ImportInstallationMedia AWS API Documentation
|
10023
|
+
#
|
10024
|
+
# @overload import_installation_media(params = {})
|
10025
|
+
# @param [Hash] params ({})
|
10026
|
+
def import_installation_media(params = {}, options = {})
|
10027
|
+
req = build_request(:import_installation_media, params)
|
10028
|
+
req.send_request(options)
|
10029
|
+
end
|
10030
|
+
|
9623
10031
|
# Lists all tags on an Amazon RDS resource.
|
9624
10032
|
#
|
9625
10033
|
# For an overview on tagging an Amazon RDS resource, see [Tagging Amazon
|
@@ -16531,7 +16939,7 @@ module Aws::RDS
|
|
16531
16939
|
params: params,
|
16532
16940
|
config: config)
|
16533
16941
|
context[:gem_name] = 'aws-sdk-rds'
|
16534
|
-
context[:gem_version] = '1.
|
16942
|
+
context[:gem_version] = '1.68.0'
|
16535
16943
|
Seahorse::Client::Request.new(handlers, context)
|
16536
16944
|
end
|
16537
16945
|
|