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.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 -->
*
* <!--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* @Nullable */ EndpointCustomDomainCdnManagedHttps> 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* @Nullable */ EndpointCustomDomainUserManagedHttps> 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);
}
}