1. Packages
  2. Azure Native v2
  3. API Docs
  4. edgeorder
  5. AddressByName
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.edgeorder.AddressByName

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Address Resource. Azure REST API version: 2021-12-01. Prior API version in Azure Native 1.x: 2021-12-01.

Example Usage

CreateAddress

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

return await Deployment.RunAsync(() => 
{
    var addressByName = new AzureNative.EdgeOrder.AddressByName("addressByName", new()
    {
        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/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := edgeorder.NewAddressByName(ctx, "addressByName", &edgeorder.AddressByNameArgs{
			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.AddressByName;
import com.pulumi.azurenative.edgeorder.AddressByNameArgs;
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 addressByName = new AddressByName("addressByName", AddressByNameArgs.builder()
            .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 addressByName = new azure_native.edgeorder.AddressByName("addressByName", {
    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_by_name = azure_native.edgeorder.AddressByName("addressByName",
    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:
  addressByName:
    type: azure-native:edgeorder:AddressByName
    properties:
      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 AddressByName Resource

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

Constructor syntax

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

@overload
def AddressByName(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  contact_details: Optional[ContactDetailsArgs] = None,
                  resource_group_name: Optional[str] = None,
                  address_name: Optional[str] = None,
                  location: Optional[str] = None,
                  shipping_address: Optional[ShippingAddressArgs] = None,
                  tags: Optional[Mapping[str, str]] = None)
func NewAddressByName(ctx *Context, name string, args AddressByNameArgs, opts ...ResourceOption) (*AddressByName, error)
public AddressByName(string name, AddressByNameArgs args, CustomResourceOptions? opts = null)
public AddressByName(String name, AddressByNameArgs args)
public AddressByName(String name, AddressByNameArgs args, CustomResourceOptions options)
type: azure-native:edgeorder:AddressByName
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. AddressByNameArgs
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. AddressByNameArgs
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. AddressByNameArgs
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. AddressByNameArgs
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. AddressByNameArgs
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 addressByNameResource = new AzureNative.Edgeorder.AddressByName("addressByNameResource", new()
{
    ContactDetails = 
    {
        { "contactName", "string" },
        { "emailList", new[]
        {
            "string",
        } },
        { "phone", "string" },
        { "mobile", "string" },
        { "phoneExtension", "string" },
    },
    ResourceGroupName = "string",
    AddressName = "string",
    Location = "string",
    ShippingAddress = 
    {
        { "country", "string" },
        { "streetAddress1", "string" },
        { "addressType", "string" },
        { "city", "string" },
        { "companyName", "string" },
        { "postalCode", "string" },
        { "stateOrProvince", "string" },
        { "streetAddress2", "string" },
        { "streetAddress3", "string" },
        { "zipExtendedCode", "string" },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := edgeorder.NewAddressByName(ctx, "addressByNameResource", &edgeorder.AddressByNameArgs{
	ContactDetails: map[string]interface{}{
		"contactName": "string",
		"emailList": []string{
			"string",
		},
		"phone":          "string",
		"mobile":         "string",
		"phoneExtension": "string",
	},
	ResourceGroupName: "string",
	AddressName:       "string",
	Location:          "string",
	ShippingAddress: map[string]interface{}{
		"country":         "string",
		"streetAddress1":  "string",
		"addressType":     "string",
		"city":            "string",
		"companyName":     "string",
		"postalCode":      "string",
		"stateOrProvince": "string",
		"streetAddress2":  "string",
		"streetAddress3":  "string",
		"zipExtendedCode": "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var addressByNameResource = new AddressByName("addressByNameResource", AddressByNameArgs.builder()
    .contactDetails(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .addressName("string")
    .location("string")
    .shippingAddress(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
address_by_name_resource = azure_native.edgeorder.AddressByName("addressByNameResource",
    contact_details={
        contactName: string,
        emailList: [string],
        phone: string,
        mobile: string,
        phoneExtension: string,
    },
    resource_group_name=string,
    address_name=string,
    location=string,
    shipping_address={
        country: string,
        streetAddress1: string,
        addressType: string,
        city: string,
        companyName: string,
        postalCode: string,
        stateOrProvince: string,
        streetAddress2: string,
        streetAddress3: string,
        zipExtendedCode: string,
    },
    tags={
        string: string,
    })
Copy
const addressByNameResource = new azure_native.edgeorder.AddressByName("addressByNameResource", {
    contactDetails: {
        contactName: "string",
        emailList: ["string"],
        phone: "string",
        mobile: "string",
        phoneExtension: "string",
    },
    resourceGroupName: "string",
    addressName: "string",
    location: "string",
    shippingAddress: {
        country: "string",
        streetAddress1: "string",
        addressType: "string",
        city: "string",
        companyName: "string",
        postalCode: "string",
        stateOrProvince: "string",
        streetAddress2: "string",
        streetAddress3: "string",
        zipExtendedCode: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:edgeorder:AddressByName
properties:
    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

AddressByName 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 AddressByName resource accepts the following input properties:

ContactDetails This property is required. Pulumi.AzureNative.EdgeOrder.Inputs.ContactDetails
Contact details for the address
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
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
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.
ContactDetails This property is required. ContactDetailsArgs
Contact details for the address
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
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
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.
contactDetails This property is required. ContactDetails
Contact details for the address
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
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
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.
contactDetails This property is required. ContactDetails
Contact details for the address
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
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
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.
contact_details This property is required. ContactDetailsArgs
Contact details for the address
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_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
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.
contactDetails This property is required. Property Map
Contact details for the address
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
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
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 AddressByName resource produces the following output properties:

AddressValidationStatus string
Status of address validation
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.EdgeOrder.Outputs.SystemDataResponse
Represents resource creation and update time
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AddressValidationStatus string
Status of address validation
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Represents resource creation and update time
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
addressValidationStatus String
Status of address validation
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Represents resource creation and update time
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
addressValidationStatus string
Status of address validation
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Represents resource creation and update time
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
address_validation_status str
Status of address validation
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Represents resource creation and update time
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
addressValidationStatus String
Status of address validation
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData 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

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

ContactDetailsResponse
, ContactDetailsResponseArgs

ContactName This property is required. string
Contact name of the person.
EmailList This property is required. List<string>
List of Email-ids to be notified about job progress.
Phone This property is required. string
Phone number of the contact person.
Mobile string
Mobile number of the contact person.
PhoneExtension string
Phone extension number of the contact person.
ContactName This property is required. string
Contact name of the person.
EmailList This property is required. []string
List of Email-ids to be notified about job progress.
Phone This property is required. string
Phone number of the contact person.
Mobile string
Mobile number of the contact person.
PhoneExtension string
Phone extension number of the contact person.
contactName This property is required. String
Contact name of the person.
emailList This property is required. List<String>
List of Email-ids to be notified about job progress.
phone This property is required. String
Phone number of the contact person.
mobile String
Mobile number of the contact person.
phoneExtension String
Phone extension number of the contact person.
contactName This property is required. string
Contact name of the person.
emailList This property is required. string[]
List of Email-ids to be notified about job progress.
phone This property is required. string
Phone number of the contact person.
mobile string
Mobile number of the contact person.
phoneExtension string
Phone extension number of the contact person.
contact_name This property is required. str
Contact name of the person.
email_list This property is required. Sequence[str]
List of Email-ids to be notified about job progress.
phone This property is required. 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.
contactName This property is required. String
Contact name of the person.
emailList This property is required. List<String>
List of Email-ids to be notified about job progress.
phone This property is required. String
Phone number of the contact person.
mobile String
Mobile 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.
StreetAddress1 This property is required. string
Street Address line 1.
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.
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.
StreetAddress1 This property is required. string
Street Address line 1.
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.
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.
streetAddress1 This property is required. String
Street Address line 1.
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.
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.
streetAddress1 This property is required. string
Street Address line 1.
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.
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.
street_address1 This property is required. 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_province str
Name of the State or Province.
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.
streetAddress1 This property is required. String
Street Address line 1.
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.
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.
StreetAddress1 This property is required. string
Street Address line 1.
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.
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.
StreetAddress1 This property is required. string
Street Address line 1.
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.
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.
streetAddress1 This property is required. String
Street Address line 1.
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.
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.
streetAddress1 This property is required. string
Street Address line 1.
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.
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.
street_address1 This property is required. 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_province str
Name of the State or Province.
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.
streetAddress1 This property is required. String
Street Address line 1.
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.
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:AddressByName 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-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi