aws-sdk-rds 1.259.0 → 1.260.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-rds/client.rb +40 -4
- data/lib/aws-sdk-rds/client_api.rb +5 -0
- data/lib/aws-sdk-rds/types.rb +42 -1
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +5 -1
- data/sig/types.rbs +4 -0
- 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: 15e24a9114b6d22257d3abc39f4f008852f664cee5a6e602c4bd073a838eb060
|
4
|
+
data.tar.gz: 23a39ec7ea92390bbc278837725b3ff2ead5a42feab1fed7fbf1982d4f183a1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2265d9d45d17e2ec3dbe07fcd13ff002a05ae7b6bbbcfb9c2be754d5f485f110922d41cecd3cc078812fb32cb739b535c28a7785a6f4bd82704343400c54168
|
7
|
+
data.tar.gz: '088dbbe8ecf49633801914673831f585f9af89f3a5dfa36ddf67cd3769ad32aa1b6d8cc9e63004684c9439dafd6847d89a5692dc5e4b6681b54cbebb599b0806'
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.260.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2075,9 +2075,8 @@ module Aws::RDS
|
|
2075
2075
|
# A blue/green deployment creates a staging environment that copies the
|
2076
2076
|
# production environment. In a blue/green deployment, the blue
|
2077
2077
|
# environment is the current production environment. The green
|
2078
|
-
# environment is the staging environment
|
2079
|
-
#
|
2080
|
-
# replication.
|
2078
|
+
# environment is the staging environment, and it stays in sync with the
|
2079
|
+
# current production environment.
|
2081
2080
|
#
|
2082
2081
|
# You can make changes to the databases in the green environment without
|
2083
2082
|
# affecting production workloads. For example, you can upgrade the major
|
@@ -2160,6 +2159,39 @@ module Aws::RDS
|
|
2160
2159
|
#
|
2161
2160
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
2162
2161
|
#
|
2162
|
+
# @option params [Integer] :target_iops
|
2163
|
+
# The amount of Provisioned IOPS (input/output operations per second) to
|
2164
|
+
# allocate for the green DB instance. For information about valid IOPS
|
2165
|
+
# values, see [Amazon RDS DB instance storage][1] in the *Amazon RDS
|
2166
|
+
# User Guide*.
|
2167
|
+
#
|
2168
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2169
|
+
#
|
2170
|
+
#
|
2171
|
+
#
|
2172
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
2173
|
+
#
|
2174
|
+
# @option params [String] :target_storage_type
|
2175
|
+
# The storage type to associate with the green DB instance.
|
2176
|
+
#
|
2177
|
+
# Valid Values: `gp2 | gp3 | io1 | io2`
|
2178
|
+
#
|
2179
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2180
|
+
#
|
2181
|
+
# @option params [Integer] :target_allocated_storage
|
2182
|
+
# The amount of storage in gibibytes (GiB) to allocate for the green DB
|
2183
|
+
# instance. You can choose to increase or decrease the allocated storage
|
2184
|
+
# on the green DB instance.
|
2185
|
+
#
|
2186
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2187
|
+
#
|
2188
|
+
# @option params [Integer] :target_storage_throughput
|
2189
|
+
# The storage throughput value for the green DB instance.
|
2190
|
+
#
|
2191
|
+
# This setting applies only to the `gp3` storage type.
|
2192
|
+
#
|
2193
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
2194
|
+
#
|
2163
2195
|
# @return [Types::CreateBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2164
2196
|
#
|
2165
2197
|
# * {Types::CreateBlueGreenDeploymentResponse#blue_green_deployment #blue_green_deployment} => Types::BlueGreenDeployment
|
@@ -2302,6 +2334,10 @@ module Aws::RDS
|
|
2302
2334
|
# ],
|
2303
2335
|
# target_db_instance_class: "TargetDBInstanceClass",
|
2304
2336
|
# upgrade_target_storage_config: false,
|
2337
|
+
# target_iops: 1,
|
2338
|
+
# target_storage_type: "TargetStorageType",
|
2339
|
+
# target_allocated_storage: 1,
|
2340
|
+
# target_storage_throughput: 1,
|
2305
2341
|
# })
|
2306
2342
|
#
|
2307
2343
|
# @example Response structure
|
@@ -31709,7 +31745,7 @@ module Aws::RDS
|
|
31709
31745
|
tracer: tracer
|
31710
31746
|
)
|
31711
31747
|
context[:gem_name] = 'aws-sdk-rds'
|
31712
|
-
context[:gem_version] = '1.
|
31748
|
+
context[:gem_version] = '1.260.0'
|
31713
31749
|
Seahorse::Client::Request.new(handlers, context)
|
31714
31750
|
end
|
31715
31751
|
|
@@ -738,6 +738,7 @@ module Aws::RDS
|
|
738
738
|
TargetList = Shapes::ListShape.new(name: 'TargetList')
|
739
739
|
TargetRole = Shapes::StringShape.new(name: 'TargetRole')
|
740
740
|
TargetState = Shapes::StringShape.new(name: 'TargetState')
|
741
|
+
TargetStorageType = Shapes::StringShape.new(name: 'TargetStorageType')
|
741
742
|
TargetType = Shapes::StringShape.new(name: 'TargetType')
|
742
743
|
TenantDatabase = Shapes::StructureShape.new(name: 'TenantDatabase')
|
743
744
|
TenantDatabaseAlreadyExistsFault = Shapes::StructureShape.new(name: 'TenantDatabaseAlreadyExistsFault', error: {"code"=>"TenantDatabaseAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
|
@@ -999,6 +1000,10 @@ module Aws::RDS
|
|
999
1000
|
CreateBlueGreenDeploymentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1000
1001
|
CreateBlueGreenDeploymentRequest.add_member(:target_db_instance_class, Shapes::ShapeRef.new(shape: TargetDBInstanceClass, location_name: "TargetDBInstanceClass"))
|
1001
1002
|
CreateBlueGreenDeploymentRequest.add_member(:upgrade_target_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeTargetStorageConfig"))
|
1003
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetIops"))
|
1004
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_storage_type, Shapes::ShapeRef.new(shape: TargetStorageType, location_name: "TargetStorageType"))
|
1005
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetAllocatedStorage"))
|
1006
|
+
CreateBlueGreenDeploymentRequest.add_member(:target_storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "TargetStorageThroughput"))
|
1002
1007
|
CreateBlueGreenDeploymentRequest.struct_class = Types::CreateBlueGreenDeploymentRequest
|
1003
1008
|
|
1004
1009
|
CreateBlueGreenDeploymentResponse.add_member(:blue_green_deployment, Shapes::ShapeRef.new(shape: BlueGreenDeployment, location_name: "BlueGreenDeployment"))
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1860,6 +1860,43 @@ module Aws::RDS
|
|
1860
1860
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
1861
1861
|
# @return [Boolean]
|
1862
1862
|
#
|
1863
|
+
# @!attribute [rw] target_iops
|
1864
|
+
# The amount of Provisioned IOPS (input/output operations per second)
|
1865
|
+
# to allocate for the green DB instance. For information about valid
|
1866
|
+
# IOPS values, see [Amazon RDS DB instance storage][1] in the *Amazon
|
1867
|
+
# RDS User Guide*.
|
1868
|
+
#
|
1869
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
1870
|
+
#
|
1871
|
+
#
|
1872
|
+
#
|
1873
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
1874
|
+
# @return [Integer]
|
1875
|
+
#
|
1876
|
+
# @!attribute [rw] target_storage_type
|
1877
|
+
# The storage type to associate with the green DB instance.
|
1878
|
+
#
|
1879
|
+
# Valid Values: `gp2 | gp3 | io1 | io2`
|
1880
|
+
#
|
1881
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
1882
|
+
# @return [String]
|
1883
|
+
#
|
1884
|
+
# @!attribute [rw] target_allocated_storage
|
1885
|
+
# The amount of storage in gibibytes (GiB) to allocate for the green
|
1886
|
+
# DB instance. You can choose to increase or decrease the allocated
|
1887
|
+
# storage on the green DB instance.
|
1888
|
+
#
|
1889
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
1890
|
+
# @return [Integer]
|
1891
|
+
#
|
1892
|
+
# @!attribute [rw] target_storage_throughput
|
1893
|
+
# The storage throughput value for the green DB instance.
|
1894
|
+
#
|
1895
|
+
# This setting applies only to the `gp3` storage type.
|
1896
|
+
#
|
1897
|
+
# This setting doesn't apply to Amazon Aurora blue/green deployments.
|
1898
|
+
# @return [Integer]
|
1899
|
+
#
|
1863
1900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeploymentRequest AWS API Documentation
|
1864
1901
|
#
|
1865
1902
|
class CreateBlueGreenDeploymentRequest < Struct.new(
|
@@ -1870,7 +1907,11 @@ module Aws::RDS
|
|
1870
1907
|
:target_db_cluster_parameter_group_name,
|
1871
1908
|
:tags,
|
1872
1909
|
:target_db_instance_class,
|
1873
|
-
:upgrade_target_storage_config
|
1910
|
+
:upgrade_target_storage_config,
|
1911
|
+
:target_iops,
|
1912
|
+
:target_storage_type,
|
1913
|
+
:target_allocated_storage,
|
1914
|
+
:target_storage_throughput)
|
1874
1915
|
SENSITIVE = []
|
1875
1916
|
include Aws::Structure
|
1876
1917
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
82
82
|
|
83
|
-
GEM_VERSION = '1.
|
83
|
+
GEM_VERSION = '1.260.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -300,7 +300,11 @@ module Aws
|
|
300
300
|
},
|
301
301
|
],
|
302
302
|
?target_db_instance_class: ::String,
|
303
|
-
?upgrade_target_storage_config: bool
|
303
|
+
?upgrade_target_storage_config: bool,
|
304
|
+
?target_iops: ::Integer,
|
305
|
+
?target_storage_type: ::String,
|
306
|
+
?target_allocated_storage: ::Integer,
|
307
|
+
?target_storage_throughput: ::Integer
|
304
308
|
) -> _CreateBlueGreenDeploymentResponseSuccess
|
305
309
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBlueGreenDeploymentResponseSuccess
|
306
310
|
|
data/sig/types.rbs
CHANGED
@@ -303,6 +303,10 @@ module Aws::RDS
|
|
303
303
|
attr_accessor tags: ::Array[Types::Tag]
|
304
304
|
attr_accessor target_db_instance_class: ::String
|
305
305
|
attr_accessor upgrade_target_storage_config: bool
|
306
|
+
attr_accessor target_iops: ::Integer
|
307
|
+
attr_accessor target_storage_type: ::String
|
308
|
+
attr_accessor target_allocated_storage: ::Integer
|
309
|
+
attr_accessor target_storage_throughput: ::Integer
|
306
310
|
SENSITIVE: []
|
307
311
|
end
|
308
312
|
|
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.
|
4
|
+
version: 1.260.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: 2024-11-
|
11
|
+
date: 2024-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|