aws-sdk-lightsail 1.86.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lightsail/client.rb +14 -1
- data/lib/aws-sdk-lightsail/client_api.rb +1 -0
- data/lib/aws-sdk-lightsail/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-lightsail/types.rb +15 -1
- data/lib/aws-sdk-lightsail.rb +1 -1
- data/sig/client.rbs +2310 -0
- data/sig/errors.rbs +58 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +3141 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5cd0efda301d1dead161c7c291a70897bb7a169800c36505c58199a538f3bc7
|
4
|
+
data.tar.gz: 531d97e731e00917d33e4fe1714d9aaeb25f9d188a2b995221e7707e8f1015c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2252aae7331a1ad3074f1397608d700f1a0eab7d8b49650c6fd597ed81f76e0c27ad33794d89821d8a44537d39392313ba933c2a24cc080dca2f5215d3e9bc5
|
7
|
+
data.tar.gz: f6cafea8ed724c892fb973cfc3141560be67ad27f255d44cbb02739d496c7821b0bd48a8923a69730477e23b056c0fb1326ad2ac987e3c0f05b7ca23a99a48ac
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.87.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.86.0 (2024-01-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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"))
|
@@ -14,6 +14,7 @@ module Aws::Lightsail
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Lightsail::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -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
|