Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
docs: document 'row_set' module explicitly (#29)
  • Loading branch information
HemangChothani committed Aug 3, 2020
1 parent 3a092de commit 0e0291e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
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

0 comments on commit 0e0291e

Please sign in to comment.