class Google::Apis::CloudbuildV1beta1::Warning
A non-fatal problem encountered during the execution of the build.
Attributes
priority[RW]
The priority for this warning. Corresponds to the JSON property `priority` @return [String]
text[RW]
Explanation of the warning generated. Corresponds to the JSON property `text` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudbuild_v1beta1/classes.rb, line 2109 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudbuild_v1beta1/classes.rb, line 2114 def update!(**args) @priority = args[:priority] if args.key?(:priority) @text = args[:text] if args.key?(:text) end