com.pulumi.azurenative.batch.inputs.GetApplicationPlainArgs 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.batch.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetApplicationPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetApplicationPlainArgs Empty = new GetApplicationPlainArgs();
/**
* The name of the Batch account.
*
*/
@Import(name="accountName", required=true)
private String accountName;
/**
* @return The name of the Batch account.
*
*/
public String accountName() {
return this.accountName;
}
/**
* The name of the application. This must be unique within the account.
*
*/
@Import(name="applicationName", required=true)
private String applicationName;
/**
* @return The name of the application. This must be unique within the account.
*
*/
public String applicationName() {
return this.applicationName;
}
/**
* The name of the resource group that contains the Batch account.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group that contains the Batch account.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetApplicationPlainArgs() {}
private GetApplicationPlainArgs(GetApplicationPlainArgs $) {
this.accountName = $.accountName;
this.applicationName = $.applicationName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetApplicationPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetApplicationPlainArgs $;
public Builder() {
$ = new GetApplicationPlainArgs();
}
public Builder(GetApplicationPlainArgs defaults) {
$ = new GetApplicationPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName The name of the Batch account.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
$.accountName = accountName;
return this;
}
/**
* @param applicationName The name of the application. This must be unique within the account.
*
* @return builder
*
*/
public Builder applicationName(String applicationName) {
$.applicationName = applicationName;
return this;
}
/**
* @param resourceGroupName The name of the resource group that contains the Batch account.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetApplicationPlainArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetApplicationPlainArgs", "accountName");
}
if ($.applicationName == null) {
throw new MissingRequiredPropertyException("GetApplicationPlainArgs", "applicationName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetApplicationPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy