Class: Google::Apis::DatastreamV1alpha1::BackfillJob

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastream_v1alpha1/classes.rb,
lib/google/apis/datastream_v1alpha1/representations.rb,
lib/google/apis/datastream_v1alpha1/representations.rb

Overview

Represents a backfill job on a specific stream object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BackfillJob

Returns a new instance of BackfillJob.



93
94
95
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 93

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

Instance Attribute Details

#errorsArray<Google::Apis::DatastreamV1alpha1::Error>

Output only. Errors which caused the backfill job to fail. Corresponds to the JSON property errors



71
72
73
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 71

def errors
  @errors
end

#last_end_timeString

Output only. Backfill job's end time. Corresponds to the JSON property lastEndTime

Returns:

  • (String)


76
77
78
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 76

def last_end_time
  @last_end_time
end

#last_start_timeString

Output only. Backfill job's start time. Corresponds to the JSON property lastStartTime

Returns:

  • (String)


81
82
83
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 81

def last_start_time
  @last_start_time
end

#stateString

Backfill job state. Corresponds to the JSON property state

Returns:

  • (String)


86
87
88
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 86

def state
  @state
end

#triggerString

Backfill job's triggering reason. Corresponds to the JSON property trigger

Returns:

  • (String)


91
92
93
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 91

def trigger
  @trigger
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



98
99
100
101
102
103
104
# File 'lib/google/apis/datastream_v1alpha1/classes.rb', line 98

def update!(**args)
  @errors = args[:errors] if args.key?(:errors)
  @last_end_time = args[:last_end_time] if args.key?(:last_end_time)
  @last_start_time = args[:last_start_time] if args.key?(:last_start_time)
  @state = args[:state] if args.key?(:state)
  @trigger = args[:trigger] if args.key?(:trigger)
end