blob: 77991764024467e4bfeed92b8935a46e84fa11e7 [file] [log] [blame]
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated by protoc-gen-go_gapic. DO NOT EDIT.
package tables_test
import (
"context"
tables "cloud.google.com/go/area120/tables/apiv1alpha1"
"google.golang.org/api/iterator"
tablespb "google.golang.org/genproto/googleapis/area120/tables/v1alpha1"
)
func ExampleNewClient() {
ctx := context.Background()
c, err := tables.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
// TODO: Use client.
_ = c
}
func ExampleClient_GetTable() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#GetTableRequest.
}
resp, err := c.GetTable(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListTables() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#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
}
}
func ExampleClient_GetWorkspace() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#GetWorkspaceRequest.
}
resp, err := c.GetWorkspace(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListWorkspaces() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#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
}
}
func ExampleClient_GetRow() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#GetRowRequest.
}
resp, err := c.GetRow(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListRows() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#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
}
}
func ExampleClient_CreateRow() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#CreateRowRequest.
}
resp, err := c.CreateRow(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_BatchCreateRows() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#BatchCreateRowsRequest.
}
resp, err := c.BatchCreateRows(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_UpdateRow() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#UpdateRowRequest.
}
resp, err := c.UpdateRow(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_BatchUpdateRows() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#BatchUpdateRowsRequest.
}
resp, err := c.BatchUpdateRows(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_DeleteRow() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#DeleteRowRequest.
}
err = c.DeleteRow(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_BatchDeleteRows() {
ctx := context.Background()
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/google.golang.org/genproto/googleapis/area120/tables/v1alpha1#BatchDeleteRowsRequest.
}
err = c.BatchDeleteRows(ctx, req)
if err != nil {
// TODO: Handle error.
}
}