Skip to content

Commit a87aa78

Browse files
authored
fix: update the docstring in table_type property
1 parent 485b03a commit a87aa78

File tree

1 file changed

+4
-3
lines changed
  • packages/google-cloud-bigquery/google/cloud/bigquery

1 file changed

+4
-3
lines changed

packages/google-cloud-bigquery/google/cloud/bigquery/table.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -734,8 +734,8 @@ def table_type(self):
734734
"""Union[str, None]: The type of the table (:data:`None` until set from
735735
the server).
736736
737-
Possible values are ``'TABLE'``, ``'VIEW'``, ``'MATERIALIZED_VIEW'`` or
738-
``'EXTERNAL'``.
737+
Possible values are ``'TABLE'``, ``'VIEW'``, ``'MATERIALIZED_VIEW'``,
738+
``'SNAPSHOT'`` or ``'EXTERNAL'``.
739739
"""
740740
return self._properties.get(self._PROPERTY_TO_API_FIELD["type"])
741741

@@ -1488,7 +1488,8 @@ def table_type(self):
14881488
"""Union[str, None]: The type of the table (:data:`None` until set from
14891489
the server).
14901490
1491-
Possible values are ``'TABLE'``, ``'VIEW'``, or ``'EXTERNAL'``.
1491+
Possible values are ``'TABLE'``, ``'VIEW'``, ``'MATERIALIZED_VIEW'``,
1492+
``'SNAPSHOT'`` or ``'EXTERNAL'``.
14921493
"""
14931494
return self._properties.get("type")
14941495

0 commit comments

Comments
 (0)