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

com.pulumi.azure.cdn.EndpointCustomDomain Maven / Gradle / Ivy

// *** 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.azure.cdn;

import com.pulumi.azure.Utilities;
import com.pulumi.azure.cdn.EndpointCustomDomainArgs;
import com.pulumi.azure.cdn.inputs.EndpointCustomDomainState;
import com.pulumi.azure.cdn.outputs.EndpointCustomDomainCdnManagedHttps;
import com.pulumi.azure.cdn.outputs.EndpointCustomDomainUserManagedHttps;
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.Optional;
import javax.annotation.Nullable;

/**
 * Manages a Custom Domain for a CDN Endpoint.
 * 
 * ## Example Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azure.core.ResourceGroup;
 * import com.pulumi.azure.core.ResourceGroupArgs;
 * import com.pulumi.azure.storage.Account;
 * import com.pulumi.azure.storage.AccountArgs;
 * import com.pulumi.azure.cdn.Profile;
 * import com.pulumi.azure.cdn.ProfileArgs;
 * import com.pulumi.azure.cdn.Endpoint;
 * import com.pulumi.azure.cdn.EndpointArgs;
 * import com.pulumi.azure.cdn.inputs.EndpointOriginArgs;
 * import com.pulumi.azure.dns.DnsFunctions;
 * import com.pulumi.azure.dns.inputs.GetZoneArgs;
 * import com.pulumi.azure.dns.CNameRecord;
 * import com.pulumi.azure.dns.CNameRecordArgs;
 * import com.pulumi.azure.cdn.EndpointCustomDomain;
 * import com.pulumi.azure.cdn.EndpointCustomDomainArgs;
 * 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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
 *             .name("example-rg")
 *             .location("west europe")
 *             .build());
 * 
 *         var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
 *             .name("example")
 *             .resourceGroupName(exampleResourceGroup.name())
 *             .location(exampleResourceGroup.location())
 *             .accountTier("Standard")
 *             .accountReplicationType("GRS")
 *             .build());
 * 
 *         var exampleProfile = new Profile("exampleProfile", ProfileArgs.builder()
 *             .name("example-profile")
 *             .location(exampleResourceGroup.location())
 *             .resourceGroupName(exampleResourceGroup.name())
 *             .sku("Standard_Verizon")
 *             .build());
 * 
 *         var exampleEndpoint = new Endpoint("exampleEndpoint", EndpointArgs.builder()
 *             .name("example-endpoint")
 *             .profileName(exampleProfile.name())
 *             .location(exampleResourceGroup.location())
 *             .resourceGroupName(exampleResourceGroup.name())
 *             .origins(EndpointOriginArgs.builder()
 *                 .name("example")
 *                 .hostName(exampleAccount.primaryBlobHost())
 *                 .build())
 *             .build());
 * 
 *         final var example = DnsFunctions.getZone(GetZoneArgs.builder()
 *             .name("example-domain.com")
 *             .resourceGroupName("domain-rg")
 *             .build());
 * 
 *         var exampleCNameRecord = new CNameRecord("exampleCNameRecord", CNameRecordArgs.builder()
 *             .name("example")
 *             .zoneName(example.applyValue(getZoneResult -> getZoneResult.name()))
 *             .resourceGroupName(example.applyValue(getZoneResult -> getZoneResult.resourceGroupName()))
 *             .ttl(3600)
 *             .targetResourceId(exampleEndpoint.id())
 *             .build());
 * 
 *         var exampleEndpointCustomDomain = new EndpointCustomDomain("exampleEndpointCustomDomain", EndpointCustomDomainArgs.builder()
 *             .name("example-domain")
 *             .cdnEndpointId(exampleEndpoint.id())
 *             .hostName(exampleCNameRecord.name().applyValue(name -> String.format("%s.%s", name,example.applyValue(getZoneResult -> getZoneResult.name()))))
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * CDN Endpoint Custom Domains can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:cdn/endpointCustomDomain:EndpointCustomDomain example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customDomains/domain1 * ``` * */ @ResourceType(type="azure:cdn/endpointCustomDomain:EndpointCustomDomain") public class EndpointCustomDomain extends com.pulumi.resources.CustomResource { /** * The ID of the CDN Endpoint. Changing this forces a new CDN Endpoint Custom Domain to be created. * */ @Export(name="cdnEndpointId", refs={String.class}, tree="[0]") private Output cdnEndpointId; /** * @return The ID of the CDN Endpoint. Changing this forces a new CDN Endpoint Custom Domain to be created. * */ public Output cdnEndpointId() { return this.cdnEndpointId; } /** * A `cdn_managed_https` block as defined below. * */ @Export(name="cdnManagedHttps", refs={EndpointCustomDomainCdnManagedHttps.class}, tree="[0]") private Output cdnManagedHttps; /** * @return A `cdn_managed_https` block as defined below. * */ public Output> cdnManagedHttps() { return Codegen.optional(this.cdnManagedHttps); } /** * The host name of the custom domain. Changing this forces a new CDN Endpoint Custom Domain to be created. * */ @Export(name="hostName", refs={String.class}, tree="[0]") private Output hostName; /** * @return The host name of the custom domain. Changing this forces a new CDN Endpoint Custom Domain to be created. * */ public Output hostName() { return this.hostName; } /** * The name which should be used for this CDN Endpoint Custom Domain. Changing this forces a new CDN Endpoint Custom Domain to be created. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name which should be used for this CDN Endpoint Custom Domain. Changing this forces a new CDN Endpoint Custom Domain to be created. * */ public Output name() { return this.name; } /** * A `user_managed_https` block as defined below. * * > **NOTE** Only one of `cdn_managed_https` and `user_managed_https` can be specified. * */ @Export(name="userManagedHttps", refs={EndpointCustomDomainUserManagedHttps.class}, tree="[0]") private Output userManagedHttps; /** * @return A `user_managed_https` block as defined below. * * > **NOTE** Only one of `cdn_managed_https` and `user_managed_https` can be specified. * */ public Output> userManagedHttps() { return Codegen.optional(this.userManagedHttps); } /** * * @param name The _unique_ name of the resulting resource. */ public EndpointCustomDomain(java.lang.String name) { this(name, EndpointCustomDomainArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public EndpointCustomDomain(java.lang.String name, EndpointCustomDomainArgs 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 EndpointCustomDomain(java.lang.String name, EndpointCustomDomainArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:cdn/endpointCustomDomain:EndpointCustomDomain", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private EndpointCustomDomain(java.lang.String name, Output id, @Nullable EndpointCustomDomainState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:cdn/endpointCustomDomain:EndpointCustomDomain", name, state, makeResourceOptions(options, id), false); } private static EndpointCustomDomainArgs makeArgs(EndpointCustomDomainArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? EndpointCustomDomainArgs.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()) .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 state * @param options Optional settings to control the behavior of the CustomResource. */ public static EndpointCustomDomain get(java.lang.String name, Output id, @Nullable EndpointCustomDomainState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new EndpointCustomDomain(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy