Class: Google::Apis::CloudfunctionsV2alpha::GoogleCloudFunctionsV2betaStateMessage

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudFunctionsV2betaStateMessage

Returns a new instance of GoogleCloudFunctionsV2betaStateMessage.



1101
1102
1103
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1101

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

Instance Attribute Details

#messageString

The message. Corresponds to the JSON property message

Returns:

  • (String)


1089
1090
1091
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1089

def message
  @message
end

#severityString

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

Returns:

  • (String)


1094
1095
1096
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1094

def severity
  @severity
end

#typeString

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

Returns:

  • (String)


1099
1100
1101
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1099

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1106
1107
1108
1109
1110
# File 'lib/google/apis/cloudfunctions_v2alpha/classes.rb', line 1106

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