aws-sdk-rds 1.230.0 → 1.232.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.
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.230.0'
81
+ GEM_VERSION = '1.232.0'
82
82
 
83
83
  end
data/sig/client.rbs CHANGED
@@ -437,6 +437,7 @@ module Aws
437
437
  ?master_user_secret_kms_key_id: ::String,
438
438
  ?enable_local_write_forwarding: bool,
439
439
  ?ca_certificate_identifier: ::String,
440
+ ?engine_lifecycle_support: ::String,
440
441
  ?source_region: ::String
441
442
  ) -> _CreateDBClusterResponseSuccess
442
443
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
@@ -582,7 +583,8 @@ module Aws
582
583
  ?ca_certificate_identifier: ::String,
583
584
  ?db_system_id: ::String,
584
585
  ?dedicated_log_volume: bool,
585
- ?multi_tenant: bool
586
+ ?multi_tenant: bool,
587
+ ?engine_lifecycle_support: ::String
586
588
  ) -> _CreateDBInstanceResponseSuccess
587
589
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceResponseSuccess
588
590
 
@@ -826,6 +828,7 @@ module Aws
826
828
  ?source_db_cluster_identifier: ::String,
827
829
  ?engine: ::String,
828
830
  ?engine_version: ::String,
831
+ ?engine_lifecycle_support: ::String,
829
832
  ?deletion_protection: bool,
830
833
  ?database_name: ::String,
831
834
  ?storage_encrypted: bool
@@ -2918,7 +2921,8 @@ module Aws
2918
2921
  ?network_type: ::String,
2919
2922
  ?manage_master_user_password: bool,
2920
2923
  ?master_user_secret_kms_key_id: ::String,
2921
- ?storage_type: ::String
2924
+ ?storage_type: ::String,
2925
+ ?engine_lifecycle_support: ::String
2922
2926
  ) -> _RestoreDBClusterFromS3ResponseSuccess
2923
2927
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromS3ResponseSuccess
2924
2928
 
@@ -2975,7 +2979,8 @@ module Aws
2975
2979
  interconnect_subnet_id: ::String?,
2976
2980
  transit_gateway_multicast_domain_id: ::String?,
2977
2981
  replica_mode: ("open-read-only" | "mounted")?
2978
- }
2982
+ },
2983
+ ?engine_lifecycle_support: ::String
2979
2984
  ) -> _RestoreDBClusterFromSnapshotResponseSuccess
2980
2985
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromSnapshotResponseSuccess
2981
2986
 
@@ -3032,7 +3037,8 @@ module Aws
3032
3037
  interconnect_subnet_id: ::String?,
3033
3038
  transit_gateway_multicast_domain_id: ::String?,
3034
3039
  replica_mode: ("open-read-only" | "mounted")?
3035
- }
3040
+ },
3041
+ ?engine_lifecycle_support: ::String
3036
3042
  ) -> _RestoreDBClusterToPointInTimeResponseSuccess
3037
3043
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterToPointInTimeResponseSuccess
3038
3044
 
@@ -3092,7 +3098,8 @@ module Aws
3092
3098
  ?db_cluster_snapshot_identifier: ::String,
3093
3099
  ?allocated_storage: ::Integer,
3094
3100
  ?dedicated_log_volume: bool,
3095
- ?ca_certificate_identifier: ::String
3101
+ ?ca_certificate_identifier: ::String,
3102
+ ?engine_lifecycle_support: ::String
3096
3103
  ) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
3097
3104
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
3098
3105
 
@@ -3161,7 +3168,8 @@ module Aws
3161
3168
  ?manage_master_user_password: bool,
3162
3169
  ?master_user_secret_kms_key_id: ::String,
3163
3170
  ?dedicated_log_volume: bool,
3164
- ?ca_certificate_identifier: ::String
3171
+ ?ca_certificate_identifier: ::String,
3172
+ ?engine_lifecycle_support: ::String
3165
3173
  ) -> _RestoreDBInstanceFromS3ResponseSuccess
3166
3174
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromS3ResponseSuccess
3167
3175
 
@@ -3225,7 +3233,8 @@ module Aws
3225
3233
  ?storage_throughput: ::Integer,
3226
3234
  ?allocated_storage: ::Integer,
3227
3235
  ?dedicated_log_volume: bool,
3228
- ?ca_certificate_identifier: ::String
3236
+ ?ca_certificate_identifier: ::String,
3237
+ ?engine_lifecycle_support: ::String
3229
3238
  ) -> _RestoreDBInstanceToPointInTimeResponseSuccess
3230
3239
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceToPointInTimeResponseSuccess
3231
3240
 
data/sig/db_cluster.rbs CHANGED
@@ -252,6 +252,9 @@ module Aws
252
252
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#certificate_details-instance_method
253
253
  def certificate_details: () -> Types::CertificateDetails
254
254
 
255
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#engine_lifecycle_support-instance_method
256
+ def engine_lifecycle_support: () -> ::String
257
+
255
258
  def client: () -> Client
256
259
 
257
260
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#load-instance_method
@@ -338,6 +341,7 @@ module Aws
338
341
  ?master_user_secret_kms_key_id: ::String,
339
342
  ?enable_local_write_forwarding: bool,
340
343
  ?ca_certificate_identifier: ::String,
344
+ ?engine_lifecycle_support: ::String,
341
345
  ?source_region: ::String
342
346
  ) -> DBCluster
343
347
  | (?Hash[Symbol, untyped]) -> DBCluster
@@ -478,7 +482,8 @@ module Aws
478
482
  interconnect_subnet_id: ::String?,
479
483
  transit_gateway_multicast_domain_id: ::String?,
480
484
  replica_mode: ("open-read-only" | "mounted")?
481
- }
485
+ },
486
+ ?engine_lifecycle_support: ::String
482
487
  ) -> DBCluster
483
488
  | (?Hash[Symbol, untyped]) -> DBCluster
484
489
 
@@ -187,7 +187,8 @@ module Aws
187
187
  interconnect_subnet_id: ::String?,
188
188
  transit_gateway_multicast_domain_id: ::String?,
189
189
  replica_mode: ("open-read-only" | "mounted")?
190
- }
190
+ },
191
+ ?engine_lifecycle_support: ::String
191
192
  ) -> DBCluster
192
193
  | (?Hash[Symbol, untyped]) -> DBCluster
193
194
 
data/sig/db_instance.rbs CHANGED
@@ -270,6 +270,9 @@ module Aws
270
270
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#multi_tenant-instance_method
271
271
  def multi_tenant: () -> bool
272
272
 
273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#engine_lifecycle_support-instance_method
274
+ def engine_lifecycle_support: () -> ::String
275
+
273
276
  def client: () -> Client
274
277
 
275
278
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#load-instance_method
@@ -355,7 +358,8 @@ module Aws
355
358
  ?ca_certificate_identifier: ::String,
356
359
  ?db_system_id: ::String,
357
360
  ?dedicated_log_volume: bool,
358
- ?multi_tenant: bool
361
+ ?multi_tenant: bool,
362
+ ?engine_lifecycle_support: ::String
359
363
  ) -> DBInstance
360
364
  | (?Hash[Symbol, untyped]) -> DBInstance
361
365
 
@@ -579,7 +583,8 @@ module Aws
579
583
  ?storage_throughput: ::Integer,
580
584
  ?allocated_storage: ::Integer,
581
585
  ?dedicated_log_volume: bool,
582
- ?ca_certificate_identifier: ::String
586
+ ?ca_certificate_identifier: ::String,
587
+ ?engine_lifecycle_support: ::String
583
588
  ) -> DBInstance
584
589
  | (?Hash[Symbol, untyped]) -> DBInstance
585
590
 
data/sig/db_snapshot.rbs CHANGED
@@ -223,7 +223,8 @@ module Aws
223
223
  ?db_cluster_snapshot_identifier: ::String,
224
224
  ?allocated_storage: ::Integer,
225
225
  ?dedicated_log_volume: bool,
226
- ?ca_certificate_identifier: ::String
226
+ ?ca_certificate_identifier: ::String,
227
+ ?engine_lifecycle_support: ::String
227
228
  ) -> DBInstance
228
229
  | (?Hash[Symbol, untyped]) -> DBInstance
229
230
 
data/sig/resource.rbs CHANGED
@@ -148,6 +148,7 @@ module Aws
148
148
  ?master_user_secret_kms_key_id: ::String,
149
149
  ?enable_local_write_forwarding: bool,
150
150
  ?ca_certificate_identifier: ::String,
151
+ ?engine_lifecycle_support: ::String,
151
152
  ?source_region: ::String
152
153
  ) -> DBCluster
153
154
  | (?Hash[Symbol, untyped]) -> DBCluster
@@ -239,7 +240,8 @@ module Aws
239
240
  ?ca_certificate_identifier: ::String,
240
241
  ?db_system_id: ::String,
241
242
  ?dedicated_log_volume: bool,
242
- ?multi_tenant: bool
243
+ ?multi_tenant: bool,
244
+ ?engine_lifecycle_support: ::String
243
245
  ) -> DBInstance
244
246
  | (?Hash[Symbol, untyped]) -> DBInstance
245
247
 
data/sig/types.rbs CHANGED
@@ -393,6 +393,7 @@ module Aws::RDS
393
393
  attr_accessor master_user_secret_kms_key_id: ::String
394
394
  attr_accessor enable_local_write_forwarding: bool
395
395
  attr_accessor ca_certificate_identifier: ::String
396
+ attr_accessor engine_lifecycle_support: ::String
396
397
  attr_accessor source_region: ::String
397
398
  SENSITIVE: []
398
399
  end
@@ -490,6 +491,7 @@ module Aws::RDS
490
491
  attr_accessor db_system_id: ::String
491
492
  attr_accessor dedicated_log_volume: bool
492
493
  attr_accessor multi_tenant: bool
494
+ attr_accessor engine_lifecycle_support: ::String
493
495
  SENSITIVE: []
494
496
  end
495
497
 
@@ -667,6 +669,7 @@ module Aws::RDS
667
669
  attr_accessor source_db_cluster_identifier: ::String
668
670
  attr_accessor engine: ::String
669
671
  attr_accessor engine_version: ::String
672
+ attr_accessor engine_lifecycle_support: ::String
670
673
  attr_accessor deletion_protection: bool
671
674
  attr_accessor database_name: ::String
672
675
  attr_accessor storage_encrypted: bool
@@ -818,6 +821,7 @@ module Aws::RDS
818
821
  attr_accessor limitless_database: Types::LimitlessDatabase
819
822
  attr_accessor storage_throughput: ::Integer
820
823
  attr_accessor certificate_details: Types::CertificateDetails
824
+ attr_accessor engine_lifecycle_support: ::String
821
825
  SENSITIVE: []
822
826
  end
823
827
 
@@ -1184,6 +1188,7 @@ module Aws::RDS
1184
1188
  attr_accessor dedicated_log_volume: bool
1185
1189
  attr_accessor is_storage_config_upgrade_available: bool
1186
1190
  attr_accessor multi_tenant: bool
1191
+ attr_accessor engine_lifecycle_support: ::String
1187
1192
  SENSITIVE: []
1188
1193
  end
1189
1194
 
@@ -2509,6 +2514,7 @@ module Aws::RDS
2509
2514
  attr_accessor status: ::String
2510
2515
  attr_accessor engine: ::String
2511
2516
  attr_accessor engine_version: ::String
2517
+ attr_accessor engine_lifecycle_support: ::String
2512
2518
  attr_accessor database_name: ::String
2513
2519
  attr_accessor storage_encrypted: bool
2514
2520
  attr_accessor deletion_protection: bool
@@ -3655,6 +3661,7 @@ module Aws::RDS
3655
3661
  attr_accessor manage_master_user_password: bool
3656
3662
  attr_accessor master_user_secret_kms_key_id: ::String
3657
3663
  attr_accessor storage_type: ::String
3664
+ attr_accessor engine_lifecycle_support: ::String
3658
3665
  SENSITIVE: []
3659
3666
  end
3660
3667
 
@@ -3693,6 +3700,7 @@ module Aws::RDS
3693
3700
  attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
3694
3701
  attr_accessor network_type: ::String
3695
3702
  attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
3703
+ attr_accessor engine_lifecycle_support: ::String
3696
3704
  SENSITIVE: []
3697
3705
  end
3698
3706
 
@@ -3731,6 +3739,7 @@ module Aws::RDS
3731
3739
  attr_accessor network_type: ::String
3732
3740
  attr_accessor source_db_cluster_resource_id: ::String
3733
3741
  attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
3742
+ attr_accessor engine_lifecycle_support: ::String
3734
3743
  SENSITIVE: []
3735
3744
  end
3736
3745
 
@@ -3781,6 +3790,7 @@ module Aws::RDS
3781
3790
  attr_accessor allocated_storage: ::Integer
3782
3791
  attr_accessor dedicated_log_volume: bool
3783
3792
  attr_accessor ca_certificate_identifier: ::String
3793
+ attr_accessor engine_lifecycle_support: ::String
3784
3794
  SENSITIVE: []
3785
3795
  end
3786
3796
 
@@ -3840,6 +3850,7 @@ module Aws::RDS
3840
3850
  attr_accessor master_user_secret_kms_key_id: ::String
3841
3851
  attr_accessor dedicated_log_volume: bool
3842
3852
  attr_accessor ca_certificate_identifier: ::String
3853
+ attr_accessor engine_lifecycle_support: ::String
3843
3854
  SENSITIVE: []
3844
3855
  end
3845
3856
 
@@ -3894,6 +3905,7 @@ module Aws::RDS
3894
3905
  attr_accessor allocated_storage: ::Integer
3895
3906
  attr_accessor dedicated_log_volume: bool
3896
3907
  attr_accessor ca_certificate_identifier: ::String
3908
+ attr_accessor engine_lifecycle_support: ::String
3897
3909
  SENSITIVE: []
3898
3910
  end
3899
3911
 
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.230.0
4
+ version: 1.232.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-05-13 00:00:00.000000000 Z
11
+ date: 2024-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core