aws-sdk-rds 1.190.0 → 1.191.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: '082375afb1f14b2983230f42b789f89f54b06282ef2861ff41b68694e97eb511'
4
- data.tar.gz: ab787eedaf4d422971efea43ed5bb8d2c23af8c86eaee317d28b2357d025f21d
3
+ metadata.gz: d13ab359180d260c150905320b458ac72f396d5b05db47fbb3942d455e805e8f
4
+ data.tar.gz: a4c581ba5d2aabb474306535f458243b5f481f3f66dcd73d947cfcf292728db0
5
5
  SHA512:
6
- metadata.gz: c1a39000b92260f65e285e532f74a35bf0d2e2cc2ebf9ed40b0e9138295e6201bdd185c98da8b15635c187de69cc8799fefd0a632958de445cea76524dac73d5
7
- data.tar.gz: e055bfc080fa942c85e578a6bec91eb38336f56f746e8c69a23b57f21873d61b244fc71cd90f85fb97e7038d1d60396a0a4c65317c413c5f3b19b534be76e8fe
6
+ metadata.gz: 1abd9c0b08b09fc135bba16c0a4e5dd1f8aad9a13a1cb89d6011f13514595c5ed6b89c9292fab698a55d9510753b9b48b05dabd9538791282a408f6765cc2d00
7
+ data.tar.gz: 26625e11c5a4dc7e3e5d6268eb6e5f264fa73d52f82d9ef940083938096f13c539d17502dbb989b6257d757e2a24029f7b9e4bd78d43da7859d8acb015de6a0d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.191.0 (2023-08-22)
5
+ ------------------
6
+
7
+ * Feature - Adding parameters to CreateCustomDbEngineVersion reserved for future use.
8
+
4
9
  1.190.0 (2023-08-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.190.0
1
+ 1.191.0
@@ -2298,6 +2298,12 @@ module Aws::RDS
2298
2298
  #
2299
2299
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
2300
2300
  #
2301
+ # @option params [String] :source_custom_db_engine_version_identifier
2302
+ # Reserved for future use.
2303
+ #
2304
+ # @option params [Boolean] :use_aws_provided_latest_image
2305
+ # Reserved for future use.
2306
+ #
2301
2307
  # @return [Types::DBEngineVersion] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2302
2308
  #
2303
2309
  # * {Types::DBEngineVersion#engine #engine} => String
@@ -2350,6 +2356,8 @@ module Aws::RDS
2350
2356
  # value: "String",
2351
2357
  # },
2352
2358
  # ],
2359
+ # source_custom_db_engine_version_identifier: "String255",
2360
+ # use_aws_provided_latest_image: false,
2353
2361
  # })
2354
2362
  #
2355
2363
  # @example Response structure
@@ -28255,7 +28263,7 @@ module Aws::RDS
28255
28263
  params: params,
28256
28264
  config: config)
28257
28265
  context[:gem_name] = 'aws-sdk-rds'
28258
- context[:gem_version] = '1.190.0'
28266
+ context[:gem_version] = '1.191.0'
28259
28267
  Seahorse::Client::Request.new(handlers, context)
28260
28268
  end
28261
28269
 
@@ -904,6 +904,8 @@ module Aws::RDS
904
904
  CreateCustomDBEngineVersionMessage.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
905
905
  CreateCustomDBEngineVersionMessage.add_member(:manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "Manifest"))
906
906
  CreateCustomDBEngineVersionMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
907
+ CreateCustomDBEngineVersionMessage.add_member(:source_custom_db_engine_version_identifier, Shapes::ShapeRef.new(shape: String255, location_name: "SourceCustomDbEngineVersionIdentifier"))
908
+ CreateCustomDBEngineVersionMessage.add_member(:use_aws_provided_latest_image, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseAwsProvidedLatestImage"))
907
909
  CreateCustomDBEngineVersionMessage.struct_class = Types::CreateCustomDBEngineVersionMessage
908
910
 
909
911
  CreateDBClusterEndpointMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
@@ -1888,6 +1888,14 @@ module Aws::RDS
1888
1888
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
1889
1889
  # @return [Array<Types::Tag>]
1890
1890
  #
1891
+ # @!attribute [rw] source_custom_db_engine_version_identifier
1892
+ # Reserved for future use.
1893
+ # @return [String]
1894
+ #
1895
+ # @!attribute [rw] use_aws_provided_latest_image
1896
+ # Reserved for future use.
1897
+ # @return [Boolean]
1898
+ #
1891
1899
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersionMessage AWS API Documentation
1892
1900
  #
1893
1901
  class CreateCustomDBEngineVersionMessage < Struct.new(
@@ -1899,7 +1907,9 @@ module Aws::RDS
1899
1907
  :kms_key_id,
1900
1908
  :description,
1901
1909
  :manifest,
1902
- :tags)
1910
+ :tags,
1911
+ :source_custom_db_engine_version_identifier,
1912
+ :use_aws_provided_latest_image)
1903
1913
  SENSITIVE = []
1904
1914
  include Aws::Structure
1905
1915
  end
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.190.0'
81
+ GEM_VERSION = '1.191.0'
82
82
 
83
83
  end
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.190.0
4
+ version: 1.191.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-08-21 00:00:00.000000000 Z
11
+ date: 2023-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4