GroupBroadWorksAnywhereAddInstanceRequest
Bases: OCIRequest
Add a BroadWorks Anywhere instance to a group. The domain is required in the serviceUserId. The following elements are only used in AS data mode: networkClassOfService The response is either SuccessResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
service_user_id (str):
service_instance_profile (ServiceInstanceAddProfile):
broad_works_anywhere_scope (str):
prompt_for_clid (str):
silent_prompt_mode (bool):
prompt_for_passcode (bool):
network_class_of_service (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
34284 34285 34286 34287 34288 34289 34290 34291 34292 34293 34294 34295 34296 34297 34298 34299 34300 34301 34302 34303 34304 34305 34306 34307 34308 34309 34310 34311 34312 34313 34314 34315 34316 34317 34318 34319 34320 34321 34322 34323 34324 34325 34326 34327 34328 34329 34330 34331 34332 34333 34334 34335 34336 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupBroadWorksAnywhereAddInstanceRequest
client = Client()
command = GroupBroadWorksAnywhereAddInstanceRequest(
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
broad_works_anywhere_scope=...,
prompt_for_clid=...,
silent_prompt_mode=...,
prompt_for_passcode=...,
network_class_of_service=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupBroadWorksAnywhereAddInstanceRequest",
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
broad_works_anywhere_scope=...,
prompt_for_clid=...,
silent_prompt_mode=...,
prompt_for_passcode=...,
network_class_of_service=...,
)
print(response)