import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get information about a Databox Edge Device. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.databoxedge.getDevice({ * name: "example-device", * resourceGroupName: "example-rg", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DataBoxEdge` - 2022-03-01 */ export declare function getDevice(args: GetDeviceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDevice. */ export interface GetDeviceArgs { /** * The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created. */ name: string; /** * The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created. */ resourceGroupName: string; } /** * A collection of values returned by getDevice. */ export interface GetDeviceResult { /** * A `deviceProperties` block as defined below. */ readonly deviceProperties: outputs.databoxedge.GetDeviceDeviceProperty[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Databox Edge Device should exist. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * The `skuName` is comprised of two segments separated by a hyphen (e.g. `TEA_1Node_UPS_Heater-Standard`). The first segment of the `skuName` defines the `name` of the SKU. The second segment defines the `tier` of the `skuName`. For more information see the product documentation. */ readonly skuName: string; /** * A mapping of tags which should be assigned to the Databox Edge Device. */ readonly tags: { [key: string]: string; }; } /** * Get information about a Databox Edge Device. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.databoxedge.getDevice({ * name: "example-device", * resourceGroupName: "example-rg", * }); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DataBoxEdge` - 2022-03-01 */ export declare function getDeviceOutput(args: GetDeviceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDevice. */ export interface GetDeviceOutputArgs { /** * The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created. */ name: pulumi.Input; /** * The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created. */ resourceGroupName: pulumi.Input; }