package admin
import "cloud.google.com/go/datastore/admin/apiv1"
Package admin is an auto-generated package for the Cloud Datastore API.
Accesses the schemaless NoSQL database to provide fully managed, robust, scalable storage for your application.
NOTE: This package is in alpha. It is not stable, and is likely to change.
Use of Context
The ctx passed to NewClient is used for authentication requests and for creating the underlying connection, but is not used for subsequent calls. Individual methods on the client use the ctx given to them.
To close the open connection, use the Close() method.
For information about setting deadlines, reusing contexts, and more please visit pkg.go.dev/cloud.google.com/go.
Index ¶
- func DefaultAuthScopes() []string
- type DatastoreAdminCallOptions
- type DatastoreAdminClient
- func NewDatastoreAdminClient(ctx context.Context, opts ...option.ClientOption) (*DatastoreAdminClient, error)
- func (c *DatastoreAdminClient) Close() error
- func (c *DatastoreAdminClient) Connection() *grpc.ClientConn
- func (c *DatastoreAdminClient) ExportEntities(ctx context.Context, req *adminpb.ExportEntitiesRequest, opts ...gax.CallOption) (*ExportEntitiesOperation, error)
- func (c *DatastoreAdminClient) ExportEntitiesOperation(name string) *ExportEntitiesOperation
- func (c *DatastoreAdminClient) GetIndex(ctx context.Context, req *adminpb.GetIndexRequest, opts ...gax.CallOption) (*adminpb.Index, error)
- func (c *DatastoreAdminClient) ImportEntities(ctx context.Context, req *adminpb.ImportEntitiesRequest, opts ...gax.CallOption) (*ImportEntitiesOperation, error)
- func (c *DatastoreAdminClient) ImportEntitiesOperation(name string) *ImportEntitiesOperation
- func (c *DatastoreAdminClient) ListIndexes(ctx context.Context, req *adminpb.ListIndexesRequest, opts ...gax.CallOption) *IndexIterator
- type ExportEntitiesOperation
- func (op *ExportEntitiesOperation) Done() bool
- func (op *ExportEntitiesOperation) Metadata() (*adminpb.ExportEntitiesMetadata, error)
- func (op *ExportEntitiesOperation) Name() string
- func (op *ExportEntitiesOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*adminpb.ExportEntitiesResponse, error)
- func (op *ExportEntitiesOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*adminpb.ExportEntitiesResponse, error)
- type ImportEntitiesOperation
- func (op *ImportEntitiesOperation) Done() bool
- func (op *ImportEntitiesOperation) Metadata() (*adminpb.ImportEntitiesMetadata, error)
- func (op *ImportEntitiesOperation) Name() string
- func (op *ImportEntitiesOperation) Poll(ctx context.Context, opts ...gax.CallOption) error
- func (op *ImportEntitiesOperation) Wait(ctx context.Context, opts ...gax.CallOption) error
- type IndexIterator
Examples ¶
- DatastoreAdminClient.ExportEntities
- DatastoreAdminClient.GetIndex
- DatastoreAdminClient.ImportEntities
- DatastoreAdminClient.ListIndexes
- NewDatastoreAdminClient
Functions ¶
func DefaultAuthScopes ¶
func DefaultAuthScopes() []string
DefaultAuthScopes reports the default set of authentication scopes to use with this package.
Types ¶
type DatastoreAdminCallOptions ¶
type DatastoreAdminCallOptions struct { ExportEntities []gax.CallOption ImportEntities []gax.CallOption GetIndex []gax.CallOption ListIndexes []gax.CallOption }
DatastoreAdminCallOptions contains the retry settings for each method of DatastoreAdminClient.
type DatastoreAdminClient ¶
type DatastoreAdminClient struct { // LROClient is used internally to handle longrunning operations. // It is exposed so that its CallOptions can be modified if required. // Users should not Close this client. LROClient *lroauto.OperationsClient // The call options for this service. CallOptions *DatastoreAdminCallOptions // contains filtered or unexported fields }
DatastoreAdminClient is a client for interacting with Cloud Datastore API.
Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
func NewDatastoreAdminClient ¶
func NewDatastoreAdminClient(ctx context.Context, opts ...option.ClientOption) (*DatastoreAdminClient, error)
NewDatastoreAdminClient creates a new datastore admin client.
Google Cloud Datastore Admin API
The Datastore Admin API provides several admin services for Cloud Datastore.
ConceptsProject, namespace, kind, and entity as defined in the Google Cloud Datastore API.
Operation: An Operation represents work being performed in the background.
EntityFilter: Allows specifying a subset of entities in a project. This is specified as a combination of kinds and namespaces (either or both of which may be all).
ServicesExport/ImportThe Export/Import service provides the ability to copy all or a subset of entities to/from Google Cloud Storage.
Exported data may be imported into Cloud Datastore for any Google Cloud Platform project. It is not restricted to the export source project. It is possible to export from one project and then import into another.
Exported data can also be loaded into Google BigQuery for analysis.
Exports and imports are performed asynchronously. An Operation resource is created for each export/import. The state (including any errors encountered) of the export/import may be queried via the Operation resource.
IndexThe index service manages Cloud Datastore composite indexes.
Index creation and deletion are performed asynchronously. An Operation resource is created for each such asynchronous operation. The state of the operation (including any errors encountered) may be queried via the Operation resource.
OperationThe Operations collection provides a record of actions performed for the specified project (including any operations in progress). Operations are not created directly but through calls on other collections or resources.
An operation that is not yet done may be cancelled. The request to cancel is asynchronous and the operation may continue to run for some time after the request to cancel is made.
An operation that is done may be deleted so that it is no longer listed as part of the Operation collection.
ListOperations returns all pending operations, but not completed operations.
Operations are created by service DatastoreAdmin, but are accessed via service google.longrunning.Operations.
func (*DatastoreAdminClient) Close ¶
func (c *DatastoreAdminClient) Close() error
Close closes the connection to the API service. The user should invoke this when the client is no longer required.
func (*DatastoreAdminClient) Connection ¶
func (c *DatastoreAdminClient) Connection() *grpc.ClientConn
Connection returns a connection to the API service.
Deprecated.
func (*DatastoreAdminClient) ExportEntities ¶
func (c *DatastoreAdminClient) ExportEntities(ctx context.Context, req *adminpb.ExportEntitiesRequest, opts ...gax.CallOption) (*ExportEntitiesOperation, error)
ExportEntities 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.
Code:play
Example¶
package main
import (
"context"
admin "cloud.google.com/go/datastore/admin/apiv1"
adminpb "google.golang.org/genproto/googleapis/datastore/admin/v1"
)
func main() {
// import adminpb "google.golang.org/genproto/googleapis/datastore/admin/v1"
ctx := context.Background()
c, err := admin.NewDatastoreAdminClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &adminpb.ExportEntitiesRequest{
// TODO: Fill request struct fields.
}
op, err := c.ExportEntities(ctx, req)
if err != nil {
// TODO: Handle error.
}
resp, err := op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func (*DatastoreAdminClient) ExportEntitiesOperation ¶
func (c *DatastoreAdminClient) ExportEntitiesOperation(name string) *ExportEntitiesOperation
ExportEntitiesOperation returns a new ExportEntitiesOperation from a given name. The name must be that of a previously created ExportEntitiesOperation, possibly from a different process.
func (*DatastoreAdminClient) GetIndex ¶
func (c *DatastoreAdminClient) GetIndex(ctx context.Context, req *adminpb.GetIndexRequest, opts ...gax.CallOption) (*adminpb.Index, error)
GetIndex gets an index.
Code:play
Example¶
package main
import (
"context"
admin "cloud.google.com/go/datastore/admin/apiv1"
adminpb "google.golang.org/genproto/googleapis/datastore/admin/v1"
)
func main() {
// import adminpb "google.golang.org/genproto/googleapis/datastore/admin/v1"
ctx := context.Background()
c, err := admin.NewDatastoreAdminClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &adminpb.GetIndexRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetIndex(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func (*DatastoreAdminClient) ImportEntities ¶
func (c *DatastoreAdminClient) ImportEntities(ctx context.Context, req *adminpb.ImportEntitiesRequest, opts ...gax.CallOption) (*ImportEntitiesOperation, error)
ImportEntities 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.
Code:play
Example¶
package main
import (
"context"
admin "cloud.google.com/go/datastore/admin/apiv1"
adminpb "google.golang.org/genproto/googleapis/datastore/admin/v1"
)
func main() {
// import adminpb "google.golang.org/genproto/googleapis/datastore/admin/v1"
ctx := context.Background()
c, err := admin.NewDatastoreAdminClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &adminpb.ImportEntitiesRequest{
// TODO: Fill request struct fields.
}
op, err := c.ImportEntities(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func (*DatastoreAdminClient) ImportEntitiesOperation ¶
func (c *DatastoreAdminClient) ImportEntitiesOperation(name string) *ImportEntitiesOperation
ImportEntitiesOperation returns a new ImportEntitiesOperation from a given name. The name must be that of a previously created ImportEntitiesOperation, possibly from a different process.
func (*DatastoreAdminClient) ListIndexes ¶
func (c *DatastoreAdminClient) ListIndexes(ctx context.Context, req *adminpb.ListIndexesRequest, opts ...gax.CallOption) *IndexIterator
ListIndexes 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.
Code:play
Example¶
package main
import (
"context"
admin "cloud.google.com/go/datastore/admin/apiv1"
"google.golang.org/api/iterator"
adminpb "google.golang.org/genproto/googleapis/datastore/admin/v1"
)
func main() {
// import adminpb "google.golang.org/genproto/googleapis/datastore/admin/v1"
// import "google.golang.org/api/iterator"
ctx := context.Background()
c, err := admin.NewDatastoreAdminClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &adminpb.ListIndexesRequest{
// TODO: Fill request struct fields.
}
it := c.ListIndexes(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
type ExportEntitiesOperation ¶
type ExportEntitiesOperation struct {
// contains filtered or unexported fields
}
ExportEntitiesOperation manages a long-running operation from ExportEntities.
func (*ExportEntitiesOperation) Done ¶
func (op *ExportEntitiesOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*ExportEntitiesOperation) Metadata ¶
func (op *ExportEntitiesOperation) Metadata() (*adminpb.ExportEntitiesMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*ExportEntitiesOperation) Name ¶
func (op *ExportEntitiesOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*ExportEntitiesOperation) Poll ¶
func (op *ExportEntitiesOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*adminpb.ExportEntitiesResponse, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*ExportEntitiesOperation) Wait ¶
func (op *ExportEntitiesOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*adminpb.ExportEntitiesResponse, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type ImportEntitiesOperation ¶
type ImportEntitiesOperation struct {
// contains filtered or unexported fields
}
ImportEntitiesOperation manages a long-running operation from ImportEntities.
func (*ImportEntitiesOperation) Done ¶
func (op *ImportEntitiesOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*ImportEntitiesOperation) Metadata ¶
func (op *ImportEntitiesOperation) Metadata() (*adminpb.ImportEntitiesMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*ImportEntitiesOperation) Name ¶
func (op *ImportEntitiesOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*ImportEntitiesOperation) Poll ¶
func (op *ImportEntitiesOperation) Poll(ctx context.Context, opts ...gax.CallOption) error
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*ImportEntitiesOperation) Wait ¶
func (op *ImportEntitiesOperation) Wait(ctx context.Context, opts ...gax.CallOption) error
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type IndexIterator ¶
type IndexIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*adminpb.Index, nextPageToken string, err error) // contains filtered or unexported fields }
IndexIterator manages a stream of *adminpb.Index.
func (*IndexIterator) Next ¶
func (it *IndexIterator) Next() (*adminpb.Index, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*IndexIterator) PageInfo ¶
func (it *IndexIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
Source Files ¶
datastore_admin_client.go doc.go
- Version
- v1.3.0
- Published
- Sep 16, 2020
- Platform
- darwin/amd64
- Imports
- 22 packages
- Last checked
- 25 minutes ago –
Tools for package owners.