As of January 1, 2020 this library no longer supports Python 2 on the latest released version.
Library versions released prior to that date will continue to be available. For more information please
visit Python 2 support on Google Cloud.
google.cloud.bigquery.job.QueryPlanEntryStep¶
- class google.cloud.bigquery.job.QueryPlanEntryStep(kind, substeps)[source]¶
Map a single step in a query plan entry.
- Parameters
kind (str) – step type.
substeps (List) – names of substeps.
Methods
__init__
(kind, substeps)Initialize self.
from_api_repr
(resource)Factory: construct instance from the JSON repr.
- classmethod from_api_repr(resource: dict) → google.cloud.bigquery.job.query.QueryPlanEntryStep[source]¶
Factory: construct instance from the JSON repr.
- Parameters
resource (Dict) – JSON representation of the entry.
- Returns
New instance built from the resource.
- Return type