aws-sdk-rds 1.319.0 → 1.320.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +53 -1
- data/lib/aws-sdk-rds/client_api.rb +4 -0
- data/lib/aws-sdk-rds/db_instance.rb +25 -0
- data/lib/aws-sdk-rds/types.rb +48 -1
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/db_instance.rbs +6 -0
- data/sig/types.rbs +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c7aee1a677cd07033f092dc68a8f9c01270ec382751ae809ebd28a16f86d2b32
|
|
4
|
+
data.tar.gz: 131bb0ac127eeffbd30594587995b30f3108d40354717e1b6ac305508fc21c3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1af368af28de94a04fc58b0f778a221ef082654735330659549cd69d0b37ff75ca005cf79bf1468abcc78370415f2c46a4640993dbcaee12983365d6e7ffb64c
|
|
7
|
+
data.tar.gz: 5b834b5c9b2a314c8702ff6e3fe51ea18613ad86f4254a10728bddf027e7fefaa4e0ca89e9a0e175cf0bef7e7081d8bd299c554617761c96df012340bdf3a851
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.320.0 (2026-07-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds StorageOperationStatus and StorageOperationPercentProgress to DescribeDBInstances, letting you monitor RDS storage initialization and optimization progress.
|
|
8
|
+
|
|
4
9
|
1.319.0 (2026-07-17)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.320.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -6442,12 +6442,16 @@ module Aws::RDS
|
|
|
6442
6442
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
6443
6443
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
6444
6444
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
6445
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
6446
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
6445
6447
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
6446
6448
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
6447
6449
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
6448
6450
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
6449
6451
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
6450
6452
|
# resp.db_instance.storage_volume_status #=> String
|
|
6453
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
6454
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
6451
6455
|
#
|
|
6452
6456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
|
6453
6457
|
#
|
|
@@ -7510,12 +7514,16 @@ module Aws::RDS
|
|
|
7510
7514
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
7511
7515
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
7512
7516
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
7517
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
7518
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
7513
7519
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
7514
7520
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
7515
7521
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
7516
7522
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
7517
7523
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
7518
7524
|
# resp.db_instance.storage_volume_status #=> String
|
|
7525
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
7526
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
7519
7527
|
#
|
|
7520
7528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
|
7521
7529
|
#
|
|
@@ -10616,12 +10624,16 @@ module Aws::RDS
|
|
|
10616
10624
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
10617
10625
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
10618
10626
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
10627
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
10628
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
10619
10629
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10620
10630
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
10621
10631
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10622
10632
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10623
10633
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
10624
10634
|
# resp.db_instance.storage_volume_status #=> String
|
|
10635
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
10636
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
10625
10637
|
#
|
|
10626
10638
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
10627
10639
|
#
|
|
@@ -14361,12 +14373,16 @@ module Aws::RDS
|
|
|
14361
14373
|
# resp.db_instances[0].additional_storage_volumes #=> Array
|
|
14362
14374
|
# resp.db_instances[0].additional_storage_volumes[0].volume_name #=> String
|
|
14363
14375
|
# resp.db_instances[0].additional_storage_volumes[0].storage_volume_status #=> String
|
|
14376
|
+
# resp.db_instances[0].additional_storage_volumes[0].storage_operation_status #=> String
|
|
14377
|
+
# resp.db_instances[0].additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
14364
14378
|
# resp.db_instances[0].additional_storage_volumes[0].allocated_storage #=> Integer
|
|
14365
14379
|
# resp.db_instances[0].additional_storage_volumes[0].iops #=> Integer
|
|
14366
14380
|
# resp.db_instances[0].additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
14367
14381
|
# resp.db_instances[0].additional_storage_volumes[0].storage_throughput #=> Integer
|
|
14368
14382
|
# resp.db_instances[0].additional_storage_volumes[0].storage_type #=> String
|
|
14369
14383
|
# resp.db_instances[0].storage_volume_status #=> String
|
|
14384
|
+
# resp.db_instances[0].storage_operation_status #=> String
|
|
14385
|
+
# resp.db_instances[0].storage_operation_percent_progress #=> Integer
|
|
14370
14386
|
#
|
|
14371
14387
|
#
|
|
14372
14388
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -22970,12 +22986,16 @@ module Aws::RDS
|
|
|
22970
22986
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
22971
22987
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
22972
22988
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
22989
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
22990
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
22973
22991
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
22974
22992
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
22975
22993
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
22976
22994
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
22977
22995
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
22978
22996
|
# resp.db_instance.storage_volume_status #=> String
|
|
22997
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
22998
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
22979
22999
|
#
|
|
22980
23000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
22981
23001
|
#
|
|
@@ -24968,12 +24988,16 @@ module Aws::RDS
|
|
|
24968
24988
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
24969
24989
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
24970
24990
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
24991
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
24992
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
24971
24993
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
24972
24994
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
24973
24995
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
24974
24996
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
24975
24997
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
24976
24998
|
# resp.db_instance.storage_volume_status #=> String
|
|
24999
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
25000
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
24977
25001
|
#
|
|
24978
25002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
|
24979
25003
|
#
|
|
@@ -25724,12 +25748,16 @@ module Aws::RDS
|
|
|
25724
25748
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
25725
25749
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
25726
25750
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
25751
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
25752
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
25727
25753
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
25728
25754
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
25729
25755
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
25730
25756
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
25731
25757
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
25732
25758
|
# resp.db_instance.storage_volume_status #=> String
|
|
25759
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
25760
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
25733
25761
|
#
|
|
25734
25762
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
|
25735
25763
|
#
|
|
@@ -30241,12 +30269,16 @@ module Aws::RDS
|
|
|
30241
30269
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
30242
30270
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
30243
30271
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
30272
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
30273
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
30244
30274
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
30245
30275
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
30246
30276
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
30247
30277
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
30248
30278
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
30249
30279
|
# resp.db_instance.storage_volume_status #=> String
|
|
30280
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
30281
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
30250
30282
|
#
|
|
30251
30283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
|
30252
30284
|
#
|
|
@@ -31114,12 +31146,16 @@ module Aws::RDS
|
|
|
31114
31146
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
31115
31147
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
31116
31148
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
31149
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
31150
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
31117
31151
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31118
31152
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
31119
31153
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31120
31154
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31121
31155
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
31122
31156
|
# resp.db_instance.storage_volume_status #=> String
|
|
31157
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
31158
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
31123
31159
|
#
|
|
31124
31160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
|
31125
31161
|
#
|
|
@@ -32237,12 +32273,16 @@ module Aws::RDS
|
|
|
32237
32273
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
32238
32274
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
32239
32275
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
32276
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
32277
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
32240
32278
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32241
32279
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
32242
32280
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32243
32281
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32244
32282
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
32245
32283
|
# resp.db_instance.storage_volume_status #=> String
|
|
32284
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
32285
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
32246
32286
|
#
|
|
32247
32287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
|
32248
32288
|
#
|
|
@@ -32884,12 +32924,16 @@ module Aws::RDS
|
|
|
32884
32924
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
32885
32925
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
32886
32926
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
32927
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
32928
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
32887
32929
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32888
32930
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
32889
32931
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32890
32932
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32891
32933
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
32892
32934
|
# resp.db_instance.storage_volume_status #=> String
|
|
32935
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
32936
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
32893
32937
|
#
|
|
32894
32938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
|
32895
32939
|
#
|
|
@@ -33771,12 +33815,16 @@ module Aws::RDS
|
|
|
33771
33815
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
33772
33816
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
33773
33817
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
33818
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
33819
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
33774
33820
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
33775
33821
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
33776
33822
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
33777
33823
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
33778
33824
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
33779
33825
|
# resp.db_instance.storage_volume_status #=> String
|
|
33826
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
33827
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
33780
33828
|
#
|
|
33781
33829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
|
33782
33830
|
#
|
|
@@ -34409,12 +34457,16 @@ module Aws::RDS
|
|
|
34409
34457
|
# resp.db_instance.additional_storage_volumes #=> Array
|
|
34410
34458
|
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
34411
34459
|
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
34460
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_status #=> String
|
|
34461
|
+
# resp.db_instance.additional_storage_volumes[0].storage_operation_percent_progress #=> Integer
|
|
34412
34462
|
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
34413
34463
|
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
34414
34464
|
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
34415
34465
|
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
34416
34466
|
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
34417
34467
|
# resp.db_instance.storage_volume_status #=> String
|
|
34468
|
+
# resp.db_instance.storage_operation_status #=> String
|
|
34469
|
+
# resp.db_instance.storage_operation_percent_progress #=> Integer
|
|
34418
34470
|
#
|
|
34419
34471
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
|
34420
34472
|
#
|
|
@@ -34443,7 +34495,7 @@ module Aws::RDS
|
|
|
34443
34495
|
tracer: tracer
|
|
34444
34496
|
)
|
|
34445
34497
|
context[:gem_name] = 'aws-sdk-rds'
|
|
34446
|
-
context[:gem_version] = '1.
|
|
34498
|
+
context[:gem_version] = '1.320.0'
|
|
34447
34499
|
Seahorse::Client::Request.new(handlers, context)
|
|
34448
34500
|
end
|
|
34449
34501
|
|
|
@@ -848,6 +848,8 @@ module Aws::RDS
|
|
|
848
848
|
|
|
849
849
|
AdditionalStorageVolumeOutput.add_member(:volume_name, Shapes::ShapeRef.new(shape: String, location_name: "VolumeName"))
|
|
850
850
|
AdditionalStorageVolumeOutput.add_member(:storage_volume_status, Shapes::ShapeRef.new(shape: String, location_name: "StorageVolumeStatus"))
|
|
851
|
+
AdditionalStorageVolumeOutput.add_member(:storage_operation_status, Shapes::ShapeRef.new(shape: String, location_name: "StorageOperationStatus"))
|
|
852
|
+
AdditionalStorageVolumeOutput.add_member(:storage_operation_percent_progress, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageOperationPercentProgress"))
|
|
851
853
|
AdditionalStorageVolumeOutput.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "AllocatedStorage"))
|
|
852
854
|
AdditionalStorageVolumeOutput.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IOPS"))
|
|
853
855
|
AdditionalStorageVolumeOutput.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
|
@@ -1907,6 +1909,8 @@ module Aws::RDS
|
|
|
1907
1909
|
DBInstance.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
1908
1910
|
DBInstance.add_member(:additional_storage_volumes, Shapes::ShapeRef.new(shape: AdditionalStorageVolumesOutputList, location_name: "AdditionalStorageVolumes"))
|
|
1909
1911
|
DBInstance.add_member(:storage_volume_status, Shapes::ShapeRef.new(shape: String, location_name: "StorageVolumeStatus"))
|
|
1912
|
+
DBInstance.add_member(:storage_operation_status, Shapes::ShapeRef.new(shape: String, location_name: "StorageOperationStatus"))
|
|
1913
|
+
DBInstance.add_member(:storage_operation_percent_progress, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageOperationPercentProgress"))
|
|
1910
1914
|
DBInstance.struct_class = Types::DBInstance
|
|
1911
1915
|
|
|
1912
1916
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
|
@@ -861,6 +861,31 @@ module Aws::RDS
|
|
|
861
861
|
data[:storage_volume_status]
|
|
862
862
|
end
|
|
863
863
|
|
|
864
|
+
# The status of an in-progress storage operation on the DB instance.
|
|
865
|
+
# This field appears only while a storage operation is in progress. It
|
|
866
|
+
# isn't present when no storage operation is active. Possible values:
|
|
867
|
+
#
|
|
868
|
+
# * `Initializing` - The volume is initializing from a snapshot, such as
|
|
869
|
+
# during a snapshot restore, point-in-time restore, read replica
|
|
870
|
+
# creation, or blue/green deployment. Performance can be lower than
|
|
871
|
+
# provisioned until initialization completes.
|
|
872
|
+
#
|
|
873
|
+
# * `Optimizing` - The volume is optimizing following a storage scaling
|
|
874
|
+
# or modification operation.
|
|
875
|
+
# @return [String]
|
|
876
|
+
def storage_operation_status
|
|
877
|
+
data[:storage_operation_status]
|
|
878
|
+
end
|
|
879
|
+
|
|
880
|
+
# The percentage of the in-progress storage operation on the DB instance
|
|
881
|
+
# that has completed, from `0` to `100`. This field appears only while a
|
|
882
|
+
# storage operation is in progress. It isn't present when no storage
|
|
883
|
+
# operation is active.
|
|
884
|
+
# @return [Integer]
|
|
885
|
+
def storage_operation_percent_progress
|
|
886
|
+
data[:storage_operation_percent_progress]
|
|
887
|
+
end
|
|
888
|
+
|
|
864
889
|
# @!endgroup
|
|
865
890
|
|
|
866
891
|
# @return [Client]
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -337,6 +337,28 @@ module Aws::RDS
|
|
|
337
337
|
# | STORAGE-OPTIMIZATION | VOLUME-FULL`
|
|
338
338
|
# @return [String]
|
|
339
339
|
#
|
|
340
|
+
# @!attribute [rw] storage_operation_status
|
|
341
|
+
# The status of an in-progress storage operation on the additional
|
|
342
|
+
# storage volume. This field appears only while a storage operation is
|
|
343
|
+
# in progress. It isn't present when no storage operation is active.
|
|
344
|
+
# Possible values:
|
|
345
|
+
#
|
|
346
|
+
# * `Initializing` - The volume is initializing from a snapshot, such
|
|
347
|
+
# as during a snapshot restore, point-in-time restore, read replica
|
|
348
|
+
# creation, or blue/green deployment. Performance can be lower than
|
|
349
|
+
# provisioned until initialization completes.
|
|
350
|
+
#
|
|
351
|
+
# * `Optimizing` - The volume is optimizing following a storage
|
|
352
|
+
# scaling or modification operation.
|
|
353
|
+
# @return [String]
|
|
354
|
+
#
|
|
355
|
+
# @!attribute [rw] storage_operation_percent_progress
|
|
356
|
+
# The percentage of the in-progress storage operation on the
|
|
357
|
+
# additional storage volume that has completed, from `0` to `100`.
|
|
358
|
+
# This field appears only while a storage operation is in progress. It
|
|
359
|
+
# isn't present when no storage operation is active.
|
|
360
|
+
# @return [Integer]
|
|
361
|
+
#
|
|
340
362
|
# @!attribute [rw] allocated_storage
|
|
341
363
|
# The amount of storage allocated for the additional storage volume,
|
|
342
364
|
# in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB
|
|
@@ -369,6 +391,8 @@ module Aws::RDS
|
|
|
369
391
|
class AdditionalStorageVolumeOutput < Struct.new(
|
|
370
392
|
:volume_name,
|
|
371
393
|
:storage_volume_status,
|
|
394
|
+
:storage_operation_status,
|
|
395
|
+
:storage_operation_percent_progress,
|
|
372
396
|
:allocated_storage,
|
|
373
397
|
:iops,
|
|
374
398
|
:max_allocated_storage,
|
|
@@ -10181,6 +10205,27 @@ module Aws::RDS
|
|
|
10181
10205
|
# volume is causing the instance to be in a storage-full state.
|
|
10182
10206
|
# @return [String]
|
|
10183
10207
|
#
|
|
10208
|
+
# @!attribute [rw] storage_operation_status
|
|
10209
|
+
# The status of an in-progress storage operation on the DB instance.
|
|
10210
|
+
# This field appears only while a storage operation is in progress. It
|
|
10211
|
+
# isn't present when no storage operation is active. Possible values:
|
|
10212
|
+
#
|
|
10213
|
+
# * `Initializing` - The volume is initializing from a snapshot, such
|
|
10214
|
+
# as during a snapshot restore, point-in-time restore, read replica
|
|
10215
|
+
# creation, or blue/green deployment. Performance can be lower than
|
|
10216
|
+
# provisioned until initialization completes.
|
|
10217
|
+
#
|
|
10218
|
+
# * `Optimizing` - The volume is optimizing following a storage
|
|
10219
|
+
# scaling or modification operation.
|
|
10220
|
+
# @return [String]
|
|
10221
|
+
#
|
|
10222
|
+
# @!attribute [rw] storage_operation_percent_progress
|
|
10223
|
+
# The percentage of the in-progress storage operation on the DB
|
|
10224
|
+
# instance that has completed, from `0` to `100`. This field appears
|
|
10225
|
+
# only while a storage operation is in progress. It isn't present
|
|
10226
|
+
# when no storage operation is active.
|
|
10227
|
+
# @return [Integer]
|
|
10228
|
+
#
|
|
10184
10229
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
|
10185
10230
|
#
|
|
10186
10231
|
class DBInstance < Struct.new(
|
|
@@ -10274,7 +10319,9 @@ module Aws::RDS
|
|
|
10274
10319
|
:is_storage_config_upgrade_available,
|
|
10275
10320
|
:engine_lifecycle_support,
|
|
10276
10321
|
:additional_storage_volumes,
|
|
10277
|
-
:storage_volume_status
|
|
10322
|
+
:storage_volume_status,
|
|
10323
|
+
:storage_operation_status,
|
|
10324
|
+
:storage_operation_percent_progress)
|
|
10278
10325
|
SENSITIVE = []
|
|
10279
10326
|
include Aws::Structure
|
|
10280
10327
|
end
|
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.320.0'
|
|
84
84
|
|
|
85
85
|
end
|
|
86
86
|
|
data/sig/db_instance.rbs
CHANGED
|
@@ -288,6 +288,12 @@ module Aws
|
|
|
288
288
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#storage_volume_status-instance_method
|
|
289
289
|
def storage_volume_status: () -> ::String
|
|
290
290
|
|
|
291
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#storage_operation_status-instance_method
|
|
292
|
+
def storage_operation_status: () -> ::String
|
|
293
|
+
|
|
294
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#storage_operation_percent_progress-instance_method
|
|
295
|
+
def storage_operation_percent_progress: () -> ::Integer
|
|
296
|
+
|
|
291
297
|
def client: () -> Client
|
|
292
298
|
|
|
293
299
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#load-instance_method
|
data/sig/types.rbs
CHANGED
|
@@ -64,6 +64,8 @@ module Aws::RDS
|
|
|
64
64
|
class AdditionalStorageVolumeOutput
|
|
65
65
|
attr_accessor volume_name: ::String
|
|
66
66
|
attr_accessor storage_volume_status: ::String
|
|
67
|
+
attr_accessor storage_operation_status: ::String
|
|
68
|
+
attr_accessor storage_operation_percent_progress: ::Integer
|
|
67
69
|
attr_accessor allocated_storage: ::Integer
|
|
68
70
|
attr_accessor iops: ::Integer
|
|
69
71
|
attr_accessor max_allocated_storage: ::Integer
|
|
@@ -1284,6 +1286,8 @@ module Aws::RDS
|
|
|
1284
1286
|
attr_accessor engine_lifecycle_support: ::String
|
|
1285
1287
|
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolumeOutput]
|
|
1286
1288
|
attr_accessor storage_volume_status: ::String
|
|
1289
|
+
attr_accessor storage_operation_status: ::String
|
|
1290
|
+
attr_accessor storage_operation_percent_progress: ::Integer
|
|
1287
1291
|
SENSITIVE: []
|
|
1288
1292
|
end
|
|
1289
1293
|
|