@aws-sdk/client-iot-data-plane 3.168.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 +16 -0
- package/dist-types/ts3.4/IoTDataPlane.d.ts +130 -40
- package/dist-types/ts3.4/IoTDataPlaneClient.d.ts +172 -80
- package/dist-types/ts3.4/commands/DeleteThingShadowCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetRetainedMessageCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetThingShadowCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListNamedShadowsForThingCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListRetainedMessagesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PublishCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateThingShadowCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +7 -7
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IoTDataPlaneServiceException.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 +239 -204
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListRetainedMessagesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +89 -23
- 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,22 @@
|
|
|
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-iot-data-plane
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-iot-data-plane
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-iot-data-plane
|
|
@@ -1,40 +1,130 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DeleteThingShadowCommandInput,
|
|
4
|
+
DeleteThingShadowCommandOutput,
|
|
5
|
+
} from "./commands/DeleteThingShadowCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetRetainedMessageCommandInput,
|
|
8
|
+
GetRetainedMessageCommandOutput,
|
|
9
|
+
} from "./commands/GetRetainedMessageCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetThingShadowCommandInput,
|
|
12
|
+
GetThingShadowCommandOutput,
|
|
13
|
+
} from "./commands/GetThingShadowCommand";
|
|
14
|
+
import {
|
|
15
|
+
ListNamedShadowsForThingCommandInput,
|
|
16
|
+
ListNamedShadowsForThingCommandOutput,
|
|
17
|
+
} from "./commands/ListNamedShadowsForThingCommand";
|
|
18
|
+
import {
|
|
19
|
+
ListRetainedMessagesCommandInput,
|
|
20
|
+
ListRetainedMessagesCommandOutput,
|
|
21
|
+
} from "./commands/ListRetainedMessagesCommand";
|
|
22
|
+
import {
|
|
23
|
+
PublishCommandInput,
|
|
24
|
+
PublishCommandOutput,
|
|
25
|
+
} from "./commands/PublishCommand";
|
|
26
|
+
import {
|
|
27
|
+
UpdateThingShadowCommandInput,
|
|
28
|
+
UpdateThingShadowCommandOutput,
|
|
29
|
+
} from "./commands/UpdateThingShadowCommand";
|
|
30
|
+
import { IoTDataPlaneClient } from "./IoTDataPlaneClient";
|
|
31
|
+
|
|
32
|
+
export declare class IoTDataPlane extends IoTDataPlaneClient {
|
|
33
|
+
deleteThingShadow(
|
|
34
|
+
args: DeleteThingShadowCommandInput,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Promise<DeleteThingShadowCommandOutput>;
|
|
37
|
+
deleteThingShadow(
|
|
38
|
+
args: DeleteThingShadowCommandInput,
|
|
39
|
+
cb: (err: any, data?: DeleteThingShadowCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
deleteThingShadow(
|
|
42
|
+
args: DeleteThingShadowCommandInput,
|
|
43
|
+
options: __HttpHandlerOptions,
|
|
44
|
+
cb: (err: any, data?: DeleteThingShadowCommandOutput) => void
|
|
45
|
+
): void;
|
|
46
|
+
|
|
47
|
+
getRetainedMessage(
|
|
48
|
+
args: GetRetainedMessageCommandInput,
|
|
49
|
+
options?: __HttpHandlerOptions
|
|
50
|
+
): Promise<GetRetainedMessageCommandOutput>;
|
|
51
|
+
getRetainedMessage(
|
|
52
|
+
args: GetRetainedMessageCommandInput,
|
|
53
|
+
cb: (err: any, data?: GetRetainedMessageCommandOutput) => void
|
|
54
|
+
): void;
|
|
55
|
+
getRetainedMessage(
|
|
56
|
+
args: GetRetainedMessageCommandInput,
|
|
57
|
+
options: __HttpHandlerOptions,
|
|
58
|
+
cb: (err: any, data?: GetRetainedMessageCommandOutput) => void
|
|
59
|
+
): void;
|
|
60
|
+
|
|
61
|
+
getThingShadow(
|
|
62
|
+
args: GetThingShadowCommandInput,
|
|
63
|
+
options?: __HttpHandlerOptions
|
|
64
|
+
): Promise<GetThingShadowCommandOutput>;
|
|
65
|
+
getThingShadow(
|
|
66
|
+
args: GetThingShadowCommandInput,
|
|
67
|
+
cb: (err: any, data?: GetThingShadowCommandOutput) => void
|
|
68
|
+
): void;
|
|
69
|
+
getThingShadow(
|
|
70
|
+
args: GetThingShadowCommandInput,
|
|
71
|
+
options: __HttpHandlerOptions,
|
|
72
|
+
cb: (err: any, data?: GetThingShadowCommandOutput) => void
|
|
73
|
+
): void;
|
|
74
|
+
|
|
75
|
+
listNamedShadowsForThing(
|
|
76
|
+
args: ListNamedShadowsForThingCommandInput,
|
|
77
|
+
options?: __HttpHandlerOptions
|
|
78
|
+
): Promise<ListNamedShadowsForThingCommandOutput>;
|
|
79
|
+
listNamedShadowsForThing(
|
|
80
|
+
args: ListNamedShadowsForThingCommandInput,
|
|
81
|
+
cb: (err: any, data?: ListNamedShadowsForThingCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
listNamedShadowsForThing(
|
|
84
|
+
args: ListNamedShadowsForThingCommandInput,
|
|
85
|
+
options: __HttpHandlerOptions,
|
|
86
|
+
cb: (err: any, data?: ListNamedShadowsForThingCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
|
|
89
|
+
listRetainedMessages(
|
|
90
|
+
args: ListRetainedMessagesCommandInput,
|
|
91
|
+
options?: __HttpHandlerOptions
|
|
92
|
+
): Promise<ListRetainedMessagesCommandOutput>;
|
|
93
|
+
listRetainedMessages(
|
|
94
|
+
args: ListRetainedMessagesCommandInput,
|
|
95
|
+
cb: (err: any, data?: ListRetainedMessagesCommandOutput) => void
|
|
96
|
+
): void;
|
|
97
|
+
listRetainedMessages(
|
|
98
|
+
args: ListRetainedMessagesCommandInput,
|
|
99
|
+
options: __HttpHandlerOptions,
|
|
100
|
+
cb: (err: any, data?: ListRetainedMessagesCommandOutput) => void
|
|
101
|
+
): void;
|
|
102
|
+
|
|
103
|
+
publish(
|
|
104
|
+
args: PublishCommandInput,
|
|
105
|
+
options?: __HttpHandlerOptions
|
|
106
|
+
): Promise<PublishCommandOutput>;
|
|
107
|
+
publish(
|
|
108
|
+
args: PublishCommandInput,
|
|
109
|
+
cb: (err: any, data?: PublishCommandOutput) => void
|
|
110
|
+
): void;
|
|
111
|
+
publish(
|
|
112
|
+
args: PublishCommandInput,
|
|
113
|
+
options: __HttpHandlerOptions,
|
|
114
|
+
cb: (err: any, data?: PublishCommandOutput) => void
|
|
115
|
+
): void;
|
|
116
|
+
|
|
117
|
+
updateThingShadow(
|
|
118
|
+
args: UpdateThingShadowCommandInput,
|
|
119
|
+
options?: __HttpHandlerOptions
|
|
120
|
+
): Promise<UpdateThingShadowCommandOutput>;
|
|
121
|
+
updateThingShadow(
|
|
122
|
+
args: UpdateThingShadowCommandInput,
|
|
123
|
+
cb: (err: any, data?: UpdateThingShadowCommandOutput) => void
|
|
124
|
+
): void;
|
|
125
|
+
updateThingShadow(
|
|
126
|
+
args: UpdateThingShadowCommandInput,
|
|
127
|
+
options: __HttpHandlerOptions,
|
|
128
|
+
cb: (err: any, data?: UpdateThingShadowCommandOutput) => void
|
|
129
|
+
): void;
|
|
130
|
+
}
|
|
@@ -1,80 +1,172 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
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
|
-
export declare
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
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
|
+
DeleteThingShadowCommandInput,
|
|
47
|
+
DeleteThingShadowCommandOutput,
|
|
48
|
+
} from "./commands/DeleteThingShadowCommand";
|
|
49
|
+
import {
|
|
50
|
+
GetRetainedMessageCommandInput,
|
|
51
|
+
GetRetainedMessageCommandOutput,
|
|
52
|
+
} from "./commands/GetRetainedMessageCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetThingShadowCommandInput,
|
|
55
|
+
GetThingShadowCommandOutput,
|
|
56
|
+
} from "./commands/GetThingShadowCommand";
|
|
57
|
+
import {
|
|
58
|
+
ListNamedShadowsForThingCommandInput,
|
|
59
|
+
ListNamedShadowsForThingCommandOutput,
|
|
60
|
+
} from "./commands/ListNamedShadowsForThingCommand";
|
|
61
|
+
import {
|
|
62
|
+
ListRetainedMessagesCommandInput,
|
|
63
|
+
ListRetainedMessagesCommandOutput,
|
|
64
|
+
} from "./commands/ListRetainedMessagesCommand";
|
|
65
|
+
import {
|
|
66
|
+
PublishCommandInput,
|
|
67
|
+
PublishCommandOutput,
|
|
68
|
+
} from "./commands/PublishCommand";
|
|
69
|
+
import {
|
|
70
|
+
UpdateThingShadowCommandInput,
|
|
71
|
+
UpdateThingShadowCommandOutput,
|
|
72
|
+
} from "./commands/UpdateThingShadowCommand";
|
|
73
|
+
export declare type ServiceInputTypes =
|
|
74
|
+
| DeleteThingShadowCommandInput
|
|
75
|
+
| GetRetainedMessageCommandInput
|
|
76
|
+
| GetThingShadowCommandInput
|
|
77
|
+
| ListNamedShadowsForThingCommandInput
|
|
78
|
+
| ListRetainedMessagesCommandInput
|
|
79
|
+
| PublishCommandInput
|
|
80
|
+
| UpdateThingShadowCommandInput;
|
|
81
|
+
export declare type ServiceOutputTypes =
|
|
82
|
+
| DeleteThingShadowCommandOutput
|
|
83
|
+
| GetRetainedMessageCommandOutput
|
|
84
|
+
| GetThingShadowCommandOutput
|
|
85
|
+
| ListNamedShadowsForThingCommandOutput
|
|
86
|
+
| ListRetainedMessagesCommandOutput
|
|
87
|
+
| PublishCommandOutput
|
|
88
|
+
| UpdateThingShadowCommandOutput;
|
|
89
|
+
export interface ClientDefaults
|
|
90
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
91
|
+
requestHandler?: __HttpHandler;
|
|
92
|
+
|
|
93
|
+
sha256?: __HashConstructor;
|
|
94
|
+
|
|
95
|
+
urlParser?: __UrlParser;
|
|
96
|
+
|
|
97
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
98
|
+
|
|
99
|
+
streamCollector?: __StreamCollector;
|
|
100
|
+
|
|
101
|
+
base64Decoder?: __Decoder;
|
|
102
|
+
|
|
103
|
+
base64Encoder?: __Encoder;
|
|
104
|
+
|
|
105
|
+
utf8Decoder?: __Decoder;
|
|
106
|
+
|
|
107
|
+
utf8Encoder?: __Encoder;
|
|
108
|
+
|
|
109
|
+
runtime?: string;
|
|
110
|
+
|
|
111
|
+
disableHostPrefix?: boolean;
|
|
112
|
+
|
|
113
|
+
maxAttempts?: number | __Provider<number>;
|
|
114
|
+
|
|
115
|
+
retryMode?: string | __Provider<string>;
|
|
116
|
+
|
|
117
|
+
logger?: __Logger;
|
|
118
|
+
|
|
119
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
120
|
+
|
|
121
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
122
|
+
|
|
123
|
+
serviceId?: string;
|
|
124
|
+
|
|
125
|
+
region?: string | __Provider<string>;
|
|
126
|
+
|
|
127
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
128
|
+
|
|
129
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
130
|
+
|
|
131
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
132
|
+
|
|
133
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
134
|
+
}
|
|
135
|
+
declare type IoTDataPlaneClientConfigType = Partial<
|
|
136
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
137
|
+
> &
|
|
138
|
+
ClientDefaults &
|
|
139
|
+
RegionInputConfig &
|
|
140
|
+
EndpointsInputConfig &
|
|
141
|
+
RetryInputConfig &
|
|
142
|
+
HostHeaderInputConfig &
|
|
143
|
+
AwsAuthInputConfig &
|
|
144
|
+
UserAgentInputConfig;
|
|
145
|
+
|
|
146
|
+
export interface IoTDataPlaneClientConfig
|
|
147
|
+
extends IoTDataPlaneClientConfigType {}
|
|
148
|
+
declare type IoTDataPlaneClientResolvedConfigType =
|
|
149
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
150
|
+
Required<ClientDefaults> &
|
|
151
|
+
RegionResolvedConfig &
|
|
152
|
+
EndpointsResolvedConfig &
|
|
153
|
+
RetryResolvedConfig &
|
|
154
|
+
HostHeaderResolvedConfig &
|
|
155
|
+
AwsAuthResolvedConfig &
|
|
156
|
+
UserAgentResolvedConfig;
|
|
157
|
+
|
|
158
|
+
export interface IoTDataPlaneClientResolvedConfig
|
|
159
|
+
extends IoTDataPlaneClientResolvedConfigType {}
|
|
160
|
+
|
|
161
|
+
export declare class IoTDataPlaneClient extends __Client<
|
|
162
|
+
__HttpHandlerOptions,
|
|
163
|
+
ServiceInputTypes,
|
|
164
|
+
ServiceOutputTypes,
|
|
165
|
+
IoTDataPlaneClientResolvedConfig
|
|
166
|
+
> {
|
|
167
|
+
readonly config: IoTDataPlaneClientResolvedConfig;
|
|
168
|
+
constructor(configuration: IoTDataPlaneClientConfig);
|
|
169
|
+
|
|
170
|
+
destroy(): void;
|
|
171
|
+
}
|
|
172
|
+
export {};
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
IoTDataPlaneClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTDataPlaneClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteThingShadowRequest,
|
|
15
|
+
DeleteThingShadowResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteThingShadowCommandInput
|
|
18
|
+
extends DeleteThingShadowRequest {}
|
|
19
|
+
export interface DeleteThingShadowCommandOutput
|
|
20
|
+
extends DeleteThingShadowResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteThingShadowCommand extends $Command<
|
|
24
|
+
DeleteThingShadowCommandInput,
|
|
25
|
+
DeleteThingShadowCommandOutput,
|
|
26
|
+
IoTDataPlaneClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteThingShadowCommandInput;
|
|
29
|
+
constructor(input: DeleteThingShadowCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTDataPlaneClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteThingShadowCommandInput, DeleteThingShadowCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
IoTDataPlaneClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTDataPlaneClient";
|
|
13
|
+
import {
|
|
14
|
+
GetRetainedMessageRequest,
|
|
15
|
+
GetRetainedMessageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetRetainedMessageCommandInput
|
|
18
|
+
extends GetRetainedMessageRequest {}
|
|
19
|
+
export interface GetRetainedMessageCommandOutput
|
|
20
|
+
extends GetRetainedMessageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetRetainedMessageCommand extends $Command<
|
|
24
|
+
GetRetainedMessageCommandInput,
|
|
25
|
+
GetRetainedMessageCommandOutput,
|
|
26
|
+
IoTDataPlaneClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetRetainedMessageCommandInput;
|
|
29
|
+
constructor(input: GetRetainedMessageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTDataPlaneClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetRetainedMessageCommandInput, GetRetainedMessageCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
IoTDataPlaneClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../IoTDataPlaneClient";
|
|
13
|
+
import {
|
|
14
|
+
GetThingShadowRequest,
|
|
15
|
+
GetThingShadowResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetThingShadowCommandInput extends GetThingShadowRequest {}
|
|
18
|
+
export interface GetThingShadowCommandOutput
|
|
19
|
+
extends GetThingShadowResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetThingShadowCommand extends $Command<
|
|
23
|
+
GetThingShadowCommandInput,
|
|
24
|
+
GetThingShadowCommandOutput,
|
|
25
|
+
IoTDataPlaneClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetThingShadowCommandInput;
|
|
28
|
+
constructor(input: GetThingShadowCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTDataPlaneClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetThingShadowCommandInput, GetThingShadowCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|