![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appservice.kotlin.outputs.SourceControlSlotGithubActionConfigurationContainerConfiguration.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.appservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property imageName The image name for the build. Changing this forces a new resource to be created.
* @property registryPassword The password used to upload the image to the container registry. Changing this forces a new resource to be created.
* @property registryUrl The server URL for the container registry where the build will be hosted. Changing this forces a new resource to be created.
* @property registryUsername The username used to upload the image to the container registry. Changing this forces a new resource to be created.
*/
public data class SourceControlSlotGithubActionConfigurationContainerConfiguration(
public val imageName: String,
public val registryPassword: String? = null,
public val registryUrl: String,
public val registryUsername: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.SourceControlSlotGithubActionConfigurationContainerConfiguration): SourceControlSlotGithubActionConfigurationContainerConfiguration =
SourceControlSlotGithubActionConfigurationContainerConfiguration(
imageName = javaType.imageName(),
registryPassword = javaType.registryPassword().map({ args0 -> args0 }).orElse(null),
registryUrl = javaType.registryUrl(),
registryUsername = javaType.registryUsername().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy