Class: Google::Apis::DataflowV1b3::StructuredMessage
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::StructuredMessage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
A rich message format, including a human readable string, a key for identifying the message, and structured data associated with the message for programmatic consumption.
Instance Attribute Summary collapse
-
#message_key ⇒ String
Identifier for this message type.
-
#message_text ⇒ String
Human-readable version of message.
-
#parameters ⇒ Array<Google::Apis::DataflowV1b3::Parameter>
The structured data associated with this message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StructuredMessage
constructor
A new instance of StructuredMessage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StructuredMessage
Returns a new instance of StructuredMessage.
5589 5590 5591 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5589 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message_key ⇒ String
Identifier for this message type. Used by external systems to internationalize
or personalize message.
Corresponds to the JSON property messageKey
5577 5578 5579 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5577 def @message_key end |
#message_text ⇒ String
Human-readable version of message.
Corresponds to the JSON property messageText
5582 5583 5584 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5582 def @message_text end |
#parameters ⇒ Array<Google::Apis::DataflowV1b3::Parameter>
The structured data associated with this message.
Corresponds to the JSON property parameters
5587 5588 5589 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5587 def parameters @parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5594 5595 5596 5597 5598 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 5594 def update!(**args) @message_key = args[:message_key] if args.key?(:message_key) @message_text = args[:message_text] if args.key?(:message_text) @parameters = args[:parameters] if args.key?(:parameters) end |