Class: Google::Apis::ComposerV1beta1::TriggererResource
- Inherits:
-
Object
- Object
- Google::Apis::ComposerV1beta1::TriggererResource
- 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
-
#count ⇒ Fixnum
Optional.
-
#cpu ⇒ Float
Optional.
-
#memory_gb ⇒ Float
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TriggererResource
constructor
A new instance of TriggererResource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TriggererResource
Returns a new instance of TriggererResource.
1875 1876 1877 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1875 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Optional. The number of triggerers.
Corresponds to the JSON property count
1863 1864 1865 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1863 def count @count end |
#cpu ⇒ Float
Optional. CPU request and limit for a single Airflow triggerer replica.
Corresponds to the JSON property cpu
1868 1869 1870 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1868 def cpu @cpu end |
#memory_gb ⇒ Float
Optional. Memory (GB) request and limit for a single Airflow triggerer replica.
Corresponds to the JSON property memoryGb
1873 1874 1875 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1873 def memory_gb @memory_gb end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1880 1881 1882 1883 1884 |
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 1880 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 |