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

com.pulumi.aws.storagegateway.kotlin.outputs.GetLocalDiskResult.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.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.storagegateway.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getLocalDisk.
 * @property diskId Disk identifierE.g., `pci-0000:03:00.0-scsi-0:0:0:0`
 * @property diskNode
 * @property diskPath
 * @property gatewayArn
 * @property id The provider-assigned unique ID for this managed resource.
 */
public data class GetLocalDiskResult(
    public val diskId: String,
    public val diskNode: String,
    public val diskPath: String,
    public val gatewayArn: String,
    public val id: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.storagegateway.outputs.GetLocalDiskResult): GetLocalDiskResult = GetLocalDiskResult(
            diskId = javaType.diskId(),
            diskNode = javaType.diskNode(),
            diskPath = javaType.diskPath(),
            gatewayArn = javaType.gatewayArn(),
            id = javaType.id(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy