@aws-sdk/client-sagemaker-edge 3.1077.0 → 3.1079.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
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1078.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -456,40 +457,17 @@ class SagemakerEdgeClient extends Client {
456
457
  }
457
458
  }
458
459
 
459
- class GetDeploymentsCommand extends Command
460
- .classBuilder()
461
- .ep(commonParams)
462
- .m(function (Command, cs, config, o) {
463
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
464
- })
465
- .s("AmazonSageMakerEdge", "GetDeployments", {})
466
- .n("SagemakerEdgeClient", "GetDeploymentsCommand")
467
- .sc(GetDeployments$)
468
- .build() {
460
+ const command = makeBuilder(commonParams, "AmazonSageMakerEdge", "SagemakerEdgeClient", getEndpointPlugin);
461
+ const _ep0 = {};
462
+ const _mw0 = (Command, cs, config, o) => [];
463
+
464
+ class GetDeploymentsCommand extends command(_ep0, _mw0, "GetDeployments", GetDeployments$) {
469
465
  }
470
466
 
471
- class GetDeviceRegistrationCommand extends Command
472
- .classBuilder()
473
- .ep(commonParams)
474
- .m(function (Command, cs, config, o) {
475
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
476
- })
477
- .s("AmazonSageMakerEdge", "GetDeviceRegistration", {})
478
- .n("SagemakerEdgeClient", "GetDeviceRegistrationCommand")
479
- .sc(GetDeviceRegistration$)
480
- .build() {
467
+ class GetDeviceRegistrationCommand extends command(_ep0, _mw0, "GetDeviceRegistration", GetDeviceRegistration$) {
481
468
  }
482
469
 
483
- class SendHeartbeatCommand extends Command
484
- .classBuilder()
485
- .ep(commonParams)
486
- .m(function (Command, cs, config, o) {
487
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
488
- })
489
- .s("AmazonSageMakerEdge", "SendHeartbeat", {})
490
- .n("SagemakerEdgeClient", "SendHeartbeatCommand")
491
- .sc(SendHeartbeat$)
492
- .build() {
470
+ class SendHeartbeatCommand extends command(_ep0, _mw0, "SendHeartbeat", SendHeartbeat$) {
493
471
  }
494
472
 
495
473
  const commands = {
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "AmazonSageMakerEdge", "SagemakerEdgeClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetDeployments$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetDeploymentsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonSageMakerEdge", "GetDeployments", {})
13
- .n("SagemakerEdgeClient", "GetDeploymentsCommand")
14
- .sc(GetDeployments$)
15
- .build() {
3
+ export class GetDeploymentsCommand extends command(_ep0, _mw0, "GetDeployments", GetDeployments$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetDeviceRegistration$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetDeviceRegistrationCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonSageMakerEdge", "GetDeviceRegistration", {})
13
- .n("SagemakerEdgeClient", "GetDeviceRegistrationCommand")
14
- .sc(GetDeviceRegistration$)
15
- .build() {
3
+ export class GetDeviceRegistrationCommand extends command(_ep0, _mw0, "GetDeviceRegistration", GetDeviceRegistration$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { SendHeartbeat$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class SendHeartbeatCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonSageMakerEdge", "SendHeartbeat", {})
13
- .n("SagemakerEdgeClient", "SendHeartbeatCommand")
14
- .sc(SendHeartbeat$)
15
- .build() {
3
+ export class SendHeartbeatCommand extends command(_ep0, _mw0, "SendHeartbeat", SendHeartbeat$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./SagemakerEdgeClient";
2
2
  export * from "./SagemakerEdge";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./SagemakerEdgeClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetDeploymentsRequest, GetDeploymentsResult } from "../models/models_0";
4
- import type { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetDeploymentsCommandInput extends GetDeploymentsRequest {
22
19
  export interface GetDeploymentsCommandOutput extends GetDeploymentsResult, __MetadataBearer {
23
20
  }
24
21
  declare const GetDeploymentsCommand_base: {
25
- new (input: GetDeploymentsCommandInput): import("@smithy/core/client").CommandImpl<GetDeploymentsCommandInput, GetDeploymentsCommandOutput, SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetDeploymentsCommandInput): import("@smithy/core/client").CommandImpl<GetDeploymentsCommandInput, GetDeploymentsCommandOutput, SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetDeploymentsCommandInput): import("@smithy/core/client").CommandImpl<GetDeploymentsCommandInput, GetDeploymentsCommandOutput, import("..").SagemakerEdgeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetDeploymentsCommandInput): import("@smithy/core/client").CommandImpl<GetDeploymentsCommandInput, GetDeploymentsCommandOutput, import("..").SagemakerEdgeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Use to get the active deployments from a device.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetDeviceRegistrationRequest, GetDeviceRegistrationResult } from "../models/models_0";
4
- import type { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetDeviceRegistrationCommandInput extends GetDeviceRegistration
22
19
  export interface GetDeviceRegistrationCommandOutput extends GetDeviceRegistrationResult, __MetadataBearer {
23
20
  }
24
21
  declare const GetDeviceRegistrationCommand_base: {
25
- new (input: GetDeviceRegistrationCommandInput): import("@smithy/core/client").CommandImpl<GetDeviceRegistrationCommandInput, GetDeviceRegistrationCommandOutput, SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetDeviceRegistrationCommandInput): import("@smithy/core/client").CommandImpl<GetDeviceRegistrationCommandInput, GetDeviceRegistrationCommandOutput, SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetDeviceRegistrationCommandInput): import("@smithy/core/client").CommandImpl<GetDeviceRegistrationCommandInput, GetDeviceRegistrationCommandOutput, import("..").SagemakerEdgeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetDeviceRegistrationCommandInput): import("@smithy/core/client").CommandImpl<GetDeviceRegistrationCommandInput, GetDeviceRegistrationCommandOutput, import("..").SagemakerEdgeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Use to check if a device is registered with SageMaker Edge Manager.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { SendHeartbeatRequest } from "../models/models_0";
4
- import type { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SendHeartbeatCommandInput extends SendHeartbeatRequest {
22
19
  export interface SendHeartbeatCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const SendHeartbeatCommand_base: {
25
- new (input: SendHeartbeatCommandInput): import("@smithy/core/client").CommandImpl<SendHeartbeatCommandInput, SendHeartbeatCommandOutput, SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SendHeartbeatCommandInput): import("@smithy/core/client").CommandImpl<SendHeartbeatCommandInput, SendHeartbeatCommandOutput, SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SendHeartbeatCommandInput): import("@smithy/core/client").CommandImpl<SendHeartbeatCommandInput, SendHeartbeatCommandOutput, import("..").SagemakerEdgeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SendHeartbeatCommandInput): import("@smithy/core/client").CommandImpl<SendHeartbeatCommandInput, SendHeartbeatCommandOutput, import("..").SagemakerEdgeClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Use to get the current status of devices registered on SageMaker Edge Manager.</p>
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { SagemakerEdgeExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./models/enums";
14
15
  export * from "./models/errors";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ SagemakerEdgeClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./SagemakerEdgeClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ SagemakerEdgeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ SagemakerEdgeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  GetDeploymentsRequest,
5
4
  GetDeploymentsResult,
6
5
  } from "../models/models_0";
7
- import {
8
- SagemakerEdgeClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../SagemakerEdgeClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetDeploymentsCommandInput extends GetDeploymentsRequest {}
15
8
  export interface GetDeploymentsCommandOutput
16
9
  extends GetDeploymentsResult,
@@ -21,22 +14,20 @@ declare const GetDeploymentsCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  GetDeploymentsCommandInput,
23
16
  GetDeploymentsCommandOutput,
24
- SagemakerEdgeClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").SagemakerEdgeClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: GetDeploymentsCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetDeploymentsCommandInput,
32
25
  GetDeploymentsCommandOutput,
33
- SagemakerEdgeClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").SagemakerEdgeClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class GetDeploymentsCommand extends GetDeploymentsCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  GetDeviceRegistrationRequest,
5
4
  GetDeviceRegistrationResult,
6
5
  } from "../models/models_0";
7
- import {
8
- SagemakerEdgeClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../SagemakerEdgeClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetDeviceRegistrationCommandInput
15
8
  extends GetDeviceRegistrationRequest {}
16
9
  export interface GetDeviceRegistrationCommandOutput
@@ -22,22 +15,20 @@ declare const GetDeviceRegistrationCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetDeviceRegistrationCommandInput,
24
17
  GetDeviceRegistrationCommandOutput,
25
- SagemakerEdgeClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").SagemakerEdgeClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetDeviceRegistrationCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetDeviceRegistrationCommandInput,
33
26
  GetDeviceRegistrationCommandOutput,
34
- SagemakerEdgeClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").SagemakerEdgeClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetDeviceRegistrationCommand extends GetDeviceRegistrationCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { SendHeartbeatRequest } from "../models/models_0";
4
- import {
5
- SagemakerEdgeClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../SagemakerEdgeClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface SendHeartbeatCommandInput extends SendHeartbeatRequest {}
12
5
  export interface SendHeartbeatCommandOutput extends __MetadataBearer {}
13
6
  declare const SendHeartbeatCommand_base: {
@@ -16,22 +9,20 @@ declare const SendHeartbeatCommand_base: {
16
9
  ): import("@smithy/core/client").CommandImpl<
17
10
  SendHeartbeatCommandInput,
18
11
  SendHeartbeatCommandOutput,
19
- SagemakerEdgeClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").SagemakerEdgeClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  input: SendHeartbeatCommandInput
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  SendHeartbeatCommandInput,
27
20
  SendHeartbeatCommandOutput,
28
- SagemakerEdgeClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").SagemakerEdgeClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class SendHeartbeatCommand extends SendHeartbeatCommand_base {
37
28
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SagemakerEdgeExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/enums";
9
10
  export * from "./models/errors";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker-edge",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Edge Client for Node.js, Browser and React Native",
4
- "version": "3.1077.0",
4
+ "version": "3.1079.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",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.27",
23
+ "@aws-sdk/credential-provider-node": "^3.972.62",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {