File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -317,6 +317,14 @@ def list(self) -> lists.ListAccessor:
317317
318318 @property
319319 def blob (self ) -> blob .BlobAccessor :
320+ """
321+ Accessor for Blob operations.
322+ """
323+ warnings .warn (
324+ "The blob accessor is deprecated and will be removed in a future release." ,
325+ category = bfe .ApiDeprecationWarning ,
326+ stacklevel = 2 ,
327+ )
320328 return blob .BlobAccessor (self )
321329
322330 @property
Original file line number Diff line number Diff line change @@ -2291,6 +2291,11 @@ def read_gbq_object_table(
22912291 bigframes.pandas.DataFrame:
22922292 Result BigFrames DataFrame.
22932293 """
2294+ warnings .warn (
2295+ "read_gbq_object_table is deprecated and will be removed in a future release." ,
2296+ category = bfe .ApiDeprecationWarning ,
2297+ stacklevel = 2 ,
2298+ )
22942299 # TODO(garrettwu): switch to pseudocolumn when b/374988109 is done.
22952300 table = self .bqclient .get_table (object_table )
22962301 connection = table ._properties ["externalDataConfiguration" ]["connectionId" ]
You can’t perform that action at this time.
0 commit comments