aws-sdk-rds 1.169.0 → 1.170.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 +46 -6
- data/lib/aws-sdk-rds/client_api.rb +3 -0
- data/lib/aws-sdk-rds/db_instance.rb +21 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +10 -0
- data/lib/aws-sdk-rds/types.rb +42 -3
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: c67d8a9130841984eb9714ed02779f5af3d1d0e92ef96d154da42a9f5134b32c
         | 
| 4 | 
            +
              data.tar.gz: '083b17338f9ce0f6ea7baaca455afe89631988a91367fbd30841ba613e27f5e9'
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: '049c14c09fc5c8f0bc81b36a79ad9ede011f55313c5c4032771938b73257cc3e3fa04afc7a690c945795fc5b20e049e4c03dae8139e58a3e7d9ee5f0c63fa404'
         | 
| 7 | 
            +
              data.tar.gz: ee1edcc8bd7d12fff6fd5d47ee4d437202cc74d8fdcdb3e2f016a7d92a8f57579fc464a51ed232d0a1362b7557793d1ea7628ba54eebda400e0013e1f4df4796
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,11 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.170.0 (2023-01-10)
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Feature - This release adds support for configuring allocated storage on the CreateDBInstanceReadReplica, RestoreDBInstanceFromDBSnapshot, and RestoreDBInstanceToPointInTime APIs.
         | 
| 8 | 
            +
             | 
| 4 9 | 
             
            1.169.0 (2023-01-05)
         | 
| 5 10 | 
             
            ------------------
         | 
| 6 11 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.170.0
         | 
    
        data/lib/aws-sdk-rds/client.rb
    CHANGED
    
    | @@ -5584,6 +5584,17 @@ module Aws::RDS | |
| 5584 5584 | 
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
         | 
| 5585 5585 | 
             
                #   [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
         | 
| 5586 5586 | 
             
                #
         | 
| 5587 | 
            +
                # @option params [Integer] :allocated_storage
         | 
| 5588 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the
         | 
| 5589 | 
            +
                #   read replica. Follow the allocation rules specified in
         | 
| 5590 | 
            +
                #   `CreateDBInstance`.
         | 
| 5591 | 
            +
                #
         | 
| 5592 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your read replica so that the
         | 
| 5593 | 
            +
                #   create operation can succeed. You can also allocate additional memory
         | 
| 5594 | 
            +
                #   for future growth.
         | 
| 5595 | 
            +
                #
         | 
| 5596 | 
            +
                #    </note>
         | 
| 5597 | 
            +
                #
         | 
| 5587 5598 | 
             
                # @option params [String] :source_region
         | 
| 5588 5599 | 
             
                #   The source region of the snapshot. This is only needed when the
         | 
| 5589 5600 | 
             
                #   shapshot is encrypted and in a different region.
         | 
| @@ -5668,6 +5679,7 @@ module Aws::RDS | |
| 5668 5679 | 
             
                #     network_type: "String",
         | 
| 5669 5680 | 
             
                #     storage_throughput: 1,
         | 
| 5670 5681 | 
             
                #     enable_customer_owned_ip: false,
         | 
| 5682 | 
            +
                #     allocated_storage: 1,
         | 
| 5671 5683 | 
             
                #     source_region: "String",
         | 
| 5672 5684 | 
             
                #   })
         | 
| 5673 5685 | 
             
                #
         | 
| @@ -20939,6 +20951,16 @@ module Aws::RDS | |
| 20939 20951 | 
             
                #
         | 
| 20940 20952 | 
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
         | 
| 20941 20953 | 
             
                #
         | 
| 20954 | 
            +
                # @option params [Integer] :allocated_storage
         | 
| 20955 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the DB
         | 
| 20956 | 
            +
                #   instance. Follow the allocation rules specified in CreateDBInstance.
         | 
| 20957 | 
            +
                #
         | 
| 20958 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
         | 
| 20959 | 
            +
                #   restore operation can succeed. You can also allocate additional memory
         | 
| 20960 | 
            +
                #   for future growth.
         | 
| 20961 | 
            +
                #
         | 
| 20962 | 
            +
                #    </note>
         | 
| 20963 | 
            +
                #
         | 
| 20942 20964 | 
             
                # @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 20943 20965 | 
             
                #
         | 
| 20944 20966 | 
             
                #   * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
         | 
| @@ -21085,6 +21107,7 @@ module Aws::RDS | |
| 21085 21107 | 
             
                #     network_type: "String",
         | 
| 21086 21108 | 
             
                #     storage_throughput: 1,
         | 
| 21087 21109 | 
             
                #     db_cluster_snapshot_identifier: "String",
         | 
| 21110 | 
            +
                #     allocated_storage: 1,
         | 
| 21088 21111 | 
             
                #   })
         | 
| 21089 21112 | 
             
                #
         | 
| 21090 21113 | 
             
                # @example Response structure
         | 
| @@ -21279,7 +21302,7 @@ module Aws::RDS | |
| 21279 21302 | 
             
                #   Example: `mydbinstance`
         | 
| 21280 21303 | 
             
                #
         | 
| 21281 21304 | 
             
                # @option params [Integer] :allocated_storage
         | 
| 21282 | 
            -
                #   The amount of storage (in  | 
| 21305 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the DB
         | 
| 21283 21306 | 
             
                #   instance. Follow the allocation rules specified in `CreateDBInstance`.
         | 
| 21284 21307 | 
             
                #
         | 
| 21285 21308 | 
             
                #   <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
         | 
| @@ -22413,6 +22436,16 @@ module Aws::RDS | |
| 22413 22436 | 
             
                #
         | 
| 22414 22437 | 
             
                #   This setting doesn't apply to RDS Custom or Amazon Aurora.
         | 
| 22415 22438 | 
             
                #
         | 
| 22439 | 
            +
                # @option params [Integer] :allocated_storage
         | 
| 22440 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the DB
         | 
| 22441 | 
            +
                #   instance. Follow the allocation rules specified in `CreateDBInstance`.
         | 
| 22442 | 
            +
                #
         | 
| 22443 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
         | 
| 22444 | 
            +
                #   restore operation can succeed. You can also allocate additional memory
         | 
| 22445 | 
            +
                #   for future growth.
         | 
| 22446 | 
            +
                #
         | 
| 22447 | 
            +
                #    </note>
         | 
| 22448 | 
            +
                #
         | 
| 22416 22449 | 
             
                # @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 22417 22450 | 
             
                #
         | 
| 22418 22451 | 
             
                #   * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
         | 
| @@ -22564,6 +22597,7 @@ module Aws::RDS | |
| 22564 22597 | 
             
                #     backup_target: "String",
         | 
| 22565 22598 | 
             
                #     network_type: "String",
         | 
| 22566 22599 | 
             
                #     storage_throughput: 1,
         | 
| 22600 | 
            +
                #     allocated_storage: 1,
         | 
| 22567 22601 | 
             
                #   })
         | 
| 22568 22602 | 
             
                #
         | 
| 22569 22603 | 
             
                # @example Response structure
         | 
| @@ -22831,12 +22865,15 @@ module Aws::RDS | |
| 22831 22865 | 
             
                end
         | 
| 22832 22866 |  | 
| 22833 22867 | 
             
                # Starts a database activity stream to monitor activity on the database.
         | 
| 22834 | 
            -
                # For more information, see [ | 
| 22835 | 
            -
                # *Amazon Aurora User Guide | 
| 22868 | 
            +
                # For more information, see [ Monitoring Amazon Aurora with Database
         | 
| 22869 | 
            +
                # Activity Streams][1] in the *Amazon Aurora User Guide* or [ Monitoring
         | 
| 22870 | 
            +
                # Amazon RDS with Database Activity Streams][2] in the *Amazon RDS User
         | 
| 22871 | 
            +
                # Guide*.
         | 
| 22836 22872 | 
             
                #
         | 
| 22837 22873 | 
             
                #
         | 
| 22838 22874 | 
             
                #
         | 
| 22839 22875 | 
             
                # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html
         | 
| 22876 | 
            +
                # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.html
         | 
| 22840 22877 | 
             
                #
         | 
| 22841 22878 | 
             
                # @option params [required, String] :resource_arn
         | 
| 22842 22879 | 
             
                #   The Amazon Resource Name (ARN) of the DB cluster, for example,
         | 
| @@ -23492,12 +23529,15 @@ module Aws::RDS | |
| 23492 23529 | 
             
                # Services console, the `start-activity-stream` CLI command, or the
         | 
| 23493 23530 | 
             
                # `StartActivityStream` action.
         | 
| 23494 23531 | 
             
                #
         | 
| 23495 | 
            -
                # For more information, see [ | 
| 23496 | 
            -
                # *Amazon Aurora User Guide | 
| 23532 | 
            +
                # For more information, see [ Monitoring Amazon Aurora with Database
         | 
| 23533 | 
            +
                # Activity Streams][1] in the *Amazon Aurora User Guide* or [ Monitoring
         | 
| 23534 | 
            +
                # Amazon RDS with Database Activity Streams][2] in the *Amazon RDS User
         | 
| 23535 | 
            +
                # Guide*.
         | 
| 23497 23536 | 
             
                #
         | 
| 23498 23537 | 
             
                #
         | 
| 23499 23538 | 
             
                #
         | 
| 23500 23539 | 
             
                # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/DBActivityStreams.html
         | 
| 23540 | 
            +
                # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/DBActivityStreams.html
         | 
| 23501 23541 | 
             
                #
         | 
| 23502 23542 | 
             
                # @option params [required, String] :resource_arn
         | 
| 23503 23543 | 
             
                #   The Amazon Resource Name (ARN) of the DB cluster for the database
         | 
| @@ -24225,7 +24265,7 @@ module Aws::RDS | |
| 24225 24265 | 
             
                    params: params,
         | 
| 24226 24266 | 
             
                    config: config)
         | 
| 24227 24267 | 
             
                  context[:gem_name] = 'aws-sdk-rds'
         | 
| 24228 | 
            -
                  context[:gem_version] = '1. | 
| 24268 | 
            +
                  context[:gem_version] = '1.170.0'
         | 
| 24229 24269 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 24230 24270 | 
             
                end
         | 
| 24231 24271 |  | 
| @@ -1061,6 +1061,7 @@ module Aws::RDS | |
| 1061 1061 | 
             
                CreateDBInstanceReadReplicaMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
         | 
| 1062 1062 | 
             
                CreateDBInstanceReadReplicaMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
         | 
| 1063 1063 | 
             
                CreateDBInstanceReadReplicaMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
         | 
| 1064 | 
            +
                CreateDBInstanceReadReplicaMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
         | 
| 1064 1065 | 
             
                CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
         | 
| 1065 1066 | 
             
                CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
         | 
| 1066 1067 |  | 
| @@ -3282,6 +3283,7 @@ module Aws::RDS | |
| 3282 3283 | 
             
                RestoreDBInstanceFromDBSnapshotMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
         | 
| 3283 3284 | 
             
                RestoreDBInstanceFromDBSnapshotMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
         | 
| 3284 3285 | 
             
                RestoreDBInstanceFromDBSnapshotMessage.add_member(:db_cluster_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterSnapshotIdentifier"))
         | 
| 3286 | 
            +
                RestoreDBInstanceFromDBSnapshotMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
         | 
| 3285 3287 | 
             
                RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
         | 
| 3286 3288 |  | 
| 3287 3289 | 
             
                RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
         | 
| @@ -3378,6 +3380,7 @@ module Aws::RDS | |
| 3378 3380 | 
             
                RestoreDBInstanceToPointInTimeMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
         | 
| 3379 3381 | 
             
                RestoreDBInstanceToPointInTimeMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
         | 
| 3380 3382 | 
             
                RestoreDBInstanceToPointInTimeMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
         | 
| 3383 | 
            +
                RestoreDBInstanceToPointInTimeMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
         | 
| 3381 3384 | 
             
                RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
         | 
| 3382 3385 |  | 
| 3383 3386 | 
             
                RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
         | 
| @@ -2130,6 +2130,7 @@ module Aws::RDS | |
| 2130 2130 | 
             
                #     network_type: "String",
         | 
| 2131 2131 | 
             
                #     storage_throughput: 1,
         | 
| 2132 2132 | 
             
                #     enable_customer_owned_ip: false,
         | 
| 2133 | 
            +
                #     allocated_storage: 1,
         | 
| 2133 2134 | 
             
                #     source_region: "String",
         | 
| 2134 2135 | 
             
                #   })
         | 
| 2135 2136 | 
             
                # @param [Hash] options ({})
         | 
| @@ -2616,6 +2617,16 @@ module Aws::RDS | |
| 2616 2617 | 
             
                #
         | 
| 2617 2618 | 
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
         | 
| 2618 2619 | 
             
                #   [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
         | 
| 2620 | 
            +
                # @option options [Integer] :allocated_storage
         | 
| 2621 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the
         | 
| 2622 | 
            +
                #   read replica. Follow the allocation rules specified in
         | 
| 2623 | 
            +
                #   `CreateDBInstance`.
         | 
| 2624 | 
            +
                #
         | 
| 2625 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your read replica so that the
         | 
| 2626 | 
            +
                #   create operation can succeed. You can also allocate additional memory
         | 
| 2627 | 
            +
                #   for future growth.
         | 
| 2628 | 
            +
                #
         | 
| 2629 | 
            +
                #    </note>
         | 
| 2619 2630 | 
             
                # @option options [String] :source_region
         | 
| 2620 2631 | 
             
                #   The source region of the snapshot. This is only needed when the
         | 
| 2621 2632 | 
             
                #   shapshot is encrypted and in a different region.
         | 
| @@ -3809,6 +3820,7 @@ module Aws::RDS | |
| 3809 3820 | 
             
                #     backup_target: "String",
         | 
| 3810 3821 | 
             
                #     network_type: "String",
         | 
| 3811 3822 | 
             
                #     storage_throughput: 1,
         | 
| 3823 | 
            +
                #     allocated_storage: 1,
         | 
| 3812 3824 | 
             
                #   })
         | 
| 3813 3825 | 
             
                # @param [Hash] options ({})
         | 
| 3814 3826 | 
             
                # @option options [required, String] :target_db_instance_identifier
         | 
| @@ -4186,6 +4198,15 @@ module Aws::RDS | |
| 4186 4198 | 
             
                #   Specifies the storage throughput value for the DB instance.
         | 
| 4187 4199 | 
             
                #
         | 
| 4188 4200 | 
             
                #   This setting doesn't apply to RDS Custom or Amazon Aurora.
         | 
| 4201 | 
            +
                # @option options [Integer] :allocated_storage
         | 
| 4202 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the DB
         | 
| 4203 | 
            +
                #   instance. Follow the allocation rules specified in `CreateDBInstance`.
         | 
| 4204 | 
            +
                #
         | 
| 4205 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
         | 
| 4206 | 
            +
                #   restore operation can succeed. You can also allocate additional memory
         | 
| 4207 | 
            +
                #   for future growth.
         | 
| 4208 | 
            +
                #
         | 
| 4209 | 
            +
                #    </note>
         | 
| 4189 4210 | 
             
                # @return [DBInstance]
         | 
| 4190 4211 | 
             
                def restore(options = {})
         | 
| 4191 4212 | 
             
                  options = options.merge(source_db_instance_identifier: @id)
         | 
| @@ -667,6 +667,7 @@ module Aws::RDS | |
| 667 667 | 
             
                #     network_type: "String",
         | 
| 668 668 | 
             
                #     storage_throughput: 1,
         | 
| 669 669 | 
             
                #     db_cluster_snapshot_identifier: "String",
         | 
| 670 | 
            +
                #     allocated_storage: 1,
         | 
| 670 671 | 
             
                #   })
         | 
| 671 672 | 
             
                # @param [Hash] options ({})
         | 
| 672 673 | 
             
                # @option options [required, String] :db_instance_identifier
         | 
| @@ -1055,6 +1056,15 @@ module Aws::RDS | |
| 1055 1056 | 
             
                #
         | 
| 1056 1057 | 
             
                #
         | 
| 1057 1058 | 
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
         | 
| 1059 | 
            +
                # @option options [Integer] :allocated_storage
         | 
| 1060 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the DB
         | 
| 1061 | 
            +
                #   instance. Follow the allocation rules specified in CreateDBInstance.
         | 
| 1062 | 
            +
                #
         | 
| 1063 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that the
         | 
| 1064 | 
            +
                #   restore operation can succeed. You can also allocate additional memory
         | 
| 1065 | 
            +
                #   for future growth.
         | 
| 1066 | 
            +
                #
         | 
| 1067 | 
            +
                #    </note>
         | 
| 1058 1068 | 
             
                # @return [DBInstance]
         | 
| 1059 1069 | 
             
                def restore(options = {})
         | 
| 1060 1070 | 
             
                  options = options.merge(db_snapshot_identifier: @snapshot_id)
         | 
    
        data/lib/aws-sdk-rds/types.rb
    CHANGED
    
    | @@ -4959,6 +4959,18 @@ module Aws::RDS | |
| 4959 4959 | 
             
                #   [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
         | 
| 4960 4960 | 
             
                #   @return [Boolean]
         | 
| 4961 4961 | 
             
                #
         | 
| 4962 | 
            +
                # @!attribute [rw] allocated_storage
         | 
| 4963 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the
         | 
| 4964 | 
            +
                #   read replica. Follow the allocation rules specified in
         | 
| 4965 | 
            +
                #   `CreateDBInstance`.
         | 
| 4966 | 
            +
                #
         | 
| 4967 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your read replica so that the
         | 
| 4968 | 
            +
                #   create operation can succeed. You can also allocate additional
         | 
| 4969 | 
            +
                #   memory for future growth.
         | 
| 4970 | 
            +
                #
         | 
| 4971 | 
            +
                #    </note>
         | 
| 4972 | 
            +
                #   @return [Integer]
         | 
| 4973 | 
            +
                #
         | 
| 4962 4974 | 
             
                # @!attribute [rw] source_region
         | 
| 4963 4975 | 
             
                #   The source region of the snapshot. This is only needed when the
         | 
| 4964 4976 | 
             
                #   shapshot is encrypted and in a different region.
         | 
| @@ -5003,6 +5015,7 @@ module Aws::RDS | |
| 5003 5015 | 
             
                  :network_type,
         | 
| 5004 5016 | 
             
                  :storage_throughput,
         | 
| 5005 5017 | 
             
                  :enable_customer_owned_ip,
         | 
| 5018 | 
            +
                  :allocated_storage,
         | 
| 5006 5019 | 
             
                  :source_region)
         | 
| 5007 5020 | 
             
                  SENSITIVE = []
         | 
| 5008 5021 | 
             
                  include Aws::Structure
         | 
| @@ -20854,6 +20867,18 @@ module Aws::RDS | |
| 20854 20867 | 
             
                #   [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
         | 
| 20855 20868 | 
             
                #   @return [String]
         | 
| 20856 20869 | 
             
                #
         | 
| 20870 | 
            +
                # @!attribute [rw] allocated_storage
         | 
| 20871 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the
         | 
| 20872 | 
            +
                #   DB instance. Follow the allocation rules specified in
         | 
| 20873 | 
            +
                #   CreateDBInstance.
         | 
| 20874 | 
            +
                #
         | 
| 20875 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that
         | 
| 20876 | 
            +
                #   the restore operation can succeed. You can also allocate additional
         | 
| 20877 | 
            +
                #   memory for future growth.
         | 
| 20878 | 
            +
                #
         | 
| 20879 | 
            +
                #    </note>
         | 
| 20880 | 
            +
                #   @return [Integer]
         | 
| 20881 | 
            +
                #
         | 
| 20857 20882 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
         | 
| 20858 20883 | 
             
                #
         | 
| 20859 20884 | 
             
                class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
         | 
| @@ -20890,7 +20915,8 @@ module Aws::RDS | |
| 20890 20915 | 
             
                  :backup_target,
         | 
| 20891 20916 | 
             
                  :network_type,
         | 
| 20892 20917 | 
             
                  :storage_throughput,
         | 
| 20893 | 
            -
                  :db_cluster_snapshot_identifier | 
| 20918 | 
            +
                  :db_cluster_snapshot_identifier,
         | 
| 20919 | 
            +
                  :allocated_storage)
         | 
| 20894 20920 | 
             
                  SENSITIVE = []
         | 
| 20895 20921 | 
             
                  include Aws::Structure
         | 
| 20896 20922 | 
             
                end
         | 
| @@ -20936,7 +20962,7 @@ module Aws::RDS | |
| 20936 20962 | 
             
                #   @return [String]
         | 
| 20937 20963 | 
             
                #
         | 
| 20938 20964 | 
             
                # @!attribute [rw] allocated_storage
         | 
| 20939 | 
            -
                #   The amount of storage (in  | 
| 20965 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the
         | 
| 20940 20966 | 
             
                #   DB instance. Follow the allocation rules specified in
         | 
| 20941 20967 | 
             
                #   `CreateDBInstance`.
         | 
| 20942 20968 | 
             
                #
         | 
| @@ -21994,6 +22020,18 @@ module Aws::RDS | |
| 21994 22020 | 
             
                #   This setting doesn't apply to RDS Custom or Amazon Aurora.
         | 
| 21995 22021 | 
             
                #   @return [Integer]
         | 
| 21996 22022 | 
             
                #
         | 
| 22023 | 
            +
                # @!attribute [rw] allocated_storage
         | 
| 22024 | 
            +
                #   The amount of storage (in gibibytes) to allocate initially for the
         | 
| 22025 | 
            +
                #   DB instance. Follow the allocation rules specified in
         | 
| 22026 | 
            +
                #   `CreateDBInstance`.
         | 
| 22027 | 
            +
                #
         | 
| 22028 | 
            +
                #   <note markdown="1"> Be sure to allocate enough memory for your new DB instance so that
         | 
| 22029 | 
            +
                #   the restore operation can succeed. You can also allocate additional
         | 
| 22030 | 
            +
                #   memory for future growth.
         | 
| 22031 | 
            +
                #
         | 
| 22032 | 
            +
                #    </note>
         | 
| 22033 | 
            +
                #   @return [Integer]
         | 
| 22034 | 
            +
                #
         | 
| 21997 22035 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
         | 
| 21998 22036 | 
             
                #
         | 
| 21999 22037 | 
             
                class RestoreDBInstanceToPointInTimeMessage < Struct.new(
         | 
| @@ -22034,7 +22072,8 @@ module Aws::RDS | |
| 22034 22072 | 
             
                  :custom_iam_instance_profile,
         | 
| 22035 22073 | 
             
                  :backup_target,
         | 
| 22036 22074 | 
             
                  :network_type,
         | 
| 22037 | 
            -
                  :storage_throughput | 
| 22075 | 
            +
                  :storage_throughput,
         | 
| 22076 | 
            +
                  :allocated_storage)
         | 
| 22038 22077 | 
             
                  SENSITIVE = []
         | 
| 22039 22078 | 
             
                  include Aws::Structure
         | 
| 22040 22079 | 
             
                end
         | 
    
        data/lib/aws-sdk-rds.rb
    CHANGED
    
    
    
        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. | 
| 4 | 
            +
              version: 1.170.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: 2023-01- | 
| 11 | 
            +
            date: 2023-01-10 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sigv4
         |