Interface ErrorGroupOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ErrorGroup,ErrorGroup.Builder
public interface ErrorGroupOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetGroupId()Group IDs are unique for a given project.com.google.protobuf.ByteStringgetGroupIdBytes()Group IDs are unique for a given project.StringgetName()The group resource name.com.google.protobuf.ByteStringgetNameBytes()The group resource name.ResolutionStatusgetResolutionStatus()Error group's resolution status.intgetResolutionStatusValue()Error group's resolution status.TrackingIssuegetTrackingIssues(int index)Associated tracking issues.intgetTrackingIssuesCount()Associated tracking issues.List<TrackingIssue>getTrackingIssuesList()Associated tracking issues.TrackingIssueOrBuildergetTrackingIssuesOrBuilder(int index)Associated tracking issues.List<? extends TrackingIssueOrBuilder>getTrackingIssuesOrBuilderList()Associated tracking issues.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The group resource name. Example: <code>projects/my-project-123/groups/CNSgkpnppqKCUw</code>
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The group resource name. Example: <code>projects/my-project-123/groups/CNSgkpnppqKCUw</code>
string name = 1;- Returns:
- The bytes for name.
-
getGroupId
String getGroupId()
Group IDs are unique for a given project. If the same kind of error occurs in different service contexts, it will receive the same group ID.
string group_id = 2;- Returns:
- The groupId.
-
getGroupIdBytes
com.google.protobuf.ByteString getGroupIdBytes()
Group IDs are unique for a given project. If the same kind of error occurs in different service contexts, it will receive the same group ID.
string group_id = 2;- Returns:
- The bytes for groupId.
-
getTrackingIssuesList
List<TrackingIssue> getTrackingIssuesList()
Associated tracking issues.
repeated .google.devtools.clouderrorreporting.v1beta1.TrackingIssue tracking_issues = 3;
-
getTrackingIssues
TrackingIssue getTrackingIssues(int index)
Associated tracking issues.
repeated .google.devtools.clouderrorreporting.v1beta1.TrackingIssue tracking_issues = 3;
-
getTrackingIssuesCount
int getTrackingIssuesCount()
Associated tracking issues.
repeated .google.devtools.clouderrorreporting.v1beta1.TrackingIssue tracking_issues = 3;
-
getTrackingIssuesOrBuilderList
List<? extends TrackingIssueOrBuilder> getTrackingIssuesOrBuilderList()
Associated tracking issues.
repeated .google.devtools.clouderrorreporting.v1beta1.TrackingIssue tracking_issues = 3;
-
getTrackingIssuesOrBuilder
TrackingIssueOrBuilder getTrackingIssuesOrBuilder(int index)
Associated tracking issues.
repeated .google.devtools.clouderrorreporting.v1beta1.TrackingIssue tracking_issues = 3;
-
getResolutionStatusValue
int getResolutionStatusValue()
Error group's resolution status. An unspecified resolution status will be interpreted as OPEN
.google.devtools.clouderrorreporting.v1beta1.ResolutionStatus resolution_status = 5;- Returns:
- The enum numeric value on the wire for resolutionStatus.
-
getResolutionStatus
ResolutionStatus getResolutionStatus()
Error group's resolution status. An unspecified resolution status will be interpreted as OPEN
.google.devtools.clouderrorreporting.v1beta1.ResolutionStatus resolution_status = 5;- Returns:
- The resolutionStatus.
-
-