meet

package
v0.4.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 12, 2024 License: Apache-2.0 Imports: 21 Imported by: 0

Documentation

Overview

Package meet is an auto-generated package for the Google Meet API.

Create and manage meetings in Google Meet.

NOTE: This package is in beta. It is not stable, and may be subject to changes.

General documentation

For information that is relevant for all client libraries please reference https://pkg.golang.ir/cloud.google.com/go#pkg-overview. Some information on this page includes:

Example usage

To get started with this package, create a client.

ctx := context.Background()
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in:
//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
c, err := meet.NewSpacesClient(ctx)
if err != nil {
	// TODO: Handle error.
}
defer c.Close()

The client will use your default application credentials. Clients should be reused instead of created as needed. The methods of Client are safe for concurrent use by multiple goroutines. The returned client must be Closed when it is done being used.

Using the Client

The following is an example of making an API call with the newly created client.

ctx := context.Background()
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in:
//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
c, err := meet.NewSpacesClient(ctx)
if err != nil {
	// TODO: Handle error.
}
defer c.Close()

req := &meetpb.CreateSpaceRequest{
	// TODO: Fill request struct fields.
	// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#CreateSpaceRequest.
}
resp, err := c.CreateSpace(ctx, req)
if err != nil {
	// TODO: Handle error.
}
// TODO: Use resp.
_ = resp

Use of Context

The ctx passed to NewSpacesClient is used for authentication requests and for creating the underlying connection, but is not used for subsequent calls. Individual methods on the client use the ctx given to them.

To close the open connection, use the Close() method.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func DefaultAuthScopes

func DefaultAuthScopes() []string

DefaultAuthScopes reports the default set of authentication scopes to use with this package.

Types

type ConferenceRecordIterator

type ConferenceRecordIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*meetpb.ConferenceRecord, nextPageToken string, err error)
	// contains filtered or unexported fields
}

ConferenceRecordIterator manages a stream of *meetpb.ConferenceRecord.

func (*ConferenceRecordIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*ConferenceRecordIterator) PageInfo

func (it *ConferenceRecordIterator) PageInfo() *iterator.PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.

type ConferenceRecordsCallOptions

type ConferenceRecordsCallOptions struct {
	GetConferenceRecord     []gax.CallOption
	ListConferenceRecords   []gax.CallOption
	GetParticipant          []gax.CallOption
	ListParticipants        []gax.CallOption
	GetParticipantSession   []gax.CallOption
	ListParticipantSessions []gax.CallOption
	GetRecording            []gax.CallOption
	ListRecordings          []gax.CallOption
	GetTranscript           []gax.CallOption
	ListTranscripts         []gax.CallOption
	GetTranscriptEntry      []gax.CallOption
	ListTranscriptEntries   []gax.CallOption
}

ConferenceRecordsCallOptions contains the retry settings for each method of ConferenceRecordsClient.

type ConferenceRecordsClient

type ConferenceRecordsClient struct {

	// The call options for this service.
	CallOptions *ConferenceRecordsCallOptions
	// contains filtered or unexported fields
}

ConferenceRecordsClient is a client for interacting with Google Meet API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.

REST API for services dealing with conference records.

func NewConferenceRecordsClient

func NewConferenceRecordsClient(ctx context.Context, opts ...option.ClientOption) (*ConferenceRecordsClient, error)

NewConferenceRecordsClient creates a new conference records service client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.

REST API for services dealing with conference records.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	// TODO: Use client.
	_ = c
}
Output:

func NewConferenceRecordsRESTClient

func NewConferenceRecordsRESTClient(ctx context.Context, opts ...option.ClientOption) (*ConferenceRecordsClient, error)

NewConferenceRecordsRESTClient creates a new conference records service rest client.

REST API for services dealing with conference records.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsRESTClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	// TODO: Use client.
	_ = c
}
Output:

func (*ConferenceRecordsClient) Close

func (c *ConferenceRecordsClient) Close() error

Close closes the connection to the API service. The user should invoke this when the client is no longer required.

func (*ConferenceRecordsClient) Connection deprecated

func (c *ConferenceRecordsClient) Connection() *grpc.ClientConn

Connection returns a connection to the API service.

Deprecated: Connections are now pooled so this method does not always return the same resource.

func (*ConferenceRecordsClient) GetConferenceRecord

GetConferenceRecord Developer Preview (at https://developers.google.com/workspace/preview). Gets a conference record by conference ID.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.GetConferenceRecordRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#GetConferenceRecordRequest.
	}
	resp, err := c.GetConferenceRecord(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

func (*ConferenceRecordsClient) GetParticipant

GetParticipant Developer Preview (at https://developers.google.com/workspace/preview). Gets a participant by participant ID.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.GetParticipantRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#GetParticipantRequest.
	}
	resp, err := c.GetParticipant(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

func (*ConferenceRecordsClient) GetParticipantSession

GetParticipantSession Developer Preview (at https://developers.google.com/workspace/preview). Gets a participant session by participant session ID.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.GetParticipantSessionRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#GetParticipantSessionRequest.
	}
	resp, err := c.GetParticipantSession(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

func (*ConferenceRecordsClient) GetRecording

GetRecording Developer Preview (at https://developers.google.com/workspace/preview). Gets a recording by recording ID.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.GetRecordingRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#GetRecordingRequest.
	}
	resp, err := c.GetRecording(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

func (*ConferenceRecordsClient) GetTranscript

GetTranscript Developer Preview (at https://developers.google.com/workspace/preview). Gets a transcript by transcript ID.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.GetTranscriptRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#GetTranscriptRequest.
	}
	resp, err := c.GetTranscript(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

func (*ConferenceRecordsClient) GetTranscriptEntry

GetTranscriptEntry Developer Preview (at https://developers.google.com/workspace/preview). Gets a TranscriptEntry resource by entry ID.

Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when the Google Docs transcript file is modified after generation.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.GetTranscriptEntryRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#GetTranscriptEntryRequest.
	}
	resp, err := c.GetTranscriptEntry(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

func (*ConferenceRecordsClient) ListConferenceRecords

ListConferenceRecords Developer Preview (at https://developers.google.com/workspace/preview). Lists the conference records by start time and in descending order.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
	"google.golang.org/api/iterator"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.ListConferenceRecordsRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#ListConferenceRecordsRequest.
	}
	it := c.ListConferenceRecords(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}
Output:

func (*ConferenceRecordsClient) ListParticipantSessions

ListParticipantSessions Developer Preview (at https://developers.google.com/workspace/preview). Lists the participant sessions of a participant in a conference record, by default ordered by join time and in descending order. This API supports fields as standard parameters like every other API. However, when the fields request parameter is omitted this API defaults to 'participantsessions/*, next_page_token'.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
	"google.golang.org/api/iterator"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.ListParticipantSessionsRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#ListParticipantSessionsRequest.
	}
	it := c.ListParticipantSessions(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}
Output:

func (*ConferenceRecordsClient) ListParticipants

ListParticipants Developer Preview (at https://developers.google.com/workspace/preview). Lists the participants in a conference record, by default ordered by join time and in descending order. This API supports fields as standard parameters like every other API. However, when the fields request parameter is omitted, this API defaults to 'participants/*, next_page_token'.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
	"google.golang.org/api/iterator"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.ListParticipantsRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#ListParticipantsRequest.
	}
	it := c.ListParticipants(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}
Output:

func (*ConferenceRecordsClient) ListRecordings

ListRecordings Developer Preview (at https://developers.google.com/workspace/preview). Lists the recording resources from the conference record.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
	"google.golang.org/api/iterator"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.ListRecordingsRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#ListRecordingsRequest.
	}
	it := c.ListRecordings(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}
Output:

func (*ConferenceRecordsClient) ListTranscriptEntries

ListTranscriptEntries Developer Preview (at https://developers.google.com/workspace/preview). Lists the structured transcript entries per transcript. By default, ordered by start time and in ascending order.

Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when the Google Docs transcript file is modified after generation.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
	"google.golang.org/api/iterator"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.ListTranscriptEntriesRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#ListTranscriptEntriesRequest.
	}
	it := c.ListTranscriptEntries(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}
Output:

func (*ConferenceRecordsClient) ListTranscripts

ListTranscripts Developer Preview (at https://developers.google.com/workspace/preview). Lists the set of transcripts from the conference record.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
	"google.golang.org/api/iterator"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewConferenceRecordsClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.ListTranscriptsRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#ListTranscriptsRequest.
	}
	it := c.ListTranscripts(ctx, req)
	for {
		resp, err := it.Next()
		if err == iterator.Done {
			break
		}
		if err != nil {
			// TODO: Handle error.
		}
		// TODO: Use resp.
		_ = resp
	}
}
Output:

type ParticipantIterator

type ParticipantIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*meetpb.Participant, nextPageToken string, err error)
	// contains filtered or unexported fields
}

ParticipantIterator manages a stream of *meetpb.Participant.

func (*ParticipantIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*ParticipantIterator) PageInfo

func (it *ParticipantIterator) PageInfo() *iterator.PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.

type ParticipantSessionIterator

type ParticipantSessionIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*meetpb.ParticipantSession, nextPageToken string, err error)
	// contains filtered or unexported fields
}

ParticipantSessionIterator manages a stream of *meetpb.ParticipantSession.

func (*ParticipantSessionIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*ParticipantSessionIterator) PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.

type RecordingIterator

type RecordingIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*meetpb.Recording, nextPageToken string, err error)
	// contains filtered or unexported fields
}

RecordingIterator manages a stream of *meetpb.Recording.

func (*RecordingIterator) Next

func (it *RecordingIterator) Next() (*meetpb.Recording, error)

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*RecordingIterator) PageInfo

func (it *RecordingIterator) PageInfo() *iterator.PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.

type SpacesCallOptions

type SpacesCallOptions struct {
	CreateSpace         []gax.CallOption
	GetSpace            []gax.CallOption
	UpdateSpace         []gax.CallOption
	EndActiveConference []gax.CallOption
}

SpacesCallOptions contains the retry settings for each method of SpacesClient.

type SpacesClient

type SpacesClient struct {

	// The call options for this service.
	CallOptions *SpacesCallOptions
	// contains filtered or unexported fields
}

SpacesClient is a client for interacting with Google Meet API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.

REST API for services dealing with spaces.

func NewSpacesClient

func NewSpacesClient(ctx context.Context, opts ...option.ClientOption) (*SpacesClient, error)

NewSpacesClient creates a new spaces service client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.

REST API for services dealing with spaces.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewSpacesClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	// TODO: Use client.
	_ = c
}
Output:

func NewSpacesRESTClient

func NewSpacesRESTClient(ctx context.Context, opts ...option.ClientOption) (*SpacesClient, error)

NewSpacesRESTClient creates a new spaces service rest client.

REST API for services dealing with spaces.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewSpacesRESTClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	// TODO: Use client.
	_ = c
}
Output:

func (*SpacesClient) Close

func (c *SpacesClient) Close() error

Close closes the connection to the API service. The user should invoke this when the client is no longer required.

func (*SpacesClient) Connection deprecated

func (c *SpacesClient) Connection() *grpc.ClientConn

Connection returns a connection to the API service.

Deprecated: Connections are now pooled so this method does not always return the same resource.

func (*SpacesClient) CreateSpace

func (c *SpacesClient) CreateSpace(ctx context.Context, req *meetpb.CreateSpaceRequest, opts ...gax.CallOption) (*meetpb.Space, error)

CreateSpace Developer Preview (at https://developers.google.com/workspace/preview). Creates a space.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewSpacesClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.CreateSpaceRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#CreateSpaceRequest.
	}
	resp, err := c.CreateSpace(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

func (*SpacesClient) EndActiveConference

func (c *SpacesClient) EndActiveConference(ctx context.Context, req *meetpb.EndActiveConferenceRequest, opts ...gax.CallOption) error

EndActiveConference Developer Preview (at https://developers.google.com/workspace/preview). Ends an active conference (if there is one).

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewSpacesClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.EndActiveConferenceRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#EndActiveConferenceRequest.
	}
	err = c.EndActiveConference(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
}
Output:

func (*SpacesClient) GetSpace

func (c *SpacesClient) GetSpace(ctx context.Context, req *meetpb.GetSpaceRequest, opts ...gax.CallOption) (*meetpb.Space, error)

GetSpace Developer Preview (at https://developers.google.com/workspace/preview). Gets a space by space_id or meeting_code.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewSpacesClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.GetSpaceRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#GetSpaceRequest.
	}
	resp, err := c.GetSpace(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

func (*SpacesClient) UpdateSpace

func (c *SpacesClient) UpdateSpace(ctx context.Context, req *meetpb.UpdateSpaceRequest, opts ...gax.CallOption) (*meetpb.Space, error)

UpdateSpace Developer Preview (at https://developers.google.com/workspace/preview). Updates a space.

Example
package main

import (
	"context"

	meet "cloud.google.com/go/apps/meet/apiv2beta"
	meetpb "cloud.google.com/go/apps/meet/apiv2beta/meetpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.golang.ir/cloud.google.com/go#hdr-Client_Options
	c, err := meet.NewSpacesClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &meetpb.UpdateSpaceRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.golang.ir/cloud.google.com/go/apps/meet/apiv2beta/meetpb#UpdateSpaceRequest.
	}
	resp, err := c.UpdateSpace(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}
Output:

type TranscriptEntryIterator

type TranscriptEntryIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*meetpb.TranscriptEntry, nextPageToken string, err error)
	// contains filtered or unexported fields
}

TranscriptEntryIterator manages a stream of *meetpb.TranscriptEntry.

func (*TranscriptEntryIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*TranscriptEntryIterator) PageInfo

func (it *TranscriptEntryIterator) PageInfo() *iterator.PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.

type TranscriptIterator

type TranscriptIterator struct {

	// Response is the raw response for the current page.
	// It must be cast to the RPC response type.
	// Calling Next() or InternalFetch() updates this value.
	Response interface{}

	// InternalFetch is for use by the Google Cloud Libraries only.
	// It is not part of the stable interface of this package.
	//
	// InternalFetch returns results from a single call to the underlying RPC.
	// The number of results is no greater than pageSize.
	// If there are no more results, nextPageToken is empty and err is nil.
	InternalFetch func(pageSize int, pageToken string) (results []*meetpb.Transcript, nextPageToken string, err error)
	// contains filtered or unexported fields
}

TranscriptIterator manages a stream of *meetpb.Transcript.

func (*TranscriptIterator) Next

func (it *TranscriptIterator) Next() (*meetpb.Transcript, error)

Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.

func (*TranscriptIterator) PageInfo

func (it *TranscriptIterator) PageInfo() *iterator.PageInfo

PageInfo supports pagination. See the google.golang.org/api/iterator package for details.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL