1. Packages
  2. Azure Native
  3. API Docs
  4. databoxedge
  5. Order
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.databoxedge.Order

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

The order details.

Uses Azure REST API version 2023-07-01. In version 2.x of the Azure Native provider, it used API version 2022-03-01.

Other available API versions: 2022-03-01, 2022-04-01-preview, 2022-12-01-preview, 2023-01-01-preview, 2023-12-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native databoxedge [ApiVersion]. See the version guide for details.

Example Usage

OrderPut

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var order = new AzureNative.DataBoxEdge.Order("order", new()
    {
        ContactInformation = new AzureNative.DataBoxEdge.Inputs.ContactDetailsArgs
        {
            CompanyName = "Microsoft",
            ContactPerson = "John Mcclane",
            EmailList = new[]
            {
                "john@microsoft.com",
            },
            Phone = "(800) 426-9400",
        },
        DeviceName = "testedgedevice",
        ResourceGroupName = "GroupForEdgeAutomation",
        ShippingAddress = new AzureNative.DataBoxEdge.Inputs.AddressArgs
        {
            AddressLine1 = "Microsoft Corporation",
            AddressLine2 = "One Microsoft Way",
            AddressLine3 = "Redmond",
            City = "WA",
            Country = "USA",
            PostalCode = "98052",
            State = "WA",
        },
    });

});
Copy
package main

import (
	databoxedge "github.com/pulumi/pulumi-azure-native-sdk/databoxedge/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databoxedge.NewOrder(ctx, "order", &databoxedge.OrderArgs{
			ContactInformation: &databoxedge.ContactDetailsArgs{
				CompanyName:   pulumi.String("Microsoft"),
				ContactPerson: pulumi.String("John Mcclane"),
				EmailList: pulumi.StringArray{
					pulumi.String("john@microsoft.com"),
				},
				Phone: pulumi.String("(800) 426-9400"),
			},
			DeviceName:        pulumi.String("testedgedevice"),
			ResourceGroupName: pulumi.String("GroupForEdgeAutomation"),
			ShippingAddress: &databoxedge.AddressArgs{
				AddressLine1: pulumi.String("Microsoft Corporation"),
				AddressLine2: pulumi.String("One Microsoft Way"),
				AddressLine3: pulumi.String("Redmond"),
				City:         pulumi.String("WA"),
				Country:      pulumi.String("USA"),
				PostalCode:   pulumi.String("98052"),
				State:        pulumi.String("WA"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.databoxedge.Order;
import com.pulumi.azurenative.databoxedge.OrderArgs;
import com.pulumi.azurenative.databoxedge.inputs.ContactDetailsArgs;
import com.pulumi.azurenative.databoxedge.inputs.AddressArgs;
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 order = new Order("order", OrderArgs.builder()
            .contactInformation(ContactDetailsArgs.builder()
                .companyName("Microsoft")
                .contactPerson("John Mcclane")
                .emailList("john@microsoft.com")
                .phone("(800) 426-9400")
                .build())
            .deviceName("testedgedevice")
            .resourceGroupName("GroupForEdgeAutomation")
            .shippingAddress(AddressArgs.builder()
                .addressLine1("Microsoft Corporation")
                .addressLine2("One Microsoft Way")
                .addressLine3("Redmond")
                .city("WA")
                .country("USA")
                .postalCode("98052")
                .state("WA")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const order = new azure_native.databoxedge.Order("order", {
    contactInformation: {
        companyName: "Microsoft",
        contactPerson: "John Mcclane",
        emailList: ["john@microsoft.com"],
        phone: "(800) 426-9400",
    },
    deviceName: "testedgedevice",
    resourceGroupName: "GroupForEdgeAutomation",
    shippingAddress: {
        addressLine1: "Microsoft Corporation",
        addressLine2: "One Microsoft Way",
        addressLine3: "Redmond",
        city: "WA",
        country: "USA",
        postalCode: "98052",
        state: "WA",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

order = azure_native.databoxedge.Order("order",
    contact_information={
        "company_name": "Microsoft",
        "contact_person": "John Mcclane",
        "email_list": ["john@microsoft.com"],
        "phone": "(800) 426-9400",
    },
    device_name="testedgedevice",
    resource_group_name="GroupForEdgeAutomation",
    shipping_address={
        "address_line1": "Microsoft Corporation",
        "address_line2": "One Microsoft Way",
        "address_line3": "Redmond",
        "city": "WA",
        "country": "USA",
        "postal_code": "98052",
        "state": "WA",
    })
Copy
resources:
  order:
    type: azure-native:databoxedge:Order
    properties:
      contactInformation:
        companyName: Microsoft
        contactPerson: John Mcclane
        emailList:
          - john@microsoft.com
        phone: (800) 426-9400
      deviceName: testedgedevice
      resourceGroupName: GroupForEdgeAutomation
      shippingAddress:
        addressLine1: Microsoft Corporation
        addressLine2: One Microsoft Way
        addressLine3: Redmond
        city: WA
        country: USA
        postalCode: '98052'
        state: WA
Copy

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_information: Optional[ContactDetailsArgs] = None,
          device_name: Optional[str] = None,
          resource_group_name: Optional[str] = None,
          shipment_type: Optional[Union[str, ShipmentType]] = None,
          shipping_address: Optional[AddressArgs] = 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-native:databoxedge:Order
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OrderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. OrderArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OrderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 AzureNative.DataBoxEdge.Order("orderResource", new()
{
    ContactInformation = new AzureNative.DataBoxEdge.Inputs.ContactDetailsArgs
    {
        CompanyName = "string",
        ContactPerson = "string",
        EmailList = new[]
        {
            "string",
        },
        Phone = "string",
    },
    DeviceName = "string",
    ResourceGroupName = "string",
    ShipmentType = "string",
    ShippingAddress = new AzureNative.DataBoxEdge.Inputs.AddressArgs
    {
        Country = "string",
        AddressLine1 = "string",
        AddressLine2 = "string",
        AddressLine3 = "string",
        City = "string",
        PostalCode = "string",
        State = "string",
    },
});
Copy
example, err := databoxedge.NewOrder(ctx, "orderResource", &databoxedge.OrderArgs{
	ContactInformation: &databoxedge.ContactDetailsArgs{
		CompanyName:   pulumi.String("string"),
		ContactPerson: pulumi.String("string"),
		EmailList: pulumi.StringArray{
			pulumi.String("string"),
		},
		Phone: pulumi.String("string"),
	},
	DeviceName:        pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	ShipmentType:      pulumi.String("string"),
	ShippingAddress: &databoxedge.AddressArgs{
		Country:      pulumi.String("string"),
		AddressLine1: pulumi.String("string"),
		AddressLine2: pulumi.String("string"),
		AddressLine3: pulumi.String("string"),
		City:         pulumi.String("string"),
		PostalCode:   pulumi.String("string"),
		State:        pulumi.String("string"),
	},
})
Copy
var orderResource = new Order("orderResource", OrderArgs.builder()
    .contactInformation(ContactDetailsArgs.builder()
        .companyName("string")
        .contactPerson("string")
        .emailList("string")
        .phone("string")
        .build())
    .deviceName("string")
    .resourceGroupName("string")
    .shipmentType("string")
    .shippingAddress(AddressArgs.builder()
        .country("string")
        .addressLine1("string")
        .addressLine2("string")
        .addressLine3("string")
        .city("string")
        .postalCode("string")
        .state("string")
        .build())
    .build());
Copy
order_resource = azure_native.databoxedge.Order("orderResource",
    contact_information={
        "company_name": "string",
        "contact_person": "string",
        "email_list": ["string"],
        "phone": "string",
    },
    device_name="string",
    resource_group_name="string",
    shipment_type="string",
    shipping_address={
        "country": "string",
        "address_line1": "string",
        "address_line2": "string",
        "address_line3": "string",
        "city": "string",
        "postal_code": "string",
        "state": "string",
    })
Copy
const orderResource = new azure_native.databoxedge.Order("orderResource", {
    contactInformation: {
        companyName: "string",
        contactPerson: "string",
        emailList: ["string"],
        phone: "string",
    },
    deviceName: "string",
    resourceGroupName: "string",
    shipmentType: "string",
    shippingAddress: {
        country: "string",
        addressLine1: "string",
        addressLine2: "string",
        addressLine3: "string",
        city: "string",
        postalCode: "string",
        state: "string",
    },
});
Copy
type: azure-native:databoxedge:Order
properties:
    contactInformation:
        companyName: string
        contactPerson: string
        emailList:
            - string
        phone: string
    deviceName: string
    resourceGroupName: string
    shipmentType: string
    shippingAddress:
        addressLine1: string
        addressLine2: string
        addressLine3: string
        city: string
        country: string
        postalCode: string
        state: string
Copy

Order Resource Properties

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

Inputs

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

The Order resource accepts the following input properties:

ContactInformation This property is required. Pulumi.AzureNative.DataBoxEdge.Inputs.ContactDetails
The contact details.
DeviceName
This property is required.
Changes to this property will trigger replacement.
string
The order details of a device.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
ShipmentType string | Pulumi.AzureNative.DataBoxEdge.ShipmentType
ShipmentType of the order
ShippingAddress Pulumi.AzureNative.DataBoxEdge.Inputs.Address
The shipping address.
ContactInformation This property is required. ContactDetailsArgs
The contact details.
DeviceName
This property is required.
Changes to this property will trigger replacement.
string
The order details of a device.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
ShipmentType string | ShipmentType
ShipmentType of the order
ShippingAddress AddressArgs
The shipping address.
contactInformation This property is required. ContactDetails
The contact details.
deviceName
This property is required.
Changes to this property will trigger replacement.
String
The order details of a device.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
shipmentType String | ShipmentType
ShipmentType of the order
shippingAddress Address
The shipping address.
contactInformation This property is required. ContactDetails
The contact details.
deviceName
This property is required.
Changes to this property will trigger replacement.
string
The order details of a device.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
shipmentType string | ShipmentType
ShipmentType of the order
shippingAddress Address
The shipping address.
contact_information This property is required. ContactDetailsArgs
The contact details.
device_name
This property is required.
Changes to this property will trigger replacement.
str
The order details of a device.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
shipment_type str | ShipmentType
ShipmentType of the order
shipping_address AddressArgs
The shipping address.
contactInformation This property is required. Property Map
The contact details.
deviceName
This property is required.
Changes to this property will trigger replacement.
String
The order details of a device.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
shipmentType String | "NotApplicable" | "ShippedToCustomer" | "SelfPickup"
ShipmentType of the order
shippingAddress Property Map
The shipping address.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
CurrentStatus Pulumi.AzureNative.DataBoxEdge.Outputs.OrderStatusResponse
Current status of the order.
DeliveryTrackingInfo List<Pulumi.AzureNative.DataBoxEdge.Outputs.TrackingInfoResponse>
Tracking information for the package delivered to the customer whether it has an original or a replacement device.
Id string
The provider-assigned unique ID for this managed resource.
Kind string
It specify the order api version.
Name string
The object name.
OrderHistory List<Pulumi.AzureNative.DataBoxEdge.Outputs.OrderStatusResponse>
List of status changes in the order.
OrderId string
It specify the order resource id.
ReturnTrackingInfo List<Pulumi.AzureNative.DataBoxEdge.Outputs.TrackingInfoResponse>
Tracking information for the package returned from the customer whether it has an original or a replacement device.
SerialNumber string
Serial number of the device.
SystemData Pulumi.AzureNative.DataBoxEdge.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of Order
Type string
The hierarchical type of the object.
AzureApiVersion string
The Azure API version of the resource.
CurrentStatus OrderStatusResponse
Current status of the order.
DeliveryTrackingInfo []TrackingInfoResponse
Tracking information for the package delivered to the customer whether it has an original or a replacement device.
Id string
The provider-assigned unique ID for this managed resource.
Kind string
It specify the order api version.
Name string
The object name.
OrderHistory []OrderStatusResponse
List of status changes in the order.
OrderId string
It specify the order resource id.
ReturnTrackingInfo []TrackingInfoResponse
Tracking information for the package returned from the customer whether it has an original or a replacement device.
SerialNumber string
Serial number of the device.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of Order
Type string
The hierarchical type of the object.
azureApiVersion String
The Azure API version of the resource.
currentStatus OrderStatusResponse
Current status of the order.
deliveryTrackingInfo List<TrackingInfoResponse>
Tracking information for the package delivered to the customer whether it has an original or a replacement device.
id String
The provider-assigned unique ID for this managed resource.
kind String
It specify the order api version.
name String
The object name.
orderHistory List<OrderStatusResponse>
List of status changes in the order.
orderId String
It specify the order resource id.
returnTrackingInfo List<TrackingInfoResponse>
Tracking information for the package returned from the customer whether it has an original or a replacement device.
serialNumber String
Serial number of the device.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of Order
type String
The hierarchical type of the object.
azureApiVersion string
The Azure API version of the resource.
currentStatus OrderStatusResponse
Current status of the order.
deliveryTrackingInfo TrackingInfoResponse[]
Tracking information for the package delivered to the customer whether it has an original or a replacement device.
id string
The provider-assigned unique ID for this managed resource.
kind string
It specify the order api version.
name string
The object name.
orderHistory OrderStatusResponse[]
List of status changes in the order.
orderId string
It specify the order resource id.
returnTrackingInfo TrackingInfoResponse[]
Tracking information for the package returned from the customer whether it has an original or a replacement device.
serialNumber string
Serial number of the device.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of Order
type string
The hierarchical type of the object.
azure_api_version str
The Azure API version of the resource.
current_status OrderStatusResponse
Current status of the order.
delivery_tracking_info Sequence[TrackingInfoResponse]
Tracking information for the package delivered to the customer whether it has an original or a replacement device.
id str
The provider-assigned unique ID for this managed resource.
kind str
It specify the order api version.
name str
The object name.
order_history Sequence[OrderStatusResponse]
List of status changes in the order.
order_id str
It specify the order resource id.
return_tracking_info Sequence[TrackingInfoResponse]
Tracking information for the package returned from the customer whether it has an original or a replacement device.
serial_number str
Serial number of the device.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of Order
type str
The hierarchical type of the object.
azureApiVersion String
The Azure API version of the resource.
currentStatus Property Map
Current status of the order.
deliveryTrackingInfo List<Property Map>
Tracking information for the package delivered to the customer whether it has an original or a replacement device.
id String
The provider-assigned unique ID for this managed resource.
kind String
It specify the order api version.
name String
The object name.
orderHistory List<Property Map>
List of status changes in the order.
orderId String
It specify the order resource id.
returnTrackingInfo List<Property Map>
Tracking information for the package returned from the customer whether it has an original or a replacement device.
serialNumber String
Serial number of the device.
systemData Property Map
Metadata pertaining to creation and last modification of Order
type String
The hierarchical type of the object.

Supporting Types

Address
, AddressArgs

Country This property is required. string
The country name.
AddressLine1 string
The address line1.
AddressLine2 string
The address line2.
AddressLine3 string
The address line3.
City string
The city name.
PostalCode string
The postal code.
State string
The state name.
Country This property is required. string
The country name.
AddressLine1 string
The address line1.
AddressLine2 string
The address line2.
AddressLine3 string
The address line3.
City string
The city name.
PostalCode string
The postal code.
State string
The state name.
country This property is required. String
The country name.
addressLine1 String
The address line1.
addressLine2 String
The address line2.
addressLine3 String
The address line3.
city String
The city name.
postalCode String
The postal code.
state String
The state name.
country This property is required. string
The country name.
addressLine1 string
The address line1.
addressLine2 string
The address line2.
addressLine3 string
The address line3.
city string
The city name.
postalCode string
The postal code.
state string
The state name.
country This property is required. str
The country name.
address_line1 str
The address line1.
address_line2 str
The address line2.
address_line3 str
The address line3.
city str
The city name.
postal_code str
The postal code.
state str
The state name.
country This property is required. String
The country name.
addressLine1 String
The address line1.
addressLine2 String
The address line2.
addressLine3 String
The address line3.
city String
The city name.
postalCode String
The postal code.
state String
The state name.

AddressResponse
, AddressResponseArgs

Country This property is required. string
The country name.
AddressLine1 string
The address line1.
AddressLine2 string
The address line2.
AddressLine3 string
The address line3.
City string
The city name.
PostalCode string
The postal code.
State string
The state name.
Country This property is required. string
The country name.
AddressLine1 string
The address line1.
AddressLine2 string
The address line2.
AddressLine3 string
The address line3.
City string
The city name.
PostalCode string
The postal code.
State string
The state name.
country This property is required. String
The country name.
addressLine1 String
The address line1.
addressLine2 String
The address line2.
addressLine3 String
The address line3.
city String
The city name.
postalCode String
The postal code.
state String
The state name.
country This property is required. string
The country name.
addressLine1 string
The address line1.
addressLine2 string
The address line2.
addressLine3 string
The address line3.
city string
The city name.
postalCode string
The postal code.
state string
The state name.
country This property is required. str
The country name.
address_line1 str
The address line1.
address_line2 str
The address line2.
address_line3 str
The address line3.
city str
The city name.
postal_code str
The postal code.
state str
The state name.
country This property is required. String
The country name.
addressLine1 String
The address line1.
addressLine2 String
The address line2.
addressLine3 String
The address line3.
city String
The city name.
postalCode String
The postal code.
state String
The state name.

ContactDetails
, ContactDetailsArgs

CompanyName This property is required. string
The name of the company.
ContactPerson This property is required. string
The contact person name.
EmailList This property is required. List<string>
The email list.
Phone This property is required. string
The phone number.
CompanyName This property is required. string
The name of the company.
ContactPerson This property is required. string
The contact person name.
EmailList This property is required. []string
The email list.
Phone This property is required. string
The phone number.
companyName This property is required. String
The name of the company.
contactPerson This property is required. String
The contact person name.
emailList This property is required. List<String>
The email list.
phone This property is required. String
The phone number.
companyName This property is required. string
The name of the company.
contactPerson This property is required. string
The contact person name.
emailList This property is required. string[]
The email list.
phone This property is required. string
The phone number.
company_name This property is required. str
The name of the company.
contact_person This property is required. str
The contact person name.
email_list This property is required. Sequence[str]
The email list.
phone This property is required. str
The phone number.
companyName This property is required. String
The name of the company.
contactPerson This property is required. String
The contact person name.
emailList This property is required. List<String>
The email list.
phone This property is required. String
The phone number.

ContactDetailsResponse
, ContactDetailsResponseArgs

CompanyName This property is required. string
The name of the company.
ContactPerson This property is required. string
The contact person name.
EmailList This property is required. List<string>
The email list.
Phone This property is required. string
The phone number.
CompanyName This property is required. string
The name of the company.
ContactPerson This property is required. string
The contact person name.
EmailList This property is required. []string
The email list.
Phone This property is required. string
The phone number.
companyName This property is required. String
The name of the company.
contactPerson This property is required. String
The contact person name.
emailList This property is required. List<String>
The email list.
phone This property is required. String
The phone number.
companyName This property is required. string
The name of the company.
contactPerson This property is required. string
The contact person name.
emailList This property is required. string[]
The email list.
phone This property is required. string
The phone number.
company_name This property is required. str
The name of the company.
contact_person This property is required. str
The contact person name.
email_list This property is required. Sequence[str]
The email list.
phone This property is required. str
The phone number.
companyName This property is required. String
The name of the company.
contactPerson This property is required. String
The contact person name.
emailList This property is required. List<String>
The email list.
phone This property is required. String
The phone number.

OrderStatusResponse
, OrderStatusResponseArgs

AdditionalOrderDetails This property is required. Dictionary<string, string>
Dictionary to hold generic information which is not stored by the already existing properties
Status This property is required. string
Status of the order as per the allowed status types.
TrackingInformation This property is required. Pulumi.AzureNative.DataBoxEdge.Inputs.TrackingInfoResponse
Tracking information related to the state in the ordering flow
UpdateDateTime This property is required. string
Time of status update.
Comments string
Comments related to this status change.
AdditionalOrderDetails This property is required. map[string]string
Dictionary to hold generic information which is not stored by the already existing properties
Status This property is required. string
Status of the order as per the allowed status types.
TrackingInformation This property is required. TrackingInfoResponse
Tracking information related to the state in the ordering flow
UpdateDateTime This property is required. string
Time of status update.
Comments string
Comments related to this status change.
additionalOrderDetails This property is required. Map<String,String>
Dictionary to hold generic information which is not stored by the already existing properties
status This property is required. String
Status of the order as per the allowed status types.
trackingInformation This property is required. TrackingInfoResponse
Tracking information related to the state in the ordering flow
updateDateTime This property is required. String
Time of status update.
comments String
Comments related to this status change.
additionalOrderDetails This property is required. {[key: string]: string}
Dictionary to hold generic information which is not stored by the already existing properties
status This property is required. string
Status of the order as per the allowed status types.
trackingInformation This property is required. TrackingInfoResponse
Tracking information related to the state in the ordering flow
updateDateTime This property is required. string
Time of status update.
comments string
Comments related to this status change.
additional_order_details This property is required. Mapping[str, str]
Dictionary to hold generic information which is not stored by the already existing properties
status This property is required. str
Status of the order as per the allowed status types.
tracking_information This property is required. TrackingInfoResponse
Tracking information related to the state in the ordering flow
update_date_time This property is required. str
Time of status update.
comments str
Comments related to this status change.
additionalOrderDetails This property is required. Map<String>
Dictionary to hold generic information which is not stored by the already existing properties
status This property is required. String
Status of the order as per the allowed status types.
trackingInformation This property is required. Property Map
Tracking information related to the state in the ordering flow
updateDateTime This property is required. String
Time of status update.
comments String
Comments related to this status change.

ShipmentType
, ShipmentTypeArgs

NotApplicable
NotApplicable
ShippedToCustomer
ShippedToCustomer
SelfPickup
SelfPickup
ShipmentTypeNotApplicable
NotApplicable
ShipmentTypeShippedToCustomer
ShippedToCustomer
ShipmentTypeSelfPickup
SelfPickup
NotApplicable
NotApplicable
ShippedToCustomer
ShippedToCustomer
SelfPickup
SelfPickup
NotApplicable
NotApplicable
ShippedToCustomer
ShippedToCustomer
SelfPickup
SelfPickup
NOT_APPLICABLE
NotApplicable
SHIPPED_TO_CUSTOMER
ShippedToCustomer
SELF_PICKUP
SelfPickup
"NotApplicable"
NotApplicable
"ShippedToCustomer"
ShippedToCustomer
"SelfPickup"
SelfPickup

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

TrackingInfoResponse
, TrackingInfoResponseArgs

CarrierName string
Name of the carrier used in the delivery.
SerialNumber string
Serial number of the device being tracked.
TrackingId string
Tracking ID of the shipment.
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
Tracking ID of the shipment.
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
Tracking ID of the shipment.
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
Tracking ID of the shipment.
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
Tracking ID of the shipment.
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
Tracking ID of the shipment.
trackingUrl String
Tracking URL of the shipment.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:databoxedge:Order default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataBoxEdge/dataBoxEdgeDevices/{deviceName}/orders/default 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi