
com.pulumi.azurenative.storagecache.outputs.AmlFilesystemArchiveResponse 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.storagecache.outputs;
import com.pulumi.azurenative.storagecache.outputs.AmlFilesystemArchiveResponseStatus;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AmlFilesystemArchiveResponse {
/**
* @return Lustre file system path to archive relative to the file system root. Specify '/' to archive all modified data.
*
*/
private String filesystemPath;
/**
* @return The status of the archive
*
*/
private AmlFilesystemArchiveResponseStatus status;
private AmlFilesystemArchiveResponse() {}
/**
* @return Lustre file system path to archive relative to the file system root. Specify '/' to archive all modified data.
*
*/
public String filesystemPath() {
return this.filesystemPath;
}
/**
* @return The status of the archive
*
*/
public AmlFilesystemArchiveResponseStatus status() {
return this.status;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AmlFilesystemArchiveResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String filesystemPath;
private AmlFilesystemArchiveResponseStatus status;
public Builder() {}
public Builder(AmlFilesystemArchiveResponse defaults) {
Objects.requireNonNull(defaults);
this.filesystemPath = defaults.filesystemPath;
this.status = defaults.status;
}
@CustomType.Setter
public Builder filesystemPath(String filesystemPath) {
if (filesystemPath == null) {
throw new MissingRequiredPropertyException("AmlFilesystemArchiveResponse", "filesystemPath");
}
this.filesystemPath = filesystemPath;
return this;
}
@CustomType.Setter
public Builder status(AmlFilesystemArchiveResponseStatus status) {
if (status == null) {
throw new MissingRequiredPropertyException("AmlFilesystemArchiveResponse", "status");
}
this.status = status;
return this;
}
public AmlFilesystemArchiveResponse build() {
final var _resultValue = new AmlFilesystemArchiveResponse();
_resultValue.filesystemPath = filesystemPath;
_resultValue.status = status;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy