Class: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkmanagement_v1beta1/classes.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb,
lib/google/apis/networkmanagement_v1beta1/representations.rb
Overview
For display only. Metadata associated with an App Engine version.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Name of an App Engine version.
-
#environment ⇒ String
App Engine execution environment for a version.
-
#runtime ⇒ String
Runtime of the App Engine version.
-
#uri ⇒ String
URI of an App Engine version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppEngineVersionInfo
constructor
A new instance of AppEngineVersionInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppEngineVersionInfo
Returns a new instance of AppEngineVersionInfo.
74 75 76 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 74 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Name of an App Engine version.
Corresponds to the JSON property displayName
57 58 59 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 57 def display_name @display_name end |
#environment ⇒ String
App Engine execution environment for a version.
Corresponds to the JSON property environment
62 63 64 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 62 def environment @environment end |
#runtime ⇒ String
Runtime of the App Engine version.
Corresponds to the JSON property runtime
67 68 69 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 67 def runtime @runtime end |
#uri ⇒ String
URI of an App Engine version.
Corresponds to the JSON property uri
72 73 74 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 72 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
79 80 81 82 83 84 |
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 79 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @environment = args[:environment] if args.key?(:environment) @runtime = args[:runtime] if args.key?(:runtime) @uri = args[:uri] if args.key?(:uri) end |