Class: Google::Apis::ComposerV1::WebServerResource
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1::WebServerResource
- 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
-
#cpu ⇒ Float
Optional.
-
#memory_gb ⇒ Float
Optional.
-
#storage_gb ⇒ Float
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WebServerResource
constructor
A new instance of WebServerResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WebServerResource
Returns a new instance of WebServerResource.
1201 1202 1203 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1201 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpu ⇒ Float
Optional. CPU request and limit for Airflow web server.
Corresponds to the JSON property cpu
1189 1190 1191 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1189 def cpu @cpu end |
#memory_gb ⇒ Float
Optional. Memory (GB) request and limit for Airflow web server.
Corresponds to the JSON property memoryGb
1194 1195 1196 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1194 def memory_gb @memory_gb end |
#storage_gb ⇒ Float
Optional. Storage (GB) request and limit for Airflow web server.
Corresponds to the JSON property storageGb
1199 1200 1201 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1199 def storage_gb @storage_gb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1206 1207 1208 1209 1210 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1206 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 |