Class: Google::Apis::CloudbuildV1alpha1::FailureInfo

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudbuild_v1alpha1/classes.rb,
lib/google/apis/cloudbuild_v1alpha1/representations.rb,
lib/google/apis/cloudbuild_v1alpha1/representations.rb

Overview

A fatal problem encountered during the execution of the build.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FailureInfo

Returns a new instance of FailureInfo.



928
929
930
# File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 928

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

Instance Attribute Details

#detailString

Explains the failure issue in more detail using hard-coded text. Corresponds to the JSON property detail

Returns:

  • (String)


921
922
923
# File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 921

def detail
  @detail
end

#typeString

The name of the failure. Corresponds to the JSON property type

Returns:

  • (String)


926
927
928
# File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 926

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



933
934
935
936
# File 'lib/google/apis/cloudbuild_v1alpha1/classes.rb', line 933

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