Package com.google.webrisk.v1
Interface SearchUrisResponse.ThreatUriOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchUrisResponse.ThreatUri,SearchUrisResponse.ThreatUri.Builder
- Enclosing class:
- SearchUrisResponse
public static interface SearchUrisResponse.ThreatUriOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetExpireTime()The cache lifetime for the returned match.com.google.protobuf.TimestampOrBuildergetExpireTimeOrBuilder()The cache lifetime for the returned match.ThreatTypegetThreatTypes(int index)The ThreatList this threat belongs to.intgetThreatTypesCount()The ThreatList this threat belongs to.List<ThreatType>getThreatTypesList()The ThreatList this threat belongs to.intgetThreatTypesValue(int index)The ThreatList this threat belongs to.List<Integer>getThreatTypesValueList()The ThreatList this threat belongs to.booleanhasExpireTime()The cache lifetime for the returned match.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getThreatTypesList
List<ThreatType> getThreatTypesList()
The ThreatList this threat belongs to.
repeated .google.cloud.webrisk.v1.ThreatType threat_types = 1;- Returns:
- A list containing the threatTypes.
-
getThreatTypesCount
int getThreatTypesCount()
The ThreatList this threat belongs to.
repeated .google.cloud.webrisk.v1.ThreatType threat_types = 1;- Returns:
- The count of threatTypes.
-
getThreatTypes
ThreatType getThreatTypes(int index)
The ThreatList this threat belongs to.
repeated .google.cloud.webrisk.v1.ThreatType threat_types = 1;- Parameters:
index- The index of the element to return.- Returns:
- The threatTypes at the given index.
-
getThreatTypesValueList
List<Integer> getThreatTypesValueList()
The ThreatList this threat belongs to.
repeated .google.cloud.webrisk.v1.ThreatType threat_types = 1;- Returns:
- A list containing the enum numeric values on the wire for threatTypes.
-
getThreatTypesValue
int getThreatTypesValue(int index)
The ThreatList this threat belongs to.
repeated .google.cloud.webrisk.v1.ThreatType threat_types = 1;- Parameters:
index- The index of the value to return.- Returns:
- The enum numeric value on the wire of threatTypes at the given index.
-
hasExpireTime
boolean hasExpireTime()
The cache lifetime for the returned match. Clients must not cache this response past this timestamp to avoid false positives.
.google.protobuf.Timestamp expire_time = 2;- Returns:
- Whether the expireTime field is set.
-
getExpireTime
com.google.protobuf.Timestamp getExpireTime()
The cache lifetime for the returned match. Clients must not cache this response past this timestamp to avoid false positives.
.google.protobuf.Timestamp expire_time = 2;- Returns:
- The expireTime.
-
getExpireTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getExpireTimeOrBuilder()
The cache lifetime for the returned match. Clients must not cache this response past this timestamp to avoid false positives.
.google.protobuf.Timestamp expire_time = 2;
-
-