aws-sdk-rds 1.292.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1372 -1354
- data/lib/aws-sdk-rds/client_api.rb +207 -159
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- 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 +1062 -1036
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +103 -101
- 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 +123 -120
- metadata +1 -1
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.294.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -262,9 +262,9 @@ module Aws
|
|
262
262
|
?pre_signed_url: ::String,
|
263
263
|
?option_group_name: ::String,
|
264
264
|
?target_custom_availability_zone: ::String,
|
265
|
+
?snapshot_target: ::String,
|
265
266
|
?copy_option_group: bool,
|
266
267
|
?snapshot_availability_zone: ::String,
|
267
|
-
?snapshot_target: ::String,
|
268
268
|
?source_region: ::String
|
269
269
|
) -> _CopyDBSnapshotResponseSuccess
|
270
270
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyDBSnapshotResponseSuccess
|
@@ -316,13 +316,20 @@ module Aws
|
|
316
316
|
interface _CreateCustomDBEngineVersionResponseSuccess
|
317
317
|
include ::Seahorse::Client::_ResponseSuccess[Types::DBEngineVersion]
|
318
318
|
def engine: () -> ::String
|
319
|
+
def major_engine_version: () -> ::String
|
319
320
|
def engine_version: () -> ::String
|
321
|
+
def database_installation_files_s3_bucket_name: () -> ::String
|
322
|
+
def database_installation_files_s3_prefix: () -> ::String
|
323
|
+
def custom_db_engine_version_manifest: () -> ::String
|
320
324
|
def db_parameter_group_family: () -> ::String
|
321
325
|
def db_engine_description: () -> ::String
|
326
|
+
def db_engine_version_arn: () -> ::String
|
322
327
|
def db_engine_version_description: () -> ::String
|
323
328
|
def default_character_set: () -> Types::CharacterSet
|
324
329
|
def image: () -> Types::CustomDBEngineVersionAMI
|
325
330
|
def db_engine_media_type: () -> ::String
|
331
|
+
def kms_key_id: () -> ::String
|
332
|
+
def create_time: () -> ::Time
|
326
333
|
def supported_character_sets: () -> ::Array[Types::CharacterSet]
|
327
334
|
def supported_nchar_character_sets: () -> ::Array[Types::CharacterSet]
|
328
335
|
def valid_upgrade_target: () -> ::Array[Types::UpgradeTarget]
|
@@ -335,15 +342,8 @@ module Aws
|
|
335
342
|
def status: () -> ::String
|
336
343
|
def supports_parallel_query: () -> bool
|
337
344
|
def supports_global_databases: () -> bool
|
338
|
-
def major_engine_version: () -> ::String
|
339
|
-
def database_installation_files_s3_bucket_name: () -> ::String
|
340
|
-
def database_installation_files_s3_prefix: () -> ::String
|
341
|
-
def db_engine_version_arn: () -> ::String
|
342
|
-
def kms_key_id: () -> ::String
|
343
|
-
def create_time: () -> ::Time
|
344
345
|
def tag_list: () -> ::Array[Types::Tag]
|
345
346
|
def supports_babelfish: () -> bool
|
346
|
-
def custom_db_engine_version_manifest: () -> ::String
|
347
347
|
def supports_limitless_database: () -> bool
|
348
348
|
def supports_certificate_rotation_without_restart: () -> bool
|
349
349
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
@@ -359,6 +359,8 @@ module Aws
|
|
359
359
|
?database_installation_files_s3_prefix: ::String,
|
360
360
|
?image_id: ::String,
|
361
361
|
?kms_key_id: ::String,
|
362
|
+
?source_custom_db_engine_version_identifier: ::String,
|
363
|
+
?use_aws_provided_latest_image: bool,
|
362
364
|
?description: ::String,
|
363
365
|
?manifest: ::String,
|
364
366
|
?tags: Array[
|
@@ -366,9 +368,7 @@ module Aws
|
|
366
368
|
key: ::String?,
|
367
369
|
value: ::String?
|
368
370
|
},
|
369
|
-
]
|
370
|
-
?source_custom_db_engine_version_identifier: ::String,
|
371
|
-
?use_aws_provided_latest_image: bool
|
371
|
+
]
|
372
372
|
) -> _CreateCustomDBEngineVersionResponseSuccess
|
373
373
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomDBEngineVersionResponseSuccess
|
374
374
|
|
@@ -421,6 +421,12 @@ module Aws
|
|
421
421
|
transit_gateway_multicast_domain_id: ::String?,
|
422
422
|
replica_mode: ("open-read-only" | "mounted")?
|
423
423
|
},
|
424
|
+
?db_cluster_instance_class: ::String,
|
425
|
+
?allocated_storage: ::Integer,
|
426
|
+
?storage_type: ::String,
|
427
|
+
?iops: ::Integer,
|
428
|
+
?publicly_accessible: bool,
|
429
|
+
?auto_minor_version_upgrade: bool,
|
424
430
|
?deletion_protection: bool,
|
425
431
|
?global_cluster_identifier: ::String,
|
426
432
|
?enable_http_endpoint: bool,
|
@@ -428,12 +434,12 @@ module Aws
|
|
428
434
|
?domain: ::String,
|
429
435
|
?domain_iam_role_name: ::String,
|
430
436
|
?enable_global_write_forwarding: bool,
|
431
|
-
?
|
432
|
-
?
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
+
?network_type: ::String,
|
438
|
+
?serverless_v2_scaling_configuration: {
|
439
|
+
min_capacity: ::Float?,
|
440
|
+
max_capacity: ::Float?,
|
441
|
+
seconds_until_auto_pause: ::Integer?
|
442
|
+
},
|
437
443
|
?monitoring_interval: ::Integer,
|
438
444
|
?monitoring_role_arn: ::String,
|
439
445
|
?database_insights_mode: ("standard" | "advanced"),
|
@@ -441,17 +447,11 @@ module Aws
|
|
441
447
|
?performance_insights_kms_key_id: ::String,
|
442
448
|
?performance_insights_retention_period: ::Integer,
|
443
449
|
?enable_limitless_database: bool,
|
444
|
-
?
|
445
|
-
min_capacity: ::Float?,
|
446
|
-
max_capacity: ::Float?,
|
447
|
-
seconds_until_auto_pause: ::Integer?
|
448
|
-
},
|
449
|
-
?network_type: ::String,
|
450
|
-
?cluster_scalability_type: ("standard" | "limitless"),
|
450
|
+
?cluster_scalability_type: ("standard" | "limitless" | "scaleout"),
|
451
451
|
?db_system_id: ::String,
|
452
452
|
?manage_master_user_password: bool,
|
453
|
-
?master_user_secret_kms_key_id: ::String,
|
454
453
|
?enable_local_write_forwarding: bool,
|
454
|
+
?master_user_secret_kms_key_id: ::String,
|
455
455
|
?ca_certificate_identifier: ::String,
|
456
456
|
?engine_lifecycle_support: ::String,
|
457
457
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
@@ -550,6 +550,7 @@ module Aws
|
|
550
550
|
?auto_minor_version_upgrade: bool,
|
551
551
|
?license_model: ::String,
|
552
552
|
?iops: ::Integer,
|
553
|
+
?storage_throughput: ::Integer,
|
553
554
|
?option_group_name: ::String,
|
554
555
|
?character_set_name: ::String,
|
555
556
|
?nchar_character_set_name: ::String,
|
@@ -592,16 +593,15 @@ module Aws
|
|
592
593
|
?deletion_protection: bool,
|
593
594
|
?max_allocated_storage: ::Integer,
|
594
595
|
?enable_customer_owned_ip: bool,
|
595
|
-
?custom_iam_instance_profile: ::String,
|
596
|
-
?backup_target: ::String,
|
597
596
|
?network_type: ::String,
|
598
|
-
?
|
597
|
+
?backup_target: ::String,
|
598
|
+
?custom_iam_instance_profile: ::String,
|
599
|
+
?db_system_id: ::String,
|
600
|
+
?ca_certificate_identifier: ::String,
|
599
601
|
?manage_master_user_password: bool,
|
600
602
|
?master_user_secret_kms_key_id: ::String,
|
601
|
-
?ca_certificate_identifier: ::String,
|
602
|
-
?db_system_id: ::String,
|
603
|
-
?dedicated_log_volume: bool,
|
604
603
|
?multi_tenant: bool,
|
604
|
+
?dedicated_log_volume: bool,
|
605
605
|
?engine_lifecycle_support: ::String,
|
606
606
|
?master_user_authentication_type: ("password" | "iam-db-auth")
|
607
607
|
) -> _CreateDBInstanceResponseSuccess
|
@@ -621,6 +621,7 @@ module Aws
|
|
621
621
|
?multi_az: bool,
|
622
622
|
?auto_minor_version_upgrade: bool,
|
623
623
|
?iops: ::Integer,
|
624
|
+
?storage_throughput: ::Integer,
|
624
625
|
?option_group_name: ::String,
|
625
626
|
?db_parameter_group_name: ::String,
|
626
627
|
?publicly_accessible: bool,
|
@@ -659,12 +660,11 @@ module Aws
|
|
659
660
|
?domain_auth_secret_arn: ::String,
|
660
661
|
?domain_dns_ips: Array[::String],
|
661
662
|
?replica_mode: ("open-read-only" | "mounted"),
|
662
|
-
?max_allocated_storage: ::Integer,
|
663
|
-
?custom_iam_instance_profile: ::String,
|
664
|
-
?network_type: ::String,
|
665
|
-
?storage_throughput: ::Integer,
|
666
663
|
?enable_customer_owned_ip: bool,
|
664
|
+
?network_type: ::String,
|
665
|
+
?max_allocated_storage: ::Integer,
|
667
666
|
?backup_target: ::String,
|
667
|
+
?custom_iam_instance_profile: ::String,
|
668
668
|
?allocated_storage: ::Integer,
|
669
669
|
?source_db_cluster_identifier: ::String,
|
670
670
|
?dedicated_log_volume: bool,
|
@@ -700,7 +700,8 @@ module Aws
|
|
700
700
|
def create_db_proxy: (
|
701
701
|
db_proxy_name: ::String,
|
702
702
|
engine_family: ("MYSQL" | "POSTGRESQL" | "SQLSERVER"),
|
703
|
-
|
703
|
+
?default_auth_scheme: ("IAM_AUTH" | "NONE"),
|
704
|
+
?auth: Array[
|
704
705
|
{
|
705
706
|
description: ::String?,
|
706
707
|
user_name: ::String?,
|
@@ -858,7 +859,7 @@ module Aws
|
|
858
859
|
end
|
859
860
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_global_cluster-instance_method
|
860
861
|
def create_global_cluster: (
|
861
|
-
|
862
|
+
global_cluster_identifier: ::String,
|
862
863
|
?source_db_cluster_identifier: ::String,
|
863
864
|
?engine: ::String,
|
864
865
|
?engine_version: ::String,
|
@@ -873,7 +874,7 @@ module Aws
|
|
873
874
|
},
|
874
875
|
]
|
875
876
|
) -> _CreateGlobalClusterResponseSuccess
|
876
|
-
| (
|
877
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlobalClusterResponseSuccess
|
877
878
|
|
878
879
|
interface _CreateIntegrationResponseSuccess
|
879
880
|
include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
|
@@ -885,10 +886,10 @@ module Aws
|
|
885
886
|
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
886
887
|
def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
887
888
|
def tags: () -> ::Array[Types::Tag]
|
888
|
-
def create_time: () -> ::Time
|
889
|
-
def errors: () -> ::Array[Types::IntegrationError]
|
890
889
|
def data_filter: () -> ::String
|
891
890
|
def description: () -> ::String
|
891
|
+
def create_time: () -> ::Time
|
892
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
892
893
|
end
|
893
894
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_integration-instance_method
|
894
895
|
def create_integration: (
|
@@ -964,13 +965,20 @@ module Aws
|
|
964
965
|
interface _DeleteCustomDBEngineVersionResponseSuccess
|
965
966
|
include ::Seahorse::Client::_ResponseSuccess[Types::DBEngineVersion]
|
966
967
|
def engine: () -> ::String
|
968
|
+
def major_engine_version: () -> ::String
|
967
969
|
def engine_version: () -> ::String
|
970
|
+
def database_installation_files_s3_bucket_name: () -> ::String
|
971
|
+
def database_installation_files_s3_prefix: () -> ::String
|
972
|
+
def custom_db_engine_version_manifest: () -> ::String
|
968
973
|
def db_parameter_group_family: () -> ::String
|
969
974
|
def db_engine_description: () -> ::String
|
975
|
+
def db_engine_version_arn: () -> ::String
|
970
976
|
def db_engine_version_description: () -> ::String
|
971
977
|
def default_character_set: () -> Types::CharacterSet
|
972
978
|
def image: () -> Types::CustomDBEngineVersionAMI
|
973
979
|
def db_engine_media_type: () -> ::String
|
980
|
+
def kms_key_id: () -> ::String
|
981
|
+
def create_time: () -> ::Time
|
974
982
|
def supported_character_sets: () -> ::Array[Types::CharacterSet]
|
975
983
|
def supported_nchar_character_sets: () -> ::Array[Types::CharacterSet]
|
976
984
|
def valid_upgrade_target: () -> ::Array[Types::UpgradeTarget]
|
@@ -983,15 +991,8 @@ module Aws
|
|
983
991
|
def status: () -> ::String
|
984
992
|
def supports_parallel_query: () -> bool
|
985
993
|
def supports_global_databases: () -> bool
|
986
|
-
def major_engine_version: () -> ::String
|
987
|
-
def database_installation_files_s3_bucket_name: () -> ::String
|
988
|
-
def database_installation_files_s3_prefix: () -> ::String
|
989
|
-
def db_engine_version_arn: () -> ::String
|
990
|
-
def kms_key_id: () -> ::String
|
991
|
-
def create_time: () -> ::Time
|
992
994
|
def tag_list: () -> ::Array[Types::Tag]
|
993
995
|
def supports_babelfish: () -> bool
|
994
|
-
def custom_db_engine_version_manifest: () -> ::String
|
995
996
|
def supports_limitless_database: () -> bool
|
996
997
|
def supports_certificate_rotation_without_restart: () -> bool
|
997
998
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
@@ -1186,10 +1187,10 @@ module Aws
|
|
1186
1187
|
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
1187
1188
|
def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
1188
1189
|
def tags: () -> ::Array[Types::Tag]
|
1189
|
-
def create_time: () -> ::Time
|
1190
|
-
def errors: () -> ::Array[Types::IntegrationError]
|
1191
1190
|
def data_filter: () -> ::String
|
1192
1191
|
def description: () -> ::String
|
1192
|
+
def create_time: () -> ::Time
|
1193
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
1193
1194
|
end
|
1194
1195
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_integration-instance_method
|
1195
1196
|
def delete_integration: (
|
@@ -1861,7 +1862,7 @@ module Aws
|
|
1861
1862
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#describe_events-instance_method
|
1862
1863
|
def describe_events: (
|
1863
1864
|
?source_identifier: ::String,
|
1864
|
-
?source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment"),
|
1865
|
+
?source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment" | "db-shard-group" | "zero-etl"),
|
1865
1866
|
?start_time: ::Time,
|
1866
1867
|
?end_time: ::Time,
|
1867
1868
|
?duration: ::Integer,
|
@@ -2243,13 +2244,20 @@ module Aws
|
|
2243
2244
|
interface _ModifyCustomDBEngineVersionResponseSuccess
|
2244
2245
|
include ::Seahorse::Client::_ResponseSuccess[Types::DBEngineVersion]
|
2245
2246
|
def engine: () -> ::String
|
2247
|
+
def major_engine_version: () -> ::String
|
2246
2248
|
def engine_version: () -> ::String
|
2249
|
+
def database_installation_files_s3_bucket_name: () -> ::String
|
2250
|
+
def database_installation_files_s3_prefix: () -> ::String
|
2251
|
+
def custom_db_engine_version_manifest: () -> ::String
|
2247
2252
|
def db_parameter_group_family: () -> ::String
|
2248
2253
|
def db_engine_description: () -> ::String
|
2254
|
+
def db_engine_version_arn: () -> ::String
|
2249
2255
|
def db_engine_version_description: () -> ::String
|
2250
2256
|
def default_character_set: () -> Types::CharacterSet
|
2251
2257
|
def image: () -> Types::CustomDBEngineVersionAMI
|
2252
2258
|
def db_engine_media_type: () -> ::String
|
2259
|
+
def kms_key_id: () -> ::String
|
2260
|
+
def create_time: () -> ::Time
|
2253
2261
|
def supported_character_sets: () -> ::Array[Types::CharacterSet]
|
2254
2262
|
def supported_nchar_character_sets: () -> ::Array[Types::CharacterSet]
|
2255
2263
|
def valid_upgrade_target: () -> ::Array[Types::UpgradeTarget]
|
@@ -2262,15 +2270,8 @@ module Aws
|
|
2262
2270
|
def status: () -> ::String
|
2263
2271
|
def supports_parallel_query: () -> bool
|
2264
2272
|
def supports_global_databases: () -> bool
|
2265
|
-
def major_engine_version: () -> ::String
|
2266
|
-
def database_installation_files_s3_bucket_name: () -> ::String
|
2267
|
-
def database_installation_files_s3_prefix: () -> ::String
|
2268
|
-
def db_engine_version_arn: () -> ::String
|
2269
|
-
def kms_key_id: () -> ::String
|
2270
|
-
def create_time: () -> ::Time
|
2271
2273
|
def tag_list: () -> ::Array[Types::Tag]
|
2272
2274
|
def supports_babelfish: () -> bool
|
2273
|
-
def custom_db_engine_version_manifest: () -> ::String
|
2274
2275
|
def supports_limitless_database: () -> bool
|
2275
2276
|
def supports_certificate_rotation_without_restart: () -> bool
|
2276
2277
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
@@ -2332,24 +2333,24 @@ module Aws
|
|
2332
2333
|
?storage_type: ::String,
|
2333
2334
|
?iops: ::Integer,
|
2334
2335
|
?auto_minor_version_upgrade: bool,
|
2336
|
+
?network_type: ::String,
|
2337
|
+
?serverless_v2_scaling_configuration: {
|
2338
|
+
min_capacity: ::Float?,
|
2339
|
+
max_capacity: ::Float?,
|
2340
|
+
seconds_until_auto_pause: ::Integer?
|
2341
|
+
},
|
2335
2342
|
?monitoring_interval: ::Integer,
|
2336
2343
|
?monitoring_role_arn: ::String,
|
2337
2344
|
?database_insights_mode: ("standard" | "advanced"),
|
2338
2345
|
?enable_performance_insights: bool,
|
2339
2346
|
?performance_insights_kms_key_id: ::String,
|
2340
2347
|
?performance_insights_retention_period: ::Integer,
|
2341
|
-
?serverless_v2_scaling_configuration: {
|
2342
|
-
min_capacity: ::Float?,
|
2343
|
-
max_capacity: ::Float?,
|
2344
|
-
seconds_until_auto_pause: ::Integer?
|
2345
|
-
},
|
2346
|
-
?network_type: ::String,
|
2347
2348
|
?manage_master_user_password: bool,
|
2348
2349
|
?rotate_master_user_password: bool,
|
2350
|
+
?enable_local_write_forwarding: bool,
|
2349
2351
|
?master_user_secret_kms_key_id: ::String,
|
2350
2352
|
?engine_mode: ::String,
|
2351
2353
|
?allow_engine_mode_change: bool,
|
2352
|
-
?enable_local_write_forwarding: bool,
|
2353
2354
|
?aws_backup_recovery_point_arn: ::String,
|
2354
2355
|
?enable_limitless_database: bool,
|
2355
2356
|
?ca_certificate_identifier: ::String,
|
@@ -2441,6 +2442,7 @@ module Aws
|
|
2441
2442
|
?auto_minor_version_upgrade: bool,
|
2442
2443
|
?license_model: ::String,
|
2443
2444
|
?iops: ::Integer,
|
2445
|
+
?storage_throughput: ::Integer,
|
2444
2446
|
?option_group_name: ::String,
|
2445
2447
|
?new_db_instance_identifier: ::String,
|
2446
2448
|
?storage_type: ::String,
|
@@ -2452,13 +2454,13 @@ module Aws
|
|
2452
2454
|
?domain_ou: ::String,
|
2453
2455
|
?domain_auth_secret_arn: ::String,
|
2454
2456
|
?domain_dns_ips: Array[::String],
|
2457
|
+
?disable_domain: bool,
|
2455
2458
|
?copy_tags_to_snapshot: bool,
|
2456
2459
|
?monitoring_interval: ::Integer,
|
2457
2460
|
?db_port_number: ::Integer,
|
2458
2461
|
?publicly_accessible: bool,
|
2459
2462
|
?monitoring_role_arn: ::String,
|
2460
2463
|
?domain_iam_role_name: ::String,
|
2461
|
-
?disable_domain: bool,
|
2462
2464
|
?promotion_tier: ::Integer,
|
2463
2465
|
?enable_iam_database_authentication: bool,
|
2464
2466
|
?database_insights_mode: ("standard" | "advanced"),
|
@@ -2480,18 +2482,17 @@ module Aws
|
|
2480
2482
|
?max_allocated_storage: ::Integer,
|
2481
2483
|
?certificate_rotation_restart: bool,
|
2482
2484
|
?replica_mode: ("open-read-only" | "mounted"),
|
2483
|
-
?enable_customer_owned_ip: bool,
|
2484
|
-
?aws_backup_recovery_point_arn: ::String,
|
2485
2485
|
?automation_mode: ("full" | "all-paused"),
|
2486
2486
|
?resume_full_automation_mode_minutes: ::Integer,
|
2487
|
+
?enable_customer_owned_ip: bool,
|
2487
2488
|
?network_type: ::String,
|
2488
|
-
?
|
2489
|
+
?aws_backup_recovery_point_arn: ::String,
|
2489
2490
|
?manage_master_user_password: bool,
|
2490
2491
|
?rotate_master_user_password: bool,
|
2491
2492
|
?master_user_secret_kms_key_id: ::String,
|
2492
|
-
?engine: ::String,
|
2493
|
-
?dedicated_log_volume: bool,
|
2494
2493
|
?multi_tenant: bool,
|
2494
|
+
?dedicated_log_volume: bool,
|
2495
|
+
?engine: ::String,
|
2495
2496
|
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2496
2497
|
) -> _ModifyDBInstanceResponseSuccess
|
2497
2498
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBInstanceResponseSuccess
|
@@ -2529,6 +2530,7 @@ module Aws
|
|
2529
2530
|
def modify_db_proxy: (
|
2530
2531
|
db_proxy_name: ::String,
|
2531
2532
|
?new_db_proxy_name: ::String,
|
2533
|
+
?default_auth_scheme: ("IAM_AUTH" | "NONE"),
|
2532
2534
|
?auth: Array[
|
2533
2535
|
{
|
2534
2536
|
description: ::String?,
|
@@ -2676,13 +2678,13 @@ module Aws
|
|
2676
2678
|
end
|
2677
2679
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_global_cluster-instance_method
|
2678
2680
|
def modify_global_cluster: (
|
2679
|
-
|
2681
|
+
global_cluster_identifier: ::String,
|
2680
2682
|
?new_global_cluster_identifier: ::String,
|
2681
2683
|
?deletion_protection: bool,
|
2682
2684
|
?engine_version: ::String,
|
2683
2685
|
?allow_major_version_upgrade: bool
|
2684
2686
|
) -> _ModifyGlobalClusterResponseSuccess
|
2685
|
-
| (
|
2687
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyGlobalClusterResponseSuccess
|
2686
2688
|
|
2687
2689
|
interface _ModifyIntegrationResponseSuccess
|
2688
2690
|
include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
|
@@ -2694,10 +2696,10 @@ module Aws
|
|
2694
2696
|
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
2695
2697
|
def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
2696
2698
|
def tags: () -> ::Array[Types::Tag]
|
2697
|
-
def create_time: () -> ::Time
|
2698
|
-
def errors: () -> ::Array[Types::IntegrationError]
|
2699
2699
|
def data_filter: () -> ::String
|
2700
2700
|
def description: () -> ::String
|
2701
|
+
def create_time: () -> ::Time
|
2702
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
2701
2703
|
end
|
2702
2704
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_integration-instance_method
|
2703
2705
|
def modify_integration: (
|
@@ -2858,10 +2860,10 @@ module Aws
|
|
2858
2860
|
end
|
2859
2861
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#remove_from_global_cluster-instance_method
|
2860
2862
|
def remove_from_global_cluster: (
|
2861
|
-
|
2862
|
-
|
2863
|
+
global_cluster_identifier: ::String,
|
2864
|
+
db_cluster_identifier: ::String
|
2863
2865
|
) -> _RemoveFromGlobalClusterResponseSuccess
|
2864
|
-
| (
|
2866
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveFromGlobalClusterResponseSuccess
|
2865
2867
|
|
2866
2868
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#remove_role_from_db_cluster-instance_method
|
2867
2869
|
def remove_role_from_db_cluster: (
|
@@ -2991,15 +2993,15 @@ module Aws
|
|
2991
2993
|
?copy_tags_to_snapshot: bool,
|
2992
2994
|
?domain: ::String,
|
2993
2995
|
?domain_iam_role_name: ::String,
|
2996
|
+
?storage_type: ::String,
|
2997
|
+
?network_type: ::String,
|
2994
2998
|
?serverless_v2_scaling_configuration: {
|
2995
2999
|
min_capacity: ::Float?,
|
2996
3000
|
max_capacity: ::Float?,
|
2997
3001
|
seconds_until_auto_pause: ::Integer?
|
2998
3002
|
},
|
2999
|
-
?network_type: ::String,
|
3000
3003
|
?manage_master_user_password: bool,
|
3001
3004
|
?master_user_secret_kms_key_id: ::String,
|
3002
|
-
?storage_type: ::String,
|
3003
3005
|
?engine_lifecycle_support: ::String
|
3004
3006
|
) -> _RestoreDBClusterFromS3ResponseSuccess
|
3005
3007
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromS3ResponseSuccess
|
@@ -3048,12 +3050,12 @@ module Aws
|
|
3048
3050
|
?storage_type: ::String,
|
3049
3051
|
?iops: ::Integer,
|
3050
3052
|
?publicly_accessible: bool,
|
3053
|
+
?network_type: ::String,
|
3051
3054
|
?serverless_v2_scaling_configuration: {
|
3052
3055
|
min_capacity: ::Float?,
|
3053
3056
|
max_capacity: ::Float?,
|
3054
3057
|
seconds_until_auto_pause: ::Integer?
|
3055
3058
|
},
|
3056
|
-
?network_type: ::String,
|
3057
3059
|
?rds_custom_cluster_configuration: {
|
3058
3060
|
interconnect_subnet_id: ::String?,
|
3059
3061
|
transit_gateway_multicast_domain_id: ::String?,
|
@@ -3098,26 +3100,26 @@ module Aws
|
|
3098
3100
|
?copy_tags_to_snapshot: bool,
|
3099
3101
|
?domain: ::String,
|
3100
3102
|
?domain_iam_role_name: ::String,
|
3101
|
-
?scaling_configuration: {
|
3102
|
-
min_capacity: ::Integer?,
|
3103
|
-
max_capacity: ::Integer?,
|
3104
|
-
auto_pause: bool?,
|
3105
|
-
seconds_until_auto_pause: ::Integer?,
|
3106
|
-
timeout_action: ::String?,
|
3107
|
-
seconds_before_timeout: ::Integer?
|
3108
|
-
},
|
3109
|
-
?engine_mode: ::String,
|
3110
3103
|
?db_cluster_instance_class: ::String,
|
3111
3104
|
?storage_type: ::String,
|
3112
3105
|
?publicly_accessible: bool,
|
3113
3106
|
?iops: ::Integer,
|
3107
|
+
?network_type: ::String,
|
3108
|
+
?source_db_cluster_resource_id: ::String,
|
3114
3109
|
?serverless_v2_scaling_configuration: {
|
3115
3110
|
min_capacity: ::Float?,
|
3116
3111
|
max_capacity: ::Float?,
|
3117
3112
|
seconds_until_auto_pause: ::Integer?
|
3118
3113
|
},
|
3119
|
-
?
|
3120
|
-
|
3114
|
+
?scaling_configuration: {
|
3115
|
+
min_capacity: ::Integer?,
|
3116
|
+
max_capacity: ::Integer?,
|
3117
|
+
auto_pause: bool?,
|
3118
|
+
seconds_until_auto_pause: ::Integer?,
|
3119
|
+
timeout_action: ::String?,
|
3120
|
+
seconds_before_timeout: ::Integer?
|
3121
|
+
},
|
3122
|
+
?engine_mode: ::String,
|
3121
3123
|
?rds_custom_cluster_configuration: {
|
3122
3124
|
interconnect_subnet_id: ::String?,
|
3123
3125
|
transit_gateway_multicast_domain_id: ::String?,
|
@@ -3151,6 +3153,7 @@ module Aws
|
|
3151
3153
|
?db_name: ::String,
|
3152
3154
|
?engine: ::String,
|
3153
3155
|
?iops: ::Integer,
|
3156
|
+
?storage_throughput: ::Integer,
|
3154
3157
|
?option_group_name: ::String,
|
3155
3158
|
?tags: Array[
|
3156
3159
|
{
|
@@ -3181,12 +3184,11 @@ module Aws
|
|
3181
3184
|
?db_parameter_group_name: ::String,
|
3182
3185
|
?deletion_protection: bool,
|
3183
3186
|
?enable_customer_owned_ip: bool,
|
3184
|
-
?custom_iam_instance_profile: ::String,
|
3185
|
-
?backup_target: ::String,
|
3186
3187
|
?network_type: ::String,
|
3187
|
-
?
|
3188
|
-
?
|
3188
|
+
?backup_target: ::String,
|
3189
|
+
?custom_iam_instance_profile: ::String,
|
3189
3190
|
?allocated_storage: ::Integer,
|
3191
|
+
?db_cluster_snapshot_identifier: ::String,
|
3190
3192
|
?dedicated_log_volume: bool,
|
3191
3193
|
?ca_certificate_identifier: ::String,
|
3192
3194
|
?engine_lifecycle_support: ::String,
|
@@ -3222,6 +3224,7 @@ module Aws
|
|
3222
3224
|
?auto_minor_version_upgrade: bool,
|
3223
3225
|
?license_model: ::String,
|
3224
3226
|
?iops: ::Integer,
|
3227
|
+
?storage_throughput: ::Integer,
|
3225
3228
|
?option_group_name: ::String,
|
3226
3229
|
?publicly_accessible: bool,
|
3227
3230
|
?tags: Array[
|
@@ -3257,7 +3260,6 @@ module Aws
|
|
3257
3260
|
?deletion_protection: bool,
|
3258
3261
|
?max_allocated_storage: ::Integer,
|
3259
3262
|
?network_type: ::String,
|
3260
|
-
?storage_throughput: ::Integer,
|
3261
3263
|
?manage_master_user_password: bool,
|
3262
3264
|
?master_user_secret_kms_key_id: ::String,
|
3263
3265
|
?dedicated_log_volume: bool,
|
@@ -3287,6 +3289,7 @@ module Aws
|
|
3287
3289
|
?db_name: ::String,
|
3288
3290
|
?engine: ::String,
|
3289
3291
|
?iops: ::Integer,
|
3292
|
+
?storage_throughput: ::Integer,
|
3290
3293
|
?option_group_name: ::String,
|
3291
3294
|
?copy_tags_to_snapshot: bool,
|
3292
3295
|
?tags: Array[
|
@@ -3318,12 +3321,11 @@ module Aws
|
|
3318
3321
|
?deletion_protection: bool,
|
3319
3322
|
?source_dbi_resource_id: ::String,
|
3320
3323
|
?max_allocated_storage: ::Integer,
|
3321
|
-
?source_db_instance_automated_backups_arn: ::String,
|
3322
3324
|
?enable_customer_owned_ip: bool,
|
3323
|
-
?custom_iam_instance_profile: ::String,
|
3324
|
-
?backup_target: ::String,
|
3325
3325
|
?network_type: ::String,
|
3326
|
-
?
|
3326
|
+
?source_db_instance_automated_backups_arn: ::String,
|
3327
|
+
?backup_target: ::String,
|
3328
|
+
?custom_iam_instance_profile: ::String,
|
3327
3329
|
?allocated_storage: ::Integer,
|
3328
3330
|
?dedicated_log_volume: bool,
|
3329
3331
|
?ca_certificate_identifier: ::String,
|
@@ -3353,8 +3355,8 @@ module Aws
|
|
3353
3355
|
def kinesis_stream_name: () -> ::String
|
3354
3356
|
def status: () -> ("stopped" | "starting" | "started" | "stopping")
|
3355
3357
|
def mode: () -> ("sync" | "async")
|
3356
|
-
def apply_immediately: () -> bool
|
3357
3358
|
def engine_native_audit_fields_included: () -> bool
|
3359
|
+
def apply_immediately: () -> bool
|
3358
3360
|
end
|
3359
3361
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#start_activity_stream-instance_method
|
3360
3362
|
def start_activity_stream: (
|