class Google::Apis::DataflowV1b3::StateFamilyConfig
State family configuration.
Attributes
is_read[RW]
If true, this family corresponds to a read operation. Corresponds to the JSON property `isRead` @return [Boolean]
is_read?[RW]
If true, this family corresponds to a read operation. Corresponds to the JSON property `isRead` @return [Boolean]
state_family[RW]
The state family value. Corresponds to the JSON property `stateFamily` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5041 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 5046 def update!(**args) @is_read = args[:is_read] if args.key?(:is_read) @state_family = args[:state_family] if args.key?(:state_family) end