class Google::Apis::AppengineV1beta5::Library

A Python runtime third-party library required by the application.

Attributes

name[RW]

The name of the library, e.g. “PIL” or “django”. Corresponds to the JSON property `name` @return [String]

version[RW]

The version of the library to select, or “latest”. Corresponds to the JSON property `version` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/appengine_v1beta5/classes.rb, line 1087
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/appengine_v1beta5/classes.rb, line 1092
def update!(**args)
  @name = args[:name] if args.key?(:name)
  @version = args[:version] if args.key?(:version)
end