aws-sdk-rds 1.200.0 → 1.201.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1822,6 +1822,7 @@ module Aws::RDS
1822
1822
  # resp.db_snapshot.storage_throughput #=> Integer
1823
1823
  # resp.db_snapshot.db_system_id #=> String
1824
1824
  # resp.db_snapshot.dedicated_log_volume #=> Boolean
1825
+ # resp.db_snapshot.multi_tenant #=> Boolean
1825
1826
  #
1826
1827
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
1827
1828
  #
@@ -5242,6 +5243,22 @@ module Aws::RDS
5242
5243
  # Indicates whether the DB instance has a dedicated log volume (DLV)
5243
5244
  # enabled.
5244
5245
  #
5246
+ # @option params [Boolean] :multi_tenant
5247
+ # Specifies whether to use the multi-tenant configuration or the
5248
+ # single-tenant configuration (default). This parameter only applies to
5249
+ # RDS for Oracle container database (CDB) engines.
5250
+ #
5251
+ # Note the following restrictions:
5252
+ #
5253
+ # * The DB engine that you specify in the request must support the
5254
+ # multi-tenant configuration. If you attempt to enable the
5255
+ # multi-tenant configuration on a DB engine that doesn't support it,
5256
+ # the request fails.
5257
+ #
5258
+ # * If you specify the multi-tenant configuration when you create your
5259
+ # DB instance, you can't later modify this DB instance to use the
5260
+ # single-tenant configuration.
5261
+ #
5245
5262
  # @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5246
5263
  #
5247
5264
  # * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
@@ -5430,6 +5447,7 @@ module Aws::RDS
5430
5447
  # ca_certificate_identifier: "String",
5431
5448
  # db_system_id: "String",
5432
5449
  # dedicated_log_volume: false,
5450
+ # multi_tenant: false,
5433
5451
  # })
5434
5452
  #
5435
5453
  # @example Response structure
@@ -5497,6 +5515,7 @@ module Aws::RDS
5497
5515
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
5498
5516
  # resp.db_instance.pending_modified_values.engine #=> String
5499
5517
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
5518
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
5500
5519
  # resp.db_instance.latest_restorable_time #=> Time
5501
5520
  # resp.db_instance.multi_az #=> Boolean
5502
5521
  # resp.db_instance.engine_version #=> String
@@ -5592,6 +5611,7 @@ module Aws::RDS
5592
5611
  # resp.db_instance.percent_progress #=> String
5593
5612
  # resp.db_instance.dedicated_log_volume #=> Boolean
5594
5613
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
5614
+ # resp.db_instance.multi_tenant #=> Boolean
5595
5615
  #
5596
5616
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
5597
5617
  #
@@ -6416,6 +6436,7 @@ module Aws::RDS
6416
6436
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
6417
6437
  # resp.db_instance.pending_modified_values.engine #=> String
6418
6438
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
6439
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
6419
6440
  # resp.db_instance.latest_restorable_time #=> Time
6420
6441
  # resp.db_instance.multi_az #=> Boolean
6421
6442
  # resp.db_instance.engine_version #=> String
@@ -6511,6 +6532,7 @@ module Aws::RDS
6511
6532
  # resp.db_instance.percent_progress #=> String
6512
6533
  # resp.db_instance.dedicated_log_volume #=> Boolean
6513
6534
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
6535
+ # resp.db_instance.multi_tenant #=> Boolean
6514
6536
  #
6515
6537
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
6516
6538
  #
@@ -7115,6 +7137,7 @@ module Aws::RDS
7115
7137
  # resp.db_snapshot.storage_throughput #=> Integer
7116
7138
  # resp.db_snapshot.db_system_id #=> String
7117
7139
  # resp.db_snapshot.dedicated_log_volume #=> Boolean
7140
+ # resp.db_snapshot.multi_tenant #=> Boolean
7118
7141
  #
7119
7142
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
7120
7143
  #
@@ -7848,6 +7871,107 @@ module Aws::RDS
7848
7871
  req.send_request(options)
7849
7872
  end
7850
7873
 
7874
+ # Creates a tenant database in a DB instance that uses the multi-tenant
7875
+ # configuration. Only RDS for Oracle container database (CDB) instances
7876
+ # are supported.
7877
+ #
7878
+ # @option params [required, String] :db_instance_identifier
7879
+ # The user-supplied DB instance identifier. RDS creates your tenant
7880
+ # database in this DB instance. This parameter isn't case-sensitive.
7881
+ #
7882
+ # @option params [required, String] :tenant_db_name
7883
+ # The user-supplied name of the tenant database that you want to create
7884
+ # in your DB instance. This parameter has the same constraints as
7885
+ # `DBName` in `CreateDBInstance`.
7886
+ #
7887
+ # @option params [required, String] :master_username
7888
+ # The name for the master user account in your tenant database. RDS
7889
+ # creates this user account in the tenant database and grants privileges
7890
+ # to the master user. This parameter is case-sensitive.
7891
+ #
7892
+ # Constraints:
7893
+ #
7894
+ # * Must be 1 to 16 letters, numbers, or underscores.
7895
+ #
7896
+ # * First character must be a letter.
7897
+ #
7898
+ # * Can't be a reserved word for the chosen database engine.
7899
+ #
7900
+ # @option params [required, String] :master_user_password
7901
+ # The password for the master user in your tenant database.
7902
+ #
7903
+ # Constraints:
7904
+ #
7905
+ # * Must be 8 to 30 characters.
7906
+ #
7907
+ # * Can include any printable ASCII character except forward slash
7908
+ # (`/`), double quote (`"`), at symbol (`@`), ampersand (`&`), or
7909
+ # single quote (`'`).
7910
+ #
7911
+ # @option params [String] :character_set_name
7912
+ # The character set for your tenant database. If you don't specify a
7913
+ # value, the character set name defaults to `AL32UTF8`.
7914
+ #
7915
+ # @option params [String] :nchar_character_set_name
7916
+ # The `NCHAR` value for the tenant database.
7917
+ #
7918
+ # @option params [Array<Types::Tag>] :tags
7919
+ # A list of tags. For more information, see [Tagging Amazon RDS
7920
+ # Resources][1] in the *Amazon RDS User Guide.*
7921
+ #
7922
+ #
7923
+ #
7924
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
7925
+ #
7926
+ # @return [Types::CreateTenantDatabaseResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7927
+ #
7928
+ # * {Types::CreateTenantDatabaseResult#tenant_database #tenant_database} => Types::TenantDatabase
7929
+ #
7930
+ # @example Request syntax with placeholder values
7931
+ #
7932
+ # resp = client.create_tenant_database({
7933
+ # db_instance_identifier: "String", # required
7934
+ # tenant_db_name: "String", # required
7935
+ # master_username: "String", # required
7936
+ # master_user_password: "SensitiveString", # required
7937
+ # character_set_name: "String",
7938
+ # nchar_character_set_name: "String",
7939
+ # tags: [
7940
+ # {
7941
+ # key: "String",
7942
+ # value: "String",
7943
+ # },
7944
+ # ],
7945
+ # })
7946
+ #
7947
+ # @example Response structure
7948
+ #
7949
+ # resp.tenant_database.tenant_database_create_time #=> Time
7950
+ # resp.tenant_database.db_instance_identifier #=> String
7951
+ # resp.tenant_database.tenant_db_name #=> String
7952
+ # resp.tenant_database.status #=> String
7953
+ # resp.tenant_database.master_username #=> String
7954
+ # resp.tenant_database.dbi_resource_id #=> String
7955
+ # resp.tenant_database.tenant_database_resource_id #=> String
7956
+ # resp.tenant_database.tenant_database_arn #=> String
7957
+ # resp.tenant_database.character_set_name #=> String
7958
+ # resp.tenant_database.nchar_character_set_name #=> String
7959
+ # resp.tenant_database.deletion_protection #=> Boolean
7960
+ # resp.tenant_database.pending_modified_values.master_user_password #=> String
7961
+ # resp.tenant_database.pending_modified_values.tenant_db_name #=> String
7962
+ # resp.tenant_database.tag_list #=> Array
7963
+ # resp.tenant_database.tag_list[0].key #=> String
7964
+ # resp.tenant_database.tag_list[0].value #=> String
7965
+ #
7966
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateTenantDatabase AWS API Documentation
7967
+ #
7968
+ # @overload create_tenant_database(params = {})
7969
+ # @param [Hash] params ({})
7970
+ def create_tenant_database(params = {}, options = {})
7971
+ req = build_request(:create_tenant_database, params)
7972
+ req.send_request(options)
7973
+ end
7974
+
7851
7975
  # Deletes a blue/green deployment.
7852
7976
  #
7853
7977
  # For more information, see [Using Amazon RDS Blue/Green Deployments for
@@ -8943,6 +9067,7 @@ module Aws::RDS
8943
9067
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
8944
9068
  # resp.db_instance.pending_modified_values.engine #=> String
8945
9069
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
9070
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
8946
9071
  # resp.db_instance.latest_restorable_time #=> Time
8947
9072
  # resp.db_instance.multi_az #=> Boolean
8948
9073
  # resp.db_instance.engine_version #=> String
@@ -9038,6 +9163,7 @@ module Aws::RDS
9038
9163
  # resp.db_instance.percent_progress #=> String
9039
9164
  # resp.db_instance.dedicated_log_volume #=> Boolean
9040
9165
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
9166
+ # resp.db_instance.multi_tenant #=> Boolean
9041
9167
  #
9042
9168
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
9043
9169
  #
@@ -9145,6 +9271,7 @@ module Aws::RDS
9145
9271
  # resp.db_instance_automated_backup.storage_throughput #=> Integer
9146
9272
  # resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
9147
9273
  # resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
9274
+ # resp.db_instance_automated_backup.multi_tenant #=> Boolean
9148
9275
  #
9149
9276
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
9150
9277
  #
@@ -9456,6 +9583,7 @@ module Aws::RDS
9456
9583
  # resp.db_snapshot.storage_throughput #=> Integer
9457
9584
  # resp.db_snapshot.db_system_id #=> String
9458
9585
  # resp.db_snapshot.dedicated_log_volume #=> Boolean
9586
+ # resp.db_snapshot.multi_tenant #=> Boolean
9459
9587
  #
9460
9588
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
9461
9589
  #
@@ -9750,6 +9878,80 @@ module Aws::RDS
9750
9878
  req.send_request(options)
9751
9879
  end
9752
9880
 
9881
+ # Deletes a tenant database from your DB instance. This command only
9882
+ # applies to RDS for Oracle container database (CDB) instances.
9883
+ #
9884
+ # You can't delete a tenant database when it is the only tenant in the
9885
+ # DB instance.
9886
+ #
9887
+ # @option params [required, String] :db_instance_identifier
9888
+ # The user-supplied identifier for the DB instance that contains the
9889
+ # tenant database that you want to delete.
9890
+ #
9891
+ # @option params [required, String] :tenant_db_name
9892
+ # The user-supplied name of the tenant database that you want to remove
9893
+ # from your DB instance. Amazon RDS deletes the tenant database with
9894
+ # this name. This parameter isn’t case-sensitive.
9895
+ #
9896
+ # @option params [Boolean] :skip_final_snapshot
9897
+ # Specifies whether to skip the creation of a final DB snapshot before
9898
+ # removing the tenant database from your DB instance. If you enable this
9899
+ # parameter, RDS doesn't create a DB snapshot. If you don't enable
9900
+ # this parameter, RDS creates a DB snapshot before it deletes the tenant
9901
+ # database. By default, RDS doesn't skip the final snapshot. If you
9902
+ # don't enable this parameter, you must specify the
9903
+ # `FinalDBSnapshotIdentifier` parameter.
9904
+ #
9905
+ # @option params [String] :final_db_snapshot_identifier
9906
+ # The `DBSnapshotIdentifier` of the new `DBSnapshot` created when the
9907
+ # `SkipFinalSnapshot` parameter is disabled.
9908
+ #
9909
+ # <note markdown="1"> If you enable this parameter and also enable `SkipFinalShapshot`, the
9910
+ # command results in an error.
9911
+ #
9912
+ # </note>
9913
+ #
9914
+ # @return [Types::DeleteTenantDatabaseResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9915
+ #
9916
+ # * {Types::DeleteTenantDatabaseResult#tenant_database #tenant_database} => Types::TenantDatabase
9917
+ #
9918
+ # @example Request syntax with placeholder values
9919
+ #
9920
+ # resp = client.delete_tenant_database({
9921
+ # db_instance_identifier: "String", # required
9922
+ # tenant_db_name: "String", # required
9923
+ # skip_final_snapshot: false,
9924
+ # final_db_snapshot_identifier: "String",
9925
+ # })
9926
+ #
9927
+ # @example Response structure
9928
+ #
9929
+ # resp.tenant_database.tenant_database_create_time #=> Time
9930
+ # resp.tenant_database.db_instance_identifier #=> String
9931
+ # resp.tenant_database.tenant_db_name #=> String
9932
+ # resp.tenant_database.status #=> String
9933
+ # resp.tenant_database.master_username #=> String
9934
+ # resp.tenant_database.dbi_resource_id #=> String
9935
+ # resp.tenant_database.tenant_database_resource_id #=> String
9936
+ # resp.tenant_database.tenant_database_arn #=> String
9937
+ # resp.tenant_database.character_set_name #=> String
9938
+ # resp.tenant_database.nchar_character_set_name #=> String
9939
+ # resp.tenant_database.deletion_protection #=> Boolean
9940
+ # resp.tenant_database.pending_modified_values.master_user_password #=> String
9941
+ # resp.tenant_database.pending_modified_values.tenant_db_name #=> String
9942
+ # resp.tenant_database.tag_list #=> Array
9943
+ # resp.tenant_database.tag_list[0].key #=> String
9944
+ # resp.tenant_database.tag_list[0].value #=> String
9945
+ #
9946
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteTenantDatabase AWS API Documentation
9947
+ #
9948
+ # @overload delete_tenant_database(params = {})
9949
+ # @param [Hash] params ({})
9950
+ def delete_tenant_database(params = {}, options = {})
9951
+ req = build_request(:delete_tenant_database, params)
9952
+ req.send_request(options)
9953
+ end
9954
+
9753
9955
  # Remove the association between one or more `DBProxyTarget` data
9754
9956
  # structures and a `DBProxyTargetGroup`.
9755
9957
  #
@@ -12159,6 +12361,7 @@ module Aws::RDS
12159
12361
  # resp.db_instance_automated_backups[0].storage_throughput #=> Integer
12160
12362
  # resp.db_instance_automated_backups[0].aws_backup_recovery_point_arn #=> String
12161
12363
  # resp.db_instance_automated_backups[0].dedicated_log_volume #=> Boolean
12364
+ # resp.db_instance_automated_backups[0].multi_tenant #=> Boolean
12162
12365
  #
12163
12366
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
12164
12367
  #
@@ -12344,6 +12547,7 @@ module Aws::RDS
12344
12547
  # resp.db_instances[0].pending_modified_values.storage_throughput #=> Integer
12345
12548
  # resp.db_instances[0].pending_modified_values.engine #=> String
12346
12549
  # resp.db_instances[0].pending_modified_values.dedicated_log_volume #=> Boolean
12550
+ # resp.db_instances[0].pending_modified_values.multi_tenant #=> Boolean
12347
12551
  # resp.db_instances[0].latest_restorable_time #=> Time
12348
12552
  # resp.db_instances[0].multi_az #=> Boolean
12349
12553
  # resp.db_instances[0].engine_version #=> String
@@ -12439,6 +12643,7 @@ module Aws::RDS
12439
12643
  # resp.db_instances[0].percent_progress #=> String
12440
12644
  # resp.db_instances[0].dedicated_log_volume #=> Boolean
12441
12645
  # resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
12646
+ # resp.db_instances[0].multi_tenant #=> Boolean
12442
12647
  #
12443
12648
  #
12444
12649
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -13295,6 +13500,149 @@ module Aws::RDS
13295
13500
  req.send_request(options)
13296
13501
  end
13297
13502
 
13503
+ # Describes the tenant databases that exist in a DB snapshot. This
13504
+ # command only applies to RDS for Oracle DB instances in the
13505
+ # multi-tenant configuration.
13506
+ #
13507
+ # You can use this command to inspect the tenant databases within a
13508
+ # snapshot before restoring it. You can't directly interact with the
13509
+ # tenant databases in a DB snapshot. If you restore a snapshot that was
13510
+ # taken from DB instance using the multi-tenant configuration, you
13511
+ # restore all its tenant databases.
13512
+ #
13513
+ # @option params [String] :db_instance_identifier
13514
+ # The ID of the DB instance used to create the DB snapshots. This
13515
+ # parameter isn't case-sensitive.
13516
+ #
13517
+ # Constraints:
13518
+ #
13519
+ # * If supplied, must match the identifier of an existing `DBInstance`.
13520
+ #
13521
+ # ^
13522
+ #
13523
+ # @option params [String] :db_snapshot_identifier
13524
+ # The ID of a DB snapshot that contains the tenant databases to
13525
+ # describe. This value is stored as a lowercase string.
13526
+ #
13527
+ # Constraints:
13528
+ #
13529
+ # * If you specify this parameter, the value must match the ID of an
13530
+ # existing DB snapshot.
13531
+ #
13532
+ # * If you specify an automatic snapshot, you must also specify
13533
+ # `SnapshotType`.
13534
+ #
13535
+ # @option params [String] :snapshot_type
13536
+ # The type of DB snapshots to be returned. You can specify one of the
13537
+ # following values:
13538
+ #
13539
+ # * `automated` – All DB snapshots that have been automatically taken by
13540
+ # Amazon RDS for my Amazon Web Services account.
13541
+ #
13542
+ # * `manual` – All DB snapshots that have been taken by my Amazon Web
13543
+ # Services account.
13544
+ #
13545
+ # * `shared` – All manual DB snapshots that have been shared to my
13546
+ # Amazon Web Services account.
13547
+ #
13548
+ # * `public` – All DB snapshots that have been marked as public.
13549
+ #
13550
+ # * `awsbackup` – All DB snapshots managed by the Amazon Web Services
13551
+ # Backup service.
13552
+ #
13553
+ # @option params [Array<Types::Filter>] :filters
13554
+ # A filter that specifies one or more tenant databases to describe.
13555
+ #
13556
+ # Supported filters:
13557
+ #
13558
+ # * `tenant-db-name` - Tenant database names. The results list only
13559
+ # includes information about the tenant databases that match these
13560
+ # tenant DB names.
13561
+ #
13562
+ # * `tenant-database-resource-id` - Tenant database resource
13563
+ # identifiers. The results list only includes information about the
13564
+ # tenant databases contained within the DB snapshots.
13565
+ #
13566
+ # * `dbi-resource-id` - DB instance resource identifiers. The results
13567
+ # list only includes information about snapshots containing tenant
13568
+ # databases contained within the DB instances identified by these
13569
+ # resource identifiers.
13570
+ #
13571
+ # * `db-instance-id` - Accepts DB instance identifiers and DB instance
13572
+ # Amazon Resource Names (ARNs).
13573
+ #
13574
+ # * `db-snapshot-id` - Accepts DB snapshot identifiers.
13575
+ #
13576
+ # * `snapshot-type` - Accepts types of DB snapshots.
13577
+ #
13578
+ # @option params [Integer] :max_records
13579
+ # The maximum number of records to include in the response. If more
13580
+ # records exist than the specified `MaxRecords` value, a pagination
13581
+ # token called a marker is included in the response so that you can
13582
+ # retrieve the remaining results.
13583
+ #
13584
+ # @option params [String] :marker
13585
+ # An optional pagination token provided by a previous
13586
+ # `DescribeDBSnapshotTenantDatabases` request. If this parameter is
13587
+ # specified, the response includes only records beyond the marker, up to
13588
+ # the value specified by `MaxRecords`.
13589
+ #
13590
+ # @option params [String] :dbi_resource_id
13591
+ # A specific DB resource identifier to describe.
13592
+ #
13593
+ # @return [Types::DBSnapshotTenantDatabasesMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13594
+ #
13595
+ # * {Types::DBSnapshotTenantDatabasesMessage#marker #marker} => String
13596
+ # * {Types::DBSnapshotTenantDatabasesMessage#db_snapshot_tenant_databases #db_snapshot_tenant_databases} => Array&lt;Types::DBSnapshotTenantDatabase&gt;
13597
+ #
13598
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13599
+ #
13600
+ # @example Request syntax with placeholder values
13601
+ #
13602
+ # resp = client.describe_db_snapshot_tenant_databases({
13603
+ # db_instance_identifier: "String",
13604
+ # db_snapshot_identifier: "String",
13605
+ # snapshot_type: "String",
13606
+ # filters: [
13607
+ # {
13608
+ # name: "String", # required
13609
+ # values: ["String"], # required
13610
+ # },
13611
+ # ],
13612
+ # max_records: 1,
13613
+ # marker: "String",
13614
+ # dbi_resource_id: "String",
13615
+ # })
13616
+ #
13617
+ # @example Response structure
13618
+ #
13619
+ # resp.marker #=> String
13620
+ # resp.db_snapshot_tenant_databases #=> Array
13621
+ # resp.db_snapshot_tenant_databases[0].db_snapshot_identifier #=> String
13622
+ # resp.db_snapshot_tenant_databases[0].db_instance_identifier #=> String
13623
+ # resp.db_snapshot_tenant_databases[0].dbi_resource_id #=> String
13624
+ # resp.db_snapshot_tenant_databases[0].engine_name #=> String
13625
+ # resp.db_snapshot_tenant_databases[0].snapshot_type #=> String
13626
+ # resp.db_snapshot_tenant_databases[0].tenant_database_create_time #=> Time
13627
+ # resp.db_snapshot_tenant_databases[0].tenant_db_name #=> String
13628
+ # resp.db_snapshot_tenant_databases[0].master_username #=> String
13629
+ # resp.db_snapshot_tenant_databases[0].tenant_database_resource_id #=> String
13630
+ # resp.db_snapshot_tenant_databases[0].character_set_name #=> String
13631
+ # resp.db_snapshot_tenant_databases[0].db_snapshot_tenant_database_arn #=> String
13632
+ # resp.db_snapshot_tenant_databases[0].nchar_character_set_name #=> String
13633
+ # resp.db_snapshot_tenant_databases[0].tag_list #=> Array
13634
+ # resp.db_snapshot_tenant_databases[0].tag_list[0].key #=> String
13635
+ # resp.db_snapshot_tenant_databases[0].tag_list[0].value #=> String
13636
+ #
13637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshotTenantDatabases AWS API Documentation
13638
+ #
13639
+ # @overload describe_db_snapshot_tenant_databases(params = {})
13640
+ # @param [Hash] params ({})
13641
+ def describe_db_snapshot_tenant_databases(params = {}, options = {})
13642
+ req = build_request(:describe_db_snapshot_tenant_databases, params)
13643
+ req.send_request(options)
13644
+ end
13645
+
13298
13646
  # Returns information about DB snapshots. This API action supports
13299
13647
  # pagination.
13300
13648
  #
@@ -13525,6 +13873,7 @@ module Aws::RDS
13525
13873
  # resp.db_snapshots[0].storage_throughput #=> Integer
13526
13874
  # resp.db_snapshots[0].db_system_id #=> String
13527
13875
  # resp.db_snapshots[0].dedicated_log_volume #=> Boolean
13876
+ # resp.db_snapshots[0].multi_tenant #=> Boolean
13528
13877
  #
13529
13878
  #
13530
13879
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -15920,6 +16269,106 @@ module Aws::RDS
15920
16269
  req.send_request(options)
15921
16270
  end
15922
16271
 
16272
+ # Describes the tenant databases in a DB instance that uses the
16273
+ # multi-tenant configuration. Only RDS for Oracle CDB instances are
16274
+ # supported.
16275
+ #
16276
+ # @option params [String] :db_instance_identifier
16277
+ # The user-supplied DB instance identifier, which must match the
16278
+ # identifier of an existing instance owned by the Amazon Web Services
16279
+ # account. This parameter isn't case-sensitive.
16280
+ #
16281
+ # @option params [String] :tenant_db_name
16282
+ # The user-supplied tenant database name, which must match the name of
16283
+ # an existing tenant database on the specified DB instance owned by your
16284
+ # Amazon Web Services account. This parameter isn’t case-sensitive.
16285
+ #
16286
+ # @option params [Array<Types::Filter>] :filters
16287
+ # A filter that specifies one or more database tenants to describe.
16288
+ #
16289
+ # Supported filters:
16290
+ #
16291
+ # * `tenant-db-name` - Tenant database names. The results list only
16292
+ # includes information about the tenant databases that match these
16293
+ # tenant DB names.
16294
+ #
16295
+ # * `tenant-database-resource-id` - Tenant database resource
16296
+ # identifiers.
16297
+ #
16298
+ # * `dbi-resource-id` - DB instance resource identifiers. The results
16299
+ # list only includes information about the tenants contained within
16300
+ # the DB instances identified by these resource identifiers.
16301
+ #
16302
+ # @option params [String] :marker
16303
+ # An optional pagination token provided by a previous
16304
+ # `DescribeTenantDatabases` request. If this parameter is specified, the
16305
+ # response includes only records beyond the marker, up to the value
16306
+ # specified by `MaxRecords`.
16307
+ #
16308
+ # @option params [Integer] :max_records
16309
+ # The maximum number of records to include in the response. If more
16310
+ # records exist than the specified `MaxRecords` value, a pagination
16311
+ # token called a marker is included in the response so that you can
16312
+ # retrieve the remaining results.
16313
+ #
16314
+ # @return [Types::TenantDatabasesMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16315
+ #
16316
+ # * {Types::TenantDatabasesMessage#marker #marker} => String
16317
+ # * {Types::TenantDatabasesMessage#tenant_databases #tenant_databases} => Array&lt;Types::TenantDatabase&gt;
16318
+ #
16319
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16320
+ #
16321
+ # @example Request syntax with placeholder values
16322
+ #
16323
+ # resp = client.describe_tenant_databases({
16324
+ # db_instance_identifier: "String",
16325
+ # tenant_db_name: "String",
16326
+ # filters: [
16327
+ # {
16328
+ # name: "String", # required
16329
+ # values: ["String"], # required
16330
+ # },
16331
+ # ],
16332
+ # marker: "String",
16333
+ # max_records: 1,
16334
+ # })
16335
+ #
16336
+ # @example Response structure
16337
+ #
16338
+ # resp.marker #=> String
16339
+ # resp.tenant_databases #=> Array
16340
+ # resp.tenant_databases[0].tenant_database_create_time #=> Time
16341
+ # resp.tenant_databases[0].db_instance_identifier #=> String
16342
+ # resp.tenant_databases[0].tenant_db_name #=> String
16343
+ # resp.tenant_databases[0].status #=> String
16344
+ # resp.tenant_databases[0].master_username #=> String
16345
+ # resp.tenant_databases[0].dbi_resource_id #=> String
16346
+ # resp.tenant_databases[0].tenant_database_resource_id #=> String
16347
+ # resp.tenant_databases[0].tenant_database_arn #=> String
16348
+ # resp.tenant_databases[0].character_set_name #=> String
16349
+ # resp.tenant_databases[0].nchar_character_set_name #=> String
16350
+ # resp.tenant_databases[0].deletion_protection #=> Boolean
16351
+ # resp.tenant_databases[0].pending_modified_values.master_user_password #=> String
16352
+ # resp.tenant_databases[0].pending_modified_values.tenant_db_name #=> String
16353
+ # resp.tenant_databases[0].tag_list #=> Array
16354
+ # resp.tenant_databases[0].tag_list[0].key #=> String
16355
+ # resp.tenant_databases[0].tag_list[0].value #=> String
16356
+ #
16357
+ #
16358
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
16359
+ #
16360
+ # * tenant_database_available
16361
+ # * tenant_database_deleted
16362
+ #
16363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeTenantDatabases AWS API Documentation
16364
+ #
16365
+ # @overload describe_tenant_databases(params = {})
16366
+ # @param [Hash] params ({})
16367
+ def describe_tenant_databases(params = {}, options = {})
16368
+ req = build_request(:describe_tenant_databases, params)
16369
+ req.send_request(options)
16370
+ end
16371
+
15923
16372
  # You can call `DescribeValidDBInstanceModifications` to learn what
15924
16373
  # modifications you can make to your DB instance. You can use this
15925
16374
  # information when you call `ModifyDBInstance`.
@@ -18343,8 +18792,8 @@ module Aws::RDS
18343
18792
  # version at the same time, the currently running engine version must
18344
18793
  # be supported on the specified DB instance class. Otherwise, the
18345
18794
  # operation returns an error. In this case, first run the operation to
18346
- # modify the DB instance class, and then run it again to upgrade the
18347
- # engine version.
18795
+ # upgrade the engine version, and then run it again to modify the DB
18796
+ # instance class.
18348
18797
  #
18349
18798
  # ^
18350
18799
  #
@@ -18622,8 +19071,8 @@ module Aws::RDS
18622
19071
  # instance class at the same time, the currently running engine
18623
19072
  # version must be supported on the specified DB instance class.
18624
19073
  # Otherwise, the operation returns an error. In this case, first run
18625
- # the operation to modify the DB instance class, and then run it again
18626
- # to upgrade the engine version.
19074
+ # the operation to upgrade the engine version, and then run it again
19075
+ # to modify the DB instance class.
18627
19076
  #
18628
19077
  # ^
18629
19078
  #
@@ -19337,6 +19786,23 @@ module Aws::RDS
19337
19786
  # Indicates whether the DB instance has a dedicated log volume (DLV)
19338
19787
  # enabled.
19339
19788
  #
19789
+ # @option params [Boolean] :multi_tenant
19790
+ # Specifies whether the to convert your DB instance from the
19791
+ # single-tenant configuration to the multi-tenant configuration. This
19792
+ # parameter is supported only for RDS for Oracle CDB instances.
19793
+ #
19794
+ # During the conversion, RDS creates an initial tenant database and
19795
+ # associates the DB name, master user name, character set, and national
19796
+ # character set metadata with this database. The tags associated with
19797
+ # the instance also propagate to the initial tenant database. You can
19798
+ # add more tenant databases to your DB instance by using the
19799
+ # `CreateTenantDatabase` operation.
19800
+ #
19801
+ # The conversion to the multi-tenant configuration is permanent and
19802
+ # irreversible, so you can't later convert back to the single-tenant
19803
+ # configuration. When you specify this parameter, you must also specify
19804
+ # `ApplyImmediately`.
19805
+ #
19340
19806
  # @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
19341
19807
  #
19342
19808
  # * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
@@ -19462,6 +19928,7 @@ module Aws::RDS
19462
19928
  # master_user_secret_kms_key_id: "String",
19463
19929
  # engine: "String",
19464
19930
  # dedicated_log_volume: false,
19931
+ # multi_tenant: false,
19465
19932
  # })
19466
19933
  #
19467
19934
  # @example Response structure
@@ -19529,6 +19996,7 @@ module Aws::RDS
19529
19996
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
19530
19997
  # resp.db_instance.pending_modified_values.engine #=> String
19531
19998
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
19999
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
19532
20000
  # resp.db_instance.latest_restorable_time #=> Time
19533
20001
  # resp.db_instance.multi_az #=> Boolean
19534
20002
  # resp.db_instance.engine_version #=> String
@@ -19624,6 +20092,7 @@ module Aws::RDS
19624
20092
  # resp.db_instance.percent_progress #=> String
19625
20093
  # resp.db_instance.dedicated_log_volume #=> Boolean
19626
20094
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
20095
+ # resp.db_instance.multi_tenant #=> Boolean
19627
20096
  #
19628
20097
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
19629
20098
  #
@@ -20125,6 +20594,7 @@ module Aws::RDS
20125
20594
  # resp.db_snapshot.storage_throughput #=> Integer
20126
20595
  # resp.db_snapshot.db_system_id #=> String
20127
20596
  # resp.db_snapshot.dedicated_log_volume #=> Boolean
20597
+ # resp.db_snapshot.multi_tenant #=> Boolean
20128
20598
  #
20129
20599
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
20130
20600
  #
@@ -20782,6 +21252,106 @@ module Aws::RDS
20782
21252
  req.send_request(options)
20783
21253
  end
20784
21254
 
21255
+ # Modifies an existing tenant database in a DB instance. You can change
21256
+ # the tenant database name or the master user password. This operation
21257
+ # is supported only for RDS for Oracle CDB instances using the
21258
+ # multi-tenant configuration.
21259
+ #
21260
+ # @option params [required, String] :db_instance_identifier
21261
+ # The identifier of the DB instance that contains the tenant database
21262
+ # that you are modifying. This parameter isn't case-sensitive.
21263
+ #
21264
+ # Constraints:
21265
+ #
21266
+ # * Must match the identifier of an existing DB instance.
21267
+ #
21268
+ # ^
21269
+ #
21270
+ # @option params [required, String] :tenant_db_name
21271
+ # The user-supplied name of the tenant database that you want to modify.
21272
+ # This parameter isn’t case-sensitive.
21273
+ #
21274
+ # Constraints:
21275
+ #
21276
+ # * Must match the identifier of an existing tenant database.
21277
+ #
21278
+ # ^
21279
+ #
21280
+ # @option params [String] :master_user_password
21281
+ # The new password for the master user of the specified tenant database
21282
+ # in your DB instance.
21283
+ #
21284
+ # <note markdown="1"> Amazon RDS operations never return the password, so this action
21285
+ # provides a way to regain access to a tenant database user if the
21286
+ # password is lost. This includes restoring privileges that might have
21287
+ # been accidentally revoked.
21288
+ #
21289
+ # </note>
21290
+ #
21291
+ # Constraints:
21292
+ #
21293
+ # * Can include any printable ASCII character except `/`, `"` (double
21294
+ # quote), `@`, `&` (ampersand), and `'` (single quote).
21295
+ #
21296
+ # ^
21297
+ #
21298
+ # Length constraints:
21299
+ #
21300
+ # * Must contain between 8 and 30 characters.
21301
+ #
21302
+ # ^
21303
+ #
21304
+ # @option params [String] :new_tenant_db_name
21305
+ # The new name of the tenant database when renaming a tenant database.
21306
+ # This parameter isn’t case-sensitive.
21307
+ #
21308
+ # Constraints:
21309
+ #
21310
+ # * Can't be the string null or any other reserved word.
21311
+ #
21312
+ # * Can't be longer than 8 characters.
21313
+ #
21314
+ # @return [Types::ModifyTenantDatabaseResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
21315
+ #
21316
+ # * {Types::ModifyTenantDatabaseResult#tenant_database #tenant_database} => Types::TenantDatabase
21317
+ #
21318
+ # @example Request syntax with placeholder values
21319
+ #
21320
+ # resp = client.modify_tenant_database({
21321
+ # db_instance_identifier: "String", # required
21322
+ # tenant_db_name: "String", # required
21323
+ # master_user_password: "SensitiveString",
21324
+ # new_tenant_db_name: "String",
21325
+ # })
21326
+ #
21327
+ # @example Response structure
21328
+ #
21329
+ # resp.tenant_database.tenant_database_create_time #=> Time
21330
+ # resp.tenant_database.db_instance_identifier #=> String
21331
+ # resp.tenant_database.tenant_db_name #=> String
21332
+ # resp.tenant_database.status #=> String
21333
+ # resp.tenant_database.master_username #=> String
21334
+ # resp.tenant_database.dbi_resource_id #=> String
21335
+ # resp.tenant_database.tenant_database_resource_id #=> String
21336
+ # resp.tenant_database.tenant_database_arn #=> String
21337
+ # resp.tenant_database.character_set_name #=> String
21338
+ # resp.tenant_database.nchar_character_set_name #=> String
21339
+ # resp.tenant_database.deletion_protection #=> Boolean
21340
+ # resp.tenant_database.pending_modified_values.master_user_password #=> String
21341
+ # resp.tenant_database.pending_modified_values.tenant_db_name #=> String
21342
+ # resp.tenant_database.tag_list #=> Array
21343
+ # resp.tenant_database.tag_list[0].key #=> String
21344
+ # resp.tenant_database.tag_list[0].value #=> String
21345
+ #
21346
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyTenantDatabase AWS API Documentation
21347
+ #
21348
+ # @overload modify_tenant_database(params = {})
21349
+ # @param [Hash] params ({})
21350
+ def modify_tenant_database(params = {}, options = {})
21351
+ req = build_request(:modify_tenant_database, params)
21352
+ req.send_request(options)
21353
+ end
21354
+
20785
21355
  # Promotes a read replica DB instance to a standalone DB instance.
20786
21356
  #
20787
21357
  # <note markdown="1"> * Backup duration is a function of the amount of changes to the
@@ -20943,6 +21513,7 @@ module Aws::RDS
20943
21513
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
20944
21514
  # resp.db_instance.pending_modified_values.engine #=> String
20945
21515
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
21516
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
20946
21517
  # resp.db_instance.latest_restorable_time #=> Time
20947
21518
  # resp.db_instance.multi_az #=> Boolean
20948
21519
  # resp.db_instance.engine_version #=> String
@@ -21038,6 +21609,7 @@ module Aws::RDS
21038
21609
  # resp.db_instance.percent_progress #=> String
21039
21610
  # resp.db_instance.dedicated_log_volume #=> Boolean
21040
21611
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
21612
+ # resp.db_instance.multi_tenant #=> Boolean
21041
21613
  #
21042
21614
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
21043
21615
  #
@@ -21625,6 +22197,7 @@ module Aws::RDS
21625
22197
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
21626
22198
  # resp.db_instance.pending_modified_values.engine #=> String
21627
22199
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
22200
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
21628
22201
  # resp.db_instance.latest_restorable_time #=> Time
21629
22202
  # resp.db_instance.multi_az #=> Boolean
21630
22203
  # resp.db_instance.engine_version #=> String
@@ -21720,6 +22293,7 @@ module Aws::RDS
21720
22293
  # resp.db_instance.percent_progress #=> String
21721
22294
  # resp.db_instance.dedicated_log_volume #=> Boolean
21722
22295
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
22296
+ # resp.db_instance.multi_tenant #=> Boolean
21723
22297
  #
21724
22298
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
21725
22299
  #
@@ -25020,6 +25594,7 @@ module Aws::RDS
25020
25594
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
25021
25595
  # resp.db_instance.pending_modified_values.engine #=> String
25022
25596
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
25597
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
25023
25598
  # resp.db_instance.latest_restorable_time #=> Time
25024
25599
  # resp.db_instance.multi_az #=> Boolean
25025
25600
  # resp.db_instance.engine_version #=> String
@@ -25115,6 +25690,7 @@ module Aws::RDS
25115
25690
  # resp.db_instance.percent_progress #=> String
25116
25691
  # resp.db_instance.dedicated_log_volume #=> Boolean
25117
25692
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
25693
+ # resp.db_instance.multi_tenant #=> Boolean
25118
25694
  #
25119
25695
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
25120
25696
  #
@@ -25759,6 +26335,7 @@ module Aws::RDS
25759
26335
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
25760
26336
  # resp.db_instance.pending_modified_values.engine #=> String
25761
26337
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
26338
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
25762
26339
  # resp.db_instance.latest_restorable_time #=> Time
25763
26340
  # resp.db_instance.multi_az #=> Boolean
25764
26341
  # resp.db_instance.engine_version #=> String
@@ -25854,6 +26431,7 @@ module Aws::RDS
25854
26431
  # resp.db_instance.percent_progress #=> String
25855
26432
  # resp.db_instance.dedicated_log_volume #=> Boolean
25856
26433
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
26434
+ # resp.db_instance.multi_tenant #=> Boolean
25857
26435
  #
25858
26436
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
25859
26437
  #
@@ -26618,6 +27196,7 @@ module Aws::RDS
26618
27196
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
26619
27197
  # resp.db_instance.pending_modified_values.engine #=> String
26620
27198
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
27199
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
26621
27200
  # resp.db_instance.latest_restorable_time #=> Time
26622
27201
  # resp.db_instance.multi_az #=> Boolean
26623
27202
  # resp.db_instance.engine_version #=> String
@@ -26713,6 +27292,7 @@ module Aws::RDS
26713
27292
  # resp.db_instance.percent_progress #=> String
26714
27293
  # resp.db_instance.dedicated_log_volume #=> Boolean
26715
27294
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
27295
+ # resp.db_instance.multi_tenant #=> Boolean
26716
27296
  #
26717
27297
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
26718
27298
  #
@@ -27219,6 +27799,7 @@ module Aws::RDS
27219
27799
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
27220
27800
  # resp.db_instance.pending_modified_values.engine #=> String
27221
27801
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
27802
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
27222
27803
  # resp.db_instance.latest_restorable_time #=> Time
27223
27804
  # resp.db_instance.multi_az #=> Boolean
27224
27805
  # resp.db_instance.engine_version #=> String
@@ -27314,6 +27895,7 @@ module Aws::RDS
27314
27895
  # resp.db_instance.percent_progress #=> String
27315
27896
  # resp.db_instance.dedicated_log_volume #=> Boolean
27316
27897
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
27898
+ # resp.db_instance.multi_tenant #=> Boolean
27317
27899
  #
27318
27900
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
27319
27901
  #
@@ -27471,6 +28053,7 @@ module Aws::RDS
27471
28053
  # resp.db_instance_automated_backup.storage_throughput #=> Integer
27472
28054
  # resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
27473
28055
  # resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
28056
+ # resp.db_instance_automated_backup.multi_tenant #=> Boolean
27474
28057
  #
27475
28058
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
27476
28059
  #
@@ -28050,6 +28633,7 @@ module Aws::RDS
28050
28633
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
28051
28634
  # resp.db_instance.pending_modified_values.engine #=> String
28052
28635
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
28636
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
28053
28637
  # resp.db_instance.latest_restorable_time #=> Time
28054
28638
  # resp.db_instance.multi_az #=> Boolean
28055
28639
  # resp.db_instance.engine_version #=> String
@@ -28145,6 +28729,7 @@ module Aws::RDS
28145
28729
  # resp.db_instance.percent_progress #=> String
28146
28730
  # resp.db_instance.dedicated_log_volume #=> Boolean
28147
28731
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
28732
+ # resp.db_instance.multi_tenant #=> Boolean
28148
28733
  #
28149
28734
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
28150
28735
  #
@@ -28254,6 +28839,7 @@ module Aws::RDS
28254
28839
  # resp.db_instance_automated_backup.storage_throughput #=> Integer
28255
28840
  # resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
28256
28841
  # resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
28842
+ # resp.db_instance_automated_backup.multi_tenant #=> Boolean
28257
28843
  #
28258
28844
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
28259
28845
  #
@@ -28647,6 +29233,7 @@ module Aws::RDS
28647
29233
  # resp.db_instance.pending_modified_values.storage_throughput #=> Integer
28648
29234
  # resp.db_instance.pending_modified_values.engine #=> String
28649
29235
  # resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
29236
+ # resp.db_instance.pending_modified_values.multi_tenant #=> Boolean
28650
29237
  # resp.db_instance.latest_restorable_time #=> Time
28651
29238
  # resp.db_instance.multi_az #=> Boolean
28652
29239
  # resp.db_instance.engine_version #=> String
@@ -28742,6 +29329,7 @@ module Aws::RDS
28742
29329
  # resp.db_instance.percent_progress #=> String
28743
29330
  # resp.db_instance.dedicated_log_volume #=> Boolean
28744
29331
  # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
29332
+ # resp.db_instance.multi_tenant #=> Boolean
28745
29333
  #
28746
29334
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
28747
29335
  #
@@ -28765,7 +29353,7 @@ module Aws::RDS
28765
29353
  params: params,
28766
29354
  config: config)
28767
29355
  context[:gem_name] = 'aws-sdk-rds'
28768
- context[:gem_version] = '1.200.0'
29356
+ context[:gem_version] = '1.201.0'
28769
29357
  Seahorse::Client::Request.new(handlers, context)
28770
29358
  end
28771
29359
 
@@ -28841,6 +29429,8 @@ module Aws::RDS
28841
29429
  # | db_instance_deleted | {Client#describe_db_instances} | 30 | 60 |
28842
29430
  # | db_snapshot_available | {Client#describe_db_snapshots} | 30 | 60 |
28843
29431
  # | db_snapshot_deleted | {Client#describe_db_snapshots} | 30 | 60 |
29432
+ # | tenant_database_available | {Client#describe_tenant_databases} | 30 | 60 |
29433
+ # | tenant_database_deleted | {Client#describe_tenant_databases} | 30 | 60 |
28844
29434
  #
28845
29435
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
28846
29436
  # because the waiter has entered a state that it will not transition
@@ -28898,7 +29488,9 @@ module Aws::RDS
28898
29488
  db_instance_available: Waiters::DBInstanceAvailable,
28899
29489
  db_instance_deleted: Waiters::DBInstanceDeleted,
28900
29490
  db_snapshot_available: Waiters::DBSnapshotAvailable,
28901
- db_snapshot_deleted: Waiters::DBSnapshotDeleted
29491
+ db_snapshot_deleted: Waiters::DBSnapshotDeleted,
29492
+ tenant_database_available: Waiters::TenantDatabaseAvailable,
29493
+ tenant_database_deleted: Waiters::TenantDatabaseDeleted
28902
29494
  }
28903
29495
  end
28904
29496