blob: 6f15a829d374af26afb9a000c53f8399beb277a9 [file] [log] [blame]
// Copyright 2019 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 gapic-generator. DO NOT EDIT.
package grafeas_test
import (
"context"
grafeas "cloud.google.com/go/grafeas/apiv1"
"google.golang.org/api/iterator"
grafeaspb "google.golang.org/genproto/googleapis/grafeas/v1"
)
func ExampleNewClient() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use client.
_ = c
}
func ExampleClient_GetOccurrence() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.GetOccurrenceRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetOccurrence(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListOccurrences() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.ListOccurrencesRequest{
// TODO: Fill request struct fields.
}
it := c.ListOccurrences(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_DeleteOccurrence() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.DeleteOccurrenceRequest{
// TODO: Fill request struct fields.
}
err = c.DeleteOccurrence(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_CreateOccurrence() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.CreateOccurrenceRequest{
// TODO: Fill request struct fields.
}
resp, err := c.CreateOccurrence(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_BatchCreateOccurrences() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.BatchCreateOccurrencesRequest{
// TODO: Fill request struct fields.
}
resp, err := c.BatchCreateOccurrences(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_UpdateOccurrence() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.UpdateOccurrenceRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdateOccurrence(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_GetOccurrenceNote() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.GetOccurrenceNoteRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetOccurrenceNote(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_GetNote() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.GetNoteRequest{
// TODO: Fill request struct fields.
}
resp, err := c.GetNote(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListNotes() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.ListNotesRequest{
// TODO: Fill request struct fields.
}
it := c.ListNotes(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_DeleteNote() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.DeleteNoteRequest{
// TODO: Fill request struct fields.
}
err = c.DeleteNote(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_CreateNote() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.CreateNoteRequest{
// TODO: Fill request struct fields.
}
resp, err := c.CreateNote(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_BatchCreateNotes() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.BatchCreateNotesRequest{
// TODO: Fill request struct fields.
}
resp, err := c.BatchCreateNotes(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_UpdateNote() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.UpdateNoteRequest{
// TODO: Fill request struct fields.
}
resp, err := c.UpdateNote(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListNoteOccurrences() {
ctx := context.Background()
c, err := grafeas.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
req := &grafeaspb.ListNoteOccurrencesRequest{
// TODO: Fill request struct fields.
}
it := c.ListNoteOccurrences(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}