Class: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppEngineVersionInfo

Returns a new instance of AppEngineVersionInfo.



108
109
110
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 108

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

Instance Attribute Details

#display_nameString

Name of an App Engine version. Corresponds to the JSON property displayName

Returns:

  • (String)


91
92
93
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 91

def display_name
  @display_name
end

#environmentString

App Engine execution environment for a version. Corresponds to the JSON property environment

Returns:

  • (String)


96
97
98
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 96

def environment
  @environment
end

#runtimeString

Runtime of the App Engine version. Corresponds to the JSON property runtime

Returns:

  • (String)


101
102
103
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 101

def runtime
  @runtime
end

#uriString

URI of an App Engine version. Corresponds to the JSON property uri

Returns:

  • (String)


106
107
108
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 106

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



113
114
115
116
117
118
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 113

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