@@ -176,8 +176,7 @@ def from_api_repr(cls, resource):
176176 API.
177177
178178 Returns:
179- :class:`~.external_config.BigtableColumn`:
180- Configuration parsed from ``resource``.
179+ external_config.BigtableColumn: Configuration parsed from ``resource``.
181180 """
182181 config = cls ()
183182 config ._properties = copy .deepcopy (resource )
@@ -249,7 +248,7 @@ def type_(self, value):
249248
250249 @property
251250 def columns (self ):
252- """List[:class:`~.external_config. BigtableColumn` ]: Lists of columns
251+ """List[BigtableColumn]: Lists of columns
253252 that should be exposed as individual fields.
254253
255254 See
@@ -369,8 +368,7 @@ def from_api_repr(cls, resource):
369368 API.
370369
371370 Returns:
372- :class:`~.external_config.BigtableOptions`:
373- Configuration parsed from ``resource``.
371+ BigtableOptions: Configuration parsed from ``resource``.
374372 """
375373 config = cls ()
376374 config ._properties = copy .deepcopy (resource )
@@ -476,8 +474,7 @@ def to_api_repr(self):
476474 """Build an API representation of this object.
477475
478476 Returns:
479- Dict[str, Any]:
480- A dictionary in the format used by the BigQuery API.
477+ Dict[str, Any]: A dictionary in the format used by the BigQuery API.
481478 """
482479 return copy .deepcopy (self ._properties )
483480
@@ -493,8 +490,7 @@ def from_api_repr(cls, resource):
493490 API.
494491
495492 Returns:
496- :class:`~.external_config.CSVOptions`:
497- Configuration parsed from ``resource``.
493+ CSVOptions: Configuration parsed from ``resource``.
498494 """
499495 config = cls ()
500496 config ._properties = copy .deepcopy (resource )
@@ -542,8 +538,7 @@ def to_api_repr(self):
542538 """Build an API representation of this object.
543539
544540 Returns:
545- Dict[str, Any]:
546- A dictionary in the format used by the BigQuery API.
541+ Dict[str, Any]: A dictionary in the format used by the BigQuery API.
547542 """
548543 return copy .deepcopy (self ._properties )
549544
@@ -559,8 +554,7 @@ def from_api_repr(cls, resource):
559554 API.
560555
561556 Returns:
562- :class:`~.external_config.GoogleSheetsOptions`:
563- Configuration parsed from ``resource``.
557+ GoogleSheetsOptions: Configuration parsed from ``resource``.
564558 """
565559 config = cls ()
566560 config ._properties = copy .deepcopy (resource )
@@ -574,7 +568,7 @@ class ExternalConfig(object):
574568 """Description of an external data source.
575569
576570 Args:
577- source_format (:class:`~.external_config. ExternalSourceFormat` ):
571+ source_format (ExternalSourceFormat):
578572 See :attr:`source_format`.
579573 """
580574
@@ -719,8 +713,7 @@ def from_api_repr(cls, resource):
719713 API.
720714
721715 Returns:
722- :class:`~.external_config.ExternalConfig`:
723- Configuration parsed from ``resource``.
716+ ExternalConfig: Configuration parsed from ``resource``.
724717 """
725718 config = cls (resource ["sourceFormat" ])
726719 for optcls in _OPTION_CLASSES :
0 commit comments