@@ -477,6 +477,14 @@ def read_gbq_query(
477477 [2 rows x 3 columns]
478478
479479 See also: :meth:`Session.read_gbq`.
480+
481+ Returns:
482+ bigframes.pandas.DataFrame:
483+ A DataFrame representing results of the query or table.
484+
485+ Raises:
486+ ValueError:
487+ When both columns (preferred) and col_order are specified.
480488 """
481489 # NOTE: This method doesn't (yet) exist in pandas or pandas-gbq, so
482490 # these docstrings are inline.
@@ -521,6 +529,14 @@ def read_gbq_table(
521529 >>> df = bpd.read_gbq_table("bigquery-public-data.ml_datasets.penguins")
522530
523531 See also: :meth:`Session.read_gbq`.
532+
533+ Returns:
534+ bigframes.pandas.DataFrame:
535+ A DataFrame representing results of the query or table.
536+
537+ Raises:
538+ ValueError:
539+ When both columns (preferred) and col_order are specified.
524540 """
525541 # NOTE: This method doesn't (yet) exist in pandas or pandas-gbq, so
526542 # these docstrings are inline.
@@ -557,6 +573,10 @@ def read_gbq_table_streaming(
557573 >>> bpd.options.display.progress_bar = None
558574
559575 >>> sdf = bst.read_gbq_table("bigquery-public-data.ml_datasets.penguins")
576+
577+ Returns:
578+ bigframes.streaming.dataframe.StreamingDataFrame:
579+ A StreamingDataFrame representing results of the table.
560580 """
561581 warnings .warn (
562582 "The bigframes.streaming module is a preview feature, and subject to change." ,
@@ -654,6 +674,10 @@ def read_pandas(
654674
655675 Returns:
656676 An equivalent bigframes.pandas.(DataFrame/Series/Index) object
677+
678+ Raises:
679+ ValueError:
680+ When the object is not a Pandas DataFrame.
657681 """
658682 import bigframes .series as series
659683
0 commit comments