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

com.pulumi.azure.appservice.kotlin.outputs.SourceControlSlotGithubActionConfigurationContainerConfiguration.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.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