Class: Google::Apis::AppengineV1beta::Entrypoint
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AppengineV1beta::Entrypoint
 
 
- 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 entrypoint for the application.
Instance Attribute Summary collapse
- 
  
    
      #shell  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The format should be a shell command that can be fed to bash -c.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Entrypoint 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Entrypoint.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Entrypoint
Returns a new instance of Entrypoint
      953 954 955  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 953 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#shell ⇒ String
The format should be a shell command that can be fed to bash -c.
Corresponds to the JSON property shell
      951 952 953  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 951 def shell @shell end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      958 959 960  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 958 def update!(**args) @shell = args[:shell] if args.key?(:shell) end  |