Interface ListDataSourcesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDataSourcesResponse
,ListDataSourcesResponse.Builder
public interface ListDataSourcesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataSource
getDataSources(int index)
List of supported data sources and their transfer settings.int
getDataSourcesCount()
List of supported data sources and their transfer settings.List<DataSource>
getDataSourcesList()
List of supported data sources and their transfer settings.DataSourceOrBuilder
getDataSourcesOrBuilder(int index)
List of supported data sources and their transfer settings.List<? extends DataSourceOrBuilder>
getDataSourcesOrBuilderList()
List of supported data sources and their transfer settings.String
getNextPageToken()
Output only.com.google.protobuf.ByteString
getNextPageTokenBytes()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDataSourcesList
List<DataSource> getDataSourcesList()
List of supported data sources and their transfer settings.
repeated .google.cloud.bigquery.datatransfer.v1.DataSource data_sources = 1;
-
getDataSources
DataSource getDataSources(int index)
List of supported data sources and their transfer settings.
repeated .google.cloud.bigquery.datatransfer.v1.DataSource data_sources = 1;
-
getDataSourcesCount
int getDataSourcesCount()
List of supported data sources and their transfer settings.
repeated .google.cloud.bigquery.datatransfer.v1.DataSource data_sources = 1;
-
getDataSourcesOrBuilderList
List<? extends DataSourceOrBuilder> getDataSourcesOrBuilderList()
List of supported data sources and their transfer settings.
repeated .google.cloud.bigquery.datatransfer.v1.DataSource data_sources = 1;
-
getDataSourcesOrBuilder
DataSourceOrBuilder getDataSourcesOrBuilder(int index)
List of supported data sources and their transfer settings.
repeated .google.cloud.bigquery.datatransfer.v1.DataSource data_sources = 1;
-
getNextPageToken
String getNextPageToken()
Output only. The next-pagination token. For multiple-page list results, this token can be used as the `ListDataSourcesRequest.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 `ListDataSourcesRequest.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.
-
-