Package com.google.cloud.datacatalog.v1
Interface UsageStatsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UsageStats
,UsageStats.Builder
public interface UsageStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getTotalCancellations()
The number of cancelled attempts to use the underlying entry.float
getTotalCompletions()
The number of successful uses of the underlying entry.float
getTotalExecutionTimeForCompletionsMillis()
Total time spent only on successful uses, in milliseconds.float
getTotalFailures()
The number of failed attempts to use the underlying entry.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTotalCompletions
float getTotalCompletions()
The number of successful uses of the underlying entry.
float total_completions = 1;
- Returns:
- The totalCompletions.
-
getTotalFailures
float getTotalFailures()
The number of failed attempts to use the underlying entry.
float total_failures = 2;
- Returns:
- The totalFailures.
-
getTotalCancellations
float getTotalCancellations()
The number of cancelled attempts to use the underlying entry.
float total_cancellations = 3;
- Returns:
- The totalCancellations.
-
getTotalExecutionTimeForCompletionsMillis
float getTotalExecutionTimeForCompletionsMillis()
Total time spent only on successful uses, in milliseconds.
float total_execution_time_for_completions_millis = 4;
- Returns:
- The totalExecutionTimeForCompletionsMillis.
-
-