@aws-sdk/client-sagemaker-edge 3.169.0 → 3.170.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,14 @@
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-sagemaker-edge
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-sagemaker-edge
@@ -1,20 +1,58 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { GetDeploymentsCommandInput, GetDeploymentsCommandOutput } from "./commands/GetDeploymentsCommand";
3
- import { GetDeviceRegistrationCommandInput, GetDeviceRegistrationCommandOutput } from "./commands/GetDeviceRegistrationCommand";
4
- import { SendHeartbeatCommandInput, SendHeartbeatCommandOutput } from "./commands/SendHeartbeatCommand";
5
- import { SagemakerEdgeClient } from "./SagemakerEdgeClient";
6
-
7
- export declare class SagemakerEdge extends SagemakerEdgeClient {
8
-
9
- getDeployments(args: GetDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentsCommandOutput>;
10
- getDeployments(args: GetDeploymentsCommandInput, cb: (err: any, data?: GetDeploymentsCommandOutput) => void): void;
11
- getDeployments(args: GetDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentsCommandOutput) => void): void;
12
-
13
- getDeviceRegistration(args: GetDeviceRegistrationCommandInput, options?: __HttpHandlerOptions): Promise<GetDeviceRegistrationCommandOutput>;
14
- getDeviceRegistration(args: GetDeviceRegistrationCommandInput, cb: (err: any, data?: GetDeviceRegistrationCommandOutput) => void): void;
15
- getDeviceRegistration(args: GetDeviceRegistrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceRegistrationCommandOutput) => void): void;
16
-
17
- sendHeartbeat(args: SendHeartbeatCommandInput, options?: __HttpHandlerOptions): Promise<SendHeartbeatCommandOutput>;
18
- sendHeartbeat(args: SendHeartbeatCommandInput, cb: (err: any, data?: SendHeartbeatCommandOutput) => void): void;
19
- sendHeartbeat(args: SendHeartbeatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendHeartbeatCommandOutput) => void): void;
20
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ GetDeploymentsCommandInput,
4
+ GetDeploymentsCommandOutput,
5
+ } from "./commands/GetDeploymentsCommand";
6
+ import {
7
+ GetDeviceRegistrationCommandInput,
8
+ GetDeviceRegistrationCommandOutput,
9
+ } from "./commands/GetDeviceRegistrationCommand";
10
+ import {
11
+ SendHeartbeatCommandInput,
12
+ SendHeartbeatCommandOutput,
13
+ } from "./commands/SendHeartbeatCommand";
14
+ import { SagemakerEdgeClient } from "./SagemakerEdgeClient";
15
+
16
+ export declare class SagemakerEdge extends SagemakerEdgeClient {
17
+ getDeployments(
18
+ args: GetDeploymentsCommandInput,
19
+ options?: __HttpHandlerOptions
20
+ ): Promise<GetDeploymentsCommandOutput>;
21
+ getDeployments(
22
+ args: GetDeploymentsCommandInput,
23
+ cb: (err: any, data?: GetDeploymentsCommandOutput) => void
24
+ ): void;
25
+ getDeployments(
26
+ args: GetDeploymentsCommandInput,
27
+ options: __HttpHandlerOptions,
28
+ cb: (err: any, data?: GetDeploymentsCommandOutput) => void
29
+ ): void;
30
+
31
+ getDeviceRegistration(
32
+ args: GetDeviceRegistrationCommandInput,
33
+ options?: __HttpHandlerOptions
34
+ ): Promise<GetDeviceRegistrationCommandOutput>;
35
+ getDeviceRegistration(
36
+ args: GetDeviceRegistrationCommandInput,
37
+ cb: (err: any, data?: GetDeviceRegistrationCommandOutput) => void
38
+ ): void;
39
+ getDeviceRegistration(
40
+ args: GetDeviceRegistrationCommandInput,
41
+ options: __HttpHandlerOptions,
42
+ cb: (err: any, data?: GetDeviceRegistrationCommandOutput) => void
43
+ ): void;
44
+
45
+ sendHeartbeat(
46
+ args: SendHeartbeatCommandInput,
47
+ options?: __HttpHandlerOptions
48
+ ): Promise<SendHeartbeatCommandOutput>;
49
+ sendHeartbeat(
50
+ args: SendHeartbeatCommandInput,
51
+ cb: (err: any, data?: SendHeartbeatCommandOutput) => void
52
+ ): void;
53
+ sendHeartbeat(
54
+ args: SendHeartbeatCommandInput,
55
+ options: __HttpHandlerOptions,
56
+ cb: (err: any, data?: SendHeartbeatCommandOutput) => void
57
+ ): void;
58
+ }
@@ -1,76 +1,148 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { GetDeploymentsCommandInput, GetDeploymentsCommandOutput } from "./commands/GetDeploymentsCommand";
10
- import { GetDeviceRegistrationCommandInput, GetDeviceRegistrationCommandOutput } from "./commands/GetDeviceRegistrationCommand";
11
- import { SendHeartbeatCommandInput, SendHeartbeatCommandOutput } from "./commands/SendHeartbeatCommand";
12
- export declare type ServiceInputTypes = GetDeploymentsCommandInput | GetDeviceRegistrationCommandInput | SendHeartbeatCommandInput;
13
- export declare type ServiceOutputTypes = GetDeploymentsCommandOutput | GetDeviceRegistrationCommandOutput | SendHeartbeatCommandOutput;
14
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
15
-
16
- requestHandler?: __HttpHandler;
17
-
18
- sha256?: __HashConstructor;
19
-
20
- urlParser?: __UrlParser;
21
-
22
- bodyLengthChecker?: __BodyLengthCalculator;
23
-
24
- streamCollector?: __StreamCollector;
25
-
26
- base64Decoder?: __Decoder;
27
-
28
- base64Encoder?: __Encoder;
29
-
30
- utf8Decoder?: __Decoder;
31
-
32
- utf8Encoder?: __Encoder;
33
-
34
- runtime?: string;
35
-
36
- disableHostPrefix?: boolean;
37
-
38
- maxAttempts?: number | __Provider<number>;
39
-
40
- retryMode?: string | __Provider<string>;
41
-
42
- logger?: __Logger;
43
-
44
- useDualstackEndpoint?: boolean | __Provider<boolean>;
45
-
46
- useFipsEndpoint?: boolean | __Provider<boolean>;
47
-
48
- serviceId?: string;
49
-
50
- region?: string | __Provider<string>;
51
-
52
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
53
-
54
- regionInfoProvider?: RegionInfoProvider;
55
-
56
- defaultUserAgentProvider?: Provider<__UserAgent>;
57
-
58
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
59
- }
60
- declare type SagemakerEdgeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
61
-
62
- export interface SagemakerEdgeClientConfig extends SagemakerEdgeClientConfigType {
63
- }
64
- declare type SagemakerEdgeClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
65
-
66
- export interface SagemakerEdgeClientResolvedConfig extends SagemakerEdgeClientResolvedConfigType {
67
- }
68
-
69
- export declare class SagemakerEdgeClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SagemakerEdgeClientResolvedConfig> {
70
-
71
- readonly config: SagemakerEdgeClientResolvedConfig;
72
- constructor(configuration: SagemakerEdgeClientConfig);
73
-
74
- destroy(): void;
75
- }
76
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ GetDeploymentsCommandInput,
47
+ GetDeploymentsCommandOutput,
48
+ } from "./commands/GetDeploymentsCommand";
49
+ import {
50
+ GetDeviceRegistrationCommandInput,
51
+ GetDeviceRegistrationCommandOutput,
52
+ } from "./commands/GetDeviceRegistrationCommand";
53
+ import {
54
+ SendHeartbeatCommandInput,
55
+ SendHeartbeatCommandOutput,
56
+ } from "./commands/SendHeartbeatCommand";
57
+ export declare type ServiceInputTypes =
58
+ | GetDeploymentsCommandInput
59
+ | GetDeviceRegistrationCommandInput
60
+ | SendHeartbeatCommandInput;
61
+ export declare type ServiceOutputTypes =
62
+ | GetDeploymentsCommandOutput
63
+ | GetDeviceRegistrationCommandOutput
64
+ | SendHeartbeatCommandOutput;
65
+ export interface ClientDefaults
66
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
67
+ requestHandler?: __HttpHandler;
68
+
69
+ sha256?: __HashConstructor;
70
+
71
+ urlParser?: __UrlParser;
72
+
73
+ bodyLengthChecker?: __BodyLengthCalculator;
74
+
75
+ streamCollector?: __StreamCollector;
76
+
77
+ base64Decoder?: __Decoder;
78
+
79
+ base64Encoder?: __Encoder;
80
+
81
+ utf8Decoder?: __Decoder;
82
+
83
+ utf8Encoder?: __Encoder;
84
+
85
+ runtime?: string;
86
+
87
+ disableHostPrefix?: boolean;
88
+
89
+ maxAttempts?: number | __Provider<number>;
90
+
91
+ retryMode?: string | __Provider<string>;
92
+
93
+ logger?: __Logger;
94
+
95
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
96
+
97
+ useFipsEndpoint?: boolean | __Provider<boolean>;
98
+
99
+ serviceId?: string;
100
+
101
+ region?: string | __Provider<string>;
102
+
103
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
104
+
105
+ regionInfoProvider?: RegionInfoProvider;
106
+
107
+ defaultUserAgentProvider?: Provider<__UserAgent>;
108
+
109
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
110
+ }
111
+ declare type SagemakerEdgeClientConfigType = Partial<
112
+ __SmithyConfiguration<__HttpHandlerOptions>
113
+ > &
114
+ ClientDefaults &
115
+ RegionInputConfig &
116
+ EndpointsInputConfig &
117
+ RetryInputConfig &
118
+ HostHeaderInputConfig &
119
+ AwsAuthInputConfig &
120
+ UserAgentInputConfig;
121
+
122
+ export interface SagemakerEdgeClientConfig
123
+ extends SagemakerEdgeClientConfigType {}
124
+ declare type SagemakerEdgeClientResolvedConfigType =
125
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
126
+ Required<ClientDefaults> &
127
+ RegionResolvedConfig &
128
+ EndpointsResolvedConfig &
129
+ RetryResolvedConfig &
130
+ HostHeaderResolvedConfig &
131
+ AwsAuthResolvedConfig &
132
+ UserAgentResolvedConfig;
133
+
134
+ export interface SagemakerEdgeClientResolvedConfig
135
+ extends SagemakerEdgeClientResolvedConfigType {}
136
+
137
+ export declare class SagemakerEdgeClient extends __Client<
138
+ __HttpHandlerOptions,
139
+ ServiceInputTypes,
140
+ ServiceOutputTypes,
141
+ SagemakerEdgeClientResolvedConfig
142
+ > {
143
+ readonly config: SagemakerEdgeClientResolvedConfig;
144
+ constructor(configuration: SagemakerEdgeClientConfig);
145
+
146
+ destroy(): void;
147
+ }
148
+ export {};
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetDeploymentsRequest, GetDeploymentsResult } from "../models/models_0";
4
- import { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient";
5
- export interface GetDeploymentsCommandInput extends GetDeploymentsRequest {
6
- }
7
- export interface GetDeploymentsCommandOutput extends GetDeploymentsResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDeploymentsCommand extends $Command<GetDeploymentsCommandInput, GetDeploymentsCommandOutput, SagemakerEdgeClientResolvedConfig> {
11
- readonly input: GetDeploymentsCommandInput;
12
- constructor(input: GetDeploymentsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SagemakerEdgeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDeploymentsCommandInput, GetDeploymentsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetDeploymentsRequest,
10
+ GetDeploymentsResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ SagemakerEdgeClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../SagemakerEdgeClient";
17
+ export interface GetDeploymentsCommandInput extends GetDeploymentsRequest {}
18
+ export interface GetDeploymentsCommandOutput
19
+ extends GetDeploymentsResult,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetDeploymentsCommand extends $Command<
23
+ GetDeploymentsCommandInput,
24
+ GetDeploymentsCommandOutput,
25
+ SagemakerEdgeClientResolvedConfig
26
+ > {
27
+ readonly input: GetDeploymentsCommandInput;
28
+ constructor(input: GetDeploymentsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: SagemakerEdgeClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetDeploymentsCommandInput, GetDeploymentsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetDeviceRegistrationRequest, GetDeviceRegistrationResult } from "../models/models_0";
4
- import { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient";
5
- export interface GetDeviceRegistrationCommandInput extends GetDeviceRegistrationRequest {
6
- }
7
- export interface GetDeviceRegistrationCommandOutput extends GetDeviceRegistrationResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDeviceRegistrationCommand extends $Command<GetDeviceRegistrationCommandInput, GetDeviceRegistrationCommandOutput, SagemakerEdgeClientResolvedConfig> {
11
- readonly input: GetDeviceRegistrationCommandInput;
12
- constructor(input: GetDeviceRegistrationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SagemakerEdgeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDeviceRegistrationCommandInput, GetDeviceRegistrationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetDeviceRegistrationRequest,
10
+ GetDeviceRegistrationResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ SagemakerEdgeClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../SagemakerEdgeClient";
17
+ export interface GetDeviceRegistrationCommandInput
18
+ extends GetDeviceRegistrationRequest {}
19
+ export interface GetDeviceRegistrationCommandOutput
20
+ extends GetDeviceRegistrationResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetDeviceRegistrationCommand extends $Command<
24
+ GetDeviceRegistrationCommandInput,
25
+ GetDeviceRegistrationCommandOutput,
26
+ SagemakerEdgeClientResolvedConfig
27
+ > {
28
+ readonly input: GetDeviceRegistrationCommandInput;
29
+ constructor(input: GetDeviceRegistrationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SagemakerEdgeClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetDeviceRegistrationCommandInput,
37
+ GetDeviceRegistrationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { SendHeartbeatRequest } from "../models/models_0";
4
- import { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient";
5
- export interface SendHeartbeatCommandInput extends SendHeartbeatRequest {
6
- }
7
- export interface SendHeartbeatCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class SendHeartbeatCommand extends $Command<SendHeartbeatCommandInput, SendHeartbeatCommandOutput, SagemakerEdgeClientResolvedConfig> {
11
- readonly input: SendHeartbeatCommandInput;
12
- constructor(input: SendHeartbeatCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SagemakerEdgeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendHeartbeatCommandInput, SendHeartbeatCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { SendHeartbeatRequest } from "../models/models_0";
9
+ import {
10
+ SagemakerEdgeClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../SagemakerEdgeClient";
14
+ export interface SendHeartbeatCommandInput extends SendHeartbeatRequest {}
15
+ export interface SendHeartbeatCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class SendHeartbeatCommand extends $Command<
18
+ SendHeartbeatCommandInput,
19
+ SendHeartbeatCommandOutput,
20
+ SagemakerEdgeClientResolvedConfig
21
+ > {
22
+ readonly input: SendHeartbeatCommandInput;
23
+ constructor(input: SendHeartbeatCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SagemakerEdgeClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<SendHeartbeatCommandInput, SendHeartbeatCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,3 +1,3 @@
1
- export * from "./GetDeploymentsCommand";
2
- export * from "./GetDeviceRegistrationCommand";
3
- export * from "./SendHeartbeatCommand";
1
+ export * from "./GetDeploymentsCommand";
2
+ export * from "./GetDeviceRegistrationCommand";
3
+ export * from "./SendHeartbeatCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,5 +1,5 @@
1
- export * from "./SagemakerEdge";
2
- export * from "./SagemakerEdgeClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { SagemakerEdgeServiceException } from "./models/SagemakerEdgeServiceException";
1
+ export * from "./SagemakerEdge";
2
+ export * from "./SagemakerEdgeClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { SagemakerEdgeServiceException } from "./models/SagemakerEdgeServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SagemakerEdgeServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class SagemakerEdgeServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";