aws-sdk-rds 1.290.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1518 -1355
- data/lib/aws-sdk-rds/client_api.rb +220 -159
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/db_cluster.rb +374 -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 +317 -289
- 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 +212 -182
- data/lib/aws-sdk-rds/types.rb +1228 -1017
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +114 -105
- data/sig/db_cluster.rbs +68 -66
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +47 -45
- data/sig/db_snapshot.rbs +14 -14
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +24 -22
- data/sig/types.rbs +133 -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,19 +447,14 @@ 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
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
457
458
|
?source_region: ::String
|
458
459
|
) -> _CreateDBClusterResponseSuccess
|
459
460
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
|
@@ -549,6 +550,7 @@ module Aws
|
|
549
550
|
?auto_minor_version_upgrade: bool,
|
550
551
|
?license_model: ::String,
|
551
552
|
?iops: ::Integer,
|
553
|
+
?storage_throughput: ::Integer,
|
552
554
|
?option_group_name: ::String,
|
553
555
|
?character_set_name: ::String,
|
554
556
|
?nchar_character_set_name: ::String,
|
@@ -591,17 +593,17 @@ module Aws
|
|
591
593
|
?deletion_protection: bool,
|
592
594
|
?max_allocated_storage: ::Integer,
|
593
595
|
?enable_customer_owned_ip: bool,
|
594
|
-
?custom_iam_instance_profile: ::String,
|
595
|
-
?backup_target: ::String,
|
596
596
|
?network_type: ::String,
|
597
|
-
?
|
597
|
+
?backup_target: ::String,
|
598
|
+
?custom_iam_instance_profile: ::String,
|
599
|
+
?db_system_id: ::String,
|
600
|
+
?ca_certificate_identifier: ::String,
|
598
601
|
?manage_master_user_password: bool,
|
599
602
|
?master_user_secret_kms_key_id: ::String,
|
600
|
-
?ca_certificate_identifier: ::String,
|
601
|
-
?db_system_id: ::String,
|
602
|
-
?dedicated_log_volume: bool,
|
603
603
|
?multi_tenant: bool,
|
604
|
-
?
|
604
|
+
?dedicated_log_volume: bool,
|
605
|
+
?engine_lifecycle_support: ::String,
|
606
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
605
607
|
) -> _CreateDBInstanceResponseSuccess
|
606
608
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceResponseSuccess
|
607
609
|
|
@@ -619,6 +621,7 @@ module Aws
|
|
619
621
|
?multi_az: bool,
|
620
622
|
?auto_minor_version_upgrade: bool,
|
621
623
|
?iops: ::Integer,
|
624
|
+
?storage_throughput: ::Integer,
|
622
625
|
?option_group_name: ::String,
|
623
626
|
?db_parameter_group_name: ::String,
|
624
627
|
?publicly_accessible: bool,
|
@@ -657,12 +660,11 @@ module Aws
|
|
657
660
|
?domain_auth_secret_arn: ::String,
|
658
661
|
?domain_dns_ips: Array[::String],
|
659
662
|
?replica_mode: ("open-read-only" | "mounted"),
|
660
|
-
?max_allocated_storage: ::Integer,
|
661
|
-
?custom_iam_instance_profile: ::String,
|
662
|
-
?network_type: ::String,
|
663
|
-
?storage_throughput: ::Integer,
|
664
663
|
?enable_customer_owned_ip: bool,
|
664
|
+
?network_type: ::String,
|
665
|
+
?max_allocated_storage: ::Integer,
|
665
666
|
?backup_target: ::String,
|
667
|
+
?custom_iam_instance_profile: ::String,
|
666
668
|
?allocated_storage: ::Integer,
|
667
669
|
?source_db_cluster_identifier: ::String,
|
668
670
|
?dedicated_log_volume: bool,
|
@@ -698,7 +700,8 @@ module Aws
|
|
698
700
|
def create_db_proxy: (
|
699
701
|
db_proxy_name: ::String,
|
700
702
|
engine_family: ("MYSQL" | "POSTGRESQL" | "SQLSERVER"),
|
701
|
-
|
703
|
+
?default_auth_scheme: ("IAM_AUTH" | "NONE"),
|
704
|
+
?auth: Array[
|
702
705
|
{
|
703
706
|
description: ::String?,
|
704
707
|
user_name: ::String?,
|
@@ -719,7 +722,9 @@ module Aws
|
|
719
722
|
key: ::String?,
|
720
723
|
value: ::String?
|
721
724
|
},
|
722
|
-
]
|
725
|
+
],
|
726
|
+
?endpoint_network_type: ("IPV4" | "IPV6" | "DUAL"),
|
727
|
+
?target_connection_network_type: ("IPV4" | "IPV6")
|
723
728
|
) -> _CreateDBProxyResponseSuccess
|
724
729
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBProxyResponseSuccess
|
725
730
|
|
@@ -739,7 +744,8 @@ module Aws
|
|
739
744
|
key: ::String?,
|
740
745
|
value: ::String?
|
741
746
|
},
|
742
|
-
]
|
747
|
+
],
|
748
|
+
?endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
743
749
|
) -> _CreateDBProxyEndpointResponseSuccess
|
744
750
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBProxyEndpointResponseSuccess
|
745
751
|
|
@@ -853,7 +859,7 @@ module Aws
|
|
853
859
|
end
|
854
860
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_global_cluster-instance_method
|
855
861
|
def create_global_cluster: (
|
856
|
-
|
862
|
+
global_cluster_identifier: ::String,
|
857
863
|
?source_db_cluster_identifier: ::String,
|
858
864
|
?engine: ::String,
|
859
865
|
?engine_version: ::String,
|
@@ -868,7 +874,7 @@ module Aws
|
|
868
874
|
},
|
869
875
|
]
|
870
876
|
) -> _CreateGlobalClusterResponseSuccess
|
871
|
-
| (
|
877
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlobalClusterResponseSuccess
|
872
878
|
|
873
879
|
interface _CreateIntegrationResponseSuccess
|
874
880
|
include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
|
@@ -880,10 +886,10 @@ module Aws
|
|
880
886
|
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
881
887
|
def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
882
888
|
def tags: () -> ::Array[Types::Tag]
|
883
|
-
def create_time: () -> ::Time
|
884
|
-
def errors: () -> ::Array[Types::IntegrationError]
|
885
889
|
def data_filter: () -> ::String
|
886
890
|
def description: () -> ::String
|
891
|
+
def create_time: () -> ::Time
|
892
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
887
893
|
end
|
888
894
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_integration-instance_method
|
889
895
|
def create_integration: (
|
@@ -959,13 +965,20 @@ module Aws
|
|
959
965
|
interface _DeleteCustomDBEngineVersionResponseSuccess
|
960
966
|
include ::Seahorse::Client::_ResponseSuccess[Types::DBEngineVersion]
|
961
967
|
def engine: () -> ::String
|
968
|
+
def major_engine_version: () -> ::String
|
962
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
|
963
973
|
def db_parameter_group_family: () -> ::String
|
964
974
|
def db_engine_description: () -> ::String
|
975
|
+
def db_engine_version_arn: () -> ::String
|
965
976
|
def db_engine_version_description: () -> ::String
|
966
977
|
def default_character_set: () -> Types::CharacterSet
|
967
978
|
def image: () -> Types::CustomDBEngineVersionAMI
|
968
979
|
def db_engine_media_type: () -> ::String
|
980
|
+
def kms_key_id: () -> ::String
|
981
|
+
def create_time: () -> ::Time
|
969
982
|
def supported_character_sets: () -> ::Array[Types::CharacterSet]
|
970
983
|
def supported_nchar_character_sets: () -> ::Array[Types::CharacterSet]
|
971
984
|
def valid_upgrade_target: () -> ::Array[Types::UpgradeTarget]
|
@@ -978,15 +991,8 @@ module Aws
|
|
978
991
|
def status: () -> ::String
|
979
992
|
def supports_parallel_query: () -> bool
|
980
993
|
def supports_global_databases: () -> bool
|
981
|
-
def major_engine_version: () -> ::String
|
982
|
-
def database_installation_files_s3_bucket_name: () -> ::String
|
983
|
-
def database_installation_files_s3_prefix: () -> ::String
|
984
|
-
def db_engine_version_arn: () -> ::String
|
985
|
-
def kms_key_id: () -> ::String
|
986
|
-
def create_time: () -> ::Time
|
987
994
|
def tag_list: () -> ::Array[Types::Tag]
|
988
995
|
def supports_babelfish: () -> bool
|
989
|
-
def custom_db_engine_version_manifest: () -> ::String
|
990
996
|
def supports_limitless_database: () -> bool
|
991
997
|
def supports_certificate_rotation_without_restart: () -> bool
|
992
998
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
@@ -1181,10 +1187,10 @@ module Aws
|
|
1181
1187
|
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
1182
1188
|
def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
1183
1189
|
def tags: () -> ::Array[Types::Tag]
|
1184
|
-
def create_time: () -> ::Time
|
1185
|
-
def errors: () -> ::Array[Types::IntegrationError]
|
1186
1190
|
def data_filter: () -> ::String
|
1187
1191
|
def description: () -> ::String
|
1192
|
+
def create_time: () -> ::Time
|
1193
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
1188
1194
|
end
|
1189
1195
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_integration-instance_method
|
1190
1196
|
def delete_integration: (
|
@@ -1856,7 +1862,7 @@ module Aws
|
|
1856
1862
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#describe_events-instance_method
|
1857
1863
|
def describe_events: (
|
1858
1864
|
?source_identifier: ::String,
|
1859
|
-
?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"),
|
1860
1866
|
?start_time: ::Time,
|
1861
1867
|
?end_time: ::Time,
|
1862
1868
|
?duration: ::Integer,
|
@@ -2238,13 +2244,20 @@ module Aws
|
|
2238
2244
|
interface _ModifyCustomDBEngineVersionResponseSuccess
|
2239
2245
|
include ::Seahorse::Client::_ResponseSuccess[Types::DBEngineVersion]
|
2240
2246
|
def engine: () -> ::String
|
2247
|
+
def major_engine_version: () -> ::String
|
2241
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
|
2242
2252
|
def db_parameter_group_family: () -> ::String
|
2243
2253
|
def db_engine_description: () -> ::String
|
2254
|
+
def db_engine_version_arn: () -> ::String
|
2244
2255
|
def db_engine_version_description: () -> ::String
|
2245
2256
|
def default_character_set: () -> Types::CharacterSet
|
2246
2257
|
def image: () -> Types::CustomDBEngineVersionAMI
|
2247
2258
|
def db_engine_media_type: () -> ::String
|
2259
|
+
def kms_key_id: () -> ::String
|
2260
|
+
def create_time: () -> ::Time
|
2248
2261
|
def supported_character_sets: () -> ::Array[Types::CharacterSet]
|
2249
2262
|
def supported_nchar_character_sets: () -> ::Array[Types::CharacterSet]
|
2250
2263
|
def valid_upgrade_target: () -> ::Array[Types::UpgradeTarget]
|
@@ -2257,15 +2270,8 @@ module Aws
|
|
2257
2270
|
def status: () -> ::String
|
2258
2271
|
def supports_parallel_query: () -> bool
|
2259
2272
|
def supports_global_databases: () -> bool
|
2260
|
-
def major_engine_version: () -> ::String
|
2261
|
-
def database_installation_files_s3_bucket_name: () -> ::String
|
2262
|
-
def database_installation_files_s3_prefix: () -> ::String
|
2263
|
-
def db_engine_version_arn: () -> ::String
|
2264
|
-
def kms_key_id: () -> ::String
|
2265
|
-
def create_time: () -> ::Time
|
2266
2273
|
def tag_list: () -> ::Array[Types::Tag]
|
2267
2274
|
def supports_babelfish: () -> bool
|
2268
|
-
def custom_db_engine_version_manifest: () -> ::String
|
2269
2275
|
def supports_limitless_database: () -> bool
|
2270
2276
|
def supports_certificate_rotation_without_restart: () -> bool
|
2271
2277
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
@@ -2327,27 +2333,28 @@ module Aws
|
|
2327
2333
|
?storage_type: ::String,
|
2328
2334
|
?iops: ::Integer,
|
2329
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
|
+
},
|
2330
2342
|
?monitoring_interval: ::Integer,
|
2331
2343
|
?monitoring_role_arn: ::String,
|
2332
2344
|
?database_insights_mode: ("standard" | "advanced"),
|
2333
2345
|
?enable_performance_insights: bool,
|
2334
2346
|
?performance_insights_kms_key_id: ::String,
|
2335
2347
|
?performance_insights_retention_period: ::Integer,
|
2336
|
-
?serverless_v2_scaling_configuration: {
|
2337
|
-
min_capacity: ::Float?,
|
2338
|
-
max_capacity: ::Float?,
|
2339
|
-
seconds_until_auto_pause: ::Integer?
|
2340
|
-
},
|
2341
|
-
?network_type: ::String,
|
2342
2348
|
?manage_master_user_password: bool,
|
2343
2349
|
?rotate_master_user_password: bool,
|
2350
|
+
?enable_local_write_forwarding: bool,
|
2344
2351
|
?master_user_secret_kms_key_id: ::String,
|
2345
2352
|
?engine_mode: ::String,
|
2346
2353
|
?allow_engine_mode_change: bool,
|
2347
|
-
?enable_local_write_forwarding: bool,
|
2348
2354
|
?aws_backup_recovery_point_arn: ::String,
|
2349
2355
|
?enable_limitless_database: bool,
|
2350
|
-
?ca_certificate_identifier: ::String
|
2356
|
+
?ca_certificate_identifier: ::String,
|
2357
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2351
2358
|
) -> _ModifyDBClusterResponseSuccess
|
2352
2359
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
|
2353
2360
|
|
@@ -2435,6 +2442,7 @@ module Aws
|
|
2435
2442
|
?auto_minor_version_upgrade: bool,
|
2436
2443
|
?license_model: ::String,
|
2437
2444
|
?iops: ::Integer,
|
2445
|
+
?storage_throughput: ::Integer,
|
2438
2446
|
?option_group_name: ::String,
|
2439
2447
|
?new_db_instance_identifier: ::String,
|
2440
2448
|
?storage_type: ::String,
|
@@ -2446,13 +2454,13 @@ module Aws
|
|
2446
2454
|
?domain_ou: ::String,
|
2447
2455
|
?domain_auth_secret_arn: ::String,
|
2448
2456
|
?domain_dns_ips: Array[::String],
|
2457
|
+
?disable_domain: bool,
|
2449
2458
|
?copy_tags_to_snapshot: bool,
|
2450
2459
|
?monitoring_interval: ::Integer,
|
2451
2460
|
?db_port_number: ::Integer,
|
2452
2461
|
?publicly_accessible: bool,
|
2453
2462
|
?monitoring_role_arn: ::String,
|
2454
2463
|
?domain_iam_role_name: ::String,
|
2455
|
-
?disable_domain: bool,
|
2456
2464
|
?promotion_tier: ::Integer,
|
2457
2465
|
?enable_iam_database_authentication: bool,
|
2458
2466
|
?database_insights_mode: ("standard" | "advanced"),
|
@@ -2474,18 +2482,18 @@ module Aws
|
|
2474
2482
|
?max_allocated_storage: ::Integer,
|
2475
2483
|
?certificate_rotation_restart: bool,
|
2476
2484
|
?replica_mode: ("open-read-only" | "mounted"),
|
2477
|
-
?enable_customer_owned_ip: bool,
|
2478
|
-
?aws_backup_recovery_point_arn: ::String,
|
2479
2485
|
?automation_mode: ("full" | "all-paused"),
|
2480
2486
|
?resume_full_automation_mode_minutes: ::Integer,
|
2487
|
+
?enable_customer_owned_ip: bool,
|
2481
2488
|
?network_type: ::String,
|
2482
|
-
?
|
2489
|
+
?aws_backup_recovery_point_arn: ::String,
|
2483
2490
|
?manage_master_user_password: bool,
|
2484
2491
|
?rotate_master_user_password: bool,
|
2485
2492
|
?master_user_secret_kms_key_id: ::String,
|
2486
|
-
?
|
2493
|
+
?multi_tenant: bool,
|
2487
2494
|
?dedicated_log_volume: bool,
|
2488
|
-
?
|
2495
|
+
?engine: ::String,
|
2496
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2489
2497
|
) -> _ModifyDBInstanceResponseSuccess
|
2490
2498
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBInstanceResponseSuccess
|
2491
2499
|
|
@@ -2522,6 +2530,7 @@ module Aws
|
|
2522
2530
|
def modify_db_proxy: (
|
2523
2531
|
db_proxy_name: ::String,
|
2524
2532
|
?new_db_proxy_name: ::String,
|
2533
|
+
?default_auth_scheme: ("IAM_AUTH" | "NONE"),
|
2525
2534
|
?auth: Array[
|
2526
2535
|
{
|
2527
2536
|
description: ::String?,
|
@@ -2669,13 +2678,13 @@ module Aws
|
|
2669
2678
|
end
|
2670
2679
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_global_cluster-instance_method
|
2671
2680
|
def modify_global_cluster: (
|
2672
|
-
|
2681
|
+
global_cluster_identifier: ::String,
|
2673
2682
|
?new_global_cluster_identifier: ::String,
|
2674
2683
|
?deletion_protection: bool,
|
2675
2684
|
?engine_version: ::String,
|
2676
2685
|
?allow_major_version_upgrade: bool
|
2677
2686
|
) -> _ModifyGlobalClusterResponseSuccess
|
2678
|
-
| (
|
2687
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyGlobalClusterResponseSuccess
|
2679
2688
|
|
2680
2689
|
interface _ModifyIntegrationResponseSuccess
|
2681
2690
|
include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
|
@@ -2687,10 +2696,10 @@ module Aws
|
|
2687
2696
|
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
2688
2697
|
def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
2689
2698
|
def tags: () -> ::Array[Types::Tag]
|
2690
|
-
def create_time: () -> ::Time
|
2691
|
-
def errors: () -> ::Array[Types::IntegrationError]
|
2692
2699
|
def data_filter: () -> ::String
|
2693
2700
|
def description: () -> ::String
|
2701
|
+
def create_time: () -> ::Time
|
2702
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
2694
2703
|
end
|
2695
2704
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_integration-instance_method
|
2696
2705
|
def modify_integration: (
|
@@ -2851,10 +2860,10 @@ module Aws
|
|
2851
2860
|
end
|
2852
2861
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#remove_from_global_cluster-instance_method
|
2853
2862
|
def remove_from_global_cluster: (
|
2854
|
-
|
2855
|
-
|
2863
|
+
global_cluster_identifier: ::String,
|
2864
|
+
db_cluster_identifier: ::String
|
2856
2865
|
) -> _RemoveFromGlobalClusterResponseSuccess
|
2857
|
-
| (
|
2866
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveFromGlobalClusterResponseSuccess
|
2858
2867
|
|
2859
2868
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#remove_role_from_db_cluster-instance_method
|
2860
2869
|
def remove_role_from_db_cluster: (
|
@@ -2984,15 +2993,15 @@ module Aws
|
|
2984
2993
|
?copy_tags_to_snapshot: bool,
|
2985
2994
|
?domain: ::String,
|
2986
2995
|
?domain_iam_role_name: ::String,
|
2996
|
+
?storage_type: ::String,
|
2997
|
+
?network_type: ::String,
|
2987
2998
|
?serverless_v2_scaling_configuration: {
|
2988
2999
|
min_capacity: ::Float?,
|
2989
3000
|
max_capacity: ::Float?,
|
2990
3001
|
seconds_until_auto_pause: ::Integer?
|
2991
3002
|
},
|
2992
|
-
?network_type: ::String,
|
2993
3003
|
?manage_master_user_password: bool,
|
2994
3004
|
?master_user_secret_kms_key_id: ::String,
|
2995
|
-
?storage_type: ::String,
|
2996
3005
|
?engine_lifecycle_support: ::String
|
2997
3006
|
) -> _RestoreDBClusterFromS3ResponseSuccess
|
2998
3007
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromS3ResponseSuccess
|
@@ -3041,12 +3050,12 @@ module Aws
|
|
3041
3050
|
?storage_type: ::String,
|
3042
3051
|
?iops: ::Integer,
|
3043
3052
|
?publicly_accessible: bool,
|
3053
|
+
?network_type: ::String,
|
3044
3054
|
?serverless_v2_scaling_configuration: {
|
3045
3055
|
min_capacity: ::Float?,
|
3046
3056
|
max_capacity: ::Float?,
|
3047
3057
|
seconds_until_auto_pause: ::Integer?
|
3048
3058
|
},
|
3049
|
-
?network_type: ::String,
|
3050
3059
|
?rds_custom_cluster_configuration: {
|
3051
3060
|
interconnect_subnet_id: ::String?,
|
3052
3061
|
transit_gateway_multicast_domain_id: ::String?,
|
@@ -3091,26 +3100,26 @@ module Aws
|
|
3091
3100
|
?copy_tags_to_snapshot: bool,
|
3092
3101
|
?domain: ::String,
|
3093
3102
|
?domain_iam_role_name: ::String,
|
3094
|
-
?scaling_configuration: {
|
3095
|
-
min_capacity: ::Integer?,
|
3096
|
-
max_capacity: ::Integer?,
|
3097
|
-
auto_pause: bool?,
|
3098
|
-
seconds_until_auto_pause: ::Integer?,
|
3099
|
-
timeout_action: ::String?,
|
3100
|
-
seconds_before_timeout: ::Integer?
|
3101
|
-
},
|
3102
|
-
?engine_mode: ::String,
|
3103
3103
|
?db_cluster_instance_class: ::String,
|
3104
3104
|
?storage_type: ::String,
|
3105
3105
|
?publicly_accessible: bool,
|
3106
3106
|
?iops: ::Integer,
|
3107
|
+
?network_type: ::String,
|
3108
|
+
?source_db_cluster_resource_id: ::String,
|
3107
3109
|
?serverless_v2_scaling_configuration: {
|
3108
3110
|
min_capacity: ::Float?,
|
3109
3111
|
max_capacity: ::Float?,
|
3110
3112
|
seconds_until_auto_pause: ::Integer?
|
3111
3113
|
},
|
3112
|
-
?
|
3113
|
-
|
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,
|
3114
3123
|
?rds_custom_cluster_configuration: {
|
3115
3124
|
interconnect_subnet_id: ::String?,
|
3116
3125
|
transit_gateway_multicast_domain_id: ::String?,
|
@@ -3144,6 +3153,7 @@ module Aws
|
|
3144
3153
|
?db_name: ::String,
|
3145
3154
|
?engine: ::String,
|
3146
3155
|
?iops: ::Integer,
|
3156
|
+
?storage_throughput: ::Integer,
|
3147
3157
|
?option_group_name: ::String,
|
3148
3158
|
?tags: Array[
|
3149
3159
|
{
|
@@ -3174,12 +3184,11 @@ module Aws
|
|
3174
3184
|
?db_parameter_group_name: ::String,
|
3175
3185
|
?deletion_protection: bool,
|
3176
3186
|
?enable_customer_owned_ip: bool,
|
3177
|
-
?custom_iam_instance_profile: ::String,
|
3178
|
-
?backup_target: ::String,
|
3179
3187
|
?network_type: ::String,
|
3180
|
-
?
|
3181
|
-
?
|
3188
|
+
?backup_target: ::String,
|
3189
|
+
?custom_iam_instance_profile: ::String,
|
3182
3190
|
?allocated_storage: ::Integer,
|
3191
|
+
?db_cluster_snapshot_identifier: ::String,
|
3183
3192
|
?dedicated_log_volume: bool,
|
3184
3193
|
?ca_certificate_identifier: ::String,
|
3185
3194
|
?engine_lifecycle_support: ::String,
|
@@ -3215,6 +3224,7 @@ module Aws
|
|
3215
3224
|
?auto_minor_version_upgrade: bool,
|
3216
3225
|
?license_model: ::String,
|
3217
3226
|
?iops: ::Integer,
|
3227
|
+
?storage_throughput: ::Integer,
|
3218
3228
|
?option_group_name: ::String,
|
3219
3229
|
?publicly_accessible: bool,
|
3220
3230
|
?tags: Array[
|
@@ -3250,7 +3260,6 @@ module Aws
|
|
3250
3260
|
?deletion_protection: bool,
|
3251
3261
|
?max_allocated_storage: ::Integer,
|
3252
3262
|
?network_type: ::String,
|
3253
|
-
?storage_throughput: ::Integer,
|
3254
3263
|
?manage_master_user_password: bool,
|
3255
3264
|
?master_user_secret_kms_key_id: ::String,
|
3256
3265
|
?dedicated_log_volume: bool,
|
@@ -3280,6 +3289,7 @@ module Aws
|
|
3280
3289
|
?db_name: ::String,
|
3281
3290
|
?engine: ::String,
|
3282
3291
|
?iops: ::Integer,
|
3292
|
+
?storage_throughput: ::Integer,
|
3283
3293
|
?option_group_name: ::String,
|
3284
3294
|
?copy_tags_to_snapshot: bool,
|
3285
3295
|
?tags: Array[
|
@@ -3311,12 +3321,11 @@ module Aws
|
|
3311
3321
|
?deletion_protection: bool,
|
3312
3322
|
?source_dbi_resource_id: ::String,
|
3313
3323
|
?max_allocated_storage: ::Integer,
|
3314
|
-
?source_db_instance_automated_backups_arn: ::String,
|
3315
3324
|
?enable_customer_owned_ip: bool,
|
3316
|
-
?custom_iam_instance_profile: ::String,
|
3317
|
-
?backup_target: ::String,
|
3318
3325
|
?network_type: ::String,
|
3319
|
-
?
|
3326
|
+
?source_db_instance_automated_backups_arn: ::String,
|
3327
|
+
?backup_target: ::String,
|
3328
|
+
?custom_iam_instance_profile: ::String,
|
3320
3329
|
?allocated_storage: ::Integer,
|
3321
3330
|
?dedicated_log_volume: bool,
|
3322
3331
|
?ca_certificate_identifier: ::String,
|
@@ -3346,8 +3355,8 @@ module Aws
|
|
3346
3355
|
def kinesis_stream_name: () -> ::String
|
3347
3356
|
def status: () -> ("stopped" | "starting" | "started" | "stopping")
|
3348
3357
|
def mode: () -> ("sync" | "async")
|
3349
|
-
def apply_immediately: () -> bool
|
3350
3358
|
def engine_native_audit_fields_included: () -> bool
|
3359
|
+
def apply_immediately: () -> bool
|
3351
3360
|
end
|
3352
3361
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#start_activity_stream-instance_method
|
3353
3362
|
def start_activity_stream: (
|