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

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.databoxedge.Order

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages a Databox Edge Order.

    !> Creation of Databox Edge Order is not supported by the Azure API - as such the azure.databoxedge.Order resource is deprecated and will be removed in v4.0 of the AzureRM Provider.

    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",
    });
    const exampleOrder = new azure.databoxedge.Order("example", {
        resourceGroupName: example.name,
        deviceName: exampleDevice.name,
        contact: {
            name: "TerraForm Test",
            emails: ["creator4983@FlynnsArcade.com"],
            companyName: "Flynn's Arcade",
            phoneNumber: "(800) 555-1234",
        },
        shipmentAddress: {
            addresses: ["One Microsoft Way"],
            city: "Redmond",
            postalCode: "98052",
            state: "WA",
            country: "United States",
        },
    });
    
    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")
    example_order = azure.databoxedge.Order("example",
        resource_group_name=example.name,
        device_name=example_device.name,
        contact=azure.databoxedge.OrderContactArgs(
            name="TerraForm Test",
            emails=["creator4983@FlynnsArcade.com"],
            company_name="Flynn's Arcade",
            phone_number="(800) 555-1234",
        ),
        shipment_address=azure.databoxedge.OrderShipmentAddressArgs(
            addresses=["One Microsoft Way"],
            city="Redmond",
            postal_code="98052",
            state="WA",
            country="United States",
        ))
    
    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
    		}
    		exampleDevice, 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
    		}
    		_, err = databoxedge.NewOrder(ctx, "example", &databoxedge.OrderArgs{
    			ResourceGroupName: example.Name,
    			DeviceName:        exampleDevice.Name,
    			Contact: &databoxedge.OrderContactArgs{
    				Name: pulumi.String("TerraForm Test"),
    				Emails: pulumi.StringArray{
    					pulumi.String("creator4983@FlynnsArcade.com"),
    				},
    				CompanyName: pulumi.String("Flynn's Arcade"),
    				PhoneNumber: pulumi.String("(800) 555-1234"),
    			},
    			ShipmentAddress: &databoxedge.OrderShipmentAddressArgs{
    				Addresses: pulumi.StringArray{
    					pulumi.String("One Microsoft Way"),
    				},
    				City:       pulumi.String("Redmond"),
    				PostalCode: pulumi.String("98052"),
    				State:      pulumi.String("WA"),
    				Country:    pulumi.String("United States"),
    			},
    		})
    		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",
        });
    
        var exampleOrder = new Azure.DataboxEdge.Order("example", new()
        {
            ResourceGroupName = example.Name,
            DeviceName = exampleDevice.Name,
            Contact = new Azure.DataboxEdge.Inputs.OrderContactArgs
            {
                Name = "TerraForm Test",
                Emails = new[]
                {
                    "creator4983@FlynnsArcade.com",
                },
                CompanyName = "Flynn's Arcade",
                PhoneNumber = "(800) 555-1234",
            },
            ShipmentAddress = new Azure.DataboxEdge.Inputs.OrderShipmentAddressArgs
            {
                Addresses = new[]
                {
                    "One Microsoft Way",
                },
                City = "Redmond",
                PostalCode = "98052",
                State = "WA",
                Country = "United States",
            },
        });
    
    });
    
    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 com.pulumi.azure.databoxedge.Order;
    import com.pulumi.azure.databoxedge.OrderArgs;
    import com.pulumi.azure.databoxedge.inputs.OrderContactArgs;
    import com.pulumi.azure.databoxedge.inputs.OrderShipmentAddressArgs;
    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());
    
            var exampleOrder = new Order("exampleOrder", OrderArgs.builder()        
                .resourceGroupName(example.name())
                .deviceName(exampleDevice.name())
                .contact(OrderContactArgs.builder()
                    .name("TerraForm Test")
                    .emails("creator4983@FlynnsArcade.com")
                    .companyName("Flynn's Arcade")
                    .phoneNumber("(800) 555-1234")
                    .build())
                .shipmentAddress(OrderShipmentAddressArgs.builder()
                    .addresses("One Microsoft Way")
                    .city("Redmond")
                    .postalCode("98052")
                    .state("WA")
                    .country("United States")
                    .build())
                .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
      exampleOrder:
        type: azure:databoxedge:Order
        name: example
        properties:
          resourceGroupName: ${example.name}
          deviceName: ${exampleDevice.name}
          contact:
            name: TerraForm Test
            emails:
              - creator4983@FlynnsArcade.com
            companyName: Flynn's Arcade
            phoneNumber: (800) 555-1234
          shipmentAddress:
            addresses:
              - One Microsoft Way
            city: Redmond
            postalCode: '98052'
            state: WA
            country: United States
    

    Create Order Resource

    new Order(name: string, args: OrderArgs, opts?: CustomResourceOptions);
    @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)
    @overload
    def Order(resource_name: str,
              args: OrderArgs,
              opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    The Order resource accepts the following input properties:

    Contact Pulumi.Azure.DataboxEdge.Inputs.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 Pulumi.Azure.DataboxEdge.Inputs.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<Pulumi.Azure.DataboxEdge.Outputs.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<Pulumi.Azure.DataboxEdge.Outputs.OrderShipmentHistory>
    List of status changes in the order. A shipment_history block as defined below.
    ShipmentTrackings List<Pulumi.Azure.DataboxEdge.Outputs.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<Pulumi.Azure.DataboxEdge.Outputs.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)
    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.
    The following state arguments are supported:
    Contact Pulumi.Azure.DataboxEdge.Inputs.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<Pulumi.Azure.DataboxEdge.Inputs.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 Pulumi.Azure.DataboxEdge.Inputs.OrderShipmentAddress
    A shipment_address block as defined below.
    ShipmentHistories List<Pulumi.Azure.DataboxEdge.Inputs.OrderShipmentHistory>
    List of status changes in the order. A shipment_history block as defined below.
    ShipmentTrackings List<Pulumi.Azure.DataboxEdge.Inputs.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<Pulumi.Azure.DataboxEdge.Inputs.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.
    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.
    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.
    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.
    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.
    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.
    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
    

    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.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi