Interface ListTransferRunsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTransferRunsResponse
,ListTransferRunsResponse.Builder
public interface ListTransferRunsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Output only.com.google.protobuf.ByteString
getNextPageTokenBytes()
Output only.TransferRun
getTransferRuns(int index)
Output only.int
getTransferRunsCount()
Output only.List<TransferRun>
getTransferRunsList()
Output only.TransferRunOrBuilder
getTransferRunsOrBuilder(int index)
Output only.List<? extends TransferRunOrBuilder>
getTransferRunsOrBuilderList()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTransferRunsList
List<TransferRun> getTransferRunsList()
Output only. The stored pipeline transfer runs.
repeated .google.cloud.bigquery.datatransfer.v1.TransferRun transfer_runs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getTransferRuns
TransferRun getTransferRuns(int index)
Output only. The stored pipeline transfer runs.
repeated .google.cloud.bigquery.datatransfer.v1.TransferRun transfer_runs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getTransferRunsCount
int getTransferRunsCount()
Output only. The stored pipeline transfer runs.
repeated .google.cloud.bigquery.datatransfer.v1.TransferRun transfer_runs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getTransferRunsOrBuilderList
List<? extends TransferRunOrBuilder> getTransferRunsOrBuilderList()
Output only. The stored pipeline transfer runs.
repeated .google.cloud.bigquery.datatransfer.v1.TransferRun transfer_runs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getTransferRunsOrBuilder
TransferRunOrBuilder getTransferRunsOrBuilder(int index)
Output only. The stored pipeline transfer runs.
repeated .google.cloud.bigquery.datatransfer.v1.TransferRun transfer_runs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getNextPageToken
String getNextPageToken()
Output only. The next-pagination token. For multiple-page list results, this token can be used as the `ListTransferRunsRequest.page_token` to request the next page of list results.
string next_page_token = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Output only. The next-pagination token. For multiple-page list results, this token can be used as the `ListTransferRunsRequest.page_token` to request the next page of list results.
string next_page_token = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for nextPageToken.
-
-