com.pulumi.azurenative.databox.outputs.DataBoxDiskGranularCopyLogDetailsResponse 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 DataBoxDiskGranularCopyLogDetailsResponse {
/**
* @return Account id.
*
*/
private String accountId;
/**
* @return Indicates the type of job details.
* Expected value is 'DataBoxCustomerDisk'.
*
*/
private String copyLogDetailsType;
/**
* @return Link for copy error logs.
*
*/
private String errorLogLink;
/**
* @return Disk Serial Number.
*
*/
private String serialNumber;
/**
* @return Link for copy verbose logs.
*
*/
private String verboseLogLink;
private DataBoxDiskGranularCopyLogDetailsResponse() {}
/**
* @return Account id.
*
*/
public String accountId() {
return this.accountId;
}
/**
* @return Indicates the type of job details.
* Expected value is 'DataBoxCustomerDisk'.
*
*/
public String copyLogDetailsType() {
return this.copyLogDetailsType;
}
/**
* @return Link for copy error logs.
*
*/
public String errorLogLink() {
return this.errorLogLink;
}
/**
* @return Disk Serial Number.
*
*/
public String serialNumber() {
return this.serialNumber;
}
/**
* @return Link for copy verbose logs.
*
*/
public String verboseLogLink() {
return this.verboseLogLink;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataBoxDiskGranularCopyLogDetailsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String accountId;
private String copyLogDetailsType;
private String errorLogLink;
private String serialNumber;
private String verboseLogLink;
public Builder() {}
public Builder(DataBoxDiskGranularCopyLogDetailsResponse defaults) {
Objects.requireNonNull(defaults);
this.accountId = defaults.accountId;
this.copyLogDetailsType = defaults.copyLogDetailsType;
this.errorLogLink = defaults.errorLogLink;
this.serialNumber = defaults.serialNumber;
this.verboseLogLink = defaults.verboseLogLink;
}
@CustomType.Setter
public Builder accountId(String accountId) {
if (accountId == null) {
throw new MissingRequiredPropertyException("DataBoxDiskGranularCopyLogDetailsResponse", "accountId");
}
this.accountId = accountId;
return this;
}
@CustomType.Setter
public Builder copyLogDetailsType(String copyLogDetailsType) {
if (copyLogDetailsType == null) {
throw new MissingRequiredPropertyException("DataBoxDiskGranularCopyLogDetailsResponse", "copyLogDetailsType");
}
this.copyLogDetailsType = copyLogDetailsType;
return this;
}
@CustomType.Setter
public Builder errorLogLink(String errorLogLink) {
if (errorLogLink == null) {
throw new MissingRequiredPropertyException("DataBoxDiskGranularCopyLogDetailsResponse", "errorLogLink");
}
this.errorLogLink = errorLogLink;
return this;
}
@CustomType.Setter
public Builder serialNumber(String serialNumber) {
if (serialNumber == null) {
throw new MissingRequiredPropertyException("DataBoxDiskGranularCopyLogDetailsResponse", "serialNumber");
}
this.serialNumber = serialNumber;
return this;
}
@CustomType.Setter
public Builder verboseLogLink(String verboseLogLink) {
if (verboseLogLink == null) {
throw new MissingRequiredPropertyException("DataBoxDiskGranularCopyLogDetailsResponse", "verboseLogLink");
}
this.verboseLogLink = verboseLogLink;
return this;
}
public DataBoxDiskGranularCopyLogDetailsResponse build() {
final var _resultValue = new DataBoxDiskGranularCopyLogDetailsResponse();
_resultValue.accountId = accountId;
_resultValue.copyLogDetailsType = copyLogDetailsType;
_resultValue.errorLogLink = errorLogLink;
_resultValue.serialNumber = serialNumber;
_resultValue.verboseLogLink = verboseLogLink;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy