Class: Google::Apis::AppengineV1beta::FeatureSettings
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AppengineV1beta::FeatureSettings
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/appengine_v1beta/classes.rb,
generated/google/apis/appengine_v1beta/representations.rb,
generated/google/apis/appengine_v1beta/representations.rb 
Overview
The feature specific settings to be used in the application. These define behaviors that are user configurable.
Instance Attribute Summary collapse
- 
  
    
      #split_health_checks  ⇒ Boolean 
    
    
      (also: #split_health_checks?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Boolean value indicating if split health checks should be used instead of the legacy health checks.
 - 
  
    
      #use_container_optimized_os  ⇒ Boolean 
    
    
      (also: #use_container_optimized_os?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If true, use Container-Optimized OS (https://cloud.google.com/container- optimized-os/) base image for VMs, rather than a base Debian image.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FeatureSettings 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of FeatureSettings.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FeatureSettings
Returns a new instance of FeatureSettings
      1016 1017 1018  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1016 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#split_health_checks ⇒ Boolean Also known as: split_health_checks?
Boolean value indicating if split health checks should be used instead of the
legacy health checks. At an app.yaml level, this means defaulting to '
readiness_check' and 'liveness_check' values instead of 'health_check' ones.
Once the legacy 'health_check' behavior is deprecated, and this value is
always true, this setting can be removed.
Corresponds to the JSON property splitHealthChecks
      1006 1007 1008  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1006 def split_health_checks @split_health_checks end  | 
  
#use_container_optimized_os ⇒ Boolean Also known as: use_container_optimized_os?
If true, use Container-Optimized OS (https://cloud.google.com/container-
optimized-os/) base image for VMs, rather than a base Debian image.
Corresponds to the JSON property useContainerOptimizedOs
      1013 1014 1015  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1013 def use_container_optimized_os @use_container_optimized_os end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1021 1022 1023 1024  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1021 def update!(**args) @split_health_checks = args[:split_health_checks] if args.key?(:split_health_checks) @use_container_optimized_os = args[:use_container_optimized_os] if args.key?(:use_container_optimized_os) end  |