com.pulumi.azurenative.batch.outputs.DiffDiskSettingsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.batch.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 DiffDiskSettingsResponse {
/**
* @return This property can be used by user in the request to choose which location the operating system should be in. e.g., cache disk space for Ephemeral OS disk provisioning. For more information on Ephemeral OS disk size requirements, please refer to Ephemeral OS disk size requirements for Windows VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/windows/ephemeral-os-disks#size-requirements and Linux VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/linux/ephemeral-os-disks#size-requirements.
*
*/
private @Nullable String placement;
private DiffDiskSettingsResponse() {}
/**
* @return This property can be used by user in the request to choose which location the operating system should be in. e.g., cache disk space for Ephemeral OS disk provisioning. For more information on Ephemeral OS disk size requirements, please refer to Ephemeral OS disk size requirements for Windows VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/windows/ephemeral-os-disks#size-requirements and Linux VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/linux/ephemeral-os-disks#size-requirements.
*
*/
public Optional placement() {
return Optional.ofNullable(this.placement);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DiffDiskSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String placement;
public Builder() {}
public Builder(DiffDiskSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.placement = defaults.placement;
}
@CustomType.Setter
public Builder placement(@Nullable String placement) {
this.placement = placement;
return this;
}
public DiffDiskSettingsResponse build() {
final var _resultValue = new DiffDiskSettingsResponse();
_resultValue.placement = placement;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy