Class: Google::Apis::ComposerV1beta1::WorkerResource

Inherits:
Object
  • Object
show all
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 workers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WorkerResource

Returns a new instance of WorkerResource.



1484
1485
1486
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1484

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

Instance Attribute Details

#cpuFloat

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

Returns:

  • (Float)


1462
1463
1464
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1462

def cpu
  @cpu
end

#max_countFixnum

Optional. Maximum number of workers for autoscaling. Corresponds to the JSON property maxCount

Returns:

  • (Fixnum)


1467
1468
1469
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1467

def max_count
  @max_count
end

#memory_gbFloat

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

Returns:

  • (Float)


1472
1473
1474
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1472

def memory_gb
  @memory_gb
end

#min_countFixnum

Optional. Minimum number of workers for autoscaling. Corresponds to the JSON property minCount

Returns:

  • (Fixnum)


1477
1478
1479
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1477

def min_count
  @min_count
end

#storage_gbFloat

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

Returns:

  • (Float)


1482
1483
1484
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1482

def storage_gb
  @storage_gb
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1489
1490
1491
1492
1493
1494
1495
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1489

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