Class: Google::Apis::DataflowV1b3::StreamingApplianceSnapshotConfig

Inherits:
Object
  • Object
show all
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

Streaming appliance snapshot configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ StreamingApplianceSnapshotConfig

Returns a new instance of StreamingApplianceSnapshotConfig



4344
4345
4346
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4344

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

Instance Attribute Details

#import_state_endpointString

Indicates which endpoint is used to import appliance state. Corresponds to the JSON property importStateEndpoint

Returns:

  • (String)


4337
4338
4339
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4337

def import_state_endpoint
  @import_state_endpoint
end

#snapshot_idString

If set, indicates the snapshot id for the snapshot being performed. Corresponds to the JSON property snapshotId

Returns:

  • (String)


4342
4343
4344
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4342

def snapshot_id
  @snapshot_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4349
4350
4351
4352
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4349

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