Interface ProcessLinkInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProcessLinkInfo
,ProcessLinkInfo.Builder
public interface ProcessLinkInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Timestamp
getEndTime()
The end of the last event establishing this link-process tuple.com.google.protobuf.TimestampOrBuilder
getEndTimeOrBuilder()
The end of the last event establishing this link-process tuple.String
getLink()
The name of the link in the format of `projects/{project}/locations/{location}/links/{link}`.com.google.protobuf.ByteString
getLinkBytes()
The name of the link in the format of `projects/{project}/locations/{location}/links/{link}`.com.google.protobuf.Timestamp
getStartTime()
The start of the first event establishing this link-process tuple.com.google.protobuf.TimestampOrBuilder
getStartTimeOrBuilder()
The start of the first event establishing this link-process tuple.boolean
hasEndTime()
The end of the last event establishing this link-process tuple.boolean
hasStartTime()
The start of the first event establishing this link-process tuple.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLink
String getLink()
The name of the link in the format of `projects/{project}/locations/{location}/links/{link}`.
string link = 1;
- Returns:
- The link.
-
getLinkBytes
com.google.protobuf.ByteString getLinkBytes()
The name of the link in the format of `projects/{project}/locations/{location}/links/{link}`.
string link = 1;
- Returns:
- The bytes for link.
-
hasStartTime
boolean hasStartTime()
The start of the first event establishing this link-process tuple.
.google.protobuf.Timestamp start_time = 2;
- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
The start of the first event establishing this link-process tuple.
.google.protobuf.Timestamp start_time = 2;
- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
The start of the first event establishing this link-process tuple.
.google.protobuf.Timestamp start_time = 2;
-
hasEndTime
boolean hasEndTime()
The end of the last event establishing this link-process tuple.
.google.protobuf.Timestamp end_time = 3;
- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
The end of the last event establishing this link-process tuple.
.google.protobuf.Timestamp end_time = 3;
- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
The end of the last event establishing this link-process tuple.
.google.protobuf.Timestamp end_time = 3;
-
-