aws-sdk-rds 1.300.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +740 -12
- data/lib/aws-sdk-rds/client_api.rb +108 -0
- data/lib/aws-sdk-rds/db_cluster.rb +38 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +177 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +43 -0
- data/lib/aws-sdk-rds/resource.rb +56 -0
- data/lib/aws-sdk-rds/types.rb +689 -35
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +205 -10
- data/sig/db_cluster.rbs +23 -1
- data/sig/db_cluster_snapshot.rbs +12 -1
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +106 -4
- data/sig/db_snapshot.rbs +25 -1
- data/sig/resource.rbs +33 -1
- data/sig/types.rbs +97 -0
- metadata +1 -1
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
|
|
|
@@ -402,6 +440,7 @@ module Aws::RDS
|
|
|
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
|
|
@@ -881,6 +924,7 @@ module Aws::RDS
|
|
|
881
924
|
attr_accessor iops: ::Integer
|
|
882
925
|
attr_accessor storage_throughput: ::Integer
|
|
883
926
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
927
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
|
884
928
|
SENSITIVE: []
|
|
885
929
|
end
|
|
886
930
|
|
|
@@ -1121,6 +1165,8 @@ module Aws::RDS
|
|
|
1121
1165
|
attr_accessor supports_local_write_forwarding: bool
|
|
1122
1166
|
attr_accessor supports_integrations: bool
|
|
1123
1167
|
attr_accessor serverless_v2_features_support: Types::ServerlessV2FeaturesSupport
|
|
1168
|
+
attr_accessor database_installation_files: ::Array[::String]
|
|
1169
|
+
attr_accessor failure_reason: ::String
|
|
1124
1170
|
SENSITIVE: []
|
|
1125
1171
|
end
|
|
1126
1172
|
|
|
@@ -1219,6 +1265,8 @@ module Aws::RDS
|
|
|
1219
1265
|
attr_accessor dedicated_log_volume: bool
|
|
1220
1266
|
attr_accessor is_storage_config_upgrade_available: bool
|
|
1221
1267
|
attr_accessor engine_lifecycle_support: ::String
|
|
1268
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolumeOutput]
|
|
1269
|
+
attr_accessor storage_volume_status: ::String
|
|
1222
1270
|
SENSITIVE: []
|
|
1223
1271
|
end
|
|
1224
1272
|
|
|
@@ -1256,7 +1304,9 @@ module Aws::RDS
|
|
|
1256
1304
|
attr_accessor backup_target: ::String
|
|
1257
1305
|
attr_accessor multi_tenant: bool
|
|
1258
1306
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
1307
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
|
1259
1308
|
attr_accessor dedicated_log_volume: bool
|
|
1309
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
1260
1310
|
SENSITIVE: []
|
|
1261
1311
|
end
|
|
1262
1312
|
|
|
@@ -1581,6 +1631,7 @@ module Aws::RDS
|
|
|
1581
1631
|
attr_accessor multi_tenant: bool
|
|
1582
1632
|
attr_accessor dedicated_log_volume: bool
|
|
1583
1633
|
attr_accessor snapshot_availability_zone: ::String
|
|
1634
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
1584
1635
|
SENSITIVE: []
|
|
1585
1636
|
end
|
|
1586
1637
|
|
|
@@ -2833,6 +2884,17 @@ module Aws::RDS
|
|
|
2833
2884
|
SENSITIVE: []
|
|
2834
2885
|
end
|
|
2835
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
|
+
|
|
2836
2898
|
class ModifyCertificatesMessage
|
|
2837
2899
|
attr_accessor certificate_identifier: ::String
|
|
2838
2900
|
attr_accessor remove_customer_override: bool
|
|
@@ -3005,7 +3067,9 @@ module Aws::RDS
|
|
|
3005
3067
|
attr_accessor multi_tenant: bool
|
|
3006
3068
|
attr_accessor dedicated_log_volume: bool
|
|
3007
3069
|
attr_accessor engine: ::String
|
|
3070
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3008
3071
|
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
3072
|
+
attr_accessor additional_storage_volumes: ::Array[Types::ModifyAdditionalStorageVolume]
|
|
3009
3073
|
SENSITIVE: [:master_user_password, :tde_credential_password]
|
|
3010
3074
|
end
|
|
3011
3075
|
|
|
@@ -3339,6 +3403,8 @@ module Aws::RDS
|
|
|
3339
3403
|
attr_accessor supports_clusters: bool
|
|
3340
3404
|
attr_accessor supports_dedicated_log_volume: bool
|
|
3341
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]
|
|
3342
3408
|
SENSITIVE: []
|
|
3343
3409
|
end
|
|
3344
3410
|
|
|
@@ -3413,6 +3479,7 @@ module Aws::RDS
|
|
|
3413
3479
|
attr_accessor iam_database_authentication_enabled: bool
|
|
3414
3480
|
attr_accessor dedicated_log_volume: bool
|
|
3415
3481
|
attr_accessor engine: ::String
|
|
3482
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3416
3483
|
SENSITIVE: [:master_user_password]
|
|
3417
3484
|
end
|
|
3418
3485
|
|
|
@@ -3460,6 +3527,7 @@ module Aws::RDS
|
|
|
3460
3527
|
attr_accessor db_instance_identifier: ::String
|
|
3461
3528
|
attr_accessor backup_retention_period: ::Integer
|
|
3462
3529
|
attr_accessor preferred_backup_window: ::String
|
|
3530
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3463
3531
|
SENSITIVE: []
|
|
3464
3532
|
end
|
|
3465
3533
|
|
|
@@ -3734,6 +3802,7 @@ module Aws::RDS
|
|
|
3734
3802
|
attr_accessor manage_master_user_password: bool
|
|
3735
3803
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3736
3804
|
attr_accessor engine_lifecycle_support: ::String
|
|
3805
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3737
3806
|
SENSITIVE: [:master_user_password]
|
|
3738
3807
|
end
|
|
3739
3808
|
|
|
@@ -3778,6 +3847,7 @@ module Aws::RDS
|
|
|
3778
3847
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
3779
3848
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
3780
3849
|
attr_accessor engine_lifecycle_support: ::String
|
|
3850
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3781
3851
|
SENSITIVE: []
|
|
3782
3852
|
end
|
|
3783
3853
|
|
|
@@ -3822,6 +3892,7 @@ module Aws::RDS
|
|
|
3822
3892
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
3823
3893
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
3824
3894
|
attr_accessor engine_lifecycle_support: ::String
|
|
3895
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3825
3896
|
SENSITIVE: []
|
|
3826
3897
|
end
|
|
3827
3898
|
|
|
@@ -3873,8 +3944,10 @@ module Aws::RDS
|
|
|
3873
3944
|
attr_accessor dedicated_log_volume: bool
|
|
3874
3945
|
attr_accessor ca_certificate_identifier: ::String
|
|
3875
3946
|
attr_accessor engine_lifecycle_support: ::String
|
|
3947
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3876
3948
|
attr_accessor manage_master_user_password: bool
|
|
3877
3949
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3950
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3878
3951
|
SENSITIVE: [:tde_credential_password]
|
|
3879
3952
|
end
|
|
3880
3953
|
|
|
@@ -3936,6 +4009,8 @@ module Aws::RDS
|
|
|
3936
4009
|
attr_accessor dedicated_log_volume: bool
|
|
3937
4010
|
attr_accessor ca_certificate_identifier: ::String
|
|
3938
4011
|
attr_accessor engine_lifecycle_support: ::String
|
|
4012
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
4013
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3939
4014
|
SENSITIVE: [:master_user_password]
|
|
3940
4015
|
end
|
|
3941
4016
|
|
|
@@ -3991,8 +4066,10 @@ module Aws::RDS
|
|
|
3991
4066
|
attr_accessor dedicated_log_volume: bool
|
|
3992
4067
|
attr_accessor ca_certificate_identifier: ::String
|
|
3993
4068
|
attr_accessor engine_lifecycle_support: ::String
|
|
4069
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3994
4070
|
attr_accessor manage_master_user_password: bool
|
|
3995
4071
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
4072
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3996
4073
|
SENSITIVE: [:tde_credential_password]
|
|
3997
4074
|
end
|
|
3998
4075
|
|
|
@@ -4138,6 +4215,7 @@ module Aws::RDS
|
|
|
4138
4215
|
attr_accessor backup_retention_period: ::Integer
|
|
4139
4216
|
attr_accessor kms_key_id: ::String
|
|
4140
4217
|
attr_accessor pre_signed_url: ::String
|
|
4218
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
4141
4219
|
attr_accessor source_region: ::String
|
|
4142
4220
|
SENSITIVE: [:pre_signed_url]
|
|
4143
4221
|
end
|
|
@@ -4298,6 +4376,12 @@ module Aws::RDS
|
|
|
4298
4376
|
SENSITIVE: []
|
|
4299
4377
|
end
|
|
4300
4378
|
|
|
4379
|
+
class TagSpecification
|
|
4380
|
+
attr_accessor resource_type: ::String
|
|
4381
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
4382
|
+
SENSITIVE: []
|
|
4383
|
+
end
|
|
4384
|
+
|
|
4301
4385
|
class TargetHealth
|
|
4302
4386
|
attr_accessor state: ("REGISTERING" | "AVAILABLE" | "UNAVAILABLE" | "UNUSED")
|
|
4303
4387
|
attr_accessor reason: ("UNREACHABLE" | "CONNECTION_FAILED" | "AUTH_FAILURE" | "PENDING_PROXY_CAPACITY" | "INVALID_REPLICATION_STATE" | "PROMOTED")
|
|
@@ -4388,10 +4472,17 @@ module Aws::RDS
|
|
|
4388
4472
|
SENSITIVE: []
|
|
4389
4473
|
end
|
|
4390
4474
|
|
|
4475
|
+
class ValidAdditionalStorageOptions
|
|
4476
|
+
attr_accessor supports_additional_storage_volumes: bool
|
|
4477
|
+
attr_accessor volumes: ::Array[Types::ValidVolumeOptions]
|
|
4478
|
+
SENSITIVE: []
|
|
4479
|
+
end
|
|
4480
|
+
|
|
4391
4481
|
class ValidDBInstanceModificationsMessage
|
|
4392
4482
|
attr_accessor storage: ::Array[Types::ValidStorageOptions]
|
|
4393
4483
|
attr_accessor valid_processor_features: ::Array[Types::AvailableProcessorFeature]
|
|
4394
4484
|
attr_accessor supports_dedicated_log_volume: bool
|
|
4485
|
+
attr_accessor additional_storage: Types::ValidAdditionalStorageOptions
|
|
4395
4486
|
SENSITIVE: []
|
|
4396
4487
|
end
|
|
4397
4488
|
|
|
@@ -4406,6 +4497,12 @@ module Aws::RDS
|
|
|
4406
4497
|
SENSITIVE: []
|
|
4407
4498
|
end
|
|
4408
4499
|
|
|
4500
|
+
class ValidVolumeOptions
|
|
4501
|
+
attr_accessor volume_name: ::String
|
|
4502
|
+
attr_accessor storage: ::Array[Types::ValidStorageOptions]
|
|
4503
|
+
SENSITIVE: []
|
|
4504
|
+
end
|
|
4505
|
+
|
|
4409
4506
|
class VpcEncryptionControlViolationException < Aws::EmptyStructure
|
|
4410
4507
|
end
|
|
4411
4508
|
|