{
private DataTransferServiceBlockingStub(
@@ -1405,93 +1169,47 @@ protected DataTransferServiceBlockingStub build(
return new DataTransferServiceBlockingStub(channel, callOptions);
}
- /**
- *
- *
- *
- * Retrieves a supported data source and returns its settings,
- * which can be used for UI rendering.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.DataSource getDataSource(
com.google.cloud.bigquery.datatransfer.v1.GetDataSourceRequest request) {
return blockingUnaryCall(getChannel(), getGetDataSourceMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Lists supported data sources and returns their settings,
- * which can be used for UI rendering.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.ListDataSourcesResponse listDataSources(
com.google.cloud.bigquery.datatransfer.v1.ListDataSourcesRequest request) {
return blockingUnaryCall(getChannel(), getListDataSourcesMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Creates a new data transfer configuration.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.TransferConfig createTransferConfig(
com.google.cloud.bigquery.datatransfer.v1.CreateTransferConfigRequest request) {
return blockingUnaryCall(
getChannel(), getCreateTransferConfigMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Updates a data transfer configuration.
- * All fields must be set, even if they are not updated.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.TransferConfig updateTransferConfig(
com.google.cloud.bigquery.datatransfer.v1.UpdateTransferConfigRequest request) {
return blockingUnaryCall(
getChannel(), getUpdateTransferConfigMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Deletes a data transfer configuration,
- * including any associated transfer runs and logs.
- *
- */
+ /** */
public com.google.protobuf.Empty deleteTransferConfig(
com.google.cloud.bigquery.datatransfer.v1.DeleteTransferConfigRequest request) {
return blockingUnaryCall(
getChannel(), getDeleteTransferConfigMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Returns information about a data transfer config.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.TransferConfig getTransferConfig(
com.google.cloud.bigquery.datatransfer.v1.GetTransferConfigRequest request) {
return blockingUnaryCall(
getChannel(), getGetTransferConfigMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Returns information about all data transfers in the project.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.ListTransferConfigsResponse
listTransferConfigs(
com.google.cloud.bigquery.datatransfer.v1.ListTransferConfigsRequest request) {
@@ -1499,17 +1217,7 @@ public com.google.cloud.bigquery.datatransfer.v1.TransferConfig getTransferConfi
getChannel(), getListTransferConfigsMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Creates transfer runs for a time range [start_time, end_time].
- * For each date - or whatever granularity the data source supports - in the
- * range, one transfer run is created.
- * Note that runs are created per UTC time in the time range.
- * DEPRECATED: use StartManualTransferRuns instead.
- *
- */
+ /** */
@java.lang.Deprecated
public com.google.cloud.bigquery.datatransfer.v1.ScheduleTransferRunsResponse
scheduleTransferRuns(
@@ -1518,16 +1226,7 @@ public com.google.cloud.bigquery.datatransfer.v1.TransferConfig getTransferConfi
getChannel(), getScheduleTransferRunsMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Start manual transfer runs to be executed now with schedule_time equal to
- * current time. The transfer runs can be created for a time range where the
- * run_time is between start_time (inclusive) and end_time (exclusive), or for
- * a specific run_time.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.StartManualTransferRunsResponse
startManualTransferRuns(
com.google.cloud.bigquery.datatransfer.v1.StartManualTransferRunsRequest request) {
@@ -1535,85 +1234,41 @@ public com.google.cloud.bigquery.datatransfer.v1.TransferConfig getTransferConfi
getChannel(), getStartManualTransferRunsMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Returns information about the particular transfer run.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.TransferRun getTransferRun(
com.google.cloud.bigquery.datatransfer.v1.GetTransferRunRequest request) {
return blockingUnaryCall(getChannel(), getGetTransferRunMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Deletes the specified transfer run.
- *
- */
+ /** */
public com.google.protobuf.Empty deleteTransferRun(
com.google.cloud.bigquery.datatransfer.v1.DeleteTransferRunRequest request) {
return blockingUnaryCall(
getChannel(), getDeleteTransferRunMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Returns information about running and completed jobs.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.ListTransferRunsResponse listTransferRuns(
com.google.cloud.bigquery.datatransfer.v1.ListTransferRunsRequest request) {
return blockingUnaryCall(
getChannel(), getListTransferRunsMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Returns user facing log messages for the data transfer run.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.ListTransferLogsResponse listTransferLogs(
com.google.cloud.bigquery.datatransfer.v1.ListTransferLogsRequest request) {
return blockingUnaryCall(
getChannel(), getListTransferLogsMethod(), getCallOptions(), request);
}
- /**
- *
- *
- *
- * Returns true if valid credentials exist for the given data source and
- * requesting user.
- * Some data sources doesn't support service account, so we need to talk to
- * them on behalf of the end user. This API just checks whether we have OAuth
- * token for the particular user, which is a pre-requisite before user can
- * create a transfer config.
- *
- */
+ /** */
public com.google.cloud.bigquery.datatransfer.v1.CheckValidCredsResponse checkValidCreds(
com.google.cloud.bigquery.datatransfer.v1.CheckValidCredsRequest request) {
return blockingUnaryCall(getChannel(), getCheckValidCredsMethod(), getCallOptions(), request);
}
}
- /**
- *
- *
- *
- * The Google BigQuery Data Transfer Service API enables BigQuery users to
- * configure the transfer of their data from other Google Products into
- * BigQuery. This service contains methods that are end user exposed. It backs
- * up the frontend.
- *
- */
+ /** */
public static final class DataTransferServiceFutureStub
extends io.grpc.stub.AbstractFutureStub {
private DataTransferServiceFutureStub(
@@ -1627,14 +1282,7 @@ protected DataTransferServiceFutureStub build(
return new DataTransferServiceFutureStub(channel, callOptions);
}
- /**
- *
- *
- *
- * Retrieves a supported data source and returns its settings,
- * which can be used for UI rendering.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.DataSource>
getDataSource(com.google.cloud.bigquery.datatransfer.v1.GetDataSourceRequest request) {
@@ -1642,14 +1290,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getGetDataSourceMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Lists supported data sources and returns their settings,
- * which can be used for UI rendering.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.ListDataSourcesResponse>
listDataSources(com.google.cloud.bigquery.datatransfer.v1.ListDataSourcesRequest request) {
@@ -1657,13 +1298,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getListDataSourcesMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Creates a new data transfer configuration.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.TransferConfig>
createTransferConfig(
@@ -1672,14 +1307,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getCreateTransferConfigMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Updates a data transfer configuration.
- * All fields must be set, even if they are not updated.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.TransferConfig>
updateTransferConfig(
@@ -1688,14 +1316,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getUpdateTransferConfigMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Deletes a data transfer configuration,
- * including any associated transfer runs and logs.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture
deleteTransferConfig(
com.google.cloud.bigquery.datatransfer.v1.DeleteTransferConfigRequest request) {
@@ -1703,13 +1324,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getDeleteTransferConfigMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Returns information about a data transfer config.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.TransferConfig>
getTransferConfig(
@@ -1718,13 +1333,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getGetTransferConfigMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Returns information about all data transfers in the project.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.ListTransferConfigsResponse>
listTransferConfigs(
@@ -1733,17 +1342,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getListTransferConfigsMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Creates transfer runs for a time range [start_time, end_time].
- * For each date - or whatever granularity the data source supports - in the
- * range, one transfer run is created.
- * Note that runs are created per UTC time in the time range.
- * DEPRECATED: use StartManualTransferRuns instead.
- *
- */
+ /** */
@java.lang.Deprecated
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.ScheduleTransferRunsResponse>
@@ -1753,16 +1352,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getScheduleTransferRunsMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Start manual transfer runs to be executed now with schedule_time equal to
- * current time. The transfer runs can be created for a time range where the
- * run_time is between start_time (inclusive) and end_time (exclusive), or for
- * a specific run_time.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.StartManualTransferRunsResponse>
startManualTransferRuns(
@@ -1771,13 +1361,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getStartManualTransferRunsMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Returns information about the particular transfer run.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.TransferRun>
getTransferRun(com.google.cloud.bigquery.datatransfer.v1.GetTransferRunRequest request) {
@@ -1785,13 +1369,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getGetTransferRunMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Deletes the specified transfer run.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture
deleteTransferRun(
com.google.cloud.bigquery.datatransfer.v1.DeleteTransferRunRequest request) {
@@ -1799,13 +1377,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getDeleteTransferRunMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Returns information about running and completed jobs.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.ListTransferRunsResponse>
listTransferRuns(
@@ -1814,13 +1386,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getListTransferRunsMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Returns user facing log messages for the data transfer run.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.ListTransferLogsResponse>
listTransferLogs(
@@ -1829,18 +1395,7 @@ protected DataTransferServiceFutureStub build(
getChannel().newCall(getListTransferLogsMethod(), getCallOptions()), request);
}
- /**
- *
- *
- *
- * Returns true if valid credentials exist for the given data source and
- * requesting user.
- * Some data sources doesn't support service account, so we need to talk to
- * them on behalf of the end user. This API just checks whether we have OAuth
- * token for the particular user, which is a pre-requisite before user can
- * create a transfer config.
- *
- */
+ /** */
public com.google.common.util.concurrent.ListenableFuture<
com.google.cloud.bigquery.datatransfer.v1.CheckValidCredsResponse>
checkValidCreds(com.google.cloud.bigquery.datatransfer.v1.CheckValidCredsRequest request) {
diff --git a/pom.xml b/pom.xml
index bb682cdd..6ba10602 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-bigquerydatatransfer-parent
pom
- 1.0.20
+ 1.0.21
BigQuery DataTransfer Parent
https://github.com/googleapis/java-bigquerydatatransfer
@@ -70,24 +70,24 @@
com.google.cloud
google-cloud-shared-dependencies
- 0.15.0
+ 0.16.0
pom
import
com.google.api.grpc
proto-google-cloud-bigquerydatatransfer-v1
- 1.0.20
+ 1.0.21
com.google.api.grpc
grpc-google-cloud-bigquerydatatransfer-v1
- 1.0.20
+ 1.0.21
com.google.cloud
google-cloud-bigquerydatatransfer
- 1.0.20
+ 1.0.21
diff --git a/proto-google-cloud-bigquerydatatransfer-v1/pom.xml b/proto-google-cloud-bigquerydatatransfer-v1/pom.xml
index b0fea5c1..733014a5 100644
--- a/proto-google-cloud-bigquerydatatransfer-v1/pom.xml
+++ b/proto-google-cloud-bigquerydatatransfer-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-cloud-bigquerydatatransfer-v1
- 1.0.20
+ 1.0.21
proto-google-cloud-bigquerydatatransfer-v1
PROTO library for proto-google-cloud-bigquerydatatransfer-v1
com.google.cloud
google-cloud-bigquerydatatransfer-parent
- 1.0.20
+ 1.0.21
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 71a8d4ae..77dcb152 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-bigquerydatatransfer
- 1.0.19
+ 1.0.20
@@ -59,7 +59,7 @@
com.google.cloud
google-cloud-pubsub
- 1.109.0
+ 1.110.0
test
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index cd298588..45f54e45 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-bigquerydatatransfer
- 1.0.20
+ 1.0.21
@@ -59,7 +59,7 @@
com.google.cloud
google-cloud-pubsub
- 1.109.0
+ 1.110.0
test