Class: Google::Apis::GenomicsV1::Dataset
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV1::Dataset
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1/classes.rb,
 generated/google/apis/genomics_v1/representations.rb,
 generated/google/apis/genomics_v1/representations.rb
Overview
A Dataset is a collection of genomic data.
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time this dataset was created, in seconds from the epoch. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The server-generated dataset ID, unique across all datasets. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The dataset name. 
- 
  
    
      #project_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Google Cloud project ID that this dataset belongs to. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Dataset 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Dataset. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Dataset
Returns a new instance of Dataset
| 610 611 612 | # File 'generated/google/apis/genomics_v1/classes.rb', line 610 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#create_time ⇒ String
The time this dataset was created, in seconds from the epoch.
Corresponds to the JSON property createTime
| 593 594 595 | # File 'generated/google/apis/genomics_v1/classes.rb', line 593 def create_time @create_time end | 
#id ⇒ String
The server-generated dataset ID, unique across all datasets.
Corresponds to the JSON property id
| 598 599 600 | # File 'generated/google/apis/genomics_v1/classes.rb', line 598 def id @id end | 
#name ⇒ String
The dataset name.
Corresponds to the JSON property name
| 603 604 605 | # File 'generated/google/apis/genomics_v1/classes.rb', line 603 def name @name end | 
#project_id ⇒ String
The Google Cloud project ID that this dataset belongs to.
Corresponds to the JSON property projectId
| 608 609 610 | # File 'generated/google/apis/genomics_v1/classes.rb', line 608 def project_id @project_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 615 616 617 618 619 620 | # File 'generated/google/apis/genomics_v1/classes.rb', line 615 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @project_id = args[:project_id] if args.key?(:project_id) end |