SourceContextArgs

data class SourceContextArgs(val cloudRepo: Output<CloudRepoSourceContextArgs>? = null, val gerrit: Output<GerritSourceContextArgs>? = null, val git: Output<GitSourceContextArgs>? = null, val labels: Output<Map<String, String>>? = null) : ConvertibleToJava<SourceContextArgs>

A SourceContext is a reference to a tree of files. A SourceContext together with a path point to a unique revision of a single file or directory.

Constructors

Link copied to clipboard
fun SourceContextArgs(cloudRepo: Output<CloudRepoSourceContextArgs>? = null, gerrit: Output<GerritSourceContextArgs>? = null, git: Output<GitSourceContextArgs>? = null, labels: Output<Map<String, String>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SourceContextArgs

Properties

Link copied to clipboard

A SourceContext referring to a revision in a Google Cloud Source Repo.

Link copied to clipboard
val gerrit: Output<GerritSourceContextArgs>? = null

A SourceContext referring to a Gerrit project.

Link copied to clipboard
val git: Output<GitSourceContextArgs>? = null

A SourceContext referring to any third party Git repo (e.g., GitHub).

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

Labels with user defined metadata.