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

com.pulumi.digitalocean.kotlin.outputs.GetAppSpecJobGitlab.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.digitalocean.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property branch The name of the branch to use.
 * @property deployOnPush Whether to automatically deploy new commits made to the repo.
 * @property repo The name of the repo in the format `owner/repo`.
 */
public data class GetAppSpecJobGitlab(
    public val branch: String? = null,
    public val deployOnPush: Boolean? = null,
    public val repo: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.GetAppSpecJobGitlab): GetAppSpecJobGitlab = GetAppSpecJobGitlab(
            branch = javaType.branch().map({ args0 -> args0 }).orElse(null),
            deployOnPush = javaType.deployOnPush().map({ args0 -> args0 }).orElse(null),
            repo = javaType.repo().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy