@aws-sdk/client-accessanalyzer 3.354.0 → 3.357.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.
@@ -647,7 +647,7 @@ const de_ApplyArchiveRuleCommand = async (output, context) => {
647
647
  const contents = (0, smithy_client_1.map)({
648
648
  $metadata: deserializeMetadata(output),
649
649
  });
650
- await collectBody(output.body, context);
650
+ await (0, smithy_client_1.collectBody)(output.body, context);
651
651
  return contents;
652
652
  };
653
653
  exports.de_ApplyArchiveRuleCommand = de_ApplyArchiveRuleCommand;
@@ -689,7 +689,7 @@ const de_CancelPolicyGenerationCommand = async (output, context) => {
689
689
  const contents = (0, smithy_client_1.map)({
690
690
  $metadata: deserializeMetadata(output),
691
691
  });
692
- await collectBody(output.body, context);
692
+ await (0, smithy_client_1.collectBody)(output.body, context);
693
693
  return contents;
694
694
  };
695
695
  exports.de_CancelPolicyGenerationCommand = de_CancelPolicyGenerationCommand;
@@ -829,7 +829,7 @@ const de_CreateArchiveRuleCommand = async (output, context) => {
829
829
  const contents = (0, smithy_client_1.map)({
830
830
  $metadata: deserializeMetadata(output),
831
831
  });
832
- await collectBody(output.body, context);
832
+ await (0, smithy_client_1.collectBody)(output.body, context);
833
833
  return contents;
834
834
  };
835
835
  exports.de_CreateArchiveRuleCommand = de_CreateArchiveRuleCommand;
@@ -877,7 +877,7 @@ const de_DeleteAnalyzerCommand = async (output, context) => {
877
877
  const contents = (0, smithy_client_1.map)({
878
878
  $metadata: deserializeMetadata(output),
879
879
  });
880
- await collectBody(output.body, context);
880
+ await (0, smithy_client_1.collectBody)(output.body, context);
881
881
  return contents;
882
882
  };
883
883
  exports.de_DeleteAnalyzerCommand = de_DeleteAnalyzerCommand;
@@ -919,7 +919,7 @@ const de_DeleteArchiveRuleCommand = async (output, context) => {
919
919
  const contents = (0, smithy_client_1.map)({
920
920
  $metadata: deserializeMetadata(output),
921
921
  });
922
- await collectBody(output.body, context);
922
+ await (0, smithy_client_1.collectBody)(output.body, context);
923
923
  return contents;
924
924
  };
925
925
  exports.de_DeleteArchiveRuleCommand = de_DeleteArchiveRuleCommand;
@@ -1653,7 +1653,7 @@ const de_StartResourceScanCommand = async (output, context) => {
1653
1653
  const contents = (0, smithy_client_1.map)({
1654
1654
  $metadata: deserializeMetadata(output),
1655
1655
  });
1656
- await collectBody(output.body, context);
1656
+ await (0, smithy_client_1.collectBody)(output.body, context);
1657
1657
  return contents;
1658
1658
  };
1659
1659
  exports.de_StartResourceScanCommand = de_StartResourceScanCommand;
@@ -1695,7 +1695,7 @@ const de_TagResourceCommand = async (output, context) => {
1695
1695
  const contents = (0, smithy_client_1.map)({
1696
1696
  $metadata: deserializeMetadata(output),
1697
1697
  });
1698
- await collectBody(output.body, context);
1698
+ await (0, smithy_client_1.collectBody)(output.body, context);
1699
1699
  return contents;
1700
1700
  };
1701
1701
  exports.de_TagResourceCommand = de_TagResourceCommand;
@@ -1737,7 +1737,7 @@ const de_UntagResourceCommand = async (output, context) => {
1737
1737
  const contents = (0, smithy_client_1.map)({
1738
1738
  $metadata: deserializeMetadata(output),
1739
1739
  });
1740
- await collectBody(output.body, context);
1740
+ await (0, smithy_client_1.collectBody)(output.body, context);
1741
1741
  return contents;
1742
1742
  };
1743
1743
  exports.de_UntagResourceCommand = de_UntagResourceCommand;
@@ -1779,7 +1779,7 @@ const de_UpdateArchiveRuleCommand = async (output, context) => {
1779
1779
  const contents = (0, smithy_client_1.map)({
1780
1780
  $metadata: deserializeMetadata(output),
1781
1781
  });
1782
- await collectBody(output.body, context);
1782
+ await (0, smithy_client_1.collectBody)(output.body, context);
1783
1783
  return contents;
1784
1784
  };
1785
1785
  exports.de_UpdateArchiveRuleCommand = de_UpdateArchiveRuleCommand;
@@ -1821,7 +1821,7 @@ const de_UpdateFindingsCommand = async (output, context) => {
1821
1821
  const contents = (0, smithy_client_1.map)({
1822
1822
  $metadata: deserializeMetadata(output),
1823
1823
  });
1824
- await collectBody(output.body, context);
1824
+ await (0, smithy_client_1.collectBody)(output.body, context);
1825
1825
  return contents;
1826
1826
  };
1827
1827
  exports.de_UpdateFindingsCommand = de_UpdateFindingsCommand;
@@ -2220,13 +2220,7 @@ const deserializeMetadata = (output) => ({
2220
2220
  extendedRequestId: output.headers["x-amz-id-2"],
2221
2221
  cfId: output.headers["x-amz-cf-id"],
2222
2222
  });
2223
- const collectBody = (streamBody = new Uint8Array(), context) => {
2224
- if (streamBody instanceof Uint8Array) {
2225
- return Promise.resolve(streamBody);
2226
- }
2227
- return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
2228
- };
2229
- const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
2223
+ const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then((body) => context.utf8Encoder(body));
2230
2224
  const isSerializableHeaderValue = (value) => value !== undefined &&
2231
2225
  value !== null &&
2232
2226
  value !== "" &&
@@ -1,4 +1,4 @@
1
- import { _json, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, resolvedPath as __resolvedPath, strictParseInt32 as __strictParseInt32, take, withBaseException, } from "@aws-sdk/smithy-client";
1
+ import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, resolvedPath as __resolvedPath, strictParseInt32 as __strictParseInt32, take, withBaseException, } from "@aws-sdk/smithy-client";
2
2
  import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
3
3
  import { v4 as generateIdempotencyToken } from "uuid";
4
4
  import { AccessAnalyzerServiceException as __BaseException } from "../models/AccessAnalyzerServiceException";
@@ -2160,12 +2160,6 @@ const deserializeMetadata = (output) => ({
2160
2160
  extendedRequestId: output.headers["x-amz-id-2"],
2161
2161
  cfId: output.headers["x-amz-cf-id"],
2162
2162
  });
2163
- const collectBody = (streamBody = new Uint8Array(), context) => {
2164
- if (streamBody instanceof Uint8Array) {
2165
- return Promise.resolve(streamBody);
2166
- }
2167
- return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
2168
- };
2169
2163
  const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
2170
2164
  const isSerializableHeaderValue = (value) => value !== undefined &&
2171
2165
  value !== null &&
@@ -101,7 +101,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
101
101
  */
102
102
  runtime?: string;
103
103
  /**
104
- * Disable dyanamically changing the endpoint of the client based on the hostPrefix
104
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
105
105
  * trait of an operation.
106
106
  */
107
107
  disableHostPrefix?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-accessanalyzer",
3
3
  "description": "AWS SDK for JavaScript Accessanalyzer Client for Node.js, Browser and React Native",
4
- "version": "3.354.0",
4
+ "version": "3.357.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,36 +21,36 @@
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.354.0",
25
- "@aws-sdk/config-resolver": "3.354.0",
26
- "@aws-sdk/credential-provider-node": "3.354.0",
27
- "@aws-sdk/fetch-http-handler": "3.353.0",
28
- "@aws-sdk/hash-node": "3.347.0",
29
- "@aws-sdk/invalid-dependency": "3.347.0",
30
- "@aws-sdk/middleware-content-length": "3.347.0",
31
- "@aws-sdk/middleware-endpoint": "3.347.0",
32
- "@aws-sdk/middleware-host-header": "3.347.0",
33
- "@aws-sdk/middleware-logger": "3.347.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.347.0",
35
- "@aws-sdk/middleware-retry": "3.354.0",
36
- "@aws-sdk/middleware-serde": "3.347.0",
37
- "@aws-sdk/middleware-signing": "3.354.0",
38
- "@aws-sdk/middleware-stack": "3.347.0",
39
- "@aws-sdk/middleware-user-agent": "3.352.0",
40
- "@aws-sdk/node-config-provider": "3.354.0",
41
- "@aws-sdk/node-http-handler": "3.350.0",
42
- "@aws-sdk/smithy-client": "3.347.0",
43
- "@aws-sdk/types": "3.347.0",
44
- "@aws-sdk/url-parser": "3.347.0",
24
+ "@aws-sdk/client-sts": "3.357.0",
25
+ "@aws-sdk/config-resolver": "3.357.0",
26
+ "@aws-sdk/credential-provider-node": "3.357.0",
27
+ "@aws-sdk/fetch-http-handler": "3.357.0",
28
+ "@aws-sdk/hash-node": "3.357.0",
29
+ "@aws-sdk/invalid-dependency": "3.357.0",
30
+ "@aws-sdk/middleware-content-length": "3.357.0",
31
+ "@aws-sdk/middleware-endpoint": "3.357.0",
32
+ "@aws-sdk/middleware-host-header": "3.357.0",
33
+ "@aws-sdk/middleware-logger": "3.357.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.357.0",
35
+ "@aws-sdk/middleware-retry": "3.357.0",
36
+ "@aws-sdk/middleware-serde": "3.357.0",
37
+ "@aws-sdk/middleware-signing": "3.357.0",
38
+ "@aws-sdk/middleware-stack": "3.357.0",
39
+ "@aws-sdk/middleware-user-agent": "3.357.0",
40
+ "@aws-sdk/node-config-provider": "3.357.0",
41
+ "@aws-sdk/node-http-handler": "3.357.0",
42
+ "@aws-sdk/smithy-client": "3.357.0",
43
+ "@aws-sdk/types": "3.357.0",
44
+ "@aws-sdk/url-parser": "3.357.0",
45
45
  "@aws-sdk/util-base64": "3.310.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.310.0",
47
47
  "@aws-sdk/util-body-length-node": "3.310.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.353.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.354.0",
50
- "@aws-sdk/util-endpoints": "3.352.0",
51
- "@aws-sdk/util-retry": "3.347.0",
52
- "@aws-sdk/util-user-agent-browser": "3.347.0",
53
- "@aws-sdk/util-user-agent-node": "3.354.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.357.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.357.0",
50
+ "@aws-sdk/util-endpoints": "3.357.0",
51
+ "@aws-sdk/util-retry": "3.357.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.357.0",
53
+ "@aws-sdk/util-user-agent-node": "3.357.0",
54
54
  "@aws-sdk/util-utf8": "3.310.0",
55
55
  "@smithy/protocol-http": "^1.0.1",
56
56
  "@smithy/types": "^1.0.0",