@aws-sdk/client-iot-data-plane 3.169.0 → 3.171.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 +123 -40
- package/dist-types/ts3.4/IoTDataPlaneClient.d.ts +147 -80
- package/dist-types/ts3.4/commands/DeleteThingShadowCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetRetainedMessageCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetThingShadowCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListNamedShadowsForThingCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListRetainedMessagesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PublishCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UpdateThingShadowCommand.d.ts +36 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +176 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
ListRetainedMessagesRequest,
|
|
15
|
+
ListRetainedMessagesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListRetainedMessagesCommandInput
|
|
18
|
+
extends ListRetainedMessagesRequest {}
|
|
19
|
+
export interface ListRetainedMessagesCommandOutput
|
|
20
|
+
extends ListRetainedMessagesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListRetainedMessagesCommand extends $Command<
|
|
23
|
+
ListRetainedMessagesCommandInput,
|
|
24
|
+
ListRetainedMessagesCommandOutput,
|
|
25
|
+
IoTDataPlaneClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListRetainedMessagesCommandInput;
|
|
28
|
+
constructor(input: ListRetainedMessagesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IoTDataPlaneClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListRetainedMessagesCommandInput,
|
|
35
|
+
ListRetainedMessagesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
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 { PublishRequest } from "../models/models_0";
|
|
14
|
+
export interface PublishCommandInput extends PublishRequest {}
|
|
15
|
+
export interface PublishCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class PublishCommand extends $Command<
|
|
17
|
+
PublishCommandInput,
|
|
18
|
+
PublishCommandOutput,
|
|
19
|
+
IoTDataPlaneClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: PublishCommandInput;
|
|
22
|
+
constructor(input: PublishCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: IoTDataPlaneClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<PublishCommandInput, PublishCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
UpdateThingShadowRequest,
|
|
15
|
+
UpdateThingShadowResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateThingShadowCommandInput
|
|
18
|
+
extends UpdateThingShadowRequest {}
|
|
19
|
+
export interface UpdateThingShadowCommandOutput
|
|
20
|
+
extends UpdateThingShadowResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateThingShadowCommand extends $Command<
|
|
23
|
+
UpdateThingShadowCommandInput,
|
|
24
|
+
UpdateThingShadowCommandOutput,
|
|
25
|
+
IoTDataPlaneClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateThingShadowCommandInput;
|
|
28
|
+
constructor(input: UpdateThingShadowCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IoTDataPlaneClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<UpdateThingShadowCommandInput, UpdateThingShadowCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from "./DeleteThingShadowCommand";
|
|
2
|
-
export * from "./GetRetainedMessageCommand";
|
|
3
|
-
export * from "./GetThingShadowCommand";
|
|
4
|
-
export * from "./ListNamedShadowsForThingCommand";
|
|
5
|
-
export * from "./ListRetainedMessagesCommand";
|
|
6
|
-
export * from "./PublishCommand";
|
|
7
|
-
export * from "./UpdateThingShadowCommand";
|
|
1
|
+
export * from "./DeleteThingShadowCommand";
|
|
2
|
+
export * from "./GetRetainedMessageCommand";
|
|
3
|
+
export * from "./GetThingShadowCommand";
|
|
4
|
+
export * from "./ListNamedShadowsForThingCommand";
|
|
5
|
+
export * from "./ListRetainedMessagesCommand";
|
|
6
|
+
export * from "./PublishCommand";
|
|
7
|
+
export * from "./UpdateThingShadowCommand";
|
|
@@ -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,6 +1,6 @@
|
|
|
1
|
-
export * from "./IoTDataPlane";
|
|
2
|
-
export * from "./IoTDataPlaneClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { IoTDataPlaneServiceException } from "./models/IoTDataPlaneServiceException";
|
|
1
|
+
export * from "./IoTDataPlane";
|
|
2
|
+
export * from "./IoTDataPlaneClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { IoTDataPlaneServiceException } from "./models/IoTDataPlaneServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class IoTDataPlaneServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|
|
@@ -1,204 +1,176 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { IoTDataPlaneServiceException as __BaseException } from "./IoTDataPlaneServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
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
|
-
|
|
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
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
export interface
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
}
|
|
114
|
-
export interface
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
export declare const DeleteThingShadowRequestFilterSensitiveLog: (obj: DeleteThingShadowRequest) => any;
|
|
179
|
-
|
|
180
|
-
export declare const DeleteThingShadowResponseFilterSensitiveLog: (obj: DeleteThingShadowResponse) => any;
|
|
181
|
-
|
|
182
|
-
export declare const GetRetainedMessageRequestFilterSensitiveLog: (obj: GetRetainedMessageRequest) => any;
|
|
183
|
-
|
|
184
|
-
export declare const GetRetainedMessageResponseFilterSensitiveLog: (obj: GetRetainedMessageResponse) => any;
|
|
185
|
-
|
|
186
|
-
export declare const GetThingShadowRequestFilterSensitiveLog: (obj: GetThingShadowRequest) => any;
|
|
187
|
-
|
|
188
|
-
export declare const GetThingShadowResponseFilterSensitiveLog: (obj: GetThingShadowResponse) => any;
|
|
189
|
-
|
|
190
|
-
export declare const ListNamedShadowsForThingRequestFilterSensitiveLog: (obj: ListNamedShadowsForThingRequest) => any;
|
|
191
|
-
|
|
192
|
-
export declare const ListNamedShadowsForThingResponseFilterSensitiveLog: (obj: ListNamedShadowsForThingResponse) => any;
|
|
193
|
-
|
|
194
|
-
export declare const ListRetainedMessagesRequestFilterSensitiveLog: (obj: ListRetainedMessagesRequest) => any;
|
|
195
|
-
|
|
196
|
-
export declare const RetainedMessageSummaryFilterSensitiveLog: (obj: RetainedMessageSummary) => any;
|
|
197
|
-
|
|
198
|
-
export declare const ListRetainedMessagesResponseFilterSensitiveLog: (obj: ListRetainedMessagesResponse) => any;
|
|
199
|
-
|
|
200
|
-
export declare const PublishRequestFilterSensitiveLog: (obj: PublishRequest) => any;
|
|
201
|
-
|
|
202
|
-
export declare const UpdateThingShadowRequestFilterSensitiveLog: (obj: UpdateThingShadowRequest) => any;
|
|
203
|
-
|
|
204
|
-
export declare const UpdateThingShadowResponseFilterSensitiveLog: (obj: UpdateThingShadowResponse) => any;
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IoTDataPlaneServiceException as __BaseException } from "./IoTDataPlaneServiceException";
|
|
3
|
+
export declare class ConflictException extends __BaseException {
|
|
4
|
+
readonly name: "ConflictException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
7
|
+
}
|
|
8
|
+
export interface DeleteThingShadowRequest {
|
|
9
|
+
thingName: string | undefined;
|
|
10
|
+
shadowName?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface DeleteThingShadowResponse {
|
|
13
|
+
payload: Uint8Array | undefined;
|
|
14
|
+
}
|
|
15
|
+
export declare class InternalFailureException extends __BaseException {
|
|
16
|
+
readonly name: "InternalFailureException";
|
|
17
|
+
readonly $fault: "server";
|
|
18
|
+
constructor(
|
|
19
|
+
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
23
|
+
readonly name: "InvalidRequestException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
constructor(
|
|
26
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
export declare class MethodNotAllowedException extends __BaseException {
|
|
30
|
+
readonly name: "MethodNotAllowedException";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<MethodNotAllowedException, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
37
|
+
readonly name: "ResourceNotFoundException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
44
|
+
readonly name: "ServiceUnavailableException";
|
|
45
|
+
readonly $fault: "server";
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
export declare class ThrottlingException extends __BaseException {
|
|
51
|
+
readonly name: "ThrottlingException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
constructor(
|
|
54
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
58
|
+
readonly name: "UnauthorizedException";
|
|
59
|
+
readonly $fault: "client";
|
|
60
|
+
constructor(
|
|
61
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
export declare class UnsupportedDocumentEncodingException extends __BaseException {
|
|
65
|
+
readonly name: "UnsupportedDocumentEncodingException";
|
|
66
|
+
readonly $fault: "client";
|
|
67
|
+
constructor(
|
|
68
|
+
opts: __ExceptionOptionType<
|
|
69
|
+
UnsupportedDocumentEncodingException,
|
|
70
|
+
__BaseException
|
|
71
|
+
>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
export interface GetRetainedMessageRequest {
|
|
75
|
+
topic: string | undefined;
|
|
76
|
+
}
|
|
77
|
+
export interface GetRetainedMessageResponse {
|
|
78
|
+
topic?: string;
|
|
79
|
+
payload?: Uint8Array;
|
|
80
|
+
qos?: number;
|
|
81
|
+
lastModifiedTime?: number;
|
|
82
|
+
}
|
|
83
|
+
export interface GetThingShadowRequest {
|
|
84
|
+
thingName: string | undefined;
|
|
85
|
+
shadowName?: string;
|
|
86
|
+
}
|
|
87
|
+
export interface GetThingShadowResponse {
|
|
88
|
+
payload?: Uint8Array;
|
|
89
|
+
}
|
|
90
|
+
export interface ListNamedShadowsForThingRequest {
|
|
91
|
+
thingName: string | undefined;
|
|
92
|
+
nextToken?: string;
|
|
93
|
+
pageSize?: number;
|
|
94
|
+
}
|
|
95
|
+
export interface ListNamedShadowsForThingResponse {
|
|
96
|
+
results?: string[];
|
|
97
|
+
nextToken?: string;
|
|
98
|
+
timestamp?: number;
|
|
99
|
+
}
|
|
100
|
+
export interface ListRetainedMessagesRequest {
|
|
101
|
+
nextToken?: string;
|
|
102
|
+
maxResults?: number;
|
|
103
|
+
}
|
|
104
|
+
export interface RetainedMessageSummary {
|
|
105
|
+
topic?: string;
|
|
106
|
+
payloadSize?: number;
|
|
107
|
+
qos?: number;
|
|
108
|
+
lastModifiedTime?: number;
|
|
109
|
+
}
|
|
110
|
+
export interface ListRetainedMessagesResponse {
|
|
111
|
+
retainedTopics?: RetainedMessageSummary[];
|
|
112
|
+
nextToken?: string;
|
|
113
|
+
}
|
|
114
|
+
export interface PublishRequest {
|
|
115
|
+
topic: string | undefined;
|
|
116
|
+
qos?: number;
|
|
117
|
+
retain?: boolean;
|
|
118
|
+
payload?: Uint8Array;
|
|
119
|
+
}
|
|
120
|
+
export declare class RequestEntityTooLargeException extends __BaseException {
|
|
121
|
+
readonly name: "RequestEntityTooLargeException";
|
|
122
|
+
readonly $fault: "client";
|
|
123
|
+
constructor(
|
|
124
|
+
opts: __ExceptionOptionType<RequestEntityTooLargeException, __BaseException>
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
export interface UpdateThingShadowRequest {
|
|
128
|
+
thingName: string | undefined;
|
|
129
|
+
shadowName?: string;
|
|
130
|
+
payload: Uint8Array | undefined;
|
|
131
|
+
}
|
|
132
|
+
export interface UpdateThingShadowResponse {
|
|
133
|
+
payload?: Uint8Array;
|
|
134
|
+
}
|
|
135
|
+
export declare const DeleteThingShadowRequestFilterSensitiveLog: (
|
|
136
|
+
obj: DeleteThingShadowRequest
|
|
137
|
+
) => any;
|
|
138
|
+
export declare const DeleteThingShadowResponseFilterSensitiveLog: (
|
|
139
|
+
obj: DeleteThingShadowResponse
|
|
140
|
+
) => any;
|
|
141
|
+
export declare const GetRetainedMessageRequestFilterSensitiveLog: (
|
|
142
|
+
obj: GetRetainedMessageRequest
|
|
143
|
+
) => any;
|
|
144
|
+
export declare const GetRetainedMessageResponseFilterSensitiveLog: (
|
|
145
|
+
obj: GetRetainedMessageResponse
|
|
146
|
+
) => any;
|
|
147
|
+
export declare const GetThingShadowRequestFilterSensitiveLog: (
|
|
148
|
+
obj: GetThingShadowRequest
|
|
149
|
+
) => any;
|
|
150
|
+
export declare const GetThingShadowResponseFilterSensitiveLog: (
|
|
151
|
+
obj: GetThingShadowResponse
|
|
152
|
+
) => any;
|
|
153
|
+
export declare const ListNamedShadowsForThingRequestFilterSensitiveLog: (
|
|
154
|
+
obj: ListNamedShadowsForThingRequest
|
|
155
|
+
) => any;
|
|
156
|
+
export declare const ListNamedShadowsForThingResponseFilterSensitiveLog: (
|
|
157
|
+
obj: ListNamedShadowsForThingResponse
|
|
158
|
+
) => any;
|
|
159
|
+
export declare const ListRetainedMessagesRequestFilterSensitiveLog: (
|
|
160
|
+
obj: ListRetainedMessagesRequest
|
|
161
|
+
) => any;
|
|
162
|
+
export declare const RetainedMessageSummaryFilterSensitiveLog: (
|
|
163
|
+
obj: RetainedMessageSummary
|
|
164
|
+
) => any;
|
|
165
|
+
export declare const ListRetainedMessagesResponseFilterSensitiveLog: (
|
|
166
|
+
obj: ListRetainedMessagesResponse
|
|
167
|
+
) => any;
|
|
168
|
+
export declare const PublishRequestFilterSensitiveLog: (
|
|
169
|
+
obj: PublishRequest
|
|
170
|
+
) => any;
|
|
171
|
+
export declare const UpdateThingShadowRequestFilterSensitiveLog: (
|
|
172
|
+
obj: UpdateThingShadowRequest
|
|
173
|
+
) => any;
|
|
174
|
+
export declare const UpdateThingShadowResponseFilterSensitiveLog: (
|
|
175
|
+
obj: UpdateThingShadowResponse
|
|
176
|
+
) => any;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { IoTDataPlane } from "../IoTDataPlane";
|
|
3
|
-
import { IoTDataPlaneClient } from "../IoTDataPlaneClient";
|
|
4
|
-
export interface IoTDataPlanePaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { IoTDataPlane } from "../IoTDataPlane";
|
|
3
|
+
import { IoTDataPlaneClient } from "../IoTDataPlaneClient";
|
|
4
|
+
export interface IoTDataPlanePaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: IoTDataPlane | IoTDataPlaneClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRetainedMessagesCommandInput,
|
|
4
|
+
ListRetainedMessagesCommandOutput,
|
|
5
|
+
} from "../commands/ListRetainedMessagesCommand";
|
|
6
|
+
import { IoTDataPlanePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRetainedMessages(
|
|
8
|
+
config: IoTDataPlanePaginationConfiguration,
|
|
9
|
+
input: ListRetainedMessagesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRetainedMessagesCommandOutput>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListRetainedMessagesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListRetainedMessagesPaginator";
|