
com.pulumi.azurenative.azurelargeinstance.outputs.StorageBillingPropertiesResponse 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.azurelargeinstance.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class StorageBillingPropertiesResponse {
/**
* @return the billing mode for the storage instance
*
*/
private @Nullable String billingMode;
/**
* @return the SKU type that is provisioned
*
*/
private @Nullable String sku;
private StorageBillingPropertiesResponse() {}
/**
* @return the billing mode for the storage instance
*
*/
public Optional billingMode() {
return Optional.ofNullable(this.billingMode);
}
/**
* @return the SKU type that is provisioned
*
*/
public Optional sku() {
return Optional.ofNullable(this.sku);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(StorageBillingPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String billingMode;
private @Nullable String sku;
public Builder() {}
public Builder(StorageBillingPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.billingMode = defaults.billingMode;
this.sku = defaults.sku;
}
@CustomType.Setter
public Builder billingMode(@Nullable String billingMode) {
this.billingMode = billingMode;
return this;
}
@CustomType.Setter
public Builder sku(@Nullable String sku) {
this.sku = sku;
return this;
}
public StorageBillingPropertiesResponse build() {
final var _resultValue = new StorageBillingPropertiesResponse();
_resultValue.billingMode = billingMode;
_resultValue.sku = sku;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy