
com.pulumi.azurenative.baremetalinfrastructure.outputs.GetAzureBareMetalInstanceResult 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.azurenative.baremetalinfrastructure.outputs.HardwareProfileResponse;
import com.pulumi.azurenative.baremetalinfrastructure.outputs.NetworkProfileResponse;
import com.pulumi.azurenative.baremetalinfrastructure.outputs.OSProfileResponse;
import com.pulumi.azurenative.baremetalinfrastructure.outputs.StorageProfileResponse;
import com.pulumi.azurenative.baremetalinfrastructure.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetAzureBareMetalInstanceResult {
/**
* @return Specifies the Azure Bare Metal Instance unique ID.
*
*/
private @Nullable String azureBareMetalInstanceId;
/**
* @return Specifies the hardware settings for the Azure Bare Metal Instance.
*
*/
private @Nullable HardwareProfileResponse hardwareProfile;
/**
* @return Hardware revision of an Azure Bare Metal Instance
*
*/
private @Nullable String hwRevision;
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
private String id;
/**
* @return The geo-location where the resource lives
*
*/
private String location;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return Specifies the network settings for the Azure Bare Metal Instance.
*
*/
private @Nullable NetworkProfileResponse networkProfile;
/**
* @return Specifies the operating system settings for the Azure Bare Metal Instance.
*
*/
private @Nullable OSProfileResponse osProfile;
/**
* @return ARM ID of another AzureBareMetalInstance that will share a network with this AzureBareMetalInstance
*
*/
private @Nullable String partnerNodeId;
/**
* @return Resource power state
*
*/
private @Nullable String powerState;
/**
* @return State of provisioning of the AzureBareMetalInstance
*
*/
private String provisioningState;
/**
* @return Resource proximity placement group
*
*/
private @Nullable String proximityPlacementGroup;
/**
* @return Specifies the storage settings for the Azure Bare Metal Instance disks.
*
*/
private @Nullable StorageProfileResponse storageProfile;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
private SystemDataResponse systemData;
/**
* @return Resource tags.
*
*/
private @Nullable Map tags;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
private String type;
private GetAzureBareMetalInstanceResult() {}
/**
* @return Specifies the Azure Bare Metal Instance unique ID.
*
*/
public Optional azureBareMetalInstanceId() {
return Optional.ofNullable(this.azureBareMetalInstanceId);
}
/**
* @return Specifies the hardware settings for the Azure Bare Metal Instance.
*
*/
public Optional hardwareProfile() {
return Optional.ofNullable(this.hardwareProfile);
}
/**
* @return Hardware revision of an Azure Bare Metal Instance
*
*/
public Optional hwRevision() {
return Optional.ofNullable(this.hwRevision);
}
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
public String id() {
return this.id;
}
/**
* @return The geo-location where the resource lives
*
*/
public String location() {
return this.location;
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return Specifies the network settings for the Azure Bare Metal Instance.
*
*/
public Optional networkProfile() {
return Optional.ofNullable(this.networkProfile);
}
/**
* @return Specifies the operating system settings for the Azure Bare Metal Instance.
*
*/
public Optional osProfile() {
return Optional.ofNullable(this.osProfile);
}
/**
* @return ARM ID of another AzureBareMetalInstance that will share a network with this AzureBareMetalInstance
*
*/
public Optional partnerNodeId() {
return Optional.ofNullable(this.partnerNodeId);
}
/**
* @return Resource power state
*
*/
public Optional powerState() {
return Optional.ofNullable(this.powerState);
}
/**
* @return State of provisioning of the AzureBareMetalInstance
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Resource proximity placement group
*
*/
public Optional proximityPlacementGroup() {
return Optional.ofNullable(this.proximityPlacementGroup);
}
/**
* @return Specifies the storage settings for the Azure Bare Metal Instance disks.
*
*/
public Optional storageProfile() {
return Optional.ofNullable(this.storageProfile);
}
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return Resource tags.
*
*/
public Map tags() {
return this.tags == null ? Map.of() : this.tags;
}
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAzureBareMetalInstanceResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String azureBareMetalInstanceId;
private @Nullable HardwareProfileResponse hardwareProfile;
private @Nullable String hwRevision;
private String id;
private String location;
private String name;
private @Nullable NetworkProfileResponse networkProfile;
private @Nullable OSProfileResponse osProfile;
private @Nullable String partnerNodeId;
private @Nullable String powerState;
private String provisioningState;
private @Nullable String proximityPlacementGroup;
private @Nullable StorageProfileResponse storageProfile;
private SystemDataResponse systemData;
private @Nullable Map tags;
private String type;
public Builder() {}
public Builder(GetAzureBareMetalInstanceResult defaults) {
Objects.requireNonNull(defaults);
this.azureBareMetalInstanceId = defaults.azureBareMetalInstanceId;
this.hardwareProfile = defaults.hardwareProfile;
this.hwRevision = defaults.hwRevision;
this.id = defaults.id;
this.location = defaults.location;
this.name = defaults.name;
this.networkProfile = defaults.networkProfile;
this.osProfile = defaults.osProfile;
this.partnerNodeId = defaults.partnerNodeId;
this.powerState = defaults.powerState;
this.provisioningState = defaults.provisioningState;
this.proximityPlacementGroup = defaults.proximityPlacementGroup;
this.storageProfile = defaults.storageProfile;
this.systemData = defaults.systemData;
this.tags = defaults.tags;
this.type = defaults.type;
}
@CustomType.Setter
public Builder azureBareMetalInstanceId(@Nullable String azureBareMetalInstanceId) {
this.azureBareMetalInstanceId = azureBareMetalInstanceId;
return this;
}
@CustomType.Setter
public Builder hardwareProfile(@Nullable HardwareProfileResponse hardwareProfile) {
this.hardwareProfile = hardwareProfile;
return this;
}
@CustomType.Setter
public Builder hwRevision(@Nullable String hwRevision) {
this.hwRevision = hwRevision;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetAzureBareMetalInstanceResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("GetAzureBareMetalInstanceResult", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetAzureBareMetalInstanceResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder networkProfile(@Nullable NetworkProfileResponse networkProfile) {
this.networkProfile = networkProfile;
return this;
}
@CustomType.Setter
public Builder osProfile(@Nullable OSProfileResponse osProfile) {
this.osProfile = osProfile;
return this;
}
@CustomType.Setter
public Builder partnerNodeId(@Nullable String partnerNodeId) {
this.partnerNodeId = partnerNodeId;
return this;
}
@CustomType.Setter
public Builder powerState(@Nullable String powerState) {
this.powerState = powerState;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetAzureBareMetalInstanceResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder proximityPlacementGroup(@Nullable String proximityPlacementGroup) {
this.proximityPlacementGroup = proximityPlacementGroup;
return this;
}
@CustomType.Setter
public Builder storageProfile(@Nullable StorageProfileResponse storageProfile) {
this.storageProfile = storageProfile;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetAzureBareMetalInstanceResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder tags(@Nullable Map tags) {
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetAzureBareMetalInstanceResult", "type");
}
this.type = type;
return this;
}
public GetAzureBareMetalInstanceResult build() {
final var _resultValue = new GetAzureBareMetalInstanceResult();
_resultValue.azureBareMetalInstanceId = azureBareMetalInstanceId;
_resultValue.hardwareProfile = hardwareProfile;
_resultValue.hwRevision = hwRevision;
_resultValue.id = id;
_resultValue.location = location;
_resultValue.name = name;
_resultValue.networkProfile = networkProfile;
_resultValue.osProfile = osProfile;
_resultValue.partnerNodeId = partnerNodeId;
_resultValue.powerState = powerState;
_resultValue.provisioningState = provisioningState;
_resultValue.proximityPlacementGroup = proximityPlacementGroup;
_resultValue.storageProfile = storageProfile;
_resultValue.systemData = systemData;
_resultValue.tags = tags;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy