
com.pulumi.azurenative.appplatform.kotlin.outputs.ConfigurationServiceGitPropertyResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.appplatform.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* Property of git environment.
* @property repositories Repositories of Application Configuration Service git property.
*/
public data class ConfigurationServiceGitPropertyResponse(
public val repositories: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.appplatform.outputs.ConfigurationServiceGitPropertyResponse): ConfigurationServiceGitPropertyResponse = ConfigurationServiceGitPropertyResponse(
repositories = javaType.repositories().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.appplatform.kotlin.outputs.ConfigurationServiceGitRepositoryResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy