aws-sdk-rds 1.193.0 → 1.195.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 +131 -80
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_cluster.rb +7 -5
- data/lib/aws-sdk-rds/db_instance.rb +117 -70
- data/lib/aws-sdk-rds/types.rb +136 -79
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +4 -4
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -794,6 +794,14 @@ module Aws::RDS
|
|
794
794
|
|
795
795
|
# Data returned by the **DescribeCertificates** action.
|
796
796
|
#
|
797
|
+
# @!attribute [rw] default_certificate_for_new_launches
|
798
|
+
# The default root CA for new databases created by your Amazon Web
|
799
|
+
# Services account. This is either the root CA override set on your
|
800
|
+
# Amazon Web Services account or the system default CA for the Region
|
801
|
+
# if no override exists. To override the default CA, use the
|
802
|
+
# `ModifyCertificates` operation.
|
803
|
+
# @return [String]
|
804
|
+
#
|
797
805
|
# @!attribute [rw] certificates
|
798
806
|
# The list of `Certificate` objects for the Amazon Web Services
|
799
807
|
# account.
|
@@ -809,6 +817,7 @@ module Aws::RDS
|
|
809
817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CertificateMessage AWS API Documentation
|
810
818
|
#
|
811
819
|
class CertificateMessage < Struct.new(
|
820
|
+
:default_certificate_for_new_launches,
|
812
821
|
:certificates,
|
813
822
|
:marker)
|
814
823
|
SENSITIVE = []
|
@@ -15144,7 +15153,7 @@ module Aws::RDS
|
|
15144
15153
|
# @!attribute [rw] allow_major_version_upgrade
|
15145
15154
|
# Specifies whether major version upgrades are allowed.
|
15146
15155
|
#
|
15147
|
-
# Valid for Cluster Type: Aurora DB clusters
|
15156
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
15148
15157
|
#
|
15149
15158
|
# Constraints:
|
15150
15159
|
#
|
@@ -15834,6 +15843,17 @@ module Aws::RDS
|
|
15834
15843
|
#
|
15835
15844
|
# Default: Uses existing setting
|
15836
15845
|
#
|
15846
|
+
# Constraints:
|
15847
|
+
#
|
15848
|
+
# * If you are modifying the DB instance class and upgrading the
|
15849
|
+
# engine version at the same time, the currently running engine
|
15850
|
+
# version must be supported on the specified DB instance class.
|
15851
|
+
# Otherwise, the operation returns an error. In this case, first run
|
15852
|
+
# the operation to modify the DB instance class, and then run it
|
15853
|
+
# again to upgrade the engine version.
|
15854
|
+
#
|
15855
|
+
# ^
|
15856
|
+
#
|
15837
15857
|
#
|
15838
15858
|
#
|
15839
15859
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
@@ -16116,6 +16136,17 @@ module Aws::RDS
|
|
16116
16136
|
#
|
16117
16137
|
# In RDS Custom for Oracle, this parameter is supported for read
|
16118
16138
|
# replicas only if they are in the `PATCH_DB_FAILURE` lifecycle.
|
16139
|
+
#
|
16140
|
+
# Constraints:
|
16141
|
+
#
|
16142
|
+
# * If you are upgrading the engine version and modifying the DB
|
16143
|
+
# instance class at the same time, the currently running engine
|
16144
|
+
# version must be supported on the specified DB instance class.
|
16145
|
+
# Otherwise, the operation returns an error. In this case, first run
|
16146
|
+
# the operation to modify the DB instance class, and then run it
|
16147
|
+
# again to upgrade the engine version.
|
16148
|
+
#
|
16149
|
+
# ^
|
16119
16150
|
# @return [String]
|
16120
16151
|
#
|
16121
16152
|
# @!attribute [rw] allow_major_version_upgrade
|
@@ -20816,9 +20847,11 @@ module Aws::RDS
|
|
20816
20847
|
# @return [Array<String>]
|
20817
20848
|
#
|
20818
20849
|
# @!attribute [rw] db_cluster_parameter_group_name
|
20819
|
-
# The name of the DB cluster parameter group to associate with
|
20820
|
-
#
|
20821
|
-
#
|
20850
|
+
# The name of the custom DB cluster parameter group to associate with
|
20851
|
+
# this DB cluster.
|
20852
|
+
#
|
20853
|
+
# If the `DBClusterParameterGroupName` parameter is omitted, the
|
20854
|
+
# default DB cluster parameter group for the specified engine is used.
|
20822
20855
|
#
|
20823
20856
|
# Constraints:
|
20824
20857
|
#
|
@@ -20900,7 +20933,7 @@ module Aws::RDS
|
|
20900
20933
|
# database engines.
|
20901
20934
|
#
|
20902
20935
|
# For the full list of DB instance classes, and availability for your
|
20903
|
-
# engine, see [DB instance class][1] in the *Amazon RDS User Guide
|
20936
|
+
# engine, see [DB instance class][1] in the *Amazon RDS User Guide*.
|
20904
20937
|
#
|
20905
20938
|
# Valid for: Multi-AZ DB clusters only
|
20906
20939
|
#
|
@@ -22322,40 +22355,42 @@ module Aws::RDS
|
|
22322
22355
|
# @return [String]
|
22323
22356
|
#
|
22324
22357
|
# @!attribute [rw] target_db_instance_identifier
|
22325
|
-
# The name of the new DB instance to
|
22358
|
+
# The name of the new DB instance to create.
|
22326
22359
|
#
|
22327
22360
|
# Constraints:
|
22328
22361
|
#
|
22329
|
-
# * Must contain from 1 to 63 letters, numbers, or hyphens
|
22362
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens.
|
22330
22363
|
#
|
22331
|
-
# * First character must be a letter
|
22364
|
+
# * First character must be a letter.
|
22332
22365
|
#
|
22333
|
-
# * Can't end with a hyphen or contain two consecutive hyphens
|
22366
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
22334
22367
|
# @return [String]
|
22335
22368
|
#
|
22336
22369
|
# @!attribute [rw] restore_time
|
22337
22370
|
# The date and time to restore from.
|
22338
22371
|
#
|
22339
|
-
# Valid Values: Value must be a time in Universal Coordinated Time
|
22340
|
-
# (UTC) format
|
22341
|
-
#
|
22342
22372
|
# Constraints:
|
22343
22373
|
#
|
22344
|
-
# * Must be
|
22374
|
+
# * Must be a time in Universal Coordinated Time (UTC) format.
|
22375
|
+
#
|
22376
|
+
# * Must be before the latest restorable time for the DB instance.
|
22345
22377
|
#
|
22346
22378
|
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
22347
|
-
# enabled
|
22379
|
+
# enabled.
|
22348
22380
|
#
|
22349
22381
|
# Example: `2009-09-07T23:45:00Z`
|
22350
22382
|
# @return [Time]
|
22351
22383
|
#
|
22352
22384
|
# @!attribute [rw] use_latest_restorable_time
|
22353
|
-
#
|
22354
|
-
#
|
22355
|
-
#
|
22385
|
+
# Specifies whether the DB instance is restored from the latest backup
|
22386
|
+
# time. By default, the DB instance isn't restored from the latest
|
22387
|
+
# backup time.
|
22356
22388
|
#
|
22357
|
-
# Constraints:
|
22358
|
-
#
|
22389
|
+
# Constraints:
|
22390
|
+
#
|
22391
|
+
# * Can't be specified if the `RestoreTime` parameter is provided.
|
22392
|
+
#
|
22393
|
+
# ^
|
22359
22394
|
# @return [Boolean]
|
22360
22395
|
#
|
22361
22396
|
# @!attribute [rw] db_instance_class
|
@@ -22365,7 +22400,7 @@ module Aws::RDS
|
|
22365
22400
|
# the full list of DB instance classes, and availability for your
|
22366
22401
|
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide*.
|
22367
22402
|
#
|
22368
|
-
# Default: The same
|
22403
|
+
# Default: The same DB instance class as the original DB instance.
|
22369
22404
|
#
|
22370
22405
|
#
|
22371
22406
|
#
|
@@ -22375,9 +22410,13 @@ module Aws::RDS
|
|
22375
22410
|
# @!attribute [rw] port
|
22376
22411
|
# The port number on which the database accepts connections.
|
22377
22412
|
#
|
22378
|
-
# Constraints: Value must be `1150-65535`
|
22379
|
-
#
|
22380
22413
|
# Default: The same port as the original DB instance.
|
22414
|
+
#
|
22415
|
+
# Constraints:
|
22416
|
+
#
|
22417
|
+
# * The value must be `1150-65535`.
|
22418
|
+
#
|
22419
|
+
# ^
|
22381
22420
|
# @return [Integer]
|
22382
22421
|
#
|
22383
22422
|
# @!attribute [rw] availability_zone
|
@@ -22385,8 +22424,12 @@ module Aws::RDS
|
|
22385
22424
|
#
|
22386
22425
|
# Default: A random, system-chosen Availability Zone.
|
22387
22426
|
#
|
22388
|
-
#
|
22389
|
-
#
|
22427
|
+
# Constraints:
|
22428
|
+
#
|
22429
|
+
# * You can't specify the `AvailabilityZone` parameter if the DB
|
22430
|
+
# instance is a Multi-AZ deployment.
|
22431
|
+
#
|
22432
|
+
# ^
|
22390
22433
|
#
|
22391
22434
|
# Example: `us-east-1a`
|
22392
22435
|
# @return [String]
|
@@ -22394,25 +22437,30 @@ module Aws::RDS
|
|
22394
22437
|
# @!attribute [rw] db_subnet_group_name
|
22395
22438
|
# The DB subnet group name to use for the new instance.
|
22396
22439
|
#
|
22397
|
-
# Constraints:
|
22398
|
-
#
|
22440
|
+
# Constraints:
|
22441
|
+
#
|
22442
|
+
# * If supplied, must match the name of an existing DB subnet group.
|
22443
|
+
#
|
22444
|
+
# ^
|
22399
22445
|
#
|
22400
22446
|
# Example: `mydbsubnetgroup`
|
22401
22447
|
# @return [String]
|
22402
22448
|
#
|
22403
22449
|
# @!attribute [rw] multi_az
|
22404
|
-
#
|
22405
|
-
# deployment.
|
22450
|
+
# Secifies whether the DB instance is a Multi-AZ deployment.
|
22406
22451
|
#
|
22407
22452
|
# This setting doesn't apply to RDS Custom.
|
22408
22453
|
#
|
22409
|
-
#
|
22410
|
-
#
|
22454
|
+
# Constraints:
|
22455
|
+
#
|
22456
|
+
# * You can't specify the `AvailabilityZone` parameter if the DB
|
22457
|
+
# instance is a Multi-AZ deployment.
|
22458
|
+
#
|
22459
|
+
# ^
|
22411
22460
|
# @return [Boolean]
|
22412
22461
|
#
|
22413
22462
|
# @!attribute [rw] publicly_accessible
|
22414
|
-
#
|
22415
|
-
# accessible.
|
22463
|
+
# Specifies whether the DB instance is publicly accessible.
|
22416
22464
|
#
|
22417
22465
|
# When the DB cluster is publicly accessible, its Domain Name System
|
22418
22466
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -22429,21 +22477,21 @@ module Aws::RDS
|
|
22429
22477
|
# @return [Boolean]
|
22430
22478
|
#
|
22431
22479
|
# @!attribute [rw] auto_minor_version_upgrade
|
22432
|
-
#
|
22433
|
-
#
|
22480
|
+
# Specifies whether minor version upgrades are applied automatically
|
22481
|
+
# to the DB instance during the maintenance window.
|
22434
22482
|
#
|
22435
22483
|
# This setting doesn't apply to RDS Custom.
|
22436
22484
|
# @return [Boolean]
|
22437
22485
|
#
|
22438
22486
|
# @!attribute [rw] license_model
|
22439
|
-
#
|
22487
|
+
# The license model information for the restored DB instance.
|
22440
22488
|
#
|
22441
22489
|
# This setting doesn't apply to RDS Custom.
|
22442
22490
|
#
|
22443
|
-
#
|
22444
|
-
#
|
22445
|
-
# Valid values: `license-included` \| `bring-your-own-license` \|
|
22491
|
+
# Valid Values: `license-included` \| `bring-your-own-license` \|
|
22446
22492
|
# `general-public-license`
|
22493
|
+
#
|
22494
|
+
# Default: Same as the source.
|
22447
22495
|
# @return [String]
|
22448
22496
|
#
|
22449
22497
|
# @!attribute [rw] db_name
|
@@ -22460,10 +22508,6 @@ module Aws::RDS
|
|
22460
22508
|
#
|
22461
22509
|
# This setting doesn't apply to RDS Custom.
|
22462
22510
|
#
|
22463
|
-
# Default: The same as source
|
22464
|
-
#
|
22465
|
-
# Constraint: Must be compatible with the engine of the source
|
22466
|
-
#
|
22467
22511
|
# Valid Values:
|
22468
22512
|
#
|
22469
22513
|
# * `mariadb`
|
@@ -22487,23 +22531,31 @@ module Aws::RDS
|
|
22487
22531
|
# * `sqlserver-ex`
|
22488
22532
|
#
|
22489
22533
|
# * `sqlserver-web`
|
22534
|
+
#
|
22535
|
+
# Default: The same as source
|
22536
|
+
#
|
22537
|
+
# Constraints:
|
22538
|
+
#
|
22539
|
+
# * Must be compatible with the engine of the source.
|
22540
|
+
#
|
22541
|
+
# ^
|
22490
22542
|
# @return [String]
|
22491
22543
|
#
|
22492
22544
|
# @!attribute [rw] iops
|
22493
22545
|
# The amount of Provisioned IOPS (input/output operations per second)
|
22494
|
-
# to
|
22546
|
+
# to initially allocate for the DB instance.
|
22495
22547
|
#
|
22496
|
-
#
|
22548
|
+
# This setting doesn't apply to SQL Server.
|
22497
22549
|
#
|
22498
|
-
#
|
22550
|
+
# Constraints:
|
22551
|
+
#
|
22552
|
+
# * Must be an integer greater than 1000.
|
22499
22553
|
#
|
22500
|
-
#
|
22501
|
-
# supported.
|
22554
|
+
# ^
|
22502
22555
|
# @return [Integer]
|
22503
22556
|
#
|
22504
22557
|
# @!attribute [rw] option_group_name
|
22505
|
-
# The name of the option group to
|
22506
|
-
# instance.
|
22558
|
+
# The name of the option group to use for the restored DB instance.
|
22507
22559
|
#
|
22508
22560
|
# Permanent options, such as the TDE option for Oracle Advanced
|
22509
22561
|
# Security TDE, can't be removed from an option group, and that
|
@@ -22514,9 +22566,8 @@ module Aws::RDS
|
|
22514
22566
|
# @return [String]
|
22515
22567
|
#
|
22516
22568
|
# @!attribute [rw] copy_tags_to_snapshot
|
22517
|
-
#
|
22518
|
-
#
|
22519
|
-
# copied.
|
22569
|
+
# Specifies whether to copy all tags from the restored DB instance to
|
22570
|
+
# snapshots of the DB instance. By default, tags are not copied.
|
22520
22571
|
# @return [Boolean]
|
22521
22572
|
#
|
22522
22573
|
# @!attribute [rw] tags
|
@@ -22529,14 +22580,19 @@ module Aws::RDS
|
|
22529
22580
|
# @return [Array<Types::Tag>]
|
22530
22581
|
#
|
22531
22582
|
# @!attribute [rw] storage_type
|
22532
|
-
#
|
22583
|
+
# The storage type to associate with the DB instance.
|
22533
22584
|
#
|
22534
|
-
# Valid
|
22585
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
22535
22586
|
#
|
22536
|
-
#
|
22537
|
-
# `
|
22587
|
+
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
22588
|
+
# `gp2`.
|
22538
22589
|
#
|
22539
|
-
#
|
22590
|
+
# Constraints:
|
22591
|
+
#
|
22592
|
+
# * If you specify `io1` or `gp3`, you must also include a value for
|
22593
|
+
# the `Iops` parameter.
|
22594
|
+
#
|
22595
|
+
# ^
|
22540
22596
|
# @return [String]
|
22541
22597
|
#
|
22542
22598
|
# @!attribute [rw] tde_credential_arn
|
@@ -22562,10 +22618,10 @@ module Aws::RDS
|
|
22562
22618
|
# @return [Array<String>]
|
22563
22619
|
#
|
22564
22620
|
# @!attribute [rw] domain
|
22565
|
-
#
|
22566
|
-
#
|
22567
|
-
#
|
22568
|
-
#
|
22621
|
+
# The Active Directory directory ID to restore the DB instance in.
|
22622
|
+
# Create the domain before running this command. Currently, you can
|
22623
|
+
# create only the MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
|
22624
|
+
# DB instances in an Active Directory Domain.
|
22569
22625
|
#
|
22570
22626
|
# This setting doesn't apply to RDS Custom.
|
22571
22627
|
#
|
@@ -22641,9 +22697,9 @@ module Aws::RDS
|
|
22641
22697
|
# @return [Array<String>]
|
22642
22698
|
#
|
22643
22699
|
# @!attribute [rw] enable_iam_database_authentication
|
22644
|
-
#
|
22645
|
-
#
|
22646
|
-
#
|
22700
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
22701
|
+
# and Access Management (IAM) accounts to database accounts. By
|
22702
|
+
# default, mapping isn't enabled.
|
22647
22703
|
#
|
22648
22704
|
# This setting doesn't apply to RDS Custom.
|
22649
22705
|
#
|
@@ -22694,7 +22750,8 @@ module Aws::RDS
|
|
22694
22750
|
#
|
22695
22751
|
# Constraints:
|
22696
22752
|
#
|
22697
|
-
# * If supplied, must match the name of an existing
|
22753
|
+
# * If supplied, must match the name of an existing DB parameter
|
22754
|
+
# group.
|
22698
22755
|
#
|
22699
22756
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
22700
22757
|
#
|
@@ -22704,10 +22761,10 @@ module Aws::RDS
|
|
22704
22761
|
# @return [String]
|
22705
22762
|
#
|
22706
22763
|
# @!attribute [rw] deletion_protection
|
22707
|
-
#
|
22708
|
-
#
|
22709
|
-
#
|
22710
|
-
#
|
22764
|
+
# Specifies whether the DB instance has deletion protection enabled.
|
22765
|
+
# The database can't be deleted when deletion protection is enabled.
|
22766
|
+
# By default, deletion protection isn't enabled. For more
|
22767
|
+
# information, see [ Deleting a DB Instance][1].
|
22711
22768
|
#
|
22712
22769
|
#
|
22713
22770
|
#
|
@@ -22736,14 +22793,14 @@ module Aws::RDS
|
|
22736
22793
|
# @!attribute [rw] source_db_instance_automated_backups_arn
|
22737
22794
|
# The Amazon Resource Name (ARN) of the replicated automated backups
|
22738
22795
|
# from which to restore, for example,
|
22739
|
-
# `arn:aws:rds:
|
22796
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
22740
22797
|
#
|
22741
22798
|
# This setting doesn't apply to RDS Custom.
|
22742
22799
|
# @return [String]
|
22743
22800
|
#
|
22744
22801
|
# @!attribute [rw] enable_customer_owned_ip
|
22745
|
-
#
|
22746
|
-
#
|
22802
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
22803
|
+
# an RDS on Outposts DB instance.
|
22747
22804
|
#
|
22748
22805
|
# A *CoIP* provides local or external connectivity to resources in
|
22749
22806
|
# your Outpost subnets through your on-premises network. For some use
|
@@ -22807,12 +22864,6 @@ module Aws::RDS
|
|
22807
22864
|
# @!attribute [rw] network_type
|
22808
22865
|
# The network type of the DB instance.
|
22809
22866
|
#
|
22810
|
-
# Valid values:
|
22811
|
-
#
|
22812
|
-
# * `IPV4`
|
22813
|
-
#
|
22814
|
-
# * `DUAL`
|
22815
|
-
#
|
22816
22867
|
# The network type is determined by the `DBSubnetGroup` specified for
|
22817
22868
|
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
22818
22869
|
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
@@ -22820,13 +22871,19 @@ module Aws::RDS
|
|
22820
22871
|
# For more information, see [ Working with a DB instance in a VPC][1]
|
22821
22872
|
# in the *Amazon RDS User Guide.*
|
22822
22873
|
#
|
22874
|
+
# Valid Values:
|
22875
|
+
#
|
22876
|
+
# * `IPV4`
|
22877
|
+
#
|
22878
|
+
# * `DUAL`
|
22879
|
+
#
|
22823
22880
|
#
|
22824
22881
|
#
|
22825
22882
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
22826
22883
|
# @return [String]
|
22827
22884
|
#
|
22828
22885
|
# @!attribute [rw] storage_throughput
|
22829
|
-
#
|
22886
|
+
# The storage throughput value for the DB instance.
|
22830
22887
|
#
|
22831
22888
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
22832
22889
|
# @return [Integer]
|
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.195.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: 2023-
|
11
|
+
date: 2023-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '3'
|
34
34
|
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 3.
|
36
|
+
version: 3.184.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3'
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 3.
|
46
|
+
version: 3.184.0
|
47
47
|
description: Official AWS Ruby gem for Amazon Relational Database Service (Amazon
|
48
48
|
RDS). This gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|