import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateDeviceRequest, CreateDeviceResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateDeviceCommand}. */ export interface CreateDeviceCommandInput extends CreateDeviceRequest { } /** * @public * * The output of {@link CreateDeviceCommand}. */ export interface CreateDeviceCommandOutput extends CreateDeviceResponse, __MetadataBearer { } declare const CreateDeviceCommand_base: { new (input: CreateDeviceCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateDeviceCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Creates a new device in a global network. If you specify both a site ID and a * location, the location of the site is used for visualization in the Network Manager console.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { NetworkManagerClient, CreateDeviceCommand } from "@aws-sdk/client-networkmanager"; // ES Modules import * // const { NetworkManagerClient, CreateDeviceCommand } = require("@aws-sdk/client-networkmanager"); // CommonJS import * // import type { NetworkManagerClientConfig } from "@aws-sdk/client-networkmanager"; * const config = {}; // type is NetworkManagerClientConfig * const client = new NetworkManagerClient(config); * const input = { // CreateDeviceRequest * GlobalNetworkId: "STRING_VALUE", // required * AWSLocation: { // AWSLocation * Zone: "STRING_VALUE", * SubnetArn: "STRING_VALUE", * }, * Description: "STRING_VALUE", * Type: "STRING_VALUE", * Vendor: "STRING_VALUE", * Model: "STRING_VALUE", * SerialNumber: "STRING_VALUE", * Location: { // Location * Address: "STRING_VALUE", * Latitude: "STRING_VALUE", * Longitude: "STRING_VALUE", * }, * SiteId: "STRING_VALUE", * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", * Value: "STRING_VALUE", * }, * ], * }; * const command = new CreateDeviceCommand(input); * const response = await client.send(command); * // { // CreateDeviceResponse * // Device: { // Device * // DeviceId: "STRING_VALUE", * // DeviceArn: "STRING_VALUE", * // GlobalNetworkId: "STRING_VALUE", * // AWSLocation: { // AWSLocation * // Zone: "STRING_VALUE", * // SubnetArn: "STRING_VALUE", * // }, * // Description: "STRING_VALUE", * // Type: "STRING_VALUE", * // Vendor: "STRING_VALUE", * // Model: "STRING_VALUE", * // SerialNumber: "STRING_VALUE", * // Location: { // Location * // Address: "STRING_VALUE", * // Latitude: "STRING_VALUE", * // Longitude: "STRING_VALUE", * // }, * // SiteId: "STRING_VALUE", * // CreatedAt: new Date("TIMESTAMP"), * // State: "PENDING" || "AVAILABLE" || "DELETING" || "UPDATING", * // Tags: [ // TagList * // { // Tag * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // }, * // }; * * ``` * * @param CreateDeviceCommandInput - {@link CreateDeviceCommandInput} * @returns {@link CreateDeviceCommandOutput} * @see {@link CreateDeviceCommandInput} for command's `input` shape. * @see {@link CreateDeviceCommandOutput} for command's `response` shape. * @see {@link NetworkManagerClientResolvedConfig | config} for NetworkManagerClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

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

There was a conflict processing the request. Updating or deleting the resource can * cause an inconsistent state.

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

The request has failed due to an internal error.

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

The specified resource could not be found.

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

A service limit was exceeded.

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

The request was denied due to request throttling.

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

The input fails to satisfy the constraints.

* * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* * * @public */ export declare class CreateDeviceCommand extends CreateDeviceCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateDeviceRequest; output: CreateDeviceResponse; }; sdk: { input: CreateDeviceCommandInput; output: CreateDeviceCommandOutput; }; }; }