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

com.pulumi.azure.cdn.FrontdoorEndpoint 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.FrontdoorEndpointArgs;
import com.pulumi.azure.cdn.inputs.FrontdoorEndpointState;
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.Boolean;
import java.lang.String;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Manages a Front Door (standard/premium) 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.cdn.FrontdoorProfile;
 * import com.pulumi.azure.cdn.FrontdoorProfileArgs;
 * import com.pulumi.azure.cdn.FrontdoorEndpoint;
 * import com.pulumi.azure.cdn.FrontdoorEndpointArgs;
 * 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("example-cdn-frontdoor")
 *             .location("West Europe")
 *             .build());
 * 
 *         var exampleFrontdoorProfile = new FrontdoorProfile("exampleFrontdoorProfile", FrontdoorProfileArgs.builder()
 *             .name("example-profile")
 *             .resourceGroupName(example.name())
 *             .skuName("Standard_AzureFrontDoor")
 *             .build());
 * 
 *         var exampleFrontdoorEndpoint = new FrontdoorEndpoint("exampleFrontdoorEndpoint", FrontdoorEndpointArgs.builder()
 *             .name("example-endpoint")
 *             .cdnFrontdoorProfileId(exampleFrontdoorProfile.id())
 *             .tags(Map.of("ENV", "example"))
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * Front Door Endpoints can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:cdn/frontdoorEndpoint:FrontdoorEndpoint example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.Cdn/profiles/profile1/afdEndpoints/endpoint1 * ``` * */ @ResourceType(type="azure:cdn/frontdoorEndpoint:FrontdoorEndpoint") public class FrontdoorEndpoint extends com.pulumi.resources.CustomResource { /** * The ID of the Front Door Profile within which this Front Door Endpoint should exist. Changing this forces a new Front Door Endpoint to be created. * */ @Export(name="cdnFrontdoorProfileId", refs={String.class}, tree="[0]") private Output cdnFrontdoorProfileId; /** * @return The ID of the Front Door Profile within which this Front Door Endpoint should exist. Changing this forces a new Front Door Endpoint to be created. * */ public Output cdnFrontdoorProfileId() { return this.cdnFrontdoorProfileId; } /** * Specifies if this Front Door Endpoint is enabled? Defaults to `true`. * */ @Export(name="enabled", refs={Boolean.class}, tree="[0]") private Output enabled; /** * @return Specifies if this Front Door Endpoint is enabled? Defaults to `true`. * */ public Output> enabled() { return Codegen.optional(this.enabled); } /** * The host name of the Front Door Endpoint, in the format `{endpointName}.{dnsZone}` (for example, `contoso.azureedge.net`). * */ @Export(name="hostName", refs={String.class}, tree="[0]") private Output hostName; /** * @return The host name of the Front Door Endpoint, in the format `{endpointName}.{dnsZone}` (for example, `contoso.azureedge.net`). * */ public Output hostName() { return this.hostName; } /** * The name which should be used for this Front Door Endpoint. Changing this forces a new Front Door Endpoint to be created. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name which should be used for this Front Door Endpoint. Changing this forces a new Front Door Endpoint to be created. * */ public Output name() { return this.name; } /** * Specifies a mapping of tags which should be assigned to the Front Door Endpoint. * */ @Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]") private Output> tags; /** * @return Specifies a mapping of tags which should be assigned to the Front Door Endpoint. * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * * @param name The _unique_ name of the resulting resource. */ public FrontdoorEndpoint(java.lang.String name) { this(name, FrontdoorEndpointArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public FrontdoorEndpoint(java.lang.String name, FrontdoorEndpointArgs 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 FrontdoorEndpoint(java.lang.String name, FrontdoorEndpointArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:cdn/frontdoorEndpoint:FrontdoorEndpoint", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private FrontdoorEndpoint(java.lang.String name, Output id, @Nullable FrontdoorEndpointState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:cdn/frontdoorEndpoint:FrontdoorEndpoint", name, state, makeResourceOptions(options, id), false); } private static FrontdoorEndpointArgs makeArgs(FrontdoorEndpointArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? FrontdoorEndpointArgs.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 FrontdoorEndpoint get(java.lang.String name, Output id, @Nullable FrontdoorEndpointState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new FrontdoorEndpoint(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy