Class: Google::Apis::ComposerV1::SchedulerResource
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1::SchedulerResource
- 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 schedulers.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
Optional.
-
#cpu ⇒ Float
Optional.
-
#memory_gb ⇒ Float
Optional.
-
#storage_gb ⇒ Float
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SchedulerResource
constructor
A new instance of SchedulerResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SchedulerResource
Returns a new instance of SchedulerResource.
1554 1555 1556 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1554 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Optional. The number of schedulers.
Corresponds to the JSON property count
1536 1537 1538 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1536 def count @count end |
#cpu ⇒ Float
Optional. CPU request and limit for a single Airflow scheduler replica.
Corresponds to the JSON property cpu
1541 1542 1543 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1541 def cpu @cpu end |
#memory_gb ⇒ Float
Optional. Memory (GB) request and limit for a single Airflow scheduler replica.
Corresponds to the JSON property memoryGb
1546 1547 1548 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1546 def memory_gb @memory_gb end |
#storage_gb ⇒ Float
Optional. Storage (GB) request and limit for a single Airflow scheduler
replica.
Corresponds to the JSON property storageGb
1552 1553 1554 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1552 def storage_gb @storage_gb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1559 1560 1561 1562 1563 1564 |
# File 'lib/google/apis/composer_v1/classes.rb', line 1559 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 |