GroupCollaborateBridgeModifyInstanceRequest20sp1
Bases: OCIRequest
Request to modify a Collaborate bridge. The request fails when the collaborateOwnerUserIdList is included in the request for the default collaborate bridge. The request fails when the supportOutdial is included in the request and the system-level collaborate supportOutdial setting is disabled. The response is either SuccessResponse or ErrorResponse.
Attributes:
service_user_id (str):
service_instance_profile (Optional[ServiceInstanceModifyProfile]):
maximum_bridge_participants (Optional[CollaborateBridgeMaximumParticipants]):
network_class_of_service (Optional[str]):
max_collaborate_room_participants (Optional[int]):
support_outdial (Optional[bool]):
collaborate_owner_user_id_list (Optional[Nillable[ReplacementUserIdList]]):
Source code in src/mercury_ocip/commands/commands.py
42841 42842 42843 42844 42845 42846 42847 42848 42849 42850 42851 42852 42853 42854 42855 42856 42857 42858 42859 42860 42861 42862 42863 42864 42865 42866 42867 42868 42869 42870 42871 42872 42873 42874 42875 42876 42877 42878 42879 42880 42881 42882 42883 42884 42885 42886 42887 42888 42889 42890 42891 42892 42893 42894 42895 42896 42897 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCollaborateBridgeModifyInstanceRequest20sp1
client = Client()
command = GroupCollaborateBridgeModifyInstanceRequest20sp1(
service_user_id=...,
service_instance_profile=...,
maximum_bridge_participants=...,
network_class_of_service=...,
max_collaborate_room_participants=...,
support_outdial=...,
collaborate_owner_user_id_list=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupCollaborateBridgeModifyInstanceRequest20sp1",
service_user_id=...,
service_instance_profile=...,
maximum_bridge_participants=...,
network_class_of_service=...,
max_collaborate_room_participants=...,
support_outdial=...,
collaborate_owner_user_id_list=...,
)
print(response)