com.pulumi.azurenative.databox.outputs.ExportDiskDetailsResponse 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.databox.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ExportDiskDetailsResponse {
/**
* @return Path to backed up manifest, only returned if enableManifestBackup is true.
*
*/
private String backupManifestCloudPath;
/**
* @return The relative path of the manifest file on the disk.
*
*/
private String manifestFile;
/**
* @return The Base16-encoded MD5 hash of the manifest file on the disk.
*
*/
private String manifestHash;
private ExportDiskDetailsResponse() {}
/**
* @return Path to backed up manifest, only returned if enableManifestBackup is true.
*
*/
public String backupManifestCloudPath() {
return this.backupManifestCloudPath;
}
/**
* @return The relative path of the manifest file on the disk.
*
*/
public String manifestFile() {
return this.manifestFile;
}
/**
* @return The Base16-encoded MD5 hash of the manifest file on the disk.
*
*/
public String manifestHash() {
return this.manifestHash;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ExportDiskDetailsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String backupManifestCloudPath;
private String manifestFile;
private String manifestHash;
public Builder() {}
public Builder(ExportDiskDetailsResponse defaults) {
Objects.requireNonNull(defaults);
this.backupManifestCloudPath = defaults.backupManifestCloudPath;
this.manifestFile = defaults.manifestFile;
this.manifestHash = defaults.manifestHash;
}
@CustomType.Setter
public Builder backupManifestCloudPath(String backupManifestCloudPath) {
if (backupManifestCloudPath == null) {
throw new MissingRequiredPropertyException("ExportDiskDetailsResponse", "backupManifestCloudPath");
}
this.backupManifestCloudPath = backupManifestCloudPath;
return this;
}
@CustomType.Setter
public Builder manifestFile(String manifestFile) {
if (manifestFile == null) {
throw new MissingRequiredPropertyException("ExportDiskDetailsResponse", "manifestFile");
}
this.manifestFile = manifestFile;
return this;
}
@CustomType.Setter
public Builder manifestHash(String manifestHash) {
if (manifestHash == null) {
throw new MissingRequiredPropertyException("ExportDiskDetailsResponse", "manifestHash");
}
this.manifestHash = manifestHash;
return this;
}
public ExportDiskDetailsResponse build() {
final var _resultValue = new ExportDiskDetailsResponse();
_resultValue.backupManifestCloudPath = backupManifestCloudPath;
_resultValue.manifestFile = manifestFile;
_resultValue.manifestHash = manifestHash;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy