aws-sdk-docdb 1.52.0 → 1.53.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: 6fdf5a9693eb89d1c45a6d1d1e42c008c0879da66f95c2c4ca25e5cbe9be5da0
4
- data.tar.gz: f0ce968cea3aec8263c96c262fc3362c30b50cd5db49350d8304e1f27deb4dd4
3
+ metadata.gz: 44372cabe480a9817b82d9e7118bf49749063fc7fbde1274d3000fc377824b32
4
+ data.tar.gz: b33f4aa956533f24d847e45c3bf78a5974072ce49ca8bf2f36c7b6816a8bb1ee
5
5
  SHA512:
6
- metadata.gz: 4502f5c73a58ceaebb71713905e8eb85f992ee80b5545e2fcc1e7aa6f8ef1ad75ef44fddc2ddc788fd01025deed21ba211e9e1c39f2ff5427018ebfdc4777e03
7
- data.tar.gz: db149e922d432ebf2b43ffcfecde3150b8657649eff26e52ed99508aa959b5e75d7d469f08a82b4a01030d3f236673b8ad66bd473b5b2a46ad13e98b14dc551f
6
+ metadata.gz: bd5cd89cad5583994e5a9804569d9f1929b4de4e13ac3b7aee61160cf69a1f2d7beb98af9556e8ecdc65728f07381cc80498c9559fabbb2e046e2827b36d91b7
7
+ data.tar.gz: fdfcf07ab86862389a60359eb7c686ba7b740b7169f1674a4838691fca4891ac8f99fd3737ce90f46421d94575864f02e5c1e4100a30459a95b42e0e21d46c7a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.0 (2023-07-17)
5
+ ------------------
6
+
7
+ * Feature - Added major version upgrade option in ModifyDBCluster API
8
+
4
9
  1.52.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.53.0
@@ -3729,8 +3729,22 @@ module Aws::DocDB
3729
3729
  #
3730
3730
  # @option params [String] :engine_version
3731
3731
  # The version number of the database engine to which you want to
3732
- # upgrade. Modifying engine version is not supported on Amazon
3733
- # DocumentDB.
3732
+ # upgrade. Changing this parameter results in an outage. The change is
3733
+ # applied during the next maintenance window unless `ApplyImmediately`
3734
+ # is enabled.
3735
+ #
3736
+ # To list all of the available engine versions for Amazon DocumentDB use
3737
+ # the following command:
3738
+ #
3739
+ # `aws docdb describe-db-engine-versions --engine docdb --query
3740
+ # "DBEngineVersions[].EngineVersion"`
3741
+ #
3742
+ # @option params [Boolean] :allow_major_version_upgrade
3743
+ # A value that indicates whether major version upgrades are allowed.
3744
+ #
3745
+ # Constraints: You must allow major version upgrades when specifying a
3746
+ # value for the `EngineVersion` parameter that is a different major
3747
+ # version than the DB cluster's current version.
3734
3748
  #
3735
3749
  # @option params [Boolean] :deletion_protection
3736
3750
  # Specifies whether this cluster can be deleted. If `DeletionProtection`
@@ -3760,6 +3774,7 @@ module Aws::DocDB
3760
3774
  # disable_log_types: ["String"],
3761
3775
  # },
3762
3776
  # engine_version: "String",
3777
+ # allow_major_version_upgrade: false,
3763
3778
  # deletion_protection: false,
3764
3779
  # })
3765
3780
  #
@@ -5229,7 +5244,7 @@ module Aws::DocDB
5229
5244
  params: params,
5230
5245
  config: config)
5231
5246
  context[:gem_name] = 'aws-sdk-docdb'
5232
- context[:gem_version] = '1.52.0'
5247
+ context[:gem_version] = '1.53.0'
5233
5248
  Seahorse::Client::Request.new(handlers, context)
5234
5249
  end
5235
5250
 
@@ -946,6 +946,7 @@ module Aws::DocDB
946
946
  ModifyDBClusterMessage.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredMaintenanceWindow"))
947
947
  ModifyDBClusterMessage.add_member(:cloudwatch_logs_export_configuration, Shapes::ShapeRef.new(shape: CloudwatchLogsExportConfiguration, location_name: "CloudwatchLogsExportConfiguration"))
948
948
  ModifyDBClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
949
+ ModifyDBClusterMessage.add_member(:allow_major_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowMajorVersionUpgrade"))
949
950
  ModifyDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
950
951
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
951
952
 
@@ -3983,10 +3983,25 @@ module Aws::DocDB
3983
3983
  #
3984
3984
  # @!attribute [rw] engine_version
3985
3985
  # The version number of the database engine to which you want to
3986
- # upgrade. Modifying engine version is not supported on Amazon
3987
- # DocumentDB.
3986
+ # upgrade. Changing this parameter results in an outage. The change is
3987
+ # applied during the next maintenance window unless `ApplyImmediately`
3988
+ # is enabled.
3989
+ #
3990
+ # To list all of the available engine versions for Amazon DocumentDB
3991
+ # use the following command:
3992
+ #
3993
+ # `aws docdb describe-db-engine-versions --engine docdb --query
3994
+ # "DBEngineVersions[].EngineVersion"`
3988
3995
  # @return [String]
3989
3996
  #
3997
+ # @!attribute [rw] allow_major_version_upgrade
3998
+ # A value that indicates whether major version upgrades are allowed.
3999
+ #
4000
+ # Constraints: You must allow major version upgrades when specifying a
4001
+ # value for the `EngineVersion` parameter that is a different major
4002
+ # version than the DB cluster's current version.
4003
+ # @return [Boolean]
4004
+ #
3990
4005
  # @!attribute [rw] deletion_protection
3991
4006
  # Specifies whether this cluster can be deleted. If
3992
4007
  # `DeletionProtection` is enabled, the cluster cannot be deleted
@@ -4010,6 +4025,7 @@ module Aws::DocDB
4010
4025
  :preferred_maintenance_window,
4011
4026
  :cloudwatch_logs_export_configuration,
4012
4027
  :engine_version,
4028
+ :allow_major_version_upgrade,
4013
4029
  :deletion_protection)
4014
4030
  SENSITIVE = []
4015
4031
  include Aws::Structure
data/lib/aws-sdk-docdb.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-docdb/customizations'
53
53
  # @!group service
54
54
  module Aws::DocDB
55
55
 
56
- GEM_VERSION = '1.52.0'
56
+ GEM_VERSION = '1.53.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-docdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.53.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-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core