All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.communication.Domain Maven / Gradle / Ivy

There is a newer version: 2.78.0
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.communication;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.communication.DomainArgs;
import com.pulumi.azurenative.communication.outputs.DomainPropertiesResponseVerificationRecords;
import com.pulumi.azurenative.communication.outputs.DomainPropertiesResponseVerificationStates;
import com.pulumi.azurenative.communication.outputs.SystemDataResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * A class representing a Domains resource.
 * Azure REST API version: 2023-03-31. Prior API version in Azure Native 1.x: 2021-10-01-preview.
 * 
 * Other available API versions: 2022-07-01-preview, 2023-04-01, 2023-04-01-preview, 2023-06-01-preview.
 * 
 * Note: If `domainManagement` is set to `AzureManaged`, then `domainName` is required.
 * 
 * ## Example Usage
 * ### Create or update Domains resource
 * 
 * 
 * {@code
 * 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 * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:communication:Domain mydomain.com /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName} * ``` * */ @ResourceType(type="azure-native:communication:Domain") public class Domain extends com.pulumi.resources.CustomResource { /** * The location where the Domains resource data is stored at rest. * */ @Export(name="dataLocation", refs={String.class}, tree="[0]") private Output dataLocation; /** * @return The location where the Domains resource data is stored at rest. * */ public Output dataLocation() { return this.dataLocation; } /** * Describes how a Domains resource is being managed. * */ @Export(name="domainManagement", refs={String.class}, tree="[0]") private Output domainManagement; /** * @return Describes how a Domains resource is being managed. * */ public Output domainManagement() { return this.domainManagement; } /** * P2 sender domain that is displayed to the email recipients [RFC 5322]. * */ @Export(name="fromSenderDomain", refs={String.class}, tree="[0]") private Output fromSenderDomain; /** * @return P2 sender domain that is displayed to the email recipients [RFC 5322]. * */ public Output fromSenderDomain() { return this.fromSenderDomain; } /** * The geo-location where the resource lives * */ @Export(name="location", refs={String.class}, tree="[0]") private Output location; /** * @return The geo-location where the resource lives * */ public Output location() { return this.location; } /** * P1 sender domain that is present on the email envelope [RFC 5321]. * */ @Export(name="mailFromSenderDomain", refs={String.class}, tree="[0]") private Output mailFromSenderDomain; /** * @return P1 sender domain that is present on the email envelope [RFC 5321]. * */ public Output mailFromSenderDomain() { return this.mailFromSenderDomain; } /** * The name of the resource * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name of the resource * */ public Output name() { return this.name; } /** * Provisioning state of the resource. * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return Provisioning state of the resource. * */ public Output provisioningState() { return this.provisioningState; } /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return Azure Resource Manager metadata containing createdBy and modifiedBy information. * */ public Output systemData() { return this.systemData; } /** * Resource tags. * */ @Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]") private Output> tags; /** * @return Resource tags. * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" * */ public Output type() { return this.type; } /** * Describes whether user engagement tracking is enabled or disabled. * */ @Export(name="userEngagementTracking", refs={String.class}, tree="[0]") private Output userEngagementTracking; /** * @return Describes whether user engagement tracking is enabled or disabled. * */ public Output> userEngagementTracking() { return Codegen.optional(this.userEngagementTracking); } /** * List of DnsRecord * */ @Export(name="verificationRecords", refs={DomainPropertiesResponseVerificationRecords.class}, tree="[0]") private Output verificationRecords; /** * @return List of DnsRecord * */ public Output verificationRecords() { return this.verificationRecords; } /** * List of VerificationStatusRecord * */ @Export(name="verificationStates", refs={DomainPropertiesResponseVerificationStates.class}, tree="[0]") private Output verificationStates; /** * @return List of VerificationStatusRecord * */ public Output verificationStates() { return this.verificationStates; } /** * * @param name The _unique_ name of the resulting resource. */ public Domain(java.lang.String name) { this(name, DomainArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public Domain(java.lang.String name, DomainArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public Domain(java.lang.String name, DomainArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:communication:Domain", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private Domain(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:communication:Domain", name, null, makeResourceOptions(options, id), false); } private static DomainArgs makeArgs(DomainArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? DomainArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .aliases(List.of( Output.of(Alias.builder().type("azure-native:communication/v20211001preview:Domain").build()), Output.of(Alias.builder().type("azure-native:communication/v20220701preview:Domain").build()), Output.of(Alias.builder().type("azure-native:communication/v20230301preview:Domain").build()), Output.of(Alias.builder().type("azure-native:communication/v20230331:Domain").build()), Output.of(Alias.builder().type("azure-native:communication/v20230401:Domain").build()), Output.of(Alias.builder().type("azure-native:communication/v20230401preview:Domain").build()), Output.of(Alias.builder().type("azure-native:communication/v20230601preview:Domain").build()) )) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host 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 options Optional settings to control the behavior of the CustomResource. */ public static Domain get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new Domain(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy