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

com.pulumi.azure.compute.kotlin.outputs.GetImageDataDisk.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.compute.kotlin.outputs

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

/**
 *
 * @property blobUri the URI in Azure storage of the blob used to create the image.
 * @property caching the caching mode for the Data Disk, such as `ReadWrite`, `ReadOnly`, or `None`.
 * @property lun the logical unit number of the data disk.
 * @property managedDiskId the ID of the Managed Disk used as the Data Disk Image.
 * @property sizeGb the size of this Data Disk in GB.
 */
public data class GetImageDataDisk(
    public val blobUri: String,
    public val caching: String,
    public val lun: Int,
    public val managedDiskId: String,
    public val sizeGb: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.GetImageDataDisk):
            GetImageDataDisk = GetImageDataDisk(
            blobUri = javaType.blobUri(),
            caching = javaType.caching(),
            lun = javaType.lun(),
            managedDiskId = javaType.managedDiskId(),
            sizeGb = javaType.sizeGb(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy