class Google::Apis::DataflowV1b3::StreamingApplianceSnapshotConfig
Streaming appliance snapshot configuration.
Attributes
import_state_endpoint[RW]
Indicates which endpoint is used to import appliance state. Corresponds to the JSON property `importStateEndpoint` @return [String]
snapshot_id[RW]
If set, indicates the snapshot id for the snapshot being performed. Corresponds to the JSON property `snapshotId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5189 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 5194 def update!(**args) @import_state_endpoint = args[:import_state_endpoint] if args.key?(:import_state_endpoint) @snapshot_id = args[:snapshot_id] if args.key?(:snapshot_id) end