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

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

Overview

Metadata 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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Metadata

Returns a new instance of Metadata



657
658
659
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 657

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

Instance Attribute Details

#create_timeString

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

Returns:

  • (String)


628
629
630
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 628

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)


633
634
635
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 633

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



639
640
641
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 639

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>)


644
645
646
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 644

def labels
  @labels
end

#pipelineGoogle::Apis::GenomicsV2alpha1::Pipeline

The Pipeline object describes a series of actions to execute, expressed as docker containers. Corresponds to the JSON property pipeline



650
651
652
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 650

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)


655
656
657
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 655

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



662
663
664
665
666
667
668
669
# File 'generated/google/apis/genomics_v2alpha1/classes.rb', line 662

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