Package com.google.cloud.compute.v1
Interface AutoscalingPolicyLoadBalancingUtilizationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AutoscalingPolicyLoadBalancingUtilization
,AutoscalingPolicyLoadBalancingUtilization.Builder
public interface AutoscalingPolicyLoadBalancingUtilizationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getUtilizationTarget()
Fraction of backend capacity utilization (set in HTTP(S) load balancing configuration) that the autoscaler maintains.boolean
hasUtilizationTarget()
Fraction of backend capacity utilization (set in HTTP(S) load balancing configuration) that the autoscaler maintains.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasUtilizationTarget
boolean hasUtilizationTarget()
Fraction of backend capacity utilization (set in HTTP(S) load balancing configuration) that the autoscaler maintains. Must be a positive float value. If not defined, the default is 0.8.
optional double utilization_target = 215905870;
- Returns:
- Whether the utilizationTarget field is set.
-
getUtilizationTarget
double getUtilizationTarget()
Fraction of backend capacity utilization (set in HTTP(S) load balancing configuration) that the autoscaler maintains. Must be a positive float value. If not defined, the default is 0.8.
optional double utilization_target = 215905870;
- Returns:
- The utilizationTarget.
-
-