aws-sdk-lightsail 1.87.0 → 1.88.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: a2e3e030e0777cfbf5057affd8e4dcd61e5a1c5522428a47d06d8818dab33068
4
- data.tar.gz: 8d7f97ff7bdf16a6f7872a9547eea7d8dab0e7c7ef8220cfadc811f05e6e68db
3
+ metadata.gz: f5cd0efda301d1dead161c7c291a70897bb7a169800c36505c58199a538f3bc7
4
+ data.tar.gz: 531d97e731e00917d33e4fe1714d9aaeb25f9d188a2b995221e7707e8f1015c8
5
5
  SHA512:
6
- metadata.gz: 80e99750840282a27edf210349108d9384dd07927dd21071e8441bca7bfcbbf74dd9b14a6579d402cb8a35a58a3962f646777e32a58dfda75fa0bd6416d159c2
7
- data.tar.gz: 4e05d028e53fbbcd03aba39825b5c569d8f3a18461bcbc35bcf89fd787b931cecd9aefac680d48953df09417056be2db867f4872f6022a10fb563d74c8302d46
6
+ metadata.gz: e2252aae7331a1ad3074f1397608d700f1a0eab7d8b49650c6fd597ed81f76e0c27ad33794d89821d8a44537d39392313ba933c2a24cc080dca2f5215d3e9bc5
7
+ data.tar.gz: f6cafea8ed724c892fb973cfc3141560be67ad27f255d44cbb02739d496c7821b0bd48a8923a69730477e23b056c0fb1326ad2ac987e3c0f05b7ca23a99a48ac
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.88.0 (2024-02-13)
5
+ ------------------
6
+
7
+ * Feature - This release adds support to upgrade the major version of a database.
8
+
4
9
  1.87.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.87.0
1
+ 1.88.0
@@ -12174,6 +12174,18 @@ module Aws::Lightsail
12174
12174
  # Indicates the certificate that needs to be associated with the
12175
12175
  # database.
12176
12176
  #
12177
+ # @option params [String] :relational_database_blueprint_id
12178
+ # This parameter is used to update the major version of the database.
12179
+ # Enter the `blueprintId` for the major version that you want to update
12180
+ # to.
12181
+ #
12182
+ # Use the [GetRelationalDatabaseBlueprints][1] action to get a list of
12183
+ # available blueprint IDs.
12184
+ #
12185
+ #
12186
+ #
12187
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetRelationalDatabaseBlueprints.html
12188
+ #
12177
12189
  # @return [Types::UpdateRelationalDatabaseResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12178
12190
  #
12179
12191
  # * {Types::UpdateRelationalDatabaseResult#operations #operations} => Array<Types::Operation>
@@ -12191,6 +12203,7 @@ module Aws::Lightsail
12191
12203
  # publicly_accessible: false,
12192
12204
  # apply_immediately: false,
12193
12205
  # ca_certificate_identifier: "string",
12206
+ # relational_database_blueprint_id: "string",
12194
12207
  # })
12195
12208
  #
12196
12209
  # @example Response structure
@@ -12306,7 +12319,7 @@ module Aws::Lightsail
12306
12319
  params: params,
12307
12320
  config: config)
12308
12321
  context[:gem_name] = 'aws-sdk-lightsail'
12309
- context[:gem_version] = '1.87.0'
12322
+ context[:gem_version] = '1.88.0'
12310
12323
  Seahorse::Client::Request.new(handlers, context)
12311
12324
  end
12312
12325
 
@@ -3108,6 +3108,7 @@ module Aws::Lightsail
3108
3108
  UpdateRelationalDatabaseRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: boolean, location_name: "publiclyAccessible"))
3109
3109
  UpdateRelationalDatabaseRequest.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: boolean, location_name: "applyImmediately"))
3110
3110
  UpdateRelationalDatabaseRequest.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: string, location_name: "caCertificateIdentifier"))
3111
+ UpdateRelationalDatabaseRequest.add_member(:relational_database_blueprint_id, Shapes::ShapeRef.new(shape: string, location_name: "relationalDatabaseBlueprintId"))
3111
3112
  UpdateRelationalDatabaseRequest.struct_class = Types::UpdateRelationalDatabaseRequest
3112
3113
 
3113
3114
  UpdateRelationalDatabaseResult.add_member(:operations, Shapes::ShapeRef.new(shape: OperationList, location_name: "operations"))
@@ -14929,6 +14929,19 @@ module Aws::Lightsail
14929
14929
  # database.
14930
14930
  # @return [String]
14931
14931
  #
14932
+ # @!attribute [rw] relational_database_blueprint_id
14933
+ # This parameter is used to update the major version of the database.
14934
+ # Enter the `blueprintId` for the major version that you want to
14935
+ # update to.
14936
+ #
14937
+ # Use the [GetRelationalDatabaseBlueprints][1] action to get a list of
14938
+ # available blueprint IDs.
14939
+ #
14940
+ #
14941
+ #
14942
+ # [1]: https://docs.aws.amazon.com/lightsail/2016-11-28/api-reference/API_GetRelationalDatabaseBlueprints.html
14943
+ # @return [String]
14944
+ #
14932
14945
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/UpdateRelationalDatabaseRequest AWS API Documentation
14933
14946
  #
14934
14947
  class UpdateRelationalDatabaseRequest < Struct.new(
@@ -14941,7 +14954,8 @@ module Aws::Lightsail
14941
14954
  :disable_backup_retention,
14942
14955
  :publicly_accessible,
14943
14956
  :apply_immediately,
14944
- :ca_certificate_identifier)
14957
+ :ca_certificate_identifier,
14958
+ :relational_database_blueprint_id)
14945
14959
  SENSITIVE = [:master_user_password]
14946
14960
  include Aws::Structure
14947
14961
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lightsail/customizations'
52
52
  # @!group service
53
53
  module Aws::Lightsail
54
54
 
55
- GEM_VERSION = '1.87.0'
55
+ GEM_VERSION = '1.88.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -2278,7 +2278,8 @@ module Aws
2278
2278
  ?disable_backup_retention: bool,
2279
2279
  ?publicly_accessible: bool,
2280
2280
  ?apply_immediately: bool,
2281
- ?ca_certificate_identifier: ::String
2281
+ ?ca_certificate_identifier: ::String,
2282
+ ?relational_database_blueprint_id: ::String
2282
2283
  ) -> _UpdateRelationalDatabaseResponseSuccess
2283
2284
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRelationalDatabaseResponseSuccess
2284
2285
 
data/sig/types.rbs CHANGED
@@ -3129,6 +3129,7 @@ module Aws::Lightsail
3129
3129
  attr_accessor publicly_accessible: bool
3130
3130
  attr_accessor apply_immediately: bool
3131
3131
  attr_accessor ca_certificate_identifier: ::String
3132
+ attr_accessor relational_database_blueprint_id: ::String
3132
3133
  SENSITIVE: [:master_user_password]
3133
3134
  end
3134
3135
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lightsail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.87.0
4
+ version: 1.88.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core