azure-native.communication.Domain
Explore with Pulumi AI
A class representing a Domains resource. API Version: 2021-10-01-preview.
Example Usage
Create or update Domains resource
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var domain = new AzureNative.Communication.Domain("domain", new()
    {
        DomainManagement = "CustomerManaged",
        DomainName = "mydomain.com",
        EmailServiceName = "MyEmailServiceResource",
        Location = "Global",
        ResourceGroupName = "MyResourceGroup",
    });
});
package main
import (
	communication "github.com/pulumi/pulumi-azure-native-sdk/communication"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := communication.NewDomain(ctx, "domain", &communication.DomainArgs{
			DomainManagement:  pulumi.String("CustomerManaged"),
			DomainName:        pulumi.String("mydomain.com"),
			EmailServiceName:  pulumi.String("MyEmailServiceResource"),
			Location:          pulumi.String("Global"),
			ResourceGroupName: pulumi.String("MyResourceGroup"),
		})
		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.communication.Domain;
import com.pulumi.azurenative.communication.DomainArgs;
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 domain = new Domain("domain", DomainArgs.builder()        
            .domainManagement("CustomerManaged")
            .domainName("mydomain.com")
            .emailServiceName("MyEmailServiceResource")
            .location("Global")
            .resourceGroupName("MyResourceGroup")
            .build());
    }
}
import pulumi
import pulumi_azure_native as azure_native
domain = azure_native.communication.Domain("domain",
    domain_management="CustomerManaged",
    domain_name="mydomain.com",
    email_service_name="MyEmailServiceResource",
    location="Global",
    resource_group_name="MyResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const domain = new azure_native.communication.Domain("domain", {
    domainManagement: "CustomerManaged",
    domainName: "mydomain.com",
    emailServiceName: "MyEmailServiceResource",
    location: "Global",
    resourceGroupName: "MyResourceGroup",
});
resources:
  domain:
    type: azure-native:communication:Domain
    properties:
      domainManagement: CustomerManaged
      domainName: mydomain.com
      emailServiceName: MyEmailServiceResource
      location: Global
      resourceGroupName: MyResourceGroup
Create Domain Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Domain(name: string, args: DomainArgs, opts?: CustomResourceOptions);@overload
def Domain(resource_name: str,
           args: DomainArgs,
           opts: Optional[ResourceOptions] = None)
@overload
def Domain(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           domain_management: Optional[Union[str, DomainManagement]] = None,
           email_service_name: Optional[str] = None,
           resource_group_name: Optional[str] = None,
           domain_name: Optional[str] = None,
           location: Optional[str] = None,
           tags: Optional[Mapping[str, str]] = None,
           user_engagement_tracking: Optional[Union[str, UserEngagementTracking]] = None,
           valid_sender_usernames: Optional[Mapping[str, str]] = None)func NewDomain(ctx *Context, name string, args DomainArgs, opts ...ResourceOption) (*Domain, error)public Domain(string name, DomainArgs args, CustomResourceOptions? opts = null)
public Domain(String name, DomainArgs args)
public Domain(String name, DomainArgs args, CustomResourceOptions options)
type: azure-native:communication:Domain
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 DomainArgs
- 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 DomainArgs
- 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 DomainArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainArgs
- 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 domainResource = new AzureNative.Communication.Domain("domainResource", new()
{
    DomainManagement = "string",
    EmailServiceName = "string",
    ResourceGroupName = "string",
    DomainName = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
    UserEngagementTracking = "string",
    ValidSenderUsernames = 
    {
        { "string", "string" },
    },
});
example, err := communication.NewDomain(ctx, "domainResource", &communication.DomainArgs{
	DomainManagement:  "string",
	EmailServiceName:  "string",
	ResourceGroupName: "string",
	DomainName:        "string",
	Location:          "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	UserEngagementTracking: "string",
	ValidSenderUsernames: map[string]interface{}{
		"string": "string",
	},
})
var domainResource = new Domain("domainResource", DomainArgs.builder()
    .domainManagement("string")
    .emailServiceName("string")
    .resourceGroupName("string")
    .domainName("string")
    .location("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .userEngagementTracking("string")
    .validSenderUsernames(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
domain_resource = azure_native.communication.Domain("domainResource",
    domain_management=string,
    email_service_name=string,
    resource_group_name=string,
    domain_name=string,
    location=string,
    tags={
        string: string,
    },
    user_engagement_tracking=string,
    valid_sender_usernames={
        string: string,
    })
const domainResource = new azure_native.communication.Domain("domainResource", {
    domainManagement: "string",
    emailServiceName: "string",
    resourceGroupName: "string",
    domainName: "string",
    location: "string",
    tags: {
        string: "string",
    },
    userEngagementTracking: "string",
    validSenderUsernames: {
        string: "string",
    },
});
type: azure-native:communication:Domain
properties:
    domainManagement: string
    domainName: string
    emailServiceName: string
    location: string
    resourceGroupName: string
    tags:
        string: string
    userEngagementTracking: string
    validSenderUsernames:
        string: string
Domain 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 Domain resource accepts the following input properties:
- DomainManagement string | Pulumi.Azure Native. Communication. Domain Management 
- Describes how a Domains resource is being managed.
- EmailService stringName 
- The name of the EmailService resource.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- DomainName string
- The name of the Domains resource.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- UserEngagement string | Pulumi.Tracking Azure Native. Communication. User Engagement Tracking 
- Describes whether user engagement tracking is enabled or disabled.
- ValidSender Dictionary<string, string>Usernames 
- Collection of valid sender usernames. This is a key-value pair where key=username and value=display name.
- DomainManagement string | DomainManagement 
- Describes how a Domains resource is being managed.
- EmailService stringName 
- The name of the EmailService resource.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- DomainName string
- The name of the Domains resource.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- UserEngagement string | UserTracking Engagement Tracking 
- Describes whether user engagement tracking is enabled or disabled.
- ValidSender map[string]stringUsernames 
- Collection of valid sender usernames. This is a key-value pair where key=username and value=display name.
- domainManagement String | DomainManagement 
- Describes how a Domains resource is being managed.
- emailService StringName 
- The name of the EmailService resource.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- domainName String
- The name of the Domains resource.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- userEngagement String | UserTracking Engagement Tracking 
- Describes whether user engagement tracking is enabled or disabled.
- validSender Map<String,String>Usernames 
- Collection of valid sender usernames. This is a key-value pair where key=username and value=display name.
- domainManagement string | DomainManagement 
- Describes how a Domains resource is being managed.
- emailService stringName 
- The name of the EmailService resource.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- domainName string
- The name of the Domains resource.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- userEngagement string | UserTracking Engagement Tracking 
- Describes whether user engagement tracking is enabled or disabled.
- validSender {[key: string]: string}Usernames 
- Collection of valid sender usernames. This is a key-value pair where key=username and value=display name.
- domain_management str | DomainManagement 
- Describes how a Domains resource is being managed.
- email_service_ strname 
- The name of the EmailService resource.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- domain_name str
- The name of the Domains resource.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- user_engagement_ str | Usertracking Engagement Tracking 
- Describes whether user engagement tracking is enabled or disabled.
- valid_sender_ Mapping[str, str]usernames 
- Collection of valid sender usernames. This is a key-value pair where key=username and value=display name.
- domainManagement String | "AzureManaged" | "Customer Managed" | "Customer Managed In Exchange Online" 
- Describes how a Domains resource is being managed.
- emailService StringName 
- The name of the EmailService resource.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- domainName String
- The name of the Domains resource.
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
- userEngagement String | "Disabled" | "Enabled"Tracking 
- Describes whether user engagement tracking is enabled or disabled.
- validSender Map<String>Usernames 
- Collection of valid sender usernames. This is a key-value pair where key=username and value=display name.
Outputs
All input properties are implicitly available as output properties. Additionally, the Domain resource produces the following output properties:
- DataLocation string
- The location where the Domains resource data is stored at rest.
- FromSender stringDomain 
- P2 sender domain that is displayed to the email recipients [RFC 5322].
- Id string
- The provider-assigned unique ID for this managed resource.
- MailFrom stringSender Domain 
- P1 sender domain that is present on the email envelope [RFC 5321].
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the resource.
- SystemData Pulumi.Azure Native. Communication. Outputs. System Data Response 
- 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"
- VerificationRecords Pulumi.Azure Native. Communication. Outputs. Domain Properties Response Verification Records 
- List of DnsRecord
- VerificationStates Pulumi.Azure Native. Communication. Outputs. Domain Properties Response Verification States 
- List of VerificationStatusRecord
- DataLocation string
- The location where the Domains resource data is stored at rest.
- FromSender stringDomain 
- P2 sender domain that is displayed to the email recipients [RFC 5322].
- Id string
- The provider-assigned unique ID for this managed resource.
- MailFrom stringSender Domain 
- P1 sender domain that is present on the email envelope [RFC 5321].
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the resource.
- SystemData SystemData Response 
- 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"
- VerificationRecords DomainProperties Response Verification Records 
- List of DnsRecord
- VerificationStates DomainProperties Response Verification States 
- List of VerificationStatusRecord
- dataLocation String
- The location where the Domains resource data is stored at rest.
- fromSender StringDomain 
- P2 sender domain that is displayed to the email recipients [RFC 5322].
- id String
- The provider-assigned unique ID for this managed resource.
- mailFrom StringSender Domain 
- P1 sender domain that is present on the email envelope [RFC 5321].
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the resource.
- systemData SystemData Response 
- 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"
- verificationRecords DomainProperties Response Verification Records 
- List of DnsRecord
- verificationStates DomainProperties Response Verification States 
- List of VerificationStatusRecord
- dataLocation string
- The location where the Domains resource data is stored at rest.
- fromSender stringDomain 
- P2 sender domain that is displayed to the email recipients [RFC 5322].
- id string
- The provider-assigned unique ID for this managed resource.
- mailFrom stringSender Domain 
- P1 sender domain that is present on the email envelope [RFC 5321].
- name string
- The name of the resource
- provisioningState string
- Provisioning state of the resource.
- systemData SystemData Response 
- 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"
- verificationRecords DomainProperties Response Verification Records 
- List of DnsRecord
- verificationStates DomainProperties Response Verification States 
- List of VerificationStatusRecord
- data_location str
- The location where the Domains resource data is stored at rest.
- from_sender_ strdomain 
- P2 sender domain that is displayed to the email recipients [RFC 5322].
- id str
- The provider-assigned unique ID for this managed resource.
- mail_from_ strsender_ domain 
- P1 sender domain that is present on the email envelope [RFC 5321].
- name str
- The name of the resource
- provisioning_state str
- Provisioning state of the resource.
- system_data SystemData Response 
- 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"
- verification_records DomainProperties Response Verification Records 
- List of DnsRecord
- verification_states DomainProperties Response Verification States 
- List of VerificationStatusRecord
- dataLocation String
- The location where the Domains resource data is stored at rest.
- fromSender StringDomain 
- P2 sender domain that is displayed to the email recipients [RFC 5322].
- id String
- The provider-assigned unique ID for this managed resource.
- mailFrom StringSender Domain 
- P1 sender domain that is present on the email envelope [RFC 5321].
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the resource.
- 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"
- verificationRecords Property Map
- List of DnsRecord
- verificationStates Property Map
- List of VerificationStatusRecord
Supporting Types
DnsRecordResponse, DnsRecordResponseArgs      
DomainManagement, DomainManagementArgs    
- AzureManaged 
- AzureManaged
- CustomerManaged 
- CustomerManaged
- CustomerManaged In Exchange Online 
- CustomerManagedInExchangeOnline
- DomainManagement Azure Managed 
- AzureManaged
- DomainManagement Customer Managed 
- CustomerManaged
- DomainManagement Customer Managed In Exchange Online 
- CustomerManagedInExchangeOnline
- AzureManaged 
- AzureManaged
- CustomerManaged 
- CustomerManaged
- CustomerManaged In Exchange Online 
- CustomerManagedInExchangeOnline
- AzureManaged 
- AzureManaged
- CustomerManaged 
- CustomerManaged
- CustomerManaged In Exchange Online 
- CustomerManagedInExchangeOnline
- AZURE_MANAGED
- AzureManaged
- CUSTOMER_MANAGED
- CustomerManaged
- CUSTOMER_MANAGED_IN_EXCHANGE_ONLINE
- CustomerManagedInExchangeOnline
- "AzureManaged" 
- AzureManaged
- "CustomerManaged" 
- CustomerManaged
- "CustomerManaged In Exchange Online" 
- CustomerManagedInExchangeOnline
DomainPropertiesResponseVerificationRecords, DomainPropertiesResponseVerificationRecordsArgs          
- DKIM
Pulumi.Azure Native. Communication. Inputs. Dns Record Response 
- A class that represents a VerificationStatus record.
- DKIM2
Pulumi.Azure Native. Communication. Inputs. Dns Record Response 
- A class that represents a VerificationStatus record.
- DMARC
Pulumi.Azure Native. Communication. Inputs. Dns Record Response 
- A class that represents a VerificationStatus record.
- Domain
Pulumi.Azure Native. Communication. Inputs. Dns Record Response 
- A class that represents a VerificationStatus record.
- SPF
Pulumi.Azure Native. Communication. Inputs. Dns Record Response 
- A class that represents a VerificationStatus record.
- DKIM
DnsRecord Response 
- A class that represents a VerificationStatus record.
- DKIM2
DnsRecord Response 
- A class that represents a VerificationStatus record.
- DMARC
DnsRecord Response 
- A class that represents a VerificationStatus record.
- Domain
DnsRecord Response 
- A class that represents a VerificationStatus record.
- SPF
DnsRecord Response 
- A class that represents a VerificationStatus record.
- dKIM DnsRecord Response 
- A class that represents a VerificationStatus record.
- dKIM2 DnsRecord Response 
- A class that represents a VerificationStatus record.
- dMARC DnsRecord Response 
- A class that represents a VerificationStatus record.
- domain
DnsRecord Response 
- A class that represents a VerificationStatus record.
- sPF DnsRecord Response 
- A class that represents a VerificationStatus record.
- dKIM DnsRecord Response 
- A class that represents a VerificationStatus record.
- dKIM2 DnsRecord Response 
- A class that represents a VerificationStatus record.
- dMARC DnsRecord Response 
- A class that represents a VerificationStatus record.
- domain
DnsRecord Response 
- A class that represents a VerificationStatus record.
- sPF DnsRecord Response 
- A class that represents a VerificationStatus record.
- d_kim DnsRecord Response 
- A class that represents a VerificationStatus record.
- d_kim2 DnsRecord Response 
- A class that represents a VerificationStatus record.
- d_marc DnsRecord Response 
- A class that represents a VerificationStatus record.
- domain
DnsRecord Response 
- A class that represents a VerificationStatus record.
- s_pf DnsRecord Response 
- A class that represents a VerificationStatus record.
- dKIM Property Map
- A class that represents a VerificationStatus record.
- dKIM2 Property Map
- A class that represents a VerificationStatus record.
- dMARC Property Map
- A class that represents a VerificationStatus record.
- domain Property Map
- A class that represents a VerificationStatus record.
- sPF Property Map
- A class that represents a VerificationStatus record.
DomainPropertiesResponseVerificationStates, DomainPropertiesResponseVerificationStatesArgs          
- DKIM
Pulumi.Azure Native. Communication. Inputs. Verification Status Record Response 
- A class that represents a VerificationStatus record.
- DKIM2
Pulumi.Azure Native. Communication. Inputs. Verification Status Record Response 
- A class that represents a VerificationStatus record.
- DMARC
Pulumi.Azure Native. Communication. Inputs. Verification Status Record Response 
- A class that represents a VerificationStatus record.
- Domain
Pulumi.Azure Native. Communication. Inputs. Verification Status Record Response 
- A class that represents a VerificationStatus record.
- SPF
Pulumi.Azure Native. Communication. Inputs. Verification Status Record Response 
- A class that represents a VerificationStatus record.
- DKIM
VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- DKIM2
VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- DMARC
VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- Domain
VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- SPF
VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- dKIM VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- dKIM2 VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- dMARC VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- domain
VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- sPF VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- dKIM VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- dKIM2 VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- dMARC VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- domain
VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- sPF VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- d_kim VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- d_kim2 VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- d_marc VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- domain
VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- s_pf VerificationStatus Record Response 
- A class that represents a VerificationStatus record.
- dKIM Property Map
- A class that represents a VerificationStatus record.
- dKIM2 Property Map
- A class that represents a VerificationStatus record.
- dMARC Property Map
- A class that represents a VerificationStatus record.
- domain Property Map
- A class that represents a VerificationStatus record.
- sPF Property Map
- A class that represents a VerificationStatus record.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UserEngagementTracking, UserEngagementTrackingArgs      
- Disabled
- Disabled
- Enabled
- Enabled
- UserEngagement Tracking Disabled 
- Disabled
- UserEngagement Tracking Enabled 
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
VerificationStatusRecordResponse, VerificationStatusRecordResponseArgs        
- error_code str
- Error code. This property will only be present if the status is UnableToVerify.
- status str
- Status of the verification operation.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:communication:Domain mydomain.com /subscriptions/12345/resourceGroups/MyResourceGroup/providers/Microsoft.Communication/EmailServices/MyEmailServiceResource/Domains/mydomain.com 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0