class Google::Apis::GenomicsV1alpha2::LoggingOptions
The logging options for the pipeline run.
Attributes
gcs_path[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 535 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 540 def update!(**args) @gcs_path = args[:gcs_path] if args.key?(:gcs_path) end