azure-native.edgeorder.OrderItem
Explore with Pulumi AI
Represents order item resource. Azure REST API version: 2022-05-01-preview.
Other available API versions: 2024-02-01.
Example Usage
CreateOrderItem
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var orderItem = new AzureNative.EdgeOrder.OrderItem("orderItem", new()
{
AddressDetails = new AzureNative.EdgeOrder.Inputs.AddressDetailsArgs
{
ForwardAddress = new AzureNative.EdgeOrder.Inputs.AddressPropertiesArgs
{
ContactDetails = new AzureNative.EdgeOrder.Inputs.ContactDetailsArgs
{
ContactName = "XXXX XXXX",
EmailList = new[]
{
"xxxx@xxxx.xxx",
},
Phone = "0000000000",
PhoneExtension = "",
},
ShippingAddress = new AzureNative.EdgeOrder.Inputs.ShippingAddressArgs
{
AddressType = AzureNative.EdgeOrder.AddressType.None,
City = "San Francisco",
CompanyName = "Microsoft",
Country = "US",
PostalCode = "94107",
StateOrProvince = "CA",
StreetAddress1 = "16 TOWNSEND ST",
StreetAddress2 = "UNIT 1",
},
},
},
Location = "eastus",
OrderId = "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.EdgeOrder/locations/eastus/orders/TestOrderName2",
OrderItemDetails = new AzureNative.EdgeOrder.Inputs.OrderItemDetailsArgs
{
OrderItemType = AzureNative.EdgeOrder.OrderItemType.Purchase,
Preferences = new AzureNative.EdgeOrder.Inputs.PreferencesArgs
{
TransportPreferences = new AzureNative.EdgeOrder.Inputs.TransportPreferencesArgs
{
PreferredShipmentType = AzureNative.EdgeOrder.TransportShipmentTypes.MicrosoftManaged,
},
},
ProductDetails = new AzureNative.EdgeOrder.Inputs.ProductDetailsArgs
{
HierarchyInformation = new AzureNative.EdgeOrder.Inputs.HierarchyInformationArgs
{
ConfigurationName = "edgep_base",
ProductFamilyName = "azurestackedge",
ProductLineName = "azurestackedge",
ProductName = "azurestackedgegpu",
},
},
},
OrderItemName = "TestOrderItemName2",
ResourceGroupName = "YourResourceGroupName",
});
});
package main
import (
edgeorder "github.com/pulumi/pulumi-azure-native-sdk/edgeorder/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := edgeorder.NewOrderItem(ctx, "orderItem", &edgeorder.OrderItemArgs{
AddressDetails: &edgeorder.AddressDetailsArgs{
ForwardAddress: &edgeorder.AddressPropertiesArgs{
ContactDetails: &edgeorder.ContactDetailsArgs{
ContactName: pulumi.String("XXXX XXXX"),
EmailList: pulumi.StringArray{
pulumi.String("xxxx@xxxx.xxx"),
},
Phone: pulumi.String("0000000000"),
PhoneExtension: pulumi.String(""),
},
ShippingAddress: &edgeorder.ShippingAddressArgs{
AddressType: pulumi.String(edgeorder.AddressTypeNone),
City: pulumi.String("San Francisco"),
CompanyName: pulumi.String("Microsoft"),
Country: pulumi.String("US"),
PostalCode: pulumi.String("94107"),
StateOrProvince: pulumi.String("CA"),
StreetAddress1: pulumi.String("16 TOWNSEND ST"),
StreetAddress2: pulumi.String("UNIT 1"),
},
},
},
Location: pulumi.String("eastus"),
OrderId: pulumi.String("/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.EdgeOrder/locations/eastus/orders/TestOrderName2"),
OrderItemDetails: &edgeorder.OrderItemDetailsArgs{
OrderItemType: pulumi.String(edgeorder.OrderItemTypePurchase),
Preferences: &edgeorder.PreferencesArgs{
TransportPreferences: &edgeorder.TransportPreferencesArgs{
PreferredShipmentType: pulumi.String(edgeorder.TransportShipmentTypesMicrosoftManaged),
},
},
ProductDetails: &edgeorder.ProductDetailsArgs{
HierarchyInformation: &edgeorder.HierarchyInformationArgs{
ConfigurationName: pulumi.String("edgep_base"),
ProductFamilyName: pulumi.String("azurestackedge"),
ProductLineName: pulumi.String("azurestackedge"),
ProductName: pulumi.String("azurestackedgegpu"),
},
},
},
OrderItemName: pulumi.String("TestOrderItemName2"),
ResourceGroupName: pulumi.String("YourResourceGroupName"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.edgeorder.OrderItem;
import com.pulumi.azurenative.edgeorder.OrderItemArgs;
import com.pulumi.azurenative.edgeorder.inputs.AddressDetailsArgs;
import com.pulumi.azurenative.edgeorder.inputs.AddressPropertiesArgs;
import com.pulumi.azurenative.edgeorder.inputs.ContactDetailsArgs;
import com.pulumi.azurenative.edgeorder.inputs.ShippingAddressArgs;
import com.pulumi.azurenative.edgeorder.inputs.OrderItemDetailsArgs;
import com.pulumi.azurenative.edgeorder.inputs.PreferencesArgs;
import com.pulumi.azurenative.edgeorder.inputs.TransportPreferencesArgs;
import com.pulumi.azurenative.edgeorder.inputs.ProductDetailsArgs;
import com.pulumi.azurenative.edgeorder.inputs.HierarchyInformationArgs;
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 orderItem = new OrderItem("orderItem", OrderItemArgs.builder()
.addressDetails(AddressDetailsArgs.builder()
.forwardAddress(AddressPropertiesArgs.builder()
.contactDetails(ContactDetailsArgs.builder()
.contactName("XXXX XXXX")
.emailList("xxxx@xxxx.xxx")
.phone("0000000000")
.phoneExtension("")
.build())
.shippingAddress(ShippingAddressArgs.builder()
.addressType("None")
.city("San Francisco")
.companyName("Microsoft")
.country("US")
.postalCode("94107")
.stateOrProvince("CA")
.streetAddress1("16 TOWNSEND ST")
.streetAddress2("UNIT 1")
.build())
.build())
.build())
.location("eastus")
.orderId("/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.EdgeOrder/locations/eastus/orders/TestOrderName2")
.orderItemDetails(OrderItemDetailsArgs.builder()
.orderItemType("Purchase")
.preferences(PreferencesArgs.builder()
.transportPreferences(TransportPreferencesArgs.builder()
.preferredShipmentType("MicrosoftManaged")
.build())
.build())
.productDetails(ProductDetailsArgs.builder()
.hierarchyInformation(HierarchyInformationArgs.builder()
.configurationName("edgep_base")
.productFamilyName("azurestackedge")
.productLineName("azurestackedge")
.productName("azurestackedgegpu")
.build())
.build())
.build())
.orderItemName("TestOrderItemName2")
.resourceGroupName("YourResourceGroupName")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
order_item = azure_native.edgeorder.OrderItem("orderItem",
address_details={
"forward_address": {
"contact_details": {
"contact_name": "XXXX XXXX",
"email_list": ["xxxx@xxxx.xxx"],
"phone": "0000000000",
"phone_extension": "",
},
"shipping_address": {
"address_type": azure_native.edgeorder.AddressType.NONE,
"city": "San Francisco",
"company_name": "Microsoft",
"country": "US",
"postal_code": "94107",
"state_or_province": "CA",
"street_address1": "16 TOWNSEND ST",
"street_address2": "UNIT 1",
},
},
},
location="eastus",
order_id="/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.EdgeOrder/locations/eastus/orders/TestOrderName2",
order_item_details={
"order_item_type": azure_native.edgeorder.OrderItemType.PURCHASE,
"preferences": {
"transport_preferences": {
"preferred_shipment_type": azure_native.edgeorder.TransportShipmentTypes.MICROSOFT_MANAGED,
},
},
"product_details": {
"hierarchy_information": {
"configuration_name": "edgep_base",
"product_family_name": "azurestackedge",
"product_line_name": "azurestackedge",
"product_name": "azurestackedgegpu",
},
},
},
order_item_name="TestOrderItemName2",
resource_group_name="YourResourceGroupName")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const orderItem = new azure_native.edgeorder.OrderItem("orderItem", {
addressDetails: {
forwardAddress: {
contactDetails: {
contactName: "XXXX XXXX",
emailList: ["xxxx@xxxx.xxx"],
phone: "0000000000",
phoneExtension: "",
},
shippingAddress: {
addressType: azure_native.edgeorder.AddressType.None,
city: "San Francisco",
companyName: "Microsoft",
country: "US",
postalCode: "94107",
stateOrProvince: "CA",
streetAddress1: "16 TOWNSEND ST",
streetAddress2: "UNIT 1",
},
},
},
location: "eastus",
orderId: "/subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.EdgeOrder/locations/eastus/orders/TestOrderName2",
orderItemDetails: {
orderItemType: azure_native.edgeorder.OrderItemType.Purchase,
preferences: {
transportPreferences: {
preferredShipmentType: azure_native.edgeorder.TransportShipmentTypes.MicrosoftManaged,
},
},
productDetails: {
hierarchyInformation: {
configurationName: "edgep_base",
productFamilyName: "azurestackedge",
productLineName: "azurestackedge",
productName: "azurestackedgegpu",
},
},
},
orderItemName: "TestOrderItemName2",
resourceGroupName: "YourResourceGroupName",
});
resources:
orderItem:
type: azure-native:edgeorder:OrderItem
properties:
addressDetails:
forwardAddress:
contactDetails:
contactName: XXXX XXXX
emailList:
- xxxx@xxxx.xxx
phone: '0000000000'
phoneExtension:
shippingAddress:
addressType: None
city: San Francisco
companyName: Microsoft
country: US
postalCode: '94107'
stateOrProvince: CA
streetAddress1: 16 TOWNSEND ST
streetAddress2: UNIT 1
location: eastus
orderId: /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.EdgeOrder/locations/eastus/orders/TestOrderName2
orderItemDetails:
orderItemType: Purchase
preferences:
transportPreferences:
preferredShipmentType: MicrosoftManaged
productDetails:
hierarchyInformation:
configurationName: edgep_base
productFamilyName: azurestackedge
productLineName: azurestackedge
productName: azurestackedgegpu
orderItemName: TestOrderItemName2
resourceGroupName: YourResourceGroupName
Create OrderItem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrderItem(name: string, args: OrderItemArgs, opts?: CustomResourceOptions);
@overload
def OrderItem(resource_name: str,
args: OrderItemArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OrderItem(resource_name: str,
opts: Optional[ResourceOptions] = None,
address_details: Optional[AddressDetailsArgs] = None,
order_id: Optional[str] = None,
order_item_details: Optional[OrderItemDetailsArgs] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
order_item_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewOrderItem(ctx *Context, name string, args OrderItemArgs, opts ...ResourceOption) (*OrderItem, error)
public OrderItem(string name, OrderItemArgs args, CustomResourceOptions? opts = null)
public OrderItem(String name, OrderItemArgs args)
public OrderItem(String name, OrderItemArgs args, CustomResourceOptions options)
type: azure-native:edgeorder:OrderItem
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 OrderItemArgs
- 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 OrderItemArgs
- 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 OrderItemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrderItemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrderItemArgs
- 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 orderItemResource = new AzureNative.EdgeOrder.OrderItem("orderItemResource", new()
{
AddressDetails = new AzureNative.EdgeOrder.Inputs.AddressDetailsArgs
{
ForwardAddress = new AzureNative.EdgeOrder.Inputs.AddressPropertiesArgs
{
ContactDetails = new AzureNative.EdgeOrder.Inputs.ContactDetailsArgs
{
ContactName = "string",
EmailList = new[]
{
"string",
},
Phone = "string",
Mobile = "string",
PhoneExtension = "string",
},
ShippingAddress = new AzureNative.EdgeOrder.Inputs.ShippingAddressArgs
{
Country = "string",
StreetAddress1 = "string",
AddressType = "string",
City = "string",
CompanyName = "string",
PostalCode = "string",
StateOrProvince = "string",
StreetAddress2 = "string",
StreetAddress3 = "string",
ZipExtendedCode = "string",
},
},
},
OrderId = "string",
OrderItemDetails = new AzureNative.EdgeOrder.Inputs.OrderItemDetailsArgs
{
OrderItemType = "string",
ProductDetails = new AzureNative.EdgeOrder.Inputs.ProductDetailsArgs
{
HierarchyInformation = new AzureNative.EdgeOrder.Inputs.HierarchyInformationArgs
{
ConfigurationName = "string",
ProductFamilyName = "string",
ProductLineName = "string",
ProductName = "string",
},
OptInAdditionalConfigurations = new[]
{
new AzureNative.EdgeOrder.Inputs.AdditionalConfigurationArgs
{
HierarchyInformation = new AzureNative.EdgeOrder.Inputs.HierarchyInformationArgs
{
ConfigurationName = "string",
ProductFamilyName = "string",
ProductLineName = "string",
ProductName = "string",
},
Quantity = 0,
},
},
},
NotificationEmailList = new[]
{
"string",
},
OrderItemMode = "string",
Preferences = new AzureNative.EdgeOrder.Inputs.PreferencesArgs
{
EncryptionPreferences = new AzureNative.EdgeOrder.Inputs.EncryptionPreferencesArgs
{
DoubleEncryptionStatus = "string",
},
ManagementResourcePreferences = new AzureNative.EdgeOrder.Inputs.ManagementResourcePreferencesArgs
{
PreferredManagementResourceId = "string",
},
NotificationPreferences = new[]
{
new AzureNative.EdgeOrder.Inputs.NotificationPreferenceArgs
{
SendNotification = false,
StageName = "string",
},
},
TransportPreferences = new AzureNative.EdgeOrder.Inputs.TransportPreferencesArgs
{
PreferredShipmentType = "string",
},
},
},
ResourceGroupName = "string",
Location = "string",
OrderItemName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := edgeorder.NewOrderItem(ctx, "orderItemResource", &edgeorder.OrderItemArgs{
AddressDetails: &edgeorder.AddressDetailsArgs{
ForwardAddress: &edgeorder.AddressPropertiesArgs{
ContactDetails: &edgeorder.ContactDetailsArgs{
ContactName: pulumi.String("string"),
EmailList: pulumi.StringArray{
pulumi.String("string"),
},
Phone: pulumi.String("string"),
Mobile: pulumi.String("string"),
PhoneExtension: pulumi.String("string"),
},
ShippingAddress: &edgeorder.ShippingAddressArgs{
Country: pulumi.String("string"),
StreetAddress1: pulumi.String("string"),
AddressType: pulumi.String("string"),
City: pulumi.String("string"),
CompanyName: pulumi.String("string"),
PostalCode: pulumi.String("string"),
StateOrProvince: pulumi.String("string"),
StreetAddress2: pulumi.String("string"),
StreetAddress3: pulumi.String("string"),
ZipExtendedCode: pulumi.String("string"),
},
},
},
OrderId: pulumi.String("string"),
OrderItemDetails: &edgeorder.OrderItemDetailsArgs{
OrderItemType: pulumi.String("string"),
ProductDetails: &edgeorder.ProductDetailsArgs{
HierarchyInformation: &edgeorder.HierarchyInformationArgs{
ConfigurationName: pulumi.String("string"),
ProductFamilyName: pulumi.String("string"),
ProductLineName: pulumi.String("string"),
ProductName: pulumi.String("string"),
},
OptInAdditionalConfigurations: edgeorder.AdditionalConfigurationArray{
&edgeorder.AdditionalConfigurationArgs{
HierarchyInformation: &edgeorder.HierarchyInformationArgs{
ConfigurationName: pulumi.String("string"),
ProductFamilyName: pulumi.String("string"),
ProductLineName: pulumi.String("string"),
ProductName: pulumi.String("string"),
},
Quantity: pulumi.Int(0),
},
},
},
NotificationEmailList: pulumi.StringArray{
pulumi.String("string"),
},
OrderItemMode: pulumi.String("string"),
Preferences: &edgeorder.PreferencesArgs{
EncryptionPreferences: &edgeorder.EncryptionPreferencesArgs{
DoubleEncryptionStatus: pulumi.String("string"),
},
ManagementResourcePreferences: &edgeorder.ManagementResourcePreferencesArgs{
PreferredManagementResourceId: pulumi.String("string"),
},
NotificationPreferences: edgeorder.NotificationPreferenceArray{
&edgeorder.NotificationPreferenceArgs{
SendNotification: pulumi.Bool(false),
StageName: pulumi.String("string"),
},
},
TransportPreferences: &edgeorder.TransportPreferencesArgs{
PreferredShipmentType: pulumi.String("string"),
},
},
},
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
OrderItemName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var orderItemResource = new OrderItem("orderItemResource", OrderItemArgs.builder()
.addressDetails(AddressDetailsArgs.builder()
.forwardAddress(AddressPropertiesArgs.builder()
.contactDetails(ContactDetailsArgs.builder()
.contactName("string")
.emailList("string")
.phone("string")
.mobile("string")
.phoneExtension("string")
.build())
.shippingAddress(ShippingAddressArgs.builder()
.country("string")
.streetAddress1("string")
.addressType("string")
.city("string")
.companyName("string")
.postalCode("string")
.stateOrProvince("string")
.streetAddress2("string")
.streetAddress3("string")
.zipExtendedCode("string")
.build())
.build())
.build())
.orderId("string")
.orderItemDetails(OrderItemDetailsArgs.builder()
.orderItemType("string")
.productDetails(ProductDetailsArgs.builder()
.hierarchyInformation(HierarchyInformationArgs.builder()
.configurationName("string")
.productFamilyName("string")
.productLineName("string")
.productName("string")
.build())
.optInAdditionalConfigurations(AdditionalConfigurationArgs.builder()
.hierarchyInformation(HierarchyInformationArgs.builder()
.configurationName("string")
.productFamilyName("string")
.productLineName("string")
.productName("string")
.build())
.quantity(0)
.build())
.build())
.notificationEmailList("string")
.orderItemMode("string")
.preferences(PreferencesArgs.builder()
.encryptionPreferences(EncryptionPreferencesArgs.builder()
.doubleEncryptionStatus("string")
.build())
.managementResourcePreferences(ManagementResourcePreferencesArgs.builder()
.preferredManagementResourceId("string")
.build())
.notificationPreferences(NotificationPreferenceArgs.builder()
.sendNotification(false)
.stageName("string")
.build())
.transportPreferences(TransportPreferencesArgs.builder()
.preferredShipmentType("string")
.build())
.build())
.build())
.resourceGroupName("string")
.location("string")
.orderItemName("string")
.tags(Map.of("string", "string"))
.build());
order_item_resource = azure_native.edgeorder.OrderItem("orderItemResource",
address_details={
"forwardAddress": {
"contactDetails": {
"contactName": "string",
"emailList": ["string"],
"phone": "string",
"mobile": "string",
"phoneExtension": "string",
},
"shippingAddress": {
"country": "string",
"streetAddress1": "string",
"addressType": "string",
"city": "string",
"companyName": "string",
"postalCode": "string",
"stateOrProvince": "string",
"streetAddress2": "string",
"streetAddress3": "string",
"zipExtendedCode": "string",
},
},
},
order_id="string",
order_item_details={
"orderItemType": "string",
"productDetails": {
"hierarchyInformation": {
"configurationName": "string",
"productFamilyName": "string",
"productLineName": "string",
"productName": "string",
},
"optInAdditionalConfigurations": [{
"hierarchyInformation": {
"configurationName": "string",
"productFamilyName": "string",
"productLineName": "string",
"productName": "string",
},
"quantity": 0,
}],
},
"notificationEmailList": ["string"],
"orderItemMode": "string",
"preferences": {
"encryptionPreferences": {
"doubleEncryptionStatus": "string",
},
"managementResourcePreferences": {
"preferredManagementResourceId": "string",
},
"notificationPreferences": [{
"sendNotification": False,
"stageName": "string",
}],
"transportPreferences": {
"preferredShipmentType": "string",
},
},
},
resource_group_name="string",
location="string",
order_item_name="string",
tags={
"string": "string",
})
const orderItemResource = new azure_native.edgeorder.OrderItem("orderItemResource", {
addressDetails: {
forwardAddress: {
contactDetails: {
contactName: "string",
emailList: ["string"],
phone: "string",
mobile: "string",
phoneExtension: "string",
},
shippingAddress: {
country: "string",
streetAddress1: "string",
addressType: "string",
city: "string",
companyName: "string",
postalCode: "string",
stateOrProvince: "string",
streetAddress2: "string",
streetAddress3: "string",
zipExtendedCode: "string",
},
},
},
orderId: "string",
orderItemDetails: {
orderItemType: "string",
productDetails: {
hierarchyInformation: {
configurationName: "string",
productFamilyName: "string",
productLineName: "string",
productName: "string",
},
optInAdditionalConfigurations: [{
hierarchyInformation: {
configurationName: "string",
productFamilyName: "string",
productLineName: "string",
productName: "string",
},
quantity: 0,
}],
},
notificationEmailList: ["string"],
orderItemMode: "string",
preferences: {
encryptionPreferences: {
doubleEncryptionStatus: "string",
},
managementResourcePreferences: {
preferredManagementResourceId: "string",
},
notificationPreferences: [{
sendNotification: false,
stageName: "string",
}],
transportPreferences: {
preferredShipmentType: "string",
},
},
},
resourceGroupName: "string",
location: "string",
orderItemName: "string",
tags: {
string: "string",
},
});
type: azure-native:edgeorder:OrderItem
properties:
addressDetails:
forwardAddress:
contactDetails:
contactName: string
emailList:
- string
mobile: string
phone: string
phoneExtension: string
shippingAddress:
addressType: string
city: string
companyName: string
country: string
postalCode: string
stateOrProvince: string
streetAddress1: string
streetAddress2: string
streetAddress3: string
zipExtendedCode: string
location: string
orderId: string
orderItemDetails:
notificationEmailList:
- string
orderItemMode: string
orderItemType: string
preferences:
encryptionPreferences:
doubleEncryptionStatus: string
managementResourcePreferences:
preferredManagementResourceId: string
notificationPreferences:
- sendNotification: false
stageName: string
transportPreferences:
preferredShipmentType: string
productDetails:
hierarchyInformation:
configurationName: string
productFamilyName: string
productLineName: string
productName: string
optInAdditionalConfigurations:
- hierarchyInformation:
configurationName: string
productFamilyName: string
productLineName: string
productName: string
quantity: 0
orderItemName: string
resourceGroupName: string
tags:
string: string
OrderItem 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 OrderItem resource accepts the following input properties:
- Address
Details Pulumi.Azure Native. Edge Order. Inputs. Address Details - Represents shipping and return address for order item.
- Order
Id string - Id of the order to which order item belongs to.
- Order
Item Pulumi.Details Azure Native. Edge Order. Inputs. Order Item Details - Represents order item details.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Order
Item stringName - The name of the order item.
- Dictionary<string, string>
- Resource tags.
- Address
Details AddressDetails Args - Represents shipping and return address for order item.
- Order
Id string - Id of the order to which order item belongs to.
- Order
Item OrderDetails Item Details Args - Represents order item details.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Order
Item stringName - The name of the order item.
- map[string]string
- Resource tags.
- address
Details AddressDetails - Represents shipping and return address for order item.
- order
Id String - Id of the order to which order item belongs to.
- order
Item OrderDetails Item Details - Represents order item details.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- order
Item StringName - The name of the order item.
- Map<String,String>
- Resource tags.
- address
Details AddressDetails - Represents shipping and return address for order item.
- order
Id string - Id of the order to which order item belongs to.
- order
Item OrderDetails Item Details - Represents order item details.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- order
Item stringName - The name of the order item.
- {[key: string]: string}
- Resource tags.
- address_
details AddressDetails Args - Represents shipping and return address for order item.
- order_
id str - Id of the order to which order item belongs to.
- order_
item_ Orderdetails Item Details Args - Represents order item details.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- order_
item_ strname - The name of the order item.
- Mapping[str, str]
- Resource tags.
- address
Details Property Map - Represents shipping and return address for order item.
- order
Id String - Id of the order to which order item belongs to.
- order
Item Property MapDetails - Represents order item details.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- order
Item StringName - The name of the order item.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the OrderItem resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Start
Time string - Start time of order item.
- System
Data Pulumi.Azure Native. Edge Order. Outputs. System Data Response - Represents resource creation and update time.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Start
Time string - Start time of order item.
- System
Data SystemData Response - Represents resource creation and update time.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- start
Time String - Start time of order item.
- system
Data SystemData Response - Represents resource creation and update time.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- start
Time string - Start time of order item.
- system
Data SystemData Response - Represents resource creation and update time.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- start_
time str - Start time of order item.
- system_
data SystemData Response - Represents resource creation and update time.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- start
Time String - Start time of order item.
- system
Data Property Map - Represents resource creation and update time.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AdditionalConfiguration, AdditionalConfigurationArgs
- Hierarchy
Information Pulumi.Azure Native. Edge Order. Inputs. Hierarchy Information - Hierarchy of the product which uniquely identifies the configuration.
- Quantity int
- Quantity of the product.
- Hierarchy
Information HierarchyInformation - Hierarchy of the product which uniquely identifies the configuration.
- Quantity int
- Quantity of the product.
- hierarchy
Information HierarchyInformation - Hierarchy of the product which uniquely identifies the configuration.
- quantity Integer
- Quantity of the product.
- hierarchy
Information HierarchyInformation - Hierarchy of the product which uniquely identifies the configuration.
- quantity number
- Quantity of the product.
- hierarchy_
information HierarchyInformation - Hierarchy of the product which uniquely identifies the configuration.
- quantity int
- Quantity of the product.
- hierarchy
Information Property Map - Hierarchy of the product which uniquely identifies the configuration.
- quantity Number
- Quantity of the product.
AdditionalConfigurationResponse, AdditionalConfigurationResponseArgs
- Hierarchy
Information Pulumi.Azure Native. Edge Order. Inputs. Hierarchy Information Response - Hierarchy of the product which uniquely identifies the configuration.
- Quantity int
- Quantity of the product.
- Hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the configuration.
- Quantity int
- Quantity of the product.
- hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the configuration.
- quantity Integer
- Quantity of the product.
- hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the configuration.
- quantity number
- Quantity of the product.
- hierarchy_
information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the configuration.
- quantity int
- Quantity of the product.
- hierarchy
Information Property Map - Hierarchy of the product which uniquely identifies the configuration.
- quantity Number
- Quantity of the product.
AddressDetails, AddressDetailsArgs
- Forward
Address Pulumi.Azure Native. Edge Order. Inputs. Address Properties - Customer address and contact details. It should be address resource
- Forward
Address AddressProperties - Customer address and contact details. It should be address resource
- forward
Address AddressProperties - Customer address and contact details. It should be address resource
- forward
Address AddressProperties - Customer address and contact details. It should be address resource
- forward_
address AddressProperties - Customer address and contact details. It should be address resource
- forward
Address Property Map - Customer address and contact details. It should be address resource
AddressDetailsResponse, AddressDetailsResponseArgs
- Forward
Address Pulumi.Azure Native. Edge Order. Inputs. Address Properties Response - Customer address and contact details. It should be address resource
- Return
Address Pulumi.Azure Native. Edge Order. Inputs. Address Properties Response - Return shipping address
- Forward
Address AddressProperties Response - Customer address and contact details. It should be address resource
- Return
Address AddressProperties Response - Return shipping address
- forward
Address AddressProperties Response - Customer address and contact details. It should be address resource
- return
Address AddressProperties Response - Return shipping address
- forward
Address AddressProperties Response - Customer address and contact details. It should be address resource
- return
Address AddressProperties Response - Return shipping address
- forward_
address AddressProperties Response - Customer address and contact details. It should be address resource
- return_
address AddressProperties Response - Return shipping address
- forward
Address Property Map - Customer address and contact details. It should be address resource
- return
Address Property Map - Return shipping address
AddressProperties, AddressPropertiesArgs
- Contact
Details Pulumi.Azure Native. Edge Order. Inputs. Contact Details - Contact details for the address
- Shipping
Address Pulumi.Azure Native. Edge Order. Inputs. Shipping Address - Shipping details for the address
- Contact
Details ContactDetails - Contact details for the address
- Shipping
Address ShippingAddress - Shipping details for the address
- contact
Details ContactDetails - Contact details for the address
- shipping
Address ShippingAddress - Shipping details for the address
- contact
Details ContactDetails - Contact details for the address
- shipping
Address ShippingAddress - Shipping details for the address
- contact_
details ContactDetails - Contact details for the address
- shipping_
address ShippingAddress - Shipping details for the address
- contact
Details Property Map - Contact details for the address
- shipping
Address Property Map - Shipping details for the address
AddressPropertiesResponse, AddressPropertiesResponseArgs
- Address
Validation stringStatus - Status of address validation
- Contact
Details Pulumi.Azure Native. Edge Order. Inputs. Contact Details Response - Contact details for the address
- Shipping
Address Pulumi.Azure Native. Edge Order. Inputs. Shipping Address Response - Shipping details for the address
- Address
Validation stringStatus - Status of address validation
- Contact
Details ContactDetails Response - Contact details for the address
- Shipping
Address ShippingAddress Response - Shipping details for the address
- address
Validation StringStatus - Status of address validation
- contact
Details ContactDetails Response - Contact details for the address
- shipping
Address ShippingAddress Response - Shipping details for the address
- address
Validation stringStatus - Status of address validation
- contact
Details ContactDetails Response - Contact details for the address
- shipping
Address ShippingAddress Response - Shipping details for the address
- address_
validation_ strstatus - Status of address validation
- contact_
details ContactDetails Response - Contact details for the address
- shipping_
address ShippingAddress Response - Shipping details for the address
- address
Validation StringStatus - Status of address validation
- contact
Details Property Map - Contact details for the address
- shipping
Address Property Map - Shipping details for the address
AddressType, AddressTypeArgs
- None
- NoneAddress type not known.
- Residential
- ResidentialResidential Address.
- Commercial
- CommercialCommercial Address.
- Address
Type None - NoneAddress type not known.
- Address
Type Residential - ResidentialResidential Address.
- Address
Type Commercial - CommercialCommercial Address.
- None
- NoneAddress type not known.
- Residential
- ResidentialResidential Address.
- Commercial
- CommercialCommercial Address.
- None
- NoneAddress type not known.
- Residential
- ResidentialResidential Address.
- Commercial
- CommercialCommercial Address.
- NONE
- NoneAddress type not known.
- RESIDENTIAL
- ResidentialResidential Address.
- COMMERCIAL
- CommercialCommercial Address.
- "None"
- NoneAddress type not known.
- "Residential"
- ResidentialResidential Address.
- "Commercial"
- CommercialCommercial Address.
ConfigurationDeviceDetailsResponse, ConfigurationDeviceDetailsResponseArgs
- Device
Details List<Pulumi.Azure Native. Edge Order. Inputs. Device Details Response> - List of device details.
- Hierarchy
Information Pulumi.Azure Native. Edge Order. Inputs. Hierarchy Information Response - Hierarchy of the product which uniquely identifies the configuration.
- Identification
Type string - Identification type of the configuration.
- Quantity int
- Quantity of the product.
- Display
Info Pulumi.Azure Native. Edge Order. Inputs. Display Info Response - Display details of the product.
- Device
Details []DeviceDetails Response - List of device details.
- Hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the configuration.
- Identification
Type string - Identification type of the configuration.
- Quantity int
- Quantity of the product.
- Display
Info DisplayInfo Response - Display details of the product.
- device
Details List<DeviceDetails Response> - List of device details.
- hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the configuration.
- identification
Type String - Identification type of the configuration.
- quantity Integer
- Quantity of the product.
- display
Info DisplayInfo Response - Display details of the product.
- device
Details DeviceDetails Response[] - List of device details.
- hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the configuration.
- identification
Type string - Identification type of the configuration.
- quantity number
- Quantity of the product.
- display
Info DisplayInfo Response - Display details of the product.
- device_
details Sequence[DeviceDetails Response] - List of device details.
- hierarchy_
information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the configuration.
- identification_
type str - Identification type of the configuration.
- quantity int
- Quantity of the product.
- display_
info DisplayInfo Response - Display details of the product.
- device
Details List<Property Map> - List of device details.
- hierarchy
Information Property Map - Hierarchy of the product which uniquely identifies the configuration.
- identification
Type String - Identification type of the configuration.
- quantity Number
- Quantity of the product.
- display
Info Property Map - Display details of the product.
ContactDetails, ContactDetailsArgs
- Contact
Name string - Contact name of the person.
- Email
List List<string> - List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Phone
Extension string - Phone extension number of the contact person.
- Contact
Name string - Contact name of the person.
- Email
List []string - List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Phone
Extension string - Phone extension number of the contact person.
- contact
Name String - Contact name of the person.
- email
List List<String> - List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phone
Extension String - Phone extension number of the contact person.
- contact
Name string - Contact name of the person.
- email
List string[] - List of Email-ids to be notified about job progress.
- phone string
- Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- phone
Extension string - Phone extension number of the contact person.
- contact_
name str - Contact name of the person.
- email_
list Sequence[str] - List of Email-ids to be notified about job progress.
- phone str
- Phone number of the contact person.
- mobile str
- Mobile number of the contact person.
- phone_
extension str - Phone extension number of the contact person.
- contact
Name String - Contact name of the person.
- email
List List<String> - List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phone
Extension String - Phone extension number of the contact person.
ContactDetailsResponse, ContactDetailsResponseArgs
- Contact
Name string - Contact name of the person.
- Email
List List<string> - List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Phone
Extension string - Phone extension number of the contact person.
- Contact
Name string - Contact name of the person.
- Email
List []string - List of Email-ids to be notified about job progress.
- Phone string
- Phone number of the contact person.
- Mobile string
- Mobile number of the contact person.
- Phone
Extension string - Phone extension number of the contact person.
- contact
Name String - Contact name of the person.
- email
List List<String> - List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phone
Extension String - Phone extension number of the contact person.
- contact
Name string - Contact name of the person.
- email
List string[] - List of Email-ids to be notified about job progress.
- phone string
- Phone number of the contact person.
- mobile string
- Mobile number of the contact person.
- phone
Extension string - Phone extension number of the contact person.
- contact_
name str - Contact name of the person.
- email_
list Sequence[str] - List of Email-ids to be notified about job progress.
- phone str
- Phone number of the contact person.
- mobile str
- Mobile number of the contact person.
- phone_
extension str - Phone extension number of the contact person.
- contact
Name String - Contact name of the person.
- email
List List<String> - List of Email-ids to be notified about job progress.
- phone String
- Phone number of the contact person.
- mobile String
- Mobile number of the contact person.
- phone
Extension String - Phone extension number of the contact person.
DeviceDetailsResponse, DeviceDetailsResponseArgs
- Management
Resource stringId - Management Resource Id
- Management
Resource stringTenant Id - Management Resource Tenant ID
- Serial
Number string - device serial number
- Management
Resource stringId - Management Resource Id
- Management
Resource stringTenant Id - Management Resource Tenant ID
- Serial
Number string - device serial number
- management
Resource StringId - Management Resource Id
- management
Resource StringTenant Id - Management Resource Tenant ID
- serial
Number String - device serial number
- management
Resource stringId - Management Resource Id
- management
Resource stringTenant Id - Management Resource Tenant ID
- serial
Number string - device serial number
- management_
resource_ strid - Management Resource Id
- management_
resource_ strtenant_ id - Management Resource Tenant ID
- serial_
number str - device serial number
- management
Resource StringId - Management Resource Id
- management
Resource StringTenant Id - Management Resource Tenant ID
- serial
Number String - device serial number
DisplayInfoResponse, DisplayInfoResponseArgs
- Configuration
Display stringName - Configuration display name
- Product
Family stringDisplay Name - Product family display name
- Configuration
Display stringName - Configuration display name
- Product
Family stringDisplay Name - Product family display name
- configuration
Display StringName - Configuration display name
- product
Family StringDisplay Name - Product family display name
- configuration
Display stringName - Configuration display name
- product
Family stringDisplay Name - Product family display name
- configuration_
display_ strname - Configuration display name
- product_
family_ strdisplay_ name - Product family display name
- configuration
Display StringName - Configuration display name
- product
Family StringDisplay Name - Product family display name
DoubleEncryptionStatus, DoubleEncryptionStatusArgs
- Disabled
- DisabledDouble encryption is disabled
- Enabled
- EnabledDouble encryption is enabled
- Double
Encryption Status Disabled - DisabledDouble encryption is disabled
- Double
Encryption Status Enabled - EnabledDouble encryption is enabled
- Disabled
- DisabledDouble encryption is disabled
- Enabled
- EnabledDouble encryption is enabled
- Disabled
- DisabledDouble encryption is disabled
- Enabled
- EnabledDouble encryption is enabled
- DISABLED
- DisabledDouble encryption is disabled
- ENABLED
- EnabledDouble encryption is enabled
- "Disabled"
- DisabledDouble encryption is disabled
- "Enabled"
- EnabledDouble encryption is enabled
EncryptionPreferences, EncryptionPreferencesArgs
- Double
Encryption string | Pulumi.Status Azure Native. Edge Order. Double Encryption Status - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- Double
Encryption string | DoubleStatus Encryption Status - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- double
Encryption String | DoubleStatus Encryption Status - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- double
Encryption string | DoubleStatus Encryption Status - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- double_
encryption_ str | Doublestatus Encryption Status - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- double
Encryption String | "Disabled" | "Enabled"Status - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
EncryptionPreferencesResponse, EncryptionPreferencesResponseArgs
- Double
Encryption stringStatus - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- Double
Encryption stringStatus - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- double
Encryption StringStatus - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- double
Encryption stringStatus - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- double_
encryption_ strstatus - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
- double
Encryption StringStatus - Double encryption status as entered by the customer. It is compulsory to give this parameter if the 'Deny' or 'Disabled' policy is configured.
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
ErrorDetailResponse, ErrorDetailResponseArgs
- Additional
Info List<Pulumi.Azure Native. Edge Order. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Edge Order. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
ForwardShippingDetailsResponse, ForwardShippingDetailsResponseArgs
- Carrier
Display stringName - Carrier Name for display purpose. Not to be used for any processing.
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - TrackingId of the package
- Tracking
Url string - TrackingUrl of the package.
- Carrier
Display stringName - Carrier Name for display purpose. Not to be used for any processing.
- Carrier
Name string - Name of the carrier.
- Tracking
Id string - TrackingId of the package
- Tracking
Url string - TrackingUrl of the package.
- carrier
Display StringName - Carrier Name for display purpose. Not to be used for any processing.
- carrier
Name String - Name of the carrier.
- tracking
Id String - TrackingId of the package
- tracking
Url String - TrackingUrl of the package.
- carrier
Display stringName - Carrier Name for display purpose. Not to be used for any processing.
- carrier
Name string - Name of the carrier.
- tracking
Id string - TrackingId of the package
- tracking
Url string - TrackingUrl of the package.
- carrier_
display_ strname - Carrier Name for display purpose. Not to be used for any processing.
- carrier_
name str - Name of the carrier.
- tracking_
id str - TrackingId of the package
- tracking_
url str - TrackingUrl of the package.
- carrier
Display StringName - Carrier Name for display purpose. Not to be used for any processing.
- carrier
Name String - Name of the carrier.
- tracking
Id String - TrackingId of the package
- tracking
Url String - TrackingUrl of the package.
HierarchyInformation, HierarchyInformationArgs
- Configuration
Name string - Represents configuration name that uniquely identifies configuration.
- Product
Family stringName - Represents product family name that uniquely identifies product family.
- Product
Line stringName - Represents product line name that uniquely identifies product line.
- Product
Name string - Represents product name that uniquely identifies product.
- Configuration
Name string - Represents configuration name that uniquely identifies configuration.
- Product
Family stringName - Represents product family name that uniquely identifies product family.
- Product
Line stringName - Represents product line name that uniquely identifies product line.
- Product
Name string - Represents product name that uniquely identifies product.
- configuration
Name String - Represents configuration name that uniquely identifies configuration.
- product
Family StringName - Represents product family name that uniquely identifies product family.
- product
Line StringName - Represents product line name that uniquely identifies product line.
- product
Name String - Represents product name that uniquely identifies product.
- configuration
Name string - Represents configuration name that uniquely identifies configuration.
- product
Family stringName - Represents product family name that uniquely identifies product family.
- product
Line stringName - Represents product line name that uniquely identifies product line.
- product
Name string - Represents product name that uniquely identifies product.
- configuration_
name str - Represents configuration name that uniquely identifies configuration.
- product_
family_ strname - Represents product family name that uniquely identifies product family.
- product_
line_ strname - Represents product line name that uniquely identifies product line.
- product_
name str - Represents product name that uniquely identifies product.
- configuration
Name String - Represents configuration name that uniquely identifies configuration.
- product
Family StringName - Represents product family name that uniquely identifies product family.
- product
Line StringName - Represents product line name that uniquely identifies product line.
- product
Name String - Represents product name that uniquely identifies product.
HierarchyInformationResponse, HierarchyInformationResponseArgs
- Configuration
Name string - Represents configuration name that uniquely identifies configuration.
- Product
Family stringName - Represents product family name that uniquely identifies product family.
- Product
Line stringName - Represents product line name that uniquely identifies product line.
- Product
Name string - Represents product name that uniquely identifies product.
- Configuration
Name string - Represents configuration name that uniquely identifies configuration.
- Product
Family stringName - Represents product family name that uniquely identifies product family.
- Product
Line stringName - Represents product line name that uniquely identifies product line.
- Product
Name string - Represents product name that uniquely identifies product.
- configuration
Name String - Represents configuration name that uniquely identifies configuration.
- product
Family StringName - Represents product family name that uniquely identifies product family.
- product
Line StringName - Represents product line name that uniquely identifies product line.
- product
Name String - Represents product name that uniquely identifies product.
- configuration
Name string - Represents configuration name that uniquely identifies configuration.
- product
Family stringName - Represents product family name that uniquely identifies product family.
- product
Line stringName - Represents product line name that uniquely identifies product line.
- product
Name string - Represents product name that uniquely identifies product.
- configuration_
name str - Represents configuration name that uniquely identifies configuration.
- product_
family_ strname - Represents product family name that uniquely identifies product family.
- product_
line_ strname - Represents product line name that uniquely identifies product line.
- product_
name str - Represents product name that uniquely identifies product.
- configuration
Name String - Represents configuration name that uniquely identifies configuration.
- product
Family StringName - Represents product family name that uniquely identifies product family.
- product
Line StringName - Represents product line name that uniquely identifies product line.
- product
Name String - Represents product name that uniquely identifies product.
ManagementResourcePreferences, ManagementResourcePreferencesArgs
- Preferred
Management stringResource Id - Customer preferred Management resource ARM ID
- Preferred
Management stringResource Id - Customer preferred Management resource ARM ID
- preferred
Management StringResource Id - Customer preferred Management resource ARM ID
- preferred
Management stringResource Id - Customer preferred Management resource ARM ID
- preferred_
management_ strresource_ id - Customer preferred Management resource ARM ID
- preferred
Management StringResource Id - Customer preferred Management resource ARM ID
ManagementResourcePreferencesResponse, ManagementResourcePreferencesResponseArgs
- Preferred
Management stringResource Id - Customer preferred Management resource ARM ID
- Preferred
Management stringResource Id - Customer preferred Management resource ARM ID
- preferred
Management StringResource Id - Customer preferred Management resource ARM ID
- preferred
Management stringResource Id - Customer preferred Management resource ARM ID
- preferred_
management_ strresource_ id - Customer preferred Management resource ARM ID
- preferred
Management StringResource Id - Customer preferred Management resource ARM ID
NotificationPreference, NotificationPreferenceArgs
- Send
Notification bool - Notification is required or not.
- Stage
Name string | Pulumi.Azure Native. Edge Order. Notification Stage Name - Name of the stage.
- Send
Notification bool - Notification is required or not.
- Stage
Name string | NotificationStage Name - Name of the stage.
- send
Notification Boolean - Notification is required or not.
- stage
Name String | NotificationStage Name - Name of the stage.
- send
Notification boolean - Notification is required or not.
- stage
Name string | NotificationStage Name - Name of the stage.
- send_
notification bool - Notification is required or not.
- stage_
name str | NotificationStage Name - Name of the stage.
- send
Notification Boolean - Notification is required or not.
- stage
Name String | "Shipped" | "Delivered" - Name of the stage.
NotificationPreferenceResponse, NotificationPreferenceResponseArgs
- Send
Notification bool - Notification is required or not.
- Stage
Name string - Name of the stage.
- Send
Notification bool - Notification is required or not.
- Stage
Name string - Name of the stage.
- send
Notification Boolean - Notification is required or not.
- stage
Name String - Name of the stage.
- send
Notification boolean - Notification is required or not.
- stage
Name string - Name of the stage.
- send_
notification bool - Notification is required or not.
- stage_
name str - Name of the stage.
- send
Notification Boolean - Notification is required or not.
- stage
Name String - Name of the stage.
NotificationStageName, NotificationStageNameArgs
- Shipped
- ShippedNotification at order item shipped from microsoft datacenter.
- Delivered
- DeliveredNotification at order item delivered to customer.
- Notification
Stage Name Shipped - ShippedNotification at order item shipped from microsoft datacenter.
- Notification
Stage Name Delivered - DeliveredNotification at order item delivered to customer.
- Shipped
- ShippedNotification at order item shipped from microsoft datacenter.
- Delivered
- DeliveredNotification at order item delivered to customer.
- Shipped
- ShippedNotification at order item shipped from microsoft datacenter.
- Delivered
- DeliveredNotification at order item delivered to customer.
- SHIPPED
- ShippedNotification at order item shipped from microsoft datacenter.
- DELIVERED
- DeliveredNotification at order item delivered to customer.
- "Shipped"
- ShippedNotification at order item shipped from microsoft datacenter.
- "Delivered"
- DeliveredNotification at order item delivered to customer.
OrderItemDetails, OrderItemDetailsArgs
- Order
Item string | Pulumi.Type Azure Native. Edge Order. Order Item Type - Order item type.
- Product
Details Pulumi.Azure Native. Edge Order. Inputs. Product Details - Unique identifier for configuration.
- Notification
Email List<string>List - Additional notification email list
- Order
Item string | Pulumi.Mode Azure Native. Edge Order. Order Mode - Defines the mode of the Order item.
- Preferences
Pulumi.
Azure Native. Edge Order. Inputs. Preferences - Customer notification Preferences
- Order
Item string | OrderType Item Type - Order item type.
- Product
Details ProductDetails - Unique identifier for configuration.
- Notification
Email []stringList - Additional notification email list
- Order
Item string | OrderMode Mode - Defines the mode of the Order item.
- Preferences Preferences
- Customer notification Preferences
- order
Item String | OrderType Item Type - Order item type.
- product
Details ProductDetails - Unique identifier for configuration.
- notification
Email List<String>List - Additional notification email list
- order
Item String | OrderMode Mode - Defines the mode of the Order item.
- preferences Preferences
- Customer notification Preferences
- order
Item string | OrderType Item Type - Order item type.
- product
Details ProductDetails - Unique identifier for configuration.
- notification
Email string[]List - Additional notification email list
- order
Item string | OrderMode Mode - Defines the mode of the Order item.
- preferences Preferences
- Customer notification Preferences
- order_
item_ str | Ordertype Item Type - Order item type.
- product_
details ProductDetails - Unique identifier for configuration.
- notification_
email_ Sequence[str]list - Additional notification email list
- order_
item_ str | Ordermode Mode - Defines the mode of the Order item.
- preferences Preferences
- Customer notification Preferences
- order
Item String | "Purchase" | "Rental"Type - Order item type.
- product
Details Property Map - Unique identifier for configuration.
- notification
Email List<String>List - Additional notification email list
- order
Item String | "Default" | "DoMode Not Fulfill" - Defines the mode of the Order item.
- preferences Property Map
- Customer notification Preferences
OrderItemDetailsResponse, OrderItemDetailsResponseArgs
- Cancellation
Reason string - Cancellation reason.
- Cancellation
Status string - Describes whether the order item is cancellable or not.
- Current
Stage Pulumi.Azure Native. Edge Order. Inputs. Stage Details Response - Current Order item Status
- Deletion
Status string - Describes whether the order item is deletable or not.
- Error
Pulumi.
Azure Native. Edge Order. Inputs. Error Detail Response - Top level error for the job.
- Forward
Shipping Pulumi.Details Azure Native. Edge Order. Inputs. Forward Shipping Details Response - Forward Package Shipping details
- Management
Rp Pulumi.Details Azure Native. Edge Order. Inputs. Resource Provider Details Response - Parent RP details - this returns only the first or default parent RP from the entire list
- Management
Rp List<Pulumi.Details List Azure Native. Edge Order. Inputs. Resource Provider Details Response> - List of parent RP details supported for configuration.
- Order
Item List<Pulumi.Stage History Azure Native. Edge Order. Inputs. Stage Details Response> - Order item status history
- Order
Item stringType - Order item type.
- Product
Details Pulumi.Azure Native. Edge Order. Inputs. Product Details Response - Unique identifier for configuration.
- Return
Reason string - Return reason.
- Return
Status string - Describes whether the order item is returnable or not.
- Reverse
Shipping Pulumi.Details Azure Native. Edge Order. Inputs. Reverse Shipping Details Response - Reverse Package Shipping details
- Notification
Email List<string>List - Additional notification email list
- Order
Item stringMode - Defines the mode of the Order item.
- Preferences
Pulumi.
Azure Native. Edge Order. Inputs. Preferences Response - Customer notification Preferences
- Cancellation
Reason string - Cancellation reason.
- Cancellation
Status string - Describes whether the order item is cancellable or not.
- Current
Stage StageDetails Response - Current Order item Status
- Deletion
Status string - Describes whether the order item is deletable or not.
- Error
Error
Detail Response - Top level error for the job.
- Forward
Shipping ForwardDetails Shipping Details Response - Forward Package Shipping details
- Management
Rp ResourceDetails Provider Details Response - Parent RP details - this returns only the first or default parent RP from the entire list
- Management
Rp []ResourceDetails List Provider Details Response - List of parent RP details supported for configuration.
- Order
Item []StageStage History Details Response - Order item status history
- Order
Item stringType - Order item type.
- Product
Details ProductDetails Response - Unique identifier for configuration.
- Return
Reason string - Return reason.
- Return
Status string - Describes whether the order item is returnable or not.
- Reverse
Shipping ReverseDetails Shipping Details Response - Reverse Package Shipping details
- Notification
Email []stringList - Additional notification email list
- Order
Item stringMode - Defines the mode of the Order item.
- Preferences
Preferences
Response - Customer notification Preferences
- cancellation
Reason String - Cancellation reason.
- cancellation
Status String - Describes whether the order item is cancellable or not.
- current
Stage StageDetails Response - Current Order item Status
- deletion
Status String - Describes whether the order item is deletable or not.
- error
Error
Detail Response - Top level error for the job.
- forward
Shipping ForwardDetails Shipping Details Response - Forward Package Shipping details
- management
Rp ResourceDetails Provider Details Response - Parent RP details - this returns only the first or default parent RP from the entire list
- management
Rp List<ResourceDetails List Provider Details Response> - List of parent RP details supported for configuration.
- order
Item List<StageStage History Details Response> - Order item status history
- order
Item StringType - Order item type.
- product
Details ProductDetails Response - Unique identifier for configuration.
- return
Reason String - Return reason.
- return
Status String - Describes whether the order item is returnable or not.
- reverse
Shipping ReverseDetails Shipping Details Response - Reverse Package Shipping details
- notification
Email List<String>List - Additional notification email list
- order
Item StringMode - Defines the mode of the Order item.
- preferences
Preferences
Response - Customer notification Preferences
- cancellation
Reason string - Cancellation reason.
- cancellation
Status string - Describes whether the order item is cancellable or not.
- current
Stage StageDetails Response - Current Order item Status
- deletion
Status string - Describes whether the order item is deletable or not.
- error
Error
Detail Response - Top level error for the job.
- forward
Shipping ForwardDetails Shipping Details Response - Forward Package Shipping details
- management
Rp ResourceDetails Provider Details Response - Parent RP details - this returns only the first or default parent RP from the entire list
- management
Rp ResourceDetails List Provider Details Response[] - List of parent RP details supported for configuration.
- order
Item StageStage History Details Response[] - Order item status history
- order
Item stringType - Order item type.
- product
Details ProductDetails Response - Unique identifier for configuration.
- return
Reason string - Return reason.
- return
Status string - Describes whether the order item is returnable or not.
- reverse
Shipping ReverseDetails Shipping Details Response - Reverse Package Shipping details
- notification
Email string[]List - Additional notification email list
- order
Item stringMode - Defines the mode of the Order item.
- preferences
Preferences
Response - Customer notification Preferences
- cancellation_
reason str - Cancellation reason.
- cancellation_
status str - Describes whether the order item is cancellable or not.
- current_
stage StageDetails Response - Current Order item Status
- deletion_
status str - Describes whether the order item is deletable or not.
- error
Error
Detail Response - Top level error for the job.
- forward_
shipping_ Forwarddetails Shipping Details Response - Forward Package Shipping details
- management_
rp_ Resourcedetails Provider Details Response - Parent RP details - this returns only the first or default parent RP from the entire list
- management_
rp_ Sequence[Resourcedetails_ list Provider Details Response] - List of parent RP details supported for configuration.
- order_
item_ Sequence[Stagestage_ history Details Response] - Order item status history
- order_
item_ strtype - Order item type.
- product_
details ProductDetails Response - Unique identifier for configuration.
- return_
reason str - Return reason.
- return_
status str - Describes whether the order item is returnable or not.
- reverse_
shipping_ Reversedetails Shipping Details Response - Reverse Package Shipping details
- notification_
email_ Sequence[str]list - Additional notification email list
- order_
item_ strmode - Defines the mode of the Order item.
- preferences
Preferences
Response - Customer notification Preferences
- cancellation
Reason String - Cancellation reason.
- cancellation
Status String - Describes whether the order item is cancellable or not.
- current
Stage Property Map - Current Order item Status
- deletion
Status String - Describes whether the order item is deletable or not.
- error Property Map
- Top level error for the job.
- forward
Shipping Property MapDetails - Forward Package Shipping details
- management
Rp Property MapDetails - Parent RP details - this returns only the first or default parent RP from the entire list
- management
Rp List<Property Map>Details List - List of parent RP details supported for configuration.
- order
Item List<Property Map>Stage History - Order item status history
- order
Item StringType - Order item type.
- product
Details Property Map - Unique identifier for configuration.
- return
Reason String - Return reason.
- return
Status String - Describes whether the order item is returnable or not.
- reverse
Shipping Property MapDetails - Reverse Package Shipping details
- notification
Email List<String>List - Additional notification email list
- order
Item StringMode - Defines the mode of the Order item.
- preferences Property Map
- Customer notification Preferences
OrderItemType, OrderItemTypeArgs
- Purchase
- PurchasePurchase OrderItem.
- Rental
- RentalRental OrderItem.
- Order
Item Type Purchase - PurchasePurchase OrderItem.
- Order
Item Type Rental - RentalRental OrderItem.
- Purchase
- PurchasePurchase OrderItem.
- Rental
- RentalRental OrderItem.
- Purchase
- PurchasePurchase OrderItem.
- Rental
- RentalRental OrderItem.
- PURCHASE
- PurchasePurchase OrderItem.
- RENTAL
- RentalRental OrderItem.
- "Purchase"
- PurchasePurchase OrderItem.
- "Rental"
- RentalRental OrderItem.
OrderMode, OrderModeArgs
- Default
- DefaultDefault Order mode.
- Do
Not Fulfill - DoNotFulfillMode in which the Order will not be fulfilled.
- Order
Mode Default - DefaultDefault Order mode.
- Order
Mode Do Not Fulfill - DoNotFulfillMode in which the Order will not be fulfilled.
- Default
- DefaultDefault Order mode.
- Do
Not Fulfill - DoNotFulfillMode in which the Order will not be fulfilled.
- Default
- DefaultDefault Order mode.
- Do
Not Fulfill - DoNotFulfillMode in which the Order will not be fulfilled.
- DEFAULT
- DefaultDefault Order mode.
- DO_NOT_FULFILL
- DoNotFulfillMode in which the Order will not be fulfilled.
- "Default"
- DefaultDefault Order mode.
- "Do
Not Fulfill" - DoNotFulfillMode in which the Order will not be fulfilled.
Preferences, PreferencesArgs
- Encryption
Preferences Pulumi.Azure Native. Edge Order. Inputs. Encryption Preferences - Preferences related to the Encryption.
- Management
Resource Pulumi.Preferences Azure Native. Edge Order. Inputs. Management Resource Preferences - Preferences related to the Management resource.
- Notification
Preferences List<Pulumi.Azure Native. Edge Order. Inputs. Notification Preference> - Notification preferences.
- Transport
Preferences Pulumi.Azure Native. Edge Order. Inputs. Transport Preferences - Preferences related to the shipment logistics of the order.
- Encryption
Preferences EncryptionPreferences - Preferences related to the Encryption.
- Management
Resource ManagementPreferences Resource Preferences - Preferences related to the Management resource.
- Notification
Preferences []NotificationPreference - Notification preferences.
- Transport
Preferences TransportPreferences - Preferences related to the shipment logistics of the order.
- encryption
Preferences EncryptionPreferences - Preferences related to the Encryption.
- management
Resource ManagementPreferences Resource Preferences - Preferences related to the Management resource.
- notification
Preferences List<NotificationPreference> - Notification preferences.
- transport
Preferences TransportPreferences - Preferences related to the shipment logistics of the order.
- encryption
Preferences EncryptionPreferences - Preferences related to the Encryption.
- management
Resource ManagementPreferences Resource Preferences - Preferences related to the Management resource.
- notification
Preferences NotificationPreference[] - Notification preferences.
- transport
Preferences TransportPreferences - Preferences related to the shipment logistics of the order.
- encryption_
preferences EncryptionPreferences - Preferences related to the Encryption.
- management_
resource_ Managementpreferences Resource Preferences - Preferences related to the Management resource.
- notification_
preferences Sequence[NotificationPreference] - Notification preferences.
- transport_
preferences TransportPreferences - Preferences related to the shipment logistics of the order.
- encryption
Preferences Property Map - Preferences related to the Encryption.
- management
Resource Property MapPreferences - Preferences related to the Management resource.
- notification
Preferences List<Property Map> - Notification preferences.
- transport
Preferences Property Map - Preferences related to the shipment logistics of the order.
PreferencesResponse, PreferencesResponseArgs
- Encryption
Preferences Pulumi.Azure Native. Edge Order. Inputs. Encryption Preferences Response - Preferences related to the Encryption.
- Management
Resource Pulumi.Preferences Azure Native. Edge Order. Inputs. Management Resource Preferences Response - Preferences related to the Management resource.
- Notification
Preferences List<Pulumi.Azure Native. Edge Order. Inputs. Notification Preference Response> - Notification preferences.
- Transport
Preferences Pulumi.Azure Native. Edge Order. Inputs. Transport Preferences Response - Preferences related to the shipment logistics of the order.
- Encryption
Preferences EncryptionPreferences Response - Preferences related to the Encryption.
- Management
Resource ManagementPreferences Resource Preferences Response - Preferences related to the Management resource.
- Notification
Preferences []NotificationPreference Response - Notification preferences.
- Transport
Preferences TransportPreferences Response - Preferences related to the shipment logistics of the order.
- encryption
Preferences EncryptionPreferences Response - Preferences related to the Encryption.
- management
Resource ManagementPreferences Resource Preferences Response - Preferences related to the Management resource.
- notification
Preferences List<NotificationPreference Response> - Notification preferences.
- transport
Preferences TransportPreferences Response - Preferences related to the shipment logistics of the order.
- encryption
Preferences EncryptionPreferences Response - Preferences related to the Encryption.
- management
Resource ManagementPreferences Resource Preferences Response - Preferences related to the Management resource.
- notification
Preferences NotificationPreference Response[] - Notification preferences.
- transport
Preferences TransportPreferences Response - Preferences related to the shipment logistics of the order.
- encryption_
preferences EncryptionPreferences Response - Preferences related to the Encryption.
- management_
resource_ Managementpreferences Resource Preferences Response - Preferences related to the Management resource.
- notification_
preferences Sequence[NotificationPreference Response] - Notification preferences.
- transport_
preferences TransportPreferences Response - Preferences related to the shipment logistics of the order.
- encryption
Preferences Property Map - Preferences related to the Encryption.
- management
Resource Property MapPreferences - Preferences related to the Management resource.
- notification
Preferences List<Property Map> - Notification preferences.
- transport
Preferences Property Map - Preferences related to the shipment logistics of the order.
ProductDetails, ProductDetailsArgs
- Hierarchy
Information Pulumi.Azure Native. Edge Order. Inputs. Hierarchy Information - Hierarchy of the product which uniquely identifies the product
- Opt
In List<Pulumi.Additional Configurations Azure Native. Edge Order. Inputs. Additional Configuration> - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- Hierarchy
Information HierarchyInformation - Hierarchy of the product which uniquely identifies the product
- Opt
In []AdditionalAdditional Configurations Configuration - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- hierarchy
Information HierarchyInformation - Hierarchy of the product which uniquely identifies the product
- opt
In List<AdditionalAdditional Configurations Configuration> - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- hierarchy
Information HierarchyInformation - Hierarchy of the product which uniquely identifies the product
- opt
In AdditionalAdditional Configurations Configuration[] - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- hierarchy_
information HierarchyInformation - Hierarchy of the product which uniquely identifies the product
- opt_
in_ Sequence[Additionaladditional_ configurations Configuration] - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- hierarchy
Information Property Map - Hierarchy of the product which uniquely identifies the product
- opt
In List<Property Map>Additional Configurations - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
ProductDetailsResponse, ProductDetailsResponseArgs
- Count int
- Quantity of the product
- Device
Details List<Pulumi.Azure Native. Edge Order. Inputs. Device Details Response> - list of device details
- Hierarchy
Information Pulumi.Azure Native. Edge Order. Inputs. Hierarchy Information Response - Hierarchy of the product which uniquely identifies the product
- Product
Double stringEncryption Status - Double encryption status of the configuration. Read-only field.
- Child
Configuration List<Pulumi.Device Details Azure Native. Edge Order. Inputs. Configuration Device Details Response> - Details of all child configurations that are part of the order item.
- Display
Info Pulumi.Azure Native. Edge Order. Inputs. Display Info Response - Display details of the product
- Identification
Type string - Identification type of the configuration.
- Opt
In List<Pulumi.Additional Configurations Azure Native. Edge Order. Inputs. Additional Configuration Response> - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- Parent
Device Pulumi.Details Azure Native. Edge Order. Inputs. Device Details Response - Device details of the parent configuration.
- Count int
- Quantity of the product
- Device
Details []DeviceDetails Response - list of device details
- Hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the product
- Product
Double stringEncryption Status - Double encryption status of the configuration. Read-only field.
- Child
Configuration []ConfigurationDevice Details Device Details Response - Details of all child configurations that are part of the order item.
- Display
Info DisplayInfo Response - Display details of the product
- Identification
Type string - Identification type of the configuration.
- Opt
In []AdditionalAdditional Configurations Configuration Response - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- Parent
Device DeviceDetails Details Response - Device details of the parent configuration.
- count Integer
- Quantity of the product
- device
Details List<DeviceDetails Response> - list of device details
- hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the product
- product
Double StringEncryption Status - Double encryption status of the configuration. Read-only field.
- child
Configuration List<ConfigurationDevice Details Device Details Response> - Details of all child configurations that are part of the order item.
- display
Info DisplayInfo Response - Display details of the product
- identification
Type String - Identification type of the configuration.
- opt
In List<AdditionalAdditional Configurations Configuration Response> - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- parent
Device DeviceDetails Details Response - Device details of the parent configuration.
- count number
- Quantity of the product
- device
Details DeviceDetails Response[] - list of device details
- hierarchy
Information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the product
- product
Double stringEncryption Status - Double encryption status of the configuration. Read-only field.
- child
Configuration ConfigurationDevice Details Device Details Response[] - Details of all child configurations that are part of the order item.
- display
Info DisplayInfo Response - Display details of the product
- identification
Type string - Identification type of the configuration.
- opt
In AdditionalAdditional Configurations Configuration Response[] - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- parent
Device DeviceDetails Details Response - Device details of the parent configuration.
- count int
- Quantity of the product
- device_
details Sequence[DeviceDetails Response] - list of device details
- hierarchy_
information HierarchyInformation Response - Hierarchy of the product which uniquely identifies the product
- product_
double_ strencryption_ status - Double encryption status of the configuration. Read-only field.
- child_
configuration_ Sequence[Configurationdevice_ details Device Details Response] - Details of all child configurations that are part of the order item.
- display_
info DisplayInfo Response - Display details of the product
- identification_
type str - Identification type of the configuration.
- opt_
in_ Sequence[Additionaladditional_ configurations Configuration Response] - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- parent_
device_ Devicedetails Details Response - Device details of the parent configuration.
- count Number
- Quantity of the product
- device
Details List<Property Map> - list of device details
- hierarchy
Information Property Map - Hierarchy of the product which uniquely identifies the product
- product
Double StringEncryption Status - Double encryption status of the configuration. Read-only field.
- child
Configuration List<Property Map>Device Details - Details of all child configurations that are part of the order item.
- display
Info Property Map - Display details of the product
- identification
Type String - Identification type of the configuration.
- opt
In List<Property Map>Additional Configurations - List of additional configurations customer wants in the order item apart from the ones included in the base configuration.
- parent
Device Property MapDetails - Device details of the parent configuration.
ResourceProviderDetailsResponse, ResourceProviderDetailsResponseArgs
- Resource
Provider stringNamespace - Resource provider namespace.
- Resource
Provider stringNamespace - Resource provider namespace.
- resource
Provider StringNamespace - Resource provider namespace.
- resource
Provider stringNamespace - Resource provider namespace.
- resource_
provider_ strnamespace - Resource provider namespace.
- resource
Provider StringNamespace - Resource provider namespace.
ReverseShippingDetailsResponse, ReverseShippingDetailsResponseArgs
- Carrier
Display stringName - Carrier Name for display purpose. Not to be used for any processing.
- Carrier
Name string - Name of the carrier.
- Sas
Key stringFor Label - SAS key to download the reverse shipment label of the package.
- Tracking
Id string - TrackingId of the package
- Tracking
Url string - TrackingUrl of the package.
- Carrier
Display stringName - Carrier Name for display purpose. Not to be used for any processing.
- Carrier
Name string - Name of the carrier.
- Sas
Key stringFor Label - SAS key to download the reverse shipment label of the package.
- Tracking
Id string - TrackingId of the package
- Tracking
Url string - TrackingUrl of the package.
- carrier
Display StringName - Carrier Name for display purpose. Not to be used for any processing.
- carrier
Name String - Name of the carrier.
- sas
Key StringFor Label - SAS key to download the reverse shipment label of the package.
- tracking
Id String - TrackingId of the package
- tracking
Url String - TrackingUrl of the package.
- carrier
Display stringName - Carrier Name for display purpose. Not to be used for any processing.
- carrier
Name string - Name of the carrier.
- sas
Key stringFor Label - SAS key to download the reverse shipment label of the package.
- tracking
Id string - TrackingId of the package
- tracking
Url string - TrackingUrl of the package.
- carrier_
display_ strname - Carrier Name for display purpose. Not to be used for any processing.
- carrier_
name str - Name of the carrier.
- sas_
key_ strfor_ label - SAS key to download the reverse shipment label of the package.
- tracking_
id str - TrackingId of the package
- tracking_
url str - TrackingUrl of the package.
- carrier
Display StringName - Carrier Name for display purpose. Not to be used for any processing.
- carrier
Name String - Name of the carrier.
- sas
Key StringFor Label - SAS key to download the reverse shipment label of the package.
- tracking
Id String - TrackingId of the package
- tracking
Url String - TrackingUrl of the package.
ShippingAddress, ShippingAddressArgs
- Country string
- Name of the Country.
- Street
Address1 string - Street Address line 1.
- Address
Type string | Pulumi.Azure Native. Edge Order. Address Type - Type of address.
- City string
- Name of the City.
- Company
Name string - Name of the company.
- Postal
Code string - Postal code.
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Zip
Extended stringCode - Extended Zip Code.
- Country string
- Name of the Country.
- Street
Address1 string - Street Address line 1.
- Address
Type string | AddressType - Type of address.
- City string
- Name of the City.
- Company
Name string - Name of the company.
- Postal
Code string - Postal code.
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Zip
Extended stringCode - Extended Zip Code.
- country String
- Name of the Country.
- street
Address1 String - Street Address line 1.
- address
Type String | AddressType - Type of address.
- city String
- Name of the City.
- company
Name String - Name of the company.
- postal
Code String - Postal code.
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- zip
Extended StringCode - Extended Zip Code.
- country string
- Name of the Country.
- street
Address1 string - Street Address line 1.
- address
Type string | AddressType - Type of address.
- city string
- Name of the City.
- company
Name string - Name of the company.
- postal
Code string - Postal code.
- state
Or stringProvince - Name of the State or Province.
- street
Address2 string - Street Address line 2.
- street
Address3 string - Street Address line 3.
- zip
Extended stringCode - Extended Zip Code.
- country str
- Name of the Country.
- street_
address1 str - Street Address line 1.
- address_
type str | AddressType - Type of address.
- city str
- Name of the City.
- company_
name str - Name of the company.
- postal_
code str - Postal code.
- state_
or_ strprovince - Name of the State or Province.
- street_
address2 str - Street Address line 2.
- street_
address3 str - Street Address line 3.
- zip_
extended_ strcode - Extended Zip Code.
- country String
- Name of the Country.
- street
Address1 String - Street Address line 1.
- address
Type String | "None" | "Residential" | "Commercial" - Type of address.
- city String
- Name of the City.
- company
Name String - Name of the company.
- postal
Code String - Postal code.
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- zip
Extended StringCode - Extended Zip Code.
ShippingAddressResponse, ShippingAddressResponseArgs
- Country string
- Name of the Country.
- Street
Address1 string - Street Address line 1.
- Address
Type string - Type of address.
- City string
- Name of the City.
- Company
Name string - Name of the company.
- Postal
Code string - Postal code.
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Zip
Extended stringCode - Extended Zip Code.
- Country string
- Name of the Country.
- Street
Address1 string - Street Address line 1.
- Address
Type string - Type of address.
- City string
- Name of the City.
- Company
Name string - Name of the company.
- Postal
Code string - Postal code.
- State
Or stringProvince - Name of the State or Province.
- Street
Address2 string - Street Address line 2.
- Street
Address3 string - Street Address line 3.
- Zip
Extended stringCode - Extended Zip Code.
- country String
- Name of the Country.
- street
Address1 String - Street Address line 1.
- address
Type String - Type of address.
- city String
- Name of the City.
- company
Name String - Name of the company.
- postal
Code String - Postal code.
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- zip
Extended StringCode - Extended Zip Code.
- country string
- Name of the Country.
- street
Address1 string - Street Address line 1.
- address
Type string - Type of address.
- city string
- Name of the City.
- company
Name string - Name of the company.
- postal
Code string - Postal code.
- state
Or stringProvince - Name of the State or Province.
- street
Address2 string - Street Address line 2.
- street
Address3 string - Street Address line 3.
- zip
Extended stringCode - Extended Zip Code.
- country str
- Name of the Country.
- street_
address1 str - Street Address line 1.
- address_
type str - Type of address.
- city str
- Name of the City.
- company_
name str - Name of the company.
- postal_
code str - Postal code.
- state_
or_ strprovince - Name of the State or Province.
- street_
address2 str - Street Address line 2.
- street_
address3 str - Street Address line 3.
- zip_
extended_ strcode - Extended Zip Code.
- country String
- Name of the Country.
- street
Address1 String - Street Address line 1.
- address
Type String - Type of address.
- city String
- Name of the City.
- company
Name String - Name of the company.
- postal
Code String - Postal code.
- state
Or StringProvince - Name of the State or Province.
- street
Address2 String - Street Address line 2.
- street
Address3 String - Street Address line 3.
- zip
Extended StringCode - Extended Zip Code.
StageDetailsResponse, StageDetailsResponseArgs
- Display
Name string - Display name of the resource stage.
- Stage
Name string - Stage name
- Stage
Status string - Stage status.
- Start
Time string - Stage start time
- Display
Name string - Display name of the resource stage.
- Stage
Name string - Stage name
- Stage
Status string - Stage status.
- Start
Time string - Stage start time
- display
Name String - Display name of the resource stage.
- stage
Name String - Stage name
- stage
Status String - Stage status.
- start
Time String - Stage start time
- display
Name string - Display name of the resource stage.
- stage
Name string - Stage name
- stage
Status string - Stage status.
- start
Time string - Stage start time
- display_
name str - Display name of the resource stage.
- stage_
name str - Stage name
- stage_
status str - Stage status.
- start_
time str - Stage start time
- display
Name String - Display name of the resource stage.
- stage
Name String - Stage name
- stage
Status String - Stage status.
- start
Time String - Stage start time
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.
TransportPreferences, TransportPreferencesArgs
- Preferred
Shipment string | Pulumi.Type Azure Native. Edge Order. Transport Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- Preferred
Shipment string | TransportType Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment String | TransportType Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment string | TransportType Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred_
shipment_ str | Transporttype Shipment Types - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment String | "CustomerType Managed" | "Microsoft Managed" - Indicates Shipment Logistics type that the customer preferred.
TransportPreferencesResponse, TransportPreferencesResponseArgs
- Preferred
Shipment stringType - Indicates Shipment Logistics type that the customer preferred.
- Preferred
Shipment stringType - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment StringType - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment stringType - Indicates Shipment Logistics type that the customer preferred.
- preferred_
shipment_ strtype - Indicates Shipment Logistics type that the customer preferred.
- preferred
Shipment StringType - Indicates Shipment Logistics type that the customer preferred.
TransportShipmentTypes, TransportShipmentTypesArgs
- Customer
Managed - CustomerManagedShipment Logistics is handled by the customer.
- Microsoft
Managed - MicrosoftManagedShipment Logistics is handled by Microsoft.
- Transport
Shipment Types Customer Managed - CustomerManagedShipment Logistics is handled by the customer.
- Transport
Shipment Types Microsoft Managed - MicrosoftManagedShipment Logistics is handled by Microsoft.
- Customer
Managed - CustomerManagedShipment Logistics is handled by the customer.
- Microsoft
Managed - MicrosoftManagedShipment Logistics is handled by Microsoft.
- Customer
Managed - CustomerManagedShipment Logistics is handled by the customer.
- Microsoft
Managed - MicrosoftManagedShipment Logistics is handled by Microsoft.
- CUSTOMER_MANAGED
- CustomerManagedShipment Logistics is handled by the customer.
- MICROSOFT_MANAGED
- MicrosoftManagedShipment Logistics is handled by Microsoft.
- "Customer
Managed" - CustomerManagedShipment Logistics is handled by the customer.
- "Microsoft
Managed" - MicrosoftManagedShipment Logistics is handled by Microsoft.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:edgeorder:OrderItem TestOrderItemName2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EdgeOrder/orderItems/{orderItemName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0