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

azure-native.edgeorder.Address

Explore with Pulumi AI

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

Address Resource.

Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2022-05-01-preview.

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

Example Usage

CreateAddress

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

return await Deployment.RunAsync(() => 
{
    var address = new AzureNative.EdgeOrder.Address("address", new()
    {
        AddressClassification = AzureNative.EdgeOrder.AddressClassification.Shipping,
        AddressName = "TestAddressName2",
        ContactDetails = new AzureNative.EdgeOrder.Inputs.ContactDetailsArgs
        {
            ContactName = "XXXX XXXX",
            EmailList = new[]
            {
                "xxxx@xxxx.xxx",
            },
            Phone = "0000000000",
            PhoneExtension = "",
        },
        Location = "eastus",
        ResourceGroupName = "YourResourceGroupName",
        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",
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := edgeorder.NewAddress(ctx, "address", &edgeorder.AddressArgs{
			AddressClassification: pulumi.String(edgeorder.AddressClassificationShipping),
			AddressName:           pulumi.String("TestAddressName2"),
			ContactDetails: &edgeorder.ContactDetailsArgs{
				ContactName: pulumi.String("XXXX XXXX"),
				EmailList: pulumi.StringArray{
					pulumi.String("xxxx@xxxx.xxx"),
				},
				Phone:          pulumi.String("0000000000"),
				PhoneExtension: pulumi.String(""),
			},
			Location:          pulumi.String("eastus"),
			ResourceGroupName: pulumi.String("YourResourceGroupName"),
			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"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.edgeorder.Address;
import com.pulumi.azurenative.edgeorder.AddressArgs;
import com.pulumi.azurenative.edgeorder.inputs.ContactDetailsArgs;
import com.pulumi.azurenative.edgeorder.inputs.ShippingAddressArgs;
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 address = new Address("address", AddressArgs.builder()
            .addressClassification("Shipping")
            .addressName("TestAddressName2")
            .contactDetails(ContactDetailsArgs.builder()
                .contactName("XXXX XXXX")
                .emailList("xxxx@xxxx.xxx")
                .phone("0000000000")
                .phoneExtension("")
                .build())
            .location("eastus")
            .resourceGroupName("YourResourceGroupName")
            .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());

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

const address = new azure_native.edgeorder.Address("address", {
    addressClassification: azure_native.edgeorder.AddressClassification.Shipping,
    addressName: "TestAddressName2",
    contactDetails: {
        contactName: "XXXX XXXX",
        emailList: ["xxxx@xxxx.xxx"],
        phone: "0000000000",
        phoneExtension: "",
    },
    location: "eastus",
    resourceGroupName: "YourResourceGroupName",
    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",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

address = azure_native.edgeorder.Address("address",
    address_classification=azure_native.edgeorder.AddressClassification.SHIPPING,
    address_name="TestAddressName2",
    contact_details={
        "contact_name": "XXXX XXXX",
        "email_list": ["xxxx@xxxx.xxx"],
        "phone": "0000000000",
        "phone_extension": "",
    },
    location="eastus",
    resource_group_name="YourResourceGroupName",
    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",
    })
Copy
resources:
  address:
    type: azure-native:edgeorder:Address
    properties:
      addressClassification: Shipping
      addressName: TestAddressName2
      contactDetails:
        contactName: XXXX XXXX
        emailList:
          - xxxx@xxxx.xxx
        phone: '0000000000'
        phoneExtension: ""
      location: eastus
      resourceGroupName: YourResourceGroupName
      shippingAddress:
        addressType: None
        city: San Francisco
        companyName: Microsoft
        country: US
        postalCode: '94107'
        stateOrProvince: CA
        streetAddress1: 16 TOWNSEND ST
        streetAddress2: UNIT 1
Copy

Create Address Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Address(name: string, args: AddressArgs, opts?: CustomResourceOptions);
@overload
def Address(resource_name: str,
            args: AddressArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Address(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            resource_group_name: Optional[str] = None,
            address_classification: Optional[Union[str, AddressClassification]] = None,
            address_name: Optional[str] = None,
            contact_details: Optional[ContactDetailsArgs] = None,
            location: Optional[str] = None,
            shipping_address: Optional[ShippingAddressArgs] = None,
            tags: Optional[Mapping[str, str]] = None)
func NewAddress(ctx *Context, name string, args AddressArgs, opts ...ResourceOption) (*Address, error)
public Address(string name, AddressArgs args, CustomResourceOptions? opts = null)
public Address(String name, AddressArgs args)
public Address(String name, AddressArgs args, CustomResourceOptions options)
type: azure-native:edgeorder:Address
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AddressArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AddressArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AddressArgs
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 addressResource = new AzureNative.EdgeOrder.Address("addressResource", new()
{
    ResourceGroupName = "string",
    AddressClassification = "string",
    AddressName = "string",
    ContactDetails = new AzureNative.EdgeOrder.Inputs.ContactDetailsArgs
    {
        ContactName = "string",
        EmailList = new[]
        {
            "string",
        },
        Mobile = "string",
        Phone = "string",
        PhoneExtension = "string",
    },
    Location = "string",
    ShippingAddress = new AzureNative.EdgeOrder.Inputs.ShippingAddressArgs
    {
        Country = "string",
        AddressType = "string",
        City = "string",
        CompanyName = "string",
        PostalCode = "string",
        StateOrProvince = "string",
        StreetAddress1 = "string",
        StreetAddress2 = "string",
        StreetAddress3 = "string",
        ZipExtendedCode = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := edgeorder.NewAddress(ctx, "addressResource", &edgeorder.AddressArgs{
	ResourceGroupName:     pulumi.String("string"),
	AddressClassification: pulumi.String("string"),
	AddressName:           pulumi.String("string"),
	ContactDetails: &edgeorder.ContactDetailsArgs{
		ContactName: pulumi.String("string"),
		EmailList: pulumi.StringArray{
			pulumi.String("string"),
		},
		Mobile:         pulumi.String("string"),
		Phone:          pulumi.String("string"),
		PhoneExtension: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	ShippingAddress: &edgeorder.ShippingAddressArgs{
		Country:         pulumi.String("string"),
		AddressType:     pulumi.String("string"),
		City:            pulumi.String("string"),
		CompanyName:     pulumi.String("string"),
		PostalCode:      pulumi.String("string"),
		StateOrProvince: pulumi.String("string"),
		StreetAddress1:  pulumi.String("string"),
		StreetAddress2:  pulumi.String("string"),
		StreetAddress3:  pulumi.String("string"),
		ZipExtendedCode: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var addressResource = new Address("addressResource", AddressArgs.builder()
    .resourceGroupName("string")
    .addressClassification("string")
    .addressName("string")
    .contactDetails(ContactDetailsArgs.builder()
        .contactName("string")
        .emailList("string")
        .mobile("string")
        .phone("string")
        .phoneExtension("string")
        .build())
    .location("string")
    .shippingAddress(ShippingAddressArgs.builder()
        .country("string")
        .addressType("string")
        .city("string")
        .companyName("string")
        .postalCode("string")
        .stateOrProvince("string")
        .streetAddress1("string")
        .streetAddress2("string")
        .streetAddress3("string")
        .zipExtendedCode("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
address_resource = azure_native.edgeorder.Address("addressResource",
    resource_group_name="string",
    address_classification="string",
    address_name="string",
    contact_details={
        "contact_name": "string",
        "email_list": ["string"],
        "mobile": "string",
        "phone": "string",
        "phone_extension": "string",
    },
    location="string",
    shipping_address={
        "country": "string",
        "address_type": "string",
        "city": "string",
        "company_name": "string",
        "postal_code": "string",
        "state_or_province": "string",
        "street_address1": "string",
        "street_address2": "string",
        "street_address3": "string",
        "zip_extended_code": "string",
    },
    tags={
        "string": "string",
    })
Copy
const addressResource = new azure_native.edgeorder.Address("addressResource", {
    resourceGroupName: "string",
    addressClassification: "string",
    addressName: "string",
    contactDetails: {
        contactName: "string",
        emailList: ["string"],
        mobile: "string",
        phone: "string",
        phoneExtension: "string",
    },
    location: "string",
    shippingAddress: {
        country: "string",
        addressType: "string",
        city: "string",
        companyName: "string",
        postalCode: "string",
        stateOrProvince: "string",
        streetAddress1: "string",
        streetAddress2: "string",
        streetAddress3: "string",
        zipExtendedCode: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:edgeorder:Address
properties:
    addressClassification: string
    addressName: string
    contactDetails:
        contactName: string
        emailList:
            - string
        mobile: string
        phone: string
        phoneExtension: string
    location: string
    resourceGroupName: string
    shippingAddress:
        addressType: string
        city: string
        companyName: string
        country: string
        postalCode: string
        stateOrProvince: string
        streetAddress1: string
        streetAddress2: string
        streetAddress3: string
        zipExtendedCode: string
    tags:
        string: string
Copy

Address Resource Properties

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

Inputs

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

The Address resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AddressClassification string | Pulumi.AzureNative.EdgeOrder.AddressClassification
Type of address based on its usage context.
AddressName Changes to this property will trigger replacement. string
The name of the address Resource within the specified resource group. address names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.
ContactDetails Pulumi.AzureNative.EdgeOrder.Inputs.ContactDetails
Contact details for the address.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
ShippingAddress Pulumi.AzureNative.EdgeOrder.Inputs.ShippingAddress
Shipping details for the address.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AddressClassification string | AddressClassification
Type of address based on its usage context.
AddressName Changes to this property will trigger replacement. string
The name of the address Resource within the specified resource group. address names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.
ContactDetails ContactDetailsArgs
Contact details for the address.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
ShippingAddress ShippingAddressArgs
Shipping details for the address.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
addressClassification String | AddressClassification
Type of address based on its usage context.
addressName Changes to this property will trigger replacement. String
The name of the address Resource within the specified resource group. address names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.
contactDetails ContactDetails
Contact details for the address.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
shippingAddress ShippingAddress
Shipping details for the address.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
addressClassification string | AddressClassification
Type of address based on its usage context.
addressName Changes to this property will trigger replacement. string
The name of the address Resource within the specified resource group. address names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.
contactDetails ContactDetails
Contact details for the address.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
shippingAddress ShippingAddress
Shipping details for the address.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
address_classification str | AddressClassification
Type of address based on its usage context.
address_name Changes to this property will trigger replacement. str
The name of the address Resource within the specified resource group. address names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.
contact_details ContactDetailsArgs
Contact details for the address.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
shipping_address ShippingAddressArgs
Shipping details for the address.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
addressClassification String | "Shipping" | "Site"
Type of address based on its usage context.
addressName Changes to this property will trigger replacement. String
The name of the address Resource within the specified resource group. address names must be between 3 and 24 characters in length and use any alphanumeric and underscore only.
contactDetails Property Map
Contact details for the address.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
shippingAddress Property Map
Shipping details for the address.
tags Map<String>
Resource tags.

Outputs

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

AddressValidationStatus string
Status of address validation.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Provisioning state
SystemData Pulumi.AzureNative.EdgeOrder.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AddressValidationStatus string
Status of address validation.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Provisioning state
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
addressValidationStatus String
Status of address validation.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Provisioning state
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
addressValidationStatus string
Status of address validation.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
Provisioning state
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
address_validation_status str
Status of address validation.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
Provisioning state
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
addressValidationStatus String
Status of address validation.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Provisioning state
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AddressClassification
, AddressClassificationArgs

Shipping
ShippingShipping address for the order.
Site
SiteSite Address.
AddressClassificationShipping
ShippingShipping address for the order.
AddressClassificationSite
SiteSite Address.
Shipping
ShippingShipping address for the order.
Site
SiteSite Address.
Shipping
ShippingShipping address for the order.
Site
SiteSite Address.
SHIPPING
ShippingShipping address for the order.
SITE
SiteSite Address.
"Shipping"
ShippingShipping address for the order.
"Site"
SiteSite Address.

AddressType
, AddressTypeArgs

None
NoneAddress type not known.
Residential
ResidentialResidential Address.
Commercial
CommercialCommercial Address.
AddressTypeNone
NoneAddress type not known.
AddressTypeResidential
ResidentialResidential Address.
AddressTypeCommercial
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.

ContactDetails
, ContactDetailsArgs

ContactName string
Contact name of the person.
EmailList List<string>
List of Email-ids to be notified about job progress.
Mobile string
Mobile number of the contact person.
Phone string
Phone number of the contact person.
PhoneExtension string
Phone extension number of the contact person.
ContactName string
Contact name of the person.
EmailList []string
List of Email-ids to be notified about job progress.
Mobile string
Mobile number of the contact person.
Phone string
Phone number of the contact person.
PhoneExtension string
Phone extension number of the contact person.
contactName String
Contact name of the person.
emailList List<String>
List of Email-ids to be notified about job progress.
mobile String
Mobile number of the contact person.
phone String
Phone number of the contact person.
phoneExtension String
Phone extension number of the contact person.
contactName string
Contact name of the person.
emailList string[]
List of Email-ids to be notified about job progress.
mobile string
Mobile number of the contact person.
phone string
Phone number of the contact person.
phoneExtension 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.
mobile str
Mobile number of the contact person.
phone str
Phone number of the contact person.
phone_extension str
Phone extension number of the contact person.
contactName String
Contact name of the person.
emailList List<String>
List of Email-ids to be notified about job progress.
mobile String
Mobile number of the contact person.
phone String
Phone number of the contact person.
phoneExtension String
Phone extension number of the contact person.

ContactDetailsResponse
, ContactDetailsResponseArgs

ContactName string
Contact name of the person.
EmailList List<string>
List of Email-ids to be notified about job progress.
Mobile string
Mobile number of the contact person.
Phone string
Phone number of the contact person.
PhoneExtension string
Phone extension number of the contact person.
ContactName string
Contact name of the person.
EmailList []string
List of Email-ids to be notified about job progress.
Mobile string
Mobile number of the contact person.
Phone string
Phone number of the contact person.
PhoneExtension string
Phone extension number of the contact person.
contactName String
Contact name of the person.
emailList List<String>
List of Email-ids to be notified about job progress.
mobile String
Mobile number of the contact person.
phone String
Phone number of the contact person.
phoneExtension String
Phone extension number of the contact person.
contactName string
Contact name of the person.
emailList string[]
List of Email-ids to be notified about job progress.
mobile string
Mobile number of the contact person.
phone string
Phone number of the contact person.
phoneExtension 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.
mobile str
Mobile number of the contact person.
phone str
Phone number of the contact person.
phone_extension str
Phone extension number of the contact person.
contactName String
Contact name of the person.
emailList List<String>
List of Email-ids to be notified about job progress.
mobile String
Mobile number of the contact person.
phone String
Phone number of the contact person.
phoneExtension String
Phone extension number of the contact person.

ShippingAddress
, ShippingAddressArgs

Country This property is required. string
Name of the Country.
AddressType string | Pulumi.AzureNative.EdgeOrder.AddressType
Type of address.
City string
Name of the City.
CompanyName string
Name of the company.
PostalCode string
Postal code.
StateOrProvince string
Name of the State or Province.
StreetAddress1 string
Street Address line 1.
StreetAddress2 string
Street Address line 2.
StreetAddress3 string
Street Address line 3.
ZipExtendedCode string
Extended Zip Code.
Country This property is required. string
Name of the Country.
AddressType string | AddressType
Type of address.
City string
Name of the City.
CompanyName string
Name of the company.
PostalCode string
Postal code.
StateOrProvince string
Name of the State or Province.
StreetAddress1 string
Street Address line 1.
StreetAddress2 string
Street Address line 2.
StreetAddress3 string
Street Address line 3.
ZipExtendedCode string
Extended Zip Code.
country This property is required. String
Name of the Country.
addressType String | AddressType
Type of address.
city String
Name of the City.
companyName String
Name of the company.
postalCode String
Postal code.
stateOrProvince String
Name of the State or Province.
streetAddress1 String
Street Address line 1.
streetAddress2 String
Street Address line 2.
streetAddress3 String
Street Address line 3.
zipExtendedCode String
Extended Zip Code.
country This property is required. string
Name of the Country.
addressType string | AddressType
Type of address.
city string
Name of the City.
companyName string
Name of the company.
postalCode string
Postal code.
stateOrProvince string
Name of the State or Province.
streetAddress1 string
Street Address line 1.
streetAddress2 string
Street Address line 2.
streetAddress3 string
Street Address line 3.
zipExtendedCode string
Extended Zip Code.
country This property is required. str
Name of the Country.
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_province str
Name of the State or Province.
street_address1 str
Street Address line 1.
street_address2 str
Street Address line 2.
street_address3 str
Street Address line 3.
zip_extended_code str
Extended Zip Code.
country This property is required. String
Name of the Country.
addressType String | "None" | "Residential" | "Commercial"
Type of address.
city String
Name of the City.
companyName String
Name of the company.
postalCode String
Postal code.
stateOrProvince String
Name of the State or Province.
streetAddress1 String
Street Address line 1.
streetAddress2 String
Street Address line 2.
streetAddress3 String
Street Address line 3.
zipExtendedCode String
Extended Zip Code.

ShippingAddressResponse
, ShippingAddressResponseArgs

Country This property is required. string
Name of the Country.
AddressType string
Type of address.
City string
Name of the City.
CompanyName string
Name of the company.
PostalCode string
Postal code.
StateOrProvince string
Name of the State or Province.
StreetAddress1 string
Street Address line 1.
StreetAddress2 string
Street Address line 2.
StreetAddress3 string
Street Address line 3.
ZipExtendedCode string
Extended Zip Code.
Country This property is required. string
Name of the Country.
AddressType string
Type of address.
City string
Name of the City.
CompanyName string
Name of the company.
PostalCode string
Postal code.
StateOrProvince string
Name of the State or Province.
StreetAddress1 string
Street Address line 1.
StreetAddress2 string
Street Address line 2.
StreetAddress3 string
Street Address line 3.
ZipExtendedCode string
Extended Zip Code.
country This property is required. String
Name of the Country.
addressType String
Type of address.
city String
Name of the City.
companyName String
Name of the company.
postalCode String
Postal code.
stateOrProvince String
Name of the State or Province.
streetAddress1 String
Street Address line 1.
streetAddress2 String
Street Address line 2.
streetAddress3 String
Street Address line 3.
zipExtendedCode String
Extended Zip Code.
country This property is required. string
Name of the Country.
addressType string
Type of address.
city string
Name of the City.
companyName string
Name of the company.
postalCode string
Postal code.
stateOrProvince string
Name of the State or Province.
streetAddress1 string
Street Address line 1.
streetAddress2 string
Street Address line 2.
streetAddress3 string
Street Address line 3.
zipExtendedCode string
Extended Zip Code.
country This property is required. str
Name of the Country.
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_province str
Name of the State or Province.
street_address1 str
Street Address line 1.
street_address2 str
Street Address line 2.
street_address3 str
Street Address line 3.
zip_extended_code str
Extended Zip Code.
country This property is required. String
Name of the Country.
addressType String
Type of address.
city String
Name of the City.
companyName String
Name of the company.
postalCode String
Postal code.
stateOrProvince String
Name of the State or Province.
streetAddress1 String
Street Address line 1.
streetAddress2 String
Street Address line 2.
streetAddress3 String
Street Address line 3.
zipExtendedCode String
Extended Zip Code.

SystemDataResponse
, SystemDataResponseArgs

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

Import

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

$ pulumi import azure-native:edgeorder:Address TestAddressName2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EdgeOrder/addresses/{addressName} 
Copy

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

Package Details

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