Class: Google::Apis::ComposerV1beta1::TriggererResource

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TriggererResource

Returns a new instance of TriggererResource.



2226
2227
2228
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2226

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

Instance Attribute Details

#countFixnum

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

Returns:

  • (Fixnum)


2214
2215
2216
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2214

def count
  @count
end

#cpuFloat

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

Returns:

  • (Float)


2219
2220
2221
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2219

def cpu
  @cpu
end

#memory_gbFloat

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

Returns:

  • (Float)


2224
2225
2226
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2224

def memory_gb
  @memory_gb
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2231
2232
2233
2234
2235
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2231

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)
end