aws-sdk-rds 1.185.0 → 1.186.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -528,10 +528,10 @@ module Aws::RDS
528
528
  #
529
529
  class BackupPolicyNotFoundFault < Aws::EmptyStructure; end
530
530
 
531
- # Contains the details about a blue/green deployment.
531
+ # Details about a blue/green deployment.
532
532
  #
533
533
  # For more information, see [Using Amazon RDS Blue/Green Deployments for
534
- # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
534
+ # database updates][1] in the *Amazon RDS User Guide* and [Using Amazon
535
535
  # RDS Blue/Green Deployments for database updates][2] in the *Amazon
536
536
  # Aurora User Guide*.
537
537
  #
@@ -541,7 +541,7 @@ module Aws::RDS
541
541
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html
542
542
  #
543
543
  # @!attribute [rw] blue_green_deployment_identifier
544
- # The system-generated identifier of the blue/green deployment.
544
+ # The unique identifier of the blue/green deployment.
545
545
  # @return [String]
546
546
  #
547
547
  # @!attribute [rw] blue_green_deployment_name
@@ -575,7 +575,7 @@ module Aws::RDS
575
575
  # @!attribute [rw] status
576
576
  # The status of the blue/green deployment.
577
577
  #
578
- # Values:
578
+ # Valid Values:
579
579
  #
580
580
  # * `PROVISIONING` - Resources are being created in the green
581
581
  # environment.
@@ -602,13 +602,13 @@ module Aws::RDS
602
602
  # @return [String]
603
603
  #
604
604
  # @!attribute [rw] create_time
605
- # Specifies the time when the blue/green deployment was created, in
606
- # Universal Coordinated Time (UTC).
605
+ # The time when the blue/green deployment was created, in Universal
606
+ # Coordinated Time (UTC).
607
607
  # @return [Time]
608
608
  #
609
609
  # @!attribute [rw] delete_time
610
- # Specifies the time when the blue/green deployment was deleted, in
611
- # Universal Coordinated Time (UTC).
610
+ # The time when the blue/green deployment was deleted, in Universal
611
+ # Coordinated Time (UTC).
612
612
  # @return [Time]
613
613
  #
614
614
  # @!attribute [rw] tag_list
@@ -651,10 +651,10 @@ module Aws::RDS
651
651
  #
652
652
  class BlueGreenDeploymentNotFoundFault < Aws::EmptyStructure; end
653
653
 
654
- # Contains the details about a task for a blue/green deployment.
654
+ # Details about a task for a blue/green deployment.
655
655
  #
656
656
  # For more information, see [Using Amazon RDS Blue/Green Deployments for
657
- # database updates][1] in the *Amazon RDS User Guide* and [ Using Amazon
657
+ # database updates][1] in the *Amazon RDS User Guide* and [Using Amazon
658
658
  # RDS Blue/Green Deployments for database updates][2] in the *Amazon
659
659
  # Aurora User Guide*.
660
660
  #
@@ -670,9 +670,9 @@ module Aws::RDS
670
670
  # @!attribute [rw] status
671
671
  # The status of the blue/green deployment task.
672
672
  #
673
- # Values:
673
+ # Valid Values:
674
674
  #
675
- # * `PENDING` - The resources are being prepared for deployment.
675
+ # * `PENDING` - The resource is being prepared for deployment.
676
676
  #
677
677
  # * `IN_PROGRESS` - The resource is being deployed.
678
678
  #
@@ -1751,10 +1751,10 @@ module Aws::RDS
1751
1751
  end
1752
1752
 
1753
1753
  # @!attribute [rw] blue_green_deployment
1754
- # Contains the details about a blue/green deployment.
1754
+ # Details about a blue/green deployment.
1755
1755
  #
1756
1756
  # For more information, see [Using Amazon RDS Blue/Green Deployments
1757
- # for database updates][1] in the *Amazon RDS User Guide* and [ Using
1757
+ # for database updates][1] in the *Amazon RDS User Guide* and [Using
1758
1758
  # Amazon RDS Blue/Green Deployments for database updates][2] in the
1759
1759
  # *Amazon Aurora User Guide*.
1760
1760
  #
@@ -3045,117 +3045,120 @@ module Aws::RDS
3045
3045
  end
3046
3046
 
3047
3047
  # @!attribute [rw] db_name
3048
- # The meaning of this parameter differs depending on the database
3049
- # engine.
3050
- #
3051
- # Amazon Aurora MySQL
3048
+ # The meaning of this parameter differs according to the database
3049
+ # engine you use.
3052
3050
  #
3053
- # : The name of the database to create when the primary DB instance of
3054
- # the Aurora MySQL DB cluster is created. If you don't specify a
3055
- # value, Amazon RDS doesn't create a database in the DB cluster.
3056
- #
3057
- # Constraints:
3051
+ # **MySQL**
3058
3052
  #
3059
- # * Must contain 1 to 64 alphanumeric characters.
3053
+ # The name of the database to create when the DB instance is created.
3054
+ # If this parameter isn't specified, no database is created in the DB
3055
+ # instance.
3060
3056
  #
3061
- # * Can't be a word reserved by the database engine.
3057
+ # Constraints:
3062
3058
  #
3063
- # Amazon Aurora PostgreSQL
3059
+ # * Must contain 1 to 64 letters or numbers.
3064
3060
  #
3065
- # : The name of the database to create when the primary DB instance of
3066
- # the Aurora PostgreSQL DB cluster is created.
3061
+ # * Must begin with a letter. Subsequent characters can be letters,
3062
+ # underscores, or digits (0-9).
3067
3063
  #
3068
- # Default: `postgres`
3064
+ # * Can't be a word reserved by the specified database engine
3069
3065
  #
3070
- # Constraints:
3066
+ # **MariaDB**
3071
3067
  #
3072
- # * Must contain 1 to 63 alphanumeric characters.
3068
+ # The name of the database to create when the DB instance is created.
3069
+ # If this parameter isn't specified, no database is created in the DB
3070
+ # instance.
3073
3071
  #
3074
- # * Must begin with a letter. Subsequent characters can be letters,
3075
- # underscores, or digits (0 to 9).
3072
+ # Constraints:
3076
3073
  #
3077
- # * Can't be a word reserved by the database engine.
3074
+ # * Must contain 1 to 64 letters or numbers.
3078
3075
  #
3079
- # Amazon RDS Custom for Oracle
3076
+ # * Must begin with a letter. Subsequent characters can be letters,
3077
+ # underscores, or digits (0-9).
3080
3078
  #
3081
- # : The Oracle System ID (SID) of the created RDS Custom DB instance.
3079
+ # * Can't be a word reserved by the specified database engine
3082
3080
  #
3083
- # Default: `ORCL`
3081
+ # **PostgreSQL**
3084
3082
  #
3085
- # Constraints:
3083
+ # The name of the database to create when the DB instance is created.
3084
+ # If this parameter isn't specified, a database named `postgres` is
3085
+ # created in the DB instance.
3086
3086
  #
3087
- # * Must contain 1 to 8 alphanumeric characters.
3087
+ # Constraints:
3088
3088
  #
3089
- # * Must contain a letter.
3089
+ # * Must contain 1 to 63 letters, numbers, or underscores.
3090
3090
  #
3091
- # * Can't be a word reserved by the database engine.
3091
+ # * Must begin with a letter. Subsequent characters can be letters,
3092
+ # underscores, or digits (0-9).
3092
3093
  #
3093
- # Amazon RDS Custom for SQL Server
3094
+ # * Can't be a word reserved by the specified database engine
3094
3095
  #
3095
- # : Not applicable. Must be null.
3096
+ # **Oracle**
3096
3097
  #
3097
- # RDS for MariaDB
3098
+ # The Oracle System ID (SID) of the created DB instance. If you don't
3099
+ # specify a value, the default value is `ORCL`. You can't specify the
3100
+ # string `null`, or any other reserved word, for `DBName`.
3098
3101
  #
3099
- # : The name of the database to create when the DB instance is
3100
- # created. If you don't specify a value, Amazon RDS doesn't create
3101
- # a database in the DB instance.
3102
+ # Default: `ORCL`
3102
3103
  #
3103
- # Constraints:
3104
+ # Constraints:
3104
3105
  #
3105
- # * Must contain 1 to 64 letters or numbers.
3106
+ # * Can't be longer than 8 characters
3106
3107
  #
3107
- # * Must begin with a letter. Subsequent characters can be letters,
3108
- # underscores, or digits (0-9).
3108
+ # ^
3109
3109
  #
3110
- # * Can't be a word reserved by the database engine.
3110
+ # **Amazon RDS Custom for Oracle**
3111
3111
  #
3112
- # RDS for MySQL
3112
+ # The Oracle System ID (SID) of the created RDS Custom DB instance. If
3113
+ # you don't specify a value, the default value is `ORCL` for non-CDBs
3114
+ # and `RDSCDB` for CDBs.
3113
3115
  #
3114
- # : The name of the database to create when the DB instance is
3115
- # created. If you don't specify a value, Amazon RDS doesn't create
3116
- # a database in the DB instance.
3116
+ # Default: `ORCL`
3117
3117
  #
3118
- # Constraints:
3118
+ # Constraints:
3119
3119
  #
3120
- # * Must contain 1 to 64 letters or numbers.
3120
+ # * It must contain 1 to 8 alphanumeric characters.
3121
3121
  #
3122
- # * Must begin with a letter. Subsequent characters can be letters,
3123
- # underscores, or digits (0-9).
3122
+ # * It must contain a letter.
3124
3123
  #
3125
- # * Can't be a word reserved by the database engine.
3124
+ # * It can't be a word reserved by the database engine.
3126
3125
  #
3127
- # RDS for Oracle
3126
+ # **Amazon RDS Custom for SQL Server**
3128
3127
  #
3129
- # : The Oracle System ID (SID) of the created DB instance.
3128
+ # Not applicable. Must be null.
3130
3129
  #
3131
- # Default: `ORCL`
3130
+ # **SQL Server**
3132
3131
  #
3133
- # Constraints:
3132
+ # Not applicable. Must be null.
3134
3133
  #
3135
- # * Can't be longer than 8 characters.
3134
+ # **Amazon Aurora MySQL**
3136
3135
  #
3137
- # * Can't be a word reserved by the database engine, such as the
3138
- # string `NULL`.
3136
+ # The name of the database to create when the primary DB instance of
3137
+ # the Aurora MySQL DB cluster is created. If this parameter isn't
3138
+ # specified for an Aurora MySQL DB cluster, no database is created in
3139
+ # the DB cluster.
3139
3140
  #
3140
- # RDS for PostgreSQL
3141
+ # Constraints:
3141
3142
  #
3142
- # : The name of the database to create when the DB instance is
3143
- # created.
3143
+ # * It must contain 1 to 64 alphanumeric characters.
3144
3144
  #
3145
- # Default: `postgres`
3145
+ # * It can't be a word reserved by the database engine.
3146
3146
  #
3147
- # Constraints:
3147
+ # **Amazon Aurora PostgreSQL**
3148
3148
  #
3149
- # * Must contain 1 to 63 letters, numbers, or underscores.
3149
+ # The name of the database to create when the primary DB instance of
3150
+ # the Aurora PostgreSQL DB cluster is created. If this parameter
3151
+ # isn't specified for an Aurora PostgreSQL DB cluster, a database
3152
+ # named `postgres` is created in the DB cluster.
3150
3153
  #
3151
- # * Must begin with a letter. Subsequent characters can be letters,
3152
- # underscores, or digits (0-9).
3154
+ # Constraints:
3153
3155
  #
3154
- # * Can't be a word reserved by the database engine.
3156
+ # * It must contain 1 to 63 alphanumeric characters.
3155
3157
  #
3156
- # RDS for SQL Server
3158
+ # * It must begin with a letter. Subsequent characters can be letters,
3159
+ # underscores, or digits (0 to 9).
3157
3160
  #
3158
- # : Not applicable. Must be null.
3161
+ # * It can't be a word reserved by the database engine.
3159
3162
  # @return [String]
3160
3163
  #
3161
3164
  # @!attribute [rw] db_instance_identifier
@@ -4270,6 +4273,15 @@ module Aws::RDS
4270
4273
  # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
4271
4274
  # @return [String]
4272
4275
  #
4276
+ # @!attribute [rw] db_system_id
4277
+ # The Oracle system identifier (SID), which is the name of the Oracle
4278
+ # database instance that manages your database files. In this context,
4279
+ # the term "Oracle database instance" refers exclusively to the
4280
+ # system global area (SGA) and Oracle background processes. If you
4281
+ # don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
4282
+ # is also the name of your CDB.
4283
+ # @return [String]
4284
+ #
4273
4285
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
4274
4286
  #
4275
4287
  class CreateDBInstanceMessage < Struct.new(
@@ -4331,7 +4343,8 @@ module Aws::RDS
4331
4343
  :storage_throughput,
4332
4344
  :manage_master_user_password,
4333
4345
  :master_user_secret_kms_key_id,
4334
- :ca_certificate_identifier)
4346
+ :ca_certificate_identifier,
4347
+ :db_system_id)
4335
4348
  SENSITIVE = []
4336
4349
  include Aws::Structure
4337
4350
  end
@@ -7540,17 +7553,10 @@ module Aws::RDS
7540
7553
  # @return [String]
7541
7554
  #
7542
7555
  # @!attribute [rw] db_name
7543
- # The meaning of this parameter differs depending on the database
7544
- # engine.
7545
- #
7546
- # * For RDS for MariaDB, Microsoft SQL Server, MySQL, and PostgreSQL -
7547
- # The name of the initial database specified for this DB instance
7548
- # when it was created, if one was provided. This same name is
7549
- # returned for the life of the DB instance.
7550
- #
7551
- # * For RDS for Oracle - The Oracle System ID (SID) of the created DB
7552
- # instance. This value is only returned when the object returned is
7553
- # an Oracle DB instance.
7556
+ # Contains the initial database name that you provided (if required)
7557
+ # when you created the DB instance. This name is returned for the life
7558
+ # of your DB instance. For an RDS for Oracle CDB instance, the name
7559
+ # identifies the PDB rather than the CDB.
7554
7560
  # @return [String]
7555
7561
  #
7556
7562
  # @!attribute [rw] endpoint
@@ -9372,6 +9378,12 @@ module Aws::RDS
9372
9378
  # Specifies the storage throughput for the DB snapshot.
9373
9379
  # @return [Integer]
9374
9380
  #
9381
+ # @!attribute [rw] db_system_id
9382
+ # The Oracle system identifier (SID), which is the name of the Oracle
9383
+ # database instance that manages your database files. The Oracle SID
9384
+ # is also the name of your CDB.
9385
+ # @return [String]
9386
+ #
9375
9387
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSnapshot AWS API Documentation
9376
9388
  #
9377
9389
  class DBSnapshot < Struct.new(
@@ -9407,7 +9419,8 @@ module Aws::RDS
9407
9419
  :original_snapshot_create_time,
9408
9420
  :snapshot_database_time,
9409
9421
  :snapshot_target,
9410
- :storage_throughput)
9422
+ :storage_throughput,
9423
+ :db_system_id)
9411
9424
  SENSITIVE = []
9412
9425
  include Aws::Structure
9413
9426
  end
@@ -9638,8 +9651,8 @@ module Aws::RDS
9638
9651
  class DBUpgradeDependencyFailureFault < Aws::EmptyStructure; end
9639
9652
 
9640
9653
  # @!attribute [rw] blue_green_deployment_identifier
9641
- # The blue/green deployment identifier of the deployment to be
9642
- # deleted. This parameter isn't case-sensitive.
9654
+ # The unique identifier of the blue/green deployment to delete. This
9655
+ # parameter isn't case-sensitive.
9643
9656
  #
9644
9657
  # Constraints:
9645
9658
  #
@@ -9649,9 +9662,9 @@ module Aws::RDS
9649
9662
  # @return [String]
9650
9663
  #
9651
9664
  # @!attribute [rw] delete_target
9652
- # A value that indicates whether to delete the resources in the green
9653
- # environment. You can't specify this option if the blue/green
9654
- # deployment [status][1] is `SWITCHOVER_COMPLETED`.
9665
+ # Specifies whether to delete the resources in the green environment.
9666
+ # You can't specify this option if the blue/green deployment
9667
+ # [status][1] is `SWITCHOVER_COMPLETED`.
9655
9668
  #
9656
9669
  #
9657
9670
  #
@@ -9668,10 +9681,10 @@ module Aws::RDS
9668
9681
  end
9669
9682
 
9670
9683
  # @!attribute [rw] blue_green_deployment
9671
- # Contains the details about a blue/green deployment.
9684
+ # Details about a blue/green deployment.
9672
9685
  #
9673
9686
  # For more information, see [Using Amazon RDS Blue/Green Deployments
9674
- # for database updates][1] in the *Amazon RDS User Guide* and [ Using
9687
+ # for database updates][1] in the *Amazon RDS User Guide* and [Using
9675
9688
  # Amazon RDS Blue/Green Deployments for database updates][2] in the
9676
9689
  # *Amazon Aurora User Guide*.
9677
9690
  #
@@ -10250,14 +10263,13 @@ module Aws::RDS
10250
10263
  class DescribeAccountAttributesMessage < Aws::EmptyStructure; end
10251
10264
 
10252
10265
  # @!attribute [rw] blue_green_deployment_identifier
10253
- # The blue/green deployment identifier. If this parameter is
10254
- # specified, information from only the specific blue/green deployment
10255
- # is returned. This parameter isn't case-sensitive.
10266
+ # The blue/green deployment identifier. If you specify this parameter,
10267
+ # the response only includes information about the specific blue/green
10268
+ # deployment. This parameter isn't case-sensitive.
10256
10269
  #
10257
10270
  # Constraints:
10258
10271
  #
10259
- # * If supplied, must match an existing blue/green deployment
10260
- # identifier.
10272
+ # * Must match an existing blue/green deployment identifier.
10261
10273
  #
10262
10274
  # ^
10263
10275
  # @return [String]
@@ -10266,7 +10278,7 @@ module Aws::RDS
10266
10278
  # A filter that specifies one or more blue/green deployments to
10267
10279
  # describe.
10268
10280
  #
10269
- # Supported filters:
10281
+ # Valid Values:
10270
10282
  #
10271
10283
  # * `blue-green-deployment-identifier` - Accepts system-generated
10272
10284
  # identifiers for blue/green deployments. The results list only
@@ -10288,8 +10300,8 @@ module Aws::RDS
10288
10300
  #
10289
10301
  # @!attribute [rw] marker
10290
10302
  # An optional pagination token provided by a previous
10291
- # `DescribeBlueGreenDeployments` request. If this parameter is
10292
- # specified, the response includes only records beyond the marker, up
10303
+ # `DescribeBlueGreenDeployments` request. If you specify this
10304
+ # parameter, the response only includes records beyond the marker, up
10293
10305
  # to the value specified by `MaxRecords`.
10294
10306
  # @return [String]
10295
10307
  #
@@ -10301,7 +10313,11 @@ module Aws::RDS
10301
10313
  #
10302
10314
  # Default: 100
10303
10315
  #
10304
- # Constraints: Minimum 20, maximum 100.
10316
+ # Constraints:
10317
+ #
10318
+ # * Must be a minimum of 20.
10319
+ #
10320
+ # * Can't exceed 100.
10305
10321
  # @return [Integer]
10306
10322
  #
10307
10323
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeBlueGreenDeploymentsRequest AWS API Documentation
@@ -10316,12 +10332,13 @@ module Aws::RDS
10316
10332
  end
10317
10333
 
10318
10334
  # @!attribute [rw] blue_green_deployments
10319
- # Contains a list of blue/green deployments for the user.
10335
+ # A list of blue/green deployments in the current account and Amazon
10336
+ # Web Services Region.
10320
10337
  # @return [Array<Types::BlueGreenDeployment>]
10321
10338
  #
10322
10339
  # @!attribute [rw] marker
10323
10340
  # A pagination token that can be used in a later
10324
- # DescribeBlueGreenDeployments request.
10341
+ # `DescribeBlueGreenDeployments` request.
10325
10342
  # @return [String]
10326
10343
  #
10327
10344
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeBlueGreenDeploymentsResponse AWS API Documentation
@@ -23496,7 +23513,7 @@ module Aws::RDS
23496
23513
  class SubscriptionNotFoundFault < Aws::EmptyStructure; end
23497
23514
 
23498
23515
  # @!attribute [rw] blue_green_deployment_identifier
23499
- # The blue/green deployment identifier.
23516
+ # The unique identifier of the blue/green deployment.
23500
23517
  #
23501
23518
  # Constraints:
23502
23519
  #
@@ -23506,8 +23523,9 @@ module Aws::RDS
23506
23523
  # @return [String]
23507
23524
  #
23508
23525
  # @!attribute [rw] switchover_timeout
23509
- # The amount of time, in seconds, for the switchover to complete. The
23510
- # default is 300.
23526
+ # The amount of time, in seconds, for the switchover to complete.
23527
+ #
23528
+ # Default: 300
23511
23529
  #
23512
23530
  # If the switchover takes longer than the specified duration, then any
23513
23531
  # changes are rolled back, and no changes are made to the
@@ -23524,10 +23542,10 @@ module Aws::RDS
23524
23542
  end
23525
23543
 
23526
23544
  # @!attribute [rw] blue_green_deployment
23527
- # Contains the details about a blue/green deployment.
23545
+ # Details about a blue/green deployment.
23528
23546
  #
23529
23547
  # For more information, see [Using Amazon RDS Blue/Green Deployments
23530
- # for database updates][1] in the *Amazon RDS User Guide* and [ Using
23548
+ # for database updates][1] in the *Amazon RDS User Guide* and [Using
23531
23549
  # Amazon RDS Blue/Green Deployments for database updates][2] in the
23532
23550
  # *Amazon Aurora User Guide*.
23533
23551
  #
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.185.0'
81
+ GEM_VERSION = '1.186.0'
82
82
 
83
83
  end
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.185.0
4
+ version: 1.186.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-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4