com.pulumi.gcp.netapp.kotlin.outputs.VolumeReplicationDestinationVolumeParameters.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.netapp.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property description Description for the destination volume.
* @property shareName Share name for destination volume. If not specified, name of source volume's share name will be used.
* @property storagePool Name of an existing storage pool for the destination volume with format: `projects/{{project}}/locations/{{location}}/storagePools/{{poolId}}`
* @property volumeId Name for the destination volume to be created. If not specified, the name of the source volume will be used.
*/
public data class VolumeReplicationDestinationVolumeParameters(
public val description: String? = null,
public val shareName: String? = null,
public val storagePool: String,
public val volumeId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.netapp.outputs.VolumeReplicationDestinationVolumeParameters): VolumeReplicationDestinationVolumeParameters = VolumeReplicationDestinationVolumeParameters(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
shareName = javaType.shareName().map({ args0 -> args0 }).orElse(null),
storagePool = javaType.storagePool(),
volumeId = javaType.volumeId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy