@aws-sdk/client-lightsail 3.348.0 → 3.352.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.
@@ -9988,6 +9988,7 @@ const de_GetBundlesResult = (output, context) => {
9988
9988
  const de_GetCertificatesResult = (output, context) => {
9989
9989
  return (0, smithy_client_1.take)(output, {
9990
9990
  certificates: (_) => de_CertificateSummaryList(_, context),
9991
+ nextPageToken: smithy_client_1.expectString,
9991
9992
  });
9992
9993
  };
9993
9994
  const de_GetCloudFormationStackRecordsResult = (output, context) => {
@@ -9661,6 +9661,7 @@ const de_GetBundlesResult = (output, context) => {
9661
9661
  const de_GetCertificatesResult = (output, context) => {
9662
9662
  return take(output, {
9663
9663
  certificates: (_) => de_CertificateSummaryList(_, context),
9664
+ nextPageToken: __expectString,
9664
9665
  });
9665
9666
  };
9666
9667
  const de_GetCloudFormationStackRecordsResult = (output, context) => {
@@ -25,7 +25,7 @@ export interface GetCertificatesCommandOutput extends GetCertificatesResult, __M
25
25
  * @public
26
26
  * <p>Returns information about one or more Amazon Lightsail SSL/TLS certificates.</p>
27
27
  * <note>
28
- * <p>To get a summary of a certificate, ommit <code>includeCertificateDetails</code> from
28
+ * <p>To get a summary of a certificate, omit <code>includeCertificateDetails</code> from
29
29
  * your request. The response will include only the certificate Amazon Resource Name (ARN),
30
30
  * certificate name, domain name, and tags.</p>
31
31
  * </note>
@@ -41,6 +41,7 @@ export interface GetCertificatesCommandOutput extends GetCertificatesResult, __M
41
41
  * ],
42
42
  * includeCertificateDetails: true || false,
43
43
  * certificateName: "STRING_VALUE",
44
+ * pageToken: "STRING_VALUE",
44
45
  * };
45
46
  * const command = new GetCertificatesCommand(input);
46
47
  * const response = await client.send(command);
@@ -121,6 +122,7 @@ export interface GetCertificatesCommandOutput extends GetCertificatesResult, __M
121
122
  * // ],
122
123
  * // },
123
124
  * // ],
125
+ * // nextPageToken: "STRING_VALUE",
124
126
  * // };
125
127
  *
126
128
  * ```
@@ -2340,7 +2340,7 @@ export type CertificateStatus = (typeof CertificateStatus)[keyof typeof Certific
2340
2340
  * @public
2341
2341
  * <p>Describes the full details of an Amazon Lightsail SSL/TLS certificate.</p>
2342
2342
  * <note>
2343
- * <p>To get a summary of a certificate, use the <code>GetCertificates</code> action and ommit
2343
+ * <p>To get a summary of a certificate, use the <code>GetCertificates</code> action and omit
2344
2344
  * <code>includeCertificateDetails</code> from your request. The response will include only
2345
2345
  * the certificate Amazon Resource Name (ARN), certificate name, domain name, and tags.</p>
2346
2346
  * </note>
@@ -7257,6 +7257,11 @@ export interface GetCertificatesRequest {
7257
7257
  * Region where the request is made.</p>
7258
7258
  */
7259
7259
  certificateName?: string;
7260
+ /**
7261
+ * <p>The token to advance to the next page of results from your request.</p>
7262
+ * <p>To get a page token, perform an initial <code>GetCertificates</code> request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.</p>
7263
+ */
7264
+ pageToken?: string;
7260
7265
  }
7261
7266
  /**
7262
7267
  * @public
@@ -7266,6 +7271,10 @@ export interface GetCertificatesResult {
7266
7271
  * <p>An object that describes certificates.</p>
7267
7272
  */
7268
7273
  certificates?: CertificateSummary[];
7274
+ /**
7275
+ * <p>If <code>NextPageToken</code> is returned there are more results available. The value of <code>NextPageToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.</p>
7276
+ */
7277
+ nextPageToken?: string;
7269
7278
  }
7270
7279
  /**
7271
7280
  * @public
@@ -16,7 +16,7 @@ export interface GetCostEstimateRequest {
16
16
  * </li>
17
17
  * <li>
18
18
  * <p>Specified in the Unix time format.</p>
19
- * <p>For example, if you wish to use a start time of October 1, 2018, at 8 PM UTC, specify
19
+ * <p>For example, if you want to use a start time of October 1, 2018, at 8 PM UTC, specify
20
20
  * <code>1538424000</code> as the start time.</p>
21
21
  * </li>
22
22
  * </ul>
@@ -32,7 +32,7 @@ export interface GetCostEstimateRequest {
32
32
  * </li>
33
33
  * <li>
34
34
  * <p>Specified in the Unix time format.</p>
35
- * <p>For example, if you wish to use an end time of October 1, 2018, at 9 PM UTC, specify
35
+ * <p>For example, if you want to use an end time of October 1, 2018, at 9 PM UTC, specify
36
36
  * <code>1538427600</code> as the end time.</p>
37
37
  * </li>
38
38
  * </ul>
@@ -1770,9 +1770,11 @@ export interface GetCertificatesRequest {
1770
1770
  certificateStatuses?: (CertificateStatus | string)[];
1771
1771
  includeCertificateDetails?: boolean;
1772
1772
  certificateName?: string;
1773
+ pageToken?: string;
1773
1774
  }
1774
1775
  export interface GetCertificatesResult {
1775
1776
  certificates?: CertificateSummary[];
1777
+ nextPageToken?: string;
1776
1778
  }
1777
1779
  export interface GetCloudFormationStackRecordsRequest {
1778
1780
  pageToken?: string;
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.348.0",
4
+ "version": "3.352.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.348.0",
24
+ "@aws-sdk/client-sts": "3.352.0",
25
25
  "@aws-sdk/config-resolver": "3.347.0",
26
- "@aws-sdk/credential-provider-node": "3.348.0",
26
+ "@aws-sdk/credential-provider-node": "3.352.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.347.0",
28
28
  "@aws-sdk/hash-node": "3.347.0",
29
29
  "@aws-sdk/invalid-dependency": "3.347.0",
@@ -36,9 +36,9 @@
36
36
  "@aws-sdk/middleware-serde": "3.347.0",
37
37
  "@aws-sdk/middleware-signing": "3.347.0",
38
38
  "@aws-sdk/middleware-stack": "3.347.0",
39
- "@aws-sdk/middleware-user-agent": "3.347.0",
39
+ "@aws-sdk/middleware-user-agent": "3.352.0",
40
40
  "@aws-sdk/node-config-provider": "3.347.0",
41
- "@aws-sdk/node-http-handler": "3.348.0",
41
+ "@aws-sdk/node-http-handler": "3.350.0",
42
42
  "@aws-sdk/smithy-client": "3.347.0",
43
43
  "@aws-sdk/types": "3.347.0",
44
44
  "@aws-sdk/url-parser": "3.347.0",
@@ -47,7 +47,7 @@
47
47
  "@aws-sdk/util-body-length-node": "3.310.0",
48
48
  "@aws-sdk/util-defaults-mode-browser": "3.347.0",
49
49
  "@aws-sdk/util-defaults-mode-node": "3.347.0",
50
- "@aws-sdk/util-endpoints": "3.347.0",
50
+ "@aws-sdk/util-endpoints": "3.352.0",
51
51
  "@aws-sdk/util-retry": "3.347.0",
52
52
  "@aws-sdk/util-user-agent-browser": "3.347.0",
53
53
  "@aws-sdk/util-user-agent-node": "3.347.0",