Class: Google::Cloud::Workflows::Executions::V1::Execution::StateError
- Inherits:
-
Object
- Object
- Google::Cloud::Workflows::Executions::V1::Execution::StateError
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/workflows/executions/v1/executions.rb
Overview
Describes an error related to the current state of the Execution resource.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#details ⇒ ::String
Provides specifics about the error.
-
#type ⇒ ::Google::Cloud::Workflows::Executions::V1::Execution::StateError::Type
The type of this state error.
Instance Attribute Details
#details ⇒ ::String
Returns Provides specifics about the error.
180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'proto_docs/google/cloud/workflows/executions/v1/executions.rb', line 180 class StateError include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the possible 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::Executions::V1::Execution::StateError::Type
Returns The type of this state error.
180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'proto_docs/google/cloud/workflows/executions/v1/executions.rb', line 180 class StateError include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the possible types of a state error. module Type # No type specified. TYPE_UNSPECIFIED = 0 # Caused by an issue with KMS. KMS_ERROR = 1 end end |