@aws-sdk/client-iot-data-plane 3.928.0 → 3.930.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 +540 -512
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/IoTDataPlaneClient.js +2 -0
- package/dist-es/commands/DeleteConnectionCommand.js +3 -9
- package/dist-es/commands/DeleteThingShadowCommand.js +3 -9
- package/dist-es/commands/GetRetainedMessageCommand.js +3 -9
- package/dist-es/commands/GetThingShadowCommand.js +3 -9
- package/dist-es/commands/ListNamedShadowsForThingCommand.js +3 -9
- package/dist-es/commands/ListRetainedMessagesCommand.js +3 -9
- package/dist-es/commands/PublishCommand.js +3 -9
- package/dist-es/commands/UpdateThingShadowCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +506 -0
- package/dist-types/IoTDataPlaneClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +40 -0
- package/dist-types/ts3.4/IoTDataPlaneClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +46 -0
- package/package.json +34 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -440
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -74
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -101
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
DeleteConnectionCommandInput,
|
|
8
|
-
DeleteConnectionCommandOutput,
|
|
9
|
-
} from "../commands/DeleteConnectionCommand";
|
|
10
|
-
import {
|
|
11
|
-
DeleteThingShadowCommandInput,
|
|
12
|
-
DeleteThingShadowCommandOutput,
|
|
13
|
-
} from "../commands/DeleteThingShadowCommand";
|
|
14
|
-
import {
|
|
15
|
-
GetRetainedMessageCommandInput,
|
|
16
|
-
GetRetainedMessageCommandOutput,
|
|
17
|
-
} from "../commands/GetRetainedMessageCommand";
|
|
18
|
-
import {
|
|
19
|
-
GetThingShadowCommandInput,
|
|
20
|
-
GetThingShadowCommandOutput,
|
|
21
|
-
} from "../commands/GetThingShadowCommand";
|
|
22
|
-
import {
|
|
23
|
-
ListNamedShadowsForThingCommandInput,
|
|
24
|
-
ListNamedShadowsForThingCommandOutput,
|
|
25
|
-
} from "../commands/ListNamedShadowsForThingCommand";
|
|
26
|
-
import {
|
|
27
|
-
ListRetainedMessagesCommandInput,
|
|
28
|
-
ListRetainedMessagesCommandOutput,
|
|
29
|
-
} from "../commands/ListRetainedMessagesCommand";
|
|
30
|
-
import {
|
|
31
|
-
PublishCommandInput,
|
|
32
|
-
PublishCommandOutput,
|
|
33
|
-
} from "../commands/PublishCommand";
|
|
34
|
-
import {
|
|
35
|
-
UpdateThingShadowCommandInput,
|
|
36
|
-
UpdateThingShadowCommandOutput,
|
|
37
|
-
} from "../commands/UpdateThingShadowCommand";
|
|
38
|
-
export declare const se_DeleteConnectionCommand: (
|
|
39
|
-
input: DeleteConnectionCommandInput,
|
|
40
|
-
context: __SerdeContext
|
|
41
|
-
) => Promise<__HttpRequest>;
|
|
42
|
-
export declare const se_DeleteThingShadowCommand: (
|
|
43
|
-
input: DeleteThingShadowCommandInput,
|
|
44
|
-
context: __SerdeContext
|
|
45
|
-
) => Promise<__HttpRequest>;
|
|
46
|
-
export declare const se_GetRetainedMessageCommand: (
|
|
47
|
-
input: GetRetainedMessageCommandInput,
|
|
48
|
-
context: __SerdeContext
|
|
49
|
-
) => Promise<__HttpRequest>;
|
|
50
|
-
export declare const se_GetThingShadowCommand: (
|
|
51
|
-
input: GetThingShadowCommandInput,
|
|
52
|
-
context: __SerdeContext
|
|
53
|
-
) => Promise<__HttpRequest>;
|
|
54
|
-
export declare const se_ListNamedShadowsForThingCommand: (
|
|
55
|
-
input: ListNamedShadowsForThingCommandInput,
|
|
56
|
-
context: __SerdeContext
|
|
57
|
-
) => Promise<__HttpRequest>;
|
|
58
|
-
export declare const se_ListRetainedMessagesCommand: (
|
|
59
|
-
input: ListRetainedMessagesCommandInput,
|
|
60
|
-
context: __SerdeContext
|
|
61
|
-
) => Promise<__HttpRequest>;
|
|
62
|
-
export declare const se_PublishCommand: (
|
|
63
|
-
input: PublishCommandInput,
|
|
64
|
-
context: __SerdeContext
|
|
65
|
-
) => Promise<__HttpRequest>;
|
|
66
|
-
export declare const se_UpdateThingShadowCommand: (
|
|
67
|
-
input: UpdateThingShadowCommandInput,
|
|
68
|
-
context: __SerdeContext
|
|
69
|
-
) => Promise<__HttpRequest>;
|
|
70
|
-
export declare const de_DeleteConnectionCommand: (
|
|
71
|
-
output: __HttpResponse,
|
|
72
|
-
context: __SerdeContext
|
|
73
|
-
) => Promise<DeleteConnectionCommandOutput>;
|
|
74
|
-
export declare const de_DeleteThingShadowCommand: (
|
|
75
|
-
output: __HttpResponse,
|
|
76
|
-
context: __SerdeContext
|
|
77
|
-
) => Promise<DeleteThingShadowCommandOutput>;
|
|
78
|
-
export declare const de_GetRetainedMessageCommand: (
|
|
79
|
-
output: __HttpResponse,
|
|
80
|
-
context: __SerdeContext
|
|
81
|
-
) => Promise<GetRetainedMessageCommandOutput>;
|
|
82
|
-
export declare const de_GetThingShadowCommand: (
|
|
83
|
-
output: __HttpResponse,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<GetThingShadowCommandOutput>;
|
|
86
|
-
export declare const de_ListNamedShadowsForThingCommand: (
|
|
87
|
-
output: __HttpResponse,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<ListNamedShadowsForThingCommandOutput>;
|
|
90
|
-
export declare const de_ListRetainedMessagesCommand: (
|
|
91
|
-
output: __HttpResponse,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<ListRetainedMessagesCommandOutput>;
|
|
94
|
-
export declare const de_PublishCommand: (
|
|
95
|
-
output: __HttpResponse,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<PublishCommandOutput>;
|
|
98
|
-
export declare const de_UpdateThingShadowCommand: (
|
|
99
|
-
output: __HttpResponse,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<UpdateThingShadowCommandOutput>;
|