Class: Google::Apis::DeploymentmanagerAlpha::DebugInfo

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

Overview

Describes additional debugging info.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DebugInfo

Returns a new instance of DebugInfo.



564
565
566
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 564

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

Instance Attribute Details

#detailString

Additional debugging information provided by the server. Corresponds to the JSON property detail

Returns:

  • (String)


557
558
559
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 557

def detail
  @detail
end

#stack_entriesArray<String>

The stack trace entries indicating where the error occurred. Corresponds to the JSON property stackEntries

Returns:

  • (Array<String>)


562
563
564
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 562

def stack_entries
  @stack_entries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



569
570
571
572
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 569

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