aws-sdk-rds 1.296.0 → 1.302.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/sig/resource.rbs CHANGED
@@ -151,13 +151,24 @@ module Aws
151
151
  ?performance_insights_kms_key_id: ::String,
152
152
  ?performance_insights_retention_period: ::Integer,
153
153
  ?enable_limitless_database: bool,
154
- ?cluster_scalability_type: ("standard" | "limitless" | "scaleout"),
154
+ ?cluster_scalability_type: ("standard" | "limitless"),
155
155
  ?db_system_id: ::String,
156
156
  ?manage_master_user_password: bool,
157
157
  ?enable_local_write_forwarding: bool,
158
158
  ?master_user_secret_kms_key_id: ::String,
159
159
  ?ca_certificate_identifier: ::String,
160
160
  ?engine_lifecycle_support: ::String,
161
+ ?tag_specifications: Array[
162
+ {
163
+ resource_type: ::String?,
164
+ tags: Array[
165
+ {
166
+ key: ::String?,
167
+ value: ::String?
168
+ },
169
+ ]?
170
+ },
171
+ ],
161
172
  ?master_user_authentication_type: ("password" | "iam-db-auth"),
162
173
  ?source_region: ::String
163
174
  ) -> DBCluster
@@ -253,7 +264,28 @@ module Aws
253
264
  ?multi_tenant: bool,
254
265
  ?dedicated_log_volume: bool,
255
266
  ?engine_lifecycle_support: ::String,
256
- ?master_user_authentication_type: ("password" | "iam-db-auth")
267
+ ?tag_specifications: Array[
268
+ {
269
+ resource_type: ::String?,
270
+ tags: Array[
271
+ {
272
+ key: ::String?,
273
+ value: ::String?
274
+ },
275
+ ]?
276
+ },
277
+ ],
278
+ ?master_user_authentication_type: ("password" | "iam-db-auth"),
279
+ ?additional_storage_volumes: Array[
280
+ {
281
+ volume_name: ::String,
282
+ allocated_storage: ::Integer?,
283
+ iops: ::Integer?,
284
+ max_allocated_storage: ::Integer?,
285
+ storage_throughput: ::Integer?,
286
+ storage_type: ::String?
287
+ },
288
+ ]
257
289
  ) -> DBInstance
258
290
  | (?Hash[Symbol, untyped]) -> DBInstance
259
291
 
data/sig/types.rbs CHANGED
@@ -51,6 +51,27 @@ module Aws::RDS
51
51
  SENSITIVE: []
52
52
  end
53
53
 
54
+ class AdditionalStorageVolume
55
+ attr_accessor volume_name: ::String
56
+ attr_accessor allocated_storage: ::Integer
57
+ attr_accessor iops: ::Integer
58
+ attr_accessor max_allocated_storage: ::Integer
59
+ attr_accessor storage_throughput: ::Integer
60
+ attr_accessor storage_type: ::String
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class AdditionalStorageVolumeOutput
65
+ attr_accessor volume_name: ::String
66
+ attr_accessor storage_volume_status: ::String
67
+ attr_accessor allocated_storage: ::Integer
68
+ attr_accessor iops: ::Integer
69
+ attr_accessor max_allocated_storage: ::Integer
70
+ attr_accessor storage_throughput: ::Integer
71
+ attr_accessor storage_type: ::String
72
+ SENSITIVE: []
73
+ end
74
+
54
75
  class ApplyPendingMaintenanceActionMessage
55
76
  attr_accessor resource_identifier: ::String
56
77
  attr_accessor apply_action: ::String
@@ -91,6 +112,22 @@ module Aws::RDS
91
112
  SENSITIVE: []
92
113
  end
93
114
 
115
+ class AvailableAdditionalStorageVolumesOption
116
+ attr_accessor supports_storage_autoscaling: bool
117
+ attr_accessor supports_storage_throughput: bool
118
+ attr_accessor supports_iops: bool
119
+ attr_accessor storage_type: ::String
120
+ attr_accessor min_storage_size: ::Integer
121
+ attr_accessor max_storage_size: ::Integer
122
+ attr_accessor min_iops: ::Integer
123
+ attr_accessor max_iops: ::Integer
124
+ attr_accessor min_iops_per_gib: ::Float
125
+ attr_accessor max_iops_per_gib: ::Float
126
+ attr_accessor min_storage_throughput: ::Integer
127
+ attr_accessor max_storage_throughput: ::Integer
128
+ SENSITIVE: []
129
+ end
130
+
94
131
  class AvailableProcessorFeature
95
132
  attr_accessor name: ::String
96
133
  attr_accessor default_value: ::String
@@ -332,6 +369,7 @@ module Aws::RDS
332
369
  attr_accessor description: ::String
333
370
  attr_accessor manifest: ::String
334
371
  attr_accessor tags: ::Array[Types::Tag]
372
+ attr_accessor database_installation_files: ::Array[::String]
335
373
  SENSITIVE: []
336
374
  end
337
375
 
@@ -395,13 +433,14 @@ module Aws::RDS
395
433
  attr_accessor performance_insights_kms_key_id: ::String
396
434
  attr_accessor performance_insights_retention_period: ::Integer
397
435
  attr_accessor enable_limitless_database: bool
398
- attr_accessor cluster_scalability_type: ("standard" | "limitless" | "scaleout")
436
+ attr_accessor cluster_scalability_type: ("standard" | "limitless")
399
437
  attr_accessor db_system_id: ::String
400
438
  attr_accessor manage_master_user_password: bool
401
439
  attr_accessor enable_local_write_forwarding: bool
402
440
  attr_accessor master_user_secret_kms_key_id: ::String
403
441
  attr_accessor ca_certificate_identifier: ::String
404
442
  attr_accessor engine_lifecycle_support: ::String
443
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
405
444
  attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
406
445
  attr_accessor source_region: ::String
407
446
  SENSITIVE: [:master_user_password, :pre_signed_url]
@@ -502,7 +541,9 @@ module Aws::RDS
502
541
  attr_accessor multi_tenant: bool
503
542
  attr_accessor dedicated_log_volume: bool
504
543
  attr_accessor engine_lifecycle_support: ::String
544
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
505
545
  attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
546
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
506
547
  SENSITIVE: [:master_user_password, :tde_credential_password]
507
548
  end
508
549
 
@@ -554,6 +595,8 @@ module Aws::RDS
554
595
  attr_accessor dedicated_log_volume: bool
555
596
  attr_accessor upgrade_storage_config: bool
556
597
  attr_accessor ca_certificate_identifier: ::String
598
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
599
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
557
600
  attr_accessor source_region: ::String
558
601
  SENSITIVE: [:pre_signed_url]
559
602
  end
@@ -787,6 +830,7 @@ module Aws::RDS
787
830
  attr_accessor db_cluster_option_group_memberships: ::Array[Types::DBClusterOptionGroupStatus]
788
831
  attr_accessor preferred_backup_window: ::String
789
832
  attr_accessor preferred_maintenance_window: ::String
833
+ attr_accessor upgrade_rollout_order: ("first" | "second" | "last")
790
834
  attr_accessor replication_source_identifier: ::String
791
835
  attr_accessor read_replica_identifiers: ::Array[::String]
792
836
  attr_accessor status_infos: ::Array[Types::DBClusterStatusInfo]
@@ -845,7 +889,7 @@ module Aws::RDS
845
889
  attr_accessor local_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "requested")
846
890
  attr_accessor aws_backup_recovery_point_arn: ::String
847
891
  attr_accessor limitless_database: Types::LimitlessDatabase
848
- attr_accessor cluster_scalability_type: ("standard" | "limitless" | "scaleout")
892
+ attr_accessor cluster_scalability_type: ("standard" | "limitless")
849
893
  attr_accessor certificate_details: Types::CertificateDetails
850
894
  attr_accessor engine_lifecycle_support: ::String
851
895
  SENSITIVE: []
@@ -880,6 +924,7 @@ module Aws::RDS
880
924
  attr_accessor iops: ::Integer
881
925
  attr_accessor storage_throughput: ::Integer
882
926
  attr_accessor aws_backup_recovery_point_arn: ::String
927
+ attr_accessor tag_list: ::Array[Types::Tag]
883
928
  SENSITIVE: []
884
929
  end
885
930
 
@@ -1120,6 +1165,8 @@ module Aws::RDS
1120
1165
  attr_accessor supports_local_write_forwarding: bool
1121
1166
  attr_accessor supports_integrations: bool
1122
1167
  attr_accessor serverless_v2_features_support: Types::ServerlessV2FeaturesSupport
1168
+ attr_accessor database_installation_files: ::Array[::String]
1169
+ attr_accessor failure_reason: ::String
1123
1170
  SENSITIVE: []
1124
1171
  end
1125
1172
 
@@ -1147,6 +1194,7 @@ module Aws::RDS
1147
1194
  attr_accessor availability_zone: ::String
1148
1195
  attr_accessor db_subnet_group: Types::DBSubnetGroup
1149
1196
  attr_accessor preferred_maintenance_window: ::String
1197
+ attr_accessor upgrade_rollout_order: ("first" | "second" | "last")
1150
1198
  attr_accessor pending_modified_values: Types::PendingModifiedValues
1151
1199
  attr_accessor latest_restorable_time: ::Time
1152
1200
  attr_accessor multi_az: bool
@@ -1217,6 +1265,8 @@ module Aws::RDS
1217
1265
  attr_accessor dedicated_log_volume: bool
1218
1266
  attr_accessor is_storage_config_upgrade_available: bool
1219
1267
  attr_accessor engine_lifecycle_support: ::String
1268
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolumeOutput]
1269
+ attr_accessor storage_volume_status: ::String
1220
1270
  SENSITIVE: []
1221
1271
  end
1222
1272
 
@@ -1254,7 +1304,9 @@ module Aws::RDS
1254
1304
  attr_accessor backup_target: ::String
1255
1305
  attr_accessor multi_tenant: bool
1256
1306
  attr_accessor aws_backup_recovery_point_arn: ::String
1307
+ attr_accessor tag_list: ::Array[Types::Tag]
1257
1308
  attr_accessor dedicated_log_volume: bool
1309
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
1258
1310
  SENSITIVE: []
1259
1311
  end
1260
1312
 
@@ -1579,6 +1631,7 @@ module Aws::RDS
1579
1631
  attr_accessor multi_tenant: bool
1580
1632
  attr_accessor dedicated_log_volume: bool
1581
1633
  attr_accessor snapshot_availability_zone: ::String
1634
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
1582
1635
  SENSITIVE: []
1583
1636
  end
1584
1637
 
@@ -2831,6 +2884,17 @@ module Aws::RDS
2831
2884
  SENSITIVE: []
2832
2885
  end
2833
2886
 
2887
+ class ModifyAdditionalStorageVolume
2888
+ attr_accessor volume_name: ::String
2889
+ attr_accessor allocated_storage: ::Integer
2890
+ attr_accessor iops: ::Integer
2891
+ attr_accessor max_allocated_storage: ::Integer
2892
+ attr_accessor storage_throughput: ::Integer
2893
+ attr_accessor storage_type: ::String
2894
+ attr_accessor set_for_delete: bool
2895
+ SENSITIVE: []
2896
+ end
2897
+
2834
2898
  class ModifyCertificatesMessage
2835
2899
  attr_accessor certificate_identifier: ::String
2836
2900
  attr_accessor remove_customer_override: bool
@@ -3003,7 +3067,9 @@ module Aws::RDS
3003
3067
  attr_accessor multi_tenant: bool
3004
3068
  attr_accessor dedicated_log_volume: bool
3005
3069
  attr_accessor engine: ::String
3070
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
3006
3071
  attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
3072
+ attr_accessor additional_storage_volumes: ::Array[Types::ModifyAdditionalStorageVolume]
3007
3073
  SENSITIVE: [:master_user_password, :tde_credential_password]
3008
3074
  end
3009
3075
 
@@ -3337,6 +3403,8 @@ module Aws::RDS
3337
3403
  attr_accessor supports_clusters: bool
3338
3404
  attr_accessor supports_dedicated_log_volume: bool
3339
3405
  attr_accessor supports_http_endpoint: bool
3406
+ attr_accessor supports_additional_storage_volumes: bool
3407
+ attr_accessor available_additional_storage_volumes_options: ::Array[Types::AvailableAdditionalStorageVolumesOption]
3340
3408
  SENSITIVE: []
3341
3409
  end
3342
3410
 
@@ -3411,6 +3479,7 @@ module Aws::RDS
3411
3479
  attr_accessor iam_database_authentication_enabled: bool
3412
3480
  attr_accessor dedicated_log_volume: bool
3413
3481
  attr_accessor engine: ::String
3482
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
3414
3483
  SENSITIVE: [:master_user_password]
3415
3484
  end
3416
3485
 
@@ -3458,6 +3527,7 @@ module Aws::RDS
3458
3527
  attr_accessor db_instance_identifier: ::String
3459
3528
  attr_accessor backup_retention_period: ::Integer
3460
3529
  attr_accessor preferred_backup_window: ::String
3530
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
3461
3531
  SENSITIVE: []
3462
3532
  end
3463
3533
 
@@ -3732,6 +3802,7 @@ module Aws::RDS
3732
3802
  attr_accessor manage_master_user_password: bool
3733
3803
  attr_accessor master_user_secret_kms_key_id: ::String
3734
3804
  attr_accessor engine_lifecycle_support: ::String
3805
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
3735
3806
  SENSITIVE: [:master_user_password]
3736
3807
  end
3737
3808
 
@@ -3776,6 +3847,7 @@ module Aws::RDS
3776
3847
  attr_accessor performance_insights_kms_key_id: ::String
3777
3848
  attr_accessor performance_insights_retention_period: ::Integer
3778
3849
  attr_accessor engine_lifecycle_support: ::String
3850
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
3779
3851
  SENSITIVE: []
3780
3852
  end
3781
3853
 
@@ -3820,6 +3892,7 @@ module Aws::RDS
3820
3892
  attr_accessor performance_insights_kms_key_id: ::String
3821
3893
  attr_accessor performance_insights_retention_period: ::Integer
3822
3894
  attr_accessor engine_lifecycle_support: ::String
3895
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
3823
3896
  SENSITIVE: []
3824
3897
  end
3825
3898
 
@@ -3871,8 +3944,10 @@ module Aws::RDS
3871
3944
  attr_accessor dedicated_log_volume: bool
3872
3945
  attr_accessor ca_certificate_identifier: ::String
3873
3946
  attr_accessor engine_lifecycle_support: ::String
3947
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
3874
3948
  attr_accessor manage_master_user_password: bool
3875
3949
  attr_accessor master_user_secret_kms_key_id: ::String
3950
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
3876
3951
  SENSITIVE: [:tde_credential_password]
3877
3952
  end
3878
3953
 
@@ -3934,6 +4009,8 @@ module Aws::RDS
3934
4009
  attr_accessor dedicated_log_volume: bool
3935
4010
  attr_accessor ca_certificate_identifier: ::String
3936
4011
  attr_accessor engine_lifecycle_support: ::String
4012
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
4013
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
3937
4014
  SENSITIVE: [:master_user_password]
3938
4015
  end
3939
4016
 
@@ -3989,8 +4066,10 @@ module Aws::RDS
3989
4066
  attr_accessor dedicated_log_volume: bool
3990
4067
  attr_accessor ca_certificate_identifier: ::String
3991
4068
  attr_accessor engine_lifecycle_support: ::String
4069
+ attr_accessor tag_specifications: ::Array[Types::TagSpecification]
3992
4070
  attr_accessor manage_master_user_password: bool
3993
4071
  attr_accessor master_user_secret_kms_key_id: ::String
4072
+ attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
3994
4073
  SENSITIVE: [:tde_credential_password]
3995
4074
  end
3996
4075
 
@@ -4136,6 +4215,7 @@ module Aws::RDS
4136
4215
  attr_accessor backup_retention_period: ::Integer
4137
4216
  attr_accessor kms_key_id: ::String
4138
4217
  attr_accessor pre_signed_url: ::String
4218
+ attr_accessor tags: ::Array[Types::Tag]
4139
4219
  attr_accessor source_region: ::String
4140
4220
  SENSITIVE: [:pre_signed_url]
4141
4221
  end
@@ -4296,6 +4376,12 @@ module Aws::RDS
4296
4376
  SENSITIVE: []
4297
4377
  end
4298
4378
 
4379
+ class TagSpecification
4380
+ attr_accessor resource_type: ::String
4381
+ attr_accessor tags: ::Array[Types::Tag]
4382
+ SENSITIVE: []
4383
+ end
4384
+
4299
4385
  class TargetHealth
4300
4386
  attr_accessor state: ("REGISTERING" | "AVAILABLE" | "UNAVAILABLE" | "UNUSED")
4301
4387
  attr_accessor reason: ("UNREACHABLE" | "CONNECTION_FAILED" | "AUTH_FAILURE" | "PENDING_PROXY_CAPACITY" | "INVALID_REPLICATION_STATE" | "PROMOTED")
@@ -4386,10 +4472,17 @@ module Aws::RDS
4386
4472
  SENSITIVE: []
4387
4473
  end
4388
4474
 
4475
+ class ValidAdditionalStorageOptions
4476
+ attr_accessor supports_additional_storage_volumes: bool
4477
+ attr_accessor volumes: ::Array[Types::ValidVolumeOptions]
4478
+ SENSITIVE: []
4479
+ end
4480
+
4389
4481
  class ValidDBInstanceModificationsMessage
4390
4482
  attr_accessor storage: ::Array[Types::ValidStorageOptions]
4391
4483
  attr_accessor valid_processor_features: ::Array[Types::AvailableProcessorFeature]
4392
4484
  attr_accessor supports_dedicated_log_volume: bool
4485
+ attr_accessor additional_storage: Types::ValidAdditionalStorageOptions
4393
4486
  SENSITIVE: []
4394
4487
  end
4395
4488
 
@@ -4404,6 +4497,15 @@ module Aws::RDS
4404
4497
  SENSITIVE: []
4405
4498
  end
4406
4499
 
4500
+ class ValidVolumeOptions
4501
+ attr_accessor volume_name: ::String
4502
+ attr_accessor storage: ::Array[Types::ValidStorageOptions]
4503
+ SENSITIVE: []
4504
+ end
4505
+
4506
+ class VpcEncryptionControlViolationException < Aws::EmptyStructure
4507
+ end
4508
+
4407
4509
  class VpcSecurityGroupMembership
4408
4510
  attr_accessor vpc_security_group_id: ::String
4409
4511
  attr_accessor status: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.296.0
4
+ version: 1.302.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.231.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.231.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement