blob: 53840ed59c9663d11d18d17f4db1cb6561a94c7e [file] [log] [blame]
// Copyright 2020 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 spanner_test
import (
"context"
spanner "cloud.google.com/go/spanner/apiv1"
"google.golang.org/api/iterator"
spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
)
func ExampleNewClient() {
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use client.
_ = c
}
func ExampleClient_CreateSession() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.CreateSessionRequest{
// TODO: Fill request struct fields.
}
resp, err := c.CreateSession(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_BatchCreateSessions() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.BatchCreateSessionsRequest{
// TODO: Fill request struct fields.
}
resp, err := c.BatchCreateSessions(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_GetSession() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.GetSessionRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetSession(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListSessions() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
// import "google.golang.org/api/iterator"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.ListSessionsRequest{
// TODO: Fill request struct fields.
}
it := c.ListSessions(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_DeleteSession() {
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.DeleteSessionRequest{
// TODO: Fill request struct fields.
}
err = c.DeleteSession(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_ExecuteSql() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.ExecuteSqlRequest{
// TODO: Fill request struct fields.
}
resp, err := c.ExecuteSql(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ExecuteBatchDml() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.ExecuteBatchDmlRequest{
// TODO: Fill request struct fields.
}
resp, err := c.ExecuteBatchDml(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_Read() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.ReadRequest{
// TODO: Fill request struct fields.
}
resp, err := c.Read(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_BeginTransaction() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.BeginTransactionRequest{
// TODO: Fill request struct fields.
}
resp, err := c.BeginTransaction(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_Commit() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.CommitRequest{
// TODO: Fill request struct fields.
}
resp, err := c.Commit(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_Rollback() {
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.RollbackRequest{
// TODO: Fill request struct fields.
}
err = c.Rollback(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_PartitionQuery() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.PartitionQueryRequest{
// TODO: Fill request struct fields.
}
resp, err := c.PartitionQuery(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_PartitionRead() {
// import spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
ctx := context.Background()
c, err := spanner.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &spannerpb.PartitionReadRequest{
// TODO: Fill request struct fields.
}
resp, err := c.PartitionRead(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}