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 { UpdatePositionRequest, UpdatePositionResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdatePositionCommand}. */ export interface UpdatePositionCommandInput extends UpdatePositionRequest { } /** * @public * * The output of {@link UpdatePositionCommand}. */ export interface UpdatePositionCommandOutput extends UpdatePositionResponse, __MetadataBearer { } declare const UpdatePositionCommand_base: { new (input: UpdatePositionCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdatePositionCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Update the position information of a resource.

* *

This action is no longer supported. Calls to update the position information * should use the UpdateResourcePosition API operation instead.

*
* * @deprecated This operation is no longer supported. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, UpdatePositionCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, UpdatePositionCommand } = 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 = { // UpdatePositionRequest * ResourceIdentifier: "STRING_VALUE", // required * ResourceType: "WirelessDevice" || "WirelessGateway", // required * Position: [ // PositionCoordinate // required * Number("float"), * ], * }; * const command = new UpdatePositionCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdatePositionCommandInput - {@link UpdatePositionCommandInput} * @returns {@link UpdatePositionCommandOutput} * @see {@link UpdatePositionCommandInput} for command's `input` shape. * @see {@link UpdatePositionCommandOutput} 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 UpdatePositionCommand extends UpdatePositionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdatePositionRequest; output: {}; }; sdk: { input: UpdatePositionCommandInput; output: UpdatePositionCommandOutput; }; }; }