Class: Google::Apis::GenomicsV1alpha2::LoggingOptions

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

Overview

The logging options for the pipeline run.

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

Returns a new instance of LoggingOptions.



547
548
549
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 547

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

Instance Attribute Details

#gcs_pathString

The location in Google Cloud Storage to which the pipeline logs will be copied. Can be specified as a fully qualified directory path, in which case logs will be output with a unique identifier as the filename in that directory, or as a fully specified path, which must end in .log, in which case that path will be used, and the user must ensure that logs are not overwritten. Stdout and stderr logs from the run are also generated and output as -stdout.log and -stderr.log. Corresponds to the JSON property gcsPath

Returns:

  • (String)


545
546
547
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 545

def gcs_path
  @gcs_path
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



552
553
554
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 552

def update!(**args)
  @gcs_path = args[:gcs_path] if args.key?(:gcs_path)
end