Class: Google::Apis::CloudfunctionsV2::RepoSource
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV2::RepoSource
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v2/classes.rb,
lib/google/apis/cloudfunctions_v2/representations.rb,
lib/google/apis/cloudfunctions_v2/representations.rb
Overview
Location of the source in a Google Cloud Source Repository.
Instance Attribute Summary collapse
-
#branch_name ⇒ String
Regex matching branches to build.
-
#commit_sha ⇒ String
Explicit commit SHA to build.
-
#dir ⇒ String
Directory, relative to the source root, in which to run the build.
-
#project_id ⇒ String
ID of the project that owns the Cloud Source Repository.
-
#repo_name ⇒ String
Name of the Cloud Source Repository.
-
#tag_name ⇒ String
Regex matching tags to build.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RepoSource
constructor
A new instance of RepoSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RepoSource
Returns a new instance of RepoSource.
1797 1798 1799 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1797 def initialize(**args) update!(**args) end |
Instance Attribute Details
#branch_name ⇒ String
Regex matching branches to build. The syntax of the regular expressions
accepted is the syntax accepted by RE2 and described at https://github.com/
google/re2/wiki/Syntax
Corresponds to the JSON property branchName
1764 1765 1766 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1764 def branch_name @branch_name end |
#commit_sha ⇒ String
Explicit commit SHA to build.
Corresponds to the JSON property commitSha
1769 1770 1771 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1769 def commit_sha @commit_sha end |
#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. eg. helloworld (no leading
slash allowed)
Corresponds to the JSON property dir
1777 1778 1779 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1777 def dir @dir end |
#project_id ⇒ String
ID of the project that owns the Cloud Source Repository. If omitted, the
project ID requesting the build is assumed.
Corresponds to the JSON property projectId
1783 1784 1785 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1783 def project_id @project_id end |
#repo_name ⇒ String
Name of the Cloud Source Repository.
Corresponds to the JSON property repoName
1788 1789 1790 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1788 def repo_name @repo_name end |
#tag_name ⇒ String
Regex matching tags to build. The syntax of the regular expressions accepted
is the syntax accepted by RE2 and described at https://github.com/google/re2/
wiki/Syntax
Corresponds to the JSON property tagName
1795 1796 1797 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1795 def tag_name @tag_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1802 1803 1804 1805 1806 1807 1808 1809 |
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1802 def update!(**args) @branch_name = args[:branch_name] if args.key?(:branch_name) @commit_sha = args[:commit_sha] if args.key?(:commit_sha) @dir = args[:dir] if args.key?(:dir) @project_id = args[:project_id] if args.key?(:project_id) @repo_name = args[:repo_name] if args.key?(:repo_name) @tag_name = args[:tag_name] if args.key?(:tag_name) end |