Skip to content

Commit 77afe85

Browse files
authored
Merge pull request googleapis#2443 from dhermes/clarify-bigquery-name
Changing all "Cloud BigQuery" mentions to "BigQuery".
2 parents 9a0e963 + eea7089 commit 77afe85

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

bigquery/README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
Python Client for Google Cloud BigQuery
2-
=======================================
1+
Python Client for Google BigQuery
2+
=================================
33

4-
Python idiomatic client for `Google Cloud BigQuery`_
4+
Python idiomatic client for `Google BigQuery`_
55

6-
.. _Google Cloud BigQuery: https://cloud.google.com/bigquery/what-is-bigquery
6+
.. _Google BigQuery: https://cloud.google.com/bigquery/what-is-bigquery
77

88
- `Homepage`_
99
- `API Documentation`_

bigquery/google/cloud/bigquery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Google Cloud BigQuery API wrapper.
15+
"""Google BigQuery API wrapper.
1616
1717
The main concepts with this API are:
1818

bigquery/google/cloud/bigquery/connection.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Create / interact with Google Cloud BigQuery connections."""
15+
"""Create / interact with Google BigQuery connections."""
1616

1717
from google.cloud import connection as base_connection
1818

1919

2020
class Connection(base_connection.JSONConnection):
21-
"""A connection to Google Cloud BigQuery via the JSON REST API."""
21+
"""A connection to Google BigQuery via the JSON REST API."""
2222

2323
API_BASE_URL = 'https://www.googleapis.com'
2424
"""The base of the API call URL."""
@@ -31,4 +31,4 @@ class Connection(base_connection.JSONConnection):
3131

3232
SCOPE = ('https://www.googleapis.com/auth/bigquery',
3333
'https://www.googleapis.com/auth/cloud-platform')
34-
"""The scopes required for authenticating as a Cloud BigQuery consumer."""
34+
"""The scopes required for authenticating as a BigQuery consumer."""

docs/bigquery_snippets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Testable usage examples for Google Cloud BigQuery API wrapper
15+
"""Testable usage examples for Google BigQuery API wrapper
1616
1717
Each example function takes a ``client`` argument (which must be an instance
1818
of :class:`google.cloud.bigquery.client.Client`) and uses it to perform a task

0 commit comments

Comments
 (0)