aws-sdk-lightsail 1.66.0 → 1.67.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c7c57b35905eae9b25db269021c6e3cae6f6dc447ab40ad265721a37cef3465
4
- data.tar.gz: 38f41a6a8625e04875901c48681665897b336144412cef9290a4647976979e94
3
+ metadata.gz: 9df6320891c639b59b62ef012a82cdd8915a3367d235e81695154af187d2d8e1
4
+ data.tar.gz: 4d8828cb231ac186d77beb31708761d868e1e622d4dfdeff8f2eaea10add12c1
5
5
  SHA512:
6
- metadata.gz: e61b6533872e430dccd5c6944de1eea39533127b766d8f45a3dec76dbe912c69a9487f88780544791ee60fecda748186ef15e14d3f46143c8e94b32cacdb3d3c
7
- data.tar.gz: 94c7ddcc21ae5232d9e75aa96887a8e951b76f77bf3578610000aaeeb41365fc0ca73c8096c3b9102137dd319e6531fd9722758a316da8dff559d7375bf2aecb
6
+ metadata.gz: 8c6b5a6d1845a543e1de778420f81c110bb549041484e91607d6daf0b4fd514706d0ed2d96aa5b81d861cf8fed261fd151163deaeaba4b5ed2409bcb1bbd6072
7
+ data.tar.gz: 564ca3cd63d7082465e85b965fdbe967163d99e5f62b89beefddb88c4f28ade18e107a017cd54fe6b3c2f49673a7274f387f02d08ea1597edae3595799b05c6b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2022-05-12)
5
+ ------------------
6
+
7
+ * Feature - This release adds support to include inactive database bundles in the response of the GetRelationalDatabaseBundles request.
8
+
4
9
  1.66.0 (2022-05-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.67.0
@@ -5372,8 +5372,8 @@ module Aws::Lightsail
5372
5372
  # </note>
5373
5373
  #
5374
5374
  # @option params [Boolean] :include_inactive
5375
- # A Boolean value indicating whether to include inactive results in your
5376
- # request.
5375
+ # A Boolean value that indicates whether to include inactive
5376
+ # (unavailable) blueprints in the response of your request.
5377
5377
  #
5378
5378
  # @option params [String] :page_token
5379
5379
  # The token to advance to the next page of results from your request.
@@ -5479,7 +5479,7 @@ module Aws::Lightsail
5479
5479
  #
5480
5480
  # @option params [Boolean] :include_inactive
5481
5481
  # A Boolean value that indicates whether to include inactive
5482
- # (unavailable) bundles in the response.
5482
+ # (unavailable) bundles in the response of your request.
5483
5483
  #
5484
5484
  # @return [Types::GetBucketBundlesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5485
5485
  #
@@ -5727,12 +5727,20 @@ module Aws::Lightsail
5727
5727
  req.send_request(options)
5728
5728
  end
5729
5729
 
5730
- # Returns the list of bundles that are available for purchase. A bundle
5731
- # describes the specs for your virtual private server (or *instance*).
5730
+ # Returns the bundles that you can apply to an Amazon Lightsail instance
5731
+ # when you create it.
5732
+ #
5733
+ # A bundle describes the specifications of an instance, such as the
5734
+ # monthly cost, amount of memory, the number of vCPUs, amount of storage
5735
+ # space, and monthly network data transfer quota.
5736
+ #
5737
+ # <note markdown="1"> Bundles are referred to as *instance plans* in the Lightsail console.
5738
+ #
5739
+ # </note>
5732
5740
  #
5733
5741
  # @option params [Boolean] :include_inactive
5734
- # A Boolean value that indicates whether to include inactive bundle
5735
- # results in your request.
5742
+ # A Boolean value that indicates whether to include inactive
5743
+ # (unavailable) bundles in the response of your request.
5736
5744
  #
5737
5745
  # @option params [String] :page_token
5738
5746
  # The token to advance to the next page of results from your request.
@@ -8709,6 +8717,10 @@ module Aws::Lightsail
8709
8717
  # next page token that you can specify as the page token in a subsequent
8710
8718
  # request.
8711
8719
  #
8720
+ # @option params [Boolean] :include_inactive
8721
+ # A Boolean value that indicates whether to include inactive
8722
+ # (unavailable) bundles in the response of your request.
8723
+ #
8712
8724
  # @return [Types::GetRelationalDatabaseBundlesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8713
8725
  #
8714
8726
  # * {Types::GetRelationalDatabaseBundlesResult#bundles #bundles} => Array&lt;Types::RelationalDatabaseBundle&gt;
@@ -8718,6 +8730,7 @@ module Aws::Lightsail
8718
8730
  #
8719
8731
  # resp = client.get_relational_database_bundles({
8720
8732
  # page_token: "string",
8733
+ # include_inactive: false,
8721
8734
  # })
8722
8735
  #
8723
8736
  # @example Response structure
@@ -11671,7 +11684,7 @@ module Aws::Lightsail
11671
11684
  params: params,
11672
11685
  config: config)
11673
11686
  context[:gem_name] = 'aws-sdk-lightsail'
11674
- context[:gem_version] = '1.66.0'
11687
+ context[:gem_version] = '1.67.0'
11675
11688
  Seahorse::Client::Request.new(handlers, context)
11676
11689
  end
11677
11690
 
@@ -1977,6 +1977,7 @@ module Aws::Lightsail
1977
1977
  GetRelationalDatabaseBlueprintsResult.struct_class = Types::GetRelationalDatabaseBlueprintsResult
1978
1978
 
1979
1979
  GetRelationalDatabaseBundlesRequest.add_member(:page_token, Shapes::ShapeRef.new(shape: string, location_name: "pageToken"))
1980
+ GetRelationalDatabaseBundlesRequest.add_member(:include_inactive, Shapes::ShapeRef.new(shape: boolean, location_name: "includeInactive"))
1980
1981
  GetRelationalDatabaseBundlesRequest.struct_class = Types::GetRelationalDatabaseBundlesRequest
1981
1982
 
1982
1983
  GetRelationalDatabaseBundlesResult.add_member(:bundles, Shapes::ShapeRef.new(shape: RelationalDatabaseBundleList, location_name: "bundles"))
@@ -7134,8 +7134,8 @@ module Aws::Lightsail
7134
7134
  # }
7135
7135
  #
7136
7136
  # @!attribute [rw] include_inactive
7137
- # A Boolean value indicating whether to include inactive results in
7138
- # your request.
7137
+ # A Boolean value that indicates whether to include inactive
7138
+ # (unavailable) blueprints in the response of your request.
7139
7139
  # @return [Boolean]
7140
7140
  #
7141
7141
  # @!attribute [rw] page_token
@@ -7221,7 +7221,7 @@ module Aws::Lightsail
7221
7221
  #
7222
7222
  # @!attribute [rw] include_inactive
7223
7223
  # A Boolean value that indicates whether to include inactive
7224
- # (unavailable) bundles in the response.
7224
+ # (unavailable) bundles in the response of your request.
7225
7225
  # @return [Boolean]
7226
7226
  #
7227
7227
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetBucketBundlesRequest AWS API Documentation
@@ -7470,8 +7470,8 @@ module Aws::Lightsail
7470
7470
  # }
7471
7471
  #
7472
7472
  # @!attribute [rw] include_inactive
7473
- # A Boolean value that indicates whether to include inactive bundle
7474
- # results in your request.
7473
+ # A Boolean value that indicates whether to include inactive
7474
+ # (unavailable) bundles in the response of your request.
7475
7475
  # @return [Boolean]
7476
7476
  #
7477
7477
  # @!attribute [rw] page_token
@@ -9805,6 +9805,7 @@ module Aws::Lightsail
9805
9805
  #
9806
9806
  # {
9807
9807
  # page_token: "string",
9808
+ # include_inactive: false,
9808
9809
  # }
9809
9810
  #
9810
9811
  # @!attribute [rw] page_token
@@ -9816,10 +9817,16 @@ module Aws::Lightsail
9816
9817
  # specify as the page token in a subsequent request.
9817
9818
  # @return [String]
9818
9819
  #
9820
+ # @!attribute [rw] include_inactive
9821
+ # A Boolean value that indicates whether to include inactive
9822
+ # (unavailable) bundles in the response of your request.
9823
+ # @return [Boolean]
9824
+ #
9819
9825
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseBundlesRequest AWS API Documentation
9820
9826
  #
9821
9827
  class GetRelationalDatabaseBundlesRequest < Struct.new(
9822
- :page_token)
9828
+ :page_token,
9829
+ :include_inactive)
9823
9830
  SENSITIVE = []
9824
9831
  include Aws::Structure
9825
9832
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-lightsail/customizations'
48
48
  # @!group service
49
49
  module Aws::Lightsail
50
50
 
51
- GEM_VERSION = '1.66.0'
51
+ GEM_VERSION = '1.67.0'
52
52
 
53
53
  end
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.66.0
4
+ version: 1.67.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: 2022-05-04 00:00:00.000000000 Z
11
+ date: 2022-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core