blob: cadf1ff104b0eb207cdf644d65a48636bc002a92 [file] [log] [blame]
// Copyright 2022 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 livestream_test
import (
"context"
livestream "cloud.google.com/go/video/livestream/apiv1"
"google.golang.org/api/iterator"
livestreampb "google.golang.org/genproto/googleapis/cloud/video/livestream/v1"
)
func ExampleNewClient() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
// TODO: Use client.
_ = c
}
func ExampleClient_CreateChannel() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.CreateChannelRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#CreateChannelRequest.
}
op, err := c.CreateChannel(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_ListChannels() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.ListChannelsRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#ListChannelsRequest.
}
it := c.ListChannels(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_GetChannel() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.GetChannelRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#GetChannelRequest.
}
resp, err := c.GetChannel(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_DeleteChannel() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.DeleteChannelRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#DeleteChannelRequest.
}
op, err := c.DeleteChannel(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_UpdateChannel() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.UpdateChannelRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#UpdateChannelRequest.
}
op, err := c.UpdateChannel(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_StartChannel() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.StartChannelRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#StartChannelRequest.
}
op, err := c.StartChannel(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_StopChannel() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.StopChannelRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#StopChannelRequest.
}
op, err := c.StopChannel(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_CreateInput() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.CreateInputRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#CreateInputRequest.
}
op, err := c.CreateInput(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_ListInputs() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.ListInputsRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#ListInputsRequest.
}
it := c.ListInputs(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_GetInput() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.GetInputRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#GetInputRequest.
}
resp, err := c.GetInput(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_DeleteInput() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.DeleteInputRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#DeleteInputRequest.
}
op, err := c.DeleteInput(ctx, req)
if err != nil {
// TODO: Handle error.
}
err = op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
}
func ExampleClient_UpdateInput() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.UpdateInputRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#UpdateInputRequest.
}
op, err := c.UpdateInput(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_CreateEvent() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.CreateEventRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#CreateEventRequest.
}
resp, err := c.CreateEvent(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_ListEvents() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.ListEventsRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#ListEventsRequest.
}
it := c.ListEvents(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func ExampleClient_GetEvent() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.GetEventRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#GetEventRequest.
}
resp, err := c.GetEvent(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func ExampleClient_DeleteEvent() {
ctx := context.Background()
c, err := livestream.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &livestreampb.DeleteEventRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/video/livestream/v1#DeleteEventRequest.
}
err = c.DeleteEvent(ctx, req)
if err != nil {
// TODO: Handle error.
}
}