aws-sdk-rds 1.179.0 → 1.180.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-rds/account_quota.rb +3 -1
  5. data/lib/aws-sdk-rds/certificate.rb +6 -2
  6. data/lib/aws-sdk-rds/client.rb +58 -7
  7. data/lib/aws-sdk-rds/client_api.rb +2 -0
  8. data/lib/aws-sdk-rds/db_cluster.rb +40 -10
  9. data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +18 -6
  10. data/lib/aws-sdk-rds/db_cluster_snapshot.rb +21 -7
  11. data/lib/aws-sdk-rds/db_engine.rb +12 -4
  12. data/lib/aws-sdk-rds/db_engine_version.rb +12 -4
  13. data/lib/aws-sdk-rds/db_instance.rb +76 -16
  14. data/lib/aws-sdk-rds/db_log_file.rb +6 -2
  15. data/lib/aws-sdk-rds/db_parameter_group.rb +33 -11
  16. data/lib/aws-sdk-rds/db_parameter_group_family.rb +9 -3
  17. data/lib/aws-sdk-rds/db_security_group.rb +27 -9
  18. data/lib/aws-sdk-rds/db_snapshot.rb +30 -10
  19. data/lib/aws-sdk-rds/db_snapshot_attribute.rb +6 -2
  20. data/lib/aws-sdk-rds/db_subnet_group.rb +15 -5
  21. data/lib/aws-sdk-rds/event.rb +3 -1
  22. data/lib/aws-sdk-rds/event_category_map.rb +6 -2
  23. data/lib/aws-sdk-rds/event_subscription.rb +21 -7
  24. data/lib/aws-sdk-rds/option_group.rb +18 -6
  25. data/lib/aws-sdk-rds/option_group_option.rb +3 -1
  26. data/lib/aws-sdk-rds/parameter.rb +3 -1
  27. data/lib/aws-sdk-rds/pending_maintenance_action.rb +12 -4
  28. data/lib/aws-sdk-rds/reserved_db_instance.rb +6 -2
  29. data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +9 -3
  30. data/lib/aws-sdk-rds/resource.rb +85 -25
  31. data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +3 -1
  32. data/lib/aws-sdk-rds/types.rb +48 -8
  33. data/lib/aws-sdk-rds.rb +1 -1
  34. metadata +4 -4
@@ -2551,6 +2551,16 @@ module Aws::RDS
2551
2551
  # Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
2552
2552
  #
2553
2553
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
2554
+ #
2555
+ # For more information on storage types for Aurora DB clusters, see
2556
+ # [Storage configurations for Amazon Aurora DB clusters][1]. For more
2557
+ # information on storage types for Multi-AZ DB clusters, see [Settings
2558
+ # for creating Multi-AZ DB clusters][2].
2559
+ #
2560
+ #
2561
+ #
2562
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Overview.StorageReliability.html#aurora-storage-type
2563
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/create-multi-az-db-cluster.html#create-multi-az-db-cluster-settings
2554
2564
  # @return [String]
2555
2565
  #
2556
2566
  # @!attribute [rw] iops
@@ -16255,6 +16265,36 @@ module Aws::RDS
16255
16265
  # each Amazon Web Services Region.
16256
16266
  # @return [String]
16257
16267
  #
16268
+ # @!attribute [rw] engine
16269
+ # The target Oracle DB engine when you convert a non-CDB to a CDB.
16270
+ # This intermediate step is necessary to upgrade an Oracle Database
16271
+ # 19c non-CDB to an Oracle Database 21c CDB.
16272
+ #
16273
+ # Note the following requirements:
16274
+ #
16275
+ # * Make sure that you specify `oracle-ee-cdb` or `oracle-se2-cdb`.
16276
+ #
16277
+ # * Make sure that your DB engine runs Oracle Database 19c with an
16278
+ # April 2021 or later RU.
16279
+ #
16280
+ # Note the following limitations:
16281
+ #
16282
+ # * You can't convert a CDB to a non-CDB.
16283
+ #
16284
+ # * You can't convert a replica database.
16285
+ #
16286
+ # * You can't convert a non-CDB to a CDB and upgrade the engine
16287
+ # version in the same command.
16288
+ #
16289
+ # * You can't convert the existing custom parameter or option group
16290
+ # when it has options or parameters that are permanent or
16291
+ # persistent. In this situation, the DB instance reverts to the
16292
+ # default option and parameter group. To avoid reverting to the
16293
+ # default, specify a new parameter group with
16294
+ # `--db-parameter-group-name` and a new option group with
16295
+ # `--option-group-name`.
16296
+ # @return [String]
16297
+ #
16258
16298
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
16259
16299
  #
16260
16300
  class ModifyDBInstanceMessage < Struct.new(
@@ -16309,7 +16349,8 @@ module Aws::RDS
16309
16349
  :storage_throughput,
16310
16350
  :manage_master_user_password,
16311
16351
  :rotate_master_user_password,
16312
- :master_user_secret_kms_key_id)
16352
+ :master_user_secret_kms_key_id,
16353
+ :engine)
16313
16354
  SENSITIVE = []
16314
16355
  include Aws::Structure
16315
16356
  end
@@ -16634,12 +16675,6 @@ module Aws::RDS
16634
16675
  #
16635
16676
  # **Oracle**
16636
16677
  #
16637
- # * `19.0.0.0.ru-2022-01.rur-2022-01.r1` (supported for 12.2.0.1 DB
16638
- # snapshots)
16639
- #
16640
- # * `19.0.0.0.ru-2022-07.rur-2022-07.r1` (supported for 12.1.0.2 DB
16641
- # snapshots)
16642
- #
16643
16678
  # * `12.1.0.2.v8` (supported for 12.1.0.1 DB snapshots)
16644
16679
  #
16645
16680
  # * `11.2.0.4.v12` (supported for 11.2.0.2 DB snapshots)
@@ -17983,6 +18018,10 @@ module Aws::RDS
17983
18018
  # The storage throughput of the DB instance.
17984
18019
  # @return [Integer]
17985
18020
  #
18021
+ # @!attribute [rw] engine
18022
+ # The database engine of the DB instance.
18023
+ # @return [String]
18024
+ #
17986
18025
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
17987
18026
  #
17988
18027
  class PendingModifiedValues < Struct.new(
@@ -18004,7 +18043,8 @@ module Aws::RDS
18004
18043
  :iam_database_authentication_enabled,
18005
18044
  :automation_mode,
18006
18045
  :resume_full_automation_mode_time,
18007
- :storage_throughput)
18046
+ :storage_throughput,
18047
+ :engine)
18008
18048
  SENSITIVE = []
18009
18049
  include Aws::Structure
18010
18050
  end
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.179.0'
81
+ GEM_VERSION = '1.180.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.179.0
4
+ version: 1.180.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-05-18 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
36
+ version: 3.174.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.165.0
46
+ version: 3.174.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: