1. Packages
  2. Azure Native
  3. API Docs
  4. communication
  5. Domain
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.communication.Domain

Explore with Pulumi AI

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

A class representing a Domains resource.

Uses Azure REST API version 2023-06-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-03-31.

Other available API versions: 2023-03-31, 2023-04-01, 2023-04-01-preview, 2024-09-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native communication [ApiVersion]. See the version guide for details.

Note: If domainManagement is set to AzureManaged, then domainName is required.

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 = AzureNative.Communication.DomainManagement.CustomerManaged,
        DomainName = "mydomain.com",
        EmailServiceName = "MyEmailServiceResource",
        Location = "Global",
        ResourceGroupName = "MyResourceGroup",
    });

});
Copy
package main

import (
	communication "github.com/pulumi/pulumi-azure-native-sdk/communication/v3"
	"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(communication.DomainManagementCustomerManaged),
			DomainName:        pulumi.String("mydomain.com"),
			EmailServiceName:  pulumi.String("MyEmailServiceResource"),
			Location:          pulumi.String("Global"),
			ResourceGroupName: pulumi.String("MyResourceGroup"),
		})
		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.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());

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

const domain = new azure_native.communication.Domain("domain", {
    domainManagement: azure_native.communication.DomainManagement.CustomerManaged,
    domainName: "mydomain.com",
    emailServiceName: "MyEmailServiceResource",
    location: "Global",
    resourceGroupName: "MyResourceGroup",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

domain = azure_native.communication.Domain("domain",
    domain_management=azure_native.communication.DomainManagement.CUSTOMER_MANAGED,
    domain_name="mydomain.com",
    email_service_name="MyEmailServiceResource",
    location="Global",
    resource_group_name="MyResourceGroup")
Copy
resources:
  domain:
    type: azure-native:communication:Domain
    properties:
      domainManagement: CustomerManaged
      domainName: mydomain.com
      emailServiceName: MyEmailServiceResource
      location: Global
      resourceGroupName: MyResourceGroup
Copy

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)
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 This property is required. string
The unique name of the resource.
args This property is required. DomainArgs
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. 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 This property is required. string
The unique name of the resource.
args This property is required. DomainArgs
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. DomainArgs
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. 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",
});
Copy
example, err := communication.NewDomain(ctx, "domainResource", &communication.DomainArgs{
	DomainManagement:  pulumi.String("string"),
	EmailServiceName:  pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	DomainName:        pulumi.String("string"),
	Location:          pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	UserEngagementTracking: pulumi.String("string"),
})
Copy
var domainResource = new Domain("domainResource", DomainArgs.builder()
    .domainManagement("string")
    .emailServiceName("string")
    .resourceGroupName("string")
    .domainName("string")
    .location("string")
    .tags(Map.of("string", "string"))
    .userEngagementTracking("string")
    .build());
Copy
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")
Copy
const domainResource = new azure_native.communication.Domain("domainResource", {
    domainManagement: "string",
    emailServiceName: "string",
    resourceGroupName: "string",
    domainName: "string",
    location: "string",
    tags: {
        string: "string",
    },
    userEngagementTracking: "string",
});
Copy
type: azure-native:communication:Domain
properties:
    domainManagement: string
    domainName: string
    emailServiceName: string
    location: string
    resourceGroupName: string
    tags:
        string: string
    userEngagementTracking: string
Copy

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 This property is required. string | Pulumi.AzureNative.Communication.DomainManagement
Describes how a Domains resource is being managed.
EmailServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the EmailService resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DomainName Changes to this property will trigger replacement. string
The name of the Domains resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Tags Dictionary<string, string>
Resource tags.
UserEngagementTracking string | Pulumi.AzureNative.Communication.UserEngagementTracking
Describes whether user engagement tracking is enabled or disabled.
DomainManagement This property is required. string | DomainManagement
Describes how a Domains resource is being managed.
EmailServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the EmailService resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DomainName Changes to this property will trigger replacement. string
The name of the Domains resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Tags map[string]string
Resource tags.
UserEngagementTracking string | UserEngagementTracking
Describes whether user engagement tracking is enabled or disabled.
domainManagement This property is required. String | DomainManagement
Describes how a Domains resource is being managed.
emailServiceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the EmailService resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
domainName Changes to this property will trigger replacement. String
The name of the Domains resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
tags Map<String,String>
Resource tags.
userEngagementTracking String | UserEngagementTracking
Describes whether user engagement tracking is enabled or disabled.
domainManagement This property is required. string | DomainManagement
Describes how a Domains resource is being managed.
emailServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the EmailService resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
domainName Changes to this property will trigger replacement. string
The name of the Domains resource.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
tags {[key: string]: string}
Resource tags.
userEngagementTracking string | UserEngagementTracking
Describes whether user engagement tracking is enabled or disabled.
domain_management This property is required. str | DomainManagement
Describes how a Domains resource is being managed.
email_service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the EmailService resource.
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.
domain_name Changes to this property will trigger replacement. str
The name of the Domains resource.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
tags Mapping[str, str]
Resource tags.
user_engagement_tracking str | UserEngagementTracking
Describes whether user engagement tracking is enabled or disabled.
domainManagement This property is required. String | "AzureManaged" | "CustomerManaged" | "CustomerManagedInExchangeOnline"
Describes how a Domains resource is being managed.
emailServiceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the EmailService resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
domainName Changes to this property will trigger replacement. String
The name of the Domains resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
tags Map<String>
Resource tags.
userEngagementTracking String | "Disabled" | "Enabled"
Describes whether user engagement tracking is enabled or disabled.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
DataLocation string
The location where the Domains resource data is stored at rest.
FromSenderDomain string
P2 sender domain that is displayed to the email recipients [RFC 5322].
Id string
The provider-assigned unique ID for this managed resource.
MailFromSenderDomain string
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.AzureNative.Communication.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
VerificationRecords Pulumi.AzureNative.Communication.Outputs.DomainPropertiesResponseVerificationRecords
List of DnsRecord
VerificationStates Pulumi.AzureNative.Communication.Outputs.DomainPropertiesResponseVerificationStates
List of VerificationStatusRecord
AzureApiVersion string
The Azure API version of the resource.
DataLocation string
The location where the Domains resource data is stored at rest.
FromSenderDomain string
P2 sender domain that is displayed to the email recipients [RFC 5322].
Id string
The provider-assigned unique ID for this managed resource.
MailFromSenderDomain string
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 SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
VerificationRecords DomainPropertiesResponseVerificationRecords
List of DnsRecord
VerificationStates DomainPropertiesResponseVerificationStates
List of VerificationStatusRecord
azureApiVersion String
The Azure API version of the resource.
dataLocation String
The location where the Domains resource data is stored at rest.
fromSenderDomain String
P2 sender domain that is displayed to the email recipients [RFC 5322].
id String
The provider-assigned unique ID for this managed resource.
mailFromSenderDomain String
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 SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
verificationRecords DomainPropertiesResponseVerificationRecords
List of DnsRecord
verificationStates DomainPropertiesResponseVerificationStates
List of VerificationStatusRecord
azureApiVersion string
The Azure API version of the resource.
dataLocation string
The location where the Domains resource data is stored at rest.
fromSenderDomain string
P2 sender domain that is displayed to the email recipients [RFC 5322].
id string
The provider-assigned unique ID for this managed resource.
mailFromSenderDomain string
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 SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
verificationRecords DomainPropertiesResponseVerificationRecords
List of DnsRecord
verificationStates DomainPropertiesResponseVerificationStates
List of VerificationStatusRecord
azure_api_version str
The Azure API version of the resource.
data_location str
The location where the Domains resource data is stored at rest.
from_sender_domain str
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_sender_domain str
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 SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
verification_records DomainPropertiesResponseVerificationRecords
List of DnsRecord
verification_states DomainPropertiesResponseVerificationStates
List of VerificationStatusRecord
azureApiVersion String
The Azure API version of the resource.
dataLocation String
The location where the Domains resource data is stored at rest.
fromSenderDomain String
P2 sender domain that is displayed to the email recipients [RFC 5322].
id String
The provider-assigned unique ID for this managed resource.
mailFromSenderDomain String
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

Name This property is required. string
Name of the DNS record.
Ttl This property is required. int
Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
Type This property is required. string
Type of the DNS record. Example: TXT
Value This property is required. string
Value of the DNS record.
Name This property is required. string
Name of the DNS record.
Ttl This property is required. int
Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
Type This property is required. string
Type of the DNS record. Example: TXT
Value This property is required. string
Value of the DNS record.
name This property is required. String
Name of the DNS record.
ttl This property is required. Integer
Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
type This property is required. String
Type of the DNS record. Example: TXT
value This property is required. String
Value of the DNS record.
name This property is required. string
Name of the DNS record.
ttl This property is required. number
Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
type This property is required. string
Type of the DNS record. Example: TXT
value This property is required. string
Value of the DNS record.
name This property is required. str
Name of the DNS record.
ttl This property is required. int
Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
type This property is required. str
Type of the DNS record. Example: TXT
value This property is required. str
Value of the DNS record.
name This property is required. String
Name of the DNS record.
ttl This property is required. Number
Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
type This property is required. String
Type of the DNS record. Example: TXT
value This property is required. String
Value of the DNS record.

DomainManagement
, DomainManagementArgs

AzureManaged
AzureManaged
CustomerManaged
CustomerManaged
CustomerManagedInExchangeOnline
CustomerManagedInExchangeOnline
DomainManagementAzureManaged
AzureManaged
DomainManagementCustomerManaged
CustomerManaged
DomainManagementCustomerManagedInExchangeOnline
CustomerManagedInExchangeOnline
AzureManaged
AzureManaged
CustomerManaged
CustomerManaged
CustomerManagedInExchangeOnline
CustomerManagedInExchangeOnline
AzureManaged
AzureManaged
CustomerManaged
CustomerManaged
CustomerManagedInExchangeOnline
CustomerManagedInExchangeOnline
AZURE_MANAGED
AzureManaged
CUSTOMER_MANAGED
CustomerManaged
CUSTOMER_MANAGED_IN_EXCHANGE_ONLINE
CustomerManagedInExchangeOnline
"AzureManaged"
AzureManaged
"CustomerManaged"
CustomerManaged
"CustomerManagedInExchangeOnline"
CustomerManagedInExchangeOnline

DomainPropertiesResponseVerificationRecords
, DomainPropertiesResponseVerificationRecordsArgs

DKIM Pulumi.AzureNative.Communication.Inputs.DnsRecordResponse
A class that represents a VerificationStatus record.
DKIM2 Pulumi.AzureNative.Communication.Inputs.DnsRecordResponse
A class that represents a VerificationStatus record.
DMARC Pulumi.AzureNative.Communication.Inputs.DnsRecordResponse
A class that represents a VerificationStatus record.
Domain Pulumi.AzureNative.Communication.Inputs.DnsRecordResponse
A class that represents a VerificationStatus record.
SPF Pulumi.AzureNative.Communication.Inputs.DnsRecordResponse
A class that represents a VerificationStatus record.
DKIM DnsRecordResponse
A class that represents a VerificationStatus record.
DKIM2 DnsRecordResponse
A class that represents a VerificationStatus record.
DMARC DnsRecordResponse
A class that represents a VerificationStatus record.
Domain DnsRecordResponse
A class that represents a VerificationStatus record.
SPF DnsRecordResponse
A class that represents a VerificationStatus record.
dKIM DnsRecordResponse
A class that represents a VerificationStatus record.
dKIM2 DnsRecordResponse
A class that represents a VerificationStatus record.
dMARC DnsRecordResponse
A class that represents a VerificationStatus record.
domain DnsRecordResponse
A class that represents a VerificationStatus record.
sPF DnsRecordResponse
A class that represents a VerificationStatus record.
dKIM DnsRecordResponse
A class that represents a VerificationStatus record.
dKIM2 DnsRecordResponse
A class that represents a VerificationStatus record.
dMARC DnsRecordResponse
A class that represents a VerificationStatus record.
domain DnsRecordResponse
A class that represents a VerificationStatus record.
sPF DnsRecordResponse
A class that represents a VerificationStatus record.
d_kim DnsRecordResponse
A class that represents a VerificationStatus record.
d_kim2 DnsRecordResponse
A class that represents a VerificationStatus record.
d_marc DnsRecordResponse
A class that represents a VerificationStatus record.
domain DnsRecordResponse
A class that represents a VerificationStatus record.
s_pf DnsRecordResponse
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.AzureNative.Communication.Inputs.VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
DKIM2 Pulumi.AzureNative.Communication.Inputs.VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
DMARC Pulumi.AzureNative.Communication.Inputs.VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
Domain Pulumi.AzureNative.Communication.Inputs.VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
SPF Pulumi.AzureNative.Communication.Inputs.VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
DKIM VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
DKIM2 VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
DMARC VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
Domain VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
SPF VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
dKIM VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
dKIM2 VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
dMARC VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
domain VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
sPF VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
dKIM VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
dKIM2 VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
dMARC VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
domain VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
sPF VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
d_kim VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
d_kim2 VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
d_marc VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
domain VerificationStatusRecordResponse
A class that represents a VerificationStatus record.
s_pf VerificationStatusRecordResponse
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.
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.

UserEngagementTracking
, UserEngagementTrackingArgs

Disabled
Disabled
Enabled
Enabled
UserEngagementTrackingDisabled
Disabled
UserEngagementTrackingEnabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
DISABLED
Disabled
ENABLED
Enabled
"Disabled"
Disabled
"Enabled"
Enabled

VerificationStatusRecordResponse
, VerificationStatusRecordResponseArgs

ErrorCode This property is required. string
Error code. This property will only be present if the status is UnableToVerify.
Status This property is required. string
Status of the verification operation.
ErrorCode This property is required. string
Error code. This property will only be present if the status is UnableToVerify.
Status This property is required. string
Status of the verification operation.
errorCode This property is required. String
Error code. This property will only be present if the status is UnableToVerify.
status This property is required. String
Status of the verification operation.
errorCode This property is required. string
Error code. This property will only be present if the status is UnableToVerify.
status This property is required. string
Status of the verification operation.
error_code This property is required. str
Error code. This property will only be present if the status is UnableToVerify.
status This property is required. str
Status of the verification operation.
errorCode This property is required. String
Error code. This property will only be present if the status is UnableToVerify.
status This property is required. String
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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName} 
Copy

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

Package Details

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