Class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GitSource
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1GitSource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
Location of the source in any accessible Git repository.
Instance Attribute Summary collapse
-
#dir ⇒ String
Directory, relative to the source root, in which to run the build.
-
#revision ⇒ String
The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.
-
#url ⇒ String
Location of the Git repo to build.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsCloudbuildV1GitSource
constructor
A new instance of GoogleDevtoolsCloudbuildV1GitSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsCloudbuildV1GitSource
Returns a new instance of GoogleDevtoolsCloudbuildV1GitSource.
2412 2413 2414 |
# File 'lib/google/apis/run_v1/classes.rb', line 2412 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dir ⇒ String
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.
Corresponds to the JSON property dir
2393 2394 2395 |
# File 'lib/google/apis/run_v1/classes.rb', line 2393 def dir @dir end |
#revision ⇒ String
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.
Corresponds to the JSON property revision
2404 2405 2406 |
# File 'lib/google/apis/run_v1/classes.rb', line 2404 def revision @revision end |
#url ⇒ String
Location of the Git repo to build. This will be used as a git remote, see
https://git-scm.com/docs/git-remote.
Corresponds to the JSON property url
2410 2411 2412 |
# File 'lib/google/apis/run_v1/classes.rb', line 2410 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2417 2418 2419 2420 2421 |
# File 'lib/google/apis/run_v1/classes.rb', line 2417 def update!(**args) @dir = args[:dir] if args.key?(:dir) @revision = args[:revision] if args.key?(:revision) @url = args[:url] if args.key?(:url) end |