Class: Google::Apis::DataflowV1b3::CustomSourceLocation

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

Overview

Identifies the location of a custom souce.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomSourceLocation

Returns a new instance of CustomSourceLocation.



878
879
880
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 878

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

Instance Attribute Details

#statefulBoolean Also known as: stateful?

Whether this source is stateful. Corresponds to the JSON property stateful

Returns:

  • (Boolean)


875
876
877
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 875

def stateful
  @stateful
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



883
884
885
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 883

def update!(**args)
  @stateful = args[:stateful] if args.key?(:stateful)
end