Interface GroupResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GroupResult
,GroupResult.Builder
public interface GroupResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsProperties(String key)
Properties matching the groupBy fields in the request.long
getCount()
Total count of resources for the given properties.Map<String,com.google.protobuf.Value>
getProperties()
Deprecated.int
getPropertiesCount()
Properties matching the groupBy fields in the request.Map<String,com.google.protobuf.Value>
getPropertiesMap()
Properties matching the groupBy fields in the request.com.google.protobuf.Value
getPropertiesOrDefault(String key, com.google.protobuf.Value defaultValue)
Properties matching the groupBy fields in the request.com.google.protobuf.Value
getPropertiesOrThrow(String key)
Properties matching the groupBy fields in the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPropertiesCount
int getPropertiesCount()
Properties matching the groupBy fields in the request.
map<string, .google.protobuf.Value> properties = 1;
-
containsProperties
boolean containsProperties(String key)
Properties matching the groupBy fields in the request.
map<string, .google.protobuf.Value> properties = 1;
-
getProperties
@Deprecated Map<String,com.google.protobuf.Value> getProperties()
Deprecated.UsegetPropertiesMap()
instead.
-
getPropertiesMap
Map<String,com.google.protobuf.Value> getPropertiesMap()
Properties matching the groupBy fields in the request.
map<string, .google.protobuf.Value> properties = 1;
-
getPropertiesOrDefault
com.google.protobuf.Value getPropertiesOrDefault(String key, com.google.protobuf.Value defaultValue)
Properties matching the groupBy fields in the request.
map<string, .google.protobuf.Value> properties = 1;
-
getPropertiesOrThrow
com.google.protobuf.Value getPropertiesOrThrow(String key)
Properties matching the groupBy fields in the request.
map<string, .google.protobuf.Value> properties = 1;
-
getCount
long getCount()
Total count of resources for the given properties.
int64 count = 2;
- Returns:
- The count.
-
-