com.pulumi.azure.containerservice.kotlin.outputs.GroupInitContainerVolumeGitRepo.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.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property directory Specifies the directory into which the repository should be cloned. Changing this forces a new resource to be created.
* @property revision Specifies the commit hash of the revision to be cloned. If unspecified, the HEAD revision is cloned. Changing this forces a new resource to be created.
* @property url Specifies the Git repository to be cloned. Changing this forces a new resource to be created.
*/
public data class GroupInitContainerVolumeGitRepo(
public val directory: String? = null,
public val revision: String? = null,
public val url: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GroupInitContainerVolumeGitRepo):
GroupInitContainerVolumeGitRepo = GroupInitContainerVolumeGitRepo(
directory = javaType.directory().map({ args0 -> args0 }).orElse(null),
revision = javaType.revision().map({ args0 -> args0 }).orElse(null),
url = javaType.url(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy