import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; import type { UpdateWirelessDeviceRequest, UpdateWirelessDeviceResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateWirelessDeviceCommand}. */ export interface UpdateWirelessDeviceCommandInput extends UpdateWirelessDeviceRequest { } /** * @public * * The output of {@link UpdateWirelessDeviceCommand}. */ export interface UpdateWirelessDeviceCommandOutput extends UpdateWirelessDeviceResponse, __MetadataBearer { } declare const UpdateWirelessDeviceCommand_base: { new (input: UpdateWirelessDeviceCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdateWirelessDeviceCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Updates properties of a wireless device.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, UpdateWirelessDeviceCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, UpdateWirelessDeviceCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import * // import type { IoTWirelessClientConfig } from "@aws-sdk/client-iot-wireless"; * const config = {}; // type is IoTWirelessClientConfig * const client = new IoTWirelessClient(config); * const input = { // UpdateWirelessDeviceRequest * Id: "STRING_VALUE", // required * DestinationName: "STRING_VALUE", * Name: "STRING_VALUE", * Description: "STRING_VALUE", * LoRaWAN: { // LoRaWANUpdateDevice * DeviceProfileId: "STRING_VALUE", * ServiceProfileId: "STRING_VALUE", * AbpV1_1: { // UpdateAbpV1_1 * FCntStart: Number("int"), * }, * AbpV1_0_x: { // UpdateAbpV1_0_x * FCntStart: Number("int"), * }, * FPorts: { // UpdateFPorts * Positioning: { // Positioning * ClockSync: Number("int"), * Stream: Number("int"), * Gnss: Number("int"), * }, * Applications: [ // Applications * { // ApplicationConfig * FPort: Number("int"), * Type: "SemtechGeolocation", * DestinationName: "STRING_VALUE", * }, * ], * }, * }, * Positioning: "Enabled" || "Disabled", * Sidewalk: { // SidewalkUpdateWirelessDevice * Positioning: { // SidewalkPositioning * DestinationName: "STRING_VALUE", * }, * }, * }; * const command = new UpdateWirelessDeviceCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateWirelessDeviceCommandInput - {@link UpdateWirelessDeviceCommandInput} * @returns {@link UpdateWirelessDeviceCommandOutput} * @see {@link UpdateWirelessDeviceCommandInput} for command's `input` shape. * @see {@link UpdateWirelessDeviceCommandOutput} for command's `response` shape. * @see {@link IoTWirelessClientResolvedConfig | config} for IoTWirelessClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

User does not have permission to perform this action.

* * @throws {@link InternalServerException} (server fault) *

An unexpected error occurred while processing a request.

* * @throws {@link ResourceNotFoundException} (client fault) *

Resource does not exist.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied because it exceeded the allowed API request rate.

* * @throws {@link ValidationException} (client fault) *

The input did not meet the specified constraints.

* * @throws {@link IoTWirelessServiceException} *

Base exception class for all service exceptions from IoTWireless service.

* * * @public */ export declare class UpdateWirelessDeviceCommand extends UpdateWirelessDeviceCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateWirelessDeviceRequest; output: {}; }; sdk: { input: UpdateWirelessDeviceCommandInput; output: UpdateWirelessDeviceCommandOutput; }; }; }