We recommend using Azure Native.
azure.databoxedge.Order
Explore with Pulumi AI
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
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)
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=azure.databoxedge.OrderContactArgs(
company_name="string",
emails=["string"],
name="string",
phone_number="string",
),
device_name="string",
resource_group_name="string",
shipment_address=azure.databoxedge.OrderShipmentAddressArgs(
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
The Order resource accepts the following input properties:
- Contact
Pulumi.
Azure. Databox Edge. Inputs. Order Contact - A
contact
block as defined below. - Device
Name string - The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
- Resource
Group stringName - 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 Pulumi.Azure. Databox Edge. Inputs. Order Shipment Address - A
shipment_address
block as defined below.
- Contact
Order
Contact Args - A
contact
block as defined below. - Device
Name string - The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
- Resource
Group stringName - 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 OrderShipment Address Args - A
shipment_address
block as defined below.
- contact
Order
Contact - A
contact
block as defined below. - device
Name String - The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
- resource
Group StringName - 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 OrderShipment Address - A
shipment_address
block as defined below.
- contact
Order
Contact - A
contact
block as defined below. - device
Name string - The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
- resource
Group stringName - 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 OrderShipment Address - A
shipment_address
block as defined below.
- contact
Order
Contact Args - 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_ strname - 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 OrderShipment Address Args - A
shipment_address
block as defined below.
- contact Property Map
- A
contact
block as defined below. - device
Name String - The name of the Databox Edge Device this order is for. Changing this forces a new Databox Edge Order to be created.
- resource
Group StringName - 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 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 Name of this Databox Edge Order.
- Return
Trackings List<Pulumi.Azure. Databox Edge. Outputs. Order Return Tracking> - 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 string - Serial number of the device being tracked.
- Shipment
Histories List<Pulumi.Azure. Databox Edge. Outputs. Order Shipment History> - List of status changes in the order. A
shipment_history
block as defined below. - Shipment
Trackings List<Pulumi.Azure. Databox Edge. Outputs. Order Shipment Tracking> - 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. Databox Edge. Outputs. Order Status> - 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 Name of this Databox Edge Order.
- Return
Trackings []OrderReturn Tracking - 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 string - Serial number of the device being tracked.
- Shipment
Histories []OrderShipment History - List of status changes in the order. A
shipment_history
block as defined below. - Shipment
Trackings []OrderShipment Tracking - 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
[]Order
Status - 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 Name of this Databox Edge Order.
- return
Trackings List<OrderReturn Tracking> - 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 String - Serial number of the device being tracked.
- shipment
Histories List<OrderShipment History> - List of status changes in the order. A
shipment_history
block as defined below. - shipment
Trackings List<OrderShipment Tracking> - 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<Order
Status> - 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 Name of this Databox Edge Order.
- return
Trackings OrderReturn Tracking[] - 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 string - Serial number of the device being tracked.
- shipment
Histories OrderShipment History[] - List of status changes in the order. A
shipment_history
block as defined below. - shipment
Trackings OrderShipment Tracking[] - 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
Order
Status[] - 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 Name of this Databox Edge Order.
- return_
trackings Sequence[OrderReturn Tracking] - 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[OrderShipment History] - List of status changes in the order. A
shipment_history
block as defined below. - shipment_
trackings Sequence[OrderShipment Tracking] - 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[Order
Status] - 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 Name of this Databox Edge Order.
- return
Trackings 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. - serial
Number String - Serial number of the device being tracked.
- shipment
Histories List<Property Map> - List of status changes in the order. A
shipment_history
block as defined below. - shipment
Trackings 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.
- Contact
Pulumi.
Azure. Databox Edge. Inputs. Order Contact - A
contact
block as defined below. - Device
Name 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 Name of this Databox Edge Order.
- Resource
Group stringName - 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 List<Pulumi.Azure. Databox Edge. Inputs. Order Return Tracking> - 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 string - Serial number of the device being tracked.
- Shipment
Address Pulumi.Azure. Databox Edge. Inputs. Order Shipment Address - A
shipment_address
block as defined below. - Shipment
Histories List<Pulumi.Azure. Databox Edge. Inputs. Order Shipment History> - List of status changes in the order. A
shipment_history
block as defined below. - Shipment
Trackings List<Pulumi.Azure. Databox Edge. Inputs. Order Shipment Tracking> - 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. Databox Edge. Inputs. Order Status> - The current status of the order. A
status
block as defined below.
- Contact
Order
Contact Args - A
contact
block as defined below. - Device
Name 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 Name of this Databox Edge Order.
- Resource
Group stringName - 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 []OrderReturn Tracking Args - 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 string - Serial number of the device being tracked.
- Shipment
Address OrderShipment Address Args - A
shipment_address
block as defined below. - Shipment
Histories []OrderShipment History Args - List of status changes in the order. A
shipment_history
block as defined below. - Shipment
Trackings []OrderShipment Tracking Args - 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
[]Order
Status Args - The current status of the order. A
status
block as defined below.
- contact
Order
Contact - A
contact
block as defined below. - device
Name 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 Name of this Databox Edge Order.
- resource
Group StringName - 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 List<OrderReturn Tracking> - 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 String - Serial number of the device being tracked.
- shipment
Address OrderShipment Address - A
shipment_address
block as defined below. - shipment
Histories List<OrderShipment History> - List of status changes in the order. A
shipment_history
block as defined below. - shipment
Trackings List<OrderShipment Tracking> - 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<Order
Status> - The current status of the order. A
status
block as defined below.
- contact
Order
Contact - A
contact
block as defined below. - device
Name 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 Name of this Databox Edge Order.
- resource
Group stringName - 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 OrderReturn Tracking[] - 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 string - Serial number of the device being tracked.
- shipment
Address OrderShipment Address - A
shipment_address
block as defined below. - shipment
Histories OrderShipment History[] - List of status changes in the order. A
shipment_history
block as defined below. - shipment
Trackings OrderShipment Tracking[] - 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
Order
Status[] - The current status of the order. A
status
block as defined below.
- contact
Order
Contact Args - 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 Name of this Databox Edge Order.
- resource_
group_ strname - 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[OrderReturn Tracking Args] - 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 OrderShipment Address Args - A
shipment_address
block as defined below. - shipment_
histories Sequence[OrderShipment History Args] - List of status changes in the order. A
shipment_history
block as defined below. - shipment_
trackings Sequence[OrderShipment Tracking Args] - 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[Order
Status Args] - The current status of the order. A
status
block as defined below.
- contact Property Map
- A
contact
block as defined below. - device
Name 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 Name of this Databox Edge Order.
- resource
Group StringName - 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 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. - serial
Number String - Serial number of the device being tracked.
- shipment
Address Property Map - A
shipment_address
block as defined below. - shipment
Histories List<Property Map> - List of status changes in the order. A
shipment_history
block as defined below. - shipment
Trackings 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
- Company
Name 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.
- Phone
Number string - The phone number. Changing this forces a new Databox Edge Order to be created.
- Company
Name 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.
- Phone
Number string - The phone number. Changing this forces a new Databox Edge Order to be created.
- company
Name 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.
- phone
Number String - The phone number. Changing this forces a new Databox Edge Order to be created.
- company
Name 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.
- phone
Number 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.
- company
Name 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.
- phone
Number String - The phone number. Changing this forces a new Databox Edge Order to be created.
OrderReturnTracking, OrderReturnTrackingArgs
- Carrier
Name string - Name of the carrier used in the delivery.
- Serial
Number string - Serial number of the device being tracked.
- Tracking
Id string - The ID of the tracking.
- Tracking
Url string - Tracking URL of the shipment.
- Carrier
Name string - Name of the carrier used in the delivery.
- Serial
Number string - Serial number of the device being tracked.
- Tracking
Id string - The ID of the tracking.
- Tracking
Url string - Tracking URL of the shipment.
- carrier
Name String - Name of the carrier used in the delivery.
- serial
Number String - Serial number of the device being tracked.
- tracking
Id String - The ID of the tracking.
- tracking
Url String - Tracking URL of the shipment.
- carrier
Name string - Name of the carrier used in the delivery.
- serial
Number string - Serial number of the device being tracked.
- tracking
Id string - The ID of the tracking.
- tracking
Url 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.
- carrier
Name String - Name of the carrier used in the delivery.
- serial
Number String - Serial number of the device being tracked.
- tracking
Id String - The ID of the tracking.
- tracking
Url 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.
- Postal
Code 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.
- Postal
Code 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.
- postal
Code 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.
- postal
Code 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.
- postal
Code 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
- Additional
Details 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.
- Last
Update string - Time of status update.
- Additional
Details 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.
- Last
Update string - Time of status update.
- additional
Details 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.
- last
Update String - Time of status update.
- additional
Details {[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.
- last
Update 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.
- additional
Details Map<String> - Dictionary to hold generic information which is not stored by the already existing properties.
- comments String
- Comments related to this status change.
- last
Update String - Time of status update.
OrderShipmentTracking, OrderShipmentTrackingArgs
- Carrier
Name string - Name of the carrier used in the delivery.
- Serial
Number string - Serial number of the device being tracked.
- Tracking
Id string - The ID of the tracking.
- Tracking
Url string - Tracking URL of the shipment.
- Carrier
Name string - Name of the carrier used in the delivery.
- Serial
Number string - Serial number of the device being tracked.
- Tracking
Id string - The ID of the tracking.
- Tracking
Url string - Tracking URL of the shipment.
- carrier
Name String - Name of the carrier used in the delivery.
- serial
Number String - Serial number of the device being tracked.
- tracking
Id String - The ID of the tracking.
- tracking
Url String - Tracking URL of the shipment.
- carrier
Name string - Name of the carrier used in the delivery.
- serial
Number string - Serial number of the device being tracked.
- tracking
Id string - The ID of the tracking.
- tracking
Url 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.
- carrier
Name String - Name of the carrier used in the delivery.
- serial
Number String - Serial number of the device being tracked.
- tracking
Id String - The ID of the tracking.
- tracking
Url String - Tracking URL of the shipment.
OrderStatus, OrderStatusArgs
- Additional
Details 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
orCollectedAtMicrosoft
. - Last
Update string - Time of status update.
- Additional
Details 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
orCollectedAtMicrosoft
. - Last
Update string - Time of status update.
- additional
Details 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
orCollectedAtMicrosoft
. - last
Update String - Time of status update.
- additional
Details {[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
orCollectedAtMicrosoft
. - last
Update 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
orCollectedAtMicrosoft
. - last_
update str - Time of status update.
- additional
Details 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
orCollectedAtMicrosoft
. - last
Update 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
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.