-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Description
Per #861.
Steps:
- Rename
gcloud.datastore.dataset.Dataset->gcloud.datastore.client.Client. (Rename 'dataset.Dataset' -> 'client.Client'. #946) - Unwind
_implicit_environusage within client. (Move implicit majyk inside 'Client.__init__'. #956) - Move
gcloud.datastore.apifunctions to methods ofClient. (Move 'datastore.api' functions to 'datastore.client.Client' methods. #963) - Update
Clientto handle nesting of batches / transactions over primary connection. (Update 'Client' to hold stack of connection/batch/transaction objects. #976) - Update domain objects making API requests to hold reference to
client. (Update batch/transaction/query to hold client. #978) - Update
BatchandTransactioncontext managers to push themselves onto their client's stack. (Update batch/transaction/query to hold client. #978) - Update domain object methods taking
connectionto acceptclient, falling back toself.client. (Update batch/transaction/query to hold client. #978) - Remove remaining
_implicit_environusage. (Remove '_implicit_environ' #979)
Metadata
Metadata
Assignees
Labels
api: datastoreIssues related to the Datastore API.Issues related to the Datastore API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.