
com.pulumi.azurenative.storagesync.outputs.CloudTieringLowDiskModeResponse 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.storagesync.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class CloudTieringLowDiskModeResponse {
/**
* @return Last updated timestamp
*
*/
private String lastUpdatedTimestamp;
/**
* @return Low disk mode state
*
*/
private String state;
private CloudTieringLowDiskModeResponse() {}
/**
* @return Last updated timestamp
*
*/
public String lastUpdatedTimestamp() {
return this.lastUpdatedTimestamp;
}
/**
* @return Low disk mode state
*
*/
public String state() {
return this.state;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CloudTieringLowDiskModeResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String lastUpdatedTimestamp;
private String state;
public Builder() {}
public Builder(CloudTieringLowDiskModeResponse defaults) {
Objects.requireNonNull(defaults);
this.lastUpdatedTimestamp = defaults.lastUpdatedTimestamp;
this.state = defaults.state;
}
@CustomType.Setter
public Builder lastUpdatedTimestamp(String lastUpdatedTimestamp) {
if (lastUpdatedTimestamp == null) {
throw new MissingRequiredPropertyException("CloudTieringLowDiskModeResponse", "lastUpdatedTimestamp");
}
this.lastUpdatedTimestamp = lastUpdatedTimestamp;
return this;
}
@CustomType.Setter
public Builder state(String state) {
if (state == null) {
throw new MissingRequiredPropertyException("CloudTieringLowDiskModeResponse", "state");
}
this.state = state;
return this;
}
public CloudTieringLowDiskModeResponse build() {
final var _resultValue = new CloudTieringLowDiskModeResponse();
_resultValue.lastUpdatedTimestamp = lastUpdatedTimestamp;
_resultValue.state = state;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy