![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appservice.kotlin.outputs.SourceControlSlotGithubActionConfiguration.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.Boolean
import kotlin.Suppress
/**
*
* @property codeConfiguration A `code_configuration` block as detailed below. Changing this forces a new resource to be created.
* @property containerConfiguration A `container_configuration` block as detailed below.
* @property generateWorkflowFile Should the service generate the GitHub Action Workflow file. Defaults to `true` Changing this forces a new resource to be created.
* @property linuxAction Denotes this action uses a Linux base image.
*/
public data class SourceControlSlotGithubActionConfiguration(
public val codeConfiguration: SourceControlSlotGithubActionConfigurationCodeConfiguration? = null,
public val containerConfiguration: SourceControlSlotGithubActionConfigurationContainerConfiguration? = null,
public val generateWorkflowFile: Boolean? = null,
public val linuxAction: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.SourceControlSlotGithubActionConfiguration): SourceControlSlotGithubActionConfiguration = SourceControlSlotGithubActionConfiguration(
codeConfiguration = javaType.codeConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.SourceControlSlotGithubActionConfigurationCodeConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
containerConfiguration = javaType.containerConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.appservice.kotlin.outputs.SourceControlSlotGithubActionConfigurationContainerConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
generateWorkflowFile = javaType.generateWorkflowFile().map({ args0 -> args0 }).orElse(null),
linuxAction = javaType.linuxAction().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy