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

com.pulumi.azurenative.web.WebAppFtpAllowedArgs Maven / Gradle / Ivy

The 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;

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


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

    public static final WebAppFtpAllowedArgs Empty = new WebAppFtpAllowedArgs();

    /**
     * <code>true</code> to allow access to a publishing method; otherwise, <code>false</code>.
     * 
     */
    @Import(name="allow", required=true)
    private Output allow;

    /**
     * @return <code>true</code> to allow access to a publishing method; otherwise, <code>false</code>.
     * 
     */
    public Output allow() {
        return this.allow;
    }

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

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

    /**
     * Name of the app.
     * 
     */
    @Import(name="name", required=true)
    private Output name;

    /**
     * @return Name of the app.
     * 
     */
    public Output name() {
        return this.name;
    }

    /**
     * Name of the resource group to which the resource belongs.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return Name of the resource group to which the resource belongs.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private WebAppFtpAllowedArgs() {}

    private WebAppFtpAllowedArgs(WebAppFtpAllowedArgs $) {
        this.allow = $.allow;
        this.kind = $.kind;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private WebAppFtpAllowedArgs $;

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

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

        /**
         * @param allow <code>true</code> to allow access to a publishing method; otherwise, <code>false</code>.
         * 
         * @return builder
         * 
         */
        public Builder allow(Output allow) {
            $.allow = allow;
            return this;
        }

        /**
         * @param allow <code>true</code> to allow access to a publishing method; otherwise, <code>false</code>.
         * 
         * @return builder
         * 
         */
        public Builder allow(Boolean allow) {
            return allow(Output.of(allow));
        }

        /**
         * @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));
        }

        /**
         * @param name Name of the app.
         * 
         * @return builder
         * 
         */
        public Builder name(Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the app.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param resourceGroupName Name of the resource group to which the resource belongs.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Name of the resource group to which the resource belongs.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        public WebAppFtpAllowedArgs build() {
            if ($.allow == null) {
                throw new MissingRequiredPropertyException("WebAppFtpAllowedArgs", "allow");
            }
            if ($.name == null) {
                throw new MissingRequiredPropertyException("WebAppFtpAllowedArgs", "name");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("WebAppFtpAllowedArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy