@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 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 { DeleteThingShadowCommandInput, DeleteThingShadowCommandOutput } from "./commands/DeleteThingShadowCommand";
3
- import { GetRetainedMessageCommandInput, GetRetainedMessageCommandOutput } from "./commands/GetRetainedMessageCommand";
4
- import { GetThingShadowCommandInput, GetThingShadowCommandOutput } from "./commands/GetThingShadowCommand";
5
- import { ListNamedShadowsForThingCommandInput, ListNamedShadowsForThingCommandOutput } from "./commands/ListNamedShadowsForThingCommand";
6
- import { ListRetainedMessagesCommandInput, ListRetainedMessagesCommandOutput } from "./commands/ListRetainedMessagesCommand";
7
- import { PublishCommandInput, PublishCommandOutput } from "./commands/PublishCommand";
8
- import { UpdateThingShadowCommandInput, UpdateThingShadowCommandOutput } from "./commands/UpdateThingShadowCommand";
9
- import { IoTDataPlaneClient } from "./IoTDataPlaneClient";
10
-
11
- export declare class IoTDataPlane extends IoTDataPlaneClient {
12
-
13
- deleteThingShadow(args: DeleteThingShadowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteThingShadowCommandOutput>;
14
- deleteThingShadow(args: DeleteThingShadowCommandInput, cb: (err: any, data?: DeleteThingShadowCommandOutput) => void): void;
15
- deleteThingShadow(args: DeleteThingShadowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteThingShadowCommandOutput) => void): void;
16
-
17
- getRetainedMessage(args: GetRetainedMessageCommandInput, options?: __HttpHandlerOptions): Promise<GetRetainedMessageCommandOutput>;
18
- getRetainedMessage(args: GetRetainedMessageCommandInput, cb: (err: any, data?: GetRetainedMessageCommandOutput) => void): void;
19
- getRetainedMessage(args: GetRetainedMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRetainedMessageCommandOutput) => void): void;
20
-
21
- getThingShadow(args: GetThingShadowCommandInput, options?: __HttpHandlerOptions): Promise<GetThingShadowCommandOutput>;
22
- getThingShadow(args: GetThingShadowCommandInput, cb: (err: any, data?: GetThingShadowCommandOutput) => void): void;
23
- getThingShadow(args: GetThingShadowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetThingShadowCommandOutput) => void): void;
24
-
25
- listNamedShadowsForThing(args: ListNamedShadowsForThingCommandInput, options?: __HttpHandlerOptions): Promise<ListNamedShadowsForThingCommandOutput>;
26
- listNamedShadowsForThing(args: ListNamedShadowsForThingCommandInput, cb: (err: any, data?: ListNamedShadowsForThingCommandOutput) => void): void;
27
- listNamedShadowsForThing(args: ListNamedShadowsForThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNamedShadowsForThingCommandOutput) => void): void;
28
-
29
- listRetainedMessages(args: ListRetainedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListRetainedMessagesCommandOutput>;
30
- listRetainedMessages(args: ListRetainedMessagesCommandInput, cb: (err: any, data?: ListRetainedMessagesCommandOutput) => void): void;
31
- listRetainedMessages(args: ListRetainedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRetainedMessagesCommandOutput) => void): void;
32
-
33
- publish(args: PublishCommandInput, options?: __HttpHandlerOptions): Promise<PublishCommandOutput>;
34
- publish(args: PublishCommandInput, cb: (err: any, data?: PublishCommandOutput) => void): void;
35
- publish(args: PublishCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishCommandOutput) => void): void;
36
-
37
- updateThingShadow(args: UpdateThingShadowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateThingShadowCommandOutput>;
38
- updateThingShadow(args: UpdateThingShadowCommandInput, cb: (err: any, data?: UpdateThingShadowCommandOutput) => void): void;
39
- updateThingShadow(args: UpdateThingShadowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateThingShadowCommandOutput) => void): void;
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 { 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 { DeleteThingShadowCommandInput, DeleteThingShadowCommandOutput } from "./commands/DeleteThingShadowCommand";
10
- import { GetRetainedMessageCommandInput, GetRetainedMessageCommandOutput } from "./commands/GetRetainedMessageCommand";
11
- import { GetThingShadowCommandInput, GetThingShadowCommandOutput } from "./commands/GetThingShadowCommand";
12
- import { ListNamedShadowsForThingCommandInput, ListNamedShadowsForThingCommandOutput } from "./commands/ListNamedShadowsForThingCommand";
13
- import { ListRetainedMessagesCommandInput, ListRetainedMessagesCommandOutput } from "./commands/ListRetainedMessagesCommand";
14
- import { PublishCommandInput, PublishCommandOutput } from "./commands/PublishCommand";
15
- import { UpdateThingShadowCommandInput, UpdateThingShadowCommandOutput } from "./commands/UpdateThingShadowCommand";
16
- export declare type ServiceInputTypes = DeleteThingShadowCommandInput | GetRetainedMessageCommandInput | GetThingShadowCommandInput | ListNamedShadowsForThingCommandInput | ListRetainedMessagesCommandInput | PublishCommandInput | UpdateThingShadowCommandInput;
17
- export declare type ServiceOutputTypes = DeleteThingShadowCommandOutput | GetRetainedMessageCommandOutput | GetThingShadowCommandOutput | ListNamedShadowsForThingCommandOutput | ListRetainedMessagesCommandOutput | PublishCommandOutput | UpdateThingShadowCommandOutput;
18
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
19
-
20
- requestHandler?: __HttpHandler;
21
-
22
- sha256?: __HashConstructor;
23
-
24
- urlParser?: __UrlParser;
25
-
26
- bodyLengthChecker?: __BodyLengthCalculator;
27
-
28
- streamCollector?: __StreamCollector;
29
-
30
- base64Decoder?: __Decoder;
31
-
32
- base64Encoder?: __Encoder;
33
-
34
- utf8Decoder?: __Decoder;
35
-
36
- utf8Encoder?: __Encoder;
37
-
38
- runtime?: string;
39
-
40
- disableHostPrefix?: boolean;
41
-
42
- maxAttempts?: number | __Provider<number>;
43
-
44
- retryMode?: string | __Provider<string>;
45
-
46
- logger?: __Logger;
47
-
48
- useDualstackEndpoint?: boolean | __Provider<boolean>;
49
-
50
- useFipsEndpoint?: boolean | __Provider<boolean>;
51
-
52
- serviceId?: string;
53
-
54
- region?: string | __Provider<string>;
55
-
56
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
57
-
58
- regionInfoProvider?: RegionInfoProvider;
59
-
60
- defaultUserAgentProvider?: Provider<__UserAgent>;
61
-
62
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
63
- }
64
- declare type IoTDataPlaneClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
65
-
66
- export interface IoTDataPlaneClientConfig extends IoTDataPlaneClientConfigType {
67
- }
68
- declare type IoTDataPlaneClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
69
-
70
- export interface IoTDataPlaneClientResolvedConfig extends IoTDataPlaneClientResolvedConfigType {
71
- }
72
-
73
- export declare class IoTDataPlaneClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IoTDataPlaneClientResolvedConfig> {
74
-
75
- readonly config: IoTDataPlaneClientResolvedConfig;
76
- constructor(configuration: IoTDataPlaneClientConfig);
77
-
78
- destroy(): void;
79
- }
80
- 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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient";
4
- import { DeleteThingShadowRequest, DeleteThingShadowResponse } from "../models/models_0";
5
- export interface DeleteThingShadowCommandInput extends DeleteThingShadowRequest {
6
- }
7
- export interface DeleteThingShadowCommandOutput extends DeleteThingShadowResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteThingShadowCommand extends $Command<DeleteThingShadowCommandInput, DeleteThingShadowCommandOutput, IoTDataPlaneClientResolvedConfig> {
11
- readonly input: DeleteThingShadowCommandInput;
12
- constructor(input: DeleteThingShadowCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTDataPlaneClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteThingShadowCommandInput, DeleteThingShadowCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient";
4
- import { GetRetainedMessageRequest, GetRetainedMessageResponse } from "../models/models_0";
5
- export interface GetRetainedMessageCommandInput extends GetRetainedMessageRequest {
6
- }
7
- export interface GetRetainedMessageCommandOutput extends GetRetainedMessageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetRetainedMessageCommand extends $Command<GetRetainedMessageCommandInput, GetRetainedMessageCommandOutput, IoTDataPlaneClientResolvedConfig> {
11
- readonly input: GetRetainedMessageCommandInput;
12
- constructor(input: GetRetainedMessageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTDataPlaneClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRetainedMessageCommandInput, GetRetainedMessageCommandOutput>;
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
+ 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient";
4
- import { GetThingShadowRequest, GetThingShadowResponse } from "../models/models_0";
5
- export interface GetThingShadowCommandInput extends GetThingShadowRequest {
6
- }
7
- export interface GetThingShadowCommandOutput extends GetThingShadowResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetThingShadowCommand extends $Command<GetThingShadowCommandInput, GetThingShadowCommandOutput, IoTDataPlaneClientResolvedConfig> {
11
- readonly input: GetThingShadowCommandInput;
12
- constructor(input: GetThingShadowCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTDataPlaneClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetThingShadowCommandInput, GetThingShadowCommandOutput>;
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
+ 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
+ }