1. Packages
  2. Azure Classic
  3. API Docs
  4. databoxedge
  5. Order

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Databox Edge Order.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleDevice = new Azure.DataboxEdge.Device("exampleDevice", new Azure.DataboxEdge.DeviceArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                SkuName = "EdgeP_Base-Standard",
            });
            var exampleOrder = new Azure.DataboxEdge.Order("exampleOrder", new Azure.DataboxEdge.OrderArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                DeviceName = exampleDevice.Name,
                Contact = new Azure.DataboxEdge.Inputs.OrderContactArgs
                {
                    CompanyName = "Contoso Corporation",
                    Name = "Bart",
                    EmailLists = 
                    {
                        "bart@example.com",
                    },
                    Phone = "(800) 867-5309",
                },
                ShipmentAddress = new Azure.DataboxEdge.Inputs.OrderShipmentAddressArgs
                {
                    Addresses = 
                    {
                        "740 Evergreen Terrace",
                    },
                    City = "Springfield",
                    Country = "United States",
                    PostalCode = "97403",
                    State = "OR",
                },
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/databoxedge"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleDevice, err := databoxedge.NewDevice(ctx, "exampleDevice", &databoxedge.DeviceArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    			SkuName:           pulumi.String("EdgeP_Base-Standard"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = databoxedge.NewOrder(ctx, "exampleOrder", &databoxedge.OrderArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			DeviceName:        exampleDevice.Name,
    			Contact: &databoxedge.OrderContactArgs{
    				CompanyName: pulumi.String("Contoso Corporation"),
    				Name:        pulumi.String("Bart"),
    				EmailLists: []string{
    					"bart@example.com",
    				},
    				Phone: "(800) 867-5309",
    			},
    			ShipmentAddress: &databoxedge.OrderShipmentAddressArgs{
    				Addresses: pulumi.StringArray{
    					pulumi.String("740 Evergreen Terrace"),
    				},
    				City:       pulumi.String("Springfield"),
    				Country:    pulumi.String("United States"),
    				PostalCode: pulumi.String("97403"),
    				State:      pulumi.String("OR"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleDevice = new azure.databoxedge.Device("exampleDevice", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        skuName: "EdgeP_Base-Standard",
    });
    const exampleOrder = new azure.databoxedge.Order("exampleOrder", {
        resourceGroupName: exampleResourceGroup.name,
        deviceName: exampleDevice.name,
        contact: {
            companyName: "Contoso Corporation",
            name: "Bart",
            emailLists: ["bart@example.com"],
            phone: "(800) 867-5309",
        },
        shipmentAddress: {
            addresses: ["740 Evergreen Terrace"],
            city: "Springfield",
            country: "United States",
            postalCode: "97403",
            state: "OR",
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_device = azure.databoxedge.Device("exampleDevice",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        sku_name="EdgeP_Base-Standard")
    example_order = azure.databoxedge.Order("exampleOrder",
        resource_group_name=example_resource_group.name,
        device_name=example_device.name,
        contact=azure.databoxedge.OrderContactArgs(
            company_name="Contoso Corporation",
            name="Bart",
            email_lists=["bart@example.com"],
            phone="(800) 867-5309",
        ),
        shipment_address=azure.databoxedge.OrderShipmentAddressArgs(
            addresses=["740 Evergreen Terrace"],
            city="Springfield",
            country="United States",
            postal_code="97403",
            state="OR",
        ))
    

    Example coming soon!

    Create Order Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Order(name: string, args: OrderArgs, opts?: CustomResourceOptions);
    @overload
    def Order(resource_name: str,
              args: OrderArgs,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Order(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              contact: Optional[OrderContactArgs] = None,
              device_name: Optional[str] = None,
              resource_group_name: Optional[str] = None,
              shipment_address: Optional[OrderShipmentAddressArgs] = None)
    func NewOrder(ctx *Context, name string, args OrderArgs, opts ...ResourceOption) (*Order, error)
    public Order(string name, OrderArgs args, CustomResourceOptions? opts = null)
    public Order(String name, OrderArgs args)
    public Order(String name, OrderArgs args, CustomResourceOptions options)
    
    type: azure:databoxedge:Order
    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 OrderArgs
    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 OrderArgs
    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 OrderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OrderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OrderArgs
    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 orderResource = new Azure.DataboxEdge.Order("orderResource", new()
    {
        Contact = new Azure.DataboxEdge.Inputs.OrderContactArgs
        {
            CompanyName = "string",
            Emails = new[]
            {
                "string",
            },
            Name = "string",
            PhoneNumber = "string",
        },
        DeviceName = "string",
        ResourceGroupName = "string",
        ShipmentAddress = new Azure.DataboxEdge.Inputs.OrderShipmentAddressArgs
        {
            Addresses = new[]
            {
                "string",
            },
            City = "string",
            Country = "string",
            PostalCode = "string",
            State = "string",
        },
    });
    
    example, err := databoxedge.NewOrder(ctx, "orderResource", &databoxedge.OrderArgs{
    	Contact: &databoxedge.OrderContactArgs{
    		CompanyName: pulumi.String("string"),
    		Emails: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Name:        pulumi.String("string"),
    		PhoneNumber: pulumi.String("string"),
    	},
    	DeviceName:        pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	ShipmentAddress: &databoxedge.OrderShipmentAddressArgs{
    		Addresses: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		City:       pulumi.String("string"),
    		Country:    pulumi.String("string"),
    		PostalCode: pulumi.String("string"),
    		State:      pulumi.String("string"),
    	},
    })
    
    var orderResource = new Order("orderResource", OrderArgs.builder()
        .contact(OrderContactArgs.builder()
            .companyName("string")
            .emails("string")
            .name("string")
            .phoneNumber("string")
            .build())
        .deviceName("string")
        .resourceGroupName("string")
        .shipmentAddress(OrderShipmentAddressArgs.builder()
            .addresses("string")
            .city("string")
            .country("string")
            .postalCode("string")
            .state("string")
            .build())
        .build());
    
    order_resource = azure.databoxedge.Order("orderResource",
        contact={
            "company_name": "string",
            "emails": ["string"],
            "name": "string",
            "phone_number": "string",
        },
        device_name="string",
        resource_group_name="string",
        shipment_address={
            "addresses": ["string"],
            "city": "string",
            "country": "string",
            "postal_code": "string",
            "state": "string",
        })
    
    const orderResource = new azure.databoxedge.Order("orderResource", {
        contact: {
            companyName: "string",
            emails: ["string"],
            name: "string",
            phoneNumber: "string",
        },
        deviceName: "string",
        resourceGroupName: "string",
        shipmentAddress: {
            addresses: ["string"],
            city: "string",
            country: "string",
            postalCode: "string",
            state: "string",
        },
    });
    
    type: azure:databoxedge:Order
    properties:
        contact:
            companyName: string
            emails:
                - string
            name: string
            phoneNumber: string
        deviceName: string
        resourceGroupName: string
        shipmentAddress:
            addresses:
                - string
            city: string
            country: string
            postalCode: string
            state: string
    

    Order Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Order resource accepts the following input properties:

    Contact OrderContact
    A contact block as defined below.
    DeviceName string
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    ResourceGroupName string
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    ShipmentAddress OrderShipmentAddress
    A `shipment_address block as defined below.
    Contact OrderContactArgs
    A contact block as defined below.
    DeviceName string
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    ResourceGroupName string
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    ShipmentAddress OrderShipmentAddressArgs
    A `shipment_address block as defined below.
    contact OrderContact
    A contact block as defined below.
    deviceName String
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    resourceGroupName String
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    shipmentAddress OrderShipmentAddress
    A `shipment_address block as defined below.
    contact OrderContact
    A contact block as defined below.
    deviceName string
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    resourceGroupName string
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    shipmentAddress OrderShipmentAddress
    A `shipment_address block as defined below.
    contact OrderContactArgs
    A contact block as defined below.
    device_name str
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    resource_group_name str
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    shipment_address OrderShipmentAddressArgs
    A `shipment_address block as defined below.
    contact Property Map
    A contact block as defined below.
    deviceName String
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    resourceGroupName String
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    shipmentAddress Property Map
    A `shipment_address block as defined below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Order resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    ReturnTrackings List<OrderReturnTracking>
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    SerialNumber string
    Serial number of the device being tracked.
    ShipmentHistories List<OrderShipmentHistory>
    List of status changes in the order. A shipment_history block as defined below.
    ShipmentTrackings List<OrderShipmentTracking>
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    Statuses List<OrderStatus>
    The current status of the order. A status block as defined below.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    ReturnTrackings []OrderReturnTracking
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    SerialNumber string
    Serial number of the device being tracked.
    ShipmentHistories []OrderShipmentHistory
    List of status changes in the order. A shipment_history block as defined below.
    ShipmentTrackings []OrderShipmentTracking
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    Statuses []OrderStatus
    The current status of the order. A status block as defined below.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    returnTrackings List<OrderReturnTracking>
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    serialNumber String
    Serial number of the device being tracked.
    shipmentHistories List<OrderShipmentHistory>
    List of status changes in the order. A shipment_history block as defined below.
    shipmentTrackings List<OrderShipmentTracking>
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    statuses List<OrderStatus>
    The current status of the order. A status block as defined below.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    returnTrackings OrderReturnTracking[]
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    serialNumber string
    Serial number of the device being tracked.
    shipmentHistories OrderShipmentHistory[]
    List of status changes in the order. A shipment_history block as defined below.
    shipmentTrackings OrderShipmentTracking[]
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    statuses OrderStatus[]
    The current status of the order. A status block as defined below.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    return_trackings Sequence[OrderReturnTracking]
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    serial_number str
    Serial number of the device being tracked.
    shipment_histories Sequence[OrderShipmentHistory]
    List of status changes in the order. A shipment_history block as defined below.
    shipment_trackings Sequence[OrderShipmentTracking]
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    statuses Sequence[OrderStatus]
    The current status of the order. A status block as defined below.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    returnTrackings List<Property Map>
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    serialNumber String
    Serial number of the device being tracked.
    shipmentHistories List<Property Map>
    List of status changes in the order. A shipment_history block as defined below.
    shipmentTrackings List<Property Map>
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    statuses List<Property Map>
    The current status of the order. A status block as defined below.

    Look up Existing Order Resource

    Get an existing Order 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?: OrderState, opts?: CustomResourceOptions): Order
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            contact: Optional[OrderContactArgs] = None,
            device_name: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            return_trackings: Optional[Sequence[OrderReturnTrackingArgs]] = None,
            serial_number: Optional[str] = None,
            shipment_address: Optional[OrderShipmentAddressArgs] = None,
            shipment_histories: Optional[Sequence[OrderShipmentHistoryArgs]] = None,
            shipment_trackings: Optional[Sequence[OrderShipmentTrackingArgs]] = None,
            statuses: Optional[Sequence[OrderStatusArgs]] = None) -> Order
    func GetOrder(ctx *Context, name string, id IDInput, state *OrderState, opts ...ResourceOption) (*Order, error)
    public static Order Get(string name, Input<string> id, OrderState? state, CustomResourceOptions? opts = null)
    public static Order get(String name, Output<String> id, OrderState state, CustomResourceOptions options)
    resources:  _:    type: azure:databoxedge:Order    get:      id: ${id}
    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.
    The following state arguments are supported:
    Contact OrderContact
    A contact block as defined below.
    DeviceName string
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    Name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    ResourceGroupName string
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    ReturnTrackings List<OrderReturnTracking>
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    SerialNumber string
    Serial number of the device being tracked.
    ShipmentAddress OrderShipmentAddress
    A `shipment_address block as defined below.
    ShipmentHistories List<OrderShipmentHistory>
    List of status changes in the order. A shipment_history block as defined below.
    ShipmentTrackings List<OrderShipmentTracking>
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    Statuses List<OrderStatus>
    The current status of the order. A status block as defined below.
    Contact OrderContactArgs
    A contact block as defined below.
    DeviceName string
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    Name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    ResourceGroupName string
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    ReturnTrackings []OrderReturnTrackingArgs
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    SerialNumber string
    Serial number of the device being tracked.
    ShipmentAddress OrderShipmentAddressArgs
    A `shipment_address block as defined below.
    ShipmentHistories []OrderShipmentHistoryArgs
    List of status changes in the order. A shipment_history block as defined below.
    ShipmentTrackings []OrderShipmentTrackingArgs
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    Statuses []OrderStatusArgs
    The current status of the order. A status block as defined below.
    contact OrderContact
    A contact block as defined below.
    deviceName String
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    name String
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    resourceGroupName String
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    returnTrackings List<OrderReturnTracking>
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    serialNumber String
    Serial number of the device being tracked.
    shipmentAddress OrderShipmentAddress
    A `shipment_address block as defined below.
    shipmentHistories List<OrderShipmentHistory>
    List of status changes in the order. A shipment_history block as defined below.
    shipmentTrackings List<OrderShipmentTracking>
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    statuses List<OrderStatus>
    The current status of the order. A status block as defined below.
    contact OrderContact
    A contact block as defined below.
    deviceName string
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    resourceGroupName string
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    returnTrackings OrderReturnTracking[]
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    serialNumber string
    Serial number of the device being tracked.
    shipmentAddress OrderShipmentAddress
    A `shipment_address block as defined below.
    shipmentHistories OrderShipmentHistory[]
    List of status changes in the order. A shipment_history block as defined below.
    shipmentTrackings OrderShipmentTracking[]
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    statuses OrderStatus[]
    The current status of the order. A status block as defined below.
    contact OrderContactArgs
    A contact block as defined below.
    device_name str
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    name str
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    resource_group_name str
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    return_trackings Sequence[OrderReturnTrackingArgs]
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    serial_number str
    Serial number of the device being tracked.
    shipment_address OrderShipmentAddressArgs
    A `shipment_address block as defined below.
    shipment_histories Sequence[OrderShipmentHistoryArgs]
    List of status changes in the order. A shipment_history block as defined below.
    shipment_trackings Sequence[OrderShipmentTrackingArgs]
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    statuses Sequence[OrderStatusArgs]
    The current status of the order. A status block as defined below.
    contact Property Map
    A contact block as defined below.
    deviceName String
    The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
    name String
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    resourceGroupName String
    The name of the Resource Group where the Databox Edge Order should exist. Changing this forces a new Databox Edge Order to be created.
    returnTrackings List<Property Map>
    Tracking information for the package returned from the customer whether it has an original or a replacement device. A return_tracking block as defined below.
    serialNumber String
    Serial number of the device being tracked.
    shipmentAddress Property Map
    A `shipment_address block as defined below.
    shipmentHistories List<Property Map>
    List of status changes in the order. A shipment_history block as defined below.
    shipmentTrackings List<Property Map>
    Tracking information for the package delivered to the customer whether it has an original or a replacement device. A shipment_tracking block as defined below.
    statuses List<Property Map>
    The current status of the order. A status block as defined below.

    Supporting Types

    OrderContact, OrderContactArgs

    CompanyName string
    The name of the company. Changing this forces a new Databox Edge Order to be created.
    Emails List<string>
    A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
    Name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    PhoneNumber string
    The phone number. Changing this forces a new Databox Edge Order to be created.
    CompanyName string
    The name of the company. Changing this forces a new Databox Edge Order to be created.
    Emails []string
    A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
    Name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    PhoneNumber string
    The phone number. Changing this forces a new Databox Edge Order to be created.
    companyName String
    The name of the company. Changing this forces a new Databox Edge Order to be created.
    emails List<String>
    A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
    name String
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    phoneNumber String
    The phone number. Changing this forces a new Databox Edge Order to be created.
    companyName string
    The name of the company. Changing this forces a new Databox Edge Order to be created.
    emails string[]
    A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
    name string
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    phoneNumber string
    The phone number. Changing this forces a new Databox Edge Order to be created.
    company_name str
    The name of the company. Changing this forces a new Databox Edge Order to be created.
    emails Sequence[str]
    A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
    name str
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    phone_number str
    The phone number. Changing this forces a new Databox Edge Order to be created.
    companyName String
    The name of the company. Changing this forces a new Databox Edge Order to be created.
    emails List<String>
    A list of email address to send order notification to. Changing this forces a new Databox Edge Order to be created.
    name String
    The contact person name. Changing this forces a new Databox Edge Order to be created.
    phoneNumber String
    The phone number. Changing this forces a new Databox Edge Order to be created.

    OrderReturnTracking, OrderReturnTrackingArgs

    CarrierName string
    Name of the carrier used in the delivery.
    SerialNumber string
    Serial number of the device being tracked.
    TrackingId string
    The ID of the tracking.
    TrackingUrl string
    Tracking URL of the shipment.
    CarrierName string
    Name of the carrier used in the delivery.
    SerialNumber string
    Serial number of the device being tracked.
    TrackingId string
    The ID of the tracking.
    TrackingUrl string
    Tracking URL of the shipment.
    carrierName String
    Name of the carrier used in the delivery.
    serialNumber String
    Serial number of the device being tracked.
    trackingId String
    The ID of the tracking.
    trackingUrl String
    Tracking URL of the shipment.
    carrierName string
    Name of the carrier used in the delivery.
    serialNumber string
    Serial number of the device being tracked.
    trackingId string
    The ID of the tracking.
    trackingUrl string
    Tracking URL of the shipment.
    carrier_name str
    Name of the carrier used in the delivery.
    serial_number str
    Serial number of the device being tracked.
    tracking_id str
    The ID of the tracking.
    tracking_url str
    Tracking URL of the shipment.
    carrierName String
    Name of the carrier used in the delivery.
    serialNumber String
    Serial number of the device being tracked.
    trackingId String
    The ID of the tracking.
    trackingUrl String
    Tracking URL of the shipment.

    OrderShipmentAddress, OrderShipmentAddressArgs

    Addresses List<string>
    The list of upto 3 lines for address information. Changing this forces a new Databox Edge Order to be created.
    City string
    The city name. Changing this forces a new Databox Edge Order to be created.
    Country string
    The name of the country to ship the Databox Edge Device to. Valid values are "Algeria", "Argentina", "Australia", "Austria", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belgium", "Bermuda", "Bolivia", "Bosnia and Herzegovina", "Brazil", "Bulgaria", "Canada", "Cayman Islands", "Chile", "Colombia", "Costa Rica", "Croatia", "Cyprus", "Czechia", "Côte D'ivoire", "Denmark", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Estonia", "Ethiopia", "Finland", "France", "Georgia", "Germany", "Ghana", "Greece", "Guatemala", "Honduras", "Hong Kong SAR", "Hungary", "Iceland", "India", "Indonesia", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kuwait", "Kyrgyzstan", "Latvia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macao SAR", "Malaysia", "Malta", "Mauritius", "Mexico", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Namibia", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Nigeria", "Norway", "Oman", "Pakistan", "Palestinian Authority", "Panama", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Puerto Rico", "Qatar", "Republic of Korea", "Romania", "Russia", "Rwanda", "Saint Kitts And Nevis", "Saudi Arabia", "Senegal", "Serbia", "Singapore", "Slovakia", "Slovenia", "South Africa", "Spain", "Sri Lanka", "Sweden", "Switzerland", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Trinidad And Tobago", "Tunisia", "Turkey", "Turkmenistan", "U.S. Virgin Islands", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Venezuela", "Vietnam", "Yemen", "Zambia" or "Zimbabwe". Changing this forces a new Databox Edge Order to be created.
    PostalCode string
    The postal code. Changing this forces a new Databox Edge Order to be created.
    State string
    The name of the state to ship the Databox Edge Device to. Changing this forces a new Databox Edge Order to be created.
    Addresses []string
    The list of upto 3 lines for address information. Changing this forces a new Databox Edge Order to be created.
    City string
    The city name. Changing this forces a new Databox Edge Order to be created.
    Country string
    The name of the country to ship the Databox Edge Device to. Valid values are "Algeria", "Argentina", "Australia", "Austria", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belgium", "Bermuda", "Bolivia", "Bosnia and Herzegovina", "Brazil", "Bulgaria", "Canada", "Cayman Islands", "Chile", "Colombia", "Costa Rica", "Croatia", "Cyprus", "Czechia", "Côte D'ivoire", "Denmark", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Estonia", "Ethiopia", "Finland", "France", "Georgia", "Germany", "Ghana", "Greece", "Guatemala", "Honduras", "Hong Kong SAR", "Hungary", "Iceland", "India", "Indonesia", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kuwait", "Kyrgyzstan", "Latvia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macao SAR", "Malaysia", "Malta", "Mauritius", "Mexico", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Namibia", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Nigeria", "Norway", "Oman", "Pakistan", "Palestinian Authority", "Panama", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Puerto Rico", "Qatar", "Republic of Korea", "Romania", "Russia", "Rwanda", "Saint Kitts And Nevis", "Saudi Arabia", "Senegal", "Serbia", "Singapore", "Slovakia", "Slovenia", "South Africa", "Spain", "Sri Lanka", "Sweden", "Switzerland", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Trinidad And Tobago", "Tunisia", "Turkey", "Turkmenistan", "U.S. Virgin Islands", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Venezuela", "Vietnam", "Yemen", "Zambia" or "Zimbabwe". Changing this forces a new Databox Edge Order to be created.
    PostalCode string
    The postal code. Changing this forces a new Databox Edge Order to be created.
    State string
    The name of the state to ship the Databox Edge Device to. Changing this forces a new Databox Edge Order to be created.
    addresses List<String>
    The list of upto 3 lines for address information. Changing this forces a new Databox Edge Order to be created.
    city String
    The city name. Changing this forces a new Databox Edge Order to be created.
    country String
    The name of the country to ship the Databox Edge Device to. Valid values are "Algeria", "Argentina", "Australia", "Austria", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belgium", "Bermuda", "Bolivia", "Bosnia and Herzegovina", "Brazil", "Bulgaria", "Canada", "Cayman Islands", "Chile", "Colombia", "Costa Rica", "Croatia", "Cyprus", "Czechia", "Côte D'ivoire", "Denmark", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Estonia", "Ethiopia", "Finland", "France", "Georgia", "Germany", "Ghana", "Greece", "Guatemala", "Honduras", "Hong Kong SAR", "Hungary", "Iceland", "India", "Indonesia", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kuwait", "Kyrgyzstan", "Latvia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macao SAR", "Malaysia", "Malta", "Mauritius", "Mexico", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Namibia", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Nigeria", "Norway", "Oman", "Pakistan", "Palestinian Authority", "Panama", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Puerto Rico", "Qatar", "Republic of Korea", "Romania", "Russia", "Rwanda", "Saint Kitts And Nevis", "Saudi Arabia", "Senegal", "Serbia", "Singapore", "Slovakia", "Slovenia", "South Africa", "Spain", "Sri Lanka", "Sweden", "Switzerland", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Trinidad And Tobago", "Tunisia", "Turkey", "Turkmenistan", "U.S. Virgin Islands", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Venezuela", "Vietnam", "Yemen", "Zambia" or "Zimbabwe". Changing this forces a new Databox Edge Order to be created.
    postalCode String
    The postal code. Changing this forces a new Databox Edge Order to be created.
    state String
    The name of the state to ship the Databox Edge Device to. Changing this forces a new Databox Edge Order to be created.
    addresses string[]
    The list of upto 3 lines for address information. Changing this forces a new Databox Edge Order to be created.
    city string
    The city name. Changing this forces a new Databox Edge Order to be created.
    country string
    The name of the country to ship the Databox Edge Device to. Valid values are "Algeria", "Argentina", "Australia", "Austria", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belgium", "Bermuda", "Bolivia", "Bosnia and Herzegovina", "Brazil", "Bulgaria", "Canada", "Cayman Islands", "Chile", "Colombia", "Costa Rica", "Croatia", "Cyprus", "Czechia", "Côte D'ivoire", "Denmark", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Estonia", "Ethiopia", "Finland", "France", "Georgia", "Germany", "Ghana", "Greece", "Guatemala", "Honduras", "Hong Kong SAR", "Hungary", "Iceland", "India", "Indonesia", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kuwait", "Kyrgyzstan", "Latvia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macao SAR", "Malaysia", "Malta", "Mauritius", "Mexico", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Namibia", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Nigeria", "Norway", "Oman", "Pakistan", "Palestinian Authority", "Panama", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Puerto Rico", "Qatar", "Republic of Korea", "Romania", "Russia", "Rwanda", "Saint Kitts And Nevis", "Saudi Arabia", "Senegal", "Serbia", "Singapore", "Slovakia", "Slovenia", "South Africa", "Spain", "Sri Lanka", "Sweden", "Switzerland", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Trinidad And Tobago", "Tunisia", "Turkey", "Turkmenistan", "U.S. Virgin Islands", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Venezuela", "Vietnam", "Yemen", "Zambia" or "Zimbabwe". Changing this forces a new Databox Edge Order to be created.
    postalCode string
    The postal code. Changing this forces a new Databox Edge Order to be created.
    state string
    The name of the state to ship the Databox Edge Device to. Changing this forces a new Databox Edge Order to be created.
    addresses Sequence[str]
    The list of upto 3 lines for address information. Changing this forces a new Databox Edge Order to be created.
    city str
    The city name. Changing this forces a new Databox Edge Order to be created.
    country str
    The name of the country to ship the Databox Edge Device to. Valid values are "Algeria", "Argentina", "Australia", "Austria", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belgium", "Bermuda", "Bolivia", "Bosnia and Herzegovina", "Brazil", "Bulgaria", "Canada", "Cayman Islands", "Chile", "Colombia", "Costa Rica", "Croatia", "Cyprus", "Czechia", "Côte D'ivoire", "Denmark", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Estonia", "Ethiopia", "Finland", "France", "Georgia", "Germany", "Ghana", "Greece", "Guatemala", "Honduras", "Hong Kong SAR", "Hungary", "Iceland", "India", "Indonesia", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kuwait", "Kyrgyzstan", "Latvia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macao SAR", "Malaysia", "Malta", "Mauritius", "Mexico", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Namibia", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Nigeria", "Norway", "Oman", "Pakistan", "Palestinian Authority", "Panama", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Puerto Rico", "Qatar", "Republic of Korea", "Romania", "Russia", "Rwanda", "Saint Kitts And Nevis", "Saudi Arabia", "Senegal", "Serbia", "Singapore", "Slovakia", "Slovenia", "South Africa", "Spain", "Sri Lanka", "Sweden", "Switzerland", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Trinidad And Tobago", "Tunisia", "Turkey", "Turkmenistan", "U.S. Virgin Islands", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Venezuela", "Vietnam", "Yemen", "Zambia" or "Zimbabwe". Changing this forces a new Databox Edge Order to be created.
    postal_code str
    The postal code. Changing this forces a new Databox Edge Order to be created.
    state str
    The name of the state to ship the Databox Edge Device to. Changing this forces a new Databox Edge Order to be created.
    addresses List<String>
    The list of upto 3 lines for address information. Changing this forces a new Databox Edge Order to be created.
    city String
    The city name. Changing this forces a new Databox Edge Order to be created.
    country String
    The name of the country to ship the Databox Edge Device to. Valid values are "Algeria", "Argentina", "Australia", "Austria", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belgium", "Bermuda", "Bolivia", "Bosnia and Herzegovina", "Brazil", "Bulgaria", "Canada", "Cayman Islands", "Chile", "Colombia", "Costa Rica", "Croatia", "Cyprus", "Czechia", "Côte D'ivoire", "Denmark", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Estonia", "Ethiopia", "Finland", "France", "Georgia", "Germany", "Ghana", "Greece", "Guatemala", "Honduras", "Hong Kong SAR", "Hungary", "Iceland", "India", "Indonesia", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kuwait", "Kyrgyzstan", "Latvia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Macao SAR", "Malaysia", "Malta", "Mauritius", "Mexico", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Namibia", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Nigeria", "Norway", "Oman", "Pakistan", "Palestinian Authority", "Panama", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Puerto Rico", "Qatar", "Republic of Korea", "Romania", "Russia", "Rwanda", "Saint Kitts And Nevis", "Saudi Arabia", "Senegal", "Serbia", "Singapore", "Slovakia", "Slovenia", "South Africa", "Spain", "Sri Lanka", "Sweden", "Switzerland", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Trinidad And Tobago", "Tunisia", "Turkey", "Turkmenistan", "U.S. Virgin Islands", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Venezuela", "Vietnam", "Yemen", "Zambia" or "Zimbabwe". Changing this forces a new Databox Edge Order to be created.
    postalCode String
    The postal code. Changing this forces a new Databox Edge Order to be created.
    state String
    The name of the state to ship the Databox Edge Device to. Changing this forces a new Databox Edge Order to be created.

    OrderShipmentHistory, OrderShipmentHistoryArgs

    AdditionalDetails Dictionary<string, string>
    Dictionary to hold generic information which is not stored by the already existing properties.
    Comments string
    Comments related to this status change.
    LastUpdate string
    Time of status update.
    AdditionalDetails map[string]string
    Dictionary to hold generic information which is not stored by the already existing properties.
    Comments string
    Comments related to this status change.
    LastUpdate string
    Time of status update.
    additionalDetails Map<String,String>
    Dictionary to hold generic information which is not stored by the already existing properties.
    comments String
    Comments related to this status change.
    lastUpdate String
    Time of status update.
    additionalDetails {[key: string]: string}
    Dictionary to hold generic information which is not stored by the already existing properties.
    comments string
    Comments related to this status change.
    lastUpdate string
    Time of status update.
    additional_details Mapping[str, str]
    Dictionary to hold generic information which is not stored by the already existing properties.
    comments str
    Comments related to this status change.
    last_update str
    Time of status update.
    additionalDetails Map<String>
    Dictionary to hold generic information which is not stored by the already existing properties.
    comments String
    Comments related to this status change.
    lastUpdate String
    Time of status update.

    OrderShipmentTracking, OrderShipmentTrackingArgs

    CarrierName string
    Name of the carrier used in the delivery.
    SerialNumber string
    Serial number of the device being tracked.
    TrackingId string
    The ID of the tracking.
    TrackingUrl string
    Tracking URL of the shipment.
    CarrierName string
    Name of the carrier used in the delivery.
    SerialNumber string
    Serial number of the device being tracked.
    TrackingId string
    The ID of the tracking.
    TrackingUrl string
    Tracking URL of the shipment.
    carrierName String
    Name of the carrier used in the delivery.
    serialNumber String
    Serial number of the device being tracked.
    trackingId String
    The ID of the tracking.
    trackingUrl String
    Tracking URL of the shipment.
    carrierName string
    Name of the carrier used in the delivery.
    serialNumber string
    Serial number of the device being tracked.
    trackingId string
    The ID of the tracking.
    trackingUrl string
    Tracking URL of the shipment.
    carrier_name str
    Name of the carrier used in the delivery.
    serial_number str
    Serial number of the device being tracked.
    tracking_id str
    The ID of the tracking.
    tracking_url str
    Tracking URL of the shipment.
    carrierName String
    Name of the carrier used in the delivery.
    serialNumber String
    Serial number of the device being tracked.
    trackingId String
    The ID of the tracking.
    trackingUrl String
    Tracking URL of the shipment.

    OrderStatus, OrderStatusArgs

    AdditionalDetails Dictionary<string, string>
    Dictionary to hold generic information which is not stored by the already existing properties.
    Comments string
    Comments related to this status change.
    Info string
    The current status of the order. Possible values include Untracked, AwaitingFulfilment, AwaitingPreparation, AwaitingShipment, Shipped, Arriving, Delivered, ReplacementRequested, LostDevice, Declined, ReturnInitiated, AwaitingReturnShipment, ShippedBack or CollectedAtMicrosoft.
    LastUpdate string
    Time of status update.
    AdditionalDetails map[string]string
    Dictionary to hold generic information which is not stored by the already existing properties.
    Comments string
    Comments related to this status change.
    Info string
    The current status of the order. Possible values include Untracked, AwaitingFulfilment, AwaitingPreparation, AwaitingShipment, Shipped, Arriving, Delivered, ReplacementRequested, LostDevice, Declined, ReturnInitiated, AwaitingReturnShipment, ShippedBack or CollectedAtMicrosoft.
    LastUpdate string
    Time of status update.
    additionalDetails Map<String,String>
    Dictionary to hold generic information which is not stored by the already existing properties.
    comments String
    Comments related to this status change.
    info String
    The current status of the order. Possible values include Untracked, AwaitingFulfilment, AwaitingPreparation, AwaitingShipment, Shipped, Arriving, Delivered, ReplacementRequested, LostDevice, Declined, ReturnInitiated, AwaitingReturnShipment, ShippedBack or CollectedAtMicrosoft.
    lastUpdate String
    Time of status update.
    additionalDetails {[key: string]: string}
    Dictionary to hold generic information which is not stored by the already existing properties.
    comments string
    Comments related to this status change.
    info string
    The current status of the order. Possible values include Untracked, AwaitingFulfilment, AwaitingPreparation, AwaitingShipment, Shipped, Arriving, Delivered, ReplacementRequested, LostDevice, Declined, ReturnInitiated, AwaitingReturnShipment, ShippedBack or CollectedAtMicrosoft.
    lastUpdate string
    Time of status update.
    additional_details Mapping[str, str]
    Dictionary to hold generic information which is not stored by the already existing properties.
    comments str
    Comments related to this status change.
    info str
    The current status of the order. Possible values include Untracked, AwaitingFulfilment, AwaitingPreparation, AwaitingShipment, Shipped, Arriving, Delivered, ReplacementRequested, LostDevice, Declined, ReturnInitiated, AwaitingReturnShipment, ShippedBack or CollectedAtMicrosoft.
    last_update str
    Time of status update.
    additionalDetails Map<String>
    Dictionary to hold generic information which is not stored by the already existing properties.
    comments String
    Comments related to this status change.
    info String
    The current status of the order. Possible values include Untracked, AwaitingFulfilment, AwaitingPreparation, AwaitingShipment, Shipped, Arriving, Delivered, ReplacementRequested, LostDevice, Declined, ReturnInitiated, AwaitingReturnShipment, ShippedBack or CollectedAtMicrosoft.
    lastUpdate String
    Time of status update.

    Import

    Databox Edge Orders can be imported using the resource id, e.g.

     $ pulumi import azure:databoxedge/order:Order example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/device1/orders/default
    

    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.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.