com.pulumi.azurenative.networkcloud.outputs.HardwareValidationStatusResponse 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.networkcloud.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class HardwareValidationStatusResponse {
/**
* @return The timestamp of the hardware validation execution.
*
*/
private String lastValidationTime;
/**
* @return The outcome of the hardware validation.
*
*/
private String result;
private HardwareValidationStatusResponse() {}
/**
* @return The timestamp of the hardware validation execution.
*
*/
public String lastValidationTime() {
return this.lastValidationTime;
}
/**
* @return The outcome of the hardware validation.
*
*/
public String result() {
return this.result;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HardwareValidationStatusResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String lastValidationTime;
private String result;
public Builder() {}
public Builder(HardwareValidationStatusResponse defaults) {
Objects.requireNonNull(defaults);
this.lastValidationTime = defaults.lastValidationTime;
this.result = defaults.result;
}
@CustomType.Setter
public Builder lastValidationTime(String lastValidationTime) {
if (lastValidationTime == null) {
throw new MissingRequiredPropertyException("HardwareValidationStatusResponse", "lastValidationTime");
}
this.lastValidationTime = lastValidationTime;
return this;
}
@CustomType.Setter
public Builder result(String result) {
if (result == null) {
throw new MissingRequiredPropertyException("HardwareValidationStatusResponse", "result");
}
this.result = result;
return this;
}
public HardwareValidationStatusResponse build() {
final var _resultValue = new HardwareValidationStatusResponse();
_resultValue.lastValidationTime = lastValidationTime;
_resultValue.result = result;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy