Interface WorkloadsConfig.SchedulerResourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WorkloadsConfig.SchedulerResource
,WorkloadsConfig.SchedulerResource.Builder
- Enclosing class:
- WorkloadsConfig
public static interface WorkloadsConfig.SchedulerResourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCount()
Optional.float
getCpu()
Optional.float
getMemoryGb()
Optional.float
getStorageGb()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCpu
float getCpu()
Optional. CPU request and limit for a single Airflow scheduler replica.
float cpu = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The cpu.
-
getMemoryGb
float getMemoryGb()
Optional. Memory (GB) request and limit for a single Airflow scheduler replica.
float memory_gb = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The memoryGb.
-
getStorageGb
float getStorageGb()
Optional. Storage (GB) request and limit for a single Airflow scheduler replica.
float storage_gb = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The storageGb.
-
getCount
int getCount()
Optional. The number of schedulers.
int32 count = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The count.
-
-