com.pulumi.azure.compute.outputs.LinuxVirtualMachineScaleSetBootDiagnostics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.compute.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 LinuxVirtualMachineScaleSetBootDiagnostics {
/**
* @return The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
*
* > **Note:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics.
*
*/
private @Nullable String storageAccountUri;
private LinuxVirtualMachineScaleSetBootDiagnostics() {}
/**
* @return The Primary/Secondary Endpoint for the Azure Storage Account which should be used to store Boot Diagnostics, including Console Output and Screenshots from the Hypervisor.
*
* > **Note:** Passing a null value will utilize a Managed Storage Account to store Boot Diagnostics.
*
*/
public Optional storageAccountUri() {
return Optional.ofNullable(this.storageAccountUri);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LinuxVirtualMachineScaleSetBootDiagnostics defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String storageAccountUri;
public Builder() {}
public Builder(LinuxVirtualMachineScaleSetBootDiagnostics defaults) {
Objects.requireNonNull(defaults);
this.storageAccountUri = defaults.storageAccountUri;
}
@CustomType.Setter
public Builder storageAccountUri(@Nullable String storageAccountUri) {
this.storageAccountUri = storageAccountUri;
return this;
}
public LinuxVirtualMachineScaleSetBootDiagnostics build() {
final var _resultValue = new LinuxVirtualMachineScaleSetBootDiagnostics();
_resultValue.storageAccountUri = storageAccountUri;
return _resultValue;
}
}
}