GitSourceArgs

data class GitSourceArgs(val dir: Output<String>? = null, val revision: Output<String>? = null, val url: Output<String>? = null) : ConvertibleToJava<GitSourceArgs>

Location of the source in any accessible Git repository.

Constructors

Link copied to clipboard
fun GitSourceArgs(dir: Output<String>? = null, revision: Output<String>? = null, url: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val dir: Output<String>? = null

Directory, relative to the source root, in which to run the build. This must be a relative path. If a step's dir is specified and is an absolute path, this value is ignored for that step's execution.

Link copied to clipboard
val revision: Output<String>? = null

The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. Cloud Build uses git fetch to fetch the revision from the Git repository; therefore make sure that the string you provide for revision is parsable by the command. For information on string values accepted by git fetch, see https://git-scm.com/docs/gitrevisions#_specifying_revisions. For information on git fetch, see https://git-scm.com/docs/git-fetch.

Link copied to clipboard
val url: Output<String>? = null

Location of the Git repo to build. This will be used as a git remote, see https://git-scm.com/docs/git-remote.