Class: Google::Cloud::Workflows::V1::Workflow::StateError
- Inherits:
-
Object
- Object
- Google::Cloud::Workflows::V1::Workflow::StateError
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/workflows/v1/workflows.rb
Overview
Describes an error related to the current state of the workflow.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#details ⇒ ::String
Provides specifics about the error.
-
#type ⇒ ::Google::Cloud::Workflows::V1::Workflow::StateError::Type
The type of this state error.
Instance Attribute Details
#details ⇒ ::String
Returns Provides specifics about the error.
124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'proto_docs/google/cloud/workflows/v1/workflows.rb', line 124 class StateError include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the possibled types of a state error. module Type # No type specified. TYPE_UNSPECIFIED = 0 # Caused by an issue with KMS. KMS_ERROR = 1 end end |
#type ⇒ ::Google::Cloud::Workflows::V1::Workflow::StateError::Type
Returns The type of this state error.
124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'proto_docs/google/cloud/workflows/v1/workflows.rb', line 124 class StateError include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the possibled types of a state error. module Type # No type specified. TYPE_UNSPECIFIED = 0 # Caused by an issue with KMS. KMS_ERROR = 1 end end |