aws-sdk-rds 1.293.0 → 1.294.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 +1349 -1352
- data/lib/aws-sdk-rds/client_api.rb +202 -158
- data/lib/aws-sdk-rds/db_cluster.rb +341 -341
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +25 -25
- data/lib/aws-sdk-rds/db_engine_version.rb +55 -55
- data/lib/aws-sdk-rds/db_instance.rb +291 -291
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +74 -74
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +182 -182
- data/lib/aws-sdk-rds/types.rb +1038 -1041
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +100 -100
- data/sig/db_cluster.rbs +65 -65
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +44 -44
- data/sig/db_snapshot.rbs +14 -14
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +21 -21
- data/sig/types.rbs +120 -120
- metadata +1 -1
@@ -291,7 +291,7 @@ module Aws::RDS
|
|
291
291
|
# parameters: [ # required
|
292
292
|
# {
|
293
293
|
# parameter_name: "String",
|
294
|
-
# parameter_value: "
|
294
|
+
# parameter_value: "PotentiallySensitiveParameterValue",
|
295
295
|
# description: "String",
|
296
296
|
# source: "String",
|
297
297
|
# apply_type: "String",
|
@@ -342,7 +342,7 @@ module Aws::RDS
|
|
342
342
|
# parameters: [
|
343
343
|
# {
|
344
344
|
# parameter_name: "String",
|
345
|
-
# parameter_value: "
|
345
|
+
# parameter_value: "PotentiallySensitiveParameterValue",
|
346
346
|
# description: "String",
|
347
347
|
# source: "String",
|
348
348
|
# apply_type: "String",
|
@@ -192,12 +192,6 @@ module Aws::RDS
|
|
192
192
|
data[:tag_list]
|
193
193
|
end
|
194
194
|
|
195
|
-
# Reserved for future use.
|
196
|
-
# @return [String]
|
197
|
-
def db_system_id
|
198
|
-
data[:db_system_id]
|
199
|
-
end
|
200
|
-
|
201
195
|
# The storage type associated with the DB cluster snapshot.
|
202
196
|
#
|
203
197
|
# This setting is only for Aurora DB clusters.
|
@@ -206,13 +200,6 @@ module Aws::RDS
|
|
206
200
|
data[:storage_type]
|
207
201
|
end
|
208
202
|
|
209
|
-
# The resource ID of the DB cluster that this DB cluster snapshot was
|
210
|
-
# created from.
|
211
|
-
# @return [String]
|
212
|
-
def db_cluster_resource_id
|
213
|
-
data[:db_cluster_resource_id]
|
214
|
-
end
|
215
|
-
|
216
203
|
# The storage throughput for the DB cluster snapshot. The throughput is
|
217
204
|
# automatically set based on the IOPS that you provision, and is not
|
218
205
|
# configurable.
|
@@ -223,6 +210,19 @@ module Aws::RDS
|
|
223
210
|
data[:storage_throughput]
|
224
211
|
end
|
225
212
|
|
213
|
+
# The resource ID of the DB cluster that this DB cluster snapshot was
|
214
|
+
# created from.
|
215
|
+
# @return [String]
|
216
|
+
def db_cluster_resource_id
|
217
|
+
data[:db_cluster_resource_id]
|
218
|
+
end
|
219
|
+
|
220
|
+
# Reserved for future use.
|
221
|
+
# @return [String]
|
222
|
+
def db_system_id
|
223
|
+
data[:db_system_id]
|
224
|
+
end
|
225
|
+
|
226
226
|
# @!endgroup
|
227
227
|
|
228
228
|
# @return [Client]
|
@@ -396,7 +396,7 @@ module Aws::RDS
|
|
396
396
|
# dbclustersnapshot = db_cluster_snapshot.copy({
|
397
397
|
# target_db_cluster_snapshot_identifier: "String", # required
|
398
398
|
# kms_key_id: "String",
|
399
|
-
# pre_signed_url: "
|
399
|
+
# pre_signed_url: "SensitiveString",
|
400
400
|
# copy_tags: false,
|
401
401
|
# tags: [
|
402
402
|
# {
|
@@ -589,12 +589,12 @@ module Aws::RDS
|
|
589
589
|
# storage_type: "String",
|
590
590
|
# iops: 1,
|
591
591
|
# publicly_accessible: false,
|
592
|
+
# network_type: "String",
|
592
593
|
# serverless_v2_scaling_configuration: {
|
593
594
|
# min_capacity: 1.0,
|
594
595
|
# max_capacity: 1.0,
|
595
596
|
# seconds_until_auto_pause: 1,
|
596
597
|
# },
|
597
|
-
# network_type: "String",
|
598
598
|
# rds_custom_cluster_configuration: {
|
599
599
|
# interconnect_subnet_id: "String",
|
600
600
|
# transit_gateway_multicast_domain_id: "String",
|
@@ -957,16 +957,6 @@ module Aws::RDS
|
|
957
957
|
# attached to it, the DB cluster is public.
|
958
958
|
#
|
959
959
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
960
|
-
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
961
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
962
|
-
# cluster.
|
963
|
-
#
|
964
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
965
|
-
# the *Amazon Aurora User Guide*.
|
966
|
-
#
|
967
|
-
#
|
968
|
-
#
|
969
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
970
960
|
# @option options [String] :network_type
|
971
961
|
# The network type of the DB cluster.
|
972
962
|
#
|
@@ -988,6 +978,16 @@ module Aws::RDS
|
|
988
978
|
#
|
989
979
|
#
|
990
980
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
981
|
+
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
982
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
983
|
+
# cluster.
|
984
|
+
#
|
985
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
986
|
+
# the *Amazon Aurora User Guide*.
|
987
|
+
#
|
988
|
+
#
|
989
|
+
#
|
990
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
991
991
|
# @option options [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
992
992
|
# Reserved for future use.
|
993
993
|
# @option options [Integer] :monitoring_interval
|
@@ -44,6 +44,42 @@ module Aws::RDS
|
|
44
44
|
end
|
45
45
|
alias :engine_version :version
|
46
46
|
|
47
|
+
# The major engine version of the CEV.
|
48
|
+
# @return [String]
|
49
|
+
def major_engine_version
|
50
|
+
data[:major_engine_version]
|
51
|
+
end
|
52
|
+
|
53
|
+
# The name of the Amazon S3 bucket that contains your database
|
54
|
+
# installation files.
|
55
|
+
# @return [String]
|
56
|
+
def database_installation_files_s3_bucket_name
|
57
|
+
data[:database_installation_files_s3_bucket_name]
|
58
|
+
end
|
59
|
+
|
60
|
+
# The Amazon S3 directory that contains the database installation files.
|
61
|
+
# If not specified, then no prefix is assumed.
|
62
|
+
# @return [String]
|
63
|
+
def database_installation_files_s3_prefix
|
64
|
+
data[:database_installation_files_s3_prefix]
|
65
|
+
end
|
66
|
+
|
67
|
+
# JSON string that lists the installation files and parameters that RDS
|
68
|
+
# Custom uses to create a custom engine version (CEV). RDS Custom
|
69
|
+
# applies the patches in the order in which they're listed in the
|
70
|
+
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
71
|
+
# user and group using the installation parameters. For more
|
72
|
+
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
73
|
+
# RDS User Guide*.
|
74
|
+
#
|
75
|
+
#
|
76
|
+
#
|
77
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
78
|
+
# @return [String]
|
79
|
+
def custom_db_engine_version_manifest
|
80
|
+
data[:custom_db_engine_version_manifest]
|
81
|
+
end
|
82
|
+
|
47
83
|
# The name of the DB parameter group family for the database engine.
|
48
84
|
# @return [String]
|
49
85
|
def db_parameter_group_family
|
@@ -56,6 +92,12 @@ module Aws::RDS
|
|
56
92
|
data[:db_engine_description]
|
57
93
|
end
|
58
94
|
|
95
|
+
# The ARN of the custom engine version.
|
96
|
+
# @return [String]
|
97
|
+
def db_engine_version_arn
|
98
|
+
data[:db_engine_version_arn]
|
99
|
+
end
|
100
|
+
|
59
101
|
# The description of the database engine version.
|
60
102
|
# @return [String]
|
61
103
|
def db_engine_version_description
|
@@ -83,6 +125,19 @@ module Aws::RDS
|
|
83
125
|
data[:db_engine_media_type]
|
84
126
|
end
|
85
127
|
|
128
|
+
# The Amazon Web Services KMS key identifier for an encrypted CEV. This
|
129
|
+
# parameter is required for RDS Custom, but optional for Amazon RDS.
|
130
|
+
# @return [String]
|
131
|
+
def kms_key_id
|
132
|
+
data[:kms_key_id]
|
133
|
+
end
|
134
|
+
|
135
|
+
# The creation time of the DB engine version.
|
136
|
+
# @return [Time]
|
137
|
+
def create_time
|
138
|
+
data[:create_time]
|
139
|
+
end
|
140
|
+
|
86
141
|
# A list of the character sets supported by this engine for the
|
87
142
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
88
143
|
# @return [Array<Types::CharacterSet>]
|
@@ -181,45 +236,6 @@ module Aws::RDS
|
|
181
236
|
data[:supports_global_databases]
|
182
237
|
end
|
183
238
|
|
184
|
-
# The major engine version of the CEV.
|
185
|
-
# @return [String]
|
186
|
-
def major_engine_version
|
187
|
-
data[:major_engine_version]
|
188
|
-
end
|
189
|
-
|
190
|
-
# The name of the Amazon S3 bucket that contains your database
|
191
|
-
# installation files.
|
192
|
-
# @return [String]
|
193
|
-
def database_installation_files_s3_bucket_name
|
194
|
-
data[:database_installation_files_s3_bucket_name]
|
195
|
-
end
|
196
|
-
|
197
|
-
# The Amazon S3 directory that contains the database installation files.
|
198
|
-
# If not specified, then no prefix is assumed.
|
199
|
-
# @return [String]
|
200
|
-
def database_installation_files_s3_prefix
|
201
|
-
data[:database_installation_files_s3_prefix]
|
202
|
-
end
|
203
|
-
|
204
|
-
# The ARN of the custom engine version.
|
205
|
-
# @return [String]
|
206
|
-
def db_engine_version_arn
|
207
|
-
data[:db_engine_version_arn]
|
208
|
-
end
|
209
|
-
|
210
|
-
# The Amazon Web Services KMS key identifier for an encrypted CEV. This
|
211
|
-
# parameter is required for RDS Custom, but optional for Amazon RDS.
|
212
|
-
# @return [String]
|
213
|
-
def kms_key_id
|
214
|
-
data[:kms_key_id]
|
215
|
-
end
|
216
|
-
|
217
|
-
# The creation time of the DB engine version.
|
218
|
-
# @return [Time]
|
219
|
-
def create_time
|
220
|
-
data[:create_time]
|
221
|
-
end
|
222
|
-
|
223
239
|
# A list of tags.
|
224
240
|
#
|
225
241
|
# For more information, see [Tagging Amazon RDS resources][1] in the
|
@@ -242,22 +258,6 @@ module Aws::RDS
|
|
242
258
|
data[:supports_babelfish]
|
243
259
|
end
|
244
260
|
|
245
|
-
# JSON string that lists the installation files and parameters that RDS
|
246
|
-
# Custom uses to create a custom engine version (CEV). RDS Custom
|
247
|
-
# applies the patches in the order in which they're listed in the
|
248
|
-
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
249
|
-
# user and group using the installation parameters. For more
|
250
|
-
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
251
|
-
# RDS User Guide*.
|
252
|
-
#
|
253
|
-
#
|
254
|
-
#
|
255
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
256
|
-
# @return [String]
|
257
|
-
def custom_db_engine_version_manifest
|
258
|
-
data[:custom_db_engine_version_manifest]
|
259
|
-
end
|
260
|
-
|
261
261
|
# Indicates whether the DB engine version supports Aurora Limitless
|
262
262
|
# Database.
|
263
263
|
# @return [Boolean]
|