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

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

There is a newer version: 2.78.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.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetWebAppDeploymentPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetWebAppDeploymentPlainArgs Empty = new GetWebAppDeploymentPlainArgs();

    /**
     * Deployment ID.
     * 
     */
    @Import(name="id", required=true)
    private String id;

    /**
     * @return Deployment ID.
     * 
     */
    public String id() {
        return this.id;
    }

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

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

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

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

    private GetWebAppDeploymentPlainArgs() {}

    private GetWebAppDeploymentPlainArgs(GetWebAppDeploymentPlainArgs $) {
        this.id = $.id;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetWebAppDeploymentPlainArgs $;

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

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

        /**
         * @param id Deployment ID.
         * 
         * @return builder
         * 
         */
        public Builder id(String id) {
            $.id = id;
            return this;
        }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy