diff --git a/bigframes/series.py b/bigframes/series.py index 814d59beff..0c74a0dd19 100644 --- a/bigframes/series.py +++ b/bigframes/series.py @@ -317,6 +317,14 @@ def list(self) -> lists.ListAccessor: @property def blob(self) -> blob.BlobAccessor: + """ + Accessor for Blob operations. + """ + warnings.warn( + "The blob accessor is deprecated and will be removed in a future release. Use bigframes.bigquery.obj functions instead.", + category=bfe.ApiDeprecationWarning, + stacklevel=2, + ) return blob.BlobAccessor(self) @property diff --git a/bigframes/session/__init__.py b/bigframes/session/__init__.py index ca8fbf2919..757bb50a94 100644 --- a/bigframes/session/__init__.py +++ b/bigframes/session/__init__.py @@ -2291,6 +2291,11 @@ def read_gbq_object_table( bigframes.pandas.DataFrame: Result BigFrames DataFrame. """ + warnings.warn( + "read_gbq_object_table is deprecated and will be removed in a future release. Use read_gbq with 'ref' column instead.", + category=bfe.ApiDeprecationWarning, + stacklevel=2, + ) # TODO(garrettwu): switch to pseudocolumn when b/374988109 is done. table = self.bqclient.get_table(object_table) connection = table._properties["externalDataConfiguration"]["connectionId"]