admin

package
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 15, 2021 License: Apache-2.0 Imports: 23 Imported by: 2

Documentation

Overview

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.

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

Examples

Constants

This section is empty.

Variables

This section is empty.

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.

Example
package main

import (
	"context"

	admin "cloud.google.com/go/datastore/admin/apiv1"
)

func main() {
	ctx := context.Background()
	c, err := admin.NewDatastoreAdminClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use client.
	_ = c
}
Output:

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

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.

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
}
Output:

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

GetIndex gets an index.

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
}
Output:

func (*DatastoreAdminClient) ImportEntities

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.

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.
	}
}
Output:

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

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.

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
	}
}
Output:

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

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

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

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

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL