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 { GetWirelessDeviceImportTaskRequest, GetWirelessDeviceImportTaskResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetWirelessDeviceImportTaskCommand}. */ export interface GetWirelessDeviceImportTaskCommandInput extends GetWirelessDeviceImportTaskRequest { } /** * @public * * The output of {@link GetWirelessDeviceImportTaskCommand}. */ export interface GetWirelessDeviceImportTaskCommandOutput extends GetWirelessDeviceImportTaskResponse, __MetadataBearer { } declare const GetWirelessDeviceImportTaskCommand_base: { new (input: GetWirelessDeviceImportTaskCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetWirelessDeviceImportTaskCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Get information about an import task and count of device onboarding summary * information for the import task.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTWirelessClient, GetWirelessDeviceImportTaskCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import * // const { IoTWirelessClient, GetWirelessDeviceImportTaskCommand } = 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 = { // GetWirelessDeviceImportTaskRequest * Id: "STRING_VALUE", // required * }; * const command = new GetWirelessDeviceImportTaskCommand(input); * const response = await client.send(command); * // { // GetWirelessDeviceImportTaskResponse * // Id: "STRING_VALUE", * // Arn: "STRING_VALUE", * // DestinationName: "STRING_VALUE", * // Positioning: "Enabled" || "Disabled", * // Sidewalk: { // SidewalkGetStartImportInfo * // DeviceCreationFileList: [ // DeviceCreationFileList * // "STRING_VALUE", * // ], * // Role: "STRING_VALUE", * // Positioning: { // SidewalkPositioning * // DestinationName: "STRING_VALUE", * // }, * // }, * // CreationTime: new Date("TIMESTAMP"), * // Status: "INITIALIZING" || "INITIALIZED" || "PENDING" || "COMPLETE" || "FAILED" || "DELETING", * // StatusReason: "STRING_VALUE", * // InitializedImportedDeviceCount: Number("long"), * // PendingImportedDeviceCount: Number("long"), * // OnboardedImportedDeviceCount: Number("long"), * // FailedImportedDeviceCount: Number("long"), * // }; * * ``` * * @param GetWirelessDeviceImportTaskCommandInput - {@link GetWirelessDeviceImportTaskCommandInput} * @returns {@link GetWirelessDeviceImportTaskCommandOutput} * @see {@link GetWirelessDeviceImportTaskCommandInput} for command's `input` shape. * @see {@link GetWirelessDeviceImportTaskCommandOutput} 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 ConflictException} (client fault) *

Adding, updating, or deleting the resource can cause an inconsistent state.

* * @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 GetWirelessDeviceImportTaskCommand extends GetWirelessDeviceImportTaskCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetWirelessDeviceImportTaskRequest; output: GetWirelessDeviceImportTaskResponse; }; sdk: { input: GetWirelessDeviceImportTaskCommandInput; output: GetWirelessDeviceImportTaskCommandOutput; }; }; }