Class: Google::Apis::ComposerV1::WebServerResource

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

Overview

Configuration for resources used by Airflow web server.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WebServerResource

Returns a new instance of WebServerResource.



1827
1828
1829
# File 'lib/google/apis/composer_v1/classes.rb', line 1827

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

Instance Attribute Details

#cpuFloat

Optional. CPU request and limit for Airflow web server. Corresponds to the JSON property cpu

Returns:

  • (Float)


1815
1816
1817
# File 'lib/google/apis/composer_v1/classes.rb', line 1815

def cpu
  @cpu
end

#memory_gbFloat

Optional. Memory (GB) request and limit for Airflow web server. Corresponds to the JSON property memoryGb

Returns:

  • (Float)


1820
1821
1822
# File 'lib/google/apis/composer_v1/classes.rb', line 1820

def memory_gb
  @memory_gb
end

#storage_gbFloat

Optional. Storage (GB) request and limit for Airflow web server. Corresponds to the JSON property storageGb

Returns:

  • (Float)


1825
1826
1827
# File 'lib/google/apis/composer_v1/classes.rb', line 1825

def storage_gb
  @storage_gb
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1832
1833
1834
1835
1836
# File 'lib/google/apis/composer_v1/classes.rb', line 1832

def update!(**args)
  @cpu = args[:cpu] if args.key?(:cpu)
  @memory_gb = args[:memory_gb] if args.key?(:memory_gb)
  @storage_gb = args[:storage_gb] if args.key?(:storage_gb)
end