![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appplatform.kotlin.outputs.GetSpringCloudServiceConfigServerGitSetting.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.appplatform.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property httpBasicAuths A `http_basic_auth` block as defined below.
* @property label The default label of the Git repository, which is a branch name, tag name, or commit-id of the repository
* @property repositories One or more `repository` blocks as defined below.
* @property searchPaths An array of strings used to search subdirectories of the Git repository.
* @property sshAuths A `ssh_auth` block as defined below.
* @property uri The URI of the Git repository
*/
public data class GetSpringCloudServiceConfigServerGitSetting(
public val httpBasicAuths: List,
public val label: String,
public val repositories: List,
public val searchPaths: List,
public val sshAuths: List,
public val uri: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appplatform.outputs.GetSpringCloudServiceConfigServerGitSetting): GetSpringCloudServiceConfigServerGitSetting = GetSpringCloudServiceConfigServerGitSetting(
httpBasicAuths = javaType.httpBasicAuths().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appplatform.kotlin.outputs.GetSpringCloudServiceConfigServerGitSettingHttpBasicAuth.Companion.toKotlin(args0)
})
}),
label = javaType.label(),
repositories = javaType.repositories().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appplatform.kotlin.outputs.GetSpringCloudServiceConfigServerGitSettingRepository.Companion.toKotlin(args0)
})
}),
searchPaths = javaType.searchPaths().map({ args0 -> args0 }),
sshAuths = javaType.sshAuths().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appplatform.kotlin.outputs.GetSpringCloudServiceConfigServerGitSettingSshAuth.Companion.toKotlin(args0)
})
}),
uri = javaType.uri(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy