class Google::Apis::GenomicsV1::Dataset

A Dataset is a collection of genomic data. For more genomics resource definitions, see [Fundamentals of Google Genomics](cloud.google.com/ genomics/fundamentals-of-google-genomics)

Attributes

create_time[RW]

The time this dataset was created, in seconds from the epoch. Corresponds to the JSON property `createTime` @return [String]

id[RW]

The server-generated dataset ID, unique across all datasets. Corresponds to the JSON property `id` @return [String]

name[RW]

The dataset name. Corresponds to the JSON property `name` @return [String]

project_id[RW]

The Google Developers Console project ID that this dataset belongs to. Corresponds to the JSON property `projectId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1/classes.rb, line 833
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/genomics_v1/classes.rb, line 838
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @project_id = args[:project_id] if args.key?(:project_id)
  @name = args[:name] if args.key?(:name)
  @create_time = args[:create_time] if args.key?(:create_time)
end