-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ac340c
commit 902156d
Showing
54 changed files
with
20,644 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
387 changes: 387 additions & 0 deletions
387
...erystorage/src/main/java/com/google/cloud/bigquery/storage/v1/BaseBigQueryReadClient.java
Large diffs are not rendered by default.
Oops, something went wrong.
201 changes: 201 additions & 0 deletions
201
...ystorage/src/main/java/com/google/cloud/bigquery/storage/v1/BaseBigQueryReadSettings.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,201 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.google.cloud.bigquery.storage.v1; | ||
|
||
import com.google.api.core.ApiFunction; | ||
import com.google.api.core.BetaApi; | ||
import com.google.api.gax.core.GoogleCredentialsProvider; | ||
import com.google.api.gax.core.InstantiatingExecutorProvider; | ||
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider; | ||
import com.google.api.gax.rpc.ApiClientHeaderProvider; | ||
import com.google.api.gax.rpc.ClientContext; | ||
import com.google.api.gax.rpc.ClientSettings; | ||
import com.google.api.gax.rpc.ServerStreamingCallSettings; | ||
import com.google.api.gax.rpc.TransportChannelProvider; | ||
import com.google.api.gax.rpc.UnaryCallSettings; | ||
import com.google.cloud.bigquery.storage.v1.stub.BigQueryReadStubSettings; | ||
import java.io.IOException; | ||
import java.util.List; | ||
import javax.annotation.Generated; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS | ||
/** | ||
* Settings class to configure an instance of {@link BaseBigQueryReadClient}. | ||
* | ||
* <p>The default instance has everything set to sensible defaults: | ||
* | ||
* <ul> | ||
* <li>The default service address (bigquerystorage.googleapis.com) and default port (443) are | ||
* used. | ||
* <li>Credentials are acquired automatically through Application Default Credentials. | ||
* <li>Retries are configured for idempotent methods but not for non-idempotent methods. | ||
* </ul> | ||
* | ||
* <p>The builder of this class is recursive, so contained classes are themselves builders. When | ||
* build() is called, the tree of builders is called to create the complete settings object. | ||
* | ||
* <p>For example, to set the total timeout of createReadSession to 30 seconds: | ||
* | ||
* <pre> | ||
* <code> | ||
* BaseBigQueryReadSettings.Builder baseBigQueryReadSettingsBuilder = | ||
* BaseBigQueryReadSettings.newBuilder(); | ||
* baseBigQueryReadSettingsBuilder.createReadSessionSettings().getRetrySettings().toBuilder() | ||
* .setTotalTimeout(Duration.ofSeconds(30)); | ||
* BaseBigQueryReadSettings baseBigQueryReadSettings = baseBigQueryReadSettingsBuilder.build(); | ||
* </code> | ||
* </pre> | ||
*/ | ||
@Generated("by gapic-generator") | ||
@BetaApi | ||
public class BaseBigQueryReadSettings extends ClientSettings<BaseBigQueryReadSettings> { | ||
/** Returns the object with the settings used for calls to createReadSession. */ | ||
public UnaryCallSettings<CreateReadSessionRequest, ReadSession> createReadSessionSettings() { | ||
return ((BigQueryReadStubSettings) getStubSettings()).createReadSessionSettings(); | ||
} | ||
|
||
/** Returns the object with the settings used for calls to readRows. */ | ||
public ServerStreamingCallSettings<ReadRowsRequest, ReadRowsResponse> readRowsSettings() { | ||
return ((BigQueryReadStubSettings) getStubSettings()).readRowsSettings(); | ||
} | ||
|
||
/** Returns the object with the settings used for calls to splitReadStream. */ | ||
public UnaryCallSettings<SplitReadStreamRequest, SplitReadStreamResponse> | ||
splitReadStreamSettings() { | ||
return ((BigQueryReadStubSettings) getStubSettings()).splitReadStreamSettings(); | ||
} | ||
|
||
public static final BaseBigQueryReadSettings create(BigQueryReadStubSettings stub) | ||
throws IOException { | ||
return new BaseBigQueryReadSettings.Builder(stub.toBuilder()).build(); | ||
} | ||
|
||
/** Returns a builder for the default ExecutorProvider for this service. */ | ||
public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() { | ||
return BigQueryReadStubSettings.defaultExecutorProviderBuilder(); | ||
} | ||
|
||
/** Returns the default service endpoint. */ | ||
public static String getDefaultEndpoint() { | ||
return BigQueryReadStubSettings.getDefaultEndpoint(); | ||
} | ||
|
||
/** Returns the default service scopes. */ | ||
public static List<String> getDefaultServiceScopes() { | ||
return BigQueryReadStubSettings.getDefaultServiceScopes(); | ||
} | ||
|
||
/** Returns a builder for the default credentials for this service. */ | ||
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() { | ||
return BigQueryReadStubSettings.defaultCredentialsProviderBuilder(); | ||
} | ||
|
||
/** Returns a builder for the default ChannelProvider for this service. */ | ||
public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder() { | ||
return BigQueryReadStubSettings.defaultGrpcTransportProviderBuilder(); | ||
} | ||
|
||
public static TransportChannelProvider defaultTransportChannelProvider() { | ||
return BigQueryReadStubSettings.defaultTransportChannelProvider(); | ||
} | ||
|
||
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.") | ||
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() { | ||
return BigQueryReadStubSettings.defaultApiClientHeaderProviderBuilder(); | ||
} | ||
|
||
/** Returns a new builder for this class. */ | ||
public static Builder newBuilder() { | ||
return Builder.createDefault(); | ||
} | ||
|
||
/** Returns a new builder for this class. */ | ||
public static Builder newBuilder(ClientContext clientContext) { | ||
return new Builder(clientContext); | ||
} | ||
|
||
/** Returns a builder containing all the values of this settings class. */ | ||
public Builder toBuilder() { | ||
return new Builder(this); | ||
} | ||
|
||
protected BaseBigQueryReadSettings(Builder settingsBuilder) throws IOException { | ||
super(settingsBuilder); | ||
} | ||
|
||
/** Builder for BaseBigQueryReadSettings. */ | ||
public static class Builder extends ClientSettings.Builder<BaseBigQueryReadSettings, Builder> { | ||
protected Builder() throws IOException { | ||
this((ClientContext) null); | ||
} | ||
|
||
protected Builder(ClientContext clientContext) { | ||
super(BigQueryReadStubSettings.newBuilder(clientContext)); | ||
} | ||
|
||
private static Builder createDefault() { | ||
return new Builder(BigQueryReadStubSettings.newBuilder()); | ||
} | ||
|
||
protected Builder(BaseBigQueryReadSettings settings) { | ||
super(settings.getStubSettings().toBuilder()); | ||
} | ||
|
||
protected Builder(BigQueryReadStubSettings.Builder stubSettings) { | ||
super(stubSettings); | ||
} | ||
|
||
public BigQueryReadStubSettings.Builder getStubSettingsBuilder() { | ||
return ((BigQueryReadStubSettings.Builder) getStubSettings()); | ||
} | ||
|
||
// NEXT_MAJOR_VER: remove 'throws Exception' | ||
/** | ||
* Applies the given settings updater function to all of the unary API methods in this service. | ||
* | ||
* <p>Note: This method does not support applying settings to streaming methods. | ||
*/ | ||
public Builder applyToAllUnaryMethods( | ||
ApiFunction<UnaryCallSettings.Builder<?, ?>, Void> settingsUpdater) throws Exception { | ||
super.applyToAllUnaryMethods( | ||
getStubSettingsBuilder().unaryMethodSettingsBuilders(), settingsUpdater); | ||
return this; | ||
} | ||
|
||
/** Returns the builder for the settings used for calls to createReadSession. */ | ||
public UnaryCallSettings.Builder<CreateReadSessionRequest, ReadSession> | ||
createReadSessionSettings() { | ||
return getStubSettingsBuilder().createReadSessionSettings(); | ||
} | ||
|
||
/** Returns the builder for the settings used for calls to readRows. */ | ||
public ServerStreamingCallSettings.Builder<ReadRowsRequest, ReadRowsResponse> | ||
readRowsSettings() { | ||
return getStubSettingsBuilder().readRowsSettings(); | ||
} | ||
|
||
/** Returns the builder for the settings used for calls to splitReadStream. */ | ||
public UnaryCallSettings.Builder<SplitReadStreamRequest, SplitReadStreamResponse> | ||
splitReadStreamSettings() { | ||
return getStubSettingsBuilder().splitReadStreamSettings(); | ||
} | ||
|
||
@Override | ||
public BaseBigQueryReadSettings build() throws IOException { | ||
return new BaseBigQueryReadSettings(this); | ||
} | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
...loud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** | ||
* A client to BigQuery Storage API. | ||
* | ||
* <p>The interfaces provided are listed below, along with usage samples. | ||
* | ||
* <p>====================== BaseBigQueryReadClient ====================== | ||
* | ||
* <p>Service Description: BigQuery Read API. | ||
* | ||
* <p>The Read API can be used to read data from BigQuery. | ||
* | ||
* <p>Sample for BaseBigQueryReadClient: | ||
* | ||
* <pre> | ||
* <code> | ||
* try (BaseBigQueryReadClient baseBigQueryReadClient = BaseBigQueryReadClient.create()) { | ||
* String parent = ""; | ||
* ReadSession readSession = ReadSession.newBuilder().build(); | ||
* int maxStreamCount = 0; | ||
* ReadSession response = baseBigQueryReadClient.createReadSession(parent, readSession, maxStreamCount); | ||
* } | ||
* </code> | ||
* </pre> | ||
*/ | ||
@Generated("by gapic-generator") | ||
package com.google.cloud.bigquery.storage.v1; | ||
|
||
import javax.annotation.Generated; |
54 changes: 54 additions & 0 deletions
54
...uerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/stub/BigQueryReadStub.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.google.cloud.bigquery.storage.v1.stub; | ||
|
||
import com.google.api.core.BetaApi; | ||
import com.google.api.gax.core.BackgroundResource; | ||
import com.google.api.gax.rpc.ServerStreamingCallable; | ||
import com.google.api.gax.rpc.UnaryCallable; | ||
import com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest; | ||
import com.google.cloud.bigquery.storage.v1.ReadRowsRequest; | ||
import com.google.cloud.bigquery.storage.v1.ReadRowsResponse; | ||
import com.google.cloud.bigquery.storage.v1.ReadSession; | ||
import com.google.cloud.bigquery.storage.v1.SplitReadStreamRequest; | ||
import com.google.cloud.bigquery.storage.v1.SplitReadStreamResponse; | ||
import javax.annotation.Generated; | ||
|
||
// AUTO-GENERATED DOCUMENTATION AND CLASS | ||
/** | ||
* Base stub class for BigQuery Storage API. | ||
* | ||
* <p>This class is for advanced usage and reflects the underlying API directly. | ||
*/ | ||
@Generated("by gapic-generator") | ||
@BetaApi("A restructuring of stub classes is planned, so this may break in the future") | ||
public abstract class BigQueryReadStub implements BackgroundResource { | ||
|
||
public UnaryCallable<CreateReadSessionRequest, ReadSession> createReadSessionCallable() { | ||
throw new UnsupportedOperationException("Not implemented: createReadSessionCallable()"); | ||
} | ||
|
||
public ServerStreamingCallable<ReadRowsRequest, ReadRowsResponse> readRowsCallable() { | ||
throw new UnsupportedOperationException("Not implemented: readRowsCallable()"); | ||
} | ||
|
||
public UnaryCallable<SplitReadStreamRequest, SplitReadStreamResponse> splitReadStreamCallable() { | ||
throw new UnsupportedOperationException("Not implemented: splitReadStreamCallable()"); | ||
} | ||
|
||
@Override | ||
public abstract void close(); | ||
} |
Oops, something went wrong.