All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.compute.inputs.WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs Empty = new WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs();

    /**
     * Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine Scale Set? Possible values are `true` or `false`. Defaults to `false`. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="ultraSsdEnabled")
    private @Nullable Output ultraSsdEnabled;

    /**
     * @return Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine Scale Set? Possible values are `true` or `false`. Defaults to `false`. Changing this forces a new resource to be created.
     * 
     */
    public Optional> ultraSsdEnabled() {
        return Optional.ofNullable(this.ultraSsdEnabled);
    }

    private WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs() {}

    private WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs(WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs $) {
        this.ultraSsdEnabled = $.ultraSsdEnabled;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs $;

        public Builder() {
            $ = new WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs();
        }

        public Builder(WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs defaults) {
            $ = new WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param ultraSsdEnabled Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine Scale Set? Possible values are `true` or `false`. Defaults to `false`. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder ultraSsdEnabled(@Nullable Output ultraSsdEnabled) {
            $.ultraSsdEnabled = ultraSsdEnabled;
            return this;
        }

        /**
         * @param ultraSsdEnabled Should the capacity to enable Data Disks of the `UltraSSD_LRS` storage account type be supported on this Virtual Machine Scale Set? Possible values are `true` or `false`. Defaults to `false`. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder ultraSsdEnabled(Boolean ultraSsdEnabled) {
            return ultraSsdEnabled(Output.of(ultraSsdEnabled));
        }

        public WindowsVirtualMachineScaleSetAdditionalCapabilitiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy