blob: c1f71c7b11e4596bca1575ae059587c662673328 [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 automl_test
import (
"context"
automl "cloud.google.com/go/automl/apiv1beta1"
"google.golang.org/api/iterator"
automlpb "google.golang.org/genproto/googleapis/cloud/automl/v1beta1"
)
func ExampleNewClient() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
// TODO: Use client.
_ = c
}
func ExampleClient_CreateDataset() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.CreateDatasetRequest{
// TODO: Fill request struct fields.
}
resp, err := c.CreateDataset(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_GetDataset() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.GetDatasetRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetDataset(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListDatasets() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ListDatasetsRequest{
// TODO: Fill request struct fields.
}
it := c.ListDatasets(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_UpdateDataset() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.UpdateDatasetRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdateDataset(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_DeleteDataset() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.DeleteDatasetRequest{
// TODO: Fill request struct fields.
}
op, err := c.DeleteDataset(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_ImportData() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ImportDataRequest{
// TODO: Fill request struct fields.
}
op, err := c.ImportData(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_ExportData() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ExportDataRequest{
// TODO: Fill request struct fields.
}
op, err := c.ExportData(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_GetAnnotationSpec() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.GetAnnotationSpecRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetAnnotationSpec(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_GetTableSpec() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.GetTableSpecRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetTableSpec(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListTableSpecs() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ListTableSpecsRequest{
// TODO: Fill request struct fields.
}
it := c.ListTableSpecs(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_UpdateTableSpec() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.UpdateTableSpecRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdateTableSpec(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_GetColumnSpec() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.GetColumnSpecRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetColumnSpec(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListColumnSpecs() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ListColumnSpecsRequest{
// TODO: Fill request struct fields.
}
it := c.ListColumnSpecs(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_UpdateColumnSpec() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.UpdateColumnSpecRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdateColumnSpec(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_CreateModel() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.CreateModelRequest{
// TODO: Fill request struct fields.
}
op, err := c.CreateModel(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_GetModel() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.GetModelRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetModel(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListModels() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ListModelsRequest{
// TODO: Fill request struct fields.
}
it := c.ListModels(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_DeleteModel() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.DeleteModelRequest{
// TODO: Fill request struct fields.
}
op, err := c.DeleteModel(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_DeployModel() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.DeployModelRequest{
// TODO: Fill request struct fields.
}
op, err := c.DeployModel(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_UndeployModel() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.UndeployModelRequest{
// TODO: Fill request struct fields.
}
op, err := c.UndeployModel(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_ExportModel() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ExportModelRequest{
// TODO: Fill request struct fields.
}
op, err := c.ExportModel(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_ExportEvaluatedExamples() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ExportEvaluatedExamplesRequest{
// TODO: Fill request struct fields.
}
op, err := c.ExportEvaluatedExamples(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_GetModelEvaluation() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.GetModelEvaluationRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetModelEvaluation(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListModelEvaluations() {
ctx := context.Background()
c, err := automl.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &automlpb.ListModelEvaluationsRequest{
// TODO: Fill request struct fields.
}
it := c.ListModelEvaluations(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}