![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.appplatform.kotlin.inputs.ConfigurationServiceGitPropertyArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.appplatform.kotlin.inputs
import com.pulumi.azurenative.appplatform.inputs.ConfigurationServiceGitPropertyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Property of git environment.
* @property repositories Repositories of Application Configuration Service git property.
*/
public data class ConfigurationServiceGitPropertyArgs(
public val repositories: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.appplatform.inputs.ConfigurationServiceGitPropertyArgs =
com.pulumi.azurenative.appplatform.inputs.ConfigurationServiceGitPropertyArgs.builder()
.repositories(
repositories?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ConfigurationServiceGitPropertyArgs].
*/
@PulumiTagMarker
public class ConfigurationServiceGitPropertyArgsBuilder internal constructor() {
private var repositories: Output>? = null
/**
* @param value Repositories of Application Configuration Service git property.
*/
@JvmName("bjwltdudchjneqsr")
public suspend fun repositories(`value`: Output>) {
this.repositories = value
}
@JvmName("prcsyvhoughguguk")
public suspend fun repositories(vararg values: Output) {
this.repositories = Output.all(values.asList())
}
/**
* @param values Repositories of Application Configuration Service git property.
*/
@JvmName("elqyckrjwjxcedad")
public suspend fun repositories(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy