Reference documentation and code samples for the Google Meet V2BETA API class Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.
REST client for the ConferenceRecordsService service.
REST API for services dealing with conference records.
Inherits
- Object
Methods
.configure
def self.configure() { |config| ... } -> Client::Configuration
Configure the ConferenceRecordsService Client class.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
# Modify the configuration for all ConferenceRecordsService clients ::Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.configure do |config| config.timeout = 10.0 end
#configure
def configure() { |config| ... } -> Client::Configuration
Configure the ConferenceRecordsService Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on Client.configure.
See Configuration for a description of the configuration fields.
- (config) — Configure the Client client.
- config (Client::Configuration)
#get_conference_record
def get_conference_record(request, options = nil) -> ::Google::Apps::Meet::V2beta::ConferenceRecord
def get_conference_record(name: nil) -> ::Google::Apps::Meet::V2beta::ConferenceRecord
Developer Preview. Gets a conference record by conference ID.
def get_conference_record(request, options = nil) -> ::Google::Apps::Meet::V2beta::ConferenceRecord
get_conference_record
via a request object, either of type
GetConferenceRecordRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::GetConferenceRecordRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_conference_record(name: nil) -> ::Google::Apps::Meet::V2beta::ConferenceRecord
get_conference_record
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- name (::String) — Required. Resource name of the conference.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Apps::Meet::V2beta::ConferenceRecord)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::GetConferenceRecordRequest.new # Call the get_conference_record method. result = client.get_conference_record request # The returned object is of type Google::Apps::Meet::V2beta::ConferenceRecord. p result
#get_participant
def get_participant(request, options = nil) -> ::Google::Apps::Meet::V2beta::Participant
def get_participant(name: nil) -> ::Google::Apps::Meet::V2beta::Participant
Developer Preview. Gets a participant by participant ID.
def get_participant(request, options = nil) -> ::Google::Apps::Meet::V2beta::Participant
get_participant
via a request object, either of type
GetParticipantRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::GetParticipantRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_participant(name: nil) -> ::Google::Apps::Meet::V2beta::Participant
get_participant
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- name (::String) — Required. Resource name of the participant.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Apps::Meet::V2beta::Participant)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::GetParticipantRequest.new # Call the get_participant method. result = client.get_participant request # The returned object is of type Google::Apps::Meet::V2beta::Participant. p result
#get_participant_session
def get_participant_session(request, options = nil) -> ::Google::Apps::Meet::V2beta::ParticipantSession
def get_participant_session(name: nil) -> ::Google::Apps::Meet::V2beta::ParticipantSession
Developer Preview. Gets a participant session by participant session ID.
def get_participant_session(request, options = nil) -> ::Google::Apps::Meet::V2beta::ParticipantSession
get_participant_session
via a request object, either of type
GetParticipantSessionRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::GetParticipantSessionRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_participant_session(name: nil) -> ::Google::Apps::Meet::V2beta::ParticipantSession
get_participant_session
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- name (::String) — Required. Resource name of the participant.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Apps::Meet::V2beta::ParticipantSession)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::GetParticipantSessionRequest.new # Call the get_participant_session method. result = client.get_participant_session request # The returned object is of type Google::Apps::Meet::V2beta::ParticipantSession. p result
#get_recording
def get_recording(request, options = nil) -> ::Google::Apps::Meet::V2beta::Recording
def get_recording(name: nil) -> ::Google::Apps::Meet::V2beta::Recording
Developer Preview. Gets a recording by recording ID.
def get_recording(request, options = nil) -> ::Google::Apps::Meet::V2beta::Recording
get_recording
via a request object, either of type
GetRecordingRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::GetRecordingRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_recording(name: nil) -> ::Google::Apps::Meet::V2beta::Recording
get_recording
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- name (::String) — Required. Resource name of the recording.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Apps::Meet::V2beta::Recording)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::GetRecordingRequest.new # Call the get_recording method. result = client.get_recording request # The returned object is of type Google::Apps::Meet::V2beta::Recording. p result
#get_transcript
def get_transcript(request, options = nil) -> ::Google::Apps::Meet::V2beta::Transcript
def get_transcript(name: nil) -> ::Google::Apps::Meet::V2beta::Transcript
Developer Preview. Gets a transcript by transcript ID.
def get_transcript(request, options = nil) -> ::Google::Apps::Meet::V2beta::Transcript
get_transcript
via a request object, either of type
GetTranscriptRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::GetTranscriptRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_transcript(name: nil) -> ::Google::Apps::Meet::V2beta::Transcript
get_transcript
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
- name (::String) — Required. Resource name of the transcript.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Apps::Meet::V2beta::Transcript)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::GetTranscriptRequest.new # Call the get_transcript method. result = client.get_transcript request # The returned object is of type Google::Apps::Meet::V2beta::Transcript. p result
#get_transcript_entry
def get_transcript_entry(request, options = nil) -> ::Google::Apps::Meet::V2beta::TranscriptEntry
def get_transcript_entry(name: nil) -> ::Google::Apps::Meet::V2beta::TranscriptEntry
Developer 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.
def get_transcript_entry(request, options = nil) -> ::Google::Apps::Meet::V2beta::TranscriptEntry
get_transcript_entry
via a request object, either of type
GetTranscriptEntryRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::GetTranscriptEntryRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def get_transcript_entry(name: nil) -> ::Google::Apps::Meet::V2beta::TranscriptEntry
get_transcript_entry
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
name (::String) — Required. Resource name of the
TranscriptEntry
.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Google::Apps::Meet::V2beta::TranscriptEntry)
- operation (::Gapic::Rest::TransportOperation)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::GetTranscriptEntryRequest.new # Call the get_transcript_entry method. result = client.get_transcript_entry request # The returned object is of type Google::Apps::Meet::V2beta::TranscriptEntry. p result
#initialize
def initialize() { |config| ... } -> Client
Create a new ConferenceRecordsService REST client object.
- (config) — Configure the ConferenceRecordsService client.
- config (Client::Configuration)
- (Client) — a new instance of Client
# Create a client using the default configuration client = ::Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a client using a custom configuration client = ::Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new do |config| config.timeout = 10.0 end
#list_conference_records
def list_conference_records(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>
def list_conference_records(page_size: nil, page_token: nil, filter: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>
Developer Preview. Lists the conference records by start time and in descending order.
def list_conference_records(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>
list_conference_records
via a request object, either of type
ListConferenceRecordsRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::ListConferenceRecordsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list_conference_records(page_size: nil, page_token: nil, filter: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>
list_conference_records
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
page_size (::Integer) —
Optional. Maximum number of conference records to return. The service might return fewer than this value. If unspecified, at most 25 conference records are returned. The maximum value is 100; values above 100 are coerced to
- Maximum might change in the future.
- page_token (::String) — Optional. Page token returned from previous List Call.
-
filter (::String) — Optional. User specified filtering condition in EBNF format. The following
are the filterable fields:
space.meeting_code
space.name
start_time
end_time
For example,
space.meeting_code = "abc-mnop-xyz"
.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::ListConferenceRecordsRequest.new # Call the list_conference_records method. result = client.list_conference_records request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Apps::Meet::V2beta::ConferenceRecord. p item end
#list_participant_sessions
def list_participant_sessions(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ParticipantSession>
def list_participant_sessions(parent: nil, page_size: nil, page_token: nil, filter: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ParticipantSession>
Developer 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'
.
def list_participant_sessions(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ParticipantSession>
list_participant_sessions
via a request object, either of type
ListParticipantSessionsRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::ListParticipantSessionsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list_participant_sessions(parent: nil, page_size: nil, page_token: nil, filter: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ParticipantSession>
list_participant_sessions
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Format:
conferenceRecords/{conference_record}/participants/{participant}
- page_size (::Integer) — Optional. Maximum number of participant sessions to return. The service might return fewer than this value. If unspecified, at most 100 participants are returned. The maximum value is 250; values above 250 are coerced to 250. Maximum might change in the future.
- page_token (::String) — Optional. Page token returned from previous List Call.
-
filter (::String) — Optional. User specified filtering condition in EBNF format. The following
are the filterable fields:
start_time
end_time
For example,
end_time IS NULL
returns active participant sessions in the conference record.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ParticipantSession>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ParticipantSession>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::ListParticipantSessionsRequest.new # Call the list_participant_sessions method. result = client.list_participant_sessions request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Apps::Meet::V2beta::ParticipantSession. p item end
#list_participants
def list_participants(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Participant>
def list_participants(parent: nil, page_size: nil, page_token: nil, filter: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Participant>
Developer 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'
.
def list_participants(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Participant>
list_participants
via a request object, either of type
ListParticipantsRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::ListParticipantsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list_participants(parent: nil, page_size: nil, page_token: nil, filter: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Participant>
list_participants
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Format:
conferenceRecords/{conference_record}
- page_size (::Integer) — Maximum number of participants to return. The service might return fewer than this value. If unspecified, at most 100 participants are returned. The maximum value is 250; values above 250 are coerced to 250. Maximum might change in the future.
- page_token (::String) — Page token returned from previous List Call.
-
filter (::String) — Optional. User specified filtering condition in EBNF format. The following
are the filterable fields:
earliest_start_time
latest_end_time
For example,
latest_end_time IS NULL
returns active participants in the conference.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Participant>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Participant>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::ListParticipantsRequest.new # Call the list_participants method. result = client.list_participants request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Apps::Meet::V2beta::Participant. p item end
#list_recordings
def list_recordings(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Recording>
def list_recordings(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Recording>
Developer Preview. Lists the recording resources from the conference record.
def list_recordings(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Recording>
list_recordings
via a request object, either of type
ListRecordingsRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::ListRecordingsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list_recordings(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Recording>
list_recordings
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Format:
conferenceRecords/{conference_record}
- page_size (::Integer) — Maximum number of recordings to return. The service might return fewer than this value. If unspecified, at most 10 recordings are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.
- page_token (::String) — Page token returned from previous List Call.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Recording>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Recording>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::ListRecordingsRequest.new # Call the list_recordings method. result = client.list_recordings request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Apps::Meet::V2beta::Recording. p item end
#list_transcript_entries
def list_transcript_entries(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::TranscriptEntry>
def list_transcript_entries(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::TranscriptEntry>
Developer 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.
def list_transcript_entries(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::TranscriptEntry>
list_transcript_entries
via a request object, either of type
ListTranscriptEntriesRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::ListTranscriptEntriesRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list_transcript_entries(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::TranscriptEntry>
list_transcript_entries
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Format:
conferenceRecords/{conference_record}/transcripts/{transcript}
- page_size (::Integer) — Maximum number of entries to return. The service might return fewer than this value. If unspecified, at most 10 entries are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.
- page_token (::String) — Page token returned from previous List Call.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::TranscriptEntry>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::TranscriptEntry>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::ListTranscriptEntriesRequest.new # Call the list_transcript_entries method. result = client.list_transcript_entries request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Apps::Meet::V2beta::TranscriptEntry. p item end
#list_transcripts
def list_transcripts(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Transcript>
def list_transcripts(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Transcript>
Developer Preview. Lists the set of transcripts from the conference record.
def list_transcripts(request, options = nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Transcript>
list_transcripts
via a request object, either of type
ListTranscriptsRequest or an equivalent Hash.
- request (::Google::Apps::Meet::V2beta::ListTranscriptsRequest, ::Hash) — A request object representing the call parameters. Required. To specify no parameters, or to keep all the default parameter values, pass an empty Hash.
- options (::Gapic::CallOptions, ::Hash) — Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
def list_transcripts(parent: nil, page_size: nil, page_token: nil) -> ::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Transcript>
list_transcripts
via keyword arguments. Note that at
least one keyword argument is required. To specify no parameters, or to keep all
the default parameter values, pass an empty Hash as a request object (see above).
-
parent (::String) — Required. Format:
conferenceRecords/{conference_record}
- page_size (::Integer) — Maximum number of transcripts to return. The service might return fewer than this value. If unspecified, at most 10 transcripts are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.
- page_token (::String) — Page token returned from previous List Call.
- (result, operation) — Access the result along with the TransportOperation object
- result (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Transcript>)
- operation (::Gapic::Rest::TransportOperation)
- (::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::Transcript>)
- (::Google::Cloud::Error) — if the REST call is aborted.
Basic example
require "google/apps/meet/v2beta" # Create a client object. The client can be reused for multiple calls. client = Google::Apps::Meet::V2beta::ConferenceRecordsService::Rest::Client.new # Create a request. To set request fields, pass in keyword arguments. request = Google::Apps::Meet::V2beta::ListTranscriptsRequest.new # Call the list_transcripts method. result = client.list_transcripts request # The returned object is of type Gapic::PagedEnumerable. You can iterate # over elements, and API calls will be issued to fetch pages as needed. result.each do |item| # Each element is of type ::Google::Apps::Meet::V2beta::Transcript. p item end
#universe_domain
def universe_domain() -> String
The effective universe domain
- (String)