Class: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/appengine_v1beta/classes.rb,
lib/google/apis/appengine_v1beta/representations.rb,
lib/google/apis/appengine_v1beta/representations.rb

Overview

Runtime settings for the App Engine flexible environment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FlexibleRuntimeSettings

Returns a new instance of FlexibleRuntimeSettings.



1260
1261
1262
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1260

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

Instance Attribute Details

#operating_systemString

The operating system of the application runtime. Corresponds to the JSON property operatingSystem

Returns:

  • (String)


1253
1254
1255
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1253

def operating_system
  @operating_system
end

#runtime_versionString

The runtime version of an App Engine flexible application. Corresponds to the JSON property runtimeVersion

Returns:

  • (String)


1258
1259
1260
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1258

def runtime_version
  @runtime_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1265
1266
1267
1268
# File 'lib/google/apis/appengine_v1beta/classes.rb', line 1265

def update!(**args)
  @operating_system = args[:operating_system] if args.key?(:operating_system)
  @runtime_version = args[:runtime_version] if args.key?(:runtime_version)
end