class Google::Apis::DataflowV1b3::PubSubIoDetails
Metadata for a Pub/Sub connector used by the job.
Attributes
subscription[RW]
Subscription used in the connection. Corresponds to the JSON property `subscription` @return [String]
topic[RW]
Topic accessed in the connection. Corresponds to the JSON property `topic` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3551 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3556 def update!(**args) @subscription = args[:subscription] if args.key?(:subscription) @topic = args[:topic] if args.key?(:topic) end