Class: Google::Cloud::Bigtable::AppProfile::Job
- Inherits:
 - 
      LongrunningJob
      
        
- Object
 - LongrunningJob
 - Google::Cloud::Bigtable::AppProfile::Job
 
 
- Defined in:
 - lib/google/cloud/bigtable/app_profile/job.rb
 
Overview
Job
A resource representing the long-running, asynchronous processing of an app profile create or update operation. The job can be refreshed to retrieve the app profile object once the operation has been completed.
See #save.
Instance Method Summary collapse
- 
  
    
      #app_profile  ⇒ Google::Cloud::Bigtable::AppProfile? 
    
    
  
  
  
  
  
  
  
  
  
    
The instance that is the object of the operation.
 
Instance Method Details
#app_profile ⇒ Google::Cloud::Bigtable::AppProfile?
The instance that is the object of the operation.
      93 94 95 96 97  | 
    
      # File 'lib/google/cloud/bigtable/app_profile/job.rb', line 93 def app_profile return nil unless done? return nil unless @grpc.grpc_op.result == :response AppProfile.from_grpc(@grpc.results, service) end  |