class Google::Apis::CloudbuildV1::FailureInfo

A fatal problem encountered during the execution of the build.

Attributes

detail[RW]

Explains the failure issue in more detail using hard-coded text. Corresponds to the JSON property `detail` @return [String]

type[RW]

The name of the failure. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudbuild_v1/classes.rb, line 1164
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_v1/classes.rb, line 1169
def update!(**args)
  @detail = args[:detail] if args.key?(:detail)
  @type = args[:type] if args.key?(:type)
end