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

com.pulumi.azure.containerservice.kotlin.outputs.GroupInitContainerVolumeGitRepo.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.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