Class: Google::Apis::GenomicsV2alpha1::Metadata

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

Overview

Carries information about the pipeline execution that is returned in the long running operation's metadata field.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Metadata

Returns a new instance of Metadata.



688
689
690
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 688

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

Instance Attribute Details

#create_timeString

The time at which the operation was created by the API. Corresponds to the JSON property createTime

Returns:

  • (String)


660
661
662
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 660

def create_time
  @create_time
end

#end_timeString

The time at which execution was completed and resources were cleaned up. Corresponds to the JSON property endTime

Returns:

  • (String)


665
666
667
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 665

def end_time
  @end_time
end

#eventsArray<Google::Apis::GenomicsV2alpha1::Event>

The list of events that have happened so far during the execution of this operation. Corresponds to the JSON property events



671
672
673
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 671

def events
  @events
end

#labelsHash<String,String>

The user-defined labels associated with this operation. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


676
677
678
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 676

def labels
  @labels
end

#pipelineGoogle::Apis::GenomicsV2alpha1::Pipeline

Specifies a series of actions to execute, expressed as Docker containers. Corresponds to the JSON property pipeline



681
682
683
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 681

def pipeline
  @pipeline
end

#start_timeString

The first time at which resources were allocated to execute the pipeline. Corresponds to the JSON property startTime

Returns:

  • (String)


686
687
688
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 686

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



693
694
695
696
697
698
699
700
# File 'lib/google/apis/genomics_v2alpha1/classes.rb', line 693

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @end_time = args[:end_time] if args.key?(:end_time)
  @events = args[:events] if args.key?(:events)
  @labels = args[:labels] if args.key?(:labels)
  @pipeline = args[:pipeline] if args.key?(:pipeline)
  @start_time = args[:start_time] if args.key?(:start_time)
end