Class: Google::Apis::DataflowV1b3::StateFamilyConfig
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataflowV1b3::StateFamilyConfig
 
- 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
State family configuration.
Instance Attribute Summary collapse
- 
  
    
      #is_read  ⇒ Boolean 
    
    
      (also: #is_read?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    If true, this family corresponds to a read operation. 
- 
  
    
      #state_family  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The state family value. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StateFamilyConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of StateFamilyConfig. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StateFamilyConfig
Returns a new instance of StateFamilyConfig
| 3795 3796 3797 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3795 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#is_read ⇒ Boolean Also known as: is_read?
If true, this family corresponds to a read operation.
Corresponds to the JSON property isRead
| 3787 3788 3789 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3787 def is_read @is_read end | 
#state_family ⇒ String
The state family value.
Corresponds to the JSON property stateFamily
| 3793 3794 3795 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3793 def state_family @state_family end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3800 3801 3802 3803 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3800 def update!(**args) @is_read = args[:is_read] if args.key?(:is_read) @state_family = args[:state_family] if args.key?(:state_family) end |