Class: Google::Apis::DataflowV1b3::CustomSourceLocation
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataflowV1b3::CustomSourceLocation
 
 
- 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
Identifies the location of a custom souce.
Instance Attribute Summary collapse
- 
  
    
      #stateful  ⇒ Boolean 
    
    
      (also: #stateful?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether this source is stateful.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CustomSourceLocation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CustomSourceLocation.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomSourceLocation
Returns a new instance of CustomSourceLocation
      766 767 768  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 766 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#stateful ⇒ Boolean Also known as: stateful?
Whether this source is stateful.
Corresponds to the JSON property stateful
      763 764 765  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 763 def stateful @stateful end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      771 772 773  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 771 def update!(**args) @stateful = args[:stateful] if args.key?(:stateful) end  |