Class: Google::Apis::DataflowV1b3::SnapshotJobRequest

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

Request to create a snapshot of a job.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SnapshotJobRequest

Returns a new instance of SnapshotJobRequest.



4564
4565
4566
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4564

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

Instance Attribute Details

#descriptionString

User specified description of the snapshot. Maybe empty. Corresponds to the JSON property description

Returns:

  • (String)


4546
4547
4548
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4546

def description
  @description
end

#locationString

The location that contains this job. Corresponds to the JSON property location

Returns:

  • (String)


4551
4552
4553
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4551

def location
  @location
end

#snapshot_sourcesBoolean Also known as: snapshot_sources?

If true, perform snapshots for sources which support this. Corresponds to the JSON property snapshotSources

Returns:

  • (Boolean)


4556
4557
4558
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4556

def snapshot_sources
  @snapshot_sources
end

#ttlString

TTL for the snapshot. Corresponds to the JSON property ttl

Returns:

  • (String)


4562
4563
4564
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4562

def ttl
  @ttl
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4569
4570
4571
4572
4573
4574
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4569

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @location = args[:location] if args.key?(:location)
  @snapshot_sources = args[:snapshot_sources] if args.key?(:snapshot_sources)
  @ttl = args[:ttl] if args.key?(:ttl)
end