
com.pulumi.azurenative.network.outputs.VirtualNetworkGatewaySkuResponse 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.network.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class VirtualNetworkGatewaySkuResponse {
/**
* @return The capacity.
*
*/
private Integer capacity;
/**
* @return Gateway SKU name.
*
*/
private @Nullable String name;
/**
* @return Gateway SKU tier.
*
*/
private @Nullable String tier;
private VirtualNetworkGatewaySkuResponse() {}
/**
* @return The capacity.
*
*/
public Integer capacity() {
return this.capacity;
}
/**
* @return Gateway SKU name.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return Gateway SKU tier.
*
*/
public Optional tier() {
return Optional.ofNullable(this.tier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VirtualNetworkGatewaySkuResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer capacity;
private @Nullable String name;
private @Nullable String tier;
public Builder() {}
public Builder(VirtualNetworkGatewaySkuResponse defaults) {
Objects.requireNonNull(defaults);
this.capacity = defaults.capacity;
this.name = defaults.name;
this.tier = defaults.tier;
}
@CustomType.Setter
public Builder capacity(Integer capacity) {
if (capacity == null) {
throw new MissingRequiredPropertyException("VirtualNetworkGatewaySkuResponse", "capacity");
}
this.capacity = capacity;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder tier(@Nullable String tier) {
this.tier = tier;
return this;
}
public VirtualNetworkGatewaySkuResponse build() {
final var _resultValue = new VirtualNetworkGatewaySkuResponse();
_resultValue.capacity = capacity;
_resultValue.name = name;
_resultValue.tier = tier;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy