Class: Google::Apis::ServicecontrolV1::QuotaProperties
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicecontrolV1::QuotaProperties
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/representations.rb 
Overview
Represents the properties needed for quota operations.
Instance Attribute Summary collapse
- 
  
    
      #quota_mode  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Quota mode for this operation.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ QuotaProperties 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of QuotaProperties.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ QuotaProperties
Returns a new instance of QuotaProperties
      1665 1666 1667  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1665 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#quota_mode ⇒ String
Quota mode for this operation.
Corresponds to the JSON property quotaMode
      1663 1664 1665  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1663 def quota_mode @quota_mode end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1670 1671 1672  | 
    
      # File 'generated/google/apis/servicecontrol_v1/classes.rb', line 1670 def update!(**args) @quota_mode = args[:quota_mode] if args.key?(:quota_mode) end  |