From a87aa78c6ef856f7e1d27da4f33190243fa93142 Mon Sep 17 00:00:00 2001 From: Andrii Roiko <57030016+roykoand@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:36:43 +0300 Subject: [PATCH] fix: update the docstring in table_type property --- .../google-cloud-bigquery/google/cloud/bigquery/table.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/google-cloud-bigquery/google/cloud/bigquery/table.py b/packages/google-cloud-bigquery/google/cloud/bigquery/table.py index 15ee2a61d722..59a5ffff056d 100644 --- a/packages/google-cloud-bigquery/google/cloud/bigquery/table.py +++ b/packages/google-cloud-bigquery/google/cloud/bigquery/table.py @@ -734,8 +734,8 @@ def table_type(self): """Union[str, None]: The type of the table (:data:`None` until set from the server). - Possible values are ``'TABLE'``, ``'VIEW'``, ``'MATERIALIZED_VIEW'`` or - ``'EXTERNAL'``. + Possible values are ``'TABLE'``, ``'VIEW'``, ``'MATERIALIZED_VIEW'``, + ``'SNAPSHOT'`` or ``'EXTERNAL'``. """ return self._properties.get(self._PROPERTY_TO_API_FIELD["type"]) @@ -1488,7 +1488,8 @@ def table_type(self): """Union[str, None]: The type of the table (:data:`None` until set from the server). - Possible values are ``'TABLE'``, ``'VIEW'``, or ``'EXTERNAL'``. + Possible values are ``'TABLE'``, ``'VIEW'``, ``'MATERIALIZED_VIEW'``, + ``'SNAPSHOT'`` or ``'EXTERNAL'``. """ return self._properties.get("type")