-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#1260: Expose 'jobs/list' results #1279
Conversation
""" | ||
name, config = cls._get_resource_config(resource) | ||
dest_config = config['destinationTable'] | ||
assert dest_config['projectId'] == client.project |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Trying to review but having a hard time wrapping my head around the changes. |
@dhermes the overall intent is to parse the individual |
Preparation for creating jobs from resources in future 'client.list_jobs'.
Preparation for creating jobs from resources in future 'client.list_jobs'.
Preparation for creating jobs from resources in future 'client.list_jobs'.
Preparation for creating jobs from resources in future 'client.list_jobs'.
Closes #1260.
Rebased to fix merge conflict. |
""" | ||
name, config = cls._get_resource_config(resource) | ||
dest_config = config['destinationTable'] | ||
assert dest_config['projectId'] == client.project |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Conflicts: gcloud/bigquery/job.py
@dhermes any remaining issues? |
LGTM. (A bit uneasy about this. PR so big) |
#1260: Expose 'jobs/list' results
Add a
list_jobs()
method to BigQuery client, returning instances of appropriate job classes.See #1278 for issues related to the (hidden) job created by the synchronous query API.
Closes #1260.