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

com.pulumi.azure.workloadssap.kotlin.outputs.SingleNodeVirtualInstanceSingleServerConfigurationDiskVolumeConfiguration.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.workloadssap.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property numberOfDisks The total number of disks required for the concerned volume. Possible values are at least `1`. Changing this forces a new resource to be created.
 * @property sizeInGb The size of the Disk in GB. Changing this forces a new resource to be created.
 * @property skuName The name of the Disk SKU. Possible values are `Premium_LRS`, `PremiumV2_LRS`, `Premium_ZRS`, `Standard_LRS`, `StandardSSD_LRS`, `StandardSSD_ZRS` and `UltraSSD_LRS`. Changing this forces a new resource to be created.
 * @property volumeName Specifies the volumn name of the database disk. Possible values are `backup`, `hana/data`, `hana/log`, `hana/shared`, `os` and `usr/sap`. Changing this forces a new resource to be created.
 */
public data class SingleNodeVirtualInstanceSingleServerConfigurationDiskVolumeConfiguration(
    public val numberOfDisks: Int,
    public val sizeInGb: Int,
    public val skuName: String,
    public val volumeName: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.workloadssap.outputs.SingleNodeVirtualInstanceSingleServerConfigurationDiskVolumeConfiguration):
            SingleNodeVirtualInstanceSingleServerConfigurationDiskVolumeConfiguration =
            SingleNodeVirtualInstanceSingleServerConfigurationDiskVolumeConfiguration(
                numberOfDisks = javaType.numberOfDisks(),
                sizeInGb = javaType.sizeInGb(),
                skuName = javaType.skuName(),
                volumeName = javaType.volumeName(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy