Interface ListTransferConfigsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTransferConfigsResponse
,ListTransferConfigsResponse.Builder
public interface ListTransferConfigsResponseOrBuilder 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.TransferConfig
getTransferConfigs(int index)
Output only.int
getTransferConfigsCount()
Output only.List<TransferConfig>
getTransferConfigsList()
Output only.TransferConfigOrBuilder
getTransferConfigsOrBuilder(int index)
Output only.List<? extends TransferConfigOrBuilder>
getTransferConfigsOrBuilderList()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTransferConfigsList
List<TransferConfig> getTransferConfigsList()
Output only. The stored pipeline transfer configurations.
repeated .google.cloud.bigquery.datatransfer.v1.TransferConfig transfer_configs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getTransferConfigs
TransferConfig getTransferConfigs(int index)
Output only. The stored pipeline transfer configurations.
repeated .google.cloud.bigquery.datatransfer.v1.TransferConfig transfer_configs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getTransferConfigsCount
int getTransferConfigsCount()
Output only. The stored pipeline transfer configurations.
repeated .google.cloud.bigquery.datatransfer.v1.TransferConfig transfer_configs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getTransferConfigsOrBuilderList
List<? extends TransferConfigOrBuilder> getTransferConfigsOrBuilderList()
Output only. The stored pipeline transfer configurations.
repeated .google.cloud.bigquery.datatransfer.v1.TransferConfig transfer_configs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getTransferConfigsOrBuilder
TransferConfigOrBuilder getTransferConfigsOrBuilder(int index)
Output only. The stored pipeline transfer configurations.
repeated .google.cloud.bigquery.datatransfer.v1.TransferConfig transfer_configs = 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 `ListTransferConfigsRequest.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 `ListTransferConfigsRequest.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.
-
-