Liking cljdoc? Tell your friends :D

happygapi.datastore.projects

Cloud Datastore API: projects. Accesses the schemaless NoSQL database to provide fully managed, robust, scalable storage for your application. See: https://cloud.google.com/datastore/api/reference/rest/v1/projects

Cloud Datastore API: projects.
Accesses the schemaless NoSQL database to provide fully managed, robust, scalable storage for your application. 
See: https://cloud.google.com/datastore/api/reference/rest/v1/projects
raw docstring

allocateIds$clj

(allocateIds$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/allocateIds

Required parameters: projectId

Optional parameters: none

Body:

{:keys [{:path [PathElement], :partitionId PartitionId}]}

Allocates IDs for the given keys, which is useful for referencing an entity before it is inserted.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/allocateIds

Required parameters: projectId

Optional parameters: none

Body: 

{:keys [{:path [PathElement], :partitionId PartitionId}]}

Allocates IDs for the given keys, which is useful for referencing an entity before it is inserted.
sourceraw docstring

beginTransaction$clj

(beginTransaction$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/beginTransaction

Required parameters: projectId

Optional parameters: none

Body:

{:transactionOptions {:readWrite ReadWrite, :readOnly ReadOnly}}

Begins a new transaction.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/beginTransaction

Required parameters: projectId

Optional parameters: none

Body: 

{:transactionOptions {:readWrite ReadWrite, :readOnly ReadOnly}}

Begins a new transaction.
sourceraw docstring

commit$clj

(commit$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/commit

Required parameters: projectId

Optional parameters: none

Body:

{:mutations [{:upsert Entity, :delete Key, :update Entity, :insert Entity, :baseVersion string}], :mode string, :transaction string}

Commits a transaction, optionally creating, deleting or modifying some entities.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/commit

Required parameters: projectId

Optional parameters: none

Body: 

{:mutations [{:upsert Entity,
              :delete Key,
              :update Entity,
              :insert Entity,
              :baseVersion string}],
 :mode string,
 :transaction string}

Commits a transaction, optionally creating, deleting or modifying some entities.
sourceraw docstring

export$clj

(export$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/export

Required parameters: projectId

Optional parameters: none

Body:

{:entityFilter {:kinds [string], :namespaceIds [string]}, :labels {}, :outputUrlPrefix string}

Exports a copy of all or a subset of entities from Google Cloud Datastore to another storage system, such as Google Cloud Storage. Recent updates to entities may not be reflected in the export. The export occurs in the background and its progress can be monitored and managed via the Operation resource that is created. The output of an export may only be used once the associated operation is done. If an export operation is cancelled before completion it may leave partial data behind in Google Cloud Storage.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/export

Required parameters: projectId

Optional parameters: none

Body: 

{:entityFilter {:kinds [string], :namespaceIds [string]},
 :labels {},
 :outputUrlPrefix string}

Exports a copy of all or a subset of entities from Google Cloud Datastore to another storage system, such as Google Cloud Storage. Recent updates to entities may not be reflected in the export. The export occurs in the background and its progress can be monitored and managed via the Operation resource that is created. The output of an export may only be used once the associated operation is done. If an export operation is cancelled before completion it may leave partial data behind in Google Cloud Storage.
sourceraw docstring

import$clj

(import$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/import

Required parameters: projectId

Optional parameters: none

Body:

{:entityFilter {:kinds [string], :namespaceIds [string]}, :inputUrl string, :labels {}}

Imports entities into Google Cloud Datastore. Existing entities with the same key are overwritten. The import occurs in the background and its progress can be monitored and managed via the Operation resource that is created. If an ImportEntities operation is cancelled, it is possible that a subset of the data has already been imported to Cloud Datastore.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/import

Required parameters: projectId

Optional parameters: none

Body: 

{:entityFilter {:kinds [string], :namespaceIds [string]},
 :inputUrl string,
 :labels {}}

Imports entities into Google Cloud Datastore. Existing entities with the same key are overwritten. The import occurs in the background and its progress can be monitored and managed via the Operation resource that is created. If an ImportEntities operation is cancelled, it is possible that a subset of the data has already been imported to Cloud Datastore.
sourceraw docstring

indexes-create$clj

(indexes-create$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/indexes/create

Required parameters: projectId

Optional parameters: none

Body:

{:properties [{:direction string, :name string}], :ancestor string, :projectId string, :state string, :indexId string, :kind string}

Creates the specified index. A newly created index's initial state is CREATING. On completion of the returned google.longrunning.Operation, the state will be READY. If the index already exists, the call will return an ALREADY_EXISTS status. During index creation, the process could result in an error, in which case the index will move to the ERROR state. The process can be recovered by fixing the data that caused the error, removing the index with delete, then re-creating the index with create. Indexes with a single property cannot be created.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/indexes/create

Required parameters: projectId

Optional parameters: none

Body: 

{:properties [{:direction string, :name string}],
 :ancestor string,
 :projectId string,
 :state string,
 :indexId string,
 :kind string}

Creates the specified index. A newly created index's initial state is `CREATING`. On completion of the returned google.longrunning.Operation, the state will be `READY`. If the index already exists, the call will return an `ALREADY_EXISTS` status. During index creation, the process could result in an error, in which case the index will move to the `ERROR` state. The process can be recovered by fixing the data that caused the error, removing the index with delete, then re-creating the index with create. Indexes with a single property cannot be created.
sourceraw docstring

indexes-delete$clj

(indexes-delete$ auth parameters)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/indexes/delete

Required parameters: projectId, indexId

Optional parameters: none

Deletes an existing index. An index can only be deleted if it is in a READY or ERROR state. On successful execution of the request, the index will be in a DELETING state. And on completion of the returned google.longrunning.Operation, the index will be removed. During index deletion, the process could result in an error, in which case the index will move to the ERROR state. The process can be recovered by fixing the data that caused the error, followed by calling delete again.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/indexes/delete

Required parameters: projectId, indexId

Optional parameters: none

Deletes an existing index. An index can only be deleted if it is in a `READY` or `ERROR` state. On successful execution of the request, the index will be in a `DELETING` state. And on completion of the returned google.longrunning.Operation, the index will be removed. During index deletion, the process could result in an error, in which case the index will move to the `ERROR` state. The process can be recovered by fixing the data that caused the error, followed by calling delete again.
sourceraw docstring

indexes-get$clj

(indexes-get$ auth parameters)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/indexes/get

Required parameters: projectId, indexId

Optional parameters: none

Gets an index.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/indexes/get

Required parameters: projectId, indexId

Optional parameters: none

Gets an index.
sourceraw docstring

indexes-list$clj

(indexes-list$ auth parameters)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/indexes/list

Required parameters: projectId

Optional parameters: pageToken, filter, pageSize

Lists the indexes that match the specified filters. Datastore uses an eventually consistent query to fetch the list of indexes and may occasionally return stale results.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/indexes/list

Required parameters: projectId

Optional parameters: pageToken, filter, pageSize

Lists the indexes that match the specified filters. Datastore uses an eventually consistent query to fetch the list of indexes and may occasionally return stale results.
sourceraw docstring

lookup$clj

(lookup$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/lookup

Required parameters: projectId

Optional parameters: none

Body:

{:readOptions {:readConsistency string, :transaction string}, :keys [{:path [PathElement], :partitionId PartitionId}]}

Looks up entities by key.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/lookup

Required parameters: projectId

Optional parameters: none

Body: 

{:readOptions {:readConsistency string, :transaction string},
 :keys [{:path [PathElement], :partitionId PartitionId}]}

Looks up entities by key.
sourceraw docstring

operations-cancel$clj

(operations-cancel$ auth parameters)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/operations/cancel

Required parameters: name

Optional parameters: none

Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to Code.CANCELLED.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/operations/cancel

Required parameters: name

Optional parameters: none

Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
sourceraw docstring

operations-delete$clj

(operations-delete$ auth parameters)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/operations/delete

Required parameters: name

Optional parameters: none

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/operations/delete

Required parameters: name

Optional parameters: none

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
sourceraw docstring

operations-get$clj

(operations-get$ auth parameters)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/operations/get

Required parameters: name

Optional parameters: none

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/operations/get

Required parameters: name

Optional parameters: none

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
sourceraw docstring

operations-list$clj

(operations-list$ auth parameters)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/operations/list

Required parameters: name

Optional parameters: pageSize, filter, pageToken

Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. NOTE: the name binding allows API services to override the binding to use different resource name schemes, such as users/*/operations. To override the binding, API services can add a binding such as "/v1/{name=users/*}/operations" to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/operations/list

Required parameters: name

Optional parameters: pageSize, filter, pageToken

Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to override the binding to use different resource name schemes, such as `users/*/operations`. To override the binding, API services can add a binding such as `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.
sourceraw docstring

reserveIds$clj

(reserveIds$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/reserveIds

Required parameters: projectId

Optional parameters: none

Body:

{:databaseId string, :keys [{:path [PathElement], :partitionId PartitionId}]}

Prevents the supplied keys' IDs from being auto-allocated by Cloud Datastore.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/reserveIds

Required parameters: projectId

Optional parameters: none

Body: 

{:databaseId string,
 :keys [{:path [PathElement], :partitionId PartitionId}]}

Prevents the supplied keys' IDs from being auto-allocated by Cloud Datastore.
sourceraw docstring

rollback$clj

(rollback$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/rollback

Required parameters: projectId

Optional parameters: none

Body:

{:transaction string}

Rolls back a transaction.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/rollback

Required parameters: projectId

Optional parameters: none

Body: 

{:transaction string}

Rolls back a transaction.
sourceraw docstring

runQuery$clj

(runQuery$ auth parameters body)

https://cloud.google.com/datastore/api/reference/rest/v1/projects/runQuery

Required parameters: projectId

Optional parameters: none

Body:

{:gqlQuery {:allowLiterals boolean, :namedBindings {}, :queryString string, :positionalBindings [GqlQueryParameter]}, :readOptions {:readConsistency string, :transaction string}, :partitionId {:projectId string, :namespaceId string}, :query {:limit integer, :offset integer, :endCursor string, :filter Filter, :kind [KindExpression], :order [PropertyOrder], :distinctOn [PropertyReference], :projection [Projection], :startCursor string}}

Queries for entities.

https://cloud.google.com/datastore/api/reference/rest/v1/projects/runQuery

Required parameters: projectId

Optional parameters: none

Body: 

{:gqlQuery {:allowLiterals boolean,
            :namedBindings {},
            :queryString string,
            :positionalBindings [GqlQueryParameter]},
 :readOptions {:readConsistency string, :transaction string},
 :partitionId {:projectId string, :namespaceId string},
 :query {:limit integer,
         :offset integer,
         :endCursor string,
         :filter Filter,
         :kind [KindExpression],
         :order [PropertyOrder],
         :distinctOn [PropertyReference],
         :projection [Projection],
         :startCursor string}}

Queries for entities.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close