Class: Google::Apis::ComposerV1::WorkerResource
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComposerV1::WorkerResource
 
- 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 workers.
Instance Attribute Summary collapse
- 
  
    
      #cpu  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #max_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #memory_gb  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #min_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #storage_gb  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WorkerResource 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of WorkerResource. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ WorkerResource
Returns a new instance of WorkerResource.
| 1534 1535 1536 | # File 'lib/google/apis/composer_v1/classes.rb', line 1534 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cpu ⇒ Float
Optional. CPU request and limit for a single Airflow worker replica.
Corresponds to the JSON property cpu
| 1512 1513 1514 | # File 'lib/google/apis/composer_v1/classes.rb', line 1512 def cpu @cpu end | 
#max_count ⇒ Fixnum
Optional. Maximum number of workers for autoscaling.
Corresponds to the JSON property maxCount
| 1517 1518 1519 | # File 'lib/google/apis/composer_v1/classes.rb', line 1517 def max_count @max_count end | 
#memory_gb ⇒ Float
Optional. Memory (GB) request and limit for a single Airflow worker replica.
Corresponds to the JSON property memoryGb
| 1522 1523 1524 | # File 'lib/google/apis/composer_v1/classes.rb', line 1522 def memory_gb @memory_gb end | 
#min_count ⇒ Fixnum
Optional. Minimum number of workers for autoscaling.
Corresponds to the JSON property minCount
| 1527 1528 1529 | # File 'lib/google/apis/composer_v1/classes.rb', line 1527 def min_count @min_count end | 
#storage_gb ⇒ Float
Optional. Storage (GB) request and limit for a single Airflow worker replica.
Corresponds to the JSON property storageGb
| 1532 1533 1534 | # File 'lib/google/apis/composer_v1/classes.rb', line 1532 def storage_gb @storage_gb end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1539 1540 1541 1542 1543 1544 1545 | # File 'lib/google/apis/composer_v1/classes.rb', line 1539 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 |