aws-sdk-docdb 1.52.0 → 1.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-docdb/client.rb +18 -3
- data/lib/aws-sdk-docdb/client_api.rb +1 -0
- data/lib/aws-sdk-docdb/types.rb +18 -2
- data/lib/aws-sdk-docdb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 44372cabe480a9817b82d9e7118bf49749063fc7fbde1274d3000fc377824b32
|
|
4
|
+
data.tar.gz: b33f4aa956533f24d847e45c3bf78a5974072ce49ca8bf2f36c7b6816a8bb1ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd5cd89cad5583994e5a9804569d9f1929b4de4e13ac3b7aee61160cf69a1f2d7beb98af9556e8ecdc65728f07381cc80498c9559fabbb2e046e2827b36d91b7
|
|
7
|
+
data.tar.gz: fdfcf07ab86862389a60359eb7c686ba7b740b7169f1674a4838691fca4891ac8f99fd3737ce90f46421d94575864f02e5c1e4100a30459a95b42e0e21d46c7a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.53.0
|
data/lib/aws-sdk-docdb/client.rb
CHANGED
|
@@ -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.
|
|
3733
|
-
#
|
|
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.
|
|
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
|
|
data/lib/aws-sdk-docdb/types.rb
CHANGED
|
@@ -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.
|
|
3987
|
-
#
|
|
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
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.
|
|
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
|
+
date: 2023-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|