aws-sdk-rds 1.184.0 → 1.186.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53962220e71684b99302d4c6cacc4f22684b10c5ccdd82b7c23044cfdfaa1743
4
- data.tar.gz: 14b446547fd58b16e3a455bb31f8ba26bfcf2c24578b9e49cccf5cbce241b10f
3
+ metadata.gz: efd9d17718aa719882310f48c5d7da23605d2ceae9e83f8318a09a13f38c6ae4
4
+ data.tar.gz: 184eee7de899410e55afb514ae8a45505bb5b0a9f52e24867cf601a0b95caa40
5
5
  SHA512:
6
- metadata.gz: e51ef3da75db6a57fa85f205e38416b42931d2b515bf480d57a11d5cd17eac22e9abe8d649cfb42c7b0fc466645db612c3e113fa6cfcde5200fad84bce1764e3
7
- data.tar.gz: a7157c85f6184ad956b5303d7a4b7bca7a4e32aca9e8cbfcca5dc26bb7bf6bd6be1a32554938b76c6789606e826e416b7782949a2e91238ea4259f5ada6e950f
6
+ metadata.gz: 524a549a2247761cf0e5f5107044f077e81b3875ff50e848e0d194d1d873e98e60a1c08b27ee34927861cd5a0022e011a66cdda5201e719787344c844badd013
7
+ data.tar.gz: ee219654f6a5580626b899a84ff68fc4f5906e6e15f05c0e7ceddf41249db26ff463540d9f4d0ba156b68cfa6998390813be8cd0c9f026732efa2aca6cd23dba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.186.0 (2023-07-21)
5
+ ------------------
6
+
7
+ * Feature - Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle.
8
+
9
+ 1.185.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.184.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.184.0
1
+ 1.186.0
@@ -218,6 +218,10 @@ module Aws::RDS
218
218
  # @option options [Boolean] :endpoint_discovery (false)
219
219
  # When set to `true`, endpoint discovery will be enabled for operations when available.
220
220
  #
221
+ # @option options [Boolean] :ignore_configured_endpoint_urls
222
+ # Setting to true disables use of endpoint URLs provided via environment
223
+ # variables and the shared configuration file.
224
+ #
221
225
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
222
226
  # The log formatter.
223
227
  #
@@ -1816,6 +1820,7 @@ module Aws::RDS
1816
1820
  # resp.db_snapshot.snapshot_database_time #=> Time
1817
1821
  # resp.db_snapshot.snapshot_target #=> String
1818
1822
  # resp.db_snapshot.storage_throughput #=> Integer
1823
+ # resp.db_snapshot.db_system_id #=> String
1819
1824
  #
1820
1825
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
1821
1826
  #
@@ -4004,116 +4009,120 @@ module Aws::RDS
4004
4009
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.CreateInstance.html
4005
4010
  #
4006
4011
  # @option params [String] :db_name
4007
- # The meaning of this parameter differs depending on the database
4008
- # engine.
4009
- #
4010
- # Amazon Aurora MySQL
4012
+ # The meaning of this parameter differs according to the database engine
4013
+ # you use.
4011
4014
  #
4012
- # : The name of the database to create when the primary DB instance of
4013
- # the Aurora MySQL DB cluster is created. If you don't specify a
4014
- # value, Amazon RDS doesn't create a database in the DB cluster.
4015
+ # **MySQL**
4015
4016
  #
4016
- # Constraints:
4017
+ # The name of the database to create when the DB instance is created. If
4018
+ # this parameter isn't specified, no database is created in the DB
4019
+ # instance.
4017
4020
  #
4018
- # * Must contain 1 to 64 alphanumeric characters.
4021
+ # Constraints:
4019
4022
  #
4020
- # * Can't be a word reserved by the database engine.
4023
+ # * Must contain 1 to 64 letters or numbers.
4021
4024
  #
4022
- # Amazon Aurora PostgreSQL
4025
+ # * Must begin with a letter. Subsequent characters can be letters,
4026
+ # underscores, or digits (0-9).
4023
4027
  #
4024
- # : The name of the database to create when the primary DB instance of
4025
- # the Aurora PostgreSQL DB cluster is created.
4028
+ # * Can't be a word reserved by the specified database engine
4026
4029
  #
4027
- # Default: `postgres`
4030
+ # **MariaDB**
4028
4031
  #
4029
- # Constraints:
4032
+ # The name of the database to create when the DB instance is created. If
4033
+ # this parameter isn't specified, no database is created in the DB
4034
+ # instance.
4030
4035
  #
4031
- # * Must contain 1 to 63 alphanumeric characters.
4036
+ # Constraints:
4032
4037
  #
4033
- # * Must begin with a letter. Subsequent characters can be letters,
4034
- # underscores, or digits (0 to 9).
4038
+ # * Must contain 1 to 64 letters or numbers.
4035
4039
  #
4036
- # * Can't be a word reserved by the database engine.
4040
+ # * Must begin with a letter. Subsequent characters can be letters,
4041
+ # underscores, or digits (0-9).
4037
4042
  #
4038
- # Amazon RDS Custom for Oracle
4043
+ # * Can't be a word reserved by the specified database engine
4039
4044
  #
4040
- # : The Oracle System ID (SID) of the created RDS Custom DB instance.
4045
+ # **PostgreSQL**
4041
4046
  #
4042
- # Default: `ORCL`
4047
+ # The name of the database to create when the DB instance is created. If
4048
+ # this parameter isn't specified, a database named `postgres` is
4049
+ # created in the DB instance.
4043
4050
  #
4044
- # Constraints:
4051
+ # Constraints:
4045
4052
  #
4046
- # * Must contain 1 to 8 alphanumeric characters.
4053
+ # * Must contain 1 to 63 letters, numbers, or underscores.
4047
4054
  #
4048
- # * Must contain a letter.
4055
+ # * Must begin with a letter. Subsequent characters can be letters,
4056
+ # underscores, or digits (0-9).
4049
4057
  #
4050
- # * Can't be a word reserved by the database engine.
4058
+ # * Can't be a word reserved by the specified database engine
4051
4059
  #
4052
- # Amazon RDS Custom for SQL Server
4053
- #
4054
- # : Not applicable. Must be null.
4060
+ # **Oracle**
4055
4061
  #
4056
- # RDS for MariaDB
4062
+ # The Oracle System ID (SID) of the created DB instance. If you don't
4063
+ # specify a value, the default value is `ORCL`. You can't specify the
4064
+ # string `null`, or any other reserved word, for `DBName`.
4057
4065
  #
4058
- # : The name of the database to create when the DB instance is created.
4059
- # If you don't specify a value, Amazon RDS doesn't create a database
4060
- # in the DB instance.
4066
+ # Default: `ORCL`
4061
4067
  #
4062
- # Constraints:
4068
+ # Constraints:
4063
4069
  #
4064
- # * Must contain 1 to 64 letters or numbers.
4070
+ # * Can't be longer than 8 characters
4065
4071
  #
4066
- # * Must begin with a letter. Subsequent characters can be letters,
4067
- # underscores, or digits (0-9).
4072
+ # ^
4068
4073
  #
4069
- # * Can't be a word reserved by the database engine.
4074
+ # **Amazon RDS Custom for Oracle**
4070
4075
  #
4071
- # RDS for MySQL
4076
+ # The Oracle System ID (SID) of the created RDS Custom DB instance. If
4077
+ # you don't specify a value, the default value is `ORCL` for non-CDBs
4078
+ # and `RDSCDB` for CDBs.
4072
4079
  #
4073
- # : The name of the database to create when the DB instance is created.
4074
- # If you don't specify a value, Amazon RDS doesn't create a database
4075
- # in the DB instance.
4080
+ # Default: `ORCL`
4076
4081
  #
4077
- # Constraints:
4082
+ # Constraints:
4078
4083
  #
4079
- # * Must contain 1 to 64 letters or numbers.
4084
+ # * It must contain 1 to 8 alphanumeric characters.
4080
4085
  #
4081
- # * Must begin with a letter. Subsequent characters can be letters,
4082
- # underscores, or digits (0-9).
4086
+ # * It must contain a letter.
4083
4087
  #
4084
- # * Can't be a word reserved by the database engine.
4088
+ # * It can't be a word reserved by the database engine.
4085
4089
  #
4086
- # RDS for Oracle
4090
+ # **Amazon RDS Custom for SQL Server**
4087
4091
  #
4088
- # : The Oracle System ID (SID) of the created DB instance.
4092
+ # Not applicable. Must be null.
4089
4093
  #
4090
- # Default: `ORCL`
4094
+ # **SQL Server**
4091
4095
  #
4092
- # Constraints:
4096
+ # Not applicable. Must be null.
4093
4097
  #
4094
- # * Can't be longer than 8 characters.
4098
+ # **Amazon Aurora MySQL**
4095
4099
  #
4096
- # * Can't be a word reserved by the database engine, such as the
4097
- # string `NULL`.
4100
+ # The name of the database to create when the primary DB instance of the
4101
+ # Aurora MySQL DB cluster is created. If this parameter isn't specified
4102
+ # for an Aurora MySQL DB cluster, no database is created in the DB
4103
+ # cluster.
4098
4104
  #
4099
- # RDS for PostgreSQL
4105
+ # Constraints:
4100
4106
  #
4101
- # : The name of the database to create when the DB instance is created.
4107
+ # * It must contain 1 to 64 alphanumeric characters.
4102
4108
  #
4103
- # Default: `postgres`
4109
+ # * It can't be a word reserved by the database engine.
4104
4110
  #
4105
- # Constraints:
4111
+ # **Amazon Aurora PostgreSQL**
4106
4112
  #
4107
- # * Must contain 1 to 63 letters, numbers, or underscores.
4113
+ # The name of the database to create when the primary DB instance of the
4114
+ # Aurora PostgreSQL DB cluster is created. If this parameter isn't
4115
+ # specified for an Aurora PostgreSQL DB cluster, a database named
4116
+ # `postgres` is created in the DB cluster.
4108
4117
  #
4109
- # * Must begin with a letter. Subsequent characters can be letters,
4110
- # underscores, or digits (0-9).
4118
+ # Constraints:
4111
4119
  #
4112
- # * Can't be a word reserved by the database engine.
4120
+ # * It must contain 1 to 63 alphanumeric characters.
4113
4121
  #
4114
- # RDS for SQL Server
4122
+ # * It must begin with a letter. Subsequent characters can be letters,
4123
+ # underscores, or digits (0 to 9).
4115
4124
  #
4116
- # : Not applicable. Must be null.
4125
+ # * It can't be a word reserved by the database engine.
4117
4126
  #
4118
4127
  # @option params [required, String] :db_instance_identifier
4119
4128
  # The identifier for this DB instance. This parameter is stored as a
@@ -5160,6 +5169,14 @@ module Aws::RDS
5160
5169
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
5161
5170
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
5162
5171
  #
5172
+ # @option params [String] :db_system_id
5173
+ # The Oracle system identifier (SID), which is the name of the Oracle
5174
+ # database instance that manages your database files. In this context,
5175
+ # the term "Oracle database instance" refers exclusively to the system
5176
+ # global area (SGA) and Oracle background processes. If you don't
5177
+ # specify a SID, the value defaults to `RDSCDB`. The Oracle SID is also
5178
+ # the name of your CDB.
5179
+ #
5163
5180
  # @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5164
5181
  #
5165
5182
  # * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
@@ -5346,6 +5363,7 @@ module Aws::RDS
5346
5363
  # manage_master_user_password: false,
5347
5364
  # master_user_secret_kms_key_id: "String",
5348
5365
  # ca_certificate_identifier: "String",
5366
+ # db_system_id: "String",
5349
5367
  # })
5350
5368
  #
5351
5369
  # @example Response structure
@@ -7013,6 +7031,7 @@ module Aws::RDS
7013
7031
  # resp.db_snapshot.snapshot_database_time #=> Time
7014
7032
  # resp.db_snapshot.snapshot_target #=> String
7015
7033
  # resp.db_snapshot.storage_throughput #=> Integer
7034
+ # resp.db_snapshot.db_system_id #=> String
7016
7035
  #
7017
7036
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
7018
7037
  #
@@ -7642,7 +7661,7 @@ module Aws::RDS
7642
7661
  # Deletes a blue/green deployment.
7643
7662
  #
7644
7663
  # For more information, see [Using Amazon RDS Blue/Green Deployments for
7645
- # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
7664
+ # database updates][1] in the *Amazon RDS User Guide* and [Using Amazon
7646
7665
  # RDS Blue/Green Deployments for database updates][2] in the *Amazon
7647
7666
  # Aurora User Guide*.
7648
7667
  #
@@ -7652,8 +7671,8 @@ module Aws::RDS
7652
7671
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
7653
7672
  #
7654
7673
  # @option params [required, String] :blue_green_deployment_identifier
7655
- # The blue/green deployment identifier of the deployment to be deleted.
7656
- # This parameter isn't case-sensitive.
7674
+ # The unique identifier of the blue/green deployment to delete. This
7675
+ # parameter isn't case-sensitive.
7657
7676
  #
7658
7677
  # Constraints:
7659
7678
  #
@@ -7662,9 +7681,9 @@ module Aws::RDS
7662
7681
  # ^
7663
7682
  #
7664
7683
  # @option params [Boolean] :delete_target
7665
- # A value that indicates whether to delete the resources in the green
7666
- # environment. You can't specify this option if the blue/green
7667
- # deployment [status][1] is `SWITCHOVER_COMPLETED`.
7684
+ # Specifies whether to delete the resources in the green environment.
7685
+ # You can't specify this option if the blue/green deployment
7686
+ # [status][1] is `SWITCHOVER_COMPLETED`.
7668
7687
  #
7669
7688
  #
7670
7689
  #
@@ -9159,6 +9178,7 @@ module Aws::RDS
9159
9178
  # resp.db_snapshot.snapshot_database_time #=> Time
9160
9179
  # resp.db_snapshot.snapshot_target #=> String
9161
9180
  # resp.db_snapshot.storage_throughput #=> Integer
9181
+ # resp.db_snapshot.db_system_id #=> String
9162
9182
  #
9163
9183
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
9164
9184
  #
@@ -9546,7 +9566,7 @@ module Aws::RDS
9546
9566
  req.send_request(options)
9547
9567
  end
9548
9568
 
9549
- # Returns information about blue/green deployments.
9569
+ # Describes one or more blue/green deployments.
9550
9570
  #
9551
9571
  # For more information, see [Using Amazon RDS Blue/Green Deployments for
9552
9572
  # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
@@ -9559,14 +9579,13 @@ module Aws::RDS
9559
9579
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
9560
9580
  #
9561
9581
  # @option params [String] :blue_green_deployment_identifier
9562
- # The blue/green deployment identifier. If this parameter is specified,
9563
- # information from only the specific blue/green deployment is returned.
9564
- # This parameter isn't case-sensitive.
9582
+ # The blue/green deployment identifier. If you specify this parameter,
9583
+ # the response only includes information about the specific blue/green
9584
+ # deployment. This parameter isn't case-sensitive.
9565
9585
  #
9566
9586
  # Constraints:
9567
9587
  #
9568
- # * If supplied, must match an existing blue/green deployment
9569
- # identifier.
9588
+ # * Must match an existing blue/green deployment identifier.
9570
9589
  #
9571
9590
  # ^
9572
9591
  #
@@ -9574,7 +9593,7 @@ module Aws::RDS
9574
9593
  # A filter that specifies one or more blue/green deployments to
9575
9594
  # describe.
9576
9595
  #
9577
- # Supported filters:
9596
+ # Valid Values:
9578
9597
  #
9579
9598
  # * `blue-green-deployment-identifier` - Accepts system-generated
9580
9599
  # identifiers for blue/green deployments. The results list only
@@ -9595,9 +9614,9 @@ module Aws::RDS
9595
9614
  #
9596
9615
  # @option params [String] :marker
9597
9616
  # An optional pagination token provided by a previous
9598
- # `DescribeBlueGreenDeployments` request. If this parameter is
9599
- # specified, the response includes only records beyond the marker, up to
9600
- # the value specified by `MaxRecords`.
9617
+ # `DescribeBlueGreenDeployments` request. If you specify this parameter,
9618
+ # the response only includes records beyond the marker, up to the value
9619
+ # specified by `MaxRecords`.
9601
9620
  #
9602
9621
  # @option params [Integer] :max_records
9603
9622
  # The maximum number of records to include in the response. If more
@@ -9607,7 +9626,11 @@ module Aws::RDS
9607
9626
  #
9608
9627
  # Default: 100
9609
9628
  #
9610
- # Constraints: Minimum 20, maximum 100.
9629
+ # Constraints:
9630
+ #
9631
+ # * Must be a minimum of 20.
9632
+ #
9633
+ # * Can't exceed 100.
9611
9634
  #
9612
9635
  # @return [Types::DescribeBlueGreenDeploymentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9613
9636
  #
@@ -13023,6 +13046,7 @@ module Aws::RDS
13023
13046
  # resp.db_snapshots[0].snapshot_database_time #=> Time
13024
13047
  # resp.db_snapshots[0].snapshot_target #=> String
13025
13048
  # resp.db_snapshots[0].storage_throughput #=> Integer
13049
+ # resp.db_snapshots[0].db_system_id #=> String
13026
13050
  #
13027
13051
  #
13028
13052
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -19422,6 +19446,7 @@ module Aws::RDS
19422
19446
  # resp.db_snapshot.snapshot_database_time #=> Time
19423
19447
  # resp.db_snapshot.snapshot_target #=> String
19424
19448
  # resp.db_snapshot.storage_throughput #=> Integer
19449
+ # resp.db_snapshot.db_system_id #=> String
19425
19450
  #
19426
19451
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
19427
19452
  #
@@ -27437,7 +27462,7 @@ module Aws::RDS
27437
27462
  # routed to the databases in the green environment.
27438
27463
  #
27439
27464
  # For more information, see [Using Amazon RDS Blue/Green Deployments for
27440
- # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
27465
+ # database updates][1] in the *Amazon RDS User Guide* and [Using Amazon
27441
27466
  # RDS Blue/Green Deployments for database updates][2] in the *Amazon
27442
27467
  # Aurora User Guide*.
27443
27468
  #
@@ -27447,7 +27472,7 @@ module Aws::RDS
27447
27472
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
27448
27473
  #
27449
27474
  # @option params [required, String] :blue_green_deployment_identifier
27450
- # The blue/green deployment identifier.
27475
+ # The unique identifier of the blue/green deployment.
27451
27476
  #
27452
27477
  # Constraints:
27453
27478
  #
@@ -27456,8 +27481,9 @@ module Aws::RDS
27456
27481
  # ^
27457
27482
  #
27458
27483
  # @option params [Integer] :switchover_timeout
27459
- # The amount of time, in seconds, for the switchover to complete. The
27460
- # default is 300.
27484
+ # The amount of time, in seconds, for the switchover to complete.
27485
+ #
27486
+ # Default: 300
27461
27487
  #
27462
27488
  # If the switchover takes longer than the specified duration, then any
27463
27489
  # changes are rolled back, and no changes are made to the environments.
@@ -27840,7 +27866,7 @@ module Aws::RDS
27840
27866
  params: params,
27841
27867
  config: config)
27842
27868
  context[:gem_name] = 'aws-sdk-rds'
27843
- context[:gem_version] = '1.184.0'
27869
+ context[:gem_version] = '1.186.0'
27844
27870
  Seahorse::Client::Request.new(handlers, context)
27845
27871
  end
27846
27872
 
@@ -1032,6 +1032,7 @@ module Aws::RDS
1032
1032
  CreateDBInstanceMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
1033
1033
  CreateDBInstanceMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
1034
1034
  CreateDBInstanceMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
1035
+ CreateDBInstanceMessage.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
1035
1036
  CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
1036
1037
 
1037
1038
  CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
@@ -1785,6 +1786,7 @@ module Aws::RDS
1785
1786
  DBSnapshot.add_member(:snapshot_database_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "SnapshotDatabaseTime"))
1786
1787
  DBSnapshot.add_member(:snapshot_target, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotTarget"))
1787
1788
  DBSnapshot.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
1789
+ DBSnapshot.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
1788
1790
  DBSnapshot.struct_class = Types::DBSnapshot
1789
1791
 
1790
1792
  DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault