aws-sdk-rds 1.310.0 → 1.311.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ed8dd6ca56c1a1e0d4a57c16c4bbd3dbc7305a64a3065d8f8df45d3f9b14e7c
4
- data.tar.gz: 6398d416c8521feff5a5c15e010741352aea1ef21a3b723f7961c5e12383fb04
3
+ metadata.gz: 1a33740a1fce4e4f1d7e4fa0e0d7b06f622f1b368d1116039a2f6fbb616f8b72
4
+ data.tar.gz: 8ae89fe44b3b008445fc5f284b9fd82045a4d3b9b4d1562977b271eb029a33e0
5
5
  SHA512:
6
- metadata.gz: d9ff8fe03a00249a3594faeaa3e3062986e76f86a160b5afa413801f3ba585bf133b355363b2f905e794349b18de30e16b7755428ca7af47eabdf9b116482890
7
- data.tar.gz: 5184acbec116bd4234949561c09d7053ad31bc4ae9a9b8a074426a7dac1e1dfe490ba596d06d3ffbd85c3d245d06ba76a89981708532ad428761ec346247ce47
6
+ metadata.gz: 1aa34d48f5d191c8d66cf79f6656abe589bb95448de499b792a47dd75f0138bf4db0c70987ce6eefa86f727d3585b9ef17330364ff2c0e11fb0d42a818a7952e
7
+ data.tar.gz: a352b7249f6ce670f2f2077c813a40f4a725083d28fd003511e1888ad89b65dbeea61696199ea34609360155b5744cc3df29ef2ae62d6db3591247f02c344356
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.311.0 (2026-04-16)
5
+ ------------------
6
+
7
+ * Feature - Adds a new DescribeServerlessV2PlatformVersions API to describe platform version properties for Aurora Serverless v2. Also introduces a new valid maintenance action value for serverless platform version updates.
8
+
4
9
  1.310.0 (2026-03-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.310.0
1
+ 1.311.0
@@ -18128,6 +18128,154 @@ module Aws::RDS
18128
18128
  req.send_request(options)
18129
18129
  end
18130
18130
 
18131
+ # Describes the properties of specific platform versions for Aurora
18132
+ # Serverless v2.
18133
+ #
18134
+ # @option params [String] :serverless_v2_platform_version
18135
+ # A specific platform version to return details for.
18136
+ #
18137
+ # Example: `3`
18138
+ #
18139
+ # @option params [String] :engine
18140
+ # The database engine to return platform version details for.
18141
+ #
18142
+ # Valid Values:
18143
+ #
18144
+ # * `aurora-mysql`
18145
+ #
18146
+ # * `aurora-postgresql`
18147
+ #
18148
+ # @option params [Array<Types::Filter>] :filters
18149
+ # This parameter isn't currently supported.
18150
+ #
18151
+ # @option params [Boolean] :default_only
18152
+ # Specifies whether to return only the default platform versions for
18153
+ # each engine. The default platform version is the version used for new
18154
+ # DB clusters.
18155
+ #
18156
+ # @option params [Boolean] :include_all
18157
+ # Specifies whether to also include platform versions which are no
18158
+ # longer in use.
18159
+ #
18160
+ # @option params [Integer] :max_records
18161
+ # The maximum number of records to include in the response. If more than
18162
+ # the `MaxRecords` value is available, a pagination token called a
18163
+ # marker is included in the response so you can retrieve the remaining
18164
+ # results.
18165
+ #
18166
+ # Default: 20
18167
+ #
18168
+ # Constraints: Minimum 1, maximum 200.
18169
+ #
18170
+ # @option params [String] :marker
18171
+ # An optional pagination token provided by a previous request. If this
18172
+ # parameter is specified, the response includes only records beyond the
18173
+ # marker, up to the value specified by `MaxRecords`.
18174
+ #
18175
+ # @return [Types::ServerlessV2PlatformVersionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18176
+ #
18177
+ # * {Types::ServerlessV2PlatformVersionsMessage#marker #marker} => String
18178
+ # * {Types::ServerlessV2PlatformVersionsMessage#serverless_v2_platform_versions #serverless_v2_platform_versions} => Array&lt;Types::ServerlessV2PlatformVersionInfo&gt;
18179
+ #
18180
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
18181
+ #
18182
+ #
18183
+ # @example Example: To describe the serverless platform versions for the Aurora MySQL DB engine
18184
+ #
18185
+ # # The following example displays details about each of the serverless platform versions for the specified DB engine.
18186
+ #
18187
+ # resp = client.describe_serverless_v2_platform_versions({
18188
+ # engine: "aurora-mysql",
18189
+ # })
18190
+ #
18191
+ # resp.to_h outputs the following:
18192
+ # {
18193
+ # serverless_v2_platform_versions: [
18194
+ # {
18195
+ # engine: "aurora-mysql",
18196
+ # is_default: true,
18197
+ # serverless_v2_features_support: {
18198
+ # max_capacity: 256.0,
18199
+ # min_capacity: 0.0,
18200
+ # },
18201
+ # serverless_v2_platform_version: "4",
18202
+ # serverless_v2_platform_version_description: "Version 4 offering scaling up to 256 ACUs, and performance improvement up to 30% compared to version 3",
18203
+ # status: "enabled",
18204
+ # },
18205
+ # {
18206
+ # engine: "aurora-mysql",
18207
+ # is_default: false,
18208
+ # serverless_v2_features_support: {
18209
+ # max_capacity: 256.0,
18210
+ # min_capacity: 0.0,
18211
+ # },
18212
+ # serverless_v2_platform_version: "3",
18213
+ # serverless_v2_platform_version_description: "Version 3 offering scaling up to 256 ACUs, and performance improvement up to 30% compared to version 2",
18214
+ # status: "enabled",
18215
+ # },
18216
+ # {
18217
+ # engine: "aurora-mysql",
18218
+ # is_default: false,
18219
+ # serverless_v2_features_support: {
18220
+ # max_capacity: 256.0,
18221
+ # min_capacity: 0.0,
18222
+ # },
18223
+ # serverless_v2_platform_version: "2",
18224
+ # serverless_v2_platform_version_description: "Version 2 offering scaling up to 256 ACUs",
18225
+ # status: "enabled",
18226
+ # },
18227
+ # {
18228
+ # engine: "aurora-mysql",
18229
+ # is_default: false,
18230
+ # serverless_v2_features_support: {
18231
+ # max_capacity: 128.0,
18232
+ # min_capacity: 0.0,
18233
+ # },
18234
+ # serverless_v2_platform_version: "1",
18235
+ # serverless_v2_platform_version_description: "Version 1 offering scaling up to 128 ACUs",
18236
+ # status: "enabled",
18237
+ # },
18238
+ # ],
18239
+ # }
18240
+ #
18241
+ # @example Request syntax with placeholder values
18242
+ #
18243
+ # resp = client.describe_serverless_v2_platform_versions({
18244
+ # serverless_v2_platform_version: "String",
18245
+ # engine: "String",
18246
+ # filters: [
18247
+ # {
18248
+ # name: "String", # required
18249
+ # values: ["String"], # required
18250
+ # },
18251
+ # ],
18252
+ # default_only: false,
18253
+ # include_all: false,
18254
+ # max_records: 1,
18255
+ # marker: "String",
18256
+ # })
18257
+ #
18258
+ # @example Response structure
18259
+ #
18260
+ # resp.marker #=> String
18261
+ # resp.serverless_v2_platform_versions #=> Array
18262
+ # resp.serverless_v2_platform_versions[0].serverless_v2_platform_version #=> String
18263
+ # resp.serverless_v2_platform_versions[0].serverless_v2_platform_version_description #=> String
18264
+ # resp.serverless_v2_platform_versions[0].engine #=> String
18265
+ # resp.serverless_v2_platform_versions[0].serverless_v2_features_support.min_capacity #=> Float
18266
+ # resp.serverless_v2_platform_versions[0].serverless_v2_features_support.max_capacity #=> Float
18267
+ # resp.serverless_v2_platform_versions[0].status #=> String
18268
+ # resp.serverless_v2_platform_versions[0].is_default #=> Boolean
18269
+ #
18270
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeServerlessV2PlatformVersions AWS API Documentation
18271
+ #
18272
+ # @overload describe_serverless_v2_platform_versions(params = {})
18273
+ # @param [Hash] params ({})
18274
+ def describe_serverless_v2_platform_versions(params = {}, options = {})
18275
+ req = build_request(:describe_serverless_v2_platform_versions, params)
18276
+ req.send_request(options)
18277
+ end
18278
+
18131
18279
  # Returns a list of the source Amazon Web Services Regions where the
18132
18280
  # current Amazon Web Services Region can create a read replica, copy a
18133
18281
  # DB snapshot from, or replicate automated backups from.
@@ -33984,7 +34132,7 @@ module Aws::RDS
33984
34132
  tracer: tracer
33985
34133
  )
33986
34134
  context[:gem_name] = 'aws-sdk-rds'
33987
- context[:gem_version] = '1.310.0'
34135
+ context[:gem_version] = '1.311.0'
33988
34136
  Seahorse::Client::Request.new(handlers, context)
33989
34137
  end
33990
34138
 
@@ -384,6 +384,7 @@ module Aws::RDS
384
384
  DescribePendingMaintenanceActionsMessage = Shapes::StructureShape.new(name: 'DescribePendingMaintenanceActionsMessage')
385
385
  DescribeReservedDBInstancesMessage = Shapes::StructureShape.new(name: 'DescribeReservedDBInstancesMessage')
386
386
  DescribeReservedDBInstancesOfferingsMessage = Shapes::StructureShape.new(name: 'DescribeReservedDBInstancesOfferingsMessage')
387
+ DescribeServerlessV2PlatformVersionsMessage = Shapes::StructureShape.new(name: 'DescribeServerlessV2PlatformVersionsMessage')
387
388
  DescribeSourceRegionsMessage = Shapes::StructureShape.new(name: 'DescribeSourceRegionsMessage')
388
389
  DescribeTenantDatabasesMessage = Shapes::StructureShape.new(name: 'DescribeTenantDatabasesMessage')
389
390
  DescribeValidDBInstanceModificationsMessage = Shapes::StructureShape.new(name: 'DescribeValidDBInstanceModificationsMessage')
@@ -693,6 +694,9 @@ module Aws::RDS
693
694
  ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ScalingConfigurationInfo')
694
695
  SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
695
696
  ServerlessV2FeaturesSupport = Shapes::StructureShape.new(name: 'ServerlessV2FeaturesSupport')
697
+ ServerlessV2PlatformVersionInfo = Shapes::StructureShape.new(name: 'ServerlessV2PlatformVersionInfo')
698
+ ServerlessV2PlatformVersionList = Shapes::ListShape.new(name: 'ServerlessV2PlatformVersionList')
699
+ ServerlessV2PlatformVersionsMessage = Shapes::StructureShape.new(name: 'ServerlessV2PlatformVersionsMessage')
696
700
  ServerlessV2ScalingConfiguration = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfiguration')
697
701
  ServerlessV2ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfigurationInfo')
698
702
  SharedSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SharedSnapshotQuotaExceededFault', error: {"code" => "SharedSnapshotQuotaExceeded", "httpStatusCode" => 400, "senderFault" => true})
@@ -2774,6 +2778,15 @@ module Aws::RDS
2774
2778
  DescribeReservedDBInstancesOfferingsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
2775
2779
  DescribeReservedDBInstancesOfferingsMessage.struct_class = Types::DescribeReservedDBInstancesOfferingsMessage
2776
2780
 
2781
+ DescribeServerlessV2PlatformVersionsMessage.add_member(:serverless_v2_platform_version, Shapes::ShapeRef.new(shape: String, location_name: "ServerlessV2PlatformVersion"))
2782
+ DescribeServerlessV2PlatformVersionsMessage.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
2783
+ DescribeServerlessV2PlatformVersionsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
2784
+ DescribeServerlessV2PlatformVersionsMessage.add_member(:default_only, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DefaultOnly"))
2785
+ DescribeServerlessV2PlatformVersionsMessage.add_member(:include_all, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IncludeAll"))
2786
+ DescribeServerlessV2PlatformVersionsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
2787
+ DescribeServerlessV2PlatformVersionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
2788
+ DescribeServerlessV2PlatformVersionsMessage.struct_class = Types::DescribeServerlessV2PlatformVersionsMessage
2789
+
2777
2790
  DescribeSourceRegionsMessage.add_member(:region_name, Shapes::ShapeRef.new(shape: String, location_name: "RegionName"))
2778
2791
  DescribeSourceRegionsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
2779
2792
  DescribeSourceRegionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
@@ -4266,6 +4279,20 @@ module Aws::RDS
4266
4279
  ServerlessV2FeaturesSupport.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
4267
4280
  ServerlessV2FeaturesSupport.struct_class = Types::ServerlessV2FeaturesSupport
4268
4281
 
4282
+ ServerlessV2PlatformVersionInfo.add_member(:serverless_v2_platform_version, Shapes::ShapeRef.new(shape: String, location_name: "ServerlessV2PlatformVersion"))
4283
+ ServerlessV2PlatformVersionInfo.add_member(:serverless_v2_platform_version_description, Shapes::ShapeRef.new(shape: String, location_name: "ServerlessV2PlatformVersionDescription"))
4284
+ ServerlessV2PlatformVersionInfo.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
4285
+ ServerlessV2PlatformVersionInfo.add_member(:serverless_v2_features_support, Shapes::ShapeRef.new(shape: ServerlessV2FeaturesSupport, location_name: "ServerlessV2FeaturesSupport"))
4286
+ ServerlessV2PlatformVersionInfo.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
4287
+ ServerlessV2PlatformVersionInfo.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
4288
+ ServerlessV2PlatformVersionInfo.struct_class = Types::ServerlessV2PlatformVersionInfo
4289
+
4290
+ ServerlessV2PlatformVersionList.member = Shapes::ShapeRef.new(shape: ServerlessV2PlatformVersionInfo)
4291
+
4292
+ ServerlessV2PlatformVersionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
4293
+ ServerlessV2PlatformVersionsMessage.add_member(:serverless_v2_platform_versions, Shapes::ShapeRef.new(shape: ServerlessV2PlatformVersionList, location_name: "ServerlessV2PlatformVersions"))
4294
+ ServerlessV2PlatformVersionsMessage.struct_class = Types::ServerlessV2PlatformVersionsMessage
4295
+
4269
4296
  ServerlessV2ScalingConfiguration.add_member(:min_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinCapacity"))
4270
4297
  ServerlessV2ScalingConfiguration.add_member(:max_capacity, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxCapacity"))
4271
4298
  ServerlessV2ScalingConfiguration.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
@@ -5926,6 +5953,20 @@ module Aws::RDS
5926
5953
  )
5927
5954
  end)
5928
5955
 
5956
+ api.add_operation(:describe_serverless_v2_platform_versions, Seahorse::Model::Operation.new.tap do |o|
5957
+ o.name = "DescribeServerlessV2PlatformVersions"
5958
+ o.http_method = "POST"
5959
+ o.http_request_uri = "/"
5960
+ o.input = Shapes::ShapeRef.new(shape: DescribeServerlessV2PlatformVersionsMessage)
5961
+ o.output = Shapes::ShapeRef.new(shape: ServerlessV2PlatformVersionsMessage)
5962
+ o[:pager] = Aws::Pager.new(
5963
+ limit_key: "max_records",
5964
+ tokens: {
5965
+ "marker" => "marker"
5966
+ }
5967
+ )
5968
+ end)
5969
+
5929
5970
  api.add_operation(:describe_source_regions, Seahorse::Model::Operation.new.tap do |o|
5930
5971
  o.name = "DescribeSourceRegions"
5931
5972
  o.http_method = "POST"
@@ -16192,6 +16192,68 @@ module Aws::RDS
16192
16192
  include Aws::Structure
16193
16193
  end
16194
16194
 
16195
+ # @!attribute [rw] serverless_v2_platform_version
16196
+ # A specific platform version to return details for.
16197
+ #
16198
+ # Example: `3`
16199
+ # @return [String]
16200
+ #
16201
+ # @!attribute [rw] engine
16202
+ # The database engine to return platform version details for.
16203
+ #
16204
+ # Valid Values:
16205
+ #
16206
+ # * `aurora-mysql`
16207
+ #
16208
+ # * `aurora-postgresql`
16209
+ # @return [String]
16210
+ #
16211
+ # @!attribute [rw] filters
16212
+ # This parameter isn't currently supported.
16213
+ # @return [Array<Types::Filter>]
16214
+ #
16215
+ # @!attribute [rw] default_only
16216
+ # Specifies whether to return only the default platform versions for
16217
+ # each engine. The default platform version is the version used for
16218
+ # new DB clusters.
16219
+ # @return [Boolean]
16220
+ #
16221
+ # @!attribute [rw] include_all
16222
+ # Specifies whether to also include platform versions which are no
16223
+ # longer in use.
16224
+ # @return [Boolean]
16225
+ #
16226
+ # @!attribute [rw] max_records
16227
+ # The maximum number of records to include in the response. If more
16228
+ # than the `MaxRecords` value is available, a pagination token called
16229
+ # a marker is included in the response so you can retrieve the
16230
+ # remaining results.
16231
+ #
16232
+ # Default: 20
16233
+ #
16234
+ # Constraints: Minimum 1, maximum 200.
16235
+ # @return [Integer]
16236
+ #
16237
+ # @!attribute [rw] marker
16238
+ # An optional pagination token provided by a previous request. If this
16239
+ # parameter is specified, the response includes only records beyond
16240
+ # the marker, up to the value specified by `MaxRecords`.
16241
+ # @return [String]
16242
+ #
16243
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeServerlessV2PlatformVersionsMessage AWS API Documentation
16244
+ #
16245
+ class DescribeServerlessV2PlatformVersionsMessage < Struct.new(
16246
+ :serverless_v2_platform_version,
16247
+ :engine,
16248
+ :filters,
16249
+ :default_only,
16250
+ :include_all,
16251
+ :max_records,
16252
+ :marker)
16253
+ SENSITIVE = []
16254
+ include Aws::Structure
16255
+ end
16256
+
16195
16257
  # @!attribute [rw] region_name
16196
16258
  # The source Amazon Web Services Region name. For example,
16197
16259
  # `us-east-1`.
@@ -22594,6 +22656,8 @@ module Aws::RDS
22594
22656
  #
22595
22657
  # * `os-upgrade`
22596
22658
  #
22659
+ # * `serverless-platform-version-update`
22660
+ #
22597
22661
  # * `system-update`
22598
22662
  #
22599
22663
  # For more information about these actions, see [Maintenance actions
@@ -28793,6 +28857,79 @@ module Aws::RDS
28793
28857
  include Aws::Structure
28794
28858
  end
28795
28859
 
28860
+ # This data type is used as a response element in the action
28861
+ # `DescribeServerlessV2PlatformVersions`.
28862
+ #
28863
+ # @!attribute [rw] serverless_v2_platform_version
28864
+ # The version number of the serverless platform.
28865
+ # @return [String]
28866
+ #
28867
+ # @!attribute [rw] serverless_v2_platform_version_description
28868
+ # The description of the serverless platform.
28869
+ # @return [String]
28870
+ #
28871
+ # @!attribute [rw] engine
28872
+ # The name of the database engine.
28873
+ # @return [String]
28874
+ #
28875
+ # @!attribute [rw] serverless_v2_features_support
28876
+ # Specifies any Aurora Serverless v2 properties or limits that differ
28877
+ # between Aurora Serverless v2 platform versions. You can retrieve the
28878
+ # platform version of an existing DB cluster and check whether that
28879
+ # version supports certain Aurora Serverless v2 features before you
28880
+ # attempt to use those features.
28881
+ # @return [Types::ServerlessV2FeaturesSupport]
28882
+ #
28883
+ # @!attribute [rw] status
28884
+ # The status of the serverless platform. Valid statuses are the
28885
+ # following:
28886
+ #
28887
+ # * `enabled` - The platform version is in use.
28888
+ #
28889
+ # * `disabled` - The platform version is not in use.
28890
+ # @return [String]
28891
+ #
28892
+ # @!attribute [rw] is_default
28893
+ # Indicates whether this platform version is the default version for
28894
+ # the engine. The default platform version is the version used for new
28895
+ # DB clusters.
28896
+ # @return [Boolean]
28897
+ #
28898
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2PlatformVersionInfo AWS API Documentation
28899
+ #
28900
+ class ServerlessV2PlatformVersionInfo < Struct.new(
28901
+ :serverless_v2_platform_version,
28902
+ :serverless_v2_platform_version_description,
28903
+ :engine,
28904
+ :serverless_v2_features_support,
28905
+ :status,
28906
+ :is_default)
28907
+ SENSITIVE = []
28908
+ include Aws::Structure
28909
+ end
28910
+
28911
+ # Contains the result of a successful invocation of the
28912
+ # `DescribeServerlessV2PlatformVersions` action.
28913
+ #
28914
+ # @!attribute [rw] marker
28915
+ # An optional pagination token provided by a previous request. If this
28916
+ # parameter is specified, the response includes only records beyond
28917
+ # the marker, up to the value specified by `MaxRecords`.
28918
+ # @return [String]
28919
+ #
28920
+ # @!attribute [rw] serverless_v2_platform_versions
28921
+ # A list of `ServerlessV2PlatformVersionInfo` elements.
28922
+ # @return [Array<Types::ServerlessV2PlatformVersionInfo>]
28923
+ #
28924
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2PlatformVersionsMessage AWS API Documentation
28925
+ #
28926
+ class ServerlessV2PlatformVersionsMessage < Struct.new(
28927
+ :marker,
28928
+ :serverless_v2_platform_versions)
28929
+ SENSITIVE = []
28930
+ include Aws::Structure
28931
+ end
28932
+
28796
28933
  # Contains the scaling configuration of an Aurora Serverless v2 DB
28797
28934
  # cluster.
28798
28935
  #
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.310.0'
83
+ GEM_VERSION = '1.311.0'
84
84
 
85
85
  end
86
86
 
data/sig/client.rbs CHANGED
@@ -2130,6 +2130,28 @@ module Aws
2130
2130
  ) -> _DescribeReservedDBInstancesOfferingsResponseSuccess
2131
2131
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReservedDBInstancesOfferingsResponseSuccess
2132
2132
 
2133
+ interface _DescribeServerlessV2PlatformVersionsResponseSuccess
2134
+ include ::Seahorse::Client::_ResponseSuccess[Types::ServerlessV2PlatformVersionsMessage]
2135
+ def marker: () -> ::String
2136
+ def serverless_v2_platform_versions: () -> ::Array[Types::ServerlessV2PlatformVersionInfo]
2137
+ end
2138
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#describe_serverless_v2_platform_versions-instance_method
2139
+ def describe_serverless_v2_platform_versions: (
2140
+ ?serverless_v2_platform_version: ::String,
2141
+ ?engine: ::String,
2142
+ ?filters: Array[
2143
+ {
2144
+ name: ::String,
2145
+ values: Array[::String]
2146
+ },
2147
+ ],
2148
+ ?default_only: bool,
2149
+ ?include_all: bool,
2150
+ ?max_records: ::Integer,
2151
+ ?marker: ::String
2152
+ ) -> _DescribeServerlessV2PlatformVersionsResponseSuccess
2153
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServerlessV2PlatformVersionsResponseSuccess
2154
+
2133
2155
  interface _DescribeSourceRegionsResponseSuccess
2134
2156
  include ::Seahorse::Client::_ResponseSuccess[Types::SourceRegionMessage]
2135
2157
  def marker: () -> ::String
data/sig/types.rbs CHANGED
@@ -2400,6 +2400,17 @@ module Aws::RDS
2400
2400
  SENSITIVE: []
2401
2401
  end
2402
2402
 
2403
+ class DescribeServerlessV2PlatformVersionsMessage
2404
+ attr_accessor serverless_v2_platform_version: ::String
2405
+ attr_accessor engine: ::String
2406
+ attr_accessor filters: ::Array[Types::Filter]
2407
+ attr_accessor default_only: bool
2408
+ attr_accessor include_all: bool
2409
+ attr_accessor max_records: ::Integer
2410
+ attr_accessor marker: ::String
2411
+ SENSITIVE: []
2412
+ end
2413
+
2403
2414
  class DescribeSourceRegionsMessage
2404
2415
  attr_accessor region_name: ::String
2405
2416
  attr_accessor max_records: ::Integer
@@ -4166,6 +4177,22 @@ module Aws::RDS
4166
4177
  SENSITIVE: []
4167
4178
  end
4168
4179
 
4180
+ class ServerlessV2PlatformVersionInfo
4181
+ attr_accessor serverless_v2_platform_version: ::String
4182
+ attr_accessor serverless_v2_platform_version_description: ::String
4183
+ attr_accessor engine: ::String
4184
+ attr_accessor serverless_v2_features_support: Types::ServerlessV2FeaturesSupport
4185
+ attr_accessor status: ::String
4186
+ attr_accessor is_default: bool
4187
+ SENSITIVE: []
4188
+ end
4189
+
4190
+ class ServerlessV2PlatformVersionsMessage
4191
+ attr_accessor marker: ::String
4192
+ attr_accessor serverless_v2_platform_versions: ::Array[Types::ServerlessV2PlatformVersionInfo]
4193
+ SENSITIVE: []
4194
+ end
4195
+
4169
4196
  class ServerlessV2ScalingConfiguration
4170
4197
  attr_accessor min_capacity: ::Float
4171
4198
  attr_accessor max_capacity: ::Float
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.310.0
4
+ version: 1.311.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services