Class: Google::Apis::DataflowV1b3::StreamingApplianceSnapshotConfig
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::StreamingApplianceSnapshotConfig
- 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
-
#import_state_endpoint ⇒ String
Indicates which endpoint is used to import appliance state.
-
#snapshot_id ⇒ String
If set, indicates the snapshot id for the snapshot being performed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StreamingApplianceSnapshotConfig
constructor
A new instance of StreamingApplianceSnapshotConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StreamingApplianceSnapshotConfig
Returns a new instance of StreamingApplianceSnapshotConfig.
4582 4583 4584 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4582 def initialize(**args) update!(**args) end |
Instance Attribute Details
#import_state_endpoint ⇒ String
Indicates which endpoint is used to import appliance state.
Corresponds to the JSON property importStateEndpoint
4575 4576 4577 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4575 def import_state_endpoint @import_state_endpoint end |
#snapshot_id ⇒ String
If set, indicates the snapshot id for the snapshot being performed.
Corresponds to the JSON property snapshotId
4580 4581 4582 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4580 def snapshot_id @snapshot_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4587 4588 4589 4590 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4587 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 |