aws-sdk-rds 1.274.0 → 1.282.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 +40 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +305 -96
- data/lib/aws-sdk-rds/client_api.rb +199 -145
- data/lib/aws-sdk-rds/db_cluster.rb +17 -9
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +4 -4
- data/lib/aws-sdk-rds/db_instance.rb +116 -42
- data/lib/aws-sdk-rds/db_snapshot.rb +31 -6
- data/lib/aws-sdk-rds/db_subnet_group.rb +4 -1
- data/lib/aws-sdk-rds/resource.rb +8 -6
- data/lib/aws-sdk-rds/types.rb +408 -110
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +17 -0
- data/sig/db_cluster.rbs +3 -0
- data/sig/db_instance.rbs +1 -0
- data/sig/db_snapshot.rbs +5 -0
- data/sig/types.rbs +33 -0
- metadata +6 -9
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.282.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -262,6 +262,8 @@ module Aws
|
|
262
262
|
?option_group_name: ::String,
|
263
263
|
?target_custom_availability_zone: ::String,
|
264
264
|
?copy_option_group: bool,
|
265
|
+
?snapshot_availability_zone: ::String,
|
266
|
+
?snapshot_target: ::String,
|
265
267
|
?source_region: ::String
|
266
268
|
) -> _CopyDBSnapshotResponseSuccess
|
267
269
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyDBSnapshotResponseSuccess
|
@@ -659,6 +661,7 @@ module Aws
|
|
659
661
|
?network_type: ::String,
|
660
662
|
?storage_throughput: ::Integer,
|
661
663
|
?enable_customer_owned_ip: bool,
|
664
|
+
?backup_target: ::String,
|
662
665
|
?allocated_storage: ::Integer,
|
663
666
|
?source_db_cluster_identifier: ::String,
|
664
667
|
?dedicated_log_volume: bool,
|
@@ -1507,6 +1510,20 @@ module Aws
|
|
1507
1510
|
) -> _DescribeDBLogFilesResponseSuccess
|
1508
1511
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBLogFilesResponseSuccess
|
1509
1512
|
|
1513
|
+
interface _DescribeDBMajorEngineVersionsResponseSuccess
|
1514
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDBMajorEngineVersionsResponse]
|
1515
|
+
def db_major_engine_versions: () -> ::Array[Types::DBMajorEngineVersion]
|
1516
|
+
def marker: () -> ::String
|
1517
|
+
end
|
1518
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#describe_db_major_engine_versions-instance_method
|
1519
|
+
def describe_db_major_engine_versions: (
|
1520
|
+
?engine: ::String,
|
1521
|
+
?major_engine_version: ::String,
|
1522
|
+
?marker: ::String,
|
1523
|
+
?max_records: ::Integer
|
1524
|
+
) -> _DescribeDBMajorEngineVersionsResponseSuccess
|
1525
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDBMajorEngineVersionsResponseSuccess
|
1526
|
+
|
1510
1527
|
interface _DescribeDBParameterGroupsResponseSuccess
|
1511
1528
|
include ::Seahorse::Client::_ResponseSuccess[Types::DBParameterGroupsMessage]
|
1512
1529
|
def marker: () -> ::String
|
data/sig/db_cluster.rbs
CHANGED
@@ -183,6 +183,9 @@ module Aws
|
|
183
183
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#tag_list-instance_method
|
184
184
|
def tag_list: () -> ::Array[Types::Tag]
|
185
185
|
|
186
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#global_cluster_identifier-instance_method
|
187
|
+
def global_cluster_identifier: () -> ::String
|
188
|
+
|
186
189
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#global_write_forwarding_status-instance_method
|
187
190
|
def global_write_forwarding_status: () -> ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
|
188
191
|
|
data/sig/db_instance.rbs
CHANGED
@@ -419,6 +419,7 @@ module Aws
|
|
419
419
|
?network_type: ::String,
|
420
420
|
?storage_throughput: ::Integer,
|
421
421
|
?enable_customer_owned_ip: bool,
|
422
|
+
?backup_target: ::String,
|
422
423
|
?allocated_storage: ::Integer,
|
423
424
|
?source_db_cluster_identifier: ::String,
|
424
425
|
?dedicated_log_volume: bool,
|
data/sig/db_snapshot.rbs
CHANGED
@@ -124,6 +124,9 @@ module Aws
|
|
124
124
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#multi_tenant-instance_method
|
125
125
|
def multi_tenant: () -> bool
|
126
126
|
|
127
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_availability_zone-instance_method
|
128
|
+
def snapshot_availability_zone: () -> ::String
|
129
|
+
|
127
130
|
def client: () -> Client
|
128
131
|
|
129
132
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#load-instance_method
|
@@ -163,6 +166,8 @@ module Aws
|
|
163
166
|
?option_group_name: ::String,
|
164
167
|
?target_custom_availability_zone: ::String,
|
165
168
|
?copy_option_group: bool,
|
169
|
+
?snapshot_availability_zone: ::String,
|
170
|
+
?snapshot_target: ::String,
|
166
171
|
?source_region: ::String
|
167
172
|
) -> DBSnapshot
|
168
173
|
| (?Hash[Symbol, untyped]) -> DBSnapshot
|
data/sig/types.rbs
CHANGED
@@ -272,6 +272,8 @@ module Aws::RDS
|
|
272
272
|
attr_accessor option_group_name: ::String
|
273
273
|
attr_accessor target_custom_availability_zone: ::String
|
274
274
|
attr_accessor copy_option_group: bool
|
275
|
+
attr_accessor snapshot_availability_zone: ::String
|
276
|
+
attr_accessor snapshot_target: ::String
|
275
277
|
attr_accessor source_region: ::String
|
276
278
|
SENSITIVE: []
|
277
279
|
end
|
@@ -544,6 +546,7 @@ module Aws::RDS
|
|
544
546
|
attr_accessor network_type: ::String
|
545
547
|
attr_accessor storage_throughput: ::Integer
|
546
548
|
attr_accessor enable_customer_owned_ip: bool
|
549
|
+
attr_accessor backup_target: ::String
|
547
550
|
attr_accessor allocated_storage: ::Integer
|
548
551
|
attr_accessor source_db_cluster_identifier: ::String
|
549
552
|
attr_accessor dedicated_log_volume: bool
|
@@ -811,6 +814,7 @@ module Aws::RDS
|
|
811
814
|
attr_accessor cross_account_clone: bool
|
812
815
|
attr_accessor domain_memberships: ::Array[Types::DomainMembership]
|
813
816
|
attr_accessor tag_list: ::Array[Types::Tag]
|
817
|
+
attr_accessor global_cluster_identifier: ::String
|
814
818
|
attr_accessor global_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
|
815
819
|
attr_accessor global_write_forwarding_requested: bool
|
816
820
|
attr_accessor pending_modified_values: Types::ClusterPendingModifiedValues
|
@@ -1303,6 +1307,13 @@ module Aws::RDS
|
|
1303
1307
|
class DBLogFileNotFoundFault < Aws::EmptyStructure
|
1304
1308
|
end
|
1305
1309
|
|
1310
|
+
class DBMajorEngineVersion
|
1311
|
+
attr_accessor engine: ::String
|
1312
|
+
attr_accessor major_engine_version: ::String
|
1313
|
+
attr_accessor supported_engine_lifecycles: ::Array[Types::SupportedEngineLifecycle]
|
1314
|
+
SENSITIVE: []
|
1315
|
+
end
|
1316
|
+
|
1306
1317
|
class DBParameterGroup
|
1307
1318
|
attr_accessor db_parameter_group_name: ::String
|
1308
1319
|
attr_accessor db_parameter_group_family: ::String
|
@@ -1556,6 +1567,7 @@ module Aws::RDS
|
|
1556
1567
|
attr_accessor db_system_id: ::String
|
1557
1568
|
attr_accessor dedicated_log_volume: bool
|
1558
1569
|
attr_accessor multi_tenant: bool
|
1570
|
+
attr_accessor snapshot_availability_zone: ::String
|
1559
1571
|
SENSITIVE: []
|
1560
1572
|
end
|
1561
1573
|
|
@@ -1992,6 +2004,20 @@ module Aws::RDS
|
|
1992
2004
|
SENSITIVE: []
|
1993
2005
|
end
|
1994
2006
|
|
2007
|
+
class DescribeDBMajorEngineVersionsRequest
|
2008
|
+
attr_accessor engine: ::String
|
2009
|
+
attr_accessor major_engine_version: ::String
|
2010
|
+
attr_accessor marker: ::String
|
2011
|
+
attr_accessor max_records: ::Integer
|
2012
|
+
SENSITIVE: []
|
2013
|
+
end
|
2014
|
+
|
2015
|
+
class DescribeDBMajorEngineVersionsResponse
|
2016
|
+
attr_accessor db_major_engine_versions: ::Array[Types::DBMajorEngineVersion]
|
2017
|
+
attr_accessor marker: ::String
|
2018
|
+
SENSITIVE: []
|
2019
|
+
end
|
2020
|
+
|
1995
2021
|
class DescribeDBParameterGroupsMessage
|
1996
2022
|
attr_accessor db_parameter_group_name: ::String
|
1997
2023
|
attr_accessor filters: ::Array[Types::Filter]
|
@@ -4198,6 +4224,13 @@ module Aws::RDS
|
|
4198
4224
|
class SubscriptionNotFoundFault < Aws::EmptyStructure
|
4199
4225
|
end
|
4200
4226
|
|
4227
|
+
class SupportedEngineLifecycle
|
4228
|
+
attr_accessor lifecycle_support_name: ("open-source-rds-standard-support" | "open-source-rds-extended-support")
|
4229
|
+
attr_accessor lifecycle_support_start_date: ::Time
|
4230
|
+
attr_accessor lifecycle_support_end_date: ::Time
|
4231
|
+
SENSITIVE: []
|
4232
|
+
end
|
4233
|
+
|
4201
4234
|
class SwitchoverBlueGreenDeploymentRequest
|
4202
4235
|
attr_accessor blue_green_deployment_identifier: ::String
|
4203
4236
|
attr_accessor switchover_timeout: ::Integer
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.282.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -19,7 +18,7 @@ dependencies:
|
|
19
18
|
version: '3'
|
20
19
|
- - ">="
|
21
20
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
21
|
+
version: 3.225.0
|
23
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +28,7 @@ dependencies:
|
|
29
28
|
version: '3'
|
30
29
|
- - ">="
|
31
30
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
33
32
|
- !ruby/object:Gem::Dependency
|
34
33
|
name: aws-sigv4
|
35
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -130,7 +129,6 @@ licenses:
|
|
130
129
|
metadata:
|
131
130
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rds
|
132
131
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rds/CHANGELOG.md
|
133
|
-
post_install_message:
|
134
132
|
rdoc_options: []
|
135
133
|
require_paths:
|
136
134
|
- lib
|
@@ -138,15 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
138
136
|
requirements:
|
139
137
|
- - ">="
|
140
138
|
- !ruby/object:Gem::Version
|
141
|
-
version: '2.
|
139
|
+
version: '2.7'
|
142
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
143
141
|
requirements:
|
144
142
|
- - ">="
|
145
143
|
- !ruby/object:Gem::Version
|
146
144
|
version: '0'
|
147
145
|
requirements: []
|
148
|
-
rubygems_version: 3.
|
149
|
-
signing_key:
|
146
|
+
rubygems_version: 3.6.7
|
150
147
|
specification_version: 4
|
151
148
|
summary: AWS SDK for Ruby - Amazon RDS
|
152
149
|
test_files: []
|