Class: Google::Apis::ComputeV1::Quota
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeV1::Quota
 
 
- Defined in:
 - generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb 
Overview
A quotas entry.
Instance Attribute Summary collapse
- 
  
    
      #limit  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Quota limit for this metric.
 - 
  
    
      #metric  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Name of the quota metric.
 - 
  
    
      #usage  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Current usage of this metric.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Quota 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Quota.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Quota
Returns a new instance of Quota
      14353 14354 14355  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 14353 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#limit ⇒ Float
[Output Only] Quota limit for this metric.
Corresponds to the JSON property limit
      14341 14342 14343  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 14341 def limit @limit end  | 
  
#metric ⇒ String
[Output Only] Name of the quota metric.
Corresponds to the JSON property metric
      14346 14347 14348  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 14346 def metric @metric end  | 
  
#usage ⇒ Float
[Output Only] Current usage of this metric.
Corresponds to the JSON property usage
      14351 14352 14353  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 14351 def usage @usage end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      14358 14359 14360 14361 14362  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 14358 def update!(**args) @limit = args[:limit] if args.key?(:limit) @metric = args[:metric] if args.key?(:metric) @usage = args[:usage] if args.key?(:usage) end  |