azure-native.databoxedge.Order
Explore with Pulumi AI
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.
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)
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",
},
});
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"),
},
})
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());
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",
})
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",
},
});
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
Order Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Order resource accepts the following input properties:
- Contact
Information This property is required. Pulumi.Azure Native. Data Box Edge. Inputs. Contact Details - The contact details.
- Device
Name This property is required. Changes to this property will trigger replacement.
- The order details of a device.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Shipment
Type string | Pulumi.Azure Native. Data Box Edge. Shipment Type - ShipmentType of the order
- Shipping
Address Pulumi.Azure Native. Data Box Edge. Inputs. Address - The shipping address.
- Contact
Information This property is required. ContactDetails Args - The contact details.
- Device
Name This property is required. Changes to this property will trigger replacement.
- The order details of a device.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Shipment
Type string | ShipmentType - ShipmentType of the order
- Shipping
Address AddressArgs - The shipping address.
- contact
Information This property is required. ContactDetails - The contact details.
- device
Name This property is required. Changes to this property will trigger replacement.
- The order details of a device.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- shipment
Type String | ShipmentType - ShipmentType of the order
- shipping
Address Address - The shipping address.
- contact
Information This property is required. ContactDetails - The contact details.
- device
Name This property is required. Changes to this property will trigger replacement.
- The order details of a device.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- shipment
Type string | ShipmentType - ShipmentType of the order
- shipping
Address Address - The shipping address.
- contact_
information This property is required. ContactDetails Args - The contact details.
- device_
name This property is required. Changes to this property will trigger replacement.
- The order details of a device.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- shipment_
type str | ShipmentType - ShipmentType of the order
- shipping_
address AddressArgs - The shipping address.
- contact
Information This property is required. Property Map - The contact details.
- device
Name This property is required. Changes to this property will trigger replacement.
- The order details of a device.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- shipment
Type String | "NotApplicable" | "Shipped To Customer" | "Self Pickup" - ShipmentType of the order
- shipping
Address Property Map - The shipping address.
Outputs
All input properties are implicitly available as output properties. Additionally, the Order resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Current
Status Pulumi.Azure Native. Data Box Edge. Outputs. Order Status Response - Current status of the order.
- Delivery
Tracking List<Pulumi.Info Azure Native. Data Box Edge. Outputs. Tracking Info Response> - 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.
- Order
History List<Pulumi.Azure Native. Data Box Edge. Outputs. Order Status Response> - List of status changes in the order.
- Order
Id string - It specify the order resource id.
- Return
Tracking List<Pulumi.Info Azure Native. Data Box Edge. Outputs. Tracking Info Response> - Tracking information for the package returned from the customer whether it has an original or a replacement device.
- Serial
Number string - Serial number of the device.
- System
Data Pulumi.Azure Native. Data Box Edge. Outputs. System Data Response - Metadata pertaining to creation and last modification of Order
- Type string
- The hierarchical type of the object.
- Azure
Api stringVersion - The Azure API version of the resource.
- Current
Status OrderStatus Response - Current status of the order.
- Delivery
Tracking []TrackingInfo Info Response - 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.
- Order
History []OrderStatus Response - List of status changes in the order.
- Order
Id string - It specify the order resource id.
- Return
Tracking []TrackingInfo Info Response - Tracking information for the package returned from the customer whether it has an original or a replacement device.
- Serial
Number string - Serial number of the device.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of Order
- Type string
- The hierarchical type of the object.
- azure
Api StringVersion - The Azure API version of the resource.
- current
Status OrderStatus Response - Current status of the order.
- delivery
Tracking List<TrackingInfo Info Response> - 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.
- order
History List<OrderStatus Response> - List of status changes in the order.
- order
Id String - It specify the order resource id.
- return
Tracking List<TrackingInfo Info Response> - Tracking information for the package returned from the customer whether it has an original or a replacement device.
- serial
Number String - Serial number of the device.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of Order
- type String
- The hierarchical type of the object.
- azure
Api stringVersion - The Azure API version of the resource.
- current
Status OrderStatus Response - Current status of the order.
- delivery
Tracking TrackingInfo Info Response[] - 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.
- order
History OrderStatus Response[] - List of status changes in the order.
- order
Id string - It specify the order resource id.
- return
Tracking TrackingInfo Info Response[] - Tracking information for the package returned from the customer whether it has an original or a replacement device.
- serial
Number string - Serial number of the device.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of Order
- type string
- The hierarchical type of the object.
- azure_
api_ strversion - The Azure API version of the resource.
- current_
status OrderStatus Response - Current status of the order.
- delivery_
tracking_ Sequence[Trackinginfo Info Response] - 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[OrderStatus Response] - List of status changes in the order.
- order_
id str - It specify the order resource id.
- return_
tracking_ Sequence[Trackinginfo Info Response] - 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 SystemData Response - Metadata pertaining to creation and last modification of Order
- type str
- The hierarchical type of the object.
- azure
Api StringVersion - The Azure API version of the resource.
- current
Status Property Map - Current status of the order.
- delivery
Tracking List<Property Map>Info - 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.
- order
History List<Property Map> - List of status changes in the order.
- order
Id String - It specify the order resource id.
- return
Tracking List<Property Map>Info - Tracking information for the package returned from the customer whether it has an original or a replacement device.
- serial
Number String - Serial number of the device.
- system
Data 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.
- Address
Line1 string - The address line1.
- Address
Line2 string - The address line2.
- Address
Line3 string - The address line3.
- City string
- The city name.
- Postal
Code string - The postal code.
- State string
- The state name.
- Country
This property is required. string - The country name.
- Address
Line1 string - The address line1.
- Address
Line2 string - The address line2.
- Address
Line3 string - The address line3.
- City string
- The city name.
- Postal
Code string - The postal code.
- State string
- The state name.
- country
This property is required. String - The country name.
- address
Line1 String - The address line1.
- address
Line2 String - The address line2.
- address
Line3 String - The address line3.
- city String
- The city name.
- postal
Code String - The postal code.
- state String
- The state name.
- country
This property is required. string - The country name.
- address
Line1 string - The address line1.
- address
Line2 string - The address line2.
- address
Line3 string - The address line3.
- city string
- The city name.
- postal
Code 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.
- address
Line1 String - The address line1.
- address
Line2 String - The address line2.
- address
Line3 String - The address line3.
- city String
- The city name.
- postal
Code String - The postal code.
- state String
- The state name.
AddressResponse, AddressResponseArgs
- Country
This property is required. string - The country name.
- Address
Line1 string - The address line1.
- Address
Line2 string - The address line2.
- Address
Line3 string - The address line3.
- City string
- The city name.
- Postal
Code string - The postal code.
- State string
- The state name.
- Country
This property is required. string - The country name.
- Address
Line1 string - The address line1.
- Address
Line2 string - The address line2.
- Address
Line3 string - The address line3.
- City string
- The city name.
- Postal
Code string - The postal code.
- State string
- The state name.
- country
This property is required. String - The country name.
- address
Line1 String - The address line1.
- address
Line2 String - The address line2.
- address
Line3 String - The address line3.
- city String
- The city name.
- postal
Code String - The postal code.
- state String
- The state name.
- country
This property is required. string - The country name.
- address
Line1 string - The address line1.
- address
Line2 string - The address line2.
- address
Line3 string - The address line3.
- city string
- The city name.
- postal
Code 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.
- address
Line1 String - The address line1.
- address
Line2 String - The address line2.
- address
Line3 String - The address line3.
- city String
- The city name.
- postal
Code String - The postal code.
- state String
- The state name.
ContactDetails, ContactDetailsArgs
- Company
Name This property is required. string - The name of the company.
- Contact
Person This property is required. string - The contact person name.
- Email
List This property is required. List<string> - The email list.
- Phone
This property is required. string - The phone number.
- Company
Name This property is required. string - The name of the company.
- Contact
Person This property is required. string - The contact person name.
- Email
List This property is required. []string - The email list.
- Phone
This property is required. string - The phone number.
- company
Name This property is required. String - The name of the company.
- contact
Person This property is required. String - The contact person name.
- email
List This property is required. List<String> - The email list.
- phone
This property is required. String - The phone number.
- company
Name This property is required. string - The name of the company.
- contact
Person This property is required. string - The contact person name.
- email
List 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.
- company
Name This property is required. String - The name of the company.
- contact
Person This property is required. String - The contact person name.
- email
List This property is required. List<String> - The email list.
- phone
This property is required. String - The phone number.
ContactDetailsResponse, ContactDetailsResponseArgs
- Company
Name This property is required. string - The name of the company.
- Contact
Person This property is required. string - The contact person name.
- Email
List This property is required. List<string> - The email list.
- Phone
This property is required. string - The phone number.
- Company
Name This property is required. string - The name of the company.
- Contact
Person This property is required. string - The contact person name.
- Email
List This property is required. []string - The email list.
- Phone
This property is required. string - The phone number.
- company
Name This property is required. String - The name of the company.
- contact
Person This property is required. String - The contact person name.
- email
List This property is required. List<String> - The email list.
- phone
This property is required. String - The phone number.
- company
Name This property is required. string - The name of the company.
- contact
Person This property is required. string - The contact person name.
- email
List 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.
- company
Name This property is required. String - The name of the company.
- contact
Person This property is required. String - The contact person name.
- email
List This property is required. List<String> - The email list.
- phone
This property is required. String - The phone number.
OrderStatusResponse, OrderStatusResponseArgs
- Additional
Order Details 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.
- Tracking
Information This property is required. Pulumi.Azure Native. Data Box Edge. Inputs. Tracking Info Response - Tracking information related to the state in the ordering flow
- Update
Date Time This property is required. string - Time of status update.
- Comments string
- Comments related to this status change.
- Additional
Order Details 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.
- Tracking
Information This property is required. TrackingInfo Response - Tracking information related to the state in the ordering flow
- Update
Date Time This property is required. string - Time of status update.
- Comments string
- Comments related to this status change.
- additional
Order Details 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.
- tracking
Information This property is required. TrackingInfo Response - Tracking information related to the state in the ordering flow
- update
Date Time This property is required. String - Time of status update.
- comments String
- Comments related to this status change.
- additional
Order Details 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.
- tracking
Information This property is required. TrackingInfo Response - Tracking information related to the state in the ordering flow
- update
Date Time 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. TrackingInfo Response - 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.
- additional
Order Details 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.
- tracking
Information This property is required. Property Map - Tracking information related to the state in the ordering flow
- update
Date Time This property is required. String - Time of status update.
- comments String
- Comments related to this status change.
ShipmentType, ShipmentTypeArgs
- Not
Applicable - NotApplicable
- Shipped
To Customer - ShippedToCustomer
- Self
Pickup - SelfPickup
- Shipment
Type Not Applicable - NotApplicable
- Shipment
Type Shipped To Customer - ShippedToCustomer
- Shipment
Type Self Pickup - SelfPickup
- Not
Applicable - NotApplicable
- Shipped
To Customer - ShippedToCustomer
- Self
Pickup - SelfPickup
- Not
Applicable - NotApplicable
- Shipped
To Customer - ShippedToCustomer
- Self
Pickup - SelfPickup
- NOT_APPLICABLE
- NotApplicable
- SHIPPED_TO_CUSTOMER
- ShippedToCustomer
- SELF_PICKUP
- SelfPickup
- "Not
Applicable" - NotApplicable
- "Shipped
To Customer" - ShippedToCustomer
- "Self
Pickup" - SelfPickup
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TrackingInfoResponse, TrackingInfoResponseArgs
- Carrier
Name string - Name of the carrier used in the delivery.
- Serial
Number string - Serial number of the device being tracked.
- Tracking
Id string - Tracking ID of the shipment.
- 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 - Tracking ID of the shipment.
- 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 - Tracking ID of the shipment.
- 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 - Tracking ID of the shipment.
- 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 - Tracking ID of the shipment.
- 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 - Tracking ID of the shipment.
- tracking
Url 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
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0