Class: Google::Apis::CloudbuildV1::PullRequestFilter
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::PullRequestFilter
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudbuild_v1/classes.rb,
generated/google/apis/cloudbuild_v1/representations.rb,
generated/google/apis/cloudbuild_v1/representations.rb
Overview
PullRequestFilter contains filter properties for matching GitHub Pull Requests.
Instance Attribute Summary collapse
-
#branch ⇒ String
Regex of branches to match.
-
#comment_control ⇒ String
Configure builds to run whether a repository owner or collaborator need to comment
/gcbrun
. -
#invert_regex ⇒ Boolean
(also: #invert_regex?)
If true, branches that do NOT match the git_ref will trigger a build.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PullRequestFilter
constructor
A new instance of PullRequestFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PullRequestFilter
Returns a new instance of PullRequestFilter.
1226 1227 1228 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1226 def initialize(**args) update!(**args) end |
Instance Attribute Details
#branch ⇒ String
Regex of branches to match. 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 branch
1212 1213 1214 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1212 def branch @branch end |
#comment_control ⇒ String
Configure builds to run whether a repository owner or collaborator need to
comment /gcbrun
.
Corresponds to the JSON property commentControl
1218 1219 1220 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1218 def comment_control @comment_control end |
#invert_regex ⇒ Boolean Also known as: invert_regex?
If true, branches that do NOT match the git_ref will trigger a build.
Corresponds to the JSON property invertRegex
1223 1224 1225 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1223 def invert_regex @invert_regex end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1231 1232 1233 1234 1235 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1231 def update!(**args) @branch = args[:branch] if args.key?(:branch) @comment_control = args[:comment_control] if args.key?(:comment_control) @invert_regex = args[:invert_regex] if args.key?(:invert_regex) end |