
com.pulumi.azurenative.netapp.inputs.GetVolumeQuotaRulePlainArgs 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.netapp.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetVolumeQuotaRulePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetVolumeQuotaRulePlainArgs Empty = new GetVolumeQuotaRulePlainArgs();
/**
* The name of the NetApp account
*
*/
@Import(name="accountName", required=true)
private String accountName;
/**
* @return The name of the NetApp account
*
*/
public String accountName() {
return this.accountName;
}
/**
* The name of the capacity pool
*
*/
@Import(name="poolName", required=true)
private String poolName;
/**
* @return The name of the capacity pool
*
*/
public String poolName() {
return this.poolName;
}
/**
* 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 volume
*
*/
@Import(name="volumeName", required=true)
private String volumeName;
/**
* @return The name of the volume
*
*/
public String volumeName() {
return this.volumeName;
}
/**
* The name of volume quota rule
*
*/
@Import(name="volumeQuotaRuleName", required=true)
private String volumeQuotaRuleName;
/**
* @return The name of volume quota rule
*
*/
public String volumeQuotaRuleName() {
return this.volumeQuotaRuleName;
}
private GetVolumeQuotaRulePlainArgs() {}
private GetVolumeQuotaRulePlainArgs(GetVolumeQuotaRulePlainArgs $) {
this.accountName = $.accountName;
this.poolName = $.poolName;
this.resourceGroupName = $.resourceGroupName;
this.volumeName = $.volumeName;
this.volumeQuotaRuleName = $.volumeQuotaRuleName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetVolumeQuotaRulePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetVolumeQuotaRulePlainArgs $;
public Builder() {
$ = new GetVolumeQuotaRulePlainArgs();
}
public Builder(GetVolumeQuotaRulePlainArgs defaults) {
$ = new GetVolumeQuotaRulePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName The name of the NetApp account
*
* @return builder
*
*/
public Builder accountName(String accountName) {
$.accountName = accountName;
return this;
}
/**
* @param poolName The name of the capacity pool
*
* @return builder
*
*/
public Builder poolName(String poolName) {
$.poolName = poolName;
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 volumeName The name of the volume
*
* @return builder
*
*/
public Builder volumeName(String volumeName) {
$.volumeName = volumeName;
return this;
}
/**
* @param volumeQuotaRuleName The name of volume quota rule
*
* @return builder
*
*/
public Builder volumeQuotaRuleName(String volumeQuotaRuleName) {
$.volumeQuotaRuleName = volumeQuotaRuleName;
return this;
}
public GetVolumeQuotaRulePlainArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetVolumeQuotaRulePlainArgs", "accountName");
}
if ($.poolName == null) {
throw new MissingRequiredPropertyException("GetVolumeQuotaRulePlainArgs", "poolName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetVolumeQuotaRulePlainArgs", "resourceGroupName");
}
if ($.volumeName == null) {
throw new MissingRequiredPropertyException("GetVolumeQuotaRulePlainArgs", "volumeName");
}
if ($.volumeQuotaRuleName == null) {
throw new MissingRequiredPropertyException("GetVolumeQuotaRulePlainArgs", "volumeQuotaRuleName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy