@Generated(value="by gapic-generator-java")
See: Description
| Interface | Description |
|---|---|
| BigQueryReadSettings.RetryAttemptListener | |
| StreamConnection.DoneCallback |
Invoked when server closes the connection.
|
| StreamConnection.RequestCallback |
Invoked when a response is received from the server.
|
| Class | Description |
|---|---|
| BaseBigQueryReadClient |
Service Description: BigQuery Read API.
|
| BaseBigQueryReadSettings |
Settings class to configure an instance of
BaseBigQueryReadClient. |
| BaseBigQueryReadSettings.Builder |
Builder for BaseBigQueryReadSettings.
|
| BigDecimalByteStringEncoder | |
| BigQueryReadClient |
Service Description: BigQuery Read API.
|
| BigQueryReadSettings |
Settings class to configure an instance of
BigQueryReadClient. |
| BigQueryReadSettings.Builder |
Builder for BigQueryReadSettings.
|
| BigQueryWriteClient |
Service Description: BigQuery Write API.
|
| BigQueryWriteSettings |
Settings class to configure an instance of
BigQueryWriteClient. |
| BigQueryWriteSettings.Builder |
Builder for BigQueryWriteSettings.
|
| BQTableSchemaToProtoDescriptor |
Converts a BQ table schema to protobuf descriptor.
|
| CivilTimeEncoder |
Ported from ZetaSQL CivilTimeEncoder Original code can be found at:
https://github.com/google/zetasql/blob/master/java/com/google/zetasql/CivilTimeEncoder.java
Encoder for TIME and DATETIME values, according to civil_time encoding.
|
| JsonStreamWriter |
A StreamWriter that can write JSON data (JSONObjects) to BigQuery tables.
|
| JsonStreamWriter.Builder | |
| JsonToProtoMessage |
Converts Json data to protocol buffer messages given the protocol buffer descriptor.
|
| ProtoSchemaConverter | |
| StreamConnection |
StreamConnection is responsible for writing requests to a GRPC bidirecional connection.
|
| StreamWriterV2 |
A BigQuery Stream Writer that can be used to write data into BigQuery Table.
|
| StreamWriterV2.Builder |
A builder of
StreamWriterV2s. |
======================= BaseBigQueryReadClient =======================
Service Description: BigQuery Read API.
The Read API can be used to read data from BigQuery.
New code should use the v1 Read API going forward, if they don't use Write API at the same time.
Sample for BaseBigQueryReadClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BaseBigQueryReadClient baseBigQueryReadClient = BaseBigQueryReadClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
ReadSession readSession = ReadSession.newBuilder().build();
int maxStreamCount = 940837515;
ReadSession response =
baseBigQueryReadClient.createReadSession(parent, readSession, maxStreamCount);
}
======================= BigQueryWriteClient =======================
Service Description: BigQuery Write API.
The Write API can be used to write data to BigQuery.
Sample for BigQueryWriteClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (BigQueryWriteClient bigQueryWriteClient = BigQueryWriteClient.create()) {
TableName parent = TableName.of("[PROJECT]", "[DATASET]", "[TABLE]");
WriteStream writeStream = WriteStream.newBuilder().build();
WriteStream response = bigQueryWriteClient.createWriteStream(parent, writeStream);
}
Copyright © 2023 Google LLC. All rights reserved.