Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: document 'row_set' module explicitly #29

Merged
merged 8 commits into from Aug 3, 2020
6 changes: 6 additions & 0 deletions docs/row-set.rst
@@ -0,0 +1,6 @@
Row Set
~~~~~~~~

.. automodule:: google.cloud.bigtable.row_set
:members:
:show-inheritance:
1 change: 1 addition & 0 deletions docs/usage.rst
Expand Up @@ -13,6 +13,7 @@ Using the API
row
row-data
row-filters
row-set


In the hierarchy of API concepts
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/bigtable/table.py
Expand Up @@ -539,7 +539,7 @@ def read_rows(
:param end_inclusive: (Optional) Whether the ``end_key`` should be
considered inclusive. The default is False (exclusive).

:type row_set: :class:`row_set.RowSet`
:type row_set: :class:`.RowSet`
:param row_set: (Optional) The row set containing multiple row keys and
row_ranges.

Expand Down Expand Up @@ -595,7 +595,7 @@ def yield_rows(self, **kwargs):
specified row(s). If unset, reads every column in
each row.

:type row_set: :class:`row_set.RowSet`
:type row_set: :class:`.RowSet`
:param row_set: (Optional) The row set containing multiple row keys and
row_ranges.

Expand Down Expand Up @@ -1204,7 +1204,7 @@ def _create_row_request(
:type: app_profile_id: str
:param app_profile_id: (Optional) The unique name of the AppProfile.

:type row_set: :class:`row_set.RowSet`
:type row_set: :class:`.RowSet`
:param row_set: (Optional) The row set containing multiple row keys and
row_ranges.

Expand Down