class Google::Apis::ComposerV1::WebServerConfig

The configuration settings for the Airflow web server App Engine instance.

Attributes

machine_type[RW]

Optional. Machine type on which Airflow web server is running. It has to be one of: composer-n1-webserver-2, composer-n1-webserver-4 or composer-n1- webserver-8. If not specified, composer-n1-webserver-2 will be used. Value custom is returned only in response, if Airflow web server parameters were manually changed to a non-standard values. Corresponds to the JSON property `machineType` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/composer_v1/classes.rb, line 995
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/composer_v1/classes.rb, line 1000
def update!(**args)
  @machine_type = args[:machine_type] if args.key?(:machine_type)
end