@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 +8 -0
- package/dist-types/ts3.4/SagemakerEdge.d.ts +58 -20
- package/dist-types/ts3.4/SagemakerEdgeClient.d.ts +148 -76
- package/dist-types/ts3.4/commands/GetDeploymentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetDeviceRegistrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SendHeartbeatCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +3 -3
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/SagemakerEdgeServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +181 -175
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -11
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|