com.pulumi.azure.compute.outputs.ScaleSetBootDiagnostics 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 com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ScaleSetBootDiagnostics {
/**
* @return Whether to enable boot diagnostics for the virtual machine. Defaults to `true`.
*
*/
private @Nullable Boolean enabled;
/**
* @return Blob endpoint for the storage account to hold the virtual machine's diagnostic files. This must be the root of a storage account, and not a storage container.
*
*/
private String storageUri;
private ScaleSetBootDiagnostics() {}
/**
* @return Whether to enable boot diagnostics for the virtual machine. Defaults to `true`.
*
*/
public Optional enabled() {
return Optional.ofNullable(this.enabled);
}
/**
* @return Blob endpoint for the storage account to hold the virtual machine's diagnostic files. This must be the root of a storage account, and not a storage container.
*
*/
public String storageUri() {
return this.storageUri;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ScaleSetBootDiagnostics defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean enabled;
private String storageUri;
public Builder() {}
public Builder(ScaleSetBootDiagnostics defaults) {
Objects.requireNonNull(defaults);
this.enabled = defaults.enabled;
this.storageUri = defaults.storageUri;
}
@CustomType.Setter
public Builder enabled(@Nullable Boolean enabled) {
this.enabled = enabled;
return this;
}
@CustomType.Setter
public Builder storageUri(String storageUri) {
if (storageUri == null) {
throw new MissingRequiredPropertyException("ScaleSetBootDiagnostics", "storageUri");
}
this.storageUri = storageUri;
return this;
}
public ScaleSetBootDiagnostics build() {
final var _resultValue = new ScaleSetBootDiagnostics();
_resultValue.enabled = enabled;
_resultValue.storageUri = storageUri;
return _resultValue;
}
}
}