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

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