@aws-sdk/client-lightsail 3.84.0 → 3.90.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.90.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.89.0...v3.90.0) (2022-05-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-lightsail:** This release adds support to include inactive database bundles in the response of the GetRelationalDatabaseBundles request. ([2ed03c4](https://github.com/aws/aws-sdk-js-v3/commit/2ed03c4609739967b0bb191639cae41ff01a168c))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.87.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.86.0...v3.87.0) (2022-05-09)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-lightsail
20
+
21
+
22
+
23
+
24
+
25
+ # [3.85.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.84.0...v3.85.0) (2022-05-05)
26
+
27
+
28
+ ### Features
29
+
30
+ * **codegen:** add codegen indicator comment to all generated files ([#3592](https://github.com/aws/aws-sdk-js-v3/issues/3592)) ([567a530](https://github.com/aws/aws-sdk-js-v3/commit/567a5304232fcc1f9db3fd3df545054de8336b4b))
31
+
32
+
33
+
34
+
35
+
6
36
  # [3.84.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.83.0...v3.84.0) (2022-05-04)
7
37
 
8
38
  **Note:** Version bump only for package @aws-sdk/client-lightsail
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ <!-- generated file, do not edit directly -->
2
+
1
3
  # @aws-sdk/client-lightsail
2
4
 
3
5
  [![NPM version](https://img.shields.io/npm/v/@aws-sdk/client-lightsail/latest.svg)](https://www.npmjs.com/package/@aws-sdk/client-lightsail)
@@ -10823,6 +10823,8 @@ const serializeAws_json1_1GetRelationalDatabaseBlueprintsRequest = (input, conte
10823
10823
  };
10824
10824
  const serializeAws_json1_1GetRelationalDatabaseBundlesRequest = (input, context) => {
10825
10825
  return {
10826
+ ...(input.includeInactive !== undefined &&
10827
+ input.includeInactive !== null && { includeInactive: input.includeInactive }),
10826
10828
  ...(input.pageToken !== undefined && input.pageToken !== null && { pageToken: input.pageToken }),
10827
10829
  };
10828
10830
  };
@@ -13522,7 +13522,8 @@ var serializeAws_json1_1GetRelationalDatabaseBlueprintsRequest = function (input
13522
13522
  return __assign({}, (input.pageToken !== undefined && input.pageToken !== null && { pageToken: input.pageToken }));
13523
13523
  };
13524
13524
  var serializeAws_json1_1GetRelationalDatabaseBundlesRequest = function (input, context) {
13525
- return __assign({}, (input.pageToken !== undefined && input.pageToken !== null && { pageToken: input.pageToken }));
13525
+ return __assign(__assign({}, (input.includeInactive !== undefined &&
13526
+ input.includeInactive !== null && { includeInactive: input.includeInactive })), (input.pageToken !== undefined && input.pageToken !== null && { pageToken: input.pageToken }));
13526
13527
  };
13527
13528
  var serializeAws_json1_1GetRelationalDatabaseEventsRequest = function (input, context) {
13528
13529
  return __assign(__assign(__assign({}, (input.durationInMinutes !== undefined &&
@@ -928,8 +928,17 @@ export declare class Lightsail extends LightsailClient {
928
928
  getBuckets(args: GetBucketsCommandInput, cb: (err: any, data?: GetBucketsCommandOutput) => void): void;
929
929
  getBuckets(args: GetBucketsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBucketsCommandOutput) => void): void;
930
930
  /**
931
- * <p>Returns the list of bundles that are available for purchase. A bundle describes the specs
932
- * for your virtual private server (or <i>instance</i>).</p>
931
+ * <p>Returns the bundles that you can apply to an Amazon Lightsail instance when you create
932
+ * it.</p>
933
+ *
934
+ * <p>A bundle describes the specifications of an instance, such as the monthly cost, amount of
935
+ * memory, the number of vCPUs, amount of storage space, and monthly network data transfer
936
+ * quota.</p>
937
+ *
938
+ * <note>
939
+ * <p>Bundles are referred to as <i>instance plans</i> in the Lightsail
940
+ * console.</p>
941
+ * </note>
933
942
  */
934
943
  getBundles(args: GetBundlesCommandInput, options?: __HttpHandlerOptions): Promise<GetBundlesCommandOutput>;
935
944
  getBundles(args: GetBundlesCommandInput, cb: (err: any, data?: GetBundlesCommandOutput) => void): void;
@@ -7,8 +7,17 @@ export interface GetBundlesCommandInput extends GetBundlesRequest {
7
7
  export interface GetBundlesCommandOutput extends GetBundlesResult, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns the list of bundles that are available for purchase. A bundle describes the specs
11
- * for your virtual private server (or <i>instance</i>).</p>
10
+ * <p>Returns the bundles that you can apply to an Amazon Lightsail instance when you create
11
+ * it.</p>
12
+ *
13
+ * <p>A bundle describes the specifications of an instance, such as the monthly cost, amount of
14
+ * memory, the number of vCPUs, amount of storage space, and monthly network data transfer
15
+ * quota.</p>
16
+ *
17
+ * <note>
18
+ * <p>Bundles are referred to as <i>instance plans</i> in the Lightsail
19
+ * console.</p>
20
+ * </note>
12
21
  * @example
13
22
  * Use a bare-bones client and the command you need to make an API call.
14
23
  * ```javascript
@@ -6822,7 +6822,8 @@ export declare namespace GetAutoSnapshotsResult {
6822
6822
  }
6823
6823
  export interface GetBlueprintsRequest {
6824
6824
  /**
6825
- * <p>A Boolean value indicating whether to include inactive results in your request.</p>
6825
+ * <p>A Boolean value that indicates whether to include inactive (unavailable) blueprints in the
6826
+ * response of your request.</p>
6826
6827
  */
6827
6828
  includeInactive?: boolean;
6828
6829
  /**
@@ -6886,7 +6887,7 @@ export declare namespace GetBucketAccessKeysResult {
6886
6887
  export interface GetBucketBundlesRequest {
6887
6888
  /**
6888
6889
  * <p>A Boolean value that indicates whether to include inactive (unavailable) bundles in the
6889
- * response.</p>
6890
+ * response of your request.</p>
6890
6891
  */
6891
6892
  includeInactive?: boolean;
6892
6893
  }
@@ -7129,8 +7130,8 @@ export declare namespace GetBucketsResult {
7129
7130
  }
7130
7131
  export interface GetBundlesRequest {
7131
7132
  /**
7132
- * <p>A Boolean value that indicates whether to include inactive bundle results in your
7133
- * request.</p>
7133
+ * <p>A Boolean value that indicates whether to include inactive (unavailable) bundles in the
7134
+ * response of your request.</p>
7134
7135
  */
7135
7136
  includeInactive?: boolean;
7136
7137
  /**
@@ -2858,6 +2858,11 @@ export interface GetRelationalDatabaseBundlesRequest {
2858
2858
  * as the page token in a subsequent request.</p>
2859
2859
  */
2860
2860
  pageToken?: string;
2861
+ /**
2862
+ * <p>A Boolean value that indicates whether to include inactive (unavailable) bundles in the
2863
+ * response of your request.</p>
2864
+ */
2865
+ includeInactive?: boolean;
2861
2866
  }
2862
2867
  export declare namespace GetRelationalDatabaseBundlesRequest {
2863
2868
  /**
@@ -1064,6 +1064,8 @@ export declare namespace GetRelationalDatabaseBlueprintsResult {
1064
1064
  export interface GetRelationalDatabaseBundlesRequest {
1065
1065
 
1066
1066
  pageToken?: string;
1067
+
1068
+ includeInactive?: boolean;
1067
1069
  }
1068
1070
  export declare namespace GetRelationalDatabaseBundlesRequest {
1069
1071
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lightsail",
3
3
  "description": "AWS SDK for JavaScript Lightsail Client for Node.js, Browser and React Native",
4
- "version": "3.84.0",
4
+ "version": "3.90.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.82.0",
21
+ "@aws-sdk/client-sts": "3.87.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.82.0",
23
+ "@aws-sdk/credential-provider-node": "3.87.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
@@ -35,15 +35,15 @@
35
35
  "@aws-sdk/node-config-provider": "3.80.0",
36
36
  "@aws-sdk/node-http-handler": "3.82.0",
37
37
  "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.78.0",
38
+ "@aws-sdk/smithy-client": "3.85.0",
39
39
  "@aws-sdk/types": "3.78.0",
40
40
  "@aws-sdk/url-parser": "3.78.0",
41
41
  "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.78.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.81.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.85.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.85.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.78.0",
48
48
  "@aws-sdk/util-user-agent-node": "3.80.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",