aws-sdk-rds 1.159.0 → 1.161.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +457 -6
- data/lib/aws-sdk-rds/client_api.rb +166 -0
- data/lib/aws-sdk-rds/db_cluster.rb +9 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +9 -1
- data/lib/aws-sdk-rds/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-rds/endpoint_provider.rb +101 -101
- data/lib/aws-sdk-rds/endpoints.rb +56 -0
- data/lib/aws-sdk-rds/errors.rb +55 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-rds/resource.rb +4 -1
- data/lib/aws-sdk-rds/types.rb +615 -9
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1292,6 +1292,7 @@ module Aws::RDS
|
|
1292
1292
|
# resp.db_cluster_snapshot.tag_list #=> Array
|
1293
1293
|
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
1294
1294
|
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
1295
|
+
# resp.db_cluster_snapshot.db_system_id #=> String
|
1295
1296
|
#
|
1296
1297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot AWS API Documentation
|
1297
1298
|
#
|
@@ -1789,6 +1790,124 @@ module Aws::RDS
|
|
1789
1790
|
req.send_request(options)
|
1790
1791
|
end
|
1791
1792
|
|
1793
|
+
# Creates a blue/green deployment.
|
1794
|
+
#
|
1795
|
+
# A blue/green deployment creates a staging environment that copies the
|
1796
|
+
# production environment. In a blue/green deployment, the blue
|
1797
|
+
# environment is the current production environment. The green
|
1798
|
+
# environment is the staging environment. The staging environment stays
|
1799
|
+
# in sync with the current production environment using logical
|
1800
|
+
# replication.
|
1801
|
+
#
|
1802
|
+
# You can make changes to the databases in the green environment without
|
1803
|
+
# affecting production workloads. For example, you can upgrade the major
|
1804
|
+
# or minor DB engine version, change database parameters, or make schema
|
1805
|
+
# changes in the staging environment. You can thoroughly test changes in
|
1806
|
+
# the green environment. When ready, you can switch over the
|
1807
|
+
# environments to promote the green environment to be the new production
|
1808
|
+
# environment. The switchover typically takes under a minute.
|
1809
|
+
#
|
1810
|
+
# For more information, see [Using Amazon RDS Blue/Green Deployments for
|
1811
|
+
# database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
|
1812
|
+
# RDS Blue/Green Deployments for database updates][2] in the *Amazon
|
1813
|
+
# Aurora User Guide*.
|
1814
|
+
#
|
1815
|
+
#
|
1816
|
+
#
|
1817
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
|
1818
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
1819
|
+
#
|
1820
|
+
# @option params [required, String] :blue_green_deployment_name
|
1821
|
+
# The name of the blue/green deployment.
|
1822
|
+
#
|
1823
|
+
# Constraints:
|
1824
|
+
#
|
1825
|
+
# * Can't be the same as an existing blue/green deployment name in the
|
1826
|
+
# same account and Amazon Web Services Region.
|
1827
|
+
#
|
1828
|
+
# ^
|
1829
|
+
#
|
1830
|
+
# @option params [required, String] :source
|
1831
|
+
# The Amazon Resource Name (ARN) of the source production database.
|
1832
|
+
#
|
1833
|
+
# Specify the database that you want to clone. The blue/green deployment
|
1834
|
+
# creates this database in the green environment. You can make updates
|
1835
|
+
# to the database in the green environment, such as an engine version
|
1836
|
+
# upgrade. When you are ready, you can switch the database in the green
|
1837
|
+
# environment to be the production database.
|
1838
|
+
#
|
1839
|
+
# @option params [String] :target_engine_version
|
1840
|
+
# The engine version of the database in the green environment.
|
1841
|
+
#
|
1842
|
+
# Specify the engine version to upgrade to in the green environment.
|
1843
|
+
#
|
1844
|
+
# @option params [String] :target_db_parameter_group_name
|
1845
|
+
# The DB parameter group associated with the DB instance in the green
|
1846
|
+
# environment.
|
1847
|
+
#
|
1848
|
+
# To test parameter changes, specify a DB parameter group that is
|
1849
|
+
# different from the one associated with the source DB instance.
|
1850
|
+
#
|
1851
|
+
# @option params [String] :target_db_cluster_parameter_group_name
|
1852
|
+
# The DB cluster parameter group associated with the Aurora DB cluster
|
1853
|
+
# in the green environment.
|
1854
|
+
#
|
1855
|
+
# To test parameter changes, specify a DB cluster parameter group that
|
1856
|
+
# is different from the one associated with the source DB cluster.
|
1857
|
+
#
|
1858
|
+
# @option params [Array<Types::Tag>] :tags
|
1859
|
+
# Tags to assign to the blue/green deployment.
|
1860
|
+
#
|
1861
|
+
# @return [Types::CreateBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1862
|
+
#
|
1863
|
+
# * {Types::CreateBlueGreenDeploymentResponse#blue_green_deployment #blue_green_deployment} => Types::BlueGreenDeployment
|
1864
|
+
#
|
1865
|
+
# @example Request syntax with placeholder values
|
1866
|
+
#
|
1867
|
+
# resp = client.create_blue_green_deployment({
|
1868
|
+
# blue_green_deployment_name: "BlueGreenDeploymentName", # required
|
1869
|
+
# source: "DatabaseArn", # required
|
1870
|
+
# target_engine_version: "TargetEngineVersion",
|
1871
|
+
# target_db_parameter_group_name: "TargetDBParameterGroupName",
|
1872
|
+
# target_db_cluster_parameter_group_name: "TargetDBClusterParameterGroupName",
|
1873
|
+
# tags: [
|
1874
|
+
# {
|
1875
|
+
# key: "String",
|
1876
|
+
# value: "String",
|
1877
|
+
# },
|
1878
|
+
# ],
|
1879
|
+
# })
|
1880
|
+
#
|
1881
|
+
# @example Response structure
|
1882
|
+
#
|
1883
|
+
# resp.blue_green_deployment.blue_green_deployment_identifier #=> String
|
1884
|
+
# resp.blue_green_deployment.blue_green_deployment_name #=> String
|
1885
|
+
# resp.blue_green_deployment.source #=> String
|
1886
|
+
# resp.blue_green_deployment.target #=> String
|
1887
|
+
# resp.blue_green_deployment.switchover_details #=> Array
|
1888
|
+
# resp.blue_green_deployment.switchover_details[0].source_member #=> String
|
1889
|
+
# resp.blue_green_deployment.switchover_details[0].target_member #=> String
|
1890
|
+
# resp.blue_green_deployment.switchover_details[0].status #=> String
|
1891
|
+
# resp.blue_green_deployment.tasks #=> Array
|
1892
|
+
# resp.blue_green_deployment.tasks[0].name #=> String
|
1893
|
+
# resp.blue_green_deployment.tasks[0].status #=> String
|
1894
|
+
# resp.blue_green_deployment.status #=> String
|
1895
|
+
# resp.blue_green_deployment.status_details #=> String
|
1896
|
+
# resp.blue_green_deployment.create_time #=> Time
|
1897
|
+
# resp.blue_green_deployment.delete_time #=> Time
|
1898
|
+
# resp.blue_green_deployment.tag_list #=> Array
|
1899
|
+
# resp.blue_green_deployment.tag_list[0].key #=> String
|
1900
|
+
# resp.blue_green_deployment.tag_list[0].value #=> String
|
1901
|
+
#
|
1902
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeployment AWS API Documentation
|
1903
|
+
#
|
1904
|
+
# @overload create_blue_green_deployment(params = {})
|
1905
|
+
# @param [Hash] params ({})
|
1906
|
+
def create_blue_green_deployment(params = {}, options = {})
|
1907
|
+
req = build_request(:create_blue_green_deployment, params)
|
1908
|
+
req.send_request(options)
|
1909
|
+
end
|
1910
|
+
|
1792
1911
|
# Creates a custom DB engine version (CEV). A CEV is a binary volume
|
1793
1912
|
# snapshot of a database engine and specific AMI. The supported engines
|
1794
1913
|
# are the following:
|
@@ -1843,10 +1962,11 @@ module Aws::RDS
|
|
1843
1962
|
# only supported value is `custom-oracle-ee`.
|
1844
1963
|
#
|
1845
1964
|
# @option params [required, String] :engine_version
|
1846
|
-
# The name of your CEV. The name format is
|
1847
|
-
# example, a valid name is `19.my_cev1`. This setting is required
|
1848
|
-
# RDS Custom for Oracle, but optional for Amazon RDS. The
|
1849
|
-
# `Engine` and `EngineVersion` is unique per customer per
|
1965
|
+
# The name of your CEV. The name format is 19.*customized\_string*. For
|
1966
|
+
# example, a valid CEV name is `19.my_cev1`. This setting is required
|
1967
|
+
# for RDS Custom for Oracle, but optional for Amazon RDS. The
|
1968
|
+
# combination of `Engine` and `EngineVersion` is unique per customer per
|
1969
|
+
# Region.
|
1850
1970
|
#
|
1851
1971
|
# @option params [required, String] :database_installation_files_s3_bucket_name
|
1852
1972
|
# The name of an Amazon S3 bucket that contains database installation
|
@@ -1952,6 +2072,7 @@ module Aws::RDS
|
|
1952
2072
|
# * {Types::DBEngineVersion#create_time #create_time} => Time
|
1953
2073
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
1954
2074
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
2075
|
+
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
1955
2076
|
#
|
1956
2077
|
# @example Request syntax with placeholder values
|
1957
2078
|
#
|
@@ -2020,6 +2141,7 @@ module Aws::RDS
|
|
2020
2141
|
# resp.tag_list[0].key #=> String
|
2021
2142
|
# resp.tag_list[0].value #=> String
|
2022
2143
|
# resp.supports_babelfish #=> Boolean
|
2144
|
+
# resp.custom_db_engine_version_manifest #=> String
|
2023
2145
|
#
|
2024
2146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
|
2025
2147
|
#
|
@@ -2815,6 +2937,9 @@ module Aws::RDS
|
|
2815
2937
|
#
|
2816
2938
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2817
2939
|
#
|
2940
|
+
# @option params [String] :db_system_id
|
2941
|
+
# Reserved for future use.
|
2942
|
+
#
|
2818
2943
|
# @option params [String] :source_region
|
2819
2944
|
# The source region of the snapshot. This is only needed when the
|
2820
2945
|
# shapshot is encrypted and in a different region.
|
@@ -2914,6 +3039,7 @@ module Aws::RDS
|
|
2914
3039
|
# max_capacity: 1.0,
|
2915
3040
|
# },
|
2916
3041
|
# network_type: "String",
|
3042
|
+
# db_system_id: "String",
|
2917
3043
|
# source_region: "String",
|
2918
3044
|
# })
|
2919
3045
|
#
|
@@ -3009,6 +3135,9 @@ module Aws::RDS
|
|
3009
3135
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
3010
3136
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
3011
3137
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
3138
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
3139
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
3140
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
3012
3141
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
3013
3142
|
# resp.db_cluster.storage_type #=> String
|
3014
3143
|
# resp.db_cluster.iops #=> Integer
|
@@ -3022,6 +3151,7 @@ module Aws::RDS
|
|
3022
3151
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
3023
3152
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
3024
3153
|
# resp.db_cluster.network_type #=> String
|
3154
|
+
# resp.db_cluster.db_system_id #=> String
|
3025
3155
|
#
|
3026
3156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
3027
3157
|
#
|
@@ -3390,6 +3520,7 @@ module Aws::RDS
|
|
3390
3520
|
# resp.db_cluster_snapshot.tag_list #=> Array
|
3391
3521
|
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
3392
3522
|
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
3523
|
+
# resp.db_cluster_snapshot.db_system_id #=> String
|
3393
3524
|
#
|
3394
3525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
|
3395
3526
|
#
|
@@ -3970,7 +4101,7 @@ module Aws::RDS
|
|
3970
4101
|
#
|
3971
4102
|
# A custom engine version (CEV) that you have previously created. This
|
3972
4103
|
# setting is required for RDS Custom for Oracle. The CEV name has the
|
3973
|
-
# following format:
|
4104
|
+
# following format: 19.*customized\_string*. A valid CEV name is
|
3974
4105
|
# `19.my_cev1`. For more information, see [ Creating an RDS Custom for
|
3975
4106
|
# Oracle DB instance][1] in the *Amazon RDS User Guide*.
|
3976
4107
|
#
|
@@ -4759,6 +4890,7 @@ module Aws::RDS
|
|
4759
4890
|
# resp.db_instance.network_type #=> String
|
4760
4891
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
4761
4892
|
# resp.db_instance.storage_throughput #=> Integer
|
4893
|
+
# resp.db_instance.db_system_id #=> String
|
4762
4894
|
#
|
4763
4895
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
4764
4896
|
#
|
@@ -5558,6 +5690,7 @@ module Aws::RDS
|
|
5558
5690
|
# resp.db_instance.network_type #=> String
|
5559
5691
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
5560
5692
|
# resp.db_instance.storage_throughput #=> Integer
|
5693
|
+
# resp.db_instance.db_system_id #=> String
|
5561
5694
|
#
|
5562
5695
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
5563
5696
|
#
|
@@ -6635,6 +6768,73 @@ module Aws::RDS
|
|
6635
6768
|
req.send_request(options)
|
6636
6769
|
end
|
6637
6770
|
|
6771
|
+
# Deletes a blue/green deployment.
|
6772
|
+
#
|
6773
|
+
# For more information, see [Using Amazon RDS Blue/Green Deployments for
|
6774
|
+
# database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
|
6775
|
+
# RDS Blue/Green Deployments for database updates][2] in the *Amazon
|
6776
|
+
# Aurora User Guide*.
|
6777
|
+
#
|
6778
|
+
#
|
6779
|
+
#
|
6780
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
|
6781
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
6782
|
+
#
|
6783
|
+
# @option params [required, String] :blue_green_deployment_identifier
|
6784
|
+
# The blue/green deployment identifier of the deployment to be deleted.
|
6785
|
+
# This parameter isn't case-sensitive.
|
6786
|
+
#
|
6787
|
+
# Constraints:
|
6788
|
+
#
|
6789
|
+
# * Must match an existing blue/green deployment identifier.
|
6790
|
+
#
|
6791
|
+
# ^
|
6792
|
+
#
|
6793
|
+
# @option params [Boolean] :delete_target
|
6794
|
+
# A value that indicates whether to delete the resources in the green
|
6795
|
+
# environment.
|
6796
|
+
#
|
6797
|
+
# @return [Types::DeleteBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6798
|
+
#
|
6799
|
+
# * {Types::DeleteBlueGreenDeploymentResponse#blue_green_deployment #blue_green_deployment} => Types::BlueGreenDeployment
|
6800
|
+
#
|
6801
|
+
# @example Request syntax with placeholder values
|
6802
|
+
#
|
6803
|
+
# resp = client.delete_blue_green_deployment({
|
6804
|
+
# blue_green_deployment_identifier: "BlueGreenDeploymentIdentifier", # required
|
6805
|
+
# delete_target: false,
|
6806
|
+
# })
|
6807
|
+
#
|
6808
|
+
# @example Response structure
|
6809
|
+
#
|
6810
|
+
# resp.blue_green_deployment.blue_green_deployment_identifier #=> String
|
6811
|
+
# resp.blue_green_deployment.blue_green_deployment_name #=> String
|
6812
|
+
# resp.blue_green_deployment.source #=> String
|
6813
|
+
# resp.blue_green_deployment.target #=> String
|
6814
|
+
# resp.blue_green_deployment.switchover_details #=> Array
|
6815
|
+
# resp.blue_green_deployment.switchover_details[0].source_member #=> String
|
6816
|
+
# resp.blue_green_deployment.switchover_details[0].target_member #=> String
|
6817
|
+
# resp.blue_green_deployment.switchover_details[0].status #=> String
|
6818
|
+
# resp.blue_green_deployment.tasks #=> Array
|
6819
|
+
# resp.blue_green_deployment.tasks[0].name #=> String
|
6820
|
+
# resp.blue_green_deployment.tasks[0].status #=> String
|
6821
|
+
# resp.blue_green_deployment.status #=> String
|
6822
|
+
# resp.blue_green_deployment.status_details #=> String
|
6823
|
+
# resp.blue_green_deployment.create_time #=> Time
|
6824
|
+
# resp.blue_green_deployment.delete_time #=> Time
|
6825
|
+
# resp.blue_green_deployment.tag_list #=> Array
|
6826
|
+
# resp.blue_green_deployment.tag_list[0].key #=> String
|
6827
|
+
# resp.blue_green_deployment.tag_list[0].value #=> String
|
6828
|
+
#
|
6829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteBlueGreenDeployment AWS API Documentation
|
6830
|
+
#
|
6831
|
+
# @overload delete_blue_green_deployment(params = {})
|
6832
|
+
# @param [Hash] params ({})
|
6833
|
+
def delete_blue_green_deployment(params = {}, options = {})
|
6834
|
+
req = build_request(:delete_blue_green_deployment, params)
|
6835
|
+
req.send_request(options)
|
6836
|
+
end
|
6837
|
+
|
6638
6838
|
# Deletes a custom engine version. To run this command, make sure you
|
6639
6839
|
# meet the following prerequisites:
|
6640
6840
|
#
|
@@ -6701,6 +6901,7 @@ module Aws::RDS
|
|
6701
6901
|
# * {Types::DBEngineVersion#create_time #create_time} => Time
|
6702
6902
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
6703
6903
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
6904
|
+
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
6704
6905
|
#
|
6705
6906
|
# @example Request syntax with placeholder values
|
6706
6907
|
#
|
@@ -6758,6 +6959,7 @@ module Aws::RDS
|
|
6758
6959
|
# resp.tag_list[0].key #=> String
|
6759
6960
|
# resp.tag_list[0].value #=> String
|
6760
6961
|
# resp.supports_babelfish #=> Boolean
|
6962
|
+
# resp.custom_db_engine_version_manifest #=> String
|
6761
6963
|
#
|
6762
6964
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
6763
6965
|
#
|
@@ -6946,6 +7148,9 @@ module Aws::RDS
|
|
6946
7148
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
6947
7149
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
6948
7150
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
7151
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
7152
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
7153
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
6949
7154
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
6950
7155
|
# resp.db_cluster.storage_type #=> String
|
6951
7156
|
# resp.db_cluster.iops #=> Integer
|
@@ -6959,6 +7164,7 @@ module Aws::RDS
|
|
6959
7164
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
6960
7165
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
6961
7166
|
# resp.db_cluster.network_type #=> String
|
7167
|
+
# resp.db_cluster.db_system_id #=> String
|
6962
7168
|
#
|
6963
7169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
6964
7170
|
#
|
@@ -7154,6 +7360,7 @@ module Aws::RDS
|
|
7154
7360
|
# resp.db_cluster_snapshot.tag_list #=> Array
|
7155
7361
|
# resp.db_cluster_snapshot.tag_list[0].key #=> String
|
7156
7362
|
# resp.db_cluster_snapshot.tag_list[0].value #=> String
|
7363
|
+
# resp.db_cluster_snapshot.db_system_id #=> String
|
7157
7364
|
#
|
7158
7365
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
|
7159
7366
|
#
|
@@ -7427,6 +7634,7 @@ module Aws::RDS
|
|
7427
7634
|
# resp.db_instance.network_type #=> String
|
7428
7635
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
7429
7636
|
# resp.db_instance.storage_throughput #=> Integer
|
7637
|
+
# resp.db_instance.db_system_id #=> String
|
7430
7638
|
#
|
7431
7639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
7432
7640
|
#
|
@@ -8048,6 +8256,122 @@ module Aws::RDS
|
|
8048
8256
|
req.send_request(options)
|
8049
8257
|
end
|
8050
8258
|
|
8259
|
+
# Returns information about blue/green deployments.
|
8260
|
+
#
|
8261
|
+
# For more information, see [Using Amazon RDS Blue/Green Deployments for
|
8262
|
+
# database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
|
8263
|
+
# RDS Blue/Green Deployments for database updates][2] in the *Amazon
|
8264
|
+
# Aurora User Guide*.
|
8265
|
+
#
|
8266
|
+
#
|
8267
|
+
#
|
8268
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
|
8269
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
8270
|
+
#
|
8271
|
+
# @option params [String] :blue_green_deployment_identifier
|
8272
|
+
# The blue/green deployment identifier. If this parameter is specified,
|
8273
|
+
# information from only the specific blue/green deployment is returned.
|
8274
|
+
# This parameter isn't case-sensitive.
|
8275
|
+
#
|
8276
|
+
# Constraints:
|
8277
|
+
#
|
8278
|
+
# * If supplied, must match an existing blue/green deployment
|
8279
|
+
# identifier.
|
8280
|
+
#
|
8281
|
+
# ^
|
8282
|
+
#
|
8283
|
+
# @option params [Array<Types::Filter>] :filters
|
8284
|
+
# A filter that specifies one or more blue/green deployments to
|
8285
|
+
# describe.
|
8286
|
+
#
|
8287
|
+
# Supported filters:
|
8288
|
+
#
|
8289
|
+
# * `blue-green-deployment-identifier` - Accepts system-generated
|
8290
|
+
# identifiers for blue/green deployments. The results list only
|
8291
|
+
# includes information about the blue/green deployments with the
|
8292
|
+
# specified identifiers.
|
8293
|
+
#
|
8294
|
+
# * `blue-green-deployment-name` - Accepts user-supplied names for
|
8295
|
+
# blue/green deployments. The results list only includes information
|
8296
|
+
# about the blue/green deployments with the specified names.
|
8297
|
+
#
|
8298
|
+
# * `source` - Accepts source databases for a blue/green deployment. The
|
8299
|
+
# results list only includes information about the blue/green
|
8300
|
+
# deployments with the specified source databases.
|
8301
|
+
#
|
8302
|
+
# * `target` - Accepts target databases for a blue/green deployment. The
|
8303
|
+
# results list only includes information about the blue/green
|
8304
|
+
# deployments with the specified target databases.
|
8305
|
+
#
|
8306
|
+
# @option params [String] :marker
|
8307
|
+
# An optional pagination token provided by a previous
|
8308
|
+
# `DescribeBlueGreenDeployments` request. If this parameter is
|
8309
|
+
# specified, the response includes only records beyond the marker, up to
|
8310
|
+
# the value specified by `MaxRecords`.
|
8311
|
+
#
|
8312
|
+
# @option params [Integer] :max_records
|
8313
|
+
# The maximum number of records to include in the response. If more
|
8314
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
8315
|
+
# token called a marker is included in the response so you can retrieve
|
8316
|
+
# the remaining results.
|
8317
|
+
#
|
8318
|
+
# Default: 100
|
8319
|
+
#
|
8320
|
+
# Constraints: Minimum 20, maximum 100.
|
8321
|
+
#
|
8322
|
+
# @return [Types::DescribeBlueGreenDeploymentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8323
|
+
#
|
8324
|
+
# * {Types::DescribeBlueGreenDeploymentsResponse#blue_green_deployments #blue_green_deployments} => Array<Types::BlueGreenDeployment>
|
8325
|
+
# * {Types::DescribeBlueGreenDeploymentsResponse#marker #marker} => String
|
8326
|
+
#
|
8327
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8328
|
+
#
|
8329
|
+
# @example Request syntax with placeholder values
|
8330
|
+
#
|
8331
|
+
# resp = client.describe_blue_green_deployments({
|
8332
|
+
# blue_green_deployment_identifier: "BlueGreenDeploymentIdentifier",
|
8333
|
+
# filters: [
|
8334
|
+
# {
|
8335
|
+
# name: "String", # required
|
8336
|
+
# values: ["String"], # required
|
8337
|
+
# },
|
8338
|
+
# ],
|
8339
|
+
# marker: "String",
|
8340
|
+
# max_records: 1,
|
8341
|
+
# })
|
8342
|
+
#
|
8343
|
+
# @example Response structure
|
8344
|
+
#
|
8345
|
+
# resp.blue_green_deployments #=> Array
|
8346
|
+
# resp.blue_green_deployments[0].blue_green_deployment_identifier #=> String
|
8347
|
+
# resp.blue_green_deployments[0].blue_green_deployment_name #=> String
|
8348
|
+
# resp.blue_green_deployments[0].source #=> String
|
8349
|
+
# resp.blue_green_deployments[0].target #=> String
|
8350
|
+
# resp.blue_green_deployments[0].switchover_details #=> Array
|
8351
|
+
# resp.blue_green_deployments[0].switchover_details[0].source_member #=> String
|
8352
|
+
# resp.blue_green_deployments[0].switchover_details[0].target_member #=> String
|
8353
|
+
# resp.blue_green_deployments[0].switchover_details[0].status #=> String
|
8354
|
+
# resp.blue_green_deployments[0].tasks #=> Array
|
8355
|
+
# resp.blue_green_deployments[0].tasks[0].name #=> String
|
8356
|
+
# resp.blue_green_deployments[0].tasks[0].status #=> String
|
8357
|
+
# resp.blue_green_deployments[0].status #=> String
|
8358
|
+
# resp.blue_green_deployments[0].status_details #=> String
|
8359
|
+
# resp.blue_green_deployments[0].create_time #=> Time
|
8360
|
+
# resp.blue_green_deployments[0].delete_time #=> Time
|
8361
|
+
# resp.blue_green_deployments[0].tag_list #=> Array
|
8362
|
+
# resp.blue_green_deployments[0].tag_list[0].key #=> String
|
8363
|
+
# resp.blue_green_deployments[0].tag_list[0].value #=> String
|
8364
|
+
# resp.marker #=> String
|
8365
|
+
#
|
8366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeBlueGreenDeployments AWS API Documentation
|
8367
|
+
#
|
8368
|
+
# @overload describe_blue_green_deployments(params = {})
|
8369
|
+
# @param [Hash] params ({})
|
8370
|
+
def describe_blue_green_deployments(params = {}, options = {})
|
8371
|
+
req = build_request(:describe_blue_green_deployments, params)
|
8372
|
+
req.send_request(options)
|
8373
|
+
end
|
8374
|
+
|
8051
8375
|
# Lists the set of CA certificates provided by Amazon RDS for this
|
8052
8376
|
# Amazon Web Services account.
|
8053
8377
|
#
|
@@ -8811,6 +9135,7 @@ module Aws::RDS
|
|
8811
9135
|
# resp.db_cluster_snapshots[0].tag_list #=> Array
|
8812
9136
|
# resp.db_cluster_snapshots[0].tag_list[0].key #=> String
|
8813
9137
|
# resp.db_cluster_snapshots[0].tag_list[0].value #=> String
|
9138
|
+
# resp.db_cluster_snapshots[0].db_system_id #=> String
|
8814
9139
|
#
|
8815
9140
|
#
|
8816
9141
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -9027,6 +9352,9 @@ module Aws::RDS
|
|
9027
9352
|
# resp.db_clusters[0].pending_modified_values.master_user_password #=> String
|
9028
9353
|
# resp.db_clusters[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
9029
9354
|
# resp.db_clusters[0].pending_modified_values.engine_version #=> String
|
9355
|
+
# resp.db_clusters[0].pending_modified_values.backup_retention_period #=> Integer
|
9356
|
+
# resp.db_clusters[0].pending_modified_values.allocated_storage #=> Integer
|
9357
|
+
# resp.db_clusters[0].pending_modified_values.iops #=> Integer
|
9030
9358
|
# resp.db_clusters[0].db_cluster_instance_class #=> String
|
9031
9359
|
# resp.db_clusters[0].storage_type #=> String
|
9032
9360
|
# resp.db_clusters[0].iops #=> Integer
|
@@ -9040,6 +9368,7 @@ module Aws::RDS
|
|
9040
9368
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
9041
9369
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
9042
9370
|
# resp.db_clusters[0].network_type #=> String
|
9371
|
+
# resp.db_clusters[0].db_system_id #=> String
|
9043
9372
|
#
|
9044
9373
|
#
|
9045
9374
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -9288,6 +9617,7 @@ module Aws::RDS
|
|
9288
9617
|
# resp.db_engine_versions[0].tag_list[0].key #=> String
|
9289
9618
|
# resp.db_engine_versions[0].tag_list[0].value #=> String
|
9290
9619
|
# resp.db_engine_versions[0].supports_babelfish #=> Boolean
|
9620
|
+
# resp.db_engine_versions[0].custom_db_engine_version_manifest #=> String
|
9291
9621
|
#
|
9292
9622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
9293
9623
|
#
|
@@ -9669,6 +9999,7 @@ module Aws::RDS
|
|
9669
9999
|
# resp.db_instances[0].network_type #=> String
|
9670
10000
|
# resp.db_instances[0].activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
9671
10001
|
# resp.db_instances[0].storage_throughput #=> Integer
|
10002
|
+
# resp.db_instances[0].db_system_id #=> String
|
9672
10003
|
#
|
9673
10004
|
#
|
9674
10005
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -12855,6 +13186,9 @@ module Aws::RDS
|
|
12855
13186
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
12856
13187
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
12857
13188
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
13189
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
13190
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
13191
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
12858
13192
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
12859
13193
|
# resp.db_cluster.storage_type #=> String
|
12860
13194
|
# resp.db_cluster.iops #=> Integer
|
@@ -12868,6 +13202,7 @@ module Aws::RDS
|
|
12868
13202
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
12869
13203
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
12870
13204
|
# resp.db_cluster.network_type #=> String
|
13205
|
+
# resp.db_cluster.db_system_id #=> String
|
12871
13206
|
#
|
12872
13207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
12873
13208
|
#
|
@@ -13355,6 +13690,7 @@ module Aws::RDS
|
|
13355
13690
|
# * {Types::DBEngineVersion#create_time #create_time} => Time
|
13356
13691
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
13357
13692
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
13693
|
+
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
13358
13694
|
#
|
13359
13695
|
# @example Request syntax with placeholder values
|
13360
13696
|
#
|
@@ -13414,6 +13750,7 @@ module Aws::RDS
|
|
13414
13750
|
# resp.tag_list[0].key #=> String
|
13415
13751
|
# resp.tag_list[0].value #=> String
|
13416
13752
|
# resp.supports_babelfish #=> Boolean
|
13753
|
+
# resp.custom_db_engine_version_manifest #=> String
|
13417
13754
|
#
|
13418
13755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
13419
13756
|
#
|
@@ -14133,6 +14470,9 @@ module Aws::RDS
|
|
14133
14470
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
14134
14471
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
14135
14472
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
14473
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
14474
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
14475
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
14136
14476
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
14137
14477
|
# resp.db_cluster.storage_type #=> String
|
14138
14478
|
# resp.db_cluster.iops #=> Integer
|
@@ -14146,6 +14486,7 @@ module Aws::RDS
|
|
14146
14486
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
14147
14487
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
14148
14488
|
# resp.db_cluster.network_type #=> String
|
14489
|
+
# resp.db_cluster.db_system_id #=> String
|
14149
14490
|
#
|
14150
14491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
14151
14492
|
#
|
@@ -15527,6 +15868,7 @@ module Aws::RDS
|
|
15527
15868
|
# resp.db_instance.network_type #=> String
|
15528
15869
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
15529
15870
|
# resp.db_instance.storage_throughput #=> Integer
|
15871
|
+
# resp.db_instance.db_system_id #=> String
|
15530
15872
|
#
|
15531
15873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
15532
15874
|
#
|
@@ -16761,6 +17103,7 @@ module Aws::RDS
|
|
16761
17103
|
# resp.db_instance.network_type #=> String
|
16762
17104
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
16763
17105
|
# resp.db_instance.storage_throughput #=> Integer
|
17106
|
+
# resp.db_instance.db_system_id #=> String
|
16764
17107
|
#
|
16765
17108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
16766
17109
|
#
|
@@ -16887,6 +17230,9 @@ module Aws::RDS
|
|
16887
17230
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
16888
17231
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
16889
17232
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
17233
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
17234
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
17235
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
16890
17236
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
16891
17237
|
# resp.db_cluster.storage_type #=> String
|
16892
17238
|
# resp.db_cluster.iops #=> Integer
|
@@ -16900,6 +17246,7 @@ module Aws::RDS
|
|
16900
17246
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
16901
17247
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
16902
17248
|
# resp.db_cluster.network_type #=> String
|
17249
|
+
# resp.db_cluster.db_system_id #=> String
|
16903
17250
|
#
|
16904
17251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
16905
17252
|
#
|
@@ -17130,6 +17477,9 @@ module Aws::RDS
|
|
17130
17477
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
17131
17478
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
17132
17479
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
17480
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
17481
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
17482
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
17133
17483
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
17134
17484
|
# resp.db_cluster.storage_type #=> String
|
17135
17485
|
# resp.db_cluster.iops #=> Integer
|
@@ -17143,6 +17493,7 @@ module Aws::RDS
|
|
17143
17493
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
17144
17494
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
17145
17495
|
# resp.db_cluster.network_type #=> String
|
17496
|
+
# resp.db_cluster.db_system_id #=> String
|
17146
17497
|
#
|
17147
17498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
17148
17499
|
#
|
@@ -17362,6 +17713,7 @@ module Aws::RDS
|
|
17362
17713
|
# resp.db_instance.network_type #=> String
|
17363
17714
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
17364
17715
|
# resp.db_instance.storage_throughput #=> Integer
|
17716
|
+
# resp.db_instance.db_system_id #=> String
|
17365
17717
|
#
|
17366
17718
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
17367
17719
|
#
|
@@ -18369,6 +18721,9 @@ module Aws::RDS
|
|
18369
18721
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
18370
18722
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
18371
18723
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
18724
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
18725
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
18726
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
18372
18727
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
18373
18728
|
# resp.db_cluster.storage_type #=> String
|
18374
18729
|
# resp.db_cluster.iops #=> Integer
|
@@ -18382,6 +18737,7 @@ module Aws::RDS
|
|
18382
18737
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
18383
18738
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
18384
18739
|
# resp.db_cluster.network_type #=> String
|
18740
|
+
# resp.db_cluster.db_system_id #=> String
|
18385
18741
|
#
|
18386
18742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
18387
18743
|
#
|
@@ -19003,6 +19359,9 @@ module Aws::RDS
|
|
19003
19359
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
19004
19360
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
19005
19361
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
19362
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
19363
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
19364
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
19006
19365
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
19007
19366
|
# resp.db_cluster.storage_type #=> String
|
19008
19367
|
# resp.db_cluster.iops #=> Integer
|
@@ -19016,6 +19375,7 @@ module Aws::RDS
|
|
19016
19375
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
19017
19376
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
19018
19377
|
# resp.db_cluster.network_type #=> String
|
19378
|
+
# resp.db_cluster.db_system_id #=> String
|
19019
19379
|
#
|
19020
19380
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
19021
19381
|
#
|
@@ -19606,6 +19966,9 @@ module Aws::RDS
|
|
19606
19966
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
19607
19967
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
19608
19968
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
19969
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
19970
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
19971
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
19609
19972
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
19610
19973
|
# resp.db_cluster.storage_type #=> String
|
19611
19974
|
# resp.db_cluster.iops #=> Integer
|
@@ -19619,6 +19982,7 @@ module Aws::RDS
|
|
19619
19982
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
19620
19983
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
19621
19984
|
# resp.db_cluster.network_type #=> String
|
19985
|
+
# resp.db_cluster.db_system_id #=> String
|
19622
19986
|
#
|
19623
19987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
19624
19988
|
#
|
@@ -20382,6 +20746,7 @@ module Aws::RDS
|
|
20382
20746
|
# resp.db_instance.network_type #=> String
|
20383
20747
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
20384
20748
|
# resp.db_instance.storage_throughput #=> Integer
|
20749
|
+
# resp.db_instance.db_system_id #=> String
|
20385
20750
|
#
|
20386
20751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
20387
20752
|
#
|
@@ -21038,6 +21403,7 @@ module Aws::RDS
|
|
21038
21403
|
# resp.db_instance.network_type #=> String
|
21039
21404
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
21040
21405
|
# resp.db_instance.storage_throughput #=> Integer
|
21406
|
+
# resp.db_instance.db_system_id #=> String
|
21041
21407
|
#
|
21042
21408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
21043
21409
|
#
|
@@ -21785,6 +22151,7 @@ module Aws::RDS
|
|
21785
22151
|
# resp.db_instance.network_type #=> String
|
21786
22152
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
21787
22153
|
# resp.db_instance.storage_throughput #=> Integer
|
22154
|
+
# resp.db_instance.db_system_id #=> String
|
21788
22155
|
#
|
21789
22156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
21790
22157
|
#
|
@@ -22091,6 +22458,9 @@ module Aws::RDS
|
|
22091
22458
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
22092
22459
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
22093
22460
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
22461
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
22462
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
22463
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
22094
22464
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
22095
22465
|
# resp.db_cluster.storage_type #=> String
|
22096
22466
|
# resp.db_cluster.iops #=> Integer
|
@@ -22104,6 +22474,7 @@ module Aws::RDS
|
|
22104
22474
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
22105
22475
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
22106
22476
|
# resp.db_cluster.network_type #=> String
|
22477
|
+
# resp.db_cluster.db_system_id #=> String
|
22107
22478
|
#
|
22108
22479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
22109
22480
|
#
|
@@ -22287,6 +22658,7 @@ module Aws::RDS
|
|
22287
22658
|
# resp.db_instance.network_type #=> String
|
22288
22659
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
22289
22660
|
# resp.db_instance.storage_throughput #=> Integer
|
22661
|
+
# resp.db_instance.db_system_id #=> String
|
22290
22662
|
#
|
22291
22663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
22292
22664
|
#
|
@@ -22715,6 +23087,9 @@ module Aws::RDS
|
|
22715
23087
|
# resp.db_cluster.pending_modified_values.master_user_password #=> String
|
22716
23088
|
# resp.db_cluster.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
22717
23089
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
23090
|
+
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
23091
|
+
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
23092
|
+
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
22718
23093
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
22719
23094
|
# resp.db_cluster.storage_type #=> String
|
22720
23095
|
# resp.db_cluster.iops #=> Integer
|
@@ -22728,6 +23103,7 @@ module Aws::RDS
|
|
22728
23103
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
22729
23104
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
22730
23105
|
# resp.db_cluster.network_type #=> String
|
23106
|
+
# resp.db_cluster.db_system_id #=> String
|
22731
23107
|
#
|
22732
23108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
22733
23109
|
#
|
@@ -22918,6 +23294,7 @@ module Aws::RDS
|
|
22918
23294
|
# resp.db_instance.network_type #=> String
|
22919
23295
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
22920
23296
|
# resp.db_instance.storage_throughput #=> Integer
|
23297
|
+
# resp.db_instance.db_system_id #=> String
|
22921
23298
|
#
|
22922
23299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
22923
23300
|
#
|
@@ -22997,6 +23374,79 @@ module Aws::RDS
|
|
22997
23374
|
req.send_request(options)
|
22998
23375
|
end
|
22999
23376
|
|
23377
|
+
# Switches over a blue/green deployment.
|
23378
|
+
#
|
23379
|
+
# Before you switch over, production traffic is routed to the databases
|
23380
|
+
# in the blue environment. After you switch over, production traffic is
|
23381
|
+
# routed to the databases in the green environment.
|
23382
|
+
#
|
23383
|
+
# For more information, see [Using Amazon RDS Blue/Green Deployments for
|
23384
|
+
# database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
|
23385
|
+
# RDS Blue/Green Deployments for database updates][2] in the *Amazon
|
23386
|
+
# Aurora User Guide*.
|
23387
|
+
#
|
23388
|
+
#
|
23389
|
+
#
|
23390
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html
|
23391
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
|
23392
|
+
#
|
23393
|
+
# @option params [required, String] :blue_green_deployment_identifier
|
23394
|
+
# The blue/green deployment identifier.
|
23395
|
+
#
|
23396
|
+
# Constraints:
|
23397
|
+
#
|
23398
|
+
# * Must match an existing blue/green deployment identifier.
|
23399
|
+
#
|
23400
|
+
# ^
|
23401
|
+
#
|
23402
|
+
# @option params [Integer] :switchover_timeout
|
23403
|
+
# The amount of time, in seconds, for the switchover to complete. The
|
23404
|
+
# default is 300.
|
23405
|
+
#
|
23406
|
+
# If the switchover takes longer than the specified duration, then any
|
23407
|
+
# changes are rolled back, and no changes are made to the environments.
|
23408
|
+
#
|
23409
|
+
# @return [Types::SwitchoverBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23410
|
+
#
|
23411
|
+
# * {Types::SwitchoverBlueGreenDeploymentResponse#blue_green_deployment #blue_green_deployment} => Types::BlueGreenDeployment
|
23412
|
+
#
|
23413
|
+
# @example Request syntax with placeholder values
|
23414
|
+
#
|
23415
|
+
# resp = client.switchover_blue_green_deployment({
|
23416
|
+
# blue_green_deployment_identifier: "BlueGreenDeploymentIdentifier", # required
|
23417
|
+
# switchover_timeout: 1,
|
23418
|
+
# })
|
23419
|
+
#
|
23420
|
+
# @example Response structure
|
23421
|
+
#
|
23422
|
+
# resp.blue_green_deployment.blue_green_deployment_identifier #=> String
|
23423
|
+
# resp.blue_green_deployment.blue_green_deployment_name #=> String
|
23424
|
+
# resp.blue_green_deployment.source #=> String
|
23425
|
+
# resp.blue_green_deployment.target #=> String
|
23426
|
+
# resp.blue_green_deployment.switchover_details #=> Array
|
23427
|
+
# resp.blue_green_deployment.switchover_details[0].source_member #=> String
|
23428
|
+
# resp.blue_green_deployment.switchover_details[0].target_member #=> String
|
23429
|
+
# resp.blue_green_deployment.switchover_details[0].status #=> String
|
23430
|
+
# resp.blue_green_deployment.tasks #=> Array
|
23431
|
+
# resp.blue_green_deployment.tasks[0].name #=> String
|
23432
|
+
# resp.blue_green_deployment.tasks[0].status #=> String
|
23433
|
+
# resp.blue_green_deployment.status #=> String
|
23434
|
+
# resp.blue_green_deployment.status_details #=> String
|
23435
|
+
# resp.blue_green_deployment.create_time #=> Time
|
23436
|
+
# resp.blue_green_deployment.delete_time #=> Time
|
23437
|
+
# resp.blue_green_deployment.tag_list #=> Array
|
23438
|
+
# resp.blue_green_deployment.tag_list[0].key #=> String
|
23439
|
+
# resp.blue_green_deployment.tag_list[0].value #=> String
|
23440
|
+
#
|
23441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverBlueGreenDeployment AWS API Documentation
|
23442
|
+
#
|
23443
|
+
# @overload switchover_blue_green_deployment(params = {})
|
23444
|
+
# @param [Hash] params ({})
|
23445
|
+
def switchover_blue_green_deployment(params = {}, options = {})
|
23446
|
+
req = build_request(:switchover_blue_green_deployment, params)
|
23447
|
+
req.send_request(options)
|
23448
|
+
end
|
23449
|
+
|
23000
23450
|
# Switches over an Oracle standby database in an Oracle Data Guard
|
23001
23451
|
# environment, making it the new primary database. Issue this command in
|
23002
23452
|
# the Region that hosts the current standby database.
|
@@ -23166,6 +23616,7 @@ module Aws::RDS
|
|
23166
23616
|
# resp.db_instance.network_type #=> String
|
23167
23617
|
# resp.db_instance.activity_stream_policy_status #=> String, one of "locked", "unlocked", "locking-policy", "unlocking-policy"
|
23168
23618
|
# resp.db_instance.storage_throughput #=> Integer
|
23619
|
+
# resp.db_instance.db_system_id #=> String
|
23169
23620
|
#
|
23170
23621
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
23171
23622
|
#
|
@@ -23189,7 +23640,7 @@ module Aws::RDS
|
|
23189
23640
|
params: params,
|
23190
23641
|
config: config)
|
23191
23642
|
context[:gem_name] = 'aws-sdk-rds'
|
23192
|
-
context[:gem_version] = '1.
|
23643
|
+
context[:gem_version] = '1.161.0'
|
23193
23644
|
Seahorse::Client::Request.new(handlers, context)
|
23194
23645
|
end
|
23195
23646
|
|