blob: d529d3c22cf11cc85bf983f49426d2efd25f0768 [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 vision_test
import (
"context"
vision "cloud.google.com/go/vision/apiv1"
"google.golang.org/api/iterator"
visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
)
func ExampleNewProductSearchClient() {
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use client.
_ = c
}
func ExampleProductSearchClient_CreateProductSet() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.CreateProductSetRequest{
// TODO: Fill request struct fields.
}
resp, err := c.CreateProductSet(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_ListProductSets() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
// import "google.golang.org/api/iterator"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.ListProductSetsRequest{
// TODO: Fill request struct fields.
}
it := c.ListProductSets(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleProductSearchClient_GetProductSet() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.GetProductSetRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetProductSet(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_UpdateProductSet() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.UpdateProductSetRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdateProductSet(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_DeleteProductSet() {
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.DeleteProductSetRequest{
// TODO: Fill request struct fields.
}
err = c.DeleteProductSet(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleProductSearchClient_CreateProduct() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.CreateProductRequest{
// TODO: Fill request struct fields.
}
resp, err := c.CreateProduct(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_ListProducts() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
// import "google.golang.org/api/iterator"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.ListProductsRequest{
// TODO: Fill request struct fields.
}
it := c.ListProducts(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleProductSearchClient_GetProduct() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.GetProductRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetProduct(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_UpdateProduct() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.UpdateProductRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdateProduct(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_DeleteProduct() {
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.DeleteProductRequest{
// TODO: Fill request struct fields.
}
err = c.DeleteProduct(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleProductSearchClient_CreateReferenceImage() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.CreateReferenceImageRequest{
// TODO: Fill request struct fields.
}
resp, err := c.CreateReferenceImage(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_DeleteReferenceImage() {
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.DeleteReferenceImageRequest{
// TODO: Fill request struct fields.
}
err = c.DeleteReferenceImage(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleProductSearchClient_ListReferenceImages() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
// import "google.golang.org/api/iterator"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.ListReferenceImagesRequest{
// TODO: Fill request struct fields.
}
it := c.ListReferenceImages(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleProductSearchClient_GetReferenceImage() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.GetReferenceImageRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetReferenceImage(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_AddProductToProductSet() {
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.AddProductToProductSetRequest{
// TODO: Fill request struct fields.
}
err = c.AddProductToProductSet(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleProductSearchClient_RemoveProductFromProductSet() {
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.RemoveProductFromProductSetRequest{
// TODO: Fill request struct fields.
}
err = c.RemoveProductFromProductSet(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleProductSearchClient_ListProductsInProductSet() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
// import "google.golang.org/api/iterator"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.ListProductsInProductSetRequest{
// TODO: Fill request struct fields.
}
it := c.ListProductsInProductSet(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleProductSearchClient_ImportProductSets() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.ImportProductSetsRequest{
// TODO: Fill request struct fields.
}
op, err := c.ImportProductSets(ctx, req)
if err != nil {
// TODO: Handle error.
}
resp, err := op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleProductSearchClient_PurgeProducts() {
// import visionpb "google.golang.org/genproto/googleapis/cloud/vision/v1"
ctx := context.Background()
c, err := vision.NewProductSearchClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &visionpb.PurgeProductsRequest{
// TODO: Fill request struct fields.
}
op, err := c.PurgeProducts(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}