Class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStateMessage

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

Overview

Informational messages about the state of the Cloud Function or Operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudFunctionsV2alphaStateMessage

Returns a new instance of GoogleCloudFunctionsV2alphaStateMessage.



1031
1032
1033
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1031

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

Instance Attribute Details

#messageString

The message. Corresponds to the JSON property message

Returns:

  • (String)


1019
1020
1021
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1019

def message
  @message
end

#severityString

Severity of the state message. Corresponds to the JSON property severity

Returns:

  • (String)


1024
1025
1026
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1024

def severity
  @severity
end

#typeString

One-word CamelCase type of the state message. Corresponds to the JSON property type

Returns:

  • (String)


1029
1030
1031
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1029

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1036
1037
1038
1039
1040
# File 'lib/google/apis/cloudfunctions_v2/classes.rb', line 1036

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