import * as pulumi from "@pulumi/pulumi"; /** * Manages a communication service email domain association. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "group1", * location: "West Europe", * }); * const exampleService = new azure.communication.Service("example", { * name: "CommunicationService1", * resourceGroupName: example.name, * dataLocation: "United States", * }); * const exampleEmailService = new azure.communication.EmailService("example", { * name: "emailCommunicationService1", * resourceGroupName: example.name, * dataLocation: "United States", * }); * const exampleEmailServiceDomain = new azure.communication.EmailServiceDomain("example", { * name: "AzureManagedDomain", * emailServiceId: exampleEmailService.id, * domainManagement: "AzureManaged", * }); * const exampleServiceEmailDomainAssociation = new azure.communication.ServiceEmailDomainAssociation("example", { * communicationServiceId: exampleService.id, * emailServiceDomainId: exampleEmailServiceDomain.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Communication` - 2023-03-31 * * ## Import * * Communication service email domain association can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:communication/serviceEmailDomainAssociation:ServiceEmailDomainAssociation example "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Communication/communicationServices/communicationService1|/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Communication/emailServices/emailCommunicationService1/domains/domain1" * ``` */ export declare class ServiceEmailDomainAssociation extends pulumi.CustomResource { /** * Get an existing ServiceEmailDomainAssociation resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ServiceEmailDomainAssociationState, opts?: pulumi.CustomResourceOptions): ServiceEmailDomainAssociation; /** * Returns true if the given object is an instance of ServiceEmailDomainAssociation. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ServiceEmailDomainAssociation; /** * The ID of the Communication Service. Changing this forces a new communication service email domain association to be created. */ readonly communicationServiceId: pulumi.Output; /** * The ID of the EMail Service Domain. Changing this forces a new communication service email domain association to be created. */ readonly emailServiceDomainId: pulumi.Output; /** * Create a ServiceEmailDomainAssociation resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ServiceEmailDomainAssociationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServiceEmailDomainAssociation resources. */ export interface ServiceEmailDomainAssociationState { /** * The ID of the Communication Service. Changing this forces a new communication service email domain association to be created. */ communicationServiceId?: pulumi.Input; /** * The ID of the EMail Service Domain. Changing this forces a new communication service email domain association to be created. */ emailServiceDomainId?: pulumi.Input; } /** * The set of arguments for constructing a ServiceEmailDomainAssociation resource. */ export interface ServiceEmailDomainAssociationArgs { /** * The ID of the Communication Service. Changing this forces a new communication service email domain association to be created. */ communicationServiceId: pulumi.Input; /** * The ID of the EMail Service Domain. Changing this forces a new communication service email domain association to be created. */ emailServiceDomainId: pulumi.Input; }