Skip to content

Commit 5f47d4b

Browse files
authored
chore: Merged selective GAPIC autogenerated changes into feature branch (#1175)
* chore: Merged selective GAPIC owlbot changes into feature branch * linting * changed comment text * Removed redundant items
1 parent d56400c commit 5f47d4b

Some content is hidden

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

46 files changed

+107651
-43
lines changed

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)