Class: Google::Apis::AppengineV1beta::Entrypoint

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/appengine_v1beta/classes.rb,
lib/google/apis/appengine_v1beta/representations.rb,
lib/google/apis/appengine_v1beta/representations.rb

Overview

The entrypoint for the application.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Entrypoint

Returns a new instance of Entrypoint.



1059
1060
1061
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1059

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#shellString

The format should be a shell command that can be fed to bash -c. Corresponds to the JSON property shell

Returns:

  • (String)


1057
1058
1059
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1057

def shell
  @shell
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1064
1065
1066
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1064

def update!(**args)
  @shell = args[:shell] if args.key?(:shell)
end