Class: Google::Apis::SqladminV1::SqlOutOfDiskReport
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1::SqlOutOfDiskReport
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb 
Overview
This message wraps up the information written by out-of-disk detection job.
Instance Attribute Summary collapse
- 
  
    
      #sql_min_recommended_increase_size_gb  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum recommended increase size in GigaBytes This field is consumed by the frontend * Writers: * the proactive database wellness job for OOD.
 - 
  
    
      #sql_out_of_disk_state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This field represents the state generated by the proactive database wellness job for OutOfDisk issues.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SqlOutOfDiskReport 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SqlOutOfDiskReport.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SqlOutOfDiskReport
Returns a new instance of SqlOutOfDiskReport.
      4322 4323 4324  | 
    
      # File 'lib/google/apis/sqladmin_v1/classes.rb', line 4322 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#sql_min_recommended_increase_size_gb ⇒ Fixnum
The minimum recommended increase size in GigaBytes This field is consumed by
the frontend * Writers: * the proactive database wellness job for OOD. *
Readers:
Corresponds to the JSON property sqlMinRecommendedIncreaseSizeGb
      4313 4314 4315  | 
    
      # File 'lib/google/apis/sqladmin_v1/classes.rb', line 4313 def sql_min_recommended_increase_size_gb @sql_min_recommended_increase_size_gb end  | 
  
#sql_out_of_disk_state ⇒ String
This field represents the state generated by the proactive database wellness
job for OutOfDisk issues. * Writers: * the proactive database wellness job for
OOD. * Readers: * the proactive database wellness job
Corresponds to the JSON property sqlOutOfDiskState
      4320 4321 4322  | 
    
      # File 'lib/google/apis/sqladmin_v1/classes.rb', line 4320 def sql_out_of_disk_state @sql_out_of_disk_state end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4327 4328 4329 4330  | 
    
      # File 'lib/google/apis/sqladmin_v1/classes.rb', line 4327 def update!(**args) @sql_min_recommended_increase_size_gb = args[:sql_min_recommended_increase_size_gb] if args.key?(:sql_min_recommended_increase_size_gb) @sql_out_of_disk_state = args[:sql_out_of_disk_state] if args.key?(:sql_out_of_disk_state) end  |