Class: Google::Apis::ServicemanagementV1::FlowErrorDetails

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

Overview

Encapsulation of flow-specific error details for debugging. Used as a details field on an error Status, not intended for external use.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FlowErrorDetails

Returns a new instance of FlowErrorDetails.



1437
1438
1439
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1437

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

Instance Attribute Details

#exception_typeString

The type of exception (as a class name). Corresponds to the JSON property exceptionType

Returns:

  • (String)


1430
1431
1432
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1430

def exception_type
  @exception_type
end

#flow_step_idString

The step that failed. Corresponds to the JSON property flowStepId

Returns:

  • (String)


1435
1436
1437
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1435

def flow_step_id
  @flow_step_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1442
1443
1444
1445
# File 'lib/google/apis/servicemanagement_v1/classes.rb', line 1442

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