We recommend using Azure Native.
azure.databoxedge.Device
Explore with Pulumi AI
Manages a Databox Edge Device.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-databoxedge",
location: "West Europe",
});
const exampleDevice = new azure.databoxedge.Device("example", {
name: "example-device",
resourceGroupName: example.name,
location: example.location,
skuName: "EdgeP_Base-Standard",
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-databoxedge",
location="West Europe")
example_device = azure.databoxedge.Device("example",
name="example-device",
resource_group_name=example.name,
location=example.location,
sku_name="EdgeP_Base-Standard")
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/databoxedge"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-databoxedge"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = databoxedge.NewDevice(ctx, "example", &databoxedge.DeviceArgs{
Name: pulumi.String("example-device"),
ResourceGroupName: example.Name,
Location: example.Location,
SkuName: pulumi.String("EdgeP_Base-Standard"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-databoxedge",
Location = "West Europe",
});
var exampleDevice = new Azure.DataboxEdge.Device("example", new()
{
Name = "example-device",
ResourceGroupName = example.Name,
Location = example.Location,
SkuName = "EdgeP_Base-Standard",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.databoxedge.Device;
import com.pulumi.azure.databoxedge.DeviceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-databoxedge")
.location("West Europe")
.build());
var exampleDevice = new Device("exampleDevice", DeviceArgs.builder()
.name("example-device")
.resourceGroupName(example.name())
.location(example.location())
.skuName("EdgeP_Base-Standard")
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-databoxedge
location: West Europe
exampleDevice:
type: azure:databoxedge:Device
name: example
properties:
name: example-device
resourceGroupName: ${example.name}
location: ${example.location}
skuName: EdgeP_Base-Standard
Create Device Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Device(name: string, args: DeviceArgs, opts?: CustomResourceOptions);
@overload
def Device(resource_name: str,
args: DeviceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Device(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku_name: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewDevice(ctx *Context, name string, args DeviceArgs, opts ...ResourceOption) (*Device, error)
public Device(string name, DeviceArgs args, CustomResourceOptions? opts = null)
public Device(String name, DeviceArgs args)
public Device(String name, DeviceArgs args, CustomResourceOptions options)
type: azure:databoxedge:Device
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DeviceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DeviceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DeviceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeviceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DeviceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var deviceResource = new Azure.DataboxEdge.Device("deviceResource", new()
{
ResourceGroupName = "string",
SkuName = "string",
Location = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := databoxedge.NewDevice(ctx, "deviceResource", &databoxedge.DeviceArgs{
ResourceGroupName: pulumi.String("string"),
SkuName: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var deviceResource = new Device("deviceResource", DeviceArgs.builder()
.resourceGroupName("string")
.skuName("string")
.location("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
device_resource = azure.databoxedge.Device("deviceResource",
resource_group_name="string",
sku_name="string",
location="string",
name="string",
tags={
"string": "string",
})
const deviceResource = new azure.databoxedge.Device("deviceResource", {
resourceGroupName: "string",
skuName: "string",
location: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:databoxedge:Device
properties:
location: string
name: string
resourceGroupName: string
skuName: string
tags:
string: string
Device Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Device resource accepts the following input properties:
- Resource
Group stringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- Sku
Name string - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - Location string
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- Name string
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Databox Edge Device.
- Resource
Group stringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- Sku
Name string - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - Location string
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- Name string
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- map[string]string
- A mapping of tags which should be assigned to the Databox Edge Device.
- resource
Group StringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- sku
Name String - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - location String
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- name String
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Databox Edge Device.
- resource
Group stringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- sku
Name string - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - location string
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- name string
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Databox Edge Device.
- resource_
group_ strname - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- sku_
name str - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - location str
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- name str
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Databox Edge Device.
- resource
Group StringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- sku
Name String - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - location String
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- name String
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- Map<String>
- A mapping of tags which should be assigned to the Databox Edge Device.
Outputs
All input properties are implicitly available as output properties. Additionally, the Device resource produces the following output properties:
- Device
Properties List<Pulumi.Azure. Databox Edge. Outputs. Device Device Property> - A
device_properties
block as defined below. - Id string
- The provider-assigned unique ID for this managed resource.
- Device
Properties []DeviceDevice Property - A
device_properties
block as defined below. - Id string
- The provider-assigned unique ID for this managed resource.
- device
Properties List<DeviceDevice Property> - A
device_properties
block as defined below. - id String
- The provider-assigned unique ID for this managed resource.
- device
Properties DeviceDevice Property[] - A
device_properties
block as defined below. - id string
- The provider-assigned unique ID for this managed resource.
- device_
properties Sequence[DeviceDevice Property] - A
device_properties
block as defined below. - id str
- The provider-assigned unique ID for this managed resource.
- device
Properties List<Property Map> - A
device_properties
block as defined below. - id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Device Resource
Get an existing Device resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DeviceState, opts?: CustomResourceOptions): Device
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
device_properties: Optional[Sequence[DeviceDevicePropertyArgs]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
sku_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> Device
func GetDevice(ctx *Context, name string, id IDInput, state *DeviceState, opts ...ResourceOption) (*Device, error)
public static Device Get(string name, Input<string> id, DeviceState? state, CustomResourceOptions? opts = null)
public static Device get(String name, Output<String> id, DeviceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Device
Properties List<Pulumi.Azure. Databox Edge. Inputs. Device Device Property> - A
device_properties
block as defined below. - Location string
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- Name string
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- Resource
Group stringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- Sku
Name string - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - Dictionary<string, string>
- A mapping of tags which should be assigned to the Databox Edge Device.
- Device
Properties []DeviceDevice Property Args - A
device_properties
block as defined below. - Location string
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- Name string
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- Resource
Group stringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- Sku
Name string - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - map[string]string
- A mapping of tags which should be assigned to the Databox Edge Device.
- device
Properties List<DeviceDevice Property> - A
device_properties
block as defined below. - location String
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- name String
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- resource
Group StringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- sku
Name String - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - Map<String,String>
- A mapping of tags which should be assigned to the Databox Edge Device.
- device
Properties DeviceDevice Property[] - A
device_properties
block as defined below. - location string
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- name string
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- resource
Group stringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- sku
Name string - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - {[key: string]: string}
- A mapping of tags which should be assigned to the Databox Edge Device.
- device_
properties Sequence[DeviceDevice Property Args] - A
device_properties
block as defined below. - location str
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- name str
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- resource_
group_ strname - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- sku_
name str - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - Mapping[str, str]
- A mapping of tags which should be assigned to the Databox Edge Device.
- device
Properties List<Property Map> - A
device_properties
block as defined below. - location String
- The Azure Region where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- name String
- The name which should be used for this Databox Edge Device. Changing this forces a new Databox Edge Device to be created.
- resource
Group StringName - The name of the Resource Group where the Databox Edge Device should exist. Changing this forces a new Databox Edge Device to be created.
- sku
Name String - The
sku_name
is comprised of two segments separated by a hyphen (e.g.TEA_1Node_UPS_Heater-Standard
). The first segment of thesku_name
defines thename
of the SKU, possible values areGateway
,EdgeMR_Mini
,EdgeP_Base
,EdgeP_High
,EdgePR_Base
,EdgePR_Base_UPS
,GPU
,RCA_Large
,RCA_Small
,RDC
,TCA_Large
,TCA_Small
,TDC
,TEA_1Node
,TEA_1Node_UPS
,TEA_1Node_Heater
,TEA_1Node_UPS_Heater
,TEA_4Node_Heater
,TEA_4Node_UPS_Heater
orTMA
. The second segment defines thetier
of thesku_name
, possible values areStandard
. For more information see the product documentation. Changing this forces a new Databox Edge Device to be created. - Map<String>
- A mapping of tags which should be assigned to the Databox Edge Device.
Supporting Types
DeviceDeviceProperty, DeviceDevicePropertyArgs
- Capacity int
- The Data Box Edge/Gateway device local capacity in MB.
- Configured
Role List<string>Types - Type of compute roles configured.
- Culture string
- The Data Box Edge/Gateway device culture.
- Hcs
Version string - The device software version number of the device (e.g. 1.2.18105.6).
- Model string
- The Data Box Edge/Gateway device model.
- Node
Count int - The number of nodes in the cluster.
- Serial
Number string - The Serial Number of Data Box Edge/Gateway device.
- Software
Version string - The Data Box Edge/Gateway device software version.
- Status string
- The status of the Data Box Edge/Gateway device.
- Time
Zone string - The Data Box Edge/Gateway device timezone.
- Type string
- The type of the Data Box Edge/Gateway device.
- Capacity int
- The Data Box Edge/Gateway device local capacity in MB.
- Configured
Role []stringTypes - Type of compute roles configured.
- Culture string
- The Data Box Edge/Gateway device culture.
- Hcs
Version string - The device software version number of the device (e.g. 1.2.18105.6).
- Model string
- The Data Box Edge/Gateway device model.
- Node
Count int - The number of nodes in the cluster.
- Serial
Number string - The Serial Number of Data Box Edge/Gateway device.
- Software
Version string - The Data Box Edge/Gateway device software version.
- Status string
- The status of the Data Box Edge/Gateway device.
- Time
Zone string - The Data Box Edge/Gateway device timezone.
- Type string
- The type of the Data Box Edge/Gateway device.
- capacity Integer
- The Data Box Edge/Gateway device local capacity in MB.
- configured
Role List<String>Types - Type of compute roles configured.
- culture String
- The Data Box Edge/Gateway device culture.
- hcs
Version String - The device software version number of the device (e.g. 1.2.18105.6).
- model String
- The Data Box Edge/Gateway device model.
- node
Count Integer - The number of nodes in the cluster.
- serial
Number String - The Serial Number of Data Box Edge/Gateway device.
- software
Version String - The Data Box Edge/Gateway device software version.
- status String
- The status of the Data Box Edge/Gateway device.
- time
Zone String - The Data Box Edge/Gateway device timezone.
- type String
- The type of the Data Box Edge/Gateway device.
- capacity number
- The Data Box Edge/Gateway device local capacity in MB.
- configured
Role string[]Types - Type of compute roles configured.
- culture string
- The Data Box Edge/Gateway device culture.
- hcs
Version string - The device software version number of the device (e.g. 1.2.18105.6).
- model string
- The Data Box Edge/Gateway device model.
- node
Count number - The number of nodes in the cluster.
- serial
Number string - The Serial Number of Data Box Edge/Gateway device.
- software
Version string - The Data Box Edge/Gateway device software version.
- status string
- The status of the Data Box Edge/Gateway device.
- time
Zone string - The Data Box Edge/Gateway device timezone.
- type string
- The type of the Data Box Edge/Gateway device.
- capacity int
- The Data Box Edge/Gateway device local capacity in MB.
- configured_
role_ Sequence[str]types - Type of compute roles configured.
- culture str
- The Data Box Edge/Gateway device culture.
- hcs_
version str - The device software version number of the device (e.g. 1.2.18105.6).
- model str
- The Data Box Edge/Gateway device model.
- node_
count int - The number of nodes in the cluster.
- serial_
number str - The Serial Number of Data Box Edge/Gateway device.
- software_
version str - The Data Box Edge/Gateway device software version.
- status str
- The status of the Data Box Edge/Gateway device.
- time_
zone str - The Data Box Edge/Gateway device timezone.
- type str
- The type of the Data Box Edge/Gateway device.
- capacity Number
- The Data Box Edge/Gateway device local capacity in MB.
- configured
Role List<String>Types - Type of compute roles configured.
- culture String
- The Data Box Edge/Gateway device culture.
- hcs
Version String - The device software version number of the device (e.g. 1.2.18105.6).
- model String
- The Data Box Edge/Gateway device model.
- node
Count Number - The number of nodes in the cluster.
- serial
Number String - The Serial Number of Data Box Edge/Gateway device.
- software
Version String - The Data Box Edge/Gateway device software version.
- status String
- The status of the Data Box Edge/Gateway device.
- time
Zone String - The Data Box Edge/Gateway device timezone.
- type String
- The type of the Data Box Edge/Gateway device.
Import
Databox Edge Devices can be imported using the resource id
, e.g.
$ pulumi import azure:databoxedge/device:Device example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/device1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.