@aws-sdk/client-iot-wireless 3.45.0 → 3.47.2
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 +45 -0
- package/README.md +11 -1
- package/dist-cjs/IoTWireless.js +30 -0
- package/dist-cjs/commands/DeleteQueuedMessagesCommand.js +36 -0
- package/dist-cjs/commands/ListQueuedMessagesCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +42 -54
- package/dist-cjs/pagination/ListQueuedMessagesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +252 -4
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/IoTWireless.js +30 -0
- package/dist-es/commands/DeleteQueuedMessagesCommand.js +39 -0
- package/dist-es/commands/ListQueuedMessagesCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +24 -32
- package/dist-es/pagination/ListQueuedMessagesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +277 -0
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/IoTWireless.d.ts +25 -1
- package/dist-types/IoTWirelessClient.d.ts +20 -4
- package/dist-types/commands/DeleteQueuedMessagesCommand.d.ts +35 -0
- package/dist-types/commands/ListQueuedMessagesCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +110 -57
- package/dist-types/pagination/ListQueuedMessagesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/IoTWireless.d.ts +10 -0
- package/dist-types/ts3.4/IoTWirelessClient.d.ts +7 -3
- package/dist-types/ts3.4/commands/DeleteQueuedMessagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +66 -37
- package/dist-types/ts3.4/pagination/ListQueuedMessagesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +39 -46
|
@@ -20,6 +20,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
|
|
|
20
20
|
import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
|
|
21
21
|
import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
|
|
22
22
|
import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
|
|
23
|
+
import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "./commands/DeleteQueuedMessagesCommand";
|
|
23
24
|
import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
|
|
24
25
|
import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
|
|
25
26
|
import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
|
|
@@ -58,6 +59,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./comma
|
|
|
58
59
|
import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
|
|
59
60
|
import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
|
|
60
61
|
import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
|
|
62
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "./commands/ListQueuedMessagesCommand";
|
|
61
63
|
import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
|
|
62
64
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
63
65
|
import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "./commands/ListWirelessDevicesCommand";
|
|
@@ -172,6 +174,10 @@ export declare class IoTWireless extends IoTWirelessClient {
|
|
|
172
174
|
deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
|
|
173
175
|
deleteMulticastGroup(args: DeleteMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMulticastGroupCommandOutput) => void): void;
|
|
174
176
|
|
|
177
|
+
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteQueuedMessagesCommandOutput>;
|
|
178
|
+
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, cb: (err: any, data?: DeleteQueuedMessagesCommandOutput) => void): void;
|
|
179
|
+
deleteQueuedMessages(args: DeleteQueuedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQueuedMessagesCommandOutput) => void): void;
|
|
180
|
+
|
|
175
181
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceProfileCommandOutput>;
|
|
176
182
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
|
|
177
183
|
deleteServiceProfile(args: DeleteServiceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceProfileCommandOutput) => void): void;
|
|
@@ -324,6 +330,10 @@ export declare class IoTWireless extends IoTWirelessClient {
|
|
|
324
330
|
listPartnerAccounts(args: ListPartnerAccountsCommandInput, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
|
|
325
331
|
listPartnerAccounts(args: ListPartnerAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPartnerAccountsCommandOutput) => void): void;
|
|
326
332
|
|
|
333
|
+
listQueuedMessages(args: ListQueuedMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListQueuedMessagesCommandOutput>;
|
|
334
|
+
listQueuedMessages(args: ListQueuedMessagesCommandInput, cb: (err: any, data?: ListQueuedMessagesCommandOutput) => void): void;
|
|
335
|
+
listQueuedMessages(args: ListQueuedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQueuedMessagesCommandOutput) => void): void;
|
|
336
|
+
|
|
327
337
|
listServiceProfiles(args: ListServiceProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceProfilesCommandOutput>;
|
|
328
338
|
listServiceProfiles(args: ListServiceProfilesCommandInput, cb: (err: any, data?: ListServiceProfilesCommandOutput) => void): void;
|
|
329
339
|
listServiceProfiles(args: ListServiceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceProfilesCommandOutput) => void): void;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { 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
9
|
import { AssociateAwsAccountWithPartnerAccountCommandInput, AssociateAwsAccountWithPartnerAccountCommandOutput } from "./commands/AssociateAwsAccountWithPartnerAccountCommand";
|
|
10
10
|
import { AssociateMulticastGroupWithFuotaTaskCommandInput, AssociateMulticastGroupWithFuotaTaskCommandOutput } from "./commands/AssociateMulticastGroupWithFuotaTaskCommand";
|
|
@@ -27,6 +27,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
|
|
|
27
27
|
import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "./commands/DeleteDeviceProfileCommand";
|
|
28
28
|
import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "./commands/DeleteFuotaTaskCommand";
|
|
29
29
|
import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "./commands/DeleteMulticastGroupCommand";
|
|
30
|
+
import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "./commands/DeleteQueuedMessagesCommand";
|
|
30
31
|
import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "./commands/DeleteServiceProfileCommand";
|
|
31
32
|
import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "./commands/DeleteWirelessDeviceCommand";
|
|
32
33
|
import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "./commands/DeleteWirelessGatewayCommand";
|
|
@@ -65,6 +66,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./comma
|
|
|
65
66
|
import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
|
|
66
67
|
import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
|
|
67
68
|
import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
|
|
69
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "./commands/ListQueuedMessagesCommand";
|
|
68
70
|
import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
|
|
69
71
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
70
72
|
import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "./commands/ListWirelessDevicesCommand";
|
|
@@ -91,8 +93,8 @@ import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } f
|
|
|
91
93
|
import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
|
|
92
94
|
import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
|
|
93
95
|
import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
|
|
94
|
-
export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateMulticastGroupWithFuotaTaskCommandInput | AssociateWirelessDeviceWithFuotaTaskCommandInput | AssociateWirelessDeviceWithMulticastGroupCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CancelMulticastGroupSessionCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateFuotaTaskCommandInput | CreateMulticastGroupCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteFuotaTaskCommandInput | DeleteMulticastGroupCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateMulticastGroupFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromMulticastGroupCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetFuotaTaskCommandInput | GetLogLevelsByResourceTypesCommandInput | GetMulticastGroupCommandInput | GetMulticastGroupSessionCommandInput | GetNetworkAnalyzerConfigurationCommandInput | GetPartnerAccountCommandInput | GetResourceEventConfigurationCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListFuotaTasksCommandInput | ListMulticastGroupsByFuotaTaskCommandInput | ListMulticastGroupsCommandInput | ListPartnerAccountsCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToMulticastGroupCommandInput | SendDataToWirelessDeviceCommandInput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput | StartFuotaTaskCommandInput | StartMulticastGroupSessionCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateFuotaTaskCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdateMulticastGroupCommandInput | UpdateNetworkAnalyzerConfigurationCommandInput | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
|
|
95
|
-
export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateMulticastGroupWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithMulticastGroupCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CancelMulticastGroupSessionCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateFuotaTaskCommandOutput | CreateMulticastGroupCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteFuotaTaskCommandOutput | DeleteMulticastGroupCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateMulticastGroupFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromMulticastGroupCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetFuotaTaskCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetMulticastGroupCommandOutput | GetMulticastGroupSessionCommandOutput | GetNetworkAnalyzerConfigurationCommandOutput | GetPartnerAccountCommandOutput | GetResourceEventConfigurationCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListFuotaTasksCommandOutput | ListMulticastGroupsByFuotaTaskCommandOutput | ListMulticastGroupsCommandOutput | ListPartnerAccountsCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToMulticastGroupCommandOutput | SendDataToWirelessDeviceCommandOutput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput | StartFuotaTaskCommandOutput | StartMulticastGroupSessionCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateFuotaTaskCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdateMulticastGroupCommandOutput | UpdateNetworkAnalyzerConfigurationCommandOutput | UpdatePartnerAccountCommandOutput | UpdateResourceEventConfigurationCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
|
|
96
|
+
export declare type ServiceInputTypes = AssociateAwsAccountWithPartnerAccountCommandInput | AssociateMulticastGroupWithFuotaTaskCommandInput | AssociateWirelessDeviceWithFuotaTaskCommandInput | AssociateWirelessDeviceWithMulticastGroupCommandInput | AssociateWirelessDeviceWithThingCommandInput | AssociateWirelessGatewayWithCertificateCommandInput | AssociateWirelessGatewayWithThingCommandInput | CancelMulticastGroupSessionCommandInput | CreateDestinationCommandInput | CreateDeviceProfileCommandInput | CreateFuotaTaskCommandInput | CreateMulticastGroupCommandInput | CreateServiceProfileCommandInput | CreateWirelessDeviceCommandInput | CreateWirelessGatewayCommandInput | CreateWirelessGatewayTaskCommandInput | CreateWirelessGatewayTaskDefinitionCommandInput | DeleteDestinationCommandInput | DeleteDeviceProfileCommandInput | DeleteFuotaTaskCommandInput | DeleteMulticastGroupCommandInput | DeleteQueuedMessagesCommandInput | DeleteServiceProfileCommandInput | DeleteWirelessDeviceCommandInput | DeleteWirelessGatewayCommandInput | DeleteWirelessGatewayTaskCommandInput | DeleteWirelessGatewayTaskDefinitionCommandInput | DisassociateAwsAccountFromPartnerAccountCommandInput | DisassociateMulticastGroupFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromFuotaTaskCommandInput | DisassociateWirelessDeviceFromMulticastGroupCommandInput | DisassociateWirelessDeviceFromThingCommandInput | DisassociateWirelessGatewayFromCertificateCommandInput | DisassociateWirelessGatewayFromThingCommandInput | GetDestinationCommandInput | GetDeviceProfileCommandInput | GetFuotaTaskCommandInput | GetLogLevelsByResourceTypesCommandInput | GetMulticastGroupCommandInput | GetMulticastGroupSessionCommandInput | GetNetworkAnalyzerConfigurationCommandInput | GetPartnerAccountCommandInput | GetResourceEventConfigurationCommandInput | GetResourceLogLevelCommandInput | GetServiceEndpointCommandInput | GetServiceProfileCommandInput | GetWirelessDeviceCommandInput | GetWirelessDeviceStatisticsCommandInput | GetWirelessGatewayCertificateCommandInput | GetWirelessGatewayCommandInput | GetWirelessGatewayFirmwareInformationCommandInput | GetWirelessGatewayStatisticsCommandInput | GetWirelessGatewayTaskCommandInput | GetWirelessGatewayTaskDefinitionCommandInput | ListDestinationsCommandInput | ListDeviceProfilesCommandInput | ListFuotaTasksCommandInput | ListMulticastGroupsByFuotaTaskCommandInput | ListMulticastGroupsCommandInput | ListPartnerAccountsCommandInput | ListQueuedMessagesCommandInput | ListServiceProfilesCommandInput | ListTagsForResourceCommandInput | ListWirelessDevicesCommandInput | ListWirelessGatewayTaskDefinitionsCommandInput | ListWirelessGatewaysCommandInput | PutResourceLogLevelCommandInput | ResetAllResourceLogLevelsCommandInput | ResetResourceLogLevelCommandInput | SendDataToMulticastGroupCommandInput | SendDataToWirelessDeviceCommandInput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandInput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandInput | StartFuotaTaskCommandInput | StartMulticastGroupSessionCommandInput | TagResourceCommandInput | TestWirelessDeviceCommandInput | UntagResourceCommandInput | UpdateDestinationCommandInput | UpdateFuotaTaskCommandInput | UpdateLogLevelsByResourceTypesCommandInput | UpdateMulticastGroupCommandInput | UpdateNetworkAnalyzerConfigurationCommandInput | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
|
|
97
|
+
export declare type ServiceOutputTypes = AssociateAwsAccountWithPartnerAccountCommandOutput | AssociateMulticastGroupWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithFuotaTaskCommandOutput | AssociateWirelessDeviceWithMulticastGroupCommandOutput | AssociateWirelessDeviceWithThingCommandOutput | AssociateWirelessGatewayWithCertificateCommandOutput | AssociateWirelessGatewayWithThingCommandOutput | CancelMulticastGroupSessionCommandOutput | CreateDestinationCommandOutput | CreateDeviceProfileCommandOutput | CreateFuotaTaskCommandOutput | CreateMulticastGroupCommandOutput | CreateServiceProfileCommandOutput | CreateWirelessDeviceCommandOutput | CreateWirelessGatewayCommandOutput | CreateWirelessGatewayTaskCommandOutput | CreateWirelessGatewayTaskDefinitionCommandOutput | DeleteDestinationCommandOutput | DeleteDeviceProfileCommandOutput | DeleteFuotaTaskCommandOutput | DeleteMulticastGroupCommandOutput | DeleteQueuedMessagesCommandOutput | DeleteServiceProfileCommandOutput | DeleteWirelessDeviceCommandOutput | DeleteWirelessGatewayCommandOutput | DeleteWirelessGatewayTaskCommandOutput | DeleteWirelessGatewayTaskDefinitionCommandOutput | DisassociateAwsAccountFromPartnerAccountCommandOutput | DisassociateMulticastGroupFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromFuotaTaskCommandOutput | DisassociateWirelessDeviceFromMulticastGroupCommandOutput | DisassociateWirelessDeviceFromThingCommandOutput | DisassociateWirelessGatewayFromCertificateCommandOutput | DisassociateWirelessGatewayFromThingCommandOutput | GetDestinationCommandOutput | GetDeviceProfileCommandOutput | GetFuotaTaskCommandOutput | GetLogLevelsByResourceTypesCommandOutput | GetMulticastGroupCommandOutput | GetMulticastGroupSessionCommandOutput | GetNetworkAnalyzerConfigurationCommandOutput | GetPartnerAccountCommandOutput | GetResourceEventConfigurationCommandOutput | GetResourceLogLevelCommandOutput | GetServiceEndpointCommandOutput | GetServiceProfileCommandOutput | GetWirelessDeviceCommandOutput | GetWirelessDeviceStatisticsCommandOutput | GetWirelessGatewayCertificateCommandOutput | GetWirelessGatewayCommandOutput | GetWirelessGatewayFirmwareInformationCommandOutput | GetWirelessGatewayStatisticsCommandOutput | GetWirelessGatewayTaskCommandOutput | GetWirelessGatewayTaskDefinitionCommandOutput | ListDestinationsCommandOutput | ListDeviceProfilesCommandOutput | ListFuotaTasksCommandOutput | ListMulticastGroupsByFuotaTaskCommandOutput | ListMulticastGroupsCommandOutput | ListPartnerAccountsCommandOutput | ListQueuedMessagesCommandOutput | ListServiceProfilesCommandOutput | ListTagsForResourceCommandOutput | ListWirelessDevicesCommandOutput | ListWirelessGatewayTaskDefinitionsCommandOutput | ListWirelessGatewaysCommandOutput | PutResourceLogLevelCommandOutput | ResetAllResourceLogLevelsCommandOutput | ResetResourceLogLevelCommandOutput | SendDataToMulticastGroupCommandOutput | SendDataToWirelessDeviceCommandOutput | StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput | StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput | StartFuotaTaskCommandOutput | StartMulticastGroupSessionCommandOutput | TagResourceCommandOutput | TestWirelessDeviceCommandOutput | UntagResourceCommandOutput | UpdateDestinationCommandOutput | UpdateFuotaTaskCommandOutput | UpdateLogLevelsByResourceTypesCommandOutput | UpdateMulticastGroupCommandOutput | UpdateNetworkAnalyzerConfigurationCommandOutput | UpdatePartnerAccountCommandOutput | UpdateResourceEventConfigurationCommandOutput | UpdateWirelessDeviceCommandOutput | UpdateWirelessGatewayCommandOutput;
|
|
96
98
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
97
99
|
|
|
98
100
|
requestHandler?: __HttpHandler;
|
|
@@ -136,6 +138,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
136
138
|
regionInfoProvider?: RegionInfoProvider;
|
|
137
139
|
|
|
138
140
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
141
|
+
|
|
142
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
139
143
|
}
|
|
140
144
|
declare type IoTWirelessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
141
145
|
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { DeleteQueuedMessagesRequest, DeleteQueuedMessagesResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteQueuedMessagesCommandInput extends DeleteQueuedMessagesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteQueuedMessagesCommandOutput extends DeleteQueuedMessagesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteQueuedMessagesCommand extends $Command<DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteQueuedMessagesCommandInput;
|
|
12
|
+
constructor(input: DeleteQueuedMessagesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient";
|
|
4
|
+
import { ListQueuedMessagesRequest, ListQueuedMessagesResponse } from "../models/models_0";
|
|
5
|
+
export interface ListQueuedMessagesCommandInput extends ListQueuedMessagesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListQueuedMessagesCommandOutput extends ListQueuedMessagesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListQueuedMessagesCommand extends $Command<ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: ListQueuedMessagesCommandInput;
|
|
12
|
+
constructor(input: ListQueuedMessagesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -19,6 +19,7 @@ export * from "./DeleteDestinationCommand";
|
|
|
19
19
|
export * from "./DeleteDeviceProfileCommand";
|
|
20
20
|
export * from "./DeleteFuotaTaskCommand";
|
|
21
21
|
export * from "./DeleteMulticastGroupCommand";
|
|
22
|
+
export * from "./DeleteQueuedMessagesCommand";
|
|
22
23
|
export * from "./DeleteServiceProfileCommand";
|
|
23
24
|
export * from "./DeleteWirelessDeviceCommand";
|
|
24
25
|
export * from "./DeleteWirelessGatewayCommand";
|
|
@@ -57,6 +58,7 @@ export * from "./ListFuotaTasksCommand";
|
|
|
57
58
|
export * from "./ListMulticastGroupsByFuotaTaskCommand";
|
|
58
59
|
export * from "./ListMulticastGroupsCommand";
|
|
59
60
|
export * from "./ListPartnerAccountsCommand";
|
|
61
|
+
export * from "./ListQueuedMessagesCommand";
|
|
60
62
|
export * from "./ListServiceProfilesCommand";
|
|
61
63
|
export * from "./ListTagsForResourceCommand";
|
|
62
64
|
export * from "./ListWirelessDevicesCommand";
|
|
@@ -53,10 +53,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
53
53
|
$fault: "client";
|
|
54
54
|
Message?: string;
|
|
55
55
|
}
|
|
56
|
-
export declare namespace AccessDeniedException {
|
|
57
|
-
|
|
58
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
59
|
-
}
|
|
60
56
|
|
|
61
57
|
export interface SidewalkAccountInfo {
|
|
62
58
|
|
|
@@ -111,20 +107,12 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
111
107
|
|
|
112
108
|
ResourceType?: string;
|
|
113
109
|
}
|
|
114
|
-
export declare namespace ConflictException {
|
|
115
|
-
|
|
116
|
-
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
117
|
-
}
|
|
118
110
|
|
|
119
111
|
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
120
112
|
name: "InternalServerException";
|
|
121
113
|
$fault: "server";
|
|
122
114
|
Message?: string;
|
|
123
115
|
}
|
|
124
|
-
export declare namespace InternalServerException {
|
|
125
|
-
|
|
126
|
-
const filterSensitiveLog: (obj: InternalServerException) => any;
|
|
127
|
-
}
|
|
128
116
|
|
|
129
117
|
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
130
118
|
name: "ResourceNotFoundException";
|
|
@@ -135,30 +123,18 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
135
123
|
|
|
136
124
|
ResourceType?: string;
|
|
137
125
|
}
|
|
138
|
-
export declare namespace ResourceNotFoundException {
|
|
139
|
-
|
|
140
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
141
|
-
}
|
|
142
126
|
|
|
143
127
|
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
144
128
|
name: "ThrottlingException";
|
|
145
129
|
$fault: "client";
|
|
146
130
|
Message?: string;
|
|
147
131
|
}
|
|
148
|
-
export declare namespace ThrottlingException {
|
|
149
|
-
|
|
150
|
-
const filterSensitiveLog: (obj: ThrottlingException) => any;
|
|
151
|
-
}
|
|
152
132
|
|
|
153
133
|
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
154
134
|
name: "ValidationException";
|
|
155
135
|
$fault: "client";
|
|
156
136
|
Message?: string;
|
|
157
137
|
}
|
|
158
|
-
export declare namespace ValidationException {
|
|
159
|
-
|
|
160
|
-
const filterSensitiveLog: (obj: ValidationException) => any;
|
|
161
|
-
}
|
|
162
138
|
export interface AssociateMulticastGroupWithFuotaTaskRequest {
|
|
163
139
|
|
|
164
140
|
Id: string | undefined;
|
|
@@ -807,6 +783,24 @@ export declare namespace DeleteMulticastGroupResponse {
|
|
|
807
783
|
|
|
808
784
|
const filterSensitiveLog: (obj: DeleteMulticastGroupResponse) => any;
|
|
809
785
|
}
|
|
786
|
+
export interface DeleteQueuedMessagesRequest {
|
|
787
|
+
|
|
788
|
+
Id: string | undefined;
|
|
789
|
+
|
|
790
|
+
MessageId: string | undefined;
|
|
791
|
+
|
|
792
|
+
WirelessDeviceType?: WirelessDeviceType | string;
|
|
793
|
+
}
|
|
794
|
+
export declare namespace DeleteQueuedMessagesRequest {
|
|
795
|
+
|
|
796
|
+
const filterSensitiveLog: (obj: DeleteQueuedMessagesRequest) => any;
|
|
797
|
+
}
|
|
798
|
+
export interface DeleteQueuedMessagesResponse {
|
|
799
|
+
}
|
|
800
|
+
export declare namespace DeleteQueuedMessagesResponse {
|
|
801
|
+
|
|
802
|
+
const filterSensitiveLog: (obj: DeleteQueuedMessagesResponse) => any;
|
|
803
|
+
}
|
|
810
804
|
export interface DeleteServiceProfileRequest {
|
|
811
805
|
|
|
812
806
|
Id: string | undefined;
|
|
@@ -1046,6 +1040,30 @@ export declare namespace DisassociateWirelessGatewayFromThingResponse {
|
|
|
1046
1040
|
|
|
1047
1041
|
const filterSensitiveLog: (obj: DisassociateWirelessGatewayFromThingResponse) => any;
|
|
1048
1042
|
}
|
|
1043
|
+
|
|
1044
|
+
export interface LoRaWANSendDataToDevice {
|
|
1045
|
+
|
|
1046
|
+
FPort?: number;
|
|
1047
|
+
}
|
|
1048
|
+
export declare namespace LoRaWANSendDataToDevice {
|
|
1049
|
+
|
|
1050
|
+
const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
export interface DownlinkQueueMessage {
|
|
1054
|
+
|
|
1055
|
+
MessageId?: string;
|
|
1056
|
+
|
|
1057
|
+
TransmitMode?: number;
|
|
1058
|
+
|
|
1059
|
+
ReceivedAt?: string;
|
|
1060
|
+
|
|
1061
|
+
LoRaWAN?: LoRaWANSendDataToDevice;
|
|
1062
|
+
}
|
|
1063
|
+
export declare namespace DownlinkQueueMessage {
|
|
1064
|
+
|
|
1065
|
+
const filterSensitiveLog: (obj: DownlinkQueueMessage) => any;
|
|
1066
|
+
}
|
|
1049
1067
|
export declare enum Event {
|
|
1050
1068
|
ACK = "ack",
|
|
1051
1069
|
DISCOVERED = "discovered",
|
|
@@ -1964,6 +1982,30 @@ export declare namespace ListPartnerAccountsResponse {
|
|
|
1964
1982
|
|
|
1965
1983
|
const filterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
|
|
1966
1984
|
}
|
|
1985
|
+
export interface ListQueuedMessagesRequest {
|
|
1986
|
+
|
|
1987
|
+
Id: string | undefined;
|
|
1988
|
+
|
|
1989
|
+
NextToken?: string;
|
|
1990
|
+
|
|
1991
|
+
MaxResults?: number;
|
|
1992
|
+
|
|
1993
|
+
WirelessDeviceType?: WirelessDeviceType | string;
|
|
1994
|
+
}
|
|
1995
|
+
export declare namespace ListQueuedMessagesRequest {
|
|
1996
|
+
|
|
1997
|
+
const filterSensitiveLog: (obj: ListQueuedMessagesRequest) => any;
|
|
1998
|
+
}
|
|
1999
|
+
export interface ListQueuedMessagesResponse {
|
|
2000
|
+
|
|
2001
|
+
NextToken?: string;
|
|
2002
|
+
|
|
2003
|
+
DownlinkQueueMessagesList?: DownlinkQueueMessage[];
|
|
2004
|
+
}
|
|
2005
|
+
export declare namespace ListQueuedMessagesResponse {
|
|
2006
|
+
|
|
2007
|
+
const filterSensitiveLog: (obj: ListQueuedMessagesResponse) => any;
|
|
2008
|
+
}
|
|
1967
2009
|
export interface ListServiceProfilesRequest {
|
|
1968
2010
|
|
|
1969
2011
|
NextToken?: string;
|
|
@@ -2270,15 +2312,6 @@ export declare namespace SendDataToMulticastGroupResponse {
|
|
|
2270
2312
|
|
|
2271
2313
|
const filterSensitiveLog: (obj: SendDataToMulticastGroupResponse) => any;
|
|
2272
2314
|
}
|
|
2273
|
-
|
|
2274
|
-
export interface LoRaWANSendDataToDevice {
|
|
2275
|
-
|
|
2276
|
-
FPort?: number;
|
|
2277
|
-
}
|
|
2278
|
-
export declare namespace LoRaWANSendDataToDevice {
|
|
2279
|
-
|
|
2280
|
-
const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
|
|
2281
|
-
}
|
|
2282
2315
|
export declare enum MessageType {
|
|
2283
2316
|
CUSTOM_COMMAND_ID_GET = "CUSTOM_COMMAND_ID_GET",
|
|
2284
2317
|
CUSTOM_COMMAND_ID_NOTIFY = "CUSTOM_COMMAND_ID_NOTIFY",
|
|
@@ -2430,10 +2463,6 @@ export interface TooManyTagsException extends __SmithyException, $MetadataBearer
|
|
|
2430
2463
|
|
|
2431
2464
|
ResourceName?: string;
|
|
2432
2465
|
}
|
|
2433
|
-
export declare namespace TooManyTagsException {
|
|
2434
|
-
|
|
2435
|
-
const filterSensitiveLog: (obj: TooManyTagsException) => any;
|
|
2436
|
-
}
|
|
2437
2466
|
export interface TestWirelessDeviceRequest {
|
|
2438
2467
|
|
|
2439
2468
|
Id: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
|
|
3
|
+
import { IoTWirelessPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListQueuedMessages(config: IoTWirelessPaginationConfiguration, input: ListQueuedMessagesCommandInput, ...additionalArguments: any): Paginator<ListQueuedMessagesCommandOutput>;
|
|
@@ -4,6 +4,7 @@ export * from "./ListDeviceProfilesPaginator";
|
|
|
4
4
|
export * from "./ListFuotaTasksPaginator";
|
|
5
5
|
export * from "./ListMulticastGroupsByFuotaTaskPaginator";
|
|
6
6
|
export * from "./ListMulticastGroupsPaginator";
|
|
7
|
+
export * from "./ListQueuedMessagesPaginator";
|
|
7
8
|
export * from "./ListServiceProfilesPaginator";
|
|
8
9
|
export * from "./ListWirelessDevicesPaginator";
|
|
9
10
|
export * from "./ListWirelessGatewaysPaginator";
|
|
@@ -21,6 +21,7 @@ import { DeleteDestinationCommandInput, DeleteDestinationCommandOutput } from ".
|
|
|
21
21
|
import { DeleteDeviceProfileCommandInput, DeleteDeviceProfileCommandOutput } from "../commands/DeleteDeviceProfileCommand";
|
|
22
22
|
import { DeleteFuotaTaskCommandInput, DeleteFuotaTaskCommandOutput } from "../commands/DeleteFuotaTaskCommand";
|
|
23
23
|
import { DeleteMulticastGroupCommandInput, DeleteMulticastGroupCommandOutput } from "../commands/DeleteMulticastGroupCommand";
|
|
24
|
+
import { DeleteQueuedMessagesCommandInput, DeleteQueuedMessagesCommandOutput } from "../commands/DeleteQueuedMessagesCommand";
|
|
24
25
|
import { DeleteServiceProfileCommandInput, DeleteServiceProfileCommandOutput } from "../commands/DeleteServiceProfileCommand";
|
|
25
26
|
import { DeleteWirelessDeviceCommandInput, DeleteWirelessDeviceCommandOutput } from "../commands/DeleteWirelessDeviceCommand";
|
|
26
27
|
import { DeleteWirelessGatewayCommandInput, DeleteWirelessGatewayCommandOutput } from "../commands/DeleteWirelessGatewayCommand";
|
|
@@ -59,6 +60,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "../comm
|
|
|
59
60
|
import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "../commands/ListMulticastGroupsByFuotaTaskCommand";
|
|
60
61
|
import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "../commands/ListMulticastGroupsCommand";
|
|
61
62
|
import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "../commands/ListPartnerAccountsCommand";
|
|
63
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
|
|
62
64
|
import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "../commands/ListServiceProfilesCommand";
|
|
63
65
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
64
66
|
import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "../commands/ListWirelessDevicesCommand";
|
|
@@ -106,6 +108,7 @@ export declare const serializeAws_restJson1DeleteDestinationCommand: (input: Del
|
|
|
106
108
|
export declare const serializeAws_restJson1DeleteDeviceProfileCommand: (input: DeleteDeviceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
109
|
export declare const serializeAws_restJson1DeleteFuotaTaskCommand: (input: DeleteFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
110
|
export declare const serializeAws_restJson1DeleteMulticastGroupCommand: (input: DeleteMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
|
+
export declare const serializeAws_restJson1DeleteQueuedMessagesCommand: (input: DeleteQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
112
|
export declare const serializeAws_restJson1DeleteServiceProfileCommand: (input: DeleteServiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
113
|
export declare const serializeAws_restJson1DeleteWirelessDeviceCommand: (input: DeleteWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
114
|
export declare const serializeAws_restJson1DeleteWirelessGatewayCommand: (input: DeleteWirelessGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -144,6 +147,7 @@ export declare const serializeAws_restJson1ListFuotaTasksCommand: (input: ListFu
|
|
|
144
147
|
export declare const serializeAws_restJson1ListMulticastGroupsCommand: (input: ListMulticastGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
148
|
export declare const serializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (input: ListMulticastGroupsByFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
149
|
export declare const serializeAws_restJson1ListPartnerAccountsCommand: (input: ListPartnerAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1ListQueuedMessagesCommand: (input: ListQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
147
151
|
export declare const serializeAws_restJson1ListServiceProfilesCommand: (input: ListServiceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
148
152
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
149
153
|
export declare const serializeAws_restJson1ListWirelessDevicesCommand: (input: ListWirelessDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -191,6 +195,7 @@ export declare const deserializeAws_restJson1DeleteDestinationCommand: (output:
|
|
|
191
195
|
export declare const deserializeAws_restJson1DeleteDeviceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceProfileCommandOutput>;
|
|
192
196
|
export declare const deserializeAws_restJson1DeleteFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFuotaTaskCommandOutput>;
|
|
193
197
|
export declare const deserializeAws_restJson1DeleteMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMulticastGroupCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_restJson1DeleteQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueuedMessagesCommandOutput>;
|
|
194
199
|
export declare const deserializeAws_restJson1DeleteServiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceProfileCommandOutput>;
|
|
195
200
|
export declare const deserializeAws_restJson1DeleteWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessDeviceCommandOutput>;
|
|
196
201
|
export declare const deserializeAws_restJson1DeleteWirelessGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessGatewayCommandOutput>;
|
|
@@ -229,6 +234,7 @@ export declare const deserializeAws_restJson1ListFuotaTasksCommand: (output: __H
|
|
|
229
234
|
export declare const deserializeAws_restJson1ListMulticastGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsCommandOutput>;
|
|
230
235
|
export declare const deserializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
|
|
231
236
|
export declare const deserializeAws_restJson1ListPartnerAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPartnerAccountsCommandOutput>;
|
|
237
|
+
export declare const deserializeAws_restJson1ListQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuedMessagesCommandOutput>;
|
|
232
238
|
export declare const deserializeAws_restJson1ListServiceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceProfilesCommandOutput>;
|
|
233
239
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
234
240
|
export declare const deserializeAws_restJson1ListWirelessDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWirelessDevicesCommandOutput>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { IoTWirelessClientConfig } from "./IoTWirelessClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: IoTWirelessClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: IoTWirelessClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { IoTWirelessClientConfig } from "./IoTWirelessClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: IoTWirelessClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: IoTWirelessClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
package/package.json
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-wireless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Wireless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.47.2",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "yarn
|
|
7
|
-
"build:cjs": "tsc -p tsconfig.json",
|
|
8
|
-
"build:docs": "
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
-
"
|
|
12
|
-
"clean
|
|
13
|
-
"clean:docs": "rimraf ./docs",
|
|
14
|
-
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
-
"test": "jest --coverage --passWithNoTests"
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-*"
|
|
16
13
|
},
|
|
17
14
|
"main": "./dist-cjs/index.js",
|
|
18
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -21,50 +18,46 @@
|
|
|
21
18
|
"dependencies": {
|
|
22
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-
|
|
51
|
-
"@aws-sdk/util-
|
|
21
|
+
"@aws-sdk/client-sts": "3.47.2",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.47.2",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.47.2",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.47.2",
|
|
25
|
+
"@aws-sdk/hash-node": "3.47.2",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.47.2",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.47.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.47.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.47.2",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.47.2",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.47.2",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.47.2",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.47.2",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.47.2",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.47.2",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.47.2",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.47.2",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.47.2",
|
|
39
|
+
"@aws-sdk/types": "3.47.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.47.2",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.47.1",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.47.2",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.47.1",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.47.1",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.47.2",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.47.2",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.47.2",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.47.2",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.47.1",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.47.2",
|
|
52
51
|
"tslib": "^2.3.0",
|
|
53
52
|
"uuid": "^8.3.2"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.47.1",
|
|
57
56
|
"@types/node": "^12.7.5",
|
|
58
|
-
"@types/uuid": "^8.3.0"
|
|
59
|
-
"downlevel-dts": "0.7.0",
|
|
60
|
-
"jest": "^26.1.0",
|
|
61
|
-
"rimraf": "^3.0.0",
|
|
62
|
-
"ts-jest": "^26.4.1",
|
|
63
|
-
"typedoc": "^0.19.2",
|
|
64
|
-
"typescript": "~4.3.5"
|
|
57
|
+
"@types/uuid": "^8.3.0"
|
|
65
58
|
},
|
|
66
59
|
"engines": {
|
|
67
|
-
"node": ">=
|
|
60
|
+
"node": ">=12.0.0"
|
|
68
61
|
},
|
|
69
62
|
"typesVersions": {
|
|
70
63
|
"<4.0": {
|