com.pulumi.azurenative.storagesync.outputs.CloudTieringDatePolicyStatusResponse 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 CloudTieringDatePolicyStatusResponse {
/**
* @return Last updated timestamp
*
*/
private String lastUpdatedTimestamp;
/**
* @return Most recent access time of tiered files
*
*/
private String tieredFilesMostRecentAccessTimestamp;
private CloudTieringDatePolicyStatusResponse() {}
/**
* @return Last updated timestamp
*
*/
public String lastUpdatedTimestamp() {
return this.lastUpdatedTimestamp;
}
/**
* @return Most recent access time of tiered files
*
*/
public String tieredFilesMostRecentAccessTimestamp() {
return this.tieredFilesMostRecentAccessTimestamp;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CloudTieringDatePolicyStatusResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String lastUpdatedTimestamp;
private String tieredFilesMostRecentAccessTimestamp;
public Builder() {}
public Builder(CloudTieringDatePolicyStatusResponse defaults) {
Objects.requireNonNull(defaults);
this.lastUpdatedTimestamp = defaults.lastUpdatedTimestamp;
this.tieredFilesMostRecentAccessTimestamp = defaults.tieredFilesMostRecentAccessTimestamp;
}
@CustomType.Setter
public Builder lastUpdatedTimestamp(String lastUpdatedTimestamp) {
if (lastUpdatedTimestamp == null) {
throw new MissingRequiredPropertyException("CloudTieringDatePolicyStatusResponse", "lastUpdatedTimestamp");
}
this.lastUpdatedTimestamp = lastUpdatedTimestamp;
return this;
}
@CustomType.Setter
public Builder tieredFilesMostRecentAccessTimestamp(String tieredFilesMostRecentAccessTimestamp) {
if (tieredFilesMostRecentAccessTimestamp == null) {
throw new MissingRequiredPropertyException("CloudTieringDatePolicyStatusResponse", "tieredFilesMostRecentAccessTimestamp");
}
this.tieredFilesMostRecentAccessTimestamp = tieredFilesMostRecentAccessTimestamp;
return this;
}
public CloudTieringDatePolicyStatusResponse build() {
final var _resultValue = new CloudTieringDatePolicyStatusResponse();
_resultValue.lastUpdatedTimestamp = lastUpdatedTimestamp;
_resultValue.tieredFilesMostRecentAccessTimestamp = tieredFilesMostRecentAccessTimestamp;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy