Class: Google::Apis::CloudbuildV1::PushFilter

Inherits:
Object
  • Object
show all
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

Push contains filter properties for matching GitHub git pushes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PushFilter

Returns a new instance of PushFilter.



1056
1057
1058
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1056

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#branchString

Regexes 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 branch

Returns:

  • (String)


1047
1048
1049
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1047

def branch
  @branch
end

#tagString

Regexes 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 tag

Returns:

  • (String)


1054
1055
1056
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1054

def tag
  @tag
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1061
1062
1063
1064
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 1061

def update!(**args)
  @branch = args[:branch] if args.key?(:branch)
  @tag = args[:tag] if args.key?(:tag)
end