Close httplib2 connections.
Gets a recording by recording ID.
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists the recording resources from the conference record. By default, ordered by start time and in ascending order.
Retrieves the next page of results.
close()
Close httplib2 connections.
get(name, x__xgafv=None)
Gets a recording by recording ID. Args: name: string, Required. Resource name of the recording. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Metadata about a recording created during a conference. "driveDestination": { # Export location where a recording file is saved in Google Drive. # Output only. Recording is saved to Google Drive as an MP4 file. The `drive_destination` includes the Drive `fileId` that can be used to download the file using the `files.get` method of the Drive API. "exportUri": "A String", # Output only. Link used to play back the recording file in the browser. For example, `https://drive.google.com/file/d/{$fileId}/view`. "file": "A String", # Output only. The `fileId` for the underlying MP4 file. For example, "1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use `$ GET https://www.googleapis.com/drive/v3/files/{$fileId}?alt=media` to download the blob. For more information, see https://developers.google.com/drive/api/v3/reference/files/get. }, "endTime": "A String", # Output only. Timestamp when the recording ended. "name": "A String", # Output only. Resource name of the recording. Format: `conferenceRecords/{conference_record}/recordings/{recording}` where `{recording}` is a 1:1 mapping to each unique recording session during the conference. "startTime": "A String", # Output only. Timestamp when the recording started. "state": "A String", # Output only. Current state. }
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists the recording resources from the conference record. By default, ordered by start time and in ascending order. Args: parent: string, Required. Format: `conferenceRecords/{conference_record}` (required) pageSize: 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. pageToken: string, Page token returned from previous List Call. x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Response for ListRecordings method. "nextPageToken": "A String", # Token to be circulated back for further List call if current List doesn't include all the recordings. Unset if all recordings are returned. "recordings": [ # List of recordings in one page. { # Metadata about a recording created during a conference. "driveDestination": { # Export location where a recording file is saved in Google Drive. # Output only. Recording is saved to Google Drive as an MP4 file. The `drive_destination` includes the Drive `fileId` that can be used to download the file using the `files.get` method of the Drive API. "exportUri": "A String", # Output only. Link used to play back the recording file in the browser. For example, `https://drive.google.com/file/d/{$fileId}/view`. "file": "A String", # Output only. The `fileId` for the underlying MP4 file. For example, "1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use `$ GET https://www.googleapis.com/drive/v3/files/{$fileId}?alt=media` to download the blob. For more information, see https://developers.google.com/drive/api/v3/reference/files/get. }, "endTime": "A String", # Output only. Timestamp when the recording ended. "name": "A String", # Output only. Resource name of the recording. Format: `conferenceRecords/{conference_record}/recordings/{recording}` where `{recording}` is a 1:1 mapping to each unique recording session during the conference. "startTime": "A String", # Output only. Timestamp when the recording started. "state": "A String", # Output only. Current state. }, ], }
list_next()
Retrieves the next page of results. Args: previous_request: The request for the previous page. (required) previous_response: The response from the request for the previous page. (required) Returns: A request object that you can call 'execute()' on to request the next page. Returns None if there are no more items in the collection.