Package com.google.monitoring.v3
Interface CreateTimeSeriesSummaryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateTimeSeriesSummary
,CreateTimeSeriesSummary.Builder
public interface CreateTimeSeriesSummaryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateTimeSeriesSummary.Error
getErrors(int index)
The number of points that failed to be written.int
getErrorsCount()
The number of points that failed to be written.List<CreateTimeSeriesSummary.Error>
getErrorsList()
The number of points that failed to be written.CreateTimeSeriesSummary.ErrorOrBuilder
getErrorsOrBuilder(int index)
The number of points that failed to be written.List<? extends CreateTimeSeriesSummary.ErrorOrBuilder>
getErrorsOrBuilderList()
The number of points that failed to be written.int
getSuccessPointCount()
The number of points that were successfully written.int
getTotalPointCount()
The number of points 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
-
getTotalPointCount
int getTotalPointCount()
The number of points in the request.
int32 total_point_count = 1;
- Returns:
- The totalPointCount.
-
getSuccessPointCount
int getSuccessPointCount()
The number of points that were successfully written.
int32 success_point_count = 2;
- Returns:
- The successPointCount.
-
getErrorsList
List<CreateTimeSeriesSummary.Error> getErrorsList()
The number of points that failed to be written. Order is not guaranteed.
repeated .google.monitoring.v3.CreateTimeSeriesSummary.Error errors = 3;
-
getErrors
CreateTimeSeriesSummary.Error getErrors(int index)
The number of points that failed to be written. Order is not guaranteed.
repeated .google.monitoring.v3.CreateTimeSeriesSummary.Error errors = 3;
-
getErrorsCount
int getErrorsCount()
The number of points that failed to be written. Order is not guaranteed.
repeated .google.monitoring.v3.CreateTimeSeriesSummary.Error errors = 3;
-
getErrorsOrBuilderList
List<? extends CreateTimeSeriesSummary.ErrorOrBuilder> getErrorsOrBuilderList()
The number of points that failed to be written. Order is not guaranteed.
repeated .google.monitoring.v3.CreateTimeSeriesSummary.Error errors = 3;
-
getErrorsOrBuilder
CreateTimeSeriesSummary.ErrorOrBuilder getErrorsOrBuilder(int index)
The number of points that failed to be written. Order is not guaranteed.
repeated .google.monitoring.v3.CreateTimeSeriesSummary.Error errors = 3;
-
-