Google Apps Meet V2 Client - Class ConferenceRecordsServiceClient (0.2.3)

Reference documentation and code samples for the Google Apps Meet V2 Client class ConferenceRecordsServiceClient.

Service Description: REST API for services dealing with conference records.

This class provides the ability to make remote calls to the backing service through method calls that map to API methods.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parseName method to extract the individual identifiers contained within formatted names that are returned by the API.

Namespace

Google \ Apps \ Meet \ V2 \ Client

Methods

__construct

Constructor.

Parameters
Name Description
options array

Optional. Options for configuring the service API wrapper.

↳ apiEndpoint string

The address of the API remote host. May optionally include the port, formatted as "

↳ credentials string|array|FetchAuthTokenInterface|CredentialsWrapper

The credentials to be used by the client to authorize API calls. This option accepts either a path to a credentials file, or a decoded credentials file as a PHP array. Advanced usage: In addition, this option can also accept a pre-constructed Google\Auth\FetchAuthTokenInterface object or Google\ApiCore\CredentialsWrapper object. Note that when one of these objects are provided, any settings in $credentialsConfig will be ignored.

↳ credentialsConfig array

Options used to configure credentials, including auth token caching, for the client. For a full list of supporting configuration options, see Google\ApiCore\CredentialsWrapper::build() .

↳ disableRetries bool

Determines whether or not retries defined by the client configuration should be disabled. Defaults to false.

↳ clientConfig string|array

Client method configuration, including retry settings. This option can be either a path to a JSON file, or a PHP array containing the decoded JSON data. By default this settings points to the default client config file, which is provided in the resources folder.

↳ transport string|TransportInterface

The transport used for executing network requests. May be either the string rest or grpc. Defaults to grpc if gRPC support is detected on the system. Advanced usage: Additionally, it is possible to pass in an already instantiated Google\ApiCore\Transport\TransportInterface object. Note that when this object is provided, any settings in $transportConfig, and any $apiEndpoint setting, will be ignored.

↳ transportConfig array

Configuration options that will be used to construct the transport. Options for each supported transport type should be passed in a key for that transport. For example: $transportConfig = [ 'grpc' => [...], 'rest' => [...], ]; See the Google\ApiCore\Transport\GrpcTransport::build() and Google\ApiCore\Transport\RestTransport::build() methods for the supported options.

↳ clientCertSource callable

A callable which returns the client cert as a string. This can be used to provide a certificate and private key to the transport layer for mTLS.

getConferenceRecord

Gets a conference record by conference ID.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::getConferenceRecordAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\GetConferenceRecordRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Apps\Meet\V2\ConferenceRecord
Example
use Google\ApiCore\ApiException;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\ConferenceRecord;
use Google\Apps\Meet\V2\GetConferenceRecordRequest;

/**
 * @param string $formattedName Resource name of the conference. Please see
 *                              {@see ConferenceRecordsServiceClient::conferenceRecordName()} for help formatting this field.
 */
function get_conference_record_sample(string $formattedName): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new GetConferenceRecordRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var ConferenceRecord $response */
        $response = $conferenceRecordsServiceClient->getConferenceRecord($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = ConferenceRecordsServiceClient::conferenceRecordName('[CONFERENCE_RECORD]');

    get_conference_record_sample($formattedName);
}

getParticipant

Gets a participant by participant ID.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::getParticipantAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\GetParticipantRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Apps\Meet\V2\Participant
Example
use Google\ApiCore\ApiException;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\GetParticipantRequest;
use Google\Apps\Meet\V2\Participant;

/**
 * @param string $formattedName Resource name of the participant. Please see
 *                              {@see ConferenceRecordsServiceClient::participantName()} for help formatting this field.
 */
function get_participant_sample(string $formattedName): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new GetParticipantRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var Participant $response */
        $response = $conferenceRecordsServiceClient->getParticipant($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = ConferenceRecordsServiceClient::participantName(
        '[CONFERENCE_RECORD]',
        '[PARTICIPANT]'
    );

    get_participant_sample($formattedName);
}

getParticipantSession

Gets a participant session by participant session ID.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::getParticipantSessionAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\GetParticipantSessionRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Apps\Meet\V2\ParticipantSession
Example
use Google\ApiCore\ApiException;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\GetParticipantSessionRequest;
use Google\Apps\Meet\V2\ParticipantSession;

/**
 * @param string $formattedName Resource name of the participant. Please see
 *                              {@see ConferenceRecordsServiceClient::participantSessionName()} for help formatting this field.
 */
function get_participant_session_sample(string $formattedName): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new GetParticipantSessionRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var ParticipantSession $response */
        $response = $conferenceRecordsServiceClient->getParticipantSession($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = ConferenceRecordsServiceClient::participantSessionName(
        '[CONFERENCE_RECORD]',
        '[PARTICIPANT]',
        '[PARTICIPANT_SESSION]'
    );

    get_participant_session_sample($formattedName);
}

getRecording

Gets a recording by recording ID.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::getRecordingAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\GetRecordingRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Apps\Meet\V2\Recording
Example
use Google\ApiCore\ApiException;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\GetRecordingRequest;
use Google\Apps\Meet\V2\Recording;

/**
 * @param string $formattedName Resource name of the recording. Please see
 *                              {@see ConferenceRecordsServiceClient::recordingName()} for help formatting this field.
 */
function get_recording_sample(string $formattedName): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new GetRecordingRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var Recording $response */
        $response = $conferenceRecordsServiceClient->getRecording($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = ConferenceRecordsServiceClient::recordingName(
        '[CONFERENCE_RECORD]',
        '[RECORDING]'
    );

    get_recording_sample($formattedName);
}

getTranscript

Gets a transcript by transcript ID.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::getTranscriptAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\GetTranscriptRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Apps\Meet\V2\Transcript
Example
use Google\ApiCore\ApiException;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\GetTranscriptRequest;
use Google\Apps\Meet\V2\Transcript;

/**
 * @param string $formattedName Resource name of the transcript. Please see
 *                              {@see ConferenceRecordsServiceClient::transcriptName()} for help formatting this field.
 */
function get_transcript_sample(string $formattedName): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new GetTranscriptRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var Transcript $response */
        $response = $conferenceRecordsServiceClient->getTranscript($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = ConferenceRecordsServiceClient::transcriptName(
        '[CONFERENCE_RECORD]',
        '[TRANSCRIPT]'
    );

    get_transcript_sample($formattedName);
}

getTranscriptEntry

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.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::getTranscriptEntryAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\GetTranscriptEntryRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\Apps\Meet\V2\TranscriptEntry
Example
use Google\ApiCore\ApiException;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\GetTranscriptEntryRequest;
use Google\Apps\Meet\V2\TranscriptEntry;

/**
 * @param string $formattedName Resource name of the `TranscriptEntry`. Please see
 *                              {@see ConferenceRecordsServiceClient::transcriptEntryName()} for help formatting this field.
 */
function get_transcript_entry_sample(string $formattedName): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new GetTranscriptEntryRequest())
        ->setName($formattedName);

    // Call the API and handle any network failures.
    try {
        /** @var TranscriptEntry $response */
        $response = $conferenceRecordsServiceClient->getTranscriptEntry($request);
        printf('Response data: %s' . PHP_EOL, $response->serializeToJsonString());
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedName = ConferenceRecordsServiceClient::transcriptEntryName(
        '[CONFERENCE_RECORD]',
        '[TRANSCRIPT]',
        '[ENTRY]'
    );

    get_transcript_entry_sample($formattedName);
}

listConferenceRecords

Lists the conference records. By default, ordered by start time and in descending order.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::listConferenceRecordsAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\ListConferenceRecordsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\ConferenceRecord;
use Google\Apps\Meet\V2\ListConferenceRecordsRequest;

/**
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function list_conference_records_sample(): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = new ListConferenceRecordsRequest();

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $conferenceRecordsServiceClient->listConferenceRecords($request);

        /** @var ConferenceRecord $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

listParticipantSessions

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'.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::listParticipantSessionsAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\ListParticipantSessionsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\ListParticipantSessionsRequest;
use Google\Apps\Meet\V2\ParticipantSession;

/**
 * @param string $formattedParent Format:
 *                                `conferenceRecords/{conference_record}/participants/{participant}`
 *                                Please see {@see ConferenceRecordsServiceClient::participantName()} for help formatting this field.
 */
function list_participant_sessions_sample(string $formattedParent): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new ListParticipantSessionsRequest())
        ->setParent($formattedParent);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $conferenceRecordsServiceClient->listParticipantSessions($request);

        /** @var ParticipantSession $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = ConferenceRecordsServiceClient::participantName(
        '[CONFERENCE_RECORD]',
        '[PARTICIPANT]'
    );

    list_participant_sessions_sample($formattedParent);
}

listParticipants

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'.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::listParticipantsAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\ListParticipantsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\ListParticipantsRequest;
use Google\Apps\Meet\V2\Participant;

/**
 * @param string $formattedParent Format: `conferenceRecords/{conference_record}`
 *                                Please see {@see ConferenceRecordsServiceClient::conferenceRecordName()} for help formatting this field.
 */
function list_participants_sample(string $formattedParent): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new ListParticipantsRequest())
        ->setParent($formattedParent);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $conferenceRecordsServiceClient->listParticipants($request);

        /** @var Participant $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = ConferenceRecordsServiceClient::conferenceRecordName('[CONFERENCE_RECORD]');

    list_participants_sample($formattedParent);
}

listRecordings

Lists the recording resources from the conference record. By default, ordered by start time and in ascending order.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::listRecordingsAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\ListRecordingsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\ListRecordingsRequest;
use Google\Apps\Meet\V2\Recording;

/**
 * @param string $formattedParent Format: `conferenceRecords/{conference_record}`
 *                                Please see {@see ConferenceRecordsServiceClient::conferenceRecordName()} for help formatting this field.
 */
function list_recordings_sample(string $formattedParent): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new ListRecordingsRequest())
        ->setParent($formattedParent);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $conferenceRecordsServiceClient->listRecordings($request);

        /** @var Recording $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = ConferenceRecordsServiceClient::conferenceRecordName('[CONFERENCE_RECORD]');

    list_recordings_sample($formattedParent);
}

listTranscriptEntries

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.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::listTranscriptEntriesAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\ListTranscriptEntriesRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\ListTranscriptEntriesRequest;
use Google\Apps\Meet\V2\TranscriptEntry;

/**
 * @param string $formattedParent Format:
 *                                `conferenceRecords/{conference_record}/transcripts/{transcript}`
 *                                Please see {@see ConferenceRecordsServiceClient::transcriptName()} for help formatting this field.
 */
function list_transcript_entries_sample(string $formattedParent): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new ListTranscriptEntriesRequest())
        ->setParent($formattedParent);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $conferenceRecordsServiceClient->listTranscriptEntries($request);

        /** @var TranscriptEntry $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = ConferenceRecordsServiceClient::transcriptName(
        '[CONFERENCE_RECORD]',
        '[TRANSCRIPT]'
    );

    list_transcript_entries_sample($formattedParent);
}

listTranscripts

Lists the set of transcripts from the conference record. By default, ordered by start time and in ascending order.

The async variant is Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient::listTranscriptsAsync() .

Parameters
Name Description
request Google\Apps\Meet\V2\ListTranscriptsRequest

A request to house fields associated with the call.

callOptions array

Optional.

↳ retrySettings RetrySettings|array

Retry settings to use for this call. Can be a Google\ApiCore\RetrySettings object, or an associative array of retry settings parameters. See the documentation on Google\ApiCore\RetrySettings for example usage.

Returns
Type Description
Google\ApiCore\PagedListResponse
Example
use Google\ApiCore\ApiException;
use Google\ApiCore\PagedListResponse;
use Google\Apps\Meet\V2\Client\ConferenceRecordsServiceClient;
use Google\Apps\Meet\V2\ListTranscriptsRequest;
use Google\Apps\Meet\V2\Transcript;

/**
 * @param string $formattedParent Format: `conferenceRecords/{conference_record}`
 *                                Please see {@see ConferenceRecordsServiceClient::conferenceRecordName()} for help formatting this field.
 */
function list_transcripts_sample(string $formattedParent): void
{
    // Create a client.
    $conferenceRecordsServiceClient = new ConferenceRecordsServiceClient();

    // Prepare the request message.
    $request = (new ListTranscriptsRequest())
        ->setParent($formattedParent);

    // Call the API and handle any network failures.
    try {
        /** @var PagedListResponse $response */
        $response = $conferenceRecordsServiceClient->listTranscripts($request);

        /** @var Transcript $element */
        foreach ($response as $element) {
            printf('Element data: %s' . PHP_EOL, $element->serializeToJsonString());
        }
    } catch (ApiException $ex) {
        printf('Call failed with message: %s' . PHP_EOL, $ex->getMessage());
    }
}

/**
 * Helper to execute the sample.
 *
 * This sample 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,
 *    please see the apiEndpoint client configuration option for more details.
 */
function callSample(): void
{
    $formattedParent = ConferenceRecordsServiceClient::conferenceRecordName('[CONFERENCE_RECORD]');

    list_transcripts_sample($formattedParent);
}

getConferenceRecordAsync

Parameters
Name Description
request Google\Apps\Meet\V2\GetConferenceRecordRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getParticipantAsync

Parameters
Name Description
request Google\Apps\Meet\V2\GetParticipantRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getParticipantSessionAsync

Parameters
Name Description
request Google\Apps\Meet\V2\GetParticipantSessionRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getRecordingAsync

Parameters
Name Description
request Google\Apps\Meet\V2\GetRecordingRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getTranscriptAsync

Parameters
Name Description
request Google\Apps\Meet\V2\GetTranscriptRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

getTranscriptEntryAsync

Parameters
Name Description
request Google\Apps\Meet\V2\GetTranscriptEntryRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listConferenceRecordsAsync

Parameters
Name Description
request Google\Apps\Meet\V2\ListConferenceRecordsRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listParticipantSessionsAsync

Parameters
Name Description
request Google\Apps\Meet\V2\ListParticipantSessionsRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listParticipantsAsync

Parameters
Name Description
request Google\Apps\Meet\V2\ListParticipantsRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listRecordingsAsync

Parameters
Name Description
request Google\Apps\Meet\V2\ListRecordingsRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listTranscriptEntriesAsync

Parameters
Name Description
request Google\Apps\Meet\V2\ListTranscriptEntriesRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

listTranscriptsAsync

Parameters
Name Description
request Google\Apps\Meet\V2\ListTranscriptsRequest
optionalArgs = [] array
Returns
Type Description
GuzzleHttp\Promise\PromiseInterface

static::conferenceRecordName

Formats a string containing the fully-qualified path to represent a conference_record resource.

Parameter
Name Description
conferenceRecord string
Returns
Type Description
string The formatted conference_record resource.

static::participantName

Formats a string containing the fully-qualified path to represent a participant resource.

Parameters
Name Description
conferenceRecord string
participant string
Returns
Type Description
string The formatted participant resource.

static::participantSessionName

Formats a string containing the fully-qualified path to represent a participant_session resource.

Parameters
Name Description
conferenceRecord string
participant string
participantSession string
Returns
Type Description
string The formatted participant_session resource.

static::recordingName

Formats a string containing the fully-qualified path to represent a recording resource.

Parameters
Name Description
conferenceRecord string
recording string
Returns
Type Description
string The formatted recording resource.

static::transcriptName

Formats a string containing the fully-qualified path to represent a transcript resource.

Parameters
Name Description
conferenceRecord string
transcript string
Returns
Type Description
string The formatted transcript resource.

static::transcriptEntryName

Formats a string containing the fully-qualified path to represent a transcript_entry resource.

Parameters
Name Description
conferenceRecord string
transcript string
entry string
Returns
Type Description
string The formatted transcript_entry resource.

static::parseName

Parses a formatted name string and returns an associative array of the components in the name.

The following name formats are supported: Template: Pattern

  • conferenceRecord: conferenceRecords/{conference_record}
  • participant: conferenceRecords/{conference_record}/participants/{participant}
  • participantSession: conferenceRecords/{conference_record}/participants/{participant}/participantSessions/{participant_session}
  • recording: conferenceRecords/{conference_record}/recordings/{recording}
  • transcript: conferenceRecords/{conference_record}/transcripts/{transcript}
  • transcriptEntry: conferenceRecords/{conference_record}/transcripts/{transcript}/entries/{entry}

The optional $template argument can be supplied to specify a particular pattern, and must match one of the templates listed above. If no $template argument is provided, or if the $template argument does not match one of the templates listed, then parseName will check each of the supported templates, and return the first match.

Parameters
Name Description
formattedName string

The formatted name string

template string

Optional name of template to match

Returns
Type Description
array An associative array from name component IDs to component values.