File tree Expand file tree Collapse file tree
branches/autosynth-redis/google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ refs/heads/autosynth-iot: 044be280805a59e06d09658688c9ee474a9815ad
135135refs/heads/autosynth-kms: d31449d6621a50fb16a4bef4f30f0f3051d27d7c
136136refs/heads/autosynth-language: 6130869312f99a1e7d3aa0485759172a23333cc5
137137refs/heads/autosynth-os-login: 49028d40ac477fca5f948cc5a3ce7422729fdb67
138- refs/heads/autosynth-redis: 00380dafe87787f2a3bdbdaf820b68d7a442bdf8
138+ refs/heads/autosynth-redis: 32551b2fa80878e3a7a47f2b1f5fc784b69f2cdb
139139refs/heads/autosynth-scheduler: 57f9fdb1e7de30c85f4ec7198931a07f50603e55
140140refs/heads/autosynth-spanner: de02ca32edea133b68b51052e325359a3704b5d2
141141refs/heads/autosynth-speech: 64692f6db11364f663921be02c08072b966b6e7b
Original file line number Diff line number Diff line change @@ -673,22 +673,13 @@ public int hashCode() {
673673 /**
674674 * Deletes the requested table.
675675 *
676- * <p>Example of deleting a table.
677- *
678- * <pre>{@code
679- * String datasetName = "my_dataset_name";
680- * String tableName = "my_table_name";
681- * boolean deleted = bigquery.delete(datasetName, tableName);
682- * if (deleted) {
683- * // the table was deleted
684- * } else {
685- * // the table was not found
686- * }
687- * }</pre>
688- *
676+ * @deprecated Now that BigQuery datasets contain multiple resource types, this invocation is
677+ * ambiguous. Please use more strongly typed version of {@code #delete} that leverages an
678+ * non-ambiguous resource type identifier such as {@code TableId}.
689679 * @return {@code true} if table was deleted, {@code false} if it was not found
690680 * @throws BigQueryException upon failure
691681 */
682+ @ Deprecated
692683 boolean delete (String datasetId , String tableId );
693684
694685 /**
You can’t perform that action at this time.
0 commit comments