Class: Google::Apis::PubsubV1::AvroConfig
- Inherits:
-
Object
- Object
- Google::Apis::PubsubV1::AvroConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/pubsub_v1/classes.rb,
lib/google/apis/pubsub_v1/representations.rb,
lib/google/apis/pubsub_v1/representations.rb
Overview
Configuration for writing message data in Avro format. Message payloads and metadata will be written to files as an Avro binary.
Instance Attribute Summary collapse
-
#write_metadata ⇒ Boolean
(also: #write_metadata?)
When true, write the subscription name, message_id, publish_time, attributes, and ordering_key as additional fields in the output.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AvroConfig
constructor
A new instance of AvroConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AvroConfig
Returns a new instance of AvroConfig.
57 58 59 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 57 def initialize(**args) update!(**args) end |
Instance Attribute Details
#write_metadata ⇒ Boolean Also known as: write_metadata?
When true, write the subscription name, message_id, publish_time, attributes,
and ordering_key as additional fields in the output.
Corresponds to the JSON property writeMetadata
54 55 56 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 54 def @write_metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
62 63 64 |
# File 'lib/google/apis/pubsub_v1/classes.rb', line 62 def update!(**args) @write_metadata = args[:write_metadata] if args.key?(:write_metadata) end |