@aws-sdk/client-iot-wireless 3.42.0 → 3.43.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/IoTWireless.js +30 -0
  3. package/dist-cjs/commands/GetNetworkAnalyzerConfigurationCommand.js +36 -0
  4. package/dist-cjs/commands/UpdateNetworkAnalyzerConfigurationCommand.js +36 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/endpoints.js +47 -1
  7. package/dist-cjs/models/models_0.js +39 -4
  8. package/dist-cjs/protocols/Aws_restJson1.js +297 -4
  9. package/dist-es/IoTWireless.js +30 -0
  10. package/dist-es/commands/GetNetworkAnalyzerConfigurationCommand.js +39 -0
  11. package/dist-es/commands/UpdateNetworkAnalyzerConfigurationCommand.js +39 -0
  12. package/dist-es/commands/index.js +2 -0
  13. package/dist-es/endpoints.js +47 -1
  14. package/dist-es/models/models_0.js +25 -0
  15. package/dist-es/protocols/Aws_restJson1.js +320 -0
  16. package/dist-types/IoTWireless.d.ts +14 -0
  17. package/dist-types/IoTWirelessClient.d.ts +4 -2
  18. package/dist-types/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +35 -0
  19. package/dist-types/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +35 -0
  20. package/dist-types/commands/index.d.ts +2 -0
  21. package/dist-types/models/models_0.d.ts +95 -0
  22. package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
  23. package/dist-types/ts3.4/IoTWireless.d.ts +10 -0
  24. package/dist-types/ts3.4/IoTWirelessClient.d.ts +4 -2
  25. package/dist-types/ts3.4/commands/GetNetworkAnalyzerConfigurationCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/UpdateNetworkAnalyzerConfigurationCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +59 -0
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
  30. package/package.json +2 -2
@@ -2145,6 +2145,61 @@ export declare namespace GetMulticastGroupSessionResponse {
2145
2145
  */
2146
2146
  const filterSensitiveLog: (obj: GetMulticastGroupSessionResponse) => any;
2147
2147
  }
2148
+ export interface GetNetworkAnalyzerConfigurationRequest {
2149
+ /**
2150
+ * <p>NetworkAnalyzer configuration name.</p>
2151
+ */
2152
+ ConfigurationName: string | undefined;
2153
+ }
2154
+ export declare namespace GetNetworkAnalyzerConfigurationRequest {
2155
+ /**
2156
+ * @internal
2157
+ */
2158
+ const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationRequest) => any;
2159
+ }
2160
+ export declare enum WirelessDeviceFrameInfo {
2161
+ DISABLED = "DISABLED",
2162
+ ENABLED = "ENABLED"
2163
+ }
2164
+ /**
2165
+ * <p>Trace Content for resources.</p>
2166
+ */
2167
+ export interface TraceContent {
2168
+ /**
2169
+ * <p>WirelessDevice FrameInfo for trace content.</p>
2170
+ */
2171
+ WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
2172
+ /**
2173
+ * <p>The log level for a log message.</p>
2174
+ */
2175
+ LogLevel?: LogLevel | string;
2176
+ }
2177
+ export declare namespace TraceContent {
2178
+ /**
2179
+ * @internal
2180
+ */
2181
+ const filterSensitiveLog: (obj: TraceContent) => any;
2182
+ }
2183
+ export interface GetNetworkAnalyzerConfigurationResponse {
2184
+ /**
2185
+ * <p>Trace Content for resources.</p>
2186
+ */
2187
+ TraceContent?: TraceContent;
2188
+ /**
2189
+ * <p>List of WirelessDevices in the NetworkAnalyzerConfiguration.</p>
2190
+ */
2191
+ WirelessDevices?: string[];
2192
+ /**
2193
+ * <p>List of WirelessGateways in the NetworkAnalyzerConfiguration.</p>
2194
+ */
2195
+ WirelessGateways?: string[];
2196
+ }
2197
+ export declare namespace GetNetworkAnalyzerConfigurationResponse {
2198
+ /**
2199
+ * @internal
2200
+ */
2201
+ const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationResponse) => any;
2202
+ }
2148
2203
  export interface GetPartnerAccountRequest {
2149
2204
  /**
2150
2205
  * <p>The partner account ID to disassociate from the AWS account.</p>
@@ -4078,6 +4133,46 @@ export declare namespace UpdateMulticastGroupResponse {
4078
4133
  */
4079
4134
  const filterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
4080
4135
  }
4136
+ export interface UpdateNetworkAnalyzerConfigurationRequest {
4137
+ /**
4138
+ * <p>NetworkAnalyzer configuration name.</p>
4139
+ */
4140
+ ConfigurationName: string | undefined;
4141
+ /**
4142
+ * <p>Trace Content for resources.</p>
4143
+ */
4144
+ TraceContent?: TraceContent;
4145
+ /**
4146
+ * <p>WirelessDevices to add into NetworkAnalyzerConfiguration.</p>
4147
+ */
4148
+ WirelessDevicesToAdd?: string[];
4149
+ /**
4150
+ * <p>WirelessDevices to remove from NetworkAnalyzerConfiguration.</p>
4151
+ */
4152
+ WirelessDevicesToRemove?: string[];
4153
+ /**
4154
+ * <p>WirelessGateways to add into NetworkAnalyzerConfiguration.</p>
4155
+ */
4156
+ WirelessGatewaysToAdd?: string[];
4157
+ /**
4158
+ * <p>WirelessGateways to remove from NetworkAnalyzerConfiguration.</p>
4159
+ */
4160
+ WirelessGatewaysToRemove?: string[];
4161
+ }
4162
+ export declare namespace UpdateNetworkAnalyzerConfigurationRequest {
4163
+ /**
4164
+ * @internal
4165
+ */
4166
+ const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationRequest) => any;
4167
+ }
4168
+ export interface UpdateNetworkAnalyzerConfigurationResponse {
4169
+ }
4170
+ export declare namespace UpdateNetworkAnalyzerConfigurationResponse {
4171
+ /**
4172
+ * @internal
4173
+ */
4174
+ const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationResponse) => any;
4175
+ }
4081
4176
  /**
4082
4177
  * <p>Sidewalk update.</p>
4083
4178
  */
@@ -39,6 +39,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "../commands
39
39
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "../commands/GetLogLevelsByResourceTypesCommand";
40
40
  import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "../commands/GetMulticastGroupCommand";
41
41
  import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "../commands/GetMulticastGroupSessionCommand";
42
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "../commands/GetNetworkAnalyzerConfigurationCommand";
42
43
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "../commands/GetPartnerAccountCommand";
43
44
  import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "../commands/GetResourceEventConfigurationCommand";
44
45
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "../commands/GetResourceLogLevelCommand";
@@ -79,6 +80,7 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
79
80
  import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "../commands/UpdateFuotaTaskCommand";
80
81
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "../commands/UpdateLogLevelsByResourceTypesCommand";
81
82
  import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "../commands/UpdateMulticastGroupCommand";
83
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "../commands/UpdateNetworkAnalyzerConfigurationCommand";
82
84
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "../commands/UpdatePartnerAccountCommand";
83
85
  import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "../commands/UpdateResourceEventConfigurationCommand";
84
86
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "../commands/UpdateWirelessDeviceCommand";
@@ -122,6 +124,7 @@ export declare const serializeAws_restJson1GetFuotaTaskCommand: (input: GetFuota
122
124
  export declare const serializeAws_restJson1GetLogLevelsByResourceTypesCommand: (input: GetLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
123
125
  export declare const serializeAws_restJson1GetMulticastGroupCommand: (input: GetMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
124
126
  export declare const serializeAws_restJson1GetMulticastGroupSessionCommand: (input: GetMulticastGroupSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
+ export declare const serializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (input: GetNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
128
  export declare const serializeAws_restJson1GetPartnerAccountCommand: (input: GetPartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
129
  export declare const serializeAws_restJson1GetResourceEventConfigurationCommand: (input: GetResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
130
  export declare const serializeAws_restJson1GetResourceLogLevelCommand: (input: GetResourceLogLevelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -162,6 +165,7 @@ export declare const serializeAws_restJson1UpdateDestinationCommand: (input: Upd
162
165
  export declare const serializeAws_restJson1UpdateFuotaTaskCommand: (input: UpdateFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
163
166
  export declare const serializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (input: UpdateLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
164
167
  export declare const serializeAws_restJson1UpdateMulticastGroupCommand: (input: UpdateMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
168
+ export declare const serializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (input: UpdateNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
165
169
  export declare const serializeAws_restJson1UpdatePartnerAccountCommand: (input: UpdatePartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
166
170
  export declare const serializeAws_restJson1UpdateResourceEventConfigurationCommand: (input: UpdateResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
167
171
  export declare const serializeAws_restJson1UpdateWirelessDeviceCommand: (input: UpdateWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -205,6 +209,7 @@ export declare const deserializeAws_restJson1GetFuotaTaskCommand: (output: __Htt
205
209
  export declare const deserializeAws_restJson1GetLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLogLevelsByResourceTypesCommandOutput>;
206
210
  export declare const deserializeAws_restJson1GetMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupCommandOutput>;
207
211
  export declare const deserializeAws_restJson1GetMulticastGroupSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupSessionCommandOutput>;
212
+ export declare const deserializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
208
213
  export declare const deserializeAws_restJson1GetPartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPartnerAccountCommandOutput>;
209
214
  export declare const deserializeAws_restJson1GetResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceEventConfigurationCommandOutput>;
210
215
  export declare const deserializeAws_restJson1GetResourceLogLevelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceLogLevelCommandOutput>;
@@ -245,6 +250,7 @@ export declare const deserializeAws_restJson1UpdateDestinationCommand: (output:
245
250
  export declare const deserializeAws_restJson1UpdateFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFuotaTaskCommandOutput>;
246
251
  export declare const deserializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
247
252
  export declare const deserializeAws_restJson1UpdateMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMulticastGroupCommandOutput>;
253
+ export declare const deserializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
248
254
  export declare const deserializeAws_restJson1UpdatePartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePartnerAccountCommandOutput>;
249
255
  export declare const deserializeAws_restJson1UpdateResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceEventConfigurationCommandOutput>;
250
256
  export declare const deserializeAws_restJson1UpdateWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWirelessDeviceCommandOutput>;
@@ -38,6 +38,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/
38
38
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
39
39
  import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
40
40
  import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
41
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
41
42
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
42
43
  import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
43
44
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
@@ -78,6 +79,7 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
78
79
  import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
79
80
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
80
81
  import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
82
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
81
83
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
82
84
  import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
83
85
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
@@ -242,6 +244,10 @@ export declare class IoTWireless extends IoTWirelessClient {
242
244
  getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
243
245
  getMulticastGroupSession(args: GetMulticastGroupSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMulticastGroupSessionCommandOutput) => void): void;
244
246
 
247
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
248
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
249
+ getNetworkAnalyzerConfiguration(args: GetNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkAnalyzerConfigurationCommandOutput) => void): void;
250
+
245
251
  getPartnerAccount(args: GetPartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetPartnerAccountCommandOutput>;
246
252
  getPartnerAccount(args: GetPartnerAccountCommandInput, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
247
253
  getPartnerAccount(args: GetPartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPartnerAccountCommandOutput) => void): void;
@@ -402,6 +408,10 @@ export declare class IoTWireless extends IoTWirelessClient {
402
408
  updateMulticastGroup(args: UpdateMulticastGroupCommandInput, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
403
409
  updateMulticastGroup(args: UpdateMulticastGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMulticastGroupCommandOutput) => void): void;
404
410
 
411
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
412
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
413
+ updateNetworkAnalyzerConfiguration(args: UpdateNetworkAnalyzerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkAnalyzerConfigurationCommandOutput) => void): void;
414
+
405
415
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePartnerAccountCommandOutput>;
406
416
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
407
417
  updatePartnerAccount(args: UpdatePartnerAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePartnerAccountCommandOutput) => void): void;
@@ -45,6 +45,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "./commands/
45
45
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "./commands/GetLogLevelsByResourceTypesCommand";
46
46
  import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "./commands/GetMulticastGroupCommand";
47
47
  import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "./commands/GetMulticastGroupSessionCommand";
48
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "./commands/GetNetworkAnalyzerConfigurationCommand";
48
49
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "./commands/GetPartnerAccountCommand";
49
50
  import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "./commands/GetResourceEventConfigurationCommand";
50
51
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "./commands/GetResourceLogLevelCommand";
@@ -85,12 +86,13 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
85
86
  import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "./commands/UpdateFuotaTaskCommand";
86
87
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "./commands/UpdateLogLevelsByResourceTypesCommand";
87
88
  import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "./commands/UpdateMulticastGroupCommand";
89
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "./commands/UpdateNetworkAnalyzerConfigurationCommand";
88
90
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "./commands/UpdatePartnerAccountCommand";
89
91
  import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "./commands/UpdateResourceEventConfigurationCommand";
90
92
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "./commands/UpdateWirelessDeviceCommand";
91
93
  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;
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;
94
96
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
95
97
 
96
98
  requestHandler?: __HttpHandler;
@@ -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 { 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
+ }
@@ -37,6 +37,7 @@ export * from "./GetFuotaTaskCommand";
37
37
  export * from "./GetLogLevelsByResourceTypesCommand";
38
38
  export * from "./GetMulticastGroupCommand";
39
39
  export * from "./GetMulticastGroupSessionCommand";
40
+ export * from "./GetNetworkAnalyzerConfigurationCommand";
40
41
  export * from "./GetPartnerAccountCommand";
41
42
  export * from "./GetResourceEventConfigurationCommand";
42
43
  export * from "./GetResourceLogLevelCommand";
@@ -77,6 +78,7 @@ export * from "./UpdateDestinationCommand";
77
78
  export * from "./UpdateFuotaTaskCommand";
78
79
  export * from "./UpdateLogLevelsByResourceTypesCommand";
79
80
  export * from "./UpdateMulticastGroupCommand";
81
+ export * from "./UpdateNetworkAnalyzerConfigurationCommand";
80
82
  export * from "./UpdatePartnerAccountCommand";
81
83
  export * from "./UpdateResourceEventConfigurationCommand";
82
84
  export * from "./UpdateWirelessDeviceCommand";
@@ -1339,6 +1339,41 @@ export declare namespace GetMulticastGroupSessionResponse {
1339
1339
 
1340
1340
  const filterSensitiveLog: (obj: GetMulticastGroupSessionResponse) => any;
1341
1341
  }
1342
+ export interface GetNetworkAnalyzerConfigurationRequest {
1343
+
1344
+ ConfigurationName: string | undefined;
1345
+ }
1346
+ export declare namespace GetNetworkAnalyzerConfigurationRequest {
1347
+
1348
+ const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationRequest) => any;
1349
+ }
1350
+ export declare enum WirelessDeviceFrameInfo {
1351
+ DISABLED = "DISABLED",
1352
+ ENABLED = "ENABLED"
1353
+ }
1354
+
1355
+ export interface TraceContent {
1356
+
1357
+ WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | string;
1358
+
1359
+ LogLevel?: LogLevel | string;
1360
+ }
1361
+ export declare namespace TraceContent {
1362
+
1363
+ const filterSensitiveLog: (obj: TraceContent) => any;
1364
+ }
1365
+ export interface GetNetworkAnalyzerConfigurationResponse {
1366
+
1367
+ TraceContent?: TraceContent;
1368
+
1369
+ WirelessDevices?: string[];
1370
+
1371
+ WirelessGateways?: string[];
1372
+ }
1373
+ export declare namespace GetNetworkAnalyzerConfigurationResponse {
1374
+
1375
+ const filterSensitiveLog: (obj: GetNetworkAnalyzerConfigurationResponse) => any;
1376
+ }
1342
1377
  export interface GetPartnerAccountRequest {
1343
1378
 
1344
1379
  PartnerAccountId: string | undefined;
@@ -2515,6 +2550,30 @@ export declare namespace UpdateMulticastGroupResponse {
2515
2550
 
2516
2551
  const filterSensitiveLog: (obj: UpdateMulticastGroupResponse) => any;
2517
2552
  }
2553
+ export interface UpdateNetworkAnalyzerConfigurationRequest {
2554
+
2555
+ ConfigurationName: string | undefined;
2556
+
2557
+ TraceContent?: TraceContent;
2558
+
2559
+ WirelessDevicesToAdd?: string[];
2560
+
2561
+ WirelessDevicesToRemove?: string[];
2562
+
2563
+ WirelessGatewaysToAdd?: string[];
2564
+
2565
+ WirelessGatewaysToRemove?: string[];
2566
+ }
2567
+ export declare namespace UpdateNetworkAnalyzerConfigurationRequest {
2568
+
2569
+ const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationRequest) => any;
2570
+ }
2571
+ export interface UpdateNetworkAnalyzerConfigurationResponse {
2572
+ }
2573
+ export declare namespace UpdateNetworkAnalyzerConfigurationResponse {
2574
+
2575
+ const filterSensitiveLog: (obj: UpdateNetworkAnalyzerConfigurationResponse) => any;
2576
+ }
2518
2577
 
2519
2578
  export interface SidewalkUpdateAccount {
2520
2579
 
@@ -39,6 +39,7 @@ import { GetFuotaTaskCommandInput, GetFuotaTaskCommandOutput } from "../commands
39
39
  import { GetLogLevelsByResourceTypesCommandInput, GetLogLevelsByResourceTypesCommandOutput } from "../commands/GetLogLevelsByResourceTypesCommand";
40
40
  import { GetMulticastGroupCommandInput, GetMulticastGroupCommandOutput } from "../commands/GetMulticastGroupCommand";
41
41
  import { GetMulticastGroupSessionCommandInput, GetMulticastGroupSessionCommandOutput } from "../commands/GetMulticastGroupSessionCommand";
42
+ import { GetNetworkAnalyzerConfigurationCommandInput, GetNetworkAnalyzerConfigurationCommandOutput } from "../commands/GetNetworkAnalyzerConfigurationCommand";
42
43
  import { GetPartnerAccountCommandInput, GetPartnerAccountCommandOutput } from "../commands/GetPartnerAccountCommand";
43
44
  import { GetResourceEventConfigurationCommandInput, GetResourceEventConfigurationCommandOutput } from "../commands/GetResourceEventConfigurationCommand";
44
45
  import { GetResourceLogLevelCommandInput, GetResourceLogLevelCommandOutput } from "../commands/GetResourceLogLevelCommand";
@@ -79,6 +80,7 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput } from ".
79
80
  import { UpdateFuotaTaskCommandInput, UpdateFuotaTaskCommandOutput } from "../commands/UpdateFuotaTaskCommand";
80
81
  import { UpdateLogLevelsByResourceTypesCommandInput, UpdateLogLevelsByResourceTypesCommandOutput } from "../commands/UpdateLogLevelsByResourceTypesCommand";
81
82
  import { UpdateMulticastGroupCommandInput, UpdateMulticastGroupCommandOutput } from "../commands/UpdateMulticastGroupCommand";
83
+ import { UpdateNetworkAnalyzerConfigurationCommandInput, UpdateNetworkAnalyzerConfigurationCommandOutput } from "../commands/UpdateNetworkAnalyzerConfigurationCommand";
82
84
  import { UpdatePartnerAccountCommandInput, UpdatePartnerAccountCommandOutput } from "../commands/UpdatePartnerAccountCommand";
83
85
  import { UpdateResourceEventConfigurationCommandInput, UpdateResourceEventConfigurationCommandOutput } from "../commands/UpdateResourceEventConfigurationCommand";
84
86
  import { UpdateWirelessDeviceCommandInput, UpdateWirelessDeviceCommandOutput } from "../commands/UpdateWirelessDeviceCommand";
@@ -122,6 +124,7 @@ export declare const serializeAws_restJson1GetFuotaTaskCommand: (input: GetFuota
122
124
  export declare const serializeAws_restJson1GetLogLevelsByResourceTypesCommand: (input: GetLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
123
125
  export declare const serializeAws_restJson1GetMulticastGroupCommand: (input: GetMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
124
126
  export declare const serializeAws_restJson1GetMulticastGroupSessionCommand: (input: GetMulticastGroupSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
+ export declare const serializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (input: GetNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
128
  export declare const serializeAws_restJson1GetPartnerAccountCommand: (input: GetPartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
129
  export declare const serializeAws_restJson1GetResourceEventConfigurationCommand: (input: GetResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
130
  export declare const serializeAws_restJson1GetResourceLogLevelCommand: (input: GetResourceLogLevelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -162,6 +165,7 @@ export declare const serializeAws_restJson1UpdateDestinationCommand: (input: Upd
162
165
  export declare const serializeAws_restJson1UpdateFuotaTaskCommand: (input: UpdateFuotaTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
163
166
  export declare const serializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (input: UpdateLogLevelsByResourceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
164
167
  export declare const serializeAws_restJson1UpdateMulticastGroupCommand: (input: UpdateMulticastGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
168
+ export declare const serializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (input: UpdateNetworkAnalyzerConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
165
169
  export declare const serializeAws_restJson1UpdatePartnerAccountCommand: (input: UpdatePartnerAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
166
170
  export declare const serializeAws_restJson1UpdateResourceEventConfigurationCommand: (input: UpdateResourceEventConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
167
171
  export declare const serializeAws_restJson1UpdateWirelessDeviceCommand: (input: UpdateWirelessDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -205,6 +209,7 @@ export declare const deserializeAws_restJson1GetFuotaTaskCommand: (output: __Htt
205
209
  export declare const deserializeAws_restJson1GetLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLogLevelsByResourceTypesCommandOutput>;
206
210
  export declare const deserializeAws_restJson1GetMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupCommandOutput>;
207
211
  export declare const deserializeAws_restJson1GetMulticastGroupSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMulticastGroupSessionCommandOutput>;
212
+ export declare const deserializeAws_restJson1GetNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNetworkAnalyzerConfigurationCommandOutput>;
208
213
  export declare const deserializeAws_restJson1GetPartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPartnerAccountCommandOutput>;
209
214
  export declare const deserializeAws_restJson1GetResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceEventConfigurationCommandOutput>;
210
215
  export declare const deserializeAws_restJson1GetResourceLogLevelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceLogLevelCommandOutput>;
@@ -245,6 +250,7 @@ export declare const deserializeAws_restJson1UpdateDestinationCommand: (output:
245
250
  export declare const deserializeAws_restJson1UpdateFuotaTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFuotaTaskCommandOutput>;
246
251
  export declare const deserializeAws_restJson1UpdateLogLevelsByResourceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLogLevelsByResourceTypesCommandOutput>;
247
252
  export declare const deserializeAws_restJson1UpdateMulticastGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMulticastGroupCommandOutput>;
253
+ export declare const deserializeAws_restJson1UpdateNetworkAnalyzerConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNetworkAnalyzerConfigurationCommandOutput>;
248
254
  export declare const deserializeAws_restJson1UpdatePartnerAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePartnerAccountCommandOutput>;
249
255
  export declare const deserializeAws_restJson1UpdateResourceEventConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceEventConfigurationCommandOutput>;
250
256
  export declare const deserializeAws_restJson1UpdateWirelessDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWirelessDeviceCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.42.0",
4
+ "version": "3.43.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.42.0",
24
+ "@aws-sdk/client-sts": "3.43.0",
25
25
  "@aws-sdk/config-resolver": "3.40.0",
26
26
  "@aws-sdk/credential-provider-node": "3.41.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",