Class: Google::Apis::DeploymentmanagerV2::DebugInfo
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2::DebugInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/deploymentmanager_v2/classes.rb,
lib/google/apis/deploymentmanager_v2/representations.rb,
lib/google/apis/deploymentmanager_v2/representations.rb
Overview
Describes additional debugging info.
Instance Attribute Summary collapse
-
#detail ⇒ String
Additional debugging information provided by the server.
-
#stack_entries ⇒ Array<String>
The stack trace entries indicating where the error occurred.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DebugInfo
constructor
A new instance of DebugInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DebugInfo
Returns a new instance of DebugInfo.
274 275 276 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 274 def initialize(**args) update!(**args) end |
Instance Attribute Details
#detail ⇒ String
Additional debugging information provided by the server.
Corresponds to the JSON property detail
267 268 269 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 267 def detail @detail end |
#stack_entries ⇒ Array<String>
The stack trace entries indicating where the error occurred.
Corresponds to the JSON property stackEntries
272 273 274 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 272 def stack_entries @stack_entries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
279 280 281 282 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 279 def update!(**args) @detail = args[:detail] if args.key?(:detail) @stack_entries = args[:stack_entries] if args.key?(:stack_entries) end |