Class: Google::Cloud::Functions::V2::StateMessage
- Inherits:
-
Object
- Object
- Google::Cloud::Functions::V2::StateMessage
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/functions/v2/functions.rb
Overview
Informational messages about the state of the Cloud Function or Operation.
Defined Under Namespace
Modules: Severity
Instance Attribute Summary collapse
-
#message ⇒ ::String
The message.
-
#severity ⇒ ::Google::Cloud::Functions::V2::StateMessage::Severity
Severity of the state message.
-
#type ⇒ ::String
One-word CamelCase type of the state message.
Instance Attribute Details
#message ⇒ ::String
Returns The message.
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'proto_docs/google/cloud/functions/v2/functions.rb', line 123 class StateMessage include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Severity of the state message. module Severity # Not specified. Invalid severity. SEVERITY_UNSPECIFIED = 0 # ERROR-level severity. ERROR = 1 # WARNING-level severity. WARNING = 2 # INFO-level severity. INFO = 3 end end |
#severity ⇒ ::Google::Cloud::Functions::V2::StateMessage::Severity
Returns Severity of the state message.
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'proto_docs/google/cloud/functions/v2/functions.rb', line 123 class StateMessage include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Severity of the state message. module Severity # Not specified. Invalid severity. SEVERITY_UNSPECIFIED = 0 # ERROR-level severity. ERROR = 1 # WARNING-level severity. WARNING = 2 # INFO-level severity. INFO = 3 end end |
#type ⇒ ::String
Returns One-word CamelCase type of the state message.
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'proto_docs/google/cloud/functions/v2/functions.rb', line 123 class StateMessage include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Severity of the state message. module Severity # Not specified. Invalid severity. SEVERITY_UNSPECIFIED = 0 # ERROR-level severity. ERROR = 1 # WARNING-level severity. WARNING = 2 # INFO-level severity. INFO = 3 end end |