@aws-sdk/client-sagemaker-runtime-http2 3.1076.0 → 3.1077.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/dist-cjs/index.js CHANGED
@@ -13,9 +13,10 @@ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
13
13
  const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
14
14
  const { defaultProvider } = require("@aws-sdk/credential-provider-node");
15
15
  const { eventStreamPayloadHandlerProvider } = require("@aws-sdk/eventstream-handler-node");
16
- const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
16
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
17
17
  const { streamCollector, NodeHttp2Handler } = require("@smithy/node-http-handler");
18
18
  const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
19
+ const { Sha256 } = require("@smithy/core/checksum");
19
20
 
20
21
  const defaultSageMakerRuntimeHTTP2HttpAuthSchemeParametersProvider = async (config, context, input) => {
21
22
  return {
@@ -70,7 +71,7 @@ const commonParams = {
70
71
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
71
72
  };
72
73
 
73
- var version = "3.1075.0";
74
+ var version = "3.1076.0";
74
75
  var packageInfo = {
75
76
  version: version};
76
77
 
@@ -410,6 +411,7 @@ const getRuntimeConfig$1 = (config) => {
410
411
  serviceTarget: "AmazonSageMakerRuntimeHttp2",
411
412
  },
412
413
  serviceId: config?.serviceId ?? "SageMaker Runtime HTTP2",
414
+ sha256: config?.sha256 ?? Sha256,
413
415
  urlParser: config?.urlParser ?? parseUrl,
414
416
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
415
417
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -448,7 +450,6 @@ const getRuntimeConfig = (config) => {
448
450
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
449
451
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
450
452
  }, config),
451
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
452
453
  streamCollector: config?.streamCollector ?? streamCollector,
453
454
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
454
455
  useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -1,5 +1,4 @@
1
1
  import packageInfo from "../package.json";
2
- import { Sha256 } from "@aws-crypto/sha256-browser";
3
2
  import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
4
3
  import { invalidFunction, invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
5
4
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
@@ -28,7 +27,6 @@ export const getRuntimeConfig = (config) => {
28
27
  region: config?.region ?? invalidProvider("Region is missing"),
29
28
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
30
29
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
31
- sha256: config?.sha256 ?? Sha256,
32
30
  streamCollector: config?.streamCollector ?? streamCollector,
33
31
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
34
32
  useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
@@ -7,7 +7,7 @@ import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smi
7
7
  import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
8
8
  import { eventStreamSerdeProvider } from "@smithy/core/event-streams";
9
9
  import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
10
- import { calculateBodyLength, Hash } from "@smithy/core/serde";
10
+ import { calculateBodyLength } from "@smithy/core/serde";
11
11
  import { NodeHttp2Handler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
12
12
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
13
13
  export const getRuntimeConfig = (config) => {
@@ -42,7 +42,6 @@ export const getRuntimeConfig = (config) => {
42
42
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
43
43
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
44
44
  }, config),
45
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
46
45
  streamCollector: config?.streamCollector ?? streamCollector,
47
46
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
48
47
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -1,4 +1,3 @@
1
- import { Sha256 } from "@aws-crypto/sha256-js";
2
1
  import { invalidFunction } from "@smithy/core/client";
3
2
  import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
4
3
  export const getRuntimeConfig = (config) => {
@@ -10,6 +9,5 @@ export const getRuntimeConfig = (config) => {
10
9
  eventStreamPayloadHandlerProvider: config?.eventStreamPayloadHandlerProvider ?? (() => ({
11
10
  handle: invalidFunction("event stream request is not supported in ReactNative."),
12
11
  })),
13
- sha256: config?.sha256 ?? Sha256,
14
12
  };
15
13
  };
@@ -1,5 +1,6 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
+ import { Sha256 } from "@smithy/core/checksum";
3
4
  import { NoOpLogger } from "@smithy/core/client";
4
5
  import { parseUrl } from "@smithy/core/protocols";
5
6
  import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
@@ -31,6 +32,7 @@ export const getRuntimeConfig = (config) => {
31
32
  serviceTarget: "AmazonSageMakerRuntimeHttp2",
32
33
  },
33
34
  serviceId: config?.serviceId ?? "SageMaker Runtime HTTP2",
35
+ sha256: config?.sha256 ?? Sha256,
34
36
  urlParser: config?.urlParser ?? parseUrl,
35
37
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
36
38
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -15,7 +15,6 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeHTTP2ClientConfi
15
15
  region: string | import("@smithy/types").Provider<any>;
16
16
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
17
17
  retryMode: string | import("@smithy/types").Provider<string>;
18
- sha256: import("@smithy/types").HashConstructor;
19
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
20
19
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
21
20
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeHTTP2ClientConfi
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -16,7 +16,6 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeHTTP2ClientConfi
16
16
  region: string | import("@smithy/types").Provider<string>;
17
17
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
18
18
  retryMode: string | import("@smithy/types").Provider<string>;
19
- sha256: import("@smithy/types").HashConstructor;
20
19
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
21
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -28,6 +27,7 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeHTTP2ClientConfi
28
27
  [setting: string]: unknown;
29
28
  };
30
29
  apiVersion: string;
30
+ sha256: import("@smithy/types").HashConstructor;
31
31
  urlParser: import("@smithy/types").UrlParser;
32
32
  base64Decoder: import("@smithy/types").Decoder;
33
33
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -5,7 +5,6 @@ import type { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2C
5
5
  export declare const getRuntimeConfig: (config: SageMakerRuntimeHTTP2ClientConfig) => {
6
6
  runtime: string;
7
7
  eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
8
- sha256: import("@smithy/types").HashConstructor;
9
8
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
10
9
  cacheMiddleware?: boolean;
11
10
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -14,6 +13,7 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeHTTP2ClientConfi
14
13
  [setting: string]: unknown;
15
14
  };
16
15
  apiVersion: string;
16
+ sha256: import("@smithy/types").HashConstructor;
17
17
  urlParser: import("@smithy/types").UrlParser;
18
18
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
19
19
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: SageMakerRuntimeHTTP2ClientConfi
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -24,7 +24,6 @@ export declare const getRuntimeConfig: (
24
24
  | import("@smithy/core/protocols").HttpHandler<any>
25
25
  | RequestHandler;
26
26
  retryMode: string | import("@smithy/types").Provider<string>;
27
- sha256: import("@smithy/types").HashConstructor;
28
27
  streamCollector: (
29
28
  stream:
30
29
  | import("stream").Readable
@@ -46,6 +45,7 @@ export declare const getRuntimeConfig: (
46
45
  [setting: string]: unknown;
47
46
  };
48
47
  apiVersion: string;
48
+ sha256: import("@smithy/types").HashConstructor;
49
49
  urlParser: import("@smithy/types").UrlParser;
50
50
  base64Decoder: import("@smithy/types").Decoder;
51
51
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -25,7 +25,6 @@ export declare const getRuntimeConfig: (
25
25
  | RequestHandler
26
26
  | import("@smithy/core/protocols").HttpHandler<any>;
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
- sha256: import("@smithy/types").HashConstructor;
29
28
  streamCollector: (
30
29
  stream:
31
30
  | import("stream").Readable
@@ -46,6 +45,7 @@ export declare const getRuntimeConfig: (
46
45
  [setting: string]: unknown;
47
46
  };
48
47
  apiVersion: string;
48
+ sha256: import("@smithy/types").HashConstructor;
49
49
  urlParser: import("@smithy/types").UrlParser;
50
50
  base64Decoder: import("@smithy/types").Decoder;
51
51
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ export declare const getRuntimeConfig: (
4
4
  ) => {
5
5
  runtime: string;
6
6
  eventStreamPayloadHandlerProvider: import("@smithy/types").EventStreamPayloadHandlerProvider;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler:
9
8
  | import("@smithy/types").NodeHttpHandlerOptions
10
9
  | import("@smithy/types").FetchHttpHandlerOptions
@@ -21,6 +20,7 @@ export declare const getRuntimeConfig: (
21
20
  [setting: string]: unknown;
22
21
  };
23
22
  apiVersion: string;
23
+ sha256: import("@smithy/types").HashConstructor;
24
24
  urlParser: import("@smithy/types").UrlParser;
25
25
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
26
26
  streamCollector: (
@@ -26,6 +26,7 @@ export declare const getRuntimeConfig: (
26
26
  defaultNamespace?: string;
27
27
  };
28
28
  serviceId: string;
29
+ sha256: import("@smithy/types").HashConstructor;
29
30
  urlParser: import("@smithy/types").UrlParser;
30
31
  utf8Decoder: import("@smithy/types").Decoder;
31
32
  utf8Encoder: (input: Uint8Array | string) => string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker-runtime-http2",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Runtime Http2 Client for Node.js, Browser and React Native",
4
- "version": "3.1076.0",
4
+ "version": "3.1077.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -23,21 +23,19 @@
23
23
  "module": "./dist-es/index.js",
24
24
  "sideEffects": false,
25
25
  "dependencies": {
26
- "@aws-crypto/sha256-browser": "5.2.0",
27
- "@aws-crypto/sha256-js": "5.2.0",
28
- "@aws-sdk/core": "^3.974.24",
29
- "@aws-sdk/credential-provider-node": "^3.972.59",
30
- "@aws-sdk/eventstream-handler-node": "^3.972.23",
31
- "@aws-sdk/middleware-eventstream": "^3.972.19",
26
+ "@aws-sdk/core": "^3.974.25",
27
+ "@aws-sdk/credential-provider-node": "^3.972.60",
28
+ "@aws-sdk/eventstream-handler-node": "^3.972.24",
29
+ "@aws-sdk/middleware-eventstream": "^3.972.20",
32
30
  "@aws-sdk/types": "^3.973.14",
33
- "@smithy/core": "^3.27.0",
34
- "@smithy/fetch-http-handler": "^5.6.0",
35
- "@smithy/node-http-handler": "^4.9.0",
31
+ "@smithy/core": "^3.28.0",
32
+ "@smithy/fetch-http-handler": "^5.6.1",
33
+ "@smithy/node-http-handler": "^4.9.1",
36
34
  "@smithy/types": "^4.15.0",
37
35
  "tslib": "^2.6.2"
38
36
  },
39
37
  "devDependencies": {
40
- "@smithy/snapshot-testing": "^2.2.3",
38
+ "@smithy/snapshot-testing": "^2.2.4",
41
39
  "@tsconfig/node20": "20.1.8",
42
40
  "@types/node": "^20.14.8",
43
41
  "concurrently": "7.0.0",