-
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
477: Prepare to remove dataset #499
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -384,3 +369,24 @@ def parent(self): | |||
|
|||
def __repr__(self): | |||
return '<Key%s, dataset=%s>' % (self.path, self.dataset_id) | |||
|
|||
def _validate_dataset_id(dataset_id, parent): |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Also, make both it and '_require_connection' take the passed object, and test explicitly against None.
Will replace 'set_default_dataset'.
Sorry for the clash: I was trying to nibble at the edges to remove more usage of |
No worries. What do you want to do? RE: #500 |
Why don't we go ahead with #500: we can eyeball / cherrypick this one as needed. |
Thanks |
tseaver
added a commit
that referenced
this pull request
Jan 7, 2015
Cherry pick cleanups from #499.
atulep
pushed a commit
that referenced
this pull request
Apr 3, 2023
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
atulep
pushed a commit
that referenced
this pull request
Apr 6, 2023
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
atulep
pushed a commit
that referenced
this pull request
Apr 6, 2023
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
atulep
pushed a commit
that referenced
this pull request
Apr 18, 2023
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
parthea
pushed a commit
that referenced
this pull request
Aug 15, 2023
parthea
pushed a commit
that referenced
this pull request
Oct 21, 2023
…elete a SavedQuery (#499) * Change the comment of BatchGetEffectiveIamPolicies to be more accurate. * feat: Adds code examples to create, get, list, update and delete a SavedQuery. * feat: Adds code examples to create, get, list, update and delete a SavedQuery. * Update samples/snippets/quickstart_create_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_create_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_create_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_update_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_list_saved_queries_test.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_update_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_update_saved_query_test.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_get_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_create_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_create_saved_query_test.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_create_saved_query_test.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_delete_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_delete_saved_query_test.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_get_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_get_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_get_saved_query_test.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_list_saved_queries.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_list_saved_queries.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * Update samples/snippets/quickstart_list_saved_queries_test.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com> * feat: Adds code examples to create, get, list, update and delete a SavedQuery. * feat: Adds code examples to create, get, list, update and delete a SavedQuery. * Update samples/snippets/quickstart_create_saved_query.py Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com>
parthea
pushed a commit
that referenced
this pull request
Oct 21, 2023
parthea
pushed a commit
that referenced
this pull request
Oct 21, 2023
parthea
pushed a commit
that referenced
this pull request
Oct 22, 2023
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Key.__init__
uses implicit dataset ID when appropriate.Toward #477, step 8.