Class: Google::Apis::ComposerV1beta1::DagProcessorResource
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1beta1::DagProcessorResource
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/composer_v1beta1/classes.rb,
lib/google/apis/composer_v1beta1/representations.rb,
lib/google/apis/composer_v1beta1/representations.rb
Overview
Configuration for resources used by Airflow DAG processors.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
Optional.
-
#cpu ⇒ Float
Optional.
-
#memory_gb ⇒ Float
Optional.
-
#storage_gb ⇒ Float
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DagProcessorResource
constructor
A new instance of DagProcessorResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DagProcessorResource
Returns a new instance of DagProcessorResource.
269 270 271 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 269 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Optional. The number of DAG processors. If not provided or set to 0, a single
DAG processor instance will be created.
Corresponds to the JSON property count
250 251 252 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 250 def count @count end |
#cpu ⇒ Float
Optional. CPU request and limit for a single Airflow DAG processor replica.
Corresponds to the JSON property cpu
255 256 257 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 255 def cpu @cpu end |
#memory_gb ⇒ Float
Optional. Memory (GB) request and limit for a single Airflow DAG processor
replica.
Corresponds to the JSON property memoryGb
261 262 263 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 261 def memory_gb @memory_gb end |
#storage_gb ⇒ Float
Optional. Storage (GB) request and limit for a single Airflow DAG processor
replica.
Corresponds to the JSON property storageGb
267 268 269 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 267 def storage_gb @storage_gb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
274 275 276 277 278 279 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 274 def update!(**args) @count = args[:count] if args.key?(:count) @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 |