Interface BigQueryServices
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
BigQueryServicesImpl,FakeBigQueryServices
@Internal public interface BigQueryServices extends java.io.SerializableAn interface for real, mock, or fake implementations of Cloud BigQuery services.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceBigQueryServices.BigQueryServerStream<T>Container for reading data from streaming endpoints.static interfaceBigQueryServices.DatasetServiceAn interface to get, create and delete Cloud BigQuery datasets and tables.static interfaceBigQueryServices.JobServiceAn interface for the Cloud BigQuery load service.static interfaceBigQueryServices.StorageClientAn interface representing a client object for making calls to the BigQuery Storage API.static interfaceBigQueryServices.StreamAppendClientAn interface for appending records to a Storage API write stream.static interfaceBigQueryServices.WriteStreamServiceAn interface to get, create and flush Cloud BigQuery STORAGE API write streams.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigQueryServices.DatasetServicegetDatasetService(BigQueryOptions bqOptions)Returns a real, mock, or fakeBigQueryServices.DatasetService.BigQueryServices.JobServicegetJobService(BigQueryOptions bqOptions)Returns a real, mock, or fakeBigQueryServices.JobService.BigQueryServices.StorageClientgetStorageClient(BigQueryOptions bqOptions)Returns a real, mock, or fakeBigQueryServices.StorageClient.BigQueryServices.WriteStreamServicegetWriteStreamService(BigQueryOptions bqOptions)Returns a real, mock, or fakeBigQueryServices.WriteStreamService.
-
-
-
Method Detail
-
getJobService
BigQueryServices.JobService getJobService(BigQueryOptions bqOptions)
Returns a real, mock, or fakeBigQueryServices.JobService.
-
getDatasetService
BigQueryServices.DatasetService getDatasetService(BigQueryOptions bqOptions)
Returns a real, mock, or fakeBigQueryServices.DatasetService.
-
getWriteStreamService
BigQueryServices.WriteStreamService getWriteStreamService(BigQueryOptions bqOptions)
Returns a real, mock, or fakeBigQueryServices.WriteStreamService.
-
getStorageClient
BigQueryServices.StorageClient getStorageClient(BigQueryOptions bqOptions) throws java.io.IOException
Returns a real, mock, or fakeBigQueryServices.StorageClient.- Throws:
java.io.IOException
-
-