Class: Google::Apis::AppengineV1::ManualScaling
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AppengineV1::ManualScaling
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/appengine_v1/classes.rb,
generated/google/apis/appengine_v1/representations.rb,
generated/google/apis/appengine_v1/representations.rb 
Overview
A service with manual scaling runs continuously, allowing you to perform complex initialization and rely on the state of its memory over time.
Instance Attribute Summary collapse
- 
  
    
      #instances  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Number of instances to assign to the service at the start.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ManualScaling 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ManualScaling.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ManualScaling
Returns a new instance of ManualScaling
      1660 1661 1662  | 
    
      # File 'generated/google/apis/appengine_v1/classes.rb', line 1660 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#instances ⇒ Fixnum
Number of instances to assign to the service at the start. This number can
later be altered by using the Modules API (https://cloud.google.com/appengine/
docs/python/modules/functions) set_num_instances() function.
Corresponds to the JSON property instances
      1658 1659 1660  | 
    
      # File 'generated/google/apis/appengine_v1/classes.rb', line 1658 def instances @instances end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1665 1666 1667  | 
    
      # File 'generated/google/apis/appengine_v1/classes.rb', line 1665 def update!(**args) @instances = args[:instances] if args.key?(:instances) end  |