
com.pulumi.azurenative.workloads.inputs.GetSAPApplicationServerInstancePlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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