aws-sdk-rds 1.252.0 → 1.262.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 +50 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +320 -54
- data/lib/aws-sdk-rds/client_api.rb +39 -0
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +16 -14
- data/lib/aws-sdk-rds/db_cluster.rb +104 -19
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +60 -4
- data/lib/aws-sdk-rds/db_engine.rb +0 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +11 -0
- data/lib/aws-sdk-rds/db_instance.rb +18 -2
- data/lib/aws-sdk-rds/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-rds/endpoints.rb +2 -1780
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +1 -330
- data/lib/aws-sdk-rds/resource.rb +21 -7
- data/lib/aws-sdk-rds/types.rb +401 -60
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +34 -6
- data/sig/db_cluster.rbs +16 -3
- data/sig/db_cluster_snapshot.rbs +7 -1
- data/sig/db_engine_version.rbs +3 -0
- data/sig/db_instance.rbs +6 -0
- data/sig/errors.rbs +2 -0
- data/sig/resource.rbs +4 -1
- data/sig/types.rbs +35 -0
- metadata +4 -4
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.262.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
|
|
@@ -340,6 +344,7 @@ module Aws
|
|
340
344
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
341
345
|
def supports_local_write_forwarding: () -> bool
|
342
346
|
def supports_integrations: () -> bool
|
347
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
343
348
|
end
|
344
349
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_custom_db_engine_version-instance_method
|
345
350
|
def create_custom_db_engine_version: (
|
@@ -426,13 +431,15 @@ module Aws
|
|
426
431
|
?auto_minor_version_upgrade: bool,
|
427
432
|
?monitoring_interval: ::Integer,
|
428
433
|
?monitoring_role_arn: ::String,
|
434
|
+
?database_insights_mode: ("standard" | "advanced"),
|
429
435
|
?enable_performance_insights: bool,
|
430
436
|
?performance_insights_kms_key_id: ::String,
|
431
437
|
?performance_insights_retention_period: ::Integer,
|
432
438
|
?enable_limitless_database: bool,
|
433
439
|
?serverless_v2_scaling_configuration: {
|
434
440
|
min_capacity: ::Float?,
|
435
|
-
max_capacity: ::Float
|
441
|
+
max_capacity: ::Float?,
|
442
|
+
seconds_until_auto_pause: ::Integer?
|
436
443
|
},
|
437
444
|
?network_type: ::String,
|
438
445
|
?cluster_scalability_type: ("standard" | "limitless"),
|
@@ -565,6 +572,7 @@ module Aws
|
|
565
572
|
?promotion_tier: ::Integer,
|
566
573
|
?timezone: ::String,
|
567
574
|
?enable_iam_database_authentication: bool,
|
575
|
+
?database_insights_mode: ("standard" | "advanced"),
|
568
576
|
?enable_performance_insights: bool,
|
569
577
|
?performance_insights_kms_key_id: ::String,
|
570
578
|
?performance_insights_retention_period: ::Integer,
|
@@ -624,6 +632,7 @@ module Aws
|
|
624
632
|
?kms_key_id: ::String,
|
625
633
|
?pre_signed_url: ::String,
|
626
634
|
?enable_iam_database_authentication: bool,
|
635
|
+
?database_insights_mode: ("standard" | "advanced"),
|
627
636
|
?enable_performance_insights: bool,
|
628
637
|
?performance_insights_kms_key_id: ::String,
|
629
638
|
?performance_insights_retention_period: ::Integer,
|
@@ -975,6 +984,7 @@ module Aws
|
|
975
984
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
976
985
|
def supports_local_write_forwarding: () -> bool
|
977
986
|
def supports_integrations: () -> bool
|
987
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
978
988
|
end
|
979
989
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_custom_db_engine_version-instance_method
|
980
990
|
def delete_custom_db_engine_version: (
|
@@ -2239,6 +2249,7 @@ module Aws
|
|
2239
2249
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
2240
2250
|
def supports_local_write_forwarding: () -> bool
|
2241
2251
|
def supports_integrations: () -> bool
|
2252
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
2242
2253
|
end
|
2243
2254
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_custom_db_engine_version-instance_method
|
2244
2255
|
def modify_custom_db_engine_version: (
|
@@ -2296,12 +2307,14 @@ module Aws
|
|
2296
2307
|
?auto_minor_version_upgrade: bool,
|
2297
2308
|
?monitoring_interval: ::Integer,
|
2298
2309
|
?monitoring_role_arn: ::String,
|
2310
|
+
?database_insights_mode: ("standard" | "advanced"),
|
2299
2311
|
?enable_performance_insights: bool,
|
2300
2312
|
?performance_insights_kms_key_id: ::String,
|
2301
2313
|
?performance_insights_retention_period: ::Integer,
|
2302
2314
|
?serverless_v2_scaling_configuration: {
|
2303
2315
|
min_capacity: ::Float?,
|
2304
|
-
max_capacity: ::Float
|
2316
|
+
max_capacity: ::Float?,
|
2317
|
+
seconds_until_auto_pause: ::Integer?
|
2305
2318
|
},
|
2306
2319
|
?network_type: ::String,
|
2307
2320
|
?manage_master_user_password: bool,
|
@@ -2420,6 +2433,7 @@ module Aws
|
|
2420
2433
|
?disable_domain: bool,
|
2421
2434
|
?promotion_tier: ::Integer,
|
2422
2435
|
?enable_iam_database_authentication: bool,
|
2436
|
+
?database_insights_mode: ("standard" | "advanced"),
|
2423
2437
|
?enable_performance_insights: bool,
|
2424
2438
|
?performance_insights_kms_key_id: ::String,
|
2425
2439
|
?performance_insights_retention_period: ::Integer,
|
@@ -2947,7 +2961,8 @@ module Aws
|
|
2947
2961
|
?domain_iam_role_name: ::String,
|
2948
2962
|
?serverless_v2_scaling_configuration: {
|
2949
2963
|
min_capacity: ::Float?,
|
2950
|
-
max_capacity: ::Float
|
2964
|
+
max_capacity: ::Float?,
|
2965
|
+
seconds_until_auto_pause: ::Integer?
|
2951
2966
|
},
|
2952
2967
|
?network_type: ::String,
|
2953
2968
|
?manage_master_user_password: bool,
|
@@ -3003,7 +3018,8 @@ module Aws
|
|
3003
3018
|
?publicly_accessible: bool,
|
3004
3019
|
?serverless_v2_scaling_configuration: {
|
3005
3020
|
min_capacity: ::Float?,
|
3006
|
-
max_capacity: ::Float
|
3021
|
+
max_capacity: ::Float?,
|
3022
|
+
seconds_until_auto_pause: ::Integer?
|
3007
3023
|
},
|
3008
3024
|
?network_type: ::String,
|
3009
3025
|
?rds_custom_cluster_configuration: {
|
@@ -3011,6 +3027,11 @@ module Aws
|
|
3011
3027
|
transit_gateway_multicast_domain_id: ::String?,
|
3012
3028
|
replica_mode: ("open-read-only" | "mounted")?
|
3013
3029
|
},
|
3030
|
+
?monitoring_interval: ::Integer,
|
3031
|
+
?monitoring_role_arn: ::String,
|
3032
|
+
?enable_performance_insights: bool,
|
3033
|
+
?performance_insights_kms_key_id: ::String,
|
3034
|
+
?performance_insights_retention_period: ::Integer,
|
3014
3035
|
?engine_lifecycle_support: ::String
|
3015
3036
|
) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
3016
3037
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
@@ -3060,7 +3081,8 @@ module Aws
|
|
3060
3081
|
?iops: ::Integer,
|
3061
3082
|
?serverless_v2_scaling_configuration: {
|
3062
3083
|
min_capacity: ::Float?,
|
3063
|
-
max_capacity: ::Float
|
3084
|
+
max_capacity: ::Float?,
|
3085
|
+
seconds_until_auto_pause: ::Integer?
|
3064
3086
|
},
|
3065
3087
|
?network_type: ::String,
|
3066
3088
|
?source_db_cluster_resource_id: ::String,
|
@@ -3069,6 +3091,11 @@ module Aws
|
|
3069
3091
|
transit_gateway_multicast_domain_id: ::String?,
|
3070
3092
|
replica_mode: ("open-read-only" | "mounted")?
|
3071
3093
|
},
|
3094
|
+
?monitoring_interval: ::Integer,
|
3095
|
+
?monitoring_role_arn: ::String,
|
3096
|
+
?enable_performance_insights: bool,
|
3097
|
+
?performance_insights_kms_key_id: ::String,
|
3098
|
+
?performance_insights_retention_period: ::Integer,
|
3072
3099
|
?engine_lifecycle_support: ::String
|
3073
3100
|
) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
3074
3101
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
@@ -3181,6 +3208,7 @@ module Aws
|
|
3181
3208
|
s3_bucket_name: ::String,
|
3182
3209
|
?s3_prefix: ::String,
|
3183
3210
|
s3_ingestion_role_arn: ::String,
|
3211
|
+
?database_insights_mode: ("standard" | "advanced"),
|
3184
3212
|
?enable_performance_insights: bool,
|
3185
3213
|
?performance_insights_kms_key_id: ::String,
|
3186
3214
|
?performance_insights_retention_period: ::Integer,
|
data/sig/db_cluster.rbs
CHANGED
@@ -213,6 +213,9 @@ module Aws
|
|
213
213
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#monitoring_role_arn-instance_method
|
214
214
|
def monitoring_role_arn: () -> ::String
|
215
215
|
|
216
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#database_insights_mode-instance_method
|
217
|
+
def database_insights_mode: () -> ("standard" | "advanced")
|
218
|
+
|
216
219
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#performance_insights_enabled-instance_method
|
217
220
|
def performance_insights_enabled: () -> bool
|
218
221
|
|
@@ -330,13 +333,15 @@ module Aws
|
|
330
333
|
?auto_minor_version_upgrade: bool,
|
331
334
|
?monitoring_interval: ::Integer,
|
332
335
|
?monitoring_role_arn: ::String,
|
336
|
+
?database_insights_mode: ("standard" | "advanced"),
|
333
337
|
?enable_performance_insights: bool,
|
334
338
|
?performance_insights_kms_key_id: ::String,
|
335
339
|
?performance_insights_retention_period: ::Integer,
|
336
340
|
?enable_limitless_database: bool,
|
337
341
|
?serverless_v2_scaling_configuration: {
|
338
342
|
min_capacity: ::Float?,
|
339
|
-
max_capacity: ::Float
|
343
|
+
max_capacity: ::Float?,
|
344
|
+
seconds_until_auto_pause: ::Integer?
|
340
345
|
},
|
341
346
|
?network_type: ::String,
|
342
347
|
?cluster_scalability_type: ("standard" | "limitless"),
|
@@ -418,12 +423,14 @@ module Aws
|
|
418
423
|
?auto_minor_version_upgrade: bool,
|
419
424
|
?monitoring_interval: ::Integer,
|
420
425
|
?monitoring_role_arn: ::String,
|
426
|
+
?database_insights_mode: ("standard" | "advanced"),
|
421
427
|
?enable_performance_insights: bool,
|
422
428
|
?performance_insights_kms_key_id: ::String,
|
423
429
|
?performance_insights_retention_period: ::Integer,
|
424
430
|
?serverless_v2_scaling_configuration: {
|
425
431
|
min_capacity: ::Float?,
|
426
|
-
max_capacity: ::Float
|
432
|
+
max_capacity: ::Float?,
|
433
|
+
seconds_until_auto_pause: ::Integer?
|
427
434
|
},
|
428
435
|
?network_type: ::String,
|
429
436
|
?manage_master_user_password: bool,
|
@@ -478,7 +485,8 @@ module Aws
|
|
478
485
|
?iops: ::Integer,
|
479
486
|
?serverless_v2_scaling_configuration: {
|
480
487
|
min_capacity: ::Float?,
|
481
|
-
max_capacity: ::Float
|
488
|
+
max_capacity: ::Float?,
|
489
|
+
seconds_until_auto_pause: ::Integer?
|
482
490
|
},
|
483
491
|
?network_type: ::String,
|
484
492
|
?source_db_cluster_resource_id: ::String,
|
@@ -487,6 +495,11 @@ module Aws
|
|
487
495
|
transit_gateway_multicast_domain_id: ::String?,
|
488
496
|
replica_mode: ("open-read-only" | "mounted")?
|
489
497
|
},
|
498
|
+
?monitoring_interval: ::Integer,
|
499
|
+
?monitoring_role_arn: ::String,
|
500
|
+
?enable_performance_insights: bool,
|
501
|
+
?performance_insights_kms_key_id: ::String,
|
502
|
+
?performance_insights_retention_period: ::Integer,
|
490
503
|
?engine_lifecycle_support: ::String
|
491
504
|
) -> DBCluster
|
492
505
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
data/sig/db_cluster_snapshot.rbs
CHANGED
@@ -180,7 +180,8 @@ module Aws
|
|
180
180
|
?publicly_accessible: bool,
|
181
181
|
?serverless_v2_scaling_configuration: {
|
182
182
|
min_capacity: ::Float?,
|
183
|
-
max_capacity: ::Float
|
183
|
+
max_capacity: ::Float?,
|
184
|
+
seconds_until_auto_pause: ::Integer?
|
184
185
|
},
|
185
186
|
?network_type: ::String,
|
186
187
|
?rds_custom_cluster_configuration: {
|
@@ -188,6 +189,11 @@ module Aws
|
|
188
189
|
transit_gateway_multicast_domain_id: ::String?,
|
189
190
|
replica_mode: ("open-read-only" | "mounted")?
|
190
191
|
},
|
192
|
+
?monitoring_interval: ::Integer,
|
193
|
+
?monitoring_role_arn: ::String,
|
194
|
+
?enable_performance_insights: bool,
|
195
|
+
?performance_insights_kms_key_id: ::String,
|
196
|
+
?performance_insights_retention_period: ::Integer,
|
191
197
|
?engine_lifecycle_support: ::String
|
192
198
|
) -> DBCluster
|
193
199
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
data/sig/db_engine_version.rbs
CHANGED
@@ -117,6 +117,9 @@ module Aws
|
|
117
117
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_integrations-instance_method
|
118
118
|
def supports_integrations: () -> bool
|
119
119
|
|
120
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#serverless_v2_features_support-instance_method
|
121
|
+
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
122
|
+
|
120
123
|
def client: () -> Client
|
121
124
|
|
122
125
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#load-instance_method
|
data/sig/db_instance.rbs
CHANGED
@@ -171,6 +171,9 @@ module Aws
|
|
171
171
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#iam_database_authentication_enabled-instance_method
|
172
172
|
def iam_database_authentication_enabled: () -> bool
|
173
173
|
|
174
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#database_insights_mode-instance_method
|
175
|
+
def database_insights_mode: () -> ("standard" | "advanced")
|
176
|
+
|
174
177
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#performance_insights_enabled-instance_method
|
175
178
|
def performance_insights_enabled: () -> bool
|
176
179
|
|
@@ -336,6 +339,7 @@ module Aws
|
|
336
339
|
?promotion_tier: ::Integer,
|
337
340
|
?timezone: ::String,
|
338
341
|
?enable_iam_database_authentication: bool,
|
342
|
+
?database_insights_mode: ("standard" | "advanced"),
|
339
343
|
?enable_performance_insights: bool,
|
340
344
|
?performance_insights_kms_key_id: ::String,
|
341
345
|
?performance_insights_retention_period: ::Integer,
|
@@ -390,6 +394,7 @@ module Aws
|
|
390
394
|
?kms_key_id: ::String,
|
391
395
|
?pre_signed_url: ::String,
|
392
396
|
?enable_iam_database_authentication: bool,
|
397
|
+
?database_insights_mode: ("standard" | "advanced"),
|
393
398
|
?enable_performance_insights: bool,
|
394
399
|
?performance_insights_kms_key_id: ::String,
|
395
400
|
?performance_insights_retention_period: ::Integer,
|
@@ -482,6 +487,7 @@ module Aws
|
|
482
487
|
?disable_domain: bool,
|
483
488
|
?promotion_tier: ::Integer,
|
484
489
|
?enable_iam_database_authentication: bool,
|
490
|
+
?database_insights_mode: ("standard" | "advanced"),
|
485
491
|
?enable_performance_insights: bool,
|
486
492
|
?performance_insights_kms_key_id: ::String,
|
487
493
|
?performance_insights_retention_period: ::Integer,
|
data/sig/errors.rbs
CHANGED
@@ -73,6 +73,8 @@ module Aws
|
|
73
73
|
end
|
74
74
|
class DBInstanceNotFoundFault < ::Aws::Errors::ServiceError
|
75
75
|
end
|
76
|
+
class DBInstanceNotReadyFault < ::Aws::Errors::ServiceError
|
77
|
+
end
|
76
78
|
class DBInstanceRoleAlreadyExistsFault < ::Aws::Errors::ServiceError
|
77
79
|
end
|
78
80
|
class DBInstanceRoleNotFoundFault < ::Aws::Errors::ServiceError
|
data/sig/resource.rbs
CHANGED
@@ -137,13 +137,15 @@ module Aws
|
|
137
137
|
?auto_minor_version_upgrade: bool,
|
138
138
|
?monitoring_interval: ::Integer,
|
139
139
|
?monitoring_role_arn: ::String,
|
140
|
+
?database_insights_mode: ("standard" | "advanced"),
|
140
141
|
?enable_performance_insights: bool,
|
141
142
|
?performance_insights_kms_key_id: ::String,
|
142
143
|
?performance_insights_retention_period: ::Integer,
|
143
144
|
?enable_limitless_database: bool,
|
144
145
|
?serverless_v2_scaling_configuration: {
|
145
146
|
min_capacity: ::Float?,
|
146
|
-
max_capacity: ::Float
|
147
|
+
max_capacity: ::Float?,
|
148
|
+
seconds_until_auto_pause: ::Integer?
|
147
149
|
},
|
148
150
|
?network_type: ::String,
|
149
151
|
?cluster_scalability_type: ("standard" | "limitless"),
|
@@ -222,6 +224,7 @@ module Aws
|
|
222
224
|
?promotion_tier: ::Integer,
|
223
225
|
?timezone: ::String,
|
224
226
|
?enable_iam_database_authentication: bool,
|
227
|
+
?database_insights_mode: ("standard" | "advanced"),
|
225
228
|
?enable_performance_insights: bool,
|
226
229
|
?performance_insights_kms_key_id: ::String,
|
227
230
|
?performance_insights_retention_period: ::Integer,
|
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
|
|
@@ -382,6 +386,7 @@ module Aws::RDS
|
|
382
386
|
attr_accessor auto_minor_version_upgrade: bool
|
383
387
|
attr_accessor monitoring_interval: ::Integer
|
384
388
|
attr_accessor monitoring_role_arn: ::String
|
389
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
385
390
|
attr_accessor enable_performance_insights: bool
|
386
391
|
attr_accessor performance_insights_kms_key_id: ::String
|
387
392
|
attr_accessor performance_insights_retention_period: ::Integer
|
@@ -474,6 +479,7 @@ module Aws::RDS
|
|
474
479
|
attr_accessor promotion_tier: ::Integer
|
475
480
|
attr_accessor timezone: ::String
|
476
481
|
attr_accessor enable_iam_database_authentication: bool
|
482
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
477
483
|
attr_accessor enable_performance_insights: bool
|
478
484
|
attr_accessor performance_insights_kms_key_id: ::String
|
479
485
|
attr_accessor performance_insights_retention_period: ::Integer
|
@@ -518,6 +524,7 @@ module Aws::RDS
|
|
518
524
|
attr_accessor kms_key_id: ::String
|
519
525
|
attr_accessor pre_signed_url: ::String
|
520
526
|
attr_accessor enable_iam_database_authentication: bool
|
527
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
521
528
|
attr_accessor enable_performance_insights: bool
|
522
529
|
attr_accessor performance_insights_kms_key_id: ::String
|
523
530
|
attr_accessor performance_insights_retention_period: ::Integer
|
@@ -812,6 +819,7 @@ module Aws::RDS
|
|
812
819
|
attr_accessor auto_minor_version_upgrade: bool
|
813
820
|
attr_accessor monitoring_interval: ::Integer
|
814
821
|
attr_accessor monitoring_role_arn: ::String
|
822
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
815
823
|
attr_accessor performance_insights_enabled: bool
|
816
824
|
attr_accessor performance_insights_kms_key_id: ::String
|
817
825
|
attr_accessor performance_insights_retention_period: ::Integer
|
@@ -1098,6 +1106,7 @@ module Aws::RDS
|
|
1098
1106
|
attr_accessor supported_ca_certificate_identifiers: ::Array[::String]
|
1099
1107
|
attr_accessor supports_local_write_forwarding: bool
|
1100
1108
|
attr_accessor supports_integrations: bool
|
1109
|
+
attr_accessor serverless_v2_features_support: Types::ServerlessV2FeaturesSupport
|
1101
1110
|
SENSITIVE: []
|
1102
1111
|
end
|
1103
1112
|
|
@@ -1160,6 +1169,7 @@ module Aws::RDS
|
|
1160
1169
|
attr_accessor db_instance_arn: ::String
|
1161
1170
|
attr_accessor timezone: ::String
|
1162
1171
|
attr_accessor iam_database_authentication_enabled: bool
|
1172
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
1163
1173
|
attr_accessor performance_insights_enabled: bool
|
1164
1174
|
attr_accessor performance_insights_kms_key_id: ::String
|
1165
1175
|
attr_accessor performance_insights_retention_period: ::Integer
|
@@ -1261,6 +1271,9 @@ module Aws::RDS
|
|
1261
1271
|
class DBInstanceNotFoundFault < Aws::EmptyStructure
|
1262
1272
|
end
|
1263
1273
|
|
1274
|
+
class DBInstanceNotReadyFault < Aws::EmptyStructure
|
1275
|
+
end
|
1276
|
+
|
1264
1277
|
class DBInstanceRole
|
1265
1278
|
attr_accessor role_arn: ::String
|
1266
1279
|
attr_accessor feature_name: ::String
|
@@ -2527,6 +2540,7 @@ module Aws::RDS
|
|
2527
2540
|
attr_accessor storage_encrypted: bool
|
2528
2541
|
attr_accessor deletion_protection: bool
|
2529
2542
|
attr_accessor global_cluster_members: ::Array[Types::GlobalClusterMember]
|
2543
|
+
attr_accessor endpoint: ::String
|
2530
2544
|
attr_accessor failover_state: Types::FailoverState
|
2531
2545
|
attr_accessor tag_list: ::Array[Types::Tag]
|
2532
2546
|
SENSITIVE: []
|
@@ -2845,6 +2859,7 @@ module Aws::RDS
|
|
2845
2859
|
attr_accessor auto_minor_version_upgrade: bool
|
2846
2860
|
attr_accessor monitoring_interval: ::Integer
|
2847
2861
|
attr_accessor monitoring_role_arn: ::String
|
2862
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
2848
2863
|
attr_accessor enable_performance_insights: bool
|
2849
2864
|
attr_accessor performance_insights_kms_key_id: ::String
|
2850
2865
|
attr_accessor performance_insights_retention_period: ::Integer
|
@@ -2925,6 +2940,7 @@ module Aws::RDS
|
|
2925
2940
|
attr_accessor disable_domain: bool
|
2926
2941
|
attr_accessor promotion_tier: ::Integer
|
2927
2942
|
attr_accessor enable_iam_database_authentication: bool
|
2943
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
2928
2944
|
attr_accessor enable_performance_insights: bool
|
2929
2945
|
attr_accessor performance_insights_kms_key_id: ::String
|
2930
2946
|
attr_accessor performance_insights_retention_period: ::Integer
|
@@ -3708,6 +3724,11 @@ module Aws::RDS
|
|
3708
3724
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
3709
3725
|
attr_accessor network_type: ::String
|
3710
3726
|
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
3727
|
+
attr_accessor monitoring_interval: ::Integer
|
3728
|
+
attr_accessor monitoring_role_arn: ::String
|
3729
|
+
attr_accessor enable_performance_insights: bool
|
3730
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
3731
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
3711
3732
|
attr_accessor engine_lifecycle_support: ::String
|
3712
3733
|
SENSITIVE: []
|
3713
3734
|
end
|
@@ -3747,6 +3768,11 @@ module Aws::RDS
|
|
3747
3768
|
attr_accessor network_type: ::String
|
3748
3769
|
attr_accessor source_db_cluster_resource_id: ::String
|
3749
3770
|
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
3771
|
+
attr_accessor monitoring_interval: ::Integer
|
3772
|
+
attr_accessor monitoring_role_arn: ::String
|
3773
|
+
attr_accessor enable_performance_insights: bool
|
3774
|
+
attr_accessor performance_insights_kms_key_id: ::String
|
3775
|
+
attr_accessor performance_insights_retention_period: ::Integer
|
3750
3776
|
attr_accessor engine_lifecycle_support: ::String
|
3751
3777
|
SENSITIVE: []
|
3752
3778
|
end
|
@@ -3844,6 +3870,7 @@ module Aws::RDS
|
|
3844
3870
|
attr_accessor s3_bucket_name: ::String
|
3845
3871
|
attr_accessor s3_prefix: ::String
|
3846
3872
|
attr_accessor s3_ingestion_role_arn: ::String
|
3873
|
+
attr_accessor database_insights_mode: ("standard" | "advanced")
|
3847
3874
|
attr_accessor enable_performance_insights: bool
|
3848
3875
|
attr_accessor performance_insights_kms_key_id: ::String
|
3849
3876
|
attr_accessor performance_insights_retention_period: ::Integer
|
@@ -3976,15 +4003,23 @@ module Aws::RDS
|
|
3976
4003
|
SENSITIVE: []
|
3977
4004
|
end
|
3978
4005
|
|
4006
|
+
class ServerlessV2FeaturesSupport
|
4007
|
+
attr_accessor min_capacity: ::Float
|
4008
|
+
attr_accessor max_capacity: ::Float
|
4009
|
+
SENSITIVE: []
|
4010
|
+
end
|
4011
|
+
|
3979
4012
|
class ServerlessV2ScalingConfiguration
|
3980
4013
|
attr_accessor min_capacity: ::Float
|
3981
4014
|
attr_accessor max_capacity: ::Float
|
4015
|
+
attr_accessor seconds_until_auto_pause: ::Integer
|
3982
4016
|
SENSITIVE: []
|
3983
4017
|
end
|
3984
4018
|
|
3985
4019
|
class ServerlessV2ScalingConfigurationInfo
|
3986
4020
|
attr_accessor min_capacity: ::Float
|
3987
4021
|
attr_accessor max_capacity: ::Float
|
4022
|
+
attr_accessor seconds_until_auto_pause: ::Integer
|
3988
4023
|
SENSITIVE: []
|
3989
4024
|
end
|
3990
4025
|
|
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.262.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
|
+
date: 2024-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|