aws-sdk-rds 1.213.0 → 1.214.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 +1 -1
- data/lib/aws-sdk-rds/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/account_quota.rbs +41 -0
- data/sig/certificate.rbs +59 -0
- data/sig/client.rbs +3515 -0
- data/sig/db_cluster.rbs +524 -0
- data/sig/db_cluster_parameter_group.rbs +106 -0
- data/sig/db_cluster_snapshot.rbs +213 -0
- data/sig/db_engine.rbs +79 -0
- data/sig/db_engine_version.rbs +163 -0
- data/sig/db_instance.rbs +681 -0
- data/sig/db_log_file.rbs +51 -0
- data/sig/db_parameter_group.rbs +158 -0
- data/sig/db_parameter_group_family.rbs +58 -0
- data/sig/db_security_group.rbs +118 -0
- data/sig/db_snapshot.rbs +271 -0
- data/sig/db_snapshot_attribute.rbs +48 -0
- data/sig/db_subnet_group.rbs +81 -0
- data/sig/errors.rbs +306 -0
- data/sig/event.rbs +50 -0
- data/sig/event_category_map.rbs +40 -0
- data/sig/event_subscription.rbs +107 -0
- data/sig/option_group.rbs +129 -0
- data/sig/option_group_option.rbs +82 -0
- data/sig/parameter.rbs +65 -0
- data/sig/pending_maintenance_action.rbs +68 -0
- data/sig/reserved_db_instance.rbs +86 -0
- data/sig/reserved_db_instances_offering.rbs +78 -0
- data/sig/resource.rbs +599 -0
- data/sig/resource_pending_maintenance_action_list.rbs +41 -0
- data/sig/types.rbs +4275 -0
- data/sig/waiters.rbs +217 -0
- metadata +34 -4
@@ -0,0 +1,213 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module RDS
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html
|
11
|
+
class DBClusterSnapshot
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#initialize-instance_method
|
13
|
+
def initialize: (String cluster_id, String snapshot_id, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (cluster_id: String, snapshot_id: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#cluster_id-instance_method
|
18
|
+
def cluster_id: () -> String
|
19
|
+
alias db_cluster_identifier cluster_id
|
20
|
+
|
21
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#snapshot_id-instance_method
|
22
|
+
def snapshot_id: () -> String
|
23
|
+
alias db_cluster_snapshot_identifier snapshot_id
|
24
|
+
|
25
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#availability_zones-instance_method
|
26
|
+
def availability_zones: () -> ::Array[::String]
|
27
|
+
|
28
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#snapshot_create_time-instance_method
|
29
|
+
def snapshot_create_time: () -> ::Time
|
30
|
+
|
31
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#engine-instance_method
|
32
|
+
def engine: () -> ::String
|
33
|
+
|
34
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#engine_mode-instance_method
|
35
|
+
def engine_mode: () -> ::String
|
36
|
+
|
37
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#allocated_storage-instance_method
|
38
|
+
def allocated_storage: () -> ::Integer
|
39
|
+
|
40
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#status-instance_method
|
41
|
+
def status: () -> ::String
|
42
|
+
|
43
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#port-instance_method
|
44
|
+
def port: () -> ::Integer
|
45
|
+
|
46
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#vpc_id-instance_method
|
47
|
+
def vpc_id: () -> ::String
|
48
|
+
|
49
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#cluster_create_time-instance_method
|
50
|
+
def cluster_create_time: () -> ::Time
|
51
|
+
|
52
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#master_username-instance_method
|
53
|
+
def master_username: () -> ::String
|
54
|
+
|
55
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#engine_version-instance_method
|
56
|
+
def engine_version: () -> ::String
|
57
|
+
|
58
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#license_model-instance_method
|
59
|
+
def license_model: () -> ::String
|
60
|
+
|
61
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#snapshot_type-instance_method
|
62
|
+
def snapshot_type: () -> ::String
|
63
|
+
|
64
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#percent_progress-instance_method
|
65
|
+
def percent_progress: () -> ::Integer
|
66
|
+
|
67
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#storage_encrypted-instance_method
|
68
|
+
def storage_encrypted: () -> bool
|
69
|
+
|
70
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#kms_key_id-instance_method
|
71
|
+
def kms_key_id: () -> ::String
|
72
|
+
|
73
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#db_cluster_snapshot_arn-instance_method
|
74
|
+
def db_cluster_snapshot_arn: () -> ::String
|
75
|
+
|
76
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#source_db_cluster_snapshot_arn-instance_method
|
77
|
+
def source_db_cluster_snapshot_arn: () -> ::String
|
78
|
+
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#iam_database_authentication_enabled-instance_method
|
80
|
+
def iam_database_authentication_enabled: () -> bool
|
81
|
+
|
82
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#tag_list-instance_method
|
83
|
+
def tag_list: () -> ::Array[Types::Tag]
|
84
|
+
|
85
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#db_system_id-instance_method
|
86
|
+
def db_system_id: () -> ::String
|
87
|
+
|
88
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#storage_type-instance_method
|
89
|
+
def storage_type: () -> ::String
|
90
|
+
|
91
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#db_cluster_resource_id-instance_method
|
92
|
+
def db_cluster_resource_id: () -> ::String
|
93
|
+
|
94
|
+
def client: () -> Client
|
95
|
+
|
96
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#load-instance_method
|
97
|
+
def load: () -> self
|
98
|
+
alias reload load
|
99
|
+
|
100
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#data-instance_method
|
101
|
+
def data: () -> Types::DBClusterSnapshot
|
102
|
+
|
103
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#data_loaded?-instance_method
|
104
|
+
def data_loaded?: () -> bool
|
105
|
+
|
106
|
+
|
107
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#create-instance_method
|
108
|
+
def create: (
|
109
|
+
?tags: Array[
|
110
|
+
{
|
111
|
+
key: ::String?,
|
112
|
+
value: ::String?
|
113
|
+
},
|
114
|
+
]
|
115
|
+
) -> DBClusterSnapshot
|
116
|
+
| (?Hash[Symbol, untyped]) -> DBClusterSnapshot
|
117
|
+
|
118
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#copy-instance_method
|
119
|
+
def copy: (
|
120
|
+
target_db_cluster_snapshot_identifier: ::String,
|
121
|
+
?kms_key_id: ::String,
|
122
|
+
?pre_signed_url: ::String,
|
123
|
+
?copy_tags: bool,
|
124
|
+
?tags: Array[
|
125
|
+
{
|
126
|
+
key: ::String?,
|
127
|
+
value: ::String?
|
128
|
+
},
|
129
|
+
],
|
130
|
+
?source_region: ::String
|
131
|
+
) -> DBClusterSnapshot
|
132
|
+
| (?Hash[Symbol, untyped]) -> DBClusterSnapshot
|
133
|
+
|
134
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#delete-instance_method
|
135
|
+
def delete: (
|
136
|
+
) -> DBClusterSnapshot
|
137
|
+
| (?Hash[Symbol, untyped]) -> DBClusterSnapshot
|
138
|
+
|
139
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#restore-instance_method
|
140
|
+
def restore: (
|
141
|
+
?availability_zones: Array[::String],
|
142
|
+
db_cluster_identifier: ::String,
|
143
|
+
engine: ::String,
|
144
|
+
?engine_version: ::String,
|
145
|
+
?port: ::Integer,
|
146
|
+
?db_subnet_group_name: ::String,
|
147
|
+
?database_name: ::String,
|
148
|
+
?option_group_name: ::String,
|
149
|
+
?vpc_security_group_ids: Array[::String],
|
150
|
+
?tags: Array[
|
151
|
+
{
|
152
|
+
key: ::String?,
|
153
|
+
value: ::String?
|
154
|
+
},
|
155
|
+
],
|
156
|
+
?kms_key_id: ::String,
|
157
|
+
?enable_iam_database_authentication: bool,
|
158
|
+
?backtrack_window: ::Integer,
|
159
|
+
?enable_cloudwatch_logs_exports: Array[::String],
|
160
|
+
?engine_mode: ::String,
|
161
|
+
?scaling_configuration: {
|
162
|
+
min_capacity: ::Integer?,
|
163
|
+
max_capacity: ::Integer?,
|
164
|
+
auto_pause: bool?,
|
165
|
+
seconds_until_auto_pause: ::Integer?,
|
166
|
+
timeout_action: ::String?,
|
167
|
+
seconds_before_timeout: ::Integer?
|
168
|
+
},
|
169
|
+
?db_cluster_parameter_group_name: ::String,
|
170
|
+
?deletion_protection: bool,
|
171
|
+
?copy_tags_to_snapshot: bool,
|
172
|
+
?domain: ::String,
|
173
|
+
?domain_iam_role_name: ::String,
|
174
|
+
?db_cluster_instance_class: ::String,
|
175
|
+
?storage_type: ::String,
|
176
|
+
?iops: ::Integer,
|
177
|
+
?publicly_accessible: bool,
|
178
|
+
?serverless_v2_scaling_configuration: {
|
179
|
+
min_capacity: ::Float?,
|
180
|
+
max_capacity: ::Float?
|
181
|
+
},
|
182
|
+
?network_type: ::String,
|
183
|
+
?rds_custom_cluster_configuration: {
|
184
|
+
interconnect_subnet_id: ::String?,
|
185
|
+
transit_gateway_multicast_domain_id: ::String?,
|
186
|
+
replica_mode: ("open-read-only" | "mounted")?
|
187
|
+
}
|
188
|
+
) -> DBCluster
|
189
|
+
| (?Hash[Symbol, untyped]) -> DBCluster
|
190
|
+
|
191
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#cluster-instance_method
|
192
|
+
def cluster: () -> DBCluster
|
193
|
+
|
194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#events-instance_method
|
195
|
+
def events: (
|
196
|
+
?start_time: ::Time,
|
197
|
+
?end_time: ::Time,
|
198
|
+
?duration: ::Integer,
|
199
|
+
?event_categories: Array[::String],
|
200
|
+
?filters: Array[
|
201
|
+
{
|
202
|
+
name: ::String,
|
203
|
+
values: Array[::String]
|
204
|
+
},
|
205
|
+
]
|
206
|
+
) -> Event::Collection
|
207
|
+
| (?Hash[Symbol, untyped]) -> Event::Collection
|
208
|
+
|
209
|
+
class Collection < ::Aws::Resources::Collection[DBClusterSnapshot]
|
210
|
+
end
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|
data/sig/db_engine.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module RDS
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html
|
11
|
+
class DBEngine
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html#initialize-instance_method
|
13
|
+
def initialize: (String name, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (name: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html#name-instance_method
|
18
|
+
def name: () -> String
|
19
|
+
|
20
|
+
def client: () -> Client
|
21
|
+
|
22
|
+
|
23
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html#data-instance_method
|
24
|
+
def data: () -> EmptyStructure
|
25
|
+
|
26
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html#data_loaded?-instance_method
|
27
|
+
def data_loaded?: () -> bool
|
28
|
+
|
29
|
+
|
30
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html#option_group_options-instance_method
|
31
|
+
def option_group_options: (
|
32
|
+
?major_engine_version: ::String,
|
33
|
+
?filters: Array[
|
34
|
+
{
|
35
|
+
name: ::String,
|
36
|
+
values: Array[::String]
|
37
|
+
},
|
38
|
+
]
|
39
|
+
) -> OptionGroupOption::Collection
|
40
|
+
| (?Hash[Symbol, untyped]) -> OptionGroupOption::Collection
|
41
|
+
|
42
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html#option_groups-instance_method
|
43
|
+
def option_groups: (
|
44
|
+
?option_group_name: ::String,
|
45
|
+
?filters: Array[
|
46
|
+
{
|
47
|
+
name: ::String,
|
48
|
+
values: Array[::String]
|
49
|
+
},
|
50
|
+
],
|
51
|
+
?major_engine_version: ::String
|
52
|
+
) -> OptionGroup::Collection
|
53
|
+
| (?Hash[Symbol, untyped]) -> OptionGroup::Collection
|
54
|
+
|
55
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html#version-instance_method
|
56
|
+
def version: (String version) -> DBEngineVersion
|
57
|
+
|
58
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngine.html#versions-instance_method
|
59
|
+
def versions: (
|
60
|
+
?engine_version: ::String,
|
61
|
+
?db_parameter_group_family: ::String,
|
62
|
+
?filters: Array[
|
63
|
+
{
|
64
|
+
name: ::String,
|
65
|
+
values: Array[::String]
|
66
|
+
},
|
67
|
+
],
|
68
|
+
?default_only: bool,
|
69
|
+
?list_supported_character_sets: bool,
|
70
|
+
?list_supported_timezones: bool,
|
71
|
+
?include_all: bool
|
72
|
+
) -> DBEngineVersion::Collection
|
73
|
+
| (?Hash[Symbol, untyped]) -> DBEngineVersion::Collection
|
74
|
+
|
75
|
+
class Collection < ::Aws::Resources::Collection[DBEngine]
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,163 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module RDS
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html
|
11
|
+
class DBEngineVersion
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#initialize-instance_method
|
13
|
+
def initialize: (String engine_name, String version, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (engine_name: String, version: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#engine_name-instance_method
|
18
|
+
def engine_name: () -> String
|
19
|
+
|
20
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#version-instance_method
|
21
|
+
def version: () -> String
|
22
|
+
alias engine_version version
|
23
|
+
|
24
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#db_parameter_group_family-instance_method
|
25
|
+
def db_parameter_group_family: () -> ::String
|
26
|
+
|
27
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#db_engine_description-instance_method
|
28
|
+
def db_engine_description: () -> ::String
|
29
|
+
|
30
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#db_engine_version_description-instance_method
|
31
|
+
def db_engine_version_description: () -> ::String
|
32
|
+
|
33
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#default_character_set-instance_method
|
34
|
+
def default_character_set: () -> Types::CharacterSet
|
35
|
+
|
36
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#image-instance_method
|
37
|
+
def image: () -> Types::CustomDBEngineVersionAMI
|
38
|
+
|
39
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#db_engine_media_type-instance_method
|
40
|
+
def db_engine_media_type: () -> ::String
|
41
|
+
|
42
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supported_character_sets-instance_method
|
43
|
+
def supported_character_sets: () -> ::Array[Types::CharacterSet]
|
44
|
+
|
45
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supported_nchar_character_sets-instance_method
|
46
|
+
def supported_nchar_character_sets: () -> ::Array[Types::CharacterSet]
|
47
|
+
|
48
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#valid_upgrade_target-instance_method
|
49
|
+
def valid_upgrade_target: () -> ::Array[Types::UpgradeTarget]
|
50
|
+
|
51
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supported_timezones-instance_method
|
52
|
+
def supported_timezones: () -> ::Array[Types::Timezone]
|
53
|
+
|
54
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#exportable_log_types-instance_method
|
55
|
+
def exportable_log_types: () -> ::Array[::String]
|
56
|
+
|
57
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_log_exports_to_cloudwatch_logs-instance_method
|
58
|
+
def supports_log_exports_to_cloudwatch_logs: () -> bool
|
59
|
+
|
60
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_read_replica-instance_method
|
61
|
+
def supports_read_replica: () -> bool
|
62
|
+
|
63
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supported_engine_modes-instance_method
|
64
|
+
def supported_engine_modes: () -> ::Array[::String]
|
65
|
+
|
66
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supported_feature_names-instance_method
|
67
|
+
def supported_feature_names: () -> ::Array[::String]
|
68
|
+
|
69
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#status-instance_method
|
70
|
+
def status: () -> ::String
|
71
|
+
|
72
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_parallel_query-instance_method
|
73
|
+
def supports_parallel_query: () -> bool
|
74
|
+
|
75
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_global_databases-instance_method
|
76
|
+
def supports_global_databases: () -> bool
|
77
|
+
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#major_engine_version-instance_method
|
79
|
+
def major_engine_version: () -> ::String
|
80
|
+
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#database_installation_files_s3_bucket_name-instance_method
|
82
|
+
def database_installation_files_s3_bucket_name: () -> ::String
|
83
|
+
|
84
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#database_installation_files_s3_prefix-instance_method
|
85
|
+
def database_installation_files_s3_prefix: () -> ::String
|
86
|
+
|
87
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#db_engine_version_arn-instance_method
|
88
|
+
def db_engine_version_arn: () -> ::String
|
89
|
+
|
90
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#kms_key_id-instance_method
|
91
|
+
def kms_key_id: () -> ::String
|
92
|
+
|
93
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#create_time-instance_method
|
94
|
+
def create_time: () -> ::Time
|
95
|
+
|
96
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#tag_list-instance_method
|
97
|
+
def tag_list: () -> ::Array[Types::Tag]
|
98
|
+
|
99
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_babelfish-instance_method
|
100
|
+
def supports_babelfish: () -> bool
|
101
|
+
|
102
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#custom_db_engine_version_manifest-instance_method
|
103
|
+
def custom_db_engine_version_manifest: () -> ::String
|
104
|
+
|
105
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_certificate_rotation_without_restart-instance_method
|
106
|
+
def supports_certificate_rotation_without_restart: () -> bool
|
107
|
+
|
108
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supported_ca_certificate_identifiers-instance_method
|
109
|
+
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
110
|
+
|
111
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_local_write_forwarding-instance_method
|
112
|
+
def supports_local_write_forwarding: () -> bool
|
113
|
+
|
114
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_integrations-instance_method
|
115
|
+
def supports_integrations: () -> bool
|
116
|
+
|
117
|
+
def client: () -> Client
|
118
|
+
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#load-instance_method
|
120
|
+
def load: () -> self
|
121
|
+
alias reload load
|
122
|
+
|
123
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#data-instance_method
|
124
|
+
def data: () -> Types::DBEngineVersion
|
125
|
+
|
126
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#data_loaded?-instance_method
|
127
|
+
def data_loaded?: () -> bool
|
128
|
+
|
129
|
+
|
130
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#engine-instance_method
|
131
|
+
def engine: () -> DBEngine
|
132
|
+
|
133
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#option_group_options-instance_method
|
134
|
+
def option_group_options: (
|
135
|
+
?filters: Array[
|
136
|
+
{
|
137
|
+
name: ::String,
|
138
|
+
values: Array[::String]
|
139
|
+
},
|
140
|
+
]
|
141
|
+
) -> OptionGroupOption::Collection
|
142
|
+
| (?Hash[Symbol, untyped]) -> OptionGroupOption::Collection
|
143
|
+
|
144
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#option_groups-instance_method
|
145
|
+
def option_groups: (
|
146
|
+
?option_group_name: ::String,
|
147
|
+
?filters: Array[
|
148
|
+
{
|
149
|
+
name: ::String,
|
150
|
+
values: Array[::String]
|
151
|
+
},
|
152
|
+
]
|
153
|
+
) -> OptionGroup::Collection
|
154
|
+
| (?Hash[Symbol, untyped]) -> OptionGroup::Collection
|
155
|
+
|
156
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#parameter_group_family-instance_method
|
157
|
+
def parameter_group_family: () -> DBParameterGroupFamily?
|
158
|
+
|
159
|
+
class Collection < ::Aws::Resources::Collection[DBEngineVersion]
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|