class Google::Apis::AppengineV1beta::Library

Third-party Python runtime library that is required by the application.

Attributes

name[RW]

Name of the library. Example: “django”. Corresponds to the JSON property `name` @return [String]

version[RW]

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 lib/google/apis/appengine_v1beta/classes.rb, line 1544
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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