Class: Google::Apis::ComposerV1::SchedulerResource

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 schedulers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SchedulerResource

Returns a new instance of SchedulerResource.



1577
1578
1579
# File 'lib/google/apis/composer_v1/classes.rb', line 1577

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

Instance Attribute Details

#countFixnum

Optional. The number of schedulers. Corresponds to the JSON property count

Returns:

  • (Fixnum)


1559
1560
1561
# File 'lib/google/apis/composer_v1/classes.rb', line 1559

def count
  @count
end

#cpuFloat

Optional. CPU request and limit for a single Airflow scheduler replica. Corresponds to the JSON property cpu

Returns:

  • (Float)


1564
1565
1566
# File 'lib/google/apis/composer_v1/classes.rb', line 1564

def cpu
  @cpu
end

#memory_gbFloat

Optional. Memory (GB) request and limit for a single Airflow scheduler replica. Corresponds to the JSON property memoryGb

Returns:

  • (Float)


1569
1570
1571
# File 'lib/google/apis/composer_v1/classes.rb', line 1569

def memory_gb
  @memory_gb
end

#storage_gbFloat

Optional. Storage (GB) request and limit for a single Airflow scheduler replica. Corresponds to the JSON property storageGb

Returns:

  • (Float)


1575
1576
1577
# File 'lib/google/apis/composer_v1/classes.rb', line 1575

def storage_gb
  @storage_gb
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1582
1583
1584
1585
1586
1587
# File 'lib/google/apis/composer_v1/classes.rb', line 1582

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