Interface ListRunsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListRunsResponse
,ListRunsResponse.Builder
public interface ListRunsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
The token to specify as `page_token` in the next call to get the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
The token to specify as `page_token` in the next call to get the next page.Run
getRuns(int index)
The runs from the specified project and location.int
getRunsCount()
The runs from the specified project and location.List<Run>
getRunsList()
The runs from the specified project and location.RunOrBuilder
getRunsOrBuilder(int index)
The runs from the specified project and location.List<? extends RunOrBuilder>
getRunsOrBuilderList()
The runs from the specified project and location.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRunsList
List<Run> getRunsList()
The runs from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Run runs = 1;
-
getRuns
Run getRuns(int index)
The runs from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Run runs = 1;
-
getRunsCount
int getRunsCount()
The runs from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Run runs = 1;
-
getRunsOrBuilderList
List<? extends RunOrBuilder> getRunsOrBuilderList()
The runs from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Run runs = 1;
-
getRunsOrBuilder
RunOrBuilder getRunsOrBuilder(int index)
The runs from the specified project and location.
repeated .google.cloud.datacatalog.lineage.v1.Run runs = 1;
-
getNextPageToken
String getNextPageToken()
The token to specify as `page_token` in the next call to get the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The token to specify as `page_token` in the next call to get the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-