![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appservice.kotlin.outputs.GetAppServiceSourceControl.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.String
import kotlin.Suppress
/**
*
* @property branch The branch of the remote repository in use.
* @property manualIntegration Limits to manual integration.
* @property repoUrl The URL of the source code repository.
* @property rollbackEnabled Is roll-back enabled for the repository.
* @property useMercurial Uses Mercurial if `true`, otherwise uses Git.
*/
public data class GetAppServiceSourceControl(
public val branch: String,
public val manualIntegration: Boolean,
public val repoUrl: String,
public val rollbackEnabled: Boolean,
public val useMercurial: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetAppServiceSourceControl): GetAppServiceSourceControl = GetAppServiceSourceControl(
branch = javaType.branch(),
manualIntegration = javaType.manualIntegration(),
repoUrl = javaType.repoUrl(),
rollbackEnabled = javaType.rollbackEnabled(),
useMercurial = javaType.useMercurial(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy