Class: Google::Cloud::Bigtable::Cluster::Job
- Inherits:
 - 
      LongrunningJob
      
        
- Object
 - LongrunningJob
 - Google::Cloud::Bigtable::Cluster::Job
 
 
- Defined in:
 - lib/google/cloud/bigtable/cluster/job.rb
 
Overview
Job
A resource representing the long-running, asynchronous processing of an cluster create or update operation. The job can be refreshed to retrieve the cluster object once the operation has been completed.
See Instance#create_cluster and #save.
Instance Method Summary collapse
- 
  
    
      #cluster  ⇒ Google::Cloud::Bigtable::Cluster? 
    
    
  
  
  
  
  
  
  
  
  
    
Get the cluster object from job results.
 
Instance Method Details
#cluster ⇒ Google::Cloud::Bigtable::Cluster?
Get the cluster object from job results
      85 86 87  | 
    
      # File 'lib/google/cloud/bigtable/cluster/job.rb', line 85 def cluster Cluster.from_grpc(results, service) if results end  |