blob: 1a56f61406f0648f2986f4ba7dded5bc2a00687c [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 tpu_test
import (
"context"
tpu "cloud.google.com/go/tpu/apiv1"
"google.golang.org/api/iterator"
tpupb "google.golang.org/genproto/googleapis/cloud/tpu/v1"
)
func ExampleNewClient() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
// TODO: Use client.
_ = c
}
func ExampleClient_ListNodes() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.ListNodesRequest{
// TODO: Fill request struct fields.
}
it := c.ListNodes(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_GetNode() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.GetNodeRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetNode(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_CreateNode() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.CreateNodeRequest{
// TODO: Fill request struct fields.
}
op, err := c.CreateNode(ctx, req)
if err != nil {
// TODO: Handle error.
}
resp, err := op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_DeleteNode() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.DeleteNodeRequest{
// TODO: Fill request struct fields.
}
op, err := c.DeleteNode(ctx, req)
if err != nil {
// TODO: Handle error.
}
resp, err := op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ReimageNode() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.ReimageNodeRequest{
// TODO: Fill request struct fields.
}
op, err := c.ReimageNode(ctx, req)
if err != nil {
// TODO: Handle error.
}
resp, err := op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_StopNode() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.StopNodeRequest{
// TODO: Fill request struct fields.
}
op, err := c.StopNode(ctx, req)
if err != nil {
// TODO: Handle error.
}
resp, err := op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_StartNode() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.StartNodeRequest{
// TODO: Fill request struct fields.
}
op, err := c.StartNode(ctx, req)
if err != nil {
// TODO: Handle error.
}
resp, err := op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListTensorFlowVersions() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.ListTensorFlowVersionsRequest{
// TODO: Fill request struct fields.
}
it := c.ListTensorFlowVersions(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_GetTensorFlowVersion() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.GetTensorFlowVersionRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetTensorFlowVersion(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListAcceleratorTypes() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.ListAcceleratorTypesRequest{
// TODO: Fill request struct fields.
}
it := c.ListAcceleratorTypes(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_GetAcceleratorType() {
ctx := context.Background()
c, err := tpu.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &tpupb.GetAcceleratorTypeRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetAcceleratorType(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}