@aws-sdk/client-iot-data-plane 3.477.0 → 3.481.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/commands/DeleteThingShadowCommand.js +18 -41
- package/dist-cjs/commands/GetRetainedMessageCommand.js +18 -41
- package/dist-cjs/commands/GetThingShadowCommand.js +18 -41
- package/dist-cjs/commands/ListNamedShadowsForThingCommand.js +18 -41
- package/dist-cjs/commands/ListRetainedMessagesCommand.js +18 -41
- package/dist-cjs/commands/PublishCommand.js +18 -41
- package/dist-cjs/commands/UpdateThingShadowCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-cjs/pagination/ListRetainedMessagesPaginator.js +2 -24
- package/dist-es/commands/DeleteThingShadowCommand.js +18 -41
- package/dist-es/commands/GetRetainedMessageCommand.js +18 -41
- package/dist-es/commands/GetThingShadowCommand.js +18 -41
- package/dist-es/commands/ListNamedShadowsForThingCommand.js +18 -41
- package/dist-es/commands/ListRetainedMessagesCommand.js +18 -41
- package/dist-es/commands/PublishCommand.js +18 -41
- package/dist-es/commands/UpdateThingShadowCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-es/pagination/ListRetainedMessagesPaginator.js +2 -23
- package/dist-types/commands/DeleteThingShadowCommand.d.ts +6 -21
- package/dist-types/commands/GetRetainedMessageCommand.d.ts +6 -21
- package/dist-types/commands/GetThingShadowCommand.d.ts +6 -21
- package/dist-types/commands/ListNamedShadowsForThingCommand.d.ts +6 -21
- package/dist-types/commands/ListRetainedMessagesCommand.d.ts +6 -21
- package/dist-types/commands/PublishCommand.d.ts +6 -21
- package/dist-types/commands/UpdateThingShadowCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/pagination/ListRetainedMessagesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteThingShadowCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetRetainedMessageCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetThingShadowCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListNamedShadowsForThingCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListRetainedMessagesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/PublishCommand.d.ts +11 -20
- package/dist-types/ts3.4/commands/UpdateThingShadowCommand.d.ts +13 -20
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/pagination/ListRetainedMessagesPaginator.d.ts +3 -3
- package/package.json +11 -11
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient";
|
|
5
4
|
import { ListRetainedMessagesRequest, ListRetainedMessagesResponse } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListRetainedMessagesCommandInput extends ListRetainedMessagesRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListRetainedMessagesCommandOutput extends ListRetainedMessagesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListRetainedMessagesCommand_base: {
|
|
24
|
+
new (input: ListRetainedMessagesCommandInput): import("@smithy/smithy-client").CommandImpl<ListRetainedMessagesCommandInput, ListRetainedMessagesCommandOutput, IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists summary information about the retained messages stored for the account.</p>
|
|
@@ -87,23 +90,5 @@ export interface ListRetainedMessagesCommandOutput extends ListRetainedMessagesR
|
|
|
87
90
|
* <p>Base exception class for all service exceptions from IoTDataPlane service.</p>
|
|
88
91
|
*
|
|
89
92
|
*/
|
|
90
|
-
export declare class ListRetainedMessagesCommand extends
|
|
91
|
-
readonly input: ListRetainedMessagesCommandInput;
|
|
92
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
93
|
-
/**
|
|
94
|
-
* @public
|
|
95
|
-
*/
|
|
96
|
-
constructor(input: ListRetainedMessagesCommandInput);
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTDataPlaneClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRetainedMessagesCommandInput, ListRetainedMessagesCommandOutput>;
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
private serialize;
|
|
105
|
-
/**
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
|
-
private deserialize;
|
|
93
|
+
export declare class ListRetainedMessagesCommand extends ListRetainedMessagesCommand_base {
|
|
109
94
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import { BlobPayloadInputTypes,
|
|
2
|
+
import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient";
|
|
5
4
|
import { PublishRequest } from "../models/models_0";
|
|
6
5
|
/**
|
|
@@ -27,6 +26,10 @@ export interface PublishCommandInput extends PublishCommandInputType {
|
|
|
27
26
|
*/
|
|
28
27
|
export interface PublishCommandOutput extends __MetadataBearer {
|
|
29
28
|
}
|
|
29
|
+
declare const PublishCommand_base: {
|
|
30
|
+
new (input: PublishCommandInput): import("@smithy/smithy-client").CommandImpl<PublishCommandInput, PublishCommandOutput, IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
32
|
+
};
|
|
30
33
|
/**
|
|
31
34
|
* @public
|
|
32
35
|
* <p>Publishes an MQTT message.</p>
|
|
@@ -85,23 +88,5 @@ export interface PublishCommandOutput extends __MetadataBearer {
|
|
|
85
88
|
* <p>Base exception class for all service exceptions from IoTDataPlane service.</p>
|
|
86
89
|
*
|
|
87
90
|
*/
|
|
88
|
-
export declare class PublishCommand extends
|
|
89
|
-
readonly input: PublishCommandInput;
|
|
90
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
-
/**
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
constructor(input: PublishCommandInput);
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTDataPlaneClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PublishCommandInput, PublishCommandOutput>;
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
private serialize;
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
private deserialize;
|
|
91
|
+
export declare class PublishCommand extends PublishCommand_base {
|
|
107
92
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import { BlobPayloadInputTypes,
|
|
2
|
+
import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
|
|
5
4
|
import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient";
|
|
6
5
|
import { UpdateThingShadowRequest, UpdateThingShadowResponse } from "../models/models_0";
|
|
@@ -34,6 +33,10 @@ export type UpdateThingShadowCommandOutputType = Omit<UpdateThingShadowResponse,
|
|
|
34
33
|
*/
|
|
35
34
|
export interface UpdateThingShadowCommandOutput extends UpdateThingShadowCommandOutputType, __MetadataBearer {
|
|
36
35
|
}
|
|
36
|
+
declare const UpdateThingShadowCommand_base: {
|
|
37
|
+
new (input: UpdateThingShadowCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateThingShadowCommandInput, UpdateThingShadowCommandOutput, IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
37
40
|
/**
|
|
38
41
|
* @public
|
|
39
42
|
* <p>Updates the shadow for the specified thing.</p>
|
|
@@ -96,23 +99,5 @@ export interface UpdateThingShadowCommandOutput extends UpdateThingShadowCommand
|
|
|
96
99
|
* <p>Base exception class for all service exceptions from IoTDataPlane service.</p>
|
|
97
100
|
*
|
|
98
101
|
*/
|
|
99
|
-
export declare class UpdateThingShadowCommand extends
|
|
100
|
-
readonly input: UpdateThingShadowCommandInput;
|
|
101
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
102
|
-
/**
|
|
103
|
-
* @public
|
|
104
|
-
*/
|
|
105
|
-
constructor(input: UpdateThingShadowCommandInput);
|
|
106
|
-
/**
|
|
107
|
-
* @internal
|
|
108
|
-
*/
|
|
109
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTDataPlaneClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateThingShadowCommandInput, UpdateThingShadowCommandOutput>;
|
|
110
|
-
/**
|
|
111
|
-
* @internal
|
|
112
|
-
*/
|
|
113
|
-
private serialize;
|
|
114
|
-
/**
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
|
-
private deserialize;
|
|
102
|
+
export declare class UpdateThingShadowCommand extends UpdateThingShadowCommand_base {
|
|
118
103
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -4,4 +4,4 @@ import { IoTDataPlanePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRetainedMessages: (config: IoTDataPlanePaginationConfiguration, input: ListRetainedMessagesCommandInput, ...rest: any[]) => Paginator<ListRetainedMessagesCommandOutput>;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
|
|
10
4
|
import {
|
|
11
5
|
IoTDataPlaneClientResolvedConfig,
|
|
@@ -28,19 +22,16 @@ export type DeleteThingShadowCommandOutputType = Pick<
|
|
|
28
22
|
export interface DeleteThingShadowCommandOutput
|
|
29
23
|
extends DeleteThingShadowCommandOutputType,
|
|
30
24
|
__MetadataBearer {}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
private serialize;
|
|
45
|
-
private deserialize;
|
|
46
|
-
}
|
|
25
|
+
declare const DeleteThingShadowCommand_base: {
|
|
26
|
+
new (
|
|
27
|
+
input: DeleteThingShadowCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
DeleteThingShadowCommandInput,
|
|
30
|
+
DeleteThingShadowCommandOutput,
|
|
31
|
+
IoTDataPlaneClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class DeleteThingShadowCommand extends DeleteThingShadowCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTDataPlaneClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,19 +15,16 @@ export interface GetRetainedMessageCommandInput
|
|
|
21
15
|
export interface GetRetainedMessageCommandOutput
|
|
22
16
|
extends GetRetainedMessageResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const GetRetainedMessageCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetRetainedMessageCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetRetainedMessageCommandInput,
|
|
23
|
+
GetRetainedMessageCommandOutput,
|
|
24
|
+
IoTDataPlaneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetRetainedMessageCommand extends GetRetainedMessageCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
|
|
10
4
|
import {
|
|
11
5
|
IoTDataPlaneClientResolvedConfig,
|
|
@@ -27,19 +21,16 @@ export type GetThingShadowCommandOutputType = Pick<
|
|
|
27
21
|
export interface GetThingShadowCommandOutput
|
|
28
22
|
extends GetThingShadowCommandOutputType,
|
|
29
23
|
__MetadataBearer {}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
private serialize;
|
|
44
|
-
private deserialize;
|
|
45
|
-
}
|
|
24
|
+
declare const GetThingShadowCommand_base: {
|
|
25
|
+
new (
|
|
26
|
+
input: GetThingShadowCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetThingShadowCommandInput,
|
|
29
|
+
GetThingShadowCommandOutput,
|
|
30
|
+
IoTDataPlaneClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetThingShadowCommand extends GetThingShadowCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTDataPlaneClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface ListNamedShadowsForThingCommandInput
|
|
|
21
15
|
export interface ListNamedShadowsForThingCommandOutput
|
|
22
16
|
extends ListNamedShadowsForThingResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: ListNamedShadowsForThingCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: ListNamedShadowsForThingCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: IoTDataPlaneClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const ListNamedShadowsForThingCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListNamedShadowsForThingCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
ListNamedShadowsForThingCommandInput,
|
|
38
|
-
ListNamedShadowsForThingCommandOutput
|
|
23
|
+
ListNamedShadowsForThingCommandOutput,
|
|
24
|
+
IoTDataPlaneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListNamedShadowsForThingCommand extends ListNamedShadowsForThingCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
IoTDataPlaneClientResolvedConfig,
|
|
11
5
|
ServiceInputTypes,
|
|
@@ -21,22 +15,16 @@ export interface ListRetainedMessagesCommandInput
|
|
|
21
15
|
export interface ListRetainedMessagesCommandOutput
|
|
22
16
|
extends ListRetainedMessagesResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: ListRetainedMessagesCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: ListRetainedMessagesCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: IoTDataPlaneClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const ListRetainedMessagesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListRetainedMessagesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
ListRetainedMessagesCommandInput,
|
|
38
|
-
ListRetainedMessagesCommandOutput
|
|
23
|
+
ListRetainedMessagesCommandOutput,
|
|
24
|
+
IoTDataPlaneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListRetainedMessagesCommand extends ListRetainedMessagesCommand_base {}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
2
|
import {
|
|
4
3
|
BlobPayloadInputTypes,
|
|
5
|
-
Handler,
|
|
6
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
7
4
|
MetadataBearer as __MetadataBearer,
|
|
8
|
-
MiddlewareStack,
|
|
9
5
|
} from "@smithy/types";
|
|
10
6
|
import {
|
|
11
7
|
IoTDataPlaneClientResolvedConfig,
|
|
@@ -22,19 +18,14 @@ export type PublishCommandInputType = Pick<
|
|
|
22
18
|
};
|
|
23
19
|
export interface PublishCommandInput extends PublishCommandInputType {}
|
|
24
20
|
export interface PublishCommandOutput extends __MetadataBearer {}
|
|
25
|
-
|
|
26
|
-
PublishCommandInput
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
options?: __HttpHandlerOptions
|
|
37
|
-
): Handler<PublishCommandInput, PublishCommandOutput>;
|
|
38
|
-
private serialize;
|
|
39
|
-
private deserialize;
|
|
40
|
-
}
|
|
21
|
+
declare const PublishCommand_base: {
|
|
22
|
+
new (input: PublishCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PublishCommandInput,
|
|
24
|
+
PublishCommandOutput,
|
|
25
|
+
IoTDataPlaneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
30
|
+
};
|
|
31
|
+
export declare class PublishCommand extends PublishCommand_base {}
|
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
2
|
import {
|
|
4
3
|
BlobPayloadInputTypes,
|
|
5
|
-
Handler,
|
|
6
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
7
4
|
MetadataBearer as __MetadataBearer,
|
|
8
|
-
MiddlewareStack,
|
|
9
5
|
} from "@smithy/types";
|
|
10
6
|
import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
|
|
11
7
|
import {
|
|
@@ -35,19 +31,16 @@ export type UpdateThingShadowCommandOutputType = Pick<
|
|
|
35
31
|
export interface UpdateThingShadowCommandOutput
|
|
36
32
|
extends UpdateThingShadowCommandOutputType,
|
|
37
33
|
__MetadataBearer {}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
private serialize;
|
|
52
|
-
private deserialize;
|
|
53
|
-
}
|
|
34
|
+
declare const UpdateThingShadowCommand_base: {
|
|
35
|
+
new (
|
|
36
|
+
input: UpdateThingShadowCommandInput
|
|
37
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
38
|
+
UpdateThingShadowCommandInput,
|
|
39
|
+
UpdateThingShadowCommandOutput,
|
|
40
|
+
IoTDataPlaneClientResolvedConfig,
|
|
41
|
+
ServiceInputTypes,
|
|
42
|
+
ServiceOutputTypes
|
|
43
|
+
>;
|
|
44
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
45
|
+
};
|
|
46
|
+
export declare class UpdateThingShadowCommand extends UpdateThingShadowCommand_base {}
|
|
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
25
25
|
ClientInputEndpointParameters & {
|
|
26
26
|
defaultSigningName: string;
|
|
27
27
|
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
28
46
|
export interface EndpointParameters extends __EndpointParameters {
|
|
29
47
|
Region?: string;
|
|
30
48
|
UseDualStack?: boolean;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListRetainedMessagesCommandOutput,
|
|
5
5
|
} from "../commands/ListRetainedMessagesCommand";
|
|
6
6
|
import { IoTDataPlanePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRetainedMessages: (
|
|
8
8
|
config: IoTDataPlanePaginationConfiguration,
|
|
9
9
|
input: ListRetainedMessagesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRetainedMessagesCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-data-plane",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Data Plane Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.481.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,40 +20,40 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.481.0",
|
|
24
|
+
"@aws-sdk/core": "3.481.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.481.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|
|
37
|
-
"@smithy/core": "^1.2.
|
|
37
|
+
"@smithy/core": "^1.2.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
39
39
|
"@smithy/hash-node": "^2.0.17",
|
|
40
40
|
"@smithy/invalid-dependency": "^2.0.15",
|
|
41
41
|
"@smithy/middleware-content-length": "^2.0.17",
|
|
42
42
|
"@smithy/middleware-endpoint": "^2.2.3",
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.25",
|
|
44
44
|
"@smithy/middleware-serde": "^2.0.15",
|
|
45
45
|
"@smithy/middleware-stack": "^2.0.9",
|
|
46
46
|
"@smithy/node-config-provider": "^2.1.8",
|
|
47
47
|
"@smithy/node-http-handler": "^2.2.1",
|
|
48
48
|
"@smithy/protocol-http": "^3.0.11",
|
|
49
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
+
"@smithy/smithy-client": "^2.2.0",
|
|
50
50
|
"@smithy/types": "^2.7.0",
|
|
51
51
|
"@smithy/url-parser": "^2.0.15",
|
|
52
52
|
"@smithy/util-base64": "^2.0.1",
|
|
53
53
|
"@smithy/util-body-length-browser": "^2.0.1",
|
|
54
54
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.23",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.30",
|
|
57
57
|
"@smithy/util-endpoints": "^1.0.7",
|
|
58
58
|
"@smithy/util-retry": "^2.0.8",
|
|
59
59
|
"@smithy/util-stream": "^2.0.23",
|