![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.elasticsan.kotlin.outputs.GetVolumeSnapshotResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.elasticsan.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getVolumeSnapshot.
* @property id The provider-assigned unique ID for this managed resource.
* @property name
* @property sourceId The resource ID from which the Snapshot is created.
* @property sourceVolumeSizeInGib The size of source volume.
* @property volumeGroupId
* @property volumeName The source volume name of the Snapshot.
*/
public data class GetVolumeSnapshotResult(
public val id: String,
public val name: String,
public val sourceId: String,
public val sourceVolumeSizeInGib: Int,
public val volumeGroupId: String,
public val volumeName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.elasticsan.outputs.GetVolumeSnapshotResult): GetVolumeSnapshotResult = GetVolumeSnapshotResult(
id = javaType.id(),
name = javaType.name(),
sourceId = javaType.sourceId(),
sourceVolumeSizeInGib = javaType.sourceVolumeSizeInGib(),
volumeGroupId = javaType.volumeGroupId(),
volumeName = javaType.volumeName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy