Source code for wxc_sdk.meetings.qualities

"""
Mesting qualities API
"""
from collections.abc import Generator
from typing import Optional

from ...api_child import ApiChild
from ...base import ApiModel
from ...base import SafeEnum as Enum

__all__ = ['MediaSessionQuality', 'MeetingQualitiesApi', 'NetworkType',
           'QualityResources',
           'TransportType', 'VideoIn']


[docs] class NetworkType(str, Enum): wifi = 'wifi' cellular = 'cellular' ethernet = 'ethernet' unknown = 'unknown'
[docs] class TransportType(str, Enum): udp = 'UDP' tcp = 'TCP'
[docs] class VideoIn(ApiModel): #: The sampling interval, in seconds, of the downstream video quality data. sampling_interval: Optional[int] = None #: The date and time when this video session started. start_time: Optional[str] = None #: The date and time when this video session ended. end_time: Optional[str] = None #: The percentage of video packet loss, as a float between 0.0 and 100.0, during each sampling interval. packet_loss: Optional[list[int]] = None #: The average latency, in milliseconds, during each sampling interval. latency: Optional[list[int]] = None #: The pixel height of the incoming video. resolution_height: Optional[list[int]] = None #: The frames per second of the incoming video. frame_rate: Optional[list[int]] = None #: The bit rate of the incoming video. media_bit_rate: Optional[list[int]] = None #: The incoming video codec. codec: Optional[str] = None #: The incoming video jitter. jitter: Optional[list[int]] = None #: The network protocol used for video transmission. transport_type: Optional[TransportType] = None
[docs] class QualityResources(ApiModel): #: The average percent CPU for the process. process_average_cpu: Optional[list[int]] = None #: The max percent CPU for the process. process_max_cpu: Optional[list[int]] = None #: The average percent CPU for the system. system_average_cpu: Optional[list[int]] = None #: The max percent CPU for the system. system_max_cpu: Optional[list[int]] = None
[docs] class MediaSessionQuality(ApiModel): #: The meeting identifier for the specific meeting instance. meeting_instance_id: Optional[str] = None #: The display name of the participant of this media session. webex_user_name: Optional[str] = None #: The email address of the participant of this media session. webex_user_email: Optional[str] = None #: The date and time when this participant joined the meeting. join_time: Optional[str] = None #: The date and time when this participant left the meeting. leave_time: Optional[str] = None #: The join meeting time of the participant. join_meeting_time: Optional[str] = None #: The type of the client (and OS) used by this media session. client_type: Optional[str] = None #: The version of the client used by this media session. client_version: Optional[str] = None #: The operating system used for the client. os_type: Optional[str] = None #: The version of the operating system used for the client. os_version: Optional[str] = None #: The type of hardware used to attend the meeting hardware_type: Optional[str] = None #: A description of the speaker used in the meeting. speaker_name: Optional[str] = None #: The type of network. network_type: Optional[NetworkType] = None #: The local IP address of the client. local_ip: Optional[str] = None #: The public IP address of the client. public_ip: Optional[str] = None #: The masked local IP address of the client. masked_local_ip: Optional[str] = None #: The masked public IP address of the client. masked_public_ip: Optional[str] = None #: A description of the camera used in the meeting. camera: Optional[str] = None #: A description of the microphone used in the meeting. microphone: Optional[str] = None #: The server region. server_region: Optional[str] = None #: The video mesh cluster name. video_mesh_cluster: Optional[str] = None #: The video mesh server name. video_mesh_server: Optional[str] = None #: Identifies the participant. participant_id: Optional[str] = None #: Identifies a specific session the participant has in a given meeting. participant_session_id: Optional[str] = None #: The collection of downstream (sent to the client) video quality data. video_in: Optional[list[VideoIn]] = None #: The collection of upstream (sent from the client) video quality data. video_out: Optional[list[VideoIn]] = None #: The collection of downstream (sent to the client) audio quality data. audio_in: Optional[list[VideoIn]] = None #: The collection of upstream (sent from the client) audio quality data. audio_out: Optional[list[VideoIn]] = None #: The collection of downstream (sent to the client) share quality data. share_in: Optional[list[VideoIn]] = None #: The collection of upstream (sent from the client) share quality data. share_out: Optional[list[VideoIn]] = None #: Device resources such as CPU and memory. resources: Optional[list[QualityResources]] = None
[docs] class MeetingQualitiesApi(ApiChild, base=''): """ To retrieve quality information, you must use an administrator token with the analytics:read_all scope. The authenticated user must be a read-only or full administrator of the organization to which the meeting belongs and must not be an external administrator. To use this endpoint, the org needs to be licensed for the Webex Pro Pack. For CI-Native site, no additional settings are required. For CI-linked site, the admin must also be set as the Full/ReadOnly Site Admin of the site. A minimum Webex and Teams client version is required. For details, see Troubleshooting Help Doc. Quality information is available 10 minutes after a meeting has started and may be retrieved for up to 7 days. A rate limit of 1 API call every 5 minutes for the same meeting instance ID applies. """
[docs] def meeting_qualities(self, meeting_id: str, offset: int = None, **params) -> Generator[MediaSessionQuality, None, None]: """ Get quality data for a meeting, by meetingId. Only organization administrators can retrieve meeting quality data. :param meeting_id: Unique identifier for the specific meeting instance. Note: The meetingId can be obtained via the Meeting List API when meetingType=meeting. The id attribute in the Meeting List Response is what is needed, for example, e5dba9613a9d455aa49f6ffdafb6e7db_I_191395283063545470. :type meeting_id: str :param offset: Offset from the first result that you want to fetch. :type offset: int documentation: https://developer.webex.com/docs/api/v1/meeting-qualities/get-meeting-qualities """ params['meetingId'] = meeting_id if offset is not None: params['offset'] = offset url = self.ep('https://analytics.webexapis.com/v1/meeting/qualities') return self.session.follow_pagination(url=url, model=MediaSessionQuality, params=params)