Class: Google::Apis::DataflowV1b3::StateFamilyConfig

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

State family configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StateFamilyConfig

Returns a new instance of StateFamilyConfig.



6093
6094
6095
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6093

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

Instance Attribute Details

#is_readBoolean Also known as: is_read?

If true, this family corresponds to a read operation. Corresponds to the JSON property isRead

Returns:

  • (Boolean)


6085
6086
6087
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6085

def is_read
  @is_read
end

#state_familyString

The state family value. Corresponds to the JSON property stateFamily

Returns:

  • (String)


6091
6092
6093
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6091

def state_family
  @state_family
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6098
6099
6100
6101
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6098

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