@aws-sdk/client-iot-wireless 3.42.0 → 3.47.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 +51 -0
- package/README.md +11 -1
- package/dist-cjs/IoTWireless.js +60 -0
- package/dist-cjs/commands/DeleteQueuedMessagesCommand.js +36 -0
- package/dist-cjs/commands/GetNetworkAnalyzerConfigurationCommand.js +36 -0
- package/dist-cjs/commands/ListQueuedMessagesCommand.js +36 -0
- package/dist-cjs/commands/UpdateNetworkAnalyzerConfigurationCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoints.js +48 -1
- package/dist-cjs/models/models_0.js +77 -54
- package/dist-cjs/pagination/ListQueuedMessagesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +545 -4
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/IoTWireless.js +60 -0
- package/dist-es/commands/DeleteQueuedMessagesCommand.js +39 -0
- package/dist-es/commands/GetNetworkAnalyzerConfigurationCommand.js +39 -0
- package/dist-es/commands/ListQueuedMessagesCommand.js +39 -0
- package/dist-es/commands/UpdateNetworkAnalyzerConfigurationCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoints.js +48 -1
- package/dist-es/models/models_0.js +49 -32
- package/dist-es/pagination/ListQueuedMessagesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +629 -32
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/IoTWireless.d.ts +39 -1
- package/dist-types/IoTWirelessClient.d.ts +22 -4
- package/dist-types/commands/DeleteQueuedMessagesCommand.d.ts +35 -0
- package/dist-types/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/ListQueuedMessagesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +205 -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 +12 -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 +20 -0
- package/dist-types/ts3.4/IoTWirelessClient.d.ts +9 -3
- package/dist-types/ts3.4/commands/DeleteQueuedMessagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +125 -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 +12 -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 +38 -45
|
@@ -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";
|
|
@@ -45,6 +46,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/
|
|
|
45
46
|
import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
|
|
46
47
|
import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
|
|
47
48
|
import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
|
|
49
|
+
import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
|
|
48
50
|
import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
|
|
49
51
|
import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
|
|
50
52
|
import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
|
|
@@ -64,6 +66,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "./comma
|
|
|
64
66
|
import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "./commands/ListMulticastGroupsByFuotaTaskCommand";
|
|
65
67
|
import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "./commands/ListMulticastGroupsCommand";
|
|
66
68
|
import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "./commands/ListPartnerAccountsCommand";
|
|
69
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "./commands/ListQueuedMessagesCommand";
|
|
67
70
|
import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "./commands/ListServiceProfilesCommand";
|
|
68
71
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
69
72
|
import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "./commands/ListWirelessDevicesCommand";
|
|
@@ -85,12 +88,13 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
|
|
|
85
88
|
import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
|
|
86
89
|
import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
|
|
87
90
|
import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
|
|
91
|
+
import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
|
|
88
92
|
import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
|
|
89
93
|
import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
|
|
90
94
|
import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
|
|
91
95
|
import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput } from "./commands/UpdateWirelessGatewayCommand";
|
|
92
|
-
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 | 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 | UpdatePartnerAccountCommandInput | UpdateResourceEventConfigurationCommandInput | UpdateWirelessDeviceCommandInput | UpdateWirelessGatewayCommandInput;
|
|
93
|
-
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 | 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 | 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;
|
|
94
98
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
95
99
|
|
|
96
100
|
requestHandler?: __HttpHandler;
|
|
@@ -134,6 +138,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
134
138
|
regionInfoProvider?: RegionInfoProvider;
|
|
135
139
|
|
|
136
140
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
141
|
+
|
|
142
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
137
143
|
}
|
|
138
144
|
declare type IoTWirelessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
139
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 { GetNetworkAnalyzerConfigurationRequest, GetNetworkAnalyzerConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface GetNetworkAnalyzerConfigurationCommandInput extends GetNetworkAnalyzerConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetNetworkAnalyzerConfigurationCommandOutput extends GetNetworkAnalyzerConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetNetworkAnalyzerConfigurationCommand extends $Command<GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: GetNetworkAnalyzerConfigurationCommandInput;
|
|
12
|
+
constructor(input: GetNetworkAnalyzerConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput>;
|
|
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
|
+
}
|
|
@@ -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 { UpdateNetworkAnalyzerConfigurationRequest, UpdateNetworkAnalyzerConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateNetworkAnalyzerConfigurationCommandInput extends UpdateNetworkAnalyzerConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateNetworkAnalyzerConfigurationCommandOutput extends UpdateNetworkAnalyzerConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateNetworkAnalyzerConfigurationCommand extends $Command<UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput, IoTWirelessClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateNetworkAnalyzerConfigurationCommandInput;
|
|
12
|
+
constructor(input: UpdateNetworkAnalyzerConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTWirelessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput>;
|
|
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";
|
|
@@ -37,6 +38,7 @@ export * from "./GetFuotaTaskCommand";
|
|
|
37
38
|
export * from "./GetLogLevelsByResourceTypesCommand";
|
|
38
39
|
export * from "./GetMulticastGroupCommand";
|
|
39
40
|
export * from "./GetMulticastGroupSessionCommand";
|
|
41
|
+
export * from "./GetNetworkAnalyzerConfigurationCommand";
|
|
40
42
|
export * from "./GetPartnerAccountCommand";
|
|
41
43
|
export * from "./GetResourceEventConfigurationCommand";
|
|
42
44
|
export * from "./GetResourceLogLevelCommand";
|
|
@@ -56,6 +58,7 @@ export * from "./ListFuotaTasksCommand";
|
|
|
56
58
|
export * from "./ListMulticastGroupsByFuotaTaskCommand";
|
|
57
59
|
export * from "./ListMulticastGroupsCommand";
|
|
58
60
|
export * from "./ListPartnerAccountsCommand";
|
|
61
|
+
export * from "./ListQueuedMessagesCommand";
|
|
59
62
|
export * from "./ListServiceProfilesCommand";
|
|
60
63
|
export * from "./ListTagsForResourceCommand";
|
|
61
64
|
export * from "./ListWirelessDevicesCommand";
|
|
@@ -77,6 +80,7 @@ export * from "./UpdateDestinationCommand";
|
|
|
77
80
|
export * from "./UpdateFuotaTaskCommand";
|
|
78
81
|
export * from "./UpdateLogLevelsByResourceTypesCommand";
|
|
79
82
|
export * from "./UpdateMulticastGroupCommand";
|
|
83
|
+
export * from "./UpdateNetworkAnalyzerConfigurationCommand";
|
|
80
84
|
export * from "./UpdatePartnerAccountCommand";
|
|
81
85
|
export * from "./UpdateResourceEventConfigurationCommand";
|
|
82
86
|
export * from "./UpdateWirelessDeviceCommand";
|
|
@@ -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",
|
|
@@ -1339,6 +1357,41 @@ export declare namespace GetMulticastGroupSessionResponse {
|
|
|
1339
1357
|
|
|
1340
1358
|
const filterSensitiveLog: (obj: GetMulticastGroupSessionResponse) => any;
|
|
1341
1359
|
}
|
|
1360
|
+
export interface GetNetworkAnalyzerConfigurationRequest {
|
|
1361
|
+
|
|
1362
|
+
ConfigurationName: string | undefined;
|
|
1363
|
+
}
|
|
1364
|
+
export declare namespace GetNetworkAnalyzerConfigurationRequest {
|
|
1365
|
+
|
|
1366
|
+
const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationRequest) => any;
|
|
1367
|
+
}
|
|
1368
|
+
export declare enum WirelessDeviceFrameInfo {
|
|
1369
|
+
DISABLED = "DISABLED",
|
|
1370
|
+
ENABLED = "ENABLED"
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
export interface TraceContent {
|
|
1374
|
+
|
|
1375
|
+
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
|
|
1376
|
+
|
|
1377
|
+
LogLevel?: LogLevel | string;
|
|
1378
|
+
}
|
|
1379
|
+
export declare namespace TraceContent {
|
|
1380
|
+
|
|
1381
|
+
const filterSensitiveLog: (obj: TraceContent) => any;
|
|
1382
|
+
}
|
|
1383
|
+
export interface GetNetworkAnalyzerConfigurationResponse {
|
|
1384
|
+
|
|
1385
|
+
TraceContent?: TraceContent;
|
|
1386
|
+
|
|
1387
|
+
WirelessDevices?: string[];
|
|
1388
|
+
|
|
1389
|
+
WirelessGateways?: string[];
|
|
1390
|
+
}
|
|
1391
|
+
export declare namespace GetNetworkAnalyzerConfigurationResponse {
|
|
1392
|
+
|
|
1393
|
+
const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationResponse) => any;
|
|
1394
|
+
}
|
|
1342
1395
|
export interface GetPartnerAccountRequest {
|
|
1343
1396
|
|
|
1344
1397
|
PartnerAccountId: string | undefined;
|
|
@@ -1929,6 +1982,30 @@ export declare namespace ListPartnerAccountsResponse {
|
|
|
1929
1982
|
|
|
1930
1983
|
const filterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
|
|
1931
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
|
+
}
|
|
1932
2009
|
export interface ListServiceProfilesRequest {
|
|
1933
2010
|
|
|
1934
2011
|
NextToken?: string;
|
|
@@ -2235,15 +2312,6 @@ export declare namespace SendDataToMulticastGroupResponse {
|
|
|
2235
2312
|
|
|
2236
2313
|
const filterSensitiveLog: (obj: SendDataToMulticastGroupResponse) => any;
|
|
2237
2314
|
}
|
|
2238
|
-
|
|
2239
|
-
export interface LoRaWANSendDataToDevice {
|
|
2240
|
-
|
|
2241
|
-
FPort?: number;
|
|
2242
|
-
}
|
|
2243
|
-
export declare namespace LoRaWANSendDataToDevice {
|
|
2244
|
-
|
|
2245
|
-
const filterSensitiveLog: (obj: LoRaWANSendDataToDevice) => any;
|
|
2246
|
-
}
|
|
2247
2315
|
export declare enum MessageType {
|
|
2248
2316
|
CUSTOM_COMMAND_ID_GET = "CUSTOM_COMMAND_ID_GET",
|
|
2249
2317
|
CUSTOM_COMMAND_ID_NOTIFY = "CUSTOM_COMMAND_ID_NOTIFY",
|
|
@@ -2395,10 +2463,6 @@ export interface TooManyTagsException extends __SmithyException, $MetadataBearer
|
|
|
2395
2463
|
|
|
2396
2464
|
ResourceName?: string;
|
|
2397
2465
|
}
|
|
2398
|
-
export declare namespace TooManyTagsException {
|
|
2399
|
-
|
|
2400
|
-
const filterSensitiveLog: (obj: TooManyTagsException) => any;
|
|
2401
|
-
}
|
|
2402
2466
|
export interface TestWirelessDeviceRequest {
|
|
2403
2467
|
|
|
2404
2468
|
Id: string | undefined;
|
|
@@ -2515,6 +2579,30 @@ export declare namespace UpdateMulticastGroupResponse {
|
|
|
2515
2579
|
|
|
2516
2580
|
const filterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
|
|
2517
2581
|
}
|
|
2582
|
+
export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
2583
|
+
|
|
2584
|
+
ConfigurationName: string | undefined;
|
|
2585
|
+
|
|
2586
|
+
TraceContent?: TraceContent;
|
|
2587
|
+
|
|
2588
|
+
WirelessDevicesToAdd?: string[];
|
|
2589
|
+
|
|
2590
|
+
WirelessDevicesToRemove?: string[];
|
|
2591
|
+
|
|
2592
|
+
WirelessGatewaysToAdd?: string[];
|
|
2593
|
+
|
|
2594
|
+
WirelessGatewaysToRemove?: string[];
|
|
2595
|
+
}
|
|
2596
|
+
export declare namespace UpdateNetworkAnalyzerConfigurationRequest {
|
|
2597
|
+
|
|
2598
|
+
const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationRequest) => any;
|
|
2599
|
+
}
|
|
2600
|
+
export interface UpdateNetworkAnalyzerConfigurationResponse {
|
|
2601
|
+
}
|
|
2602
|
+
export declare namespace UpdateNetworkAnalyzerConfigurationResponse {
|
|
2603
|
+
|
|
2604
|
+
const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationResponse) => any;
|
|
2605
|
+
}
|
|
2518
2606
|
|
|
2519
2607
|
export interface SidewalkUpdateAccount {
|
|
2520
2608
|
|
|
@@ -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";
|
|
@@ -39,6 +40,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "../commands
|
|
|
39
40
|
import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "../commands/GetLogLevelsByResourceTypesCommand";
|
|
40
41
|
import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "../commands/GetMulticastGroupCommand";
|
|
41
42
|
import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "../commands/GetMulticastGroupSessionCommand";
|
|
43
|
+
import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "../commands/GetNetworkAnalyzerConfigurationCommand";
|
|
42
44
|
import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "../commands/GetPartnerAccountCommand";
|
|
43
45
|
import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "../commands/GetResourceEventConfigurationCommand";
|
|
44
46
|
import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "../commands/GetResourceLogLevelCommand";
|
|
@@ -58,6 +60,7 @@ import { ListFuotaTasksCommandInput, ListFuotaTasksCommandOutput } from "../comm
|
|
|
58
60
|
import { ListMulticastGroupsByFuotaTaskCommandInput, ListMulticastGroupsByFuotaTaskCommandOutput } from "../commands/ListMulticastGroupsByFuotaTaskCommand";
|
|
59
61
|
import { ListMulticastGroupsCommandInput, ListMulticastGroupsCommandOutput } from "../commands/ListMulticastGroupsCommand";
|
|
60
62
|
import { ListPartnerAccountsCommandInput, ListPartnerAccountsCommandOutput } from "../commands/ListPartnerAccountsCommand";
|
|
63
|
+
import { ListQueuedMessagesCommandInput, ListQueuedMessagesCommandOutput } from "../commands/ListQueuedMessagesCommand";
|
|
61
64
|
import { ListServiceProfilesCommandInput, ListServiceProfilesCommandOutput } from "../commands/ListServiceProfilesCommand";
|
|
62
65
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
63
66
|
import { ListWirelessDevicesCommandInput, ListWirelessDevicesCommandOutput } from "../commands/ListWirelessDevicesCommand";
|
|
@@ -79,6 +82,7 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
|
|
|
79
82
|
import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "../commands/UpdateFuotaTaskCommand";
|
|
80
83
|
import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "../commands/UpdateLogLevelsByResourceTypesCommand";
|
|
81
84
|
import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "../commands/UpdateMulticastGroupCommand";
|
|
85
|
+
import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "../commands/UpdateNetworkAnalyzerConfigurationCommand";
|
|
82
86
|
import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "../commands/UpdatePartnerAccountCommand";
|
|
83
87
|
import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "../commands/UpdateResourceEventConfigurationCommand";
|
|
84
88
|
import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "../commands/UpdateWirelessDeviceCommand";
|
|
@@ -104,6 +108,7 @@ export declare const serializeAws_restJson1DeleteDestinationCommand: (input: Del
|
|
|
104
108
|
export declare const serializeAws_restJson1DeleteDeviceProfileCommand: (input: DeleteDeviceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
109
|
export declare const serializeAws_restJson1DeleteFuotaTaskCommand: (input: DeleteFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
110
|
export declare const serializeAws_restJson1DeleteMulticastGroupCommand: (input: DeleteMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
|
+
export declare const serializeAws_restJson1DeleteQueuedMessagesCommand: (input: DeleteQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
112
|
export declare const serializeAws_restJson1DeleteServiceProfileCommand: (input: DeleteServiceProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
113
|
export declare const serializeAws_restJson1DeleteWirelessDeviceCommand: (input: DeleteWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
114
|
export declare const serializeAws_restJson1DeleteWirelessGatewayCommand: (input: DeleteWirelessGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -122,6 +127,7 @@ export declare const serializeAws_restJson1GetFuotaTaskCommand: (input: GetFuota
|
|
|
122
127
|
export declare const serializeAws_restJson1GetLogLevelsByResourceTypesCommand: (input: GetLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
128
|
export declare const serializeAws_restJson1GetMulticastGroupCommand: (input: GetMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
124
129
|
export declare const serializeAws_restJson1GetMulticastGroupSessionCommand: (input: GetMulticastGroupSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (input: GetNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
131
|
export declare const serializeAws_restJson1GetPartnerAccountCommand: (input: GetPartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
132
|
export declare const serializeAws_restJson1GetResourceEventConfigurationCommand: (input: GetResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
133
|
export declare const serializeAws_restJson1GetResourceLogLevelCommand: (input: GetResourceLogLevelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -141,6 +147,7 @@ export declare const serializeAws_restJson1ListFuotaTasksCommand: (input: ListFu
|
|
|
141
147
|
export declare const serializeAws_restJson1ListMulticastGroupsCommand: (input: ListMulticastGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
148
|
export declare const serializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (input: ListMulticastGroupsByFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
149
|
export declare const serializeAws_restJson1ListPartnerAccountsCommand: (input: ListPartnerAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1ListQueuedMessagesCommand: (input: ListQueuedMessagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
151
|
export declare const serializeAws_restJson1ListServiceProfilesCommand: (input: ListServiceProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
152
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
153
|
export declare const serializeAws_restJson1ListWirelessDevicesCommand: (input: ListWirelessDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -162,6 +169,7 @@ export declare const serializeAws_restJson1UpdateDestinationCommand: (input: Upd
|
|
|
162
169
|
export declare const serializeAws_restJson1UpdateFuotaTaskCommand: (input: UpdateFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
163
170
|
export declare const serializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (input: UpdateLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
164
171
|
export declare const serializeAws_restJson1UpdateMulticastGroupCommand: (input: UpdateMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
172
|
+
export declare const serializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (input: UpdateNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
165
173
|
export declare const serializeAws_restJson1UpdatePartnerAccountCommand: (input: UpdatePartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
174
|
export declare const serializeAws_restJson1UpdateResourceEventConfigurationCommand: (input: UpdateResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
167
175
|
export declare const serializeAws_restJson1UpdateWirelessDeviceCommand: (input: UpdateWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -187,6 +195,7 @@ export declare const deserializeAws_restJson1DeleteDestinationCommand: (output:
|
|
|
187
195
|
export declare const deserializeAws_restJson1DeleteDeviceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceProfileCommandOutput>;
|
|
188
196
|
export declare const deserializeAws_restJson1DeleteFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFuotaTaskCommandOutput>;
|
|
189
197
|
export declare const deserializeAws_restJson1DeleteMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMulticastGroupCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_restJson1DeleteQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueuedMessagesCommandOutput>;
|
|
190
199
|
export declare const deserializeAws_restJson1DeleteServiceProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceProfileCommandOutput>;
|
|
191
200
|
export declare const deserializeAws_restJson1DeleteWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessDeviceCommandOutput>;
|
|
192
201
|
export declare const deserializeAws_restJson1DeleteWirelessGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWirelessGatewayCommandOutput>;
|
|
@@ -205,6 +214,7 @@ export declare const deserializeAws_restJson1GetFuotaTaskCommand: (output: __Htt
|
|
|
205
214
|
export declare const deserializeAws_restJson1GetLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLogLevelsByResourceTypesCommandOutput>;
|
|
206
215
|
export declare const deserializeAws_restJson1GetMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupCommandOutput>;
|
|
207
216
|
export declare const deserializeAws_restJson1GetMulticastGroupSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupSessionCommandOutput>;
|
|
217
|
+
export declare const deserializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
|
|
208
218
|
export declare const deserializeAws_restJson1GetPartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPartnerAccountCommandOutput>;
|
|
209
219
|
export declare const deserializeAws_restJson1GetResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceEventConfigurationCommandOutput>;
|
|
210
220
|
export declare const deserializeAws_restJson1GetResourceLogLevelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceLogLevelCommandOutput>;
|
|
@@ -224,6 +234,7 @@ export declare const deserializeAws_restJson1ListFuotaTasksCommand: (output: __H
|
|
|
224
234
|
export declare const deserializeAws_restJson1ListMulticastGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsCommandOutput>;
|
|
225
235
|
export declare const deserializeAws_restJson1ListMulticastGroupsByFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMulticastGroupsByFuotaTaskCommandOutput>;
|
|
226
236
|
export declare const deserializeAws_restJson1ListPartnerAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPartnerAccountsCommandOutput>;
|
|
237
|
+
export declare const deserializeAws_restJson1ListQueuedMessagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuedMessagesCommandOutput>;
|
|
227
238
|
export declare const deserializeAws_restJson1ListServiceProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceProfilesCommandOutput>;
|
|
228
239
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
229
240
|
export declare const deserializeAws_restJson1ListWirelessDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWirelessDevicesCommandOutput>;
|
|
@@ -245,6 +256,7 @@ export declare const deserializeAws_restJson1UpdateDestinationCommand: (output:
|
|
|
245
256
|
export declare const deserializeAws_restJson1UpdateFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFuotaTaskCommandOutput>;
|
|
246
257
|
export declare const deserializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
|
|
247
258
|
export declare const deserializeAws_restJson1UpdateMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMulticastGroupCommandOutput>;
|
|
259
|
+
export declare const deserializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
|
|
248
260
|
export declare const deserializeAws_restJson1UpdatePartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePartnerAccountCommandOutput>;
|
|
249
261
|
export declare const deserializeAws_restJson1UpdateResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceEventConfigurationCommandOutput>;
|
|
250
262
|
export declare const deserializeAws_restJson1UpdateWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWirelessDeviceCommandOutput>;
|
|
@@ -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;
|