Documentation ¶
Overview ¶
Package tables is an auto-generated package for the Area120 Tables API.
NOTE: This package is in alpha. It is not stable, and is likely to change.
General documentation ¶
For information that is relevant for all client libraries please reference https://pkg.go.dev/cloud.google.com/go#pkg-overview. Some information on this page includes:
- Authentication and Authorization
- Timeouts and Cancellation
- Testing against Client Libraries
- Debugging Client Libraries
- Inspecting errors
Example usage ¶
To get started with this package, create a client.
ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close()
The client will use your default application credentials. Clients should be reused instead of created as needed. The methods of Client are safe for concurrent use by multiple goroutines. The returned client must be Closed when it is done being used.
Using the Client ¶
The following is an example of making an API call with the newly created client.
ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.BatchCreateRowsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#BatchCreateRowsRequest. } resp, err := c.BatchCreateRows(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp
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.
Index ¶
- func DefaultAuthScopes() []string
- type CallOptions
- type Client
- func (c *Client) BatchCreateRows(ctx context.Context, req *tablespb.BatchCreateRowsRequest, ...) (*tablespb.BatchCreateRowsResponse, error)
- func (c *Client) BatchDeleteRows(ctx context.Context, req *tablespb.BatchDeleteRowsRequest, ...) error
- func (c *Client) BatchUpdateRows(ctx context.Context, req *tablespb.BatchUpdateRowsRequest, ...) (*tablespb.BatchUpdateRowsResponse, error)
- func (c *Client) Close() error
- func (c *Client) Connection() *grpc.ClientConndeprecated
- func (c *Client) CreateRow(ctx context.Context, req *tablespb.CreateRowRequest, opts ...gax.CallOption) (*tablespb.Row, error)
- func (c *Client) DeleteRow(ctx context.Context, req *tablespb.DeleteRowRequest, opts ...gax.CallOption) error
- func (c *Client) GetRow(ctx context.Context, req *tablespb.GetRowRequest, opts ...gax.CallOption) (*tablespb.Row, error)
- func (c *Client) GetTable(ctx context.Context, req *tablespb.GetTableRequest, opts ...gax.CallOption) (*tablespb.Table, error)
- func (c *Client) GetWorkspace(ctx context.Context, req *tablespb.GetWorkspaceRequest, opts ...gax.CallOption) (*tablespb.Workspace, error)
- func (c *Client) ListRows(ctx context.Context, req *tablespb.ListRowsRequest, opts ...gax.CallOption) *RowIterator
- func (c *Client) ListTables(ctx context.Context, req *tablespb.ListTablesRequest, opts ...gax.CallOption) *TableIterator
- func (c *Client) ListWorkspaces(ctx context.Context, req *tablespb.ListWorkspacesRequest, ...) *WorkspaceIterator
- func (c *Client) UpdateRow(ctx context.Context, req *tablespb.UpdateRowRequest, opts ...gax.CallOption) (*tablespb.Row, error)
- type RowIterator
- type TableIterator
- type WorkspaceIterator
Examples ¶
- Client.BatchCreateRows
- Client.BatchDeleteRows
- Client.BatchUpdateRows
- Client.CreateRow
- Client.DeleteRow
- Client.GetRow
- Client.GetTable
- Client.GetWorkspace
- Client.ListRows
- Client.ListRows (All)
- Client.ListTables
- Client.ListTables (All)
- Client.ListWorkspaces
- Client.ListWorkspaces (All)
- Client.UpdateRow
- NewClient
- NewRESTClient
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 CallOptions ¶
type CallOptions struct { GetTable []gax.CallOption ListTables []gax.CallOption GetWorkspace []gax.CallOption ListWorkspaces []gax.CallOption GetRow []gax.CallOption ListRows []gax.CallOption CreateRow []gax.CallOption BatchCreateRows []gax.CallOption UpdateRow []gax.CallOption BatchUpdateRows []gax.CallOption DeleteRow []gax.CallOption BatchDeleteRows []gax.CallOption }
CallOptions contains the retry settings for each method of Client.
type Client ¶
type Client struct { // The call options for this service. CallOptions *CallOptions // contains filtered or unexported fields }
Client is a client for interacting with Area120 Tables API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
The Tables Service provides an API for reading and updating tables. It defines the following resource model:
The API has a collection of [Table][google.area120.tables.v1alpha1.Table] resources, named tables/* Each Table has a collection of [Row][google.area120.tables.v1alpha1.Row] resources, named tables/*/rows/* The API has a collection of [Workspace][google.area120.tables.v1alpha1.Workspace] resources, named workspaces/*.
func NewClient ¶
NewClient creates a new tables service client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.
The Tables Service provides an API for reading and updating tables. It defines the following resource model:
The API has a collection of [Table][google.area120.tables.v1alpha1.Table] resources, named tables/* Each Table has a collection of [Row][google.area120.tables.v1alpha1.Row] resources, named tables/*/rows/* The API has a collection of [Workspace][google.area120.tables.v1alpha1.Workspace] resources, named workspaces/*.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
Output:
func NewRESTClient ¶ added in v0.4.0
NewRESTClient creates a new tables service rest client.
The Tables Service provides an API for reading and updating tables. It defines the following resource model:
The API has a collection of [Table][google.area120.tables.v1alpha1.Table] resources, named tables/* Each Table has a collection of [Row][google.area120.tables.v1alpha1.Row] resources, named tables/*/rows/* The API has a collection of [Workspace][google.area120.tables.v1alpha1.Workspace] resources, named workspaces/*.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewRESTClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
Output:
func (*Client) BatchCreateRows ¶
func (c *Client) BatchCreateRows(ctx context.Context, req *tablespb.BatchCreateRowsRequest, opts ...gax.CallOption) (*tablespb.BatchCreateRowsResponse, error)
BatchCreateRows creates multiple rows.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.BatchCreateRowsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#BatchCreateRowsRequest. } resp, err := c.BatchCreateRows(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) BatchDeleteRows ¶
func (c *Client) BatchDeleteRows(ctx context.Context, req *tablespb.BatchDeleteRowsRequest, opts ...gax.CallOption) error
BatchDeleteRows deletes multiple rows.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.BatchDeleteRowsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#BatchDeleteRowsRequest. } err = c.BatchDeleteRows(ctx, req) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) BatchUpdateRows ¶
func (c *Client) BatchUpdateRows(ctx context.Context, req *tablespb.BatchUpdateRowsRequest, opts ...gax.CallOption) (*tablespb.BatchUpdateRowsResponse, error)
BatchUpdateRows updates multiple rows.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.BatchUpdateRowsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#BatchUpdateRowsRequest. } resp, err := c.BatchUpdateRows(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) Close ¶
Close closes the connection to the API service. The user should invoke this when the client is no longer required.
func (*Client) Connection
deprecated
func (c *Client) Connection() *grpc.ClientConn
Connection returns a connection to the API service.
Deprecated: Connections are now pooled so this method does not always return the same resource.
func (*Client) CreateRow ¶
func (c *Client) CreateRow(ctx context.Context, req *tablespb.CreateRowRequest, opts ...gax.CallOption) (*tablespb.Row, error)
CreateRow creates a row.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.CreateRowRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#CreateRowRequest. } resp, err := c.CreateRow(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeleteRow ¶
func (c *Client) DeleteRow(ctx context.Context, req *tablespb.DeleteRowRequest, opts ...gax.CallOption) error
DeleteRow deletes a row.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.DeleteRowRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#DeleteRowRequest. } err = c.DeleteRow(ctx, req) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) GetRow ¶
func (c *Client) GetRow(ctx context.Context, req *tablespb.GetRowRequest, opts ...gax.CallOption) (*tablespb.Row, error)
GetRow gets a row. Returns NOT_FOUND if the row does not exist in the table.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.GetRowRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#GetRowRequest. } resp, err := c.GetRow(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetTable ¶
func (c *Client) GetTable(ctx context.Context, req *tablespb.GetTableRequest, opts ...gax.CallOption) (*tablespb.Table, error)
GetTable gets a table. Returns NOT_FOUND if the table does not exist.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.GetTableRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#GetTableRequest. } resp, err := c.GetTable(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetWorkspace ¶
func (c *Client) GetWorkspace(ctx context.Context, req *tablespb.GetWorkspaceRequest, opts ...gax.CallOption) (*tablespb.Workspace, error)
GetWorkspace gets a workspace. Returns NOT_FOUND if the workspace does not exist.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.GetWorkspaceRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#GetWorkspaceRequest. } resp, err := c.GetWorkspace(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) ListRows ¶
func (c *Client) ListRows(ctx context.Context, req *tablespb.ListRowsRequest, opts ...gax.CallOption) *RowIterator
ListRows lists rows in a table. Returns NOT_FOUND if the table does not exist.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.ListRowsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#ListRowsRequest. } it := c.ListRows(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*tablespb.ListRowsResponse) } }
Output:
Example (All) ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.ListRowsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#ListRowsRequest. } for resp, err := range c.ListRows(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListTables ¶
func (c *Client) ListTables(ctx context.Context, req *tablespb.ListTablesRequest, opts ...gax.CallOption) *TableIterator
ListTables lists tables for the user.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.ListTablesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#ListTablesRequest. } it := c.ListTables(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*tablespb.ListTablesResponse) } }
Output:
Example (All) ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.ListTablesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#ListTablesRequest. } for resp, err := range c.ListTables(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListWorkspaces ¶
func (c *Client) ListWorkspaces(ctx context.Context, req *tablespb.ListWorkspacesRequest, opts ...gax.CallOption) *WorkspaceIterator
ListWorkspaces lists workspaces for the user.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.ListWorkspacesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#ListWorkspacesRequest. } it := c.ListWorkspaces(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*tablespb.ListWorkspacesResponse) } }
Output:
Example (All) ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.ListWorkspacesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#ListWorkspacesRequest. } for resp, err := range c.ListWorkspaces(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) UpdateRow ¶
func (c *Client) UpdateRow(ctx context.Context, req *tablespb.UpdateRowRequest, opts ...gax.CallOption) (*tablespb.Row, error)
UpdateRow updates a row.
Example ¶
package main import ( "context" tables "cloud.google.com/go/area120/tables/apiv1alpha1" tablespb "cloud.google.com/go/area120/tables/apiv1alpha1/tablespb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := tables.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &tablespb.UpdateRowRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/area120/tables/apiv1alpha1/tablespb#UpdateRowRequest. } resp, err := c.UpdateRow(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
type RowIterator ¶
type RowIterator 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 []*tablespb.Row, nextPageToken string, err error) // contains filtered or unexported fields }
RowIterator manages a stream of *tablespb.Row.
func (*RowIterator) All ¶ added in v0.9.1
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*RowIterator) Next ¶
func (it *RowIterator) Next() (*tablespb.Row, 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 (*RowIterator) PageInfo ¶
func (it *RowIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type TableIterator ¶
type TableIterator 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 []*tablespb.Table, nextPageToken string, err error) // contains filtered or unexported fields }
TableIterator manages a stream of *tablespb.Table.
func (*TableIterator) All ¶ added in v0.9.1
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*TableIterator) Next ¶
func (it *TableIterator) Next() (*tablespb.Table, 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 (*TableIterator) PageInfo ¶
func (it *TableIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type WorkspaceIterator ¶
type WorkspaceIterator 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 []*tablespb.Workspace, nextPageToken string, err error) // contains filtered or unexported fields }
WorkspaceIterator manages a stream of *tablespb.Workspace.
func (*WorkspaceIterator) All ¶ added in v0.9.1
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*WorkspaceIterator) Next ¶
func (it *WorkspaceIterator) Next() (*tablespb.Workspace, 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 (*WorkspaceIterator) PageInfo ¶
func (it *WorkspaceIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.