Class: Google::Apis::CloudfunctionsV2alpha::GoogleCloudFunctionsV2betaStateMessage
- Inherits:
-
Object
- Object
- Google::Apis::CloudfunctionsV2alpha::GoogleCloudFunctionsV2betaStateMessage
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudfunctions_v2alpha/classes.rb,
lib/google/apis/cloudfunctions_v2alpha/representations.rb,
lib/google/apis/cloudfunctions_v2alpha/representations.rb
Overview
Informational messages about the state of the Cloud Function or Operation.
Instance Attribute Summary collapse
-
#message ⇒ String
The message.
-
#severity ⇒ String
Severity of the state message.
-
#type ⇒ String
One-word CamelCase type of the state message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudFunctionsV2betaStateMessage
constructor
A new instance of GoogleCloudFunctionsV2betaStateMessage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudFunctionsV2betaStateMessage
Returns a new instance of GoogleCloudFunctionsV2betaStateMessage.
1026 1027 1028 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1026 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message ⇒ String
The message.
Corresponds to the JSON property message
1014 1015 1016 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1014 def @message end |
#severity ⇒ String
Severity of the state message.
Corresponds to the JSON property severity
1019 1020 1021 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1019 def severity @severity end |
#type ⇒ String
One-word CamelCase type of the state message.
Corresponds to the JSON property type
1024 1025 1026 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1024 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1031 1032 1033 1034 1035 |
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1031 def update!(**args) @message = args[:message] if args.key?(:message) @severity = args[:severity] if args.key?(:severity) @type = args[:type] if args.key?(:type) end |