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

com.pulumi.azurenative.workloads.inputs.GetSAPApplicationServerInstancePlainArgs Maven / Gradle / Ivy

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

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final GetSAPApplicationServerInstancePlainArgs Empty = new GetSAPApplicationServerInstancePlainArgs();

    /**
     * The name of SAP Application Server instance resource.
     * 
     */
    @Import(name="applicationInstanceName", required=true)
    private String applicationInstanceName;

    /**
     * @return The name of SAP Application Server instance resource.
     * 
     */
    public String applicationInstanceName() {
        return this.applicationInstanceName;
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The name of the Virtual Instances for SAP solutions resource
     * 
     */
    @Import(name="sapVirtualInstanceName", required=true)
    private String sapVirtualInstanceName;

    /**
     * @return The name of the Virtual Instances for SAP solutions resource
     * 
     */
    public String sapVirtualInstanceName() {
        return this.sapVirtualInstanceName;
    }

    private GetSAPApplicationServerInstancePlainArgs() {}

    private GetSAPApplicationServerInstancePlainArgs(GetSAPApplicationServerInstancePlainArgs $) {
        this.applicationInstanceName = $.applicationInstanceName;
        this.resourceGroupName = $.resourceGroupName;
        this.sapVirtualInstanceName = $.sapVirtualInstanceName;
    }

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

    public static final class Builder {
        private GetSAPApplicationServerInstancePlainArgs $;

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

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

        /**
         * @param applicationInstanceName The name of SAP Application Server instance resource.
         * 
         * @return builder
         * 
         */
        public Builder applicationInstanceName(String applicationInstanceName) {
            $.applicationInstanceName = applicationInstanceName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param sapVirtualInstanceName The name of the Virtual Instances for SAP solutions resource
         * 
         * @return builder
         * 
         */
        public Builder sapVirtualInstanceName(String sapVirtualInstanceName) {
            $.sapVirtualInstanceName = sapVirtualInstanceName;
            return this;
        }

        public GetSAPApplicationServerInstancePlainArgs build() {
            if ($.applicationInstanceName == null) {
                throw new MissingRequiredPropertyException("GetSAPApplicationServerInstancePlainArgs", "applicationInstanceName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetSAPApplicationServerInstancePlainArgs", "resourceGroupName");
            }
            if ($.sapVirtualInstanceName == null) {
                throw new MissingRequiredPropertyException("GetSAPApplicationServerInstancePlainArgs", "sapVirtualInstanceName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy