Package com.google.cloud.compute.v1
Interface SecurityPolicyRuleRateLimitOptionsThresholdOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SecurityPolicyRuleRateLimitOptionsThreshold
,SecurityPolicyRuleRateLimitOptionsThreshold.Builder
public interface SecurityPolicyRuleRateLimitOptionsThresholdOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCount()
Number of HTTP(S) requests for calculating the threshold.int
getIntervalSec()
Interval over which the threshold is computed.boolean
hasCount()
Number of HTTP(S) requests for calculating the threshold.boolean
hasIntervalSec()
Interval over which the threshold is computed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCount
boolean hasCount()
Number of HTTP(S) requests for calculating the threshold.
optional int32 count = 94851343;
- Returns:
- Whether the count field is set.
-
getCount
int getCount()
Number of HTTP(S) requests for calculating the threshold.
optional int32 count = 94851343;
- Returns:
- The count.
-
hasIntervalSec
boolean hasIntervalSec()
Interval over which the threshold is computed.
optional int32 interval_sec = 41084375;
- Returns:
- Whether the intervalSec field is set.
-
getIntervalSec
int getIntervalSec()
Interval over which the threshold is computed.
optional int32 interval_sec = 41084375;
- Returns:
- The intervalSec.
-
-