Class: Google::Apis::AppengineV1::Library
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::Library
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1/classes.rb,
generated/google/apis/appengine_v1/representations.rb,
generated/google/apis/appengine_v1/representations.rb
Overview
Third-party Python runtime library that is required by the application.
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the library.
-
#version ⇒ String
Version of the library to select, or "latest".
Instance Method Summary collapse
-
#initialize(**args) ⇒ Library
constructor
A new instance of Library.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Library
Returns a new instance of Library
1210 1211 1212 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1210 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the library. Example: "django".
Corresponds to the JSON property name
1203 1204 1205 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1203 def name @name end |
#version ⇒ String
Version of the library to select, or "latest".
Corresponds to the JSON property version
1208 1209 1210 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1208 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1215 1216 1217 1218 |
# File 'generated/google/apis/appengine_v1/classes.rb', line 1215 def update!(**args) @name = args[:name] if args.key?(:name) @version = args[:version] if args.key?(:version) end |