Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/admin_client/types_.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@ Types for Google Cloud Bigtable Admin v2 API
.. automodule:: google.cloud.bigtable_admin_v2.overlay.types
:members:
:show-inheritance:

.. automodule:: google.cloud.bigtable_admin_v2.overlay.types
:members:
:show-inheritance:

.. automodule:: google.cloud.bigtable_admin_v2.overlay.types
:members:
:show-inheritance:
17 changes: 0 additions & 17 deletions gapic_templates/README.rst

This file was deleted.

6 changes: 3 additions & 3 deletions google/cloud/bigtable/column_family.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def create(self):
client = self._table._instance._client
# data it contains are the GC rule and the column family ID already
# stored on this instance.
client.table_admin_client._modify_column_families(
client.table_admin_client.modify_column_families(
request={"name": self._table.name, "modifications": [modification]},
timeout=DEFAULT,
)
Expand Down Expand Up @@ -303,7 +303,7 @@ def update(self):
client = self._table._instance._client
# data it contains are the GC rule and the column family ID already
# stored on this instance.
client.table_admin_client._modify_column_families(
client.table_admin_client.modify_column_families(
request={"name": self._table.name, "modifications": [modification]},
timeout=DEFAULT,
)
Expand All @@ -326,7 +326,7 @@ def delete(self):
client = self._table._instance._client
# data it contains are the GC rule and the column family ID already
# stored on this instance.
client.table_admin_client._modify_column_families(
client.table_admin_client.modify_column_families(
request={"name": self._table.name, "modifications": [modification]},
timeout=DEFAULT,
)
Expand Down
Loading
Loading