aws-sdk-rds 1.130.0 → 1.131.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +76 -59
- data/lib/aws-sdk-rds/client_api.rb +6 -0
- data/lib/aws-sdk-rds/db_instance.rb +37 -49
- data/lib/aws-sdk-rds/db_snapshot.rb +21 -0
- data/lib/aws-sdk-rds/resource.rb +16 -49
- data/lib/aws-sdk-rds/types.rb +79 -55
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 659131ac4b7b2257cadf0b12709af832d1f47ca309f07cf0ae78d63c54d10204
|
|
4
|
+
data.tar.gz: de3954f4efca556a0bcd88468c83ce19a2dfa74cdb86f472f342c3db808c1b76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57759726984a4ab41c0d0b000f819d67020d0f2dcbaba23d469736a724ba7488c668d32621b79722faadd6de9fd88fddd2662f89b18b63b3cfd0b676920e909f
|
|
7
|
+
data.tar.gz: 61e0c4eee30b828837fdd4862dc145e23e19d8b8d1928e02f7cb9ea4fb6170c66b448eafed7598252d0a42565094fe751b0384829f78e70df2598d0811b617a1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.131.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -1666,6 +1666,7 @@ module Aws::RDS
|
|
|
1666
1666
|
# resp.db_snapshot.tag_list[0].key #=> String
|
|
1667
1667
|
# resp.db_snapshot.tag_list[0].value #=> String
|
|
1668
1668
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
|
1669
|
+
# resp.db_snapshot.snapshot_target #=> String
|
|
1669
1670
|
#
|
|
1670
1671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
|
1671
1672
|
#
|
|
@@ -1858,15 +1859,13 @@ module Aws::RDS
|
|
|
1858
1859
|
# Creates a custom DB engine version (CEV). A CEV is a binary volume
|
|
1859
1860
|
# snapshot of a database engine and specific AMI. The only supported
|
|
1860
1861
|
# engine is Oracle Database 19c Enterprise Edition with the January 2021
|
|
1861
|
-
# or later RU/RUR.
|
|
1862
|
-
# requirements and limitations][1] in the *Amazon RDS User Guide*.
|
|
1862
|
+
# or later RU/RUR.
|
|
1863
1863
|
#
|
|
1864
1864
|
# Amazon RDS, which is a fully managed service, supplies the Amazon
|
|
1865
1865
|
# Machine Image (AMI) and database software. The Amazon RDS database
|
|
1866
1866
|
# software is preinstalled, so you need only select a DB engine and
|
|
1867
1867
|
# version, and create your database. With Amazon RDS Custom, you upload
|
|
1868
|
-
# your database installation files in Amazon S3.
|
|
1869
|
-
# see [ Preparing to create a CEV][2] in the *Amazon RDS User Guide*.
|
|
1868
|
+
# your database installation files in Amazon S3.
|
|
1870
1869
|
#
|
|
1871
1870
|
# When you create a custom engine version, you specify the files in a
|
|
1872
1871
|
# JSON document called a CEV manifest. This document describes
|
|
@@ -1894,14 +1893,12 @@ module Aws::RDS
|
|
|
1894
1893
|
#
|
|
1895
1894
|
# </note>
|
|
1896
1895
|
#
|
|
1897
|
-
# For more information, see [ Creating a CEV][
|
|
1896
|
+
# For more information, see [ Creating a CEV][1] in the *Amazon RDS User
|
|
1898
1897
|
# Guide*.
|
|
1899
1898
|
#
|
|
1900
1899
|
#
|
|
1901
1900
|
#
|
|
1902
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.
|
|
1903
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.html#custom-cev.preparing
|
|
1904
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.create
|
|
1901
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.create
|
|
1905
1902
|
#
|
|
1906
1903
|
# @option params [required, String] :engine
|
|
1907
1904
|
# The database engine to use for your custom engine version (CEV). The
|
|
@@ -3346,59 +3343,13 @@ module Aws::RDS
|
|
|
3346
3343
|
# Not applicable. The name for the master user is managed by the DB
|
|
3347
3344
|
# cluster.
|
|
3348
3345
|
#
|
|
3349
|
-
# **
|
|
3350
|
-
#
|
|
3351
|
-
# Constraints:
|
|
3352
|
-
#
|
|
3353
|
-
# * Required for MariaDB.
|
|
3354
|
-
#
|
|
3355
|
-
# * Must be 1 to 16 letters or numbers.
|
|
3356
|
-
#
|
|
3357
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
3358
|
-
#
|
|
3359
|
-
# **Microsoft SQL Server**
|
|
3360
|
-
#
|
|
3361
|
-
# Constraints:
|
|
3362
|
-
#
|
|
3363
|
-
# * Required for SQL Server.
|
|
3364
|
-
#
|
|
3365
|
-
# * Must be 1 to 128 letters or numbers.
|
|
3366
|
-
#
|
|
3367
|
-
# * The first character must be a letter.
|
|
3368
|
-
#
|
|
3369
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
3370
|
-
#
|
|
3371
|
-
# **MySQL**
|
|
3372
|
-
#
|
|
3373
|
-
# Constraints:
|
|
3374
|
-
#
|
|
3375
|
-
# * Required for MySQL.
|
|
3376
|
-
#
|
|
3377
|
-
# * Must be 1 to 16 letters or numbers.
|
|
3378
|
-
#
|
|
3379
|
-
# * First character must be a letter.
|
|
3380
|
-
#
|
|
3381
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
3382
|
-
#
|
|
3383
|
-
# **Oracle**
|
|
3346
|
+
# **Amazon RDS**
|
|
3384
3347
|
#
|
|
3385
3348
|
# Constraints:
|
|
3386
3349
|
#
|
|
3387
|
-
# * Required
|
|
3350
|
+
# * Required.
|
|
3388
3351
|
#
|
|
3389
|
-
# * Must be 1 to
|
|
3390
|
-
#
|
|
3391
|
-
# * First character must be a letter.
|
|
3392
|
-
#
|
|
3393
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
3394
|
-
#
|
|
3395
|
-
# **PostgreSQL**
|
|
3396
|
-
#
|
|
3397
|
-
# Constraints:
|
|
3398
|
-
#
|
|
3399
|
-
# * Required for PostgreSQL.
|
|
3400
|
-
#
|
|
3401
|
-
# * Must be 1 to 63 letters or numbers.
|
|
3352
|
+
# * Must be 1 to 16 letters, numbers, or underscores.
|
|
3402
3353
|
#
|
|
3403
3354
|
# * First character must be a letter.
|
|
3404
3355
|
#
|
|
@@ -4089,6 +4040,19 @@ module Aws::RDS
|
|
|
4089
4040
|
#
|
|
4090
4041
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
4091
4042
|
#
|
|
4043
|
+
# @option params [String] :backup_target
|
|
4044
|
+
# Specifies where automated backups and manual snapshots are stored.
|
|
4045
|
+
#
|
|
4046
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
4047
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
4048
|
+
#
|
|
4049
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
4050
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
4051
|
+
#
|
|
4052
|
+
#
|
|
4053
|
+
#
|
|
4054
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
4055
|
+
#
|
|
4092
4056
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4093
4057
|
#
|
|
4094
4058
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -4175,6 +4139,7 @@ module Aws::RDS
|
|
|
4175
4139
|
# max_allocated_storage: 1,
|
|
4176
4140
|
# enable_customer_owned_ip: false,
|
|
4177
4141
|
# custom_iam_instance_profile: "String",
|
|
4142
|
+
# backup_target: "String",
|
|
4178
4143
|
# })
|
|
4179
4144
|
#
|
|
4180
4145
|
# @example Response structure
|
|
@@ -4314,6 +4279,7 @@ module Aws::RDS
|
|
|
4314
4279
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
4315
4280
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
4316
4281
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
4282
|
+
# resp.db_instance.backup_target #=> String
|
|
4317
4283
|
#
|
|
4318
4284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
|
4319
4285
|
#
|
|
@@ -5055,6 +5021,7 @@ module Aws::RDS
|
|
|
5055
5021
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
5056
5022
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
5057
5023
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
5024
|
+
# resp.db_instance.backup_target #=> String
|
|
5058
5025
|
#
|
|
5059
5026
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
|
5060
5027
|
#
|
|
@@ -5609,6 +5576,7 @@ module Aws::RDS
|
|
|
5609
5576
|
# resp.db_snapshot.tag_list[0].key #=> String
|
|
5610
5577
|
# resp.db_snapshot.tag_list[0].value #=> String
|
|
5611
5578
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
|
5579
|
+
# resp.db_snapshot.snapshot_target #=> String
|
|
5612
5580
|
#
|
|
5613
5581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
|
5614
5582
|
#
|
|
@@ -6903,6 +6871,7 @@ module Aws::RDS
|
|
|
6903
6871
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
6904
6872
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
6905
6873
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
6874
|
+
# resp.db_instance.backup_target #=> String
|
|
6906
6875
|
#
|
|
6907
6876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
6908
6877
|
#
|
|
@@ -6969,6 +6938,7 @@ module Aws::RDS
|
|
|
6969
6938
|
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
|
6970
6939
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
|
6971
6940
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
|
6941
|
+
# resp.db_instance_automated_backup.backup_target #=> String
|
|
6972
6942
|
#
|
|
6973
6943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
|
6974
6944
|
#
|
|
@@ -7236,6 +7206,7 @@ module Aws::RDS
|
|
|
7236
7206
|
# resp.db_snapshot.tag_list[0].key #=> String
|
|
7237
7207
|
# resp.db_snapshot.tag_list[0].value #=> String
|
|
7238
7208
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
|
7209
|
+
# resp.db_snapshot.snapshot_target #=> String
|
|
7239
7210
|
#
|
|
7240
7211
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
|
7241
7212
|
#
|
|
@@ -8938,6 +8909,7 @@ module Aws::RDS
|
|
|
8938
8909
|
# resp.db_instance_automated_backups[0].db_instance_automated_backups_arn #=> String
|
|
8939
8910
|
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications #=> Array
|
|
8940
8911
|
# resp.db_instance_automated_backups[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
|
8912
|
+
# resp.db_instance_automated_backups[0].backup_target #=> String
|
|
8941
8913
|
#
|
|
8942
8914
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
|
8943
8915
|
#
|
|
@@ -9181,6 +9153,7 @@ module Aws::RDS
|
|
|
9181
9153
|
# resp.db_instances[0].automation_mode #=> String, one of "full", "all-paused"
|
|
9182
9154
|
# resp.db_instances[0].resume_full_automation_mode_time #=> Time
|
|
9183
9155
|
# resp.db_instances[0].custom_iam_instance_profile #=> String
|
|
9156
|
+
# resp.db_instances[0].backup_target #=> String
|
|
9184
9157
|
#
|
|
9185
9158
|
#
|
|
9186
9159
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -10141,6 +10114,7 @@ module Aws::RDS
|
|
|
10141
10114
|
# resp.db_snapshots[0].tag_list[0].key #=> String
|
|
10142
10115
|
# resp.db_snapshots[0].tag_list[0].value #=> String
|
|
10143
10116
|
# resp.db_snapshots[0].original_snapshot_create_time #=> Time
|
|
10117
|
+
# resp.db_snapshots[0].snapshot_target #=> String
|
|
10144
10118
|
#
|
|
10145
10119
|
#
|
|
10146
10120
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -10775,6 +10749,8 @@ module Aws::RDS
|
|
|
10775
10749
|
#
|
|
10776
10750
|
# * `failed`
|
|
10777
10751
|
#
|
|
10752
|
+
# * `in_progress`
|
|
10753
|
+
#
|
|
10778
10754
|
# * `starting`
|
|
10779
10755
|
#
|
|
10780
10756
|
# @option params [String] :marker
|
|
@@ -12727,7 +12703,7 @@ module Aws::RDS
|
|
|
12727
12703
|
#
|
|
12728
12704
|
#
|
|
12729
12705
|
#
|
|
12730
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.
|
|
12706
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.modify
|
|
12731
12707
|
#
|
|
12732
12708
|
# @option params [required, String] :engine
|
|
12733
12709
|
# The DB engine. The only supported value is `custom-oracle-ee`.
|
|
@@ -14628,6 +14604,7 @@ module Aws::RDS
|
|
|
14628
14604
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
14629
14605
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
14630
14606
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
14607
|
+
# resp.db_instance.backup_target #=> String
|
|
14631
14608
|
#
|
|
14632
14609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
14633
14610
|
#
|
|
@@ -15063,6 +15040,7 @@ module Aws::RDS
|
|
|
15063
15040
|
# resp.db_snapshot.tag_list[0].key #=> String
|
|
15064
15041
|
# resp.db_snapshot.tag_list[0].value #=> String
|
|
15065
15042
|
# resp.db_snapshot.original_snapshot_create_time #=> Time
|
|
15043
|
+
# resp.db_snapshot.snapshot_target #=> String
|
|
15066
15044
|
#
|
|
15067
15045
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
|
15068
15046
|
#
|
|
@@ -15838,6 +15816,7 @@ module Aws::RDS
|
|
|
15838
15816
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
15839
15817
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
15840
15818
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
15819
|
+
# resp.db_instance.backup_target #=> String
|
|
15841
15820
|
#
|
|
15842
15821
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
|
15843
15822
|
#
|
|
@@ -16266,6 +16245,7 @@ module Aws::RDS
|
|
|
16266
16245
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
16267
16246
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
16268
16247
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
16248
|
+
# resp.db_instance.backup_target #=> String
|
|
16269
16249
|
#
|
|
16270
16250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
|
16271
16251
|
#
|
|
@@ -18425,6 +18405,20 @@ module Aws::RDS
|
|
|
18425
18405
|
#
|
|
18426
18406
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
18427
18407
|
#
|
|
18408
|
+
# @option params [String] :backup_target
|
|
18409
|
+
# Specifies where automated backups and manual snapshots are stored for
|
|
18410
|
+
# the restored DB instance.
|
|
18411
|
+
#
|
|
18412
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
18413
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
18414
|
+
#
|
|
18415
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
18416
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
18417
|
+
#
|
|
18418
|
+
#
|
|
18419
|
+
#
|
|
18420
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
18421
|
+
#
|
|
18428
18422
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
18429
18423
|
#
|
|
18430
18424
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -18567,6 +18561,7 @@ module Aws::RDS
|
|
|
18567
18561
|
# deletion_protection: false,
|
|
18568
18562
|
# enable_customer_owned_ip: false,
|
|
18569
18563
|
# custom_iam_instance_profile: "String",
|
|
18564
|
+
# backup_target: "String",
|
|
18570
18565
|
# })
|
|
18571
18566
|
#
|
|
18572
18567
|
# @example Response structure
|
|
@@ -18706,6 +18701,7 @@ module Aws::RDS
|
|
|
18706
18701
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
18707
18702
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
18708
18703
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
18704
|
+
# resp.db_instance.backup_target #=> String
|
|
18709
18705
|
#
|
|
18710
18706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
|
18711
18707
|
#
|
|
@@ -19303,6 +19299,7 @@ module Aws::RDS
|
|
|
19303
19299
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
19304
19300
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
19305
19301
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
19302
|
+
# resp.db_instance.backup_target #=> String
|
|
19306
19303
|
#
|
|
19307
19304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
|
19308
19305
|
#
|
|
@@ -19714,6 +19711,20 @@ module Aws::RDS
|
|
|
19714
19711
|
#
|
|
19715
19712
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
19716
19713
|
#
|
|
19714
|
+
# @option params [String] :backup_target
|
|
19715
|
+
# Specifies where automated backups and manual snapshots are stored for
|
|
19716
|
+
# the restored DB instance.
|
|
19717
|
+
#
|
|
19718
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
19719
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
19720
|
+
#
|
|
19721
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
19722
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
19723
|
+
#
|
|
19724
|
+
#
|
|
19725
|
+
#
|
|
19726
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
19727
|
+
#
|
|
19717
19728
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
19718
19729
|
#
|
|
19719
19730
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -19862,6 +19873,7 @@ module Aws::RDS
|
|
|
19862
19873
|
# source_db_instance_automated_backups_arn: "String",
|
|
19863
19874
|
# enable_customer_owned_ip: false,
|
|
19864
19875
|
# custom_iam_instance_profile: "String",
|
|
19876
|
+
# backup_target: "String",
|
|
19865
19877
|
# })
|
|
19866
19878
|
#
|
|
19867
19879
|
# @example Response structure
|
|
@@ -20001,6 +20013,7 @@ module Aws::RDS
|
|
|
20001
20013
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
20002
20014
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
20003
20015
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
20016
|
+
# resp.db_instance.backup_target #=> String
|
|
20004
20017
|
#
|
|
20005
20018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
|
20006
20019
|
#
|
|
@@ -20468,6 +20481,7 @@ module Aws::RDS
|
|
|
20468
20481
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
20469
20482
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
20470
20483
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
20484
|
+
# resp.db_instance.backup_target #=> String
|
|
20471
20485
|
#
|
|
20472
20486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
|
20473
20487
|
#
|
|
@@ -20562,6 +20576,7 @@ module Aws::RDS
|
|
|
20562
20576
|
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
|
20563
20577
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
|
20564
20578
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
|
20579
|
+
# resp.db_instance_automated_backup.backup_target #=> String
|
|
20565
20580
|
#
|
|
20566
20581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
20567
20582
|
#
|
|
@@ -21053,6 +21068,7 @@ module Aws::RDS
|
|
|
21053
21068
|
# resp.db_instance.automation_mode #=> String, one of "full", "all-paused"
|
|
21054
21069
|
# resp.db_instance.resume_full_automation_mode_time #=> Time
|
|
21055
21070
|
# resp.db_instance.custom_iam_instance_profile #=> String
|
|
21071
|
+
# resp.db_instance.backup_target #=> String
|
|
21056
21072
|
#
|
|
21057
21073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
|
21058
21074
|
#
|
|
@@ -21119,6 +21135,7 @@ module Aws::RDS
|
|
|
21119
21135
|
# resp.db_instance_automated_backup.db_instance_automated_backups_arn #=> String
|
|
21120
21136
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications #=> Array
|
|
21121
21137
|
# resp.db_instance_automated_backup.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
|
21138
|
+
# resp.db_instance_automated_backup.backup_target #=> String
|
|
21122
21139
|
#
|
|
21123
21140
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
21124
21141
|
#
|
|
@@ -21142,7 +21159,7 @@ module Aws::RDS
|
|
|
21142
21159
|
params: params,
|
|
21143
21160
|
config: config)
|
|
21144
21161
|
context[:gem_name] = 'aws-sdk-rds'
|
|
21145
|
-
context[:gem_version] = '1.
|
|
21162
|
+
context[:gem_version] = '1.131.0'
|
|
21146
21163
|
Seahorse::Client::Request.new(handlers, context)
|
|
21147
21164
|
end
|
|
21148
21165
|
|
|
@@ -935,6 +935,7 @@ module Aws::RDS
|
|
|
935
935
|
CreateDBInstanceMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
|
936
936
|
CreateDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
|
937
937
|
CreateDBInstanceMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
|
938
|
+
CreateDBInstanceMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
|
938
939
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
|
939
940
|
|
|
940
941
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
|
@@ -1413,6 +1414,7 @@ module Aws::RDS
|
|
|
1413
1414
|
DBInstance.add_member(:automation_mode, Shapes::ShapeRef.new(shape: AutomationMode, location_name: "AutomationMode"))
|
|
1414
1415
|
DBInstance.add_member(:resume_full_automation_mode_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ResumeFullAutomationModeTime"))
|
|
1415
1416
|
DBInstance.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
|
1417
|
+
DBInstance.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
|
1416
1418
|
DBInstance.struct_class = Types::DBInstance
|
|
1417
1419
|
|
|
1418
1420
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
|
@@ -1443,6 +1445,7 @@ module Aws::RDS
|
|
|
1443
1445
|
DBInstanceAutomatedBackup.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
|
1444
1446
|
DBInstanceAutomatedBackup.add_member(:db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceAutomatedBackupsArn"))
|
|
1445
1447
|
DBInstanceAutomatedBackup.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
|
|
1448
|
+
DBInstanceAutomatedBackup.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
|
1446
1449
|
DBInstanceAutomatedBackup.struct_class = Types::DBInstanceAutomatedBackup
|
|
1447
1450
|
|
|
1448
1451
|
DBInstanceAutomatedBackupList.member = Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackup, location_name: "DBInstanceAutomatedBackup")
|
|
@@ -1655,6 +1658,7 @@ module Aws::RDS
|
|
|
1655
1658
|
DBSnapshot.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
|
|
1656
1659
|
DBSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
|
1657
1660
|
DBSnapshot.add_member(:original_snapshot_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "OriginalSnapshotCreateTime"))
|
|
1661
|
+
DBSnapshot.add_member(:snapshot_target, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotTarget"))
|
|
1658
1662
|
DBSnapshot.struct_class = Types::DBSnapshot
|
|
1659
1663
|
|
|
1660
1664
|
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
|
@@ -3120,6 +3124,7 @@ module Aws::RDS
|
|
|
3120
3124
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
3121
3125
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
|
3122
3126
|
RestoreDBInstanceFromDBSnapshotMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
|
3127
|
+
RestoreDBInstanceFromDBSnapshotMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
|
3123
3128
|
RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
|
|
3124
3129
|
|
|
3125
3130
|
RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
|
@@ -3209,6 +3214,7 @@ module Aws::RDS
|
|
|
3209
3214
|
RestoreDBInstanceToPointInTimeMessage.add_member(:source_db_instance_automated_backups_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBInstanceAutomatedBackupsArn"))
|
|
3210
3215
|
RestoreDBInstanceToPointInTimeMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
|
3211
3216
|
RestoreDBInstanceToPointInTimeMessage.add_member(:custom_iam_instance_profile, Shapes::ShapeRef.new(shape: String, location_name: "CustomIamInstanceProfile"))
|
|
3217
|
+
RestoreDBInstanceToPointInTimeMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
|
3212
3218
|
RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
|
|
3213
3219
|
|
|
3214
3220
|
RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
|
@@ -670,6 +670,13 @@ module Aws::RDS
|
|
|
670
670
|
data[:custom_iam_instance_profile]
|
|
671
671
|
end
|
|
672
672
|
|
|
673
|
+
# Specifies where automated backups and manual snapshots are stored:
|
|
674
|
+
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
|
675
|
+
# @return [String]
|
|
676
|
+
def backup_target
|
|
677
|
+
data[:backup_target]
|
|
678
|
+
end
|
|
679
|
+
|
|
673
680
|
# @!endgroup
|
|
674
681
|
|
|
675
682
|
# @return [Client]
|
|
@@ -865,6 +872,7 @@ module Aws::RDS
|
|
|
865
872
|
# max_allocated_storage: 1,
|
|
866
873
|
# enable_customer_owned_ip: false,
|
|
867
874
|
# custom_iam_instance_profile: "String",
|
|
875
|
+
# backup_target: "String",
|
|
868
876
|
# })
|
|
869
877
|
# @param [Hash] options ({})
|
|
870
878
|
# @option options [String] :db_name
|
|
@@ -1131,59 +1139,13 @@ module Aws::RDS
|
|
|
1131
1139
|
# Not applicable. The name for the master user is managed by the DB
|
|
1132
1140
|
# cluster.
|
|
1133
1141
|
#
|
|
1134
|
-
# **
|
|
1135
|
-
#
|
|
1136
|
-
# Constraints:
|
|
1137
|
-
#
|
|
1138
|
-
# * Required for MariaDB.
|
|
1139
|
-
#
|
|
1140
|
-
# * Must be 1 to 16 letters or numbers.
|
|
1141
|
-
#
|
|
1142
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
1143
|
-
#
|
|
1144
|
-
# **Microsoft SQL Server**
|
|
1145
|
-
#
|
|
1146
|
-
# Constraints:
|
|
1147
|
-
#
|
|
1148
|
-
# * Required for SQL Server.
|
|
1149
|
-
#
|
|
1150
|
-
# * Must be 1 to 128 letters or numbers.
|
|
1151
|
-
#
|
|
1152
|
-
# * The first character must be a letter.
|
|
1153
|
-
#
|
|
1154
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
1155
|
-
#
|
|
1156
|
-
# **MySQL**
|
|
1157
|
-
#
|
|
1158
|
-
# Constraints:
|
|
1159
|
-
#
|
|
1160
|
-
# * Required for MySQL.
|
|
1161
|
-
#
|
|
1162
|
-
# * Must be 1 to 16 letters or numbers.
|
|
1163
|
-
#
|
|
1164
|
-
# * First character must be a letter.
|
|
1165
|
-
#
|
|
1166
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
1167
|
-
#
|
|
1168
|
-
# **Oracle**
|
|
1142
|
+
# **Amazon RDS**
|
|
1169
1143
|
#
|
|
1170
1144
|
# Constraints:
|
|
1171
1145
|
#
|
|
1172
|
-
# * Required
|
|
1146
|
+
# * Required.
|
|
1173
1147
|
#
|
|
1174
|
-
# * Must be 1 to
|
|
1175
|
-
#
|
|
1176
|
-
# * First character must be a letter.
|
|
1177
|
-
#
|
|
1178
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
1179
|
-
#
|
|
1180
|
-
# **PostgreSQL**
|
|
1181
|
-
#
|
|
1182
|
-
# Constraints:
|
|
1183
|
-
#
|
|
1184
|
-
# * Required for PostgreSQL.
|
|
1185
|
-
#
|
|
1186
|
-
# * Must be 1 to 63 letters or numbers.
|
|
1148
|
+
# * Must be 1 to 16 letters, numbers, or underscores.
|
|
1187
1149
|
#
|
|
1188
1150
|
# * First character must be a letter.
|
|
1189
1151
|
#
|
|
@@ -1830,6 +1792,18 @@ module Aws::RDS
|
|
|
1830
1792
|
#
|
|
1831
1793
|
#
|
|
1832
1794
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
1795
|
+
# @option options [String] :backup_target
|
|
1796
|
+
# Specifies where automated backups and manual snapshots are stored.
|
|
1797
|
+
#
|
|
1798
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
1799
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
1800
|
+
#
|
|
1801
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
1802
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
1803
|
+
#
|
|
1804
|
+
#
|
|
1805
|
+
#
|
|
1806
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
1833
1807
|
# @return [DBInstance]
|
|
1834
1808
|
def create(options = {})
|
|
1835
1809
|
options = options.merge(db_instance_identifier: @id)
|
|
@@ -3347,6 +3321,7 @@ module Aws::RDS
|
|
|
3347
3321
|
# source_db_instance_automated_backups_arn: "String",
|
|
3348
3322
|
# enable_customer_owned_ip: false,
|
|
3349
3323
|
# custom_iam_instance_profile: "String",
|
|
3324
|
+
# backup_target: "String",
|
|
3350
3325
|
# })
|
|
3351
3326
|
# @param [Hash] options ({})
|
|
3352
3327
|
# @option options [required, String] :target_db_instance_identifier
|
|
@@ -3688,6 +3663,19 @@ module Aws::RDS
|
|
|
3688
3663
|
#
|
|
3689
3664
|
#
|
|
3690
3665
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
3666
|
+
# @option options [String] :backup_target
|
|
3667
|
+
# Specifies where automated backups and manual snapshots are stored for
|
|
3668
|
+
# the restored DB instance.
|
|
3669
|
+
#
|
|
3670
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
3671
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
3672
|
+
#
|
|
3673
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
3674
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
3675
|
+
#
|
|
3676
|
+
#
|
|
3677
|
+
#
|
|
3678
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
3691
3679
|
# @return [DBInstance]
|
|
3692
3680
|
def restore(options = {})
|
|
3693
3681
|
options = options.merge(source_db_instance_identifier: @id)
|
|
@@ -237,6 +237,13 @@ module Aws::RDS
|
|
|
237
237
|
data[:original_snapshot_create_time]
|
|
238
238
|
end
|
|
239
239
|
|
|
240
|
+
# Specifies where manual snapshots are stored: Amazon Web Services
|
|
241
|
+
# Outposts or the Amazon Web Services Region.
|
|
242
|
+
# @return [String]
|
|
243
|
+
def snapshot_target
|
|
244
|
+
data[:snapshot_target]
|
|
245
|
+
end
|
|
246
|
+
|
|
240
247
|
# @!endgroup
|
|
241
248
|
|
|
242
249
|
# @return [Client]
|
|
@@ -623,6 +630,7 @@ module Aws::RDS
|
|
|
623
630
|
# deletion_protection: false,
|
|
624
631
|
# enable_customer_owned_ip: false,
|
|
625
632
|
# custom_iam_instance_profile: "String",
|
|
633
|
+
# backup_target: "String",
|
|
626
634
|
# })
|
|
627
635
|
# @param [Hash] options ({})
|
|
628
636
|
# @option options [required, String] :db_instance_identifier
|
|
@@ -934,6 +942,19 @@ module Aws::RDS
|
|
|
934
942
|
#
|
|
935
943
|
#
|
|
936
944
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
945
|
+
# @option options [String] :backup_target
|
|
946
|
+
# Specifies where automated backups and manual snapshots are stored for
|
|
947
|
+
# the restored DB instance.
|
|
948
|
+
#
|
|
949
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
950
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
951
|
+
#
|
|
952
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
953
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
954
|
+
#
|
|
955
|
+
#
|
|
956
|
+
#
|
|
957
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
937
958
|
# @return [DBInstance]
|
|
938
959
|
def restore(options = {})
|
|
939
960
|
options = options.merge(db_snapshot_identifier: @snapshot_id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -627,6 +627,7 @@ module Aws::RDS
|
|
|
627
627
|
# max_allocated_storage: 1,
|
|
628
628
|
# enable_customer_owned_ip: false,
|
|
629
629
|
# custom_iam_instance_profile: "String",
|
|
630
|
+
# backup_target: "String",
|
|
630
631
|
# })
|
|
631
632
|
# @param [Hash] options ({})
|
|
632
633
|
# @option options [String] :db_name
|
|
@@ -906,59 +907,13 @@ module Aws::RDS
|
|
|
906
907
|
# Not applicable. The name for the master user is managed by the DB
|
|
907
908
|
# cluster.
|
|
908
909
|
#
|
|
909
|
-
# **
|
|
910
|
-
#
|
|
911
|
-
# Constraints:
|
|
912
|
-
#
|
|
913
|
-
# * Required for MariaDB.
|
|
914
|
-
#
|
|
915
|
-
# * Must be 1 to 16 letters or numbers.
|
|
916
|
-
#
|
|
917
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
918
|
-
#
|
|
919
|
-
# **Microsoft SQL Server**
|
|
920
|
-
#
|
|
921
|
-
# Constraints:
|
|
922
|
-
#
|
|
923
|
-
# * Required for SQL Server.
|
|
924
|
-
#
|
|
925
|
-
# * Must be 1 to 128 letters or numbers.
|
|
926
|
-
#
|
|
927
|
-
# * The first character must be a letter.
|
|
928
|
-
#
|
|
929
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
930
|
-
#
|
|
931
|
-
# **MySQL**
|
|
932
|
-
#
|
|
933
|
-
# Constraints:
|
|
934
|
-
#
|
|
935
|
-
# * Required for MySQL.
|
|
936
|
-
#
|
|
937
|
-
# * Must be 1 to 16 letters or numbers.
|
|
938
|
-
#
|
|
939
|
-
# * First character must be a letter.
|
|
940
|
-
#
|
|
941
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
942
|
-
#
|
|
943
|
-
# **Oracle**
|
|
910
|
+
# **Amazon RDS**
|
|
944
911
|
#
|
|
945
912
|
# Constraints:
|
|
946
913
|
#
|
|
947
|
-
# * Required
|
|
914
|
+
# * Required.
|
|
948
915
|
#
|
|
949
|
-
# * Must be 1 to
|
|
950
|
-
#
|
|
951
|
-
# * First character must be a letter.
|
|
952
|
-
#
|
|
953
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
954
|
-
#
|
|
955
|
-
# **PostgreSQL**
|
|
956
|
-
#
|
|
957
|
-
# Constraints:
|
|
958
|
-
#
|
|
959
|
-
# * Required for PostgreSQL.
|
|
960
|
-
#
|
|
961
|
-
# * Must be 1 to 63 letters or numbers.
|
|
916
|
+
# * Must be 1 to 16 letters, numbers, or underscores.
|
|
962
917
|
#
|
|
963
918
|
# * First character must be a letter.
|
|
964
919
|
#
|
|
@@ -1605,6 +1560,18 @@ module Aws::RDS
|
|
|
1605
1560
|
#
|
|
1606
1561
|
#
|
|
1607
1562
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
1563
|
+
# @option options [String] :backup_target
|
|
1564
|
+
# Specifies where automated backups and manual snapshots are stored.
|
|
1565
|
+
#
|
|
1566
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
1567
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
1568
|
+
#
|
|
1569
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
1570
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
1571
|
+
#
|
|
1572
|
+
#
|
|
1573
|
+
#
|
|
1574
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
1608
1575
|
# @return [DBInstance]
|
|
1609
1576
|
def create_db_instance(options = {})
|
|
1610
1577
|
resp = @client.create_db_instance(options)
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -2666,6 +2666,7 @@ module Aws::RDS
|
|
|
2666
2666
|
# max_allocated_storage: 1,
|
|
2667
2667
|
# enable_customer_owned_ip: false,
|
|
2668
2668
|
# custom_iam_instance_profile: "String",
|
|
2669
|
+
# backup_target: "String",
|
|
2669
2670
|
# }
|
|
2670
2671
|
#
|
|
2671
2672
|
# @!attribute [rw] db_name
|
|
@@ -2956,59 +2957,13 @@ module Aws::RDS
|
|
|
2956
2957
|
# Not applicable. The name for the master user is managed by the DB
|
|
2957
2958
|
# cluster.
|
|
2958
2959
|
#
|
|
2959
|
-
# **
|
|
2960
|
-
#
|
|
2961
|
-
# Constraints:
|
|
2962
|
-
#
|
|
2963
|
-
# * Required for MariaDB.
|
|
2964
|
-
#
|
|
2965
|
-
# * Must be 1 to 16 letters or numbers.
|
|
2966
|
-
#
|
|
2967
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
2968
|
-
#
|
|
2969
|
-
# **Microsoft SQL Server**
|
|
2960
|
+
# **Amazon RDS**
|
|
2970
2961
|
#
|
|
2971
2962
|
# Constraints:
|
|
2972
2963
|
#
|
|
2973
|
-
# * Required
|
|
2964
|
+
# * Required.
|
|
2974
2965
|
#
|
|
2975
|
-
# * Must be 1 to
|
|
2976
|
-
#
|
|
2977
|
-
# * The first character must be a letter.
|
|
2978
|
-
#
|
|
2979
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
2980
|
-
#
|
|
2981
|
-
# **MySQL**
|
|
2982
|
-
#
|
|
2983
|
-
# Constraints:
|
|
2984
|
-
#
|
|
2985
|
-
# * Required for MySQL.
|
|
2986
|
-
#
|
|
2987
|
-
# * Must be 1 to 16 letters or numbers.
|
|
2988
|
-
#
|
|
2989
|
-
# * First character must be a letter.
|
|
2990
|
-
#
|
|
2991
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
2992
|
-
#
|
|
2993
|
-
# **Oracle**
|
|
2994
|
-
#
|
|
2995
|
-
# Constraints:
|
|
2996
|
-
#
|
|
2997
|
-
# * Required for Oracle.
|
|
2998
|
-
#
|
|
2999
|
-
# * Must be 1 to 30 letters or numbers.
|
|
3000
|
-
#
|
|
3001
|
-
# * First character must be a letter.
|
|
3002
|
-
#
|
|
3003
|
-
# * Can't be a reserved word for the chosen database engine.
|
|
3004
|
-
#
|
|
3005
|
-
# **PostgreSQL**
|
|
3006
|
-
#
|
|
3007
|
-
# Constraints:
|
|
3008
|
-
#
|
|
3009
|
-
# * Required for PostgreSQL.
|
|
3010
|
-
#
|
|
3011
|
-
# * Must be 1 to 63 letters or numbers.
|
|
2966
|
+
# * Must be 1 to 16 letters, numbers, or underscores.
|
|
3012
2967
|
#
|
|
3013
2968
|
# * First character must be a letter.
|
|
3014
2969
|
#
|
|
@@ -3750,6 +3705,20 @@ module Aws::RDS
|
|
|
3750
3705
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
3751
3706
|
# @return [String]
|
|
3752
3707
|
#
|
|
3708
|
+
# @!attribute [rw] backup_target
|
|
3709
|
+
# Specifies where automated backups and manual snapshots are stored.
|
|
3710
|
+
#
|
|
3711
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
3712
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
3713
|
+
#
|
|
3714
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
3715
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
3716
|
+
#
|
|
3717
|
+
#
|
|
3718
|
+
#
|
|
3719
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
3720
|
+
# @return [String]
|
|
3721
|
+
#
|
|
3753
3722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
|
3754
3723
|
#
|
|
3755
3724
|
class CreateDBInstanceMessage < Struct.new(
|
|
@@ -3801,7 +3770,8 @@ module Aws::RDS
|
|
|
3801
3770
|
:deletion_protection,
|
|
3802
3771
|
:max_allocated_storage,
|
|
3803
3772
|
:enable_customer_owned_ip,
|
|
3804
|
-
:custom_iam_instance_profile
|
|
3773
|
+
:custom_iam_instance_profile,
|
|
3774
|
+
:backup_target)
|
|
3805
3775
|
SENSITIVE = []
|
|
3806
3776
|
include Aws::Structure
|
|
3807
3777
|
end
|
|
@@ -7243,6 +7213,11 @@ module Aws::RDS
|
|
|
7243
7213
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
7244
7214
|
# @return [String]
|
|
7245
7215
|
#
|
|
7216
|
+
# @!attribute [rw] backup_target
|
|
7217
|
+
# Specifies where automated backups and manual snapshots are stored:
|
|
7218
|
+
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
|
7219
|
+
# @return [String]
|
|
7220
|
+
#
|
|
7246
7221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
|
7247
7222
|
#
|
|
7248
7223
|
class DBInstance < Struct.new(
|
|
@@ -7318,7 +7293,8 @@ module Aws::RDS
|
|
|
7318
7293
|
:activity_stream_engine_native_audit_fields_included,
|
|
7319
7294
|
:automation_mode,
|
|
7320
7295
|
:resume_full_automation_mode_time,
|
|
7321
|
-
:custom_iam_instance_profile
|
|
7296
|
+
:custom_iam_instance_profile,
|
|
7297
|
+
:backup_target)
|
|
7322
7298
|
SENSITIVE = []
|
|
7323
7299
|
include Aws::Structure
|
|
7324
7300
|
end
|
|
@@ -7466,6 +7442,11 @@ module Aws::RDS
|
|
|
7466
7442
|
# associated with the automated backup.
|
|
7467
7443
|
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
|
7468
7444
|
#
|
|
7445
|
+
# @!attribute [rw] backup_target
|
|
7446
|
+
# Specifies where automated backups are stored: Amazon Web Services
|
|
7447
|
+
# Outposts or the Amazon Web Services Region.
|
|
7448
|
+
# @return [String]
|
|
7449
|
+
#
|
|
7469
7450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
|
7470
7451
|
#
|
|
7471
7452
|
class DBInstanceAutomatedBackup < Struct.new(
|
|
@@ -7494,7 +7475,8 @@ module Aws::RDS
|
|
|
7494
7475
|
:iam_database_authentication_enabled,
|
|
7495
7476
|
:backup_retention_period,
|
|
7496
7477
|
:db_instance_automated_backups_arn,
|
|
7497
|
-
:db_instance_automated_backups_replications
|
|
7478
|
+
:db_instance_automated_backups_replications,
|
|
7479
|
+
:backup_target)
|
|
7498
7480
|
SENSITIVE = []
|
|
7499
7481
|
include Aws::Structure
|
|
7500
7482
|
end
|
|
@@ -8489,6 +8471,11 @@ module Aws::RDS
|
|
|
8489
8471
|
# Universal Time (UTC). Doesn't change when the snapshot is copied.
|
|
8490
8472
|
# @return [Time]
|
|
8491
8473
|
#
|
|
8474
|
+
# @!attribute [rw] snapshot_target
|
|
8475
|
+
# Specifies where manual snapshots are stored: Amazon Web Services
|
|
8476
|
+
# Outposts or the Amazon Web Services Region.
|
|
8477
|
+
# @return [String]
|
|
8478
|
+
#
|
|
8492
8479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
|
|
8493
8480
|
#
|
|
8494
8481
|
class DBSnapshot < Struct.new(
|
|
@@ -8521,7 +8508,8 @@ module Aws::RDS
|
|
|
8521
8508
|
:processor_features,
|
|
8522
8509
|
:dbi_resource_id,
|
|
8523
8510
|
:tag_list,
|
|
8524
|
-
:original_snapshot_create_time
|
|
8511
|
+
:original_snapshot_create_time,
|
|
8512
|
+
:snapshot_target)
|
|
8525
8513
|
SENSITIVE = []
|
|
8526
8514
|
include Aws::Structure
|
|
8527
8515
|
end
|
|
@@ -11715,6 +11703,8 @@ module Aws::RDS
|
|
|
11715
11703
|
#
|
|
11716
11704
|
# * `failed`
|
|
11717
11705
|
#
|
|
11706
|
+
# * `in_progress`
|
|
11707
|
+
#
|
|
11718
11708
|
# * `starting`
|
|
11719
11709
|
# @return [Array<Types::Filter>]
|
|
11720
11710
|
#
|
|
@@ -19538,6 +19528,7 @@ module Aws::RDS
|
|
|
19538
19528
|
# deletion_protection: false,
|
|
19539
19529
|
# enable_customer_owned_ip: false,
|
|
19540
19530
|
# custom_iam_instance_profile: "String",
|
|
19531
|
+
# backup_target: "String",
|
|
19541
19532
|
# }
|
|
19542
19533
|
#
|
|
19543
19534
|
# @!attribute [rw] db_instance_identifier
|
|
@@ -19923,6 +19914,21 @@ module Aws::RDS
|
|
|
19923
19914
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
19924
19915
|
# @return [String]
|
|
19925
19916
|
#
|
|
19917
|
+
# @!attribute [rw] backup_target
|
|
19918
|
+
# Specifies where automated backups and manual snapshots are stored
|
|
19919
|
+
# for the restored DB instance.
|
|
19920
|
+
#
|
|
19921
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
19922
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
19923
|
+
#
|
|
19924
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
19925
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
19926
|
+
#
|
|
19927
|
+
#
|
|
19928
|
+
#
|
|
19929
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
19930
|
+
# @return [String]
|
|
19931
|
+
#
|
|
19926
19932
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
|
19927
19933
|
#
|
|
19928
19934
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
|
@@ -19955,7 +19961,8 @@ module Aws::RDS
|
|
|
19955
19961
|
:db_parameter_group_name,
|
|
19956
19962
|
:deletion_protection,
|
|
19957
19963
|
:enable_customer_owned_ip,
|
|
19958
|
-
:custom_iam_instance_profile
|
|
19964
|
+
:custom_iam_instance_profile,
|
|
19965
|
+
:backup_target)
|
|
19959
19966
|
SENSITIVE = []
|
|
19960
19967
|
include Aws::Structure
|
|
19961
19968
|
end
|
|
@@ -20574,6 +20581,7 @@ module Aws::RDS
|
|
|
20574
20581
|
# source_db_instance_automated_backups_arn: "String",
|
|
20575
20582
|
# enable_customer_owned_ip: false,
|
|
20576
20583
|
# custom_iam_instance_profile: "String",
|
|
20584
|
+
# backup_target: "String",
|
|
20577
20585
|
# }
|
|
20578
20586
|
#
|
|
20579
20587
|
# @!attribute [rw] source_db_instance_identifier
|
|
@@ -20998,6 +21006,21 @@ module Aws::RDS
|
|
|
20998
21006
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
20999
21007
|
# @return [String]
|
|
21000
21008
|
#
|
|
21009
|
+
# @!attribute [rw] backup_target
|
|
21010
|
+
# Specifies where automated backups and manual snapshots are stored
|
|
21011
|
+
# for the restored DB instance.
|
|
21012
|
+
#
|
|
21013
|
+
# Possible values are `outposts` (Amazon Web Services Outposts) and
|
|
21014
|
+
# `region` (Amazon Web Services Region). The default is `region`.
|
|
21015
|
+
#
|
|
21016
|
+
# For more information, see [Working with Amazon RDS on Amazon Web
|
|
21017
|
+
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
|
21018
|
+
#
|
|
21019
|
+
#
|
|
21020
|
+
#
|
|
21021
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
21022
|
+
# @return [String]
|
|
21023
|
+
#
|
|
21001
21024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
|
21002
21025
|
#
|
|
21003
21026
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
|
@@ -21035,7 +21058,8 @@ module Aws::RDS
|
|
|
21035
21058
|
:max_allocated_storage,
|
|
21036
21059
|
:source_db_instance_automated_backups_arn,
|
|
21037
21060
|
:enable_customer_owned_ip,
|
|
21038
|
-
:custom_iam_instance_profile
|
|
21061
|
+
:custom_iam_instance_profile,
|
|
21062
|
+
:backup_target)
|
|
21039
21063
|
SENSITIVE = []
|
|
21040
21064
|
include Aws::Structure
|
|
21041
21065
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-rds
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.131.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-11-
|
|
11
|
+
date: 2021-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|