azure-native.edgeorder.Address
Explore with Pulumi AI
Address Resource. Azure REST API version: 2022-05-01-preview.
Other available API versions: 2024-02-01.
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()
{
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",
},
});
});
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.NewAddress(ctx, "address", &edgeorder.AddressArgs{
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
})
}
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()
.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());
}
}
import pulumi
import pulumi_azure_native as azure_native
address = azure_native.edgeorder.Address("address",
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",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const address = new azure_native.edgeorder.Address("address", {
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",
},
});
resources:
address:
type: azure-native:edgeorder:Address
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
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,
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 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 string
- The unique name of the resource.
- args AddressArgs
- 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 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 string
- The unique name of the resource.
- args AddressArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AddressArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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()
{
ContactDetails = new AzureNative.EdgeOrder.Inputs.ContactDetailsArgs
{
ContactName = "string",
EmailList = new[]
{
"string",
},
Phone = "string",
Mobile = "string",
PhoneExtension = "string",
},
ResourceGroupName = "string",
AddressName = "string",
Location = "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",
},
Tags =
{
{ "string", "string" },
},
});
example, err := edgeorder.NewAddress(ctx, "addressResource", &edgeorder.AddressArgs{
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"),
},
ResourceGroupName: pulumi.String("string"),
AddressName: pulumi.String("string"),
Location: 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"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var addressResource = new Address("addressResource", AddressArgs.builder()
.contactDetails(ContactDetailsArgs.builder()
.contactName("string")
.emailList("string")
.phone("string")
.mobile("string")
.phoneExtension("string")
.build())
.resourceGroupName("string")
.addressName("string")
.location("string")
.shippingAddress(ShippingAddressArgs.builder()
.country("string")
.streetAddress1("string")
.addressType("string")
.city("string")
.companyName("string")
.postalCode("string")
.stateOrProvince("string")
.streetAddress2("string")
.streetAddress3("string")
.zipExtendedCode("string")
.build())
.tags(Map.of("string", "string"))
.build());
address_resource = azure_native.edgeorder.Address("addressResource",
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",
})
const addressResource = new azure_native.edgeorder.Address("addressResource", {
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",
},
});
type: azure-native:edgeorder:Address
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
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
The Address resource accepts the following input properties:
- Contact
Details Pulumi.Azure Native. Edge Order. Inputs. Contact Details - Contact details for the address.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Address
Name 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 string
- The geo-location where the resource lives
- Shipping
Address Pulumi.Azure Native. Edge Order. Inputs. Shipping Address - Shipping details for the address.
- Dictionary<string, string>
- Resource tags.
- Contact
Details ContactDetails Args - Contact details for the address.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Address
Name 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 string
- The geo-location where the resource lives
- Shipping
Address ShippingAddress Args - Shipping details for the address.
- map[string]string
- Resource tags.
- contact
Details ContactDetails - Contact details for the address.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- address
Name 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 String
- The geo-location where the resource lives
- shipping
Address ShippingAddress - Shipping details for the address.
- Map<String,String>
- Resource tags.
- contact
Details ContactDetails - Contact details for the address.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- address
Name 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 string
- The geo-location where the resource lives
- shipping
Address ShippingAddress - Shipping details for the address.
- {[key: string]: string}
- Resource tags.
- contact_
details ContactDetails Args - Contact details for the address.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- address_
name 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 str
- The geo-location where the resource lives
- shipping_
address ShippingAddress Args - Shipping details for the address.
- Mapping[str, str]
- Resource tags.
- contact
Details Property Map - Contact details for the address.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- address
Name 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 String
- The geo-location where the resource lives
- shipping
Address Property Map - Shipping details for the address.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Address resource produces the following output properties:
- Address
Validation stringStatus - Status of address validation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- 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"
- Address
Validation stringStatus - Status of address validation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- 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"
- address
Validation StringStatus - Status of address validation.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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"
- address
Validation stringStatus - Status of address validation.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- 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"
- address_
validation_ strstatus - Status of address validation.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- 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"
- address
Validation StringStatus - Status of address validation.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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
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.
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.
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.
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.
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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0