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

com.pulumi.azurenative.web.inputs.CustomDnsSuffixConfigurationArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.web.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Full view of the custom domain suffix configuration for ASEv3.
 * 
 */
public final class CustomDnsSuffixConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final CustomDnsSuffixConfigurationArgs Empty = new CustomDnsSuffixConfigurationArgs();

    /**
     * The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
     * 
     */
    @Import(name="certificateUrl")
    private @Nullable Output certificateUrl;

    /**
     * @return The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
     * 
     */
    public Optional> certificateUrl() {
        return Optional.ofNullable(this.certificateUrl);
    }

    /**
     * The default custom domain suffix to use for all sites deployed on the ASE.
     * 
     */
    @Import(name="dnsSuffix")
    private @Nullable Output dnsSuffix;

    /**
     * @return The default custom domain suffix to use for all sites deployed on the ASE.
     * 
     */
    public Optional> dnsSuffix() {
        return Optional.ofNullable(this.dnsSuffix);
    }

    /**
     * The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
     * 
     */
    @Import(name="keyVaultReferenceIdentity")
    private @Nullable Output keyVaultReferenceIdentity;

    /**
     * @return The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
     * 
     */
    public Optional> keyVaultReferenceIdentity() {
        return Optional.ofNullable(this.keyVaultReferenceIdentity);
    }

    /**
     * Kind of resource.
     * 
     */
    @Import(name="kind")
    private @Nullable Output kind;

    /**
     * @return Kind of resource.
     * 
     */
    public Optional> kind() {
        return Optional.ofNullable(this.kind);
    }

    private CustomDnsSuffixConfigurationArgs() {}

    private CustomDnsSuffixConfigurationArgs(CustomDnsSuffixConfigurationArgs $) {
        this.certificateUrl = $.certificateUrl;
        this.dnsSuffix = $.dnsSuffix;
        this.keyVaultReferenceIdentity = $.keyVaultReferenceIdentity;
        this.kind = $.kind;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(CustomDnsSuffixConfigurationArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private CustomDnsSuffixConfigurationArgs $;

        public Builder() {
            $ = new CustomDnsSuffixConfigurationArgs();
        }

        public Builder(CustomDnsSuffixConfigurationArgs defaults) {
            $ = new CustomDnsSuffixConfigurationArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param certificateUrl The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
         * 
         * @return builder
         * 
         */
        public Builder certificateUrl(@Nullable Output certificateUrl) {
            $.certificateUrl = certificateUrl;
            return this;
        }

        /**
         * @param certificateUrl The URL referencing the Azure Key Vault certificate secret that should be used as the default SSL/TLS certificate for sites with the custom domain suffix.
         * 
         * @return builder
         * 
         */
        public Builder certificateUrl(String certificateUrl) {
            return certificateUrl(Output.of(certificateUrl));
        }

        /**
         * @param dnsSuffix The default custom domain suffix to use for all sites deployed on the ASE.
         * 
         * @return builder
         * 
         */
        public Builder dnsSuffix(@Nullable Output dnsSuffix) {
            $.dnsSuffix = dnsSuffix;
            return this;
        }

        /**
         * @param dnsSuffix The default custom domain suffix to use for all sites deployed on the ASE.
         * 
         * @return builder
         * 
         */
        public Builder dnsSuffix(String dnsSuffix) {
            return dnsSuffix(Output.of(dnsSuffix));
        }

        /**
         * @param keyVaultReferenceIdentity The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
         * 
         * @return builder
         * 
         */
        public Builder keyVaultReferenceIdentity(@Nullable Output keyVaultReferenceIdentity) {
            $.keyVaultReferenceIdentity = keyVaultReferenceIdentity;
            return this;
        }

        /**
         * @param keyVaultReferenceIdentity The user-assigned identity to use for resolving the key vault certificate reference. If not specified, the system-assigned ASE identity will be used if available.
         * 
         * @return builder
         * 
         */
        public Builder keyVaultReferenceIdentity(String keyVaultReferenceIdentity) {
            return keyVaultReferenceIdentity(Output.of(keyVaultReferenceIdentity));
        }

        /**
         * @param kind Kind of resource.
         * 
         * @return builder
         * 
         */
        public Builder kind(@Nullable Output kind) {
            $.kind = kind;
            return this;
        }

        /**
         * @param kind Kind of resource.
         * 
         * @return builder
         * 
         */
        public Builder kind(String kind) {
            return kind(Output.of(kind));
        }

        public CustomDnsSuffixConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy