
com.pulumi.azurenative.baremetalinfrastructure.outputs.HardwareProfileResponse Maven / Gradle / Ivy
// *** 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.baremetalinfrastructure.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class HardwareProfileResponse {
/**
* @return Specifies the Azure Bare Metal Instance SKU.
*
*/
private @Nullable String azureBareMetalInstanceSize;
/**
* @return Name of the hardware type (vendor and/or their product name)
*
*/
private @Nullable String hardwareType;
private HardwareProfileResponse() {}
/**
* @return Specifies the Azure Bare Metal Instance SKU.
*
*/
public Optional azureBareMetalInstanceSize() {
return Optional.ofNullable(this.azureBareMetalInstanceSize);
}
/**
* @return Name of the hardware type (vendor and/or their product name)
*
*/
public Optional hardwareType() {
return Optional.ofNullable(this.hardwareType);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HardwareProfileResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String azureBareMetalInstanceSize;
private @Nullable String hardwareType;
public Builder() {}
public Builder(HardwareProfileResponse defaults) {
Objects.requireNonNull(defaults);
this.azureBareMetalInstanceSize = defaults.azureBareMetalInstanceSize;
this.hardwareType = defaults.hardwareType;
}
@CustomType.Setter
public Builder azureBareMetalInstanceSize(@Nullable String azureBareMetalInstanceSize) {
this.azureBareMetalInstanceSize = azureBareMetalInstanceSize;
return this;
}
@CustomType.Setter
public Builder hardwareType(@Nullable String hardwareType) {
this.hardwareType = hardwareType;
return this;
}
public HardwareProfileResponse build() {
final var _resultValue = new HardwareProfileResponse();
_resultValue.azureBareMetalInstanceSize = azureBareMetalInstanceSize;
_resultValue.hardwareType = hardwareType;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy