Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// *** 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 -->
*
* <!--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* @Nullable */ Boolean> 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* @Nullable */ Map> 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);
}
}