-
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
Clean up bigquery usage docs #1469
Clean up bigquery usage docs #1469
Conversation
@@ -279,8 +279,8 @@ List jobs for a project: | |||
>>> from gcloud import bigquery | |||
>>> client = bigquery.Client() | |||
>>> jobs, token = client.list_jobs() # API request | |||
>>> [(job.job_id, job.type, job.created, job.state) for job in jobs] | |||
['e3344fba-09df-4ae0-8337-fddee34b3840', 'insert', (datetime.datetime(2015, 7, 23, 9, 30, 20, 268260, tzinfo=<UTC>), 'done')] | |||
>>> [(job.nme, job.type, job.created, job.state) for job in jobs] |
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.
The user-assigned 'name' is what is needed. Fixes #1399.
Addresses: #1469 (comment)
Only remaining issue is |
7b085f4 renames it to |
LGTM (pending Travis) |
Uses #1468 as a base.
Match actual usage patterns.
Closes #1398, #1399.