![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.workloadssap.outputs.SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk 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.workloadssap.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk {
/**
* @return A list of full names of Data Disks per Volume. Changing this forces a new resource to be created.
*
*/
private List names;
/**
* @return The name of the Volume. The only possible value is `default`. Changing this forces a new resource to be created.
*
*/
private String volumeName;
private SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk() {}
/**
* @return A list of full names of Data Disks per Volume. Changing this forces a new resource to be created.
*
*/
public List names() {
return this.names;
}
/**
* @return The name of the Volume. The only possible value is `default`. Changing this forces a new resource to be created.
*
*/
public String volumeName() {
return this.volumeName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List names;
private String volumeName;
public Builder() {}
public Builder(SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk defaults) {
Objects.requireNonNull(defaults);
this.names = defaults.names;
this.volumeName = defaults.volumeName;
}
@CustomType.Setter
public Builder names(List names) {
if (names == null) {
throw new MissingRequiredPropertyException("SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk", "names");
}
this.names = names;
return this;
}
public Builder names(String... names) {
return names(List.of(names));
}
@CustomType.Setter
public Builder volumeName(String volumeName) {
if (volumeName == null) {
throw new MissingRequiredPropertyException("SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk", "volumeName");
}
this.volumeName = volumeName;
return this;
}
public SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk build() {
final var _resultValue = new SingleNodeVirtualInstanceSingleServerConfigurationVirtualMachineResourceNamesDataDisk();
_resultValue.names = names;
_resultValue.volumeName = volumeName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy