Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 2880c84

Browse files
committed
chore: Merged selective GAPIC owlbot changes into feature branch
1 parent d56400c commit 2880c84

48 files changed

Lines changed: 107766 additions & 40 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/admin_client/types_.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,11 @@ Types for Google Cloud Bigtable Admin v2 API
88
.. automodule:: google.cloud.bigtable_admin_v2.overlay.types
99
:members:
1010
:show-inheritance:
11+
12+
.. automodule:: google.cloud.bigtable_admin_v2.overlay.types
13+
:members:
14+
:show-inheritance:
15+
16+
.. automodule:: google.cloud.bigtable_admin_v2.overlay.types
17+
:members:
18+
:show-inheritance:

gapic_templates/README.rst

Lines changed: 0 additions & 17 deletions
This file was deleted.

google/cloud/bigtable/column_family.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def create(self):
275275
client = self._table._instance._client
276276
# data it contains are the GC rule and the column family ID already
277277
# stored on this instance.
278-
client.table_admin_client._modify_column_families(
278+
client.table_admin_client.modify_column_families(
279279
request={"name": self._table.name, "modifications": [modification]},
280280
timeout=DEFAULT,
281281
)
@@ -303,7 +303,7 @@ def update(self):
303303
client = self._table._instance._client
304304
# data it contains are the GC rule and the column family ID already
305305
# stored on this instance.
306-
client.table_admin_client._modify_column_families(
306+
client.table_admin_client.modify_column_families(
307307
request={"name": self._table.name, "modifications": [modification]},
308308
timeout=DEFAULT,
309309
)
@@ -326,7 +326,7 @@ def delete(self):
326326
client = self._table._instance._client
327327
# data it contains are the GC rule and the column family ID already
328328
# stored on this instance.
329-
client.table_admin_client._modify_column_families(
329+
client.table_admin_client.modify_column_families(
330330
request={"name": self._table.name, "modifications": [modification]},
331331
timeout=DEFAULT,
332332
)

0 commit comments

Comments
 (0)