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

com.pulumi.azure.containerapp.inputs.AppIngressCustomDomainArgs 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.containerapp.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;


public final class AppIngressCustomDomainArgs extends com.pulumi.resources.ResourceArgs {

    public static final AppIngressCustomDomainArgs Empty = new AppIngressCustomDomainArgs();

    /**
     * The Binding type.
     * 
     */
    @Import(name="certificateBindingType")
    private @Nullable Output certificateBindingType;

    /**
     * @return The Binding type.
     * 
     */
    public Optional> certificateBindingType() {
        return Optional.ofNullable(this.certificateBindingType);
    }

    /**
     * The ID of the Container App Environment Certificate.
     * 
     */
    @Import(name="certificateId")
    private @Nullable Output certificateId;

    /**
     * @return The ID of the Container App Environment Certificate.
     * 
     */
    public Optional> certificateId() {
        return Optional.ofNullable(this.certificateId);
    }

    /**
     * The name for this Container App. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name for this Container App. Changing this forces a new resource to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    private AppIngressCustomDomainArgs() {}

    private AppIngressCustomDomainArgs(AppIngressCustomDomainArgs $) {
        this.certificateBindingType = $.certificateBindingType;
        this.certificateId = $.certificateId;
        this.name = $.name;
    }

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

    public static final class Builder {
        private AppIngressCustomDomainArgs $;

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

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

        /**
         * @param certificateBindingType The Binding type.
         * 
         * @return builder
         * 
         */
        public Builder certificateBindingType(@Nullable Output certificateBindingType) {
            $.certificateBindingType = certificateBindingType;
            return this;
        }

        /**
         * @param certificateBindingType The Binding type.
         * 
         * @return builder
         * 
         */
        public Builder certificateBindingType(String certificateBindingType) {
            return certificateBindingType(Output.of(certificateBindingType));
        }

        /**
         * @param certificateId The ID of the Container App Environment Certificate.
         * 
         * @return builder
         * 
         */
        public Builder certificateId(@Nullable Output certificateId) {
            $.certificateId = certificateId;
            return this;
        }

        /**
         * @param certificateId The ID of the Container App Environment Certificate.
         * 
         * @return builder
         * 
         */
        public Builder certificateId(String certificateId) {
            return certificateId(Output.of(certificateId));
        }

        /**
         * @param name The name for this Container App. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name for this Container App. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        public AppIngressCustomDomainArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy