SystemBroadWorksMobilityMobileNetworkModifyRequest
Bases: OCIRequest
Modify a Mobile Network. The response is either SuccessResponse or ErrorResponse.
Attributes:
name (str):
new_name (Optional[str]):
scf_signaling_net_address (Optional[Nillable[str]]):
scf_signaling_port (Optional[Nillable[int]]):
refresh_period_seconds (Optional[int]):
max_consecutive_failures (Optional[int]):
max_response_wait_time_milliseconds (Optional[int]):
enable_announcement_suppression (Optional[bool]):
service_access_code_list_name (Optional[Nillable[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
74361 74362 74363 74364 74365 74366 74367 74368 74369 74370 74371 74372 74373 74374 74375 74376 74377 74378 74379 74380 74381 74382 74383 74384 74385 74386 74387 74388 74389 74390 74391 74392 74393 74394 74395 74396 74397 74398 74399 74400 74401 74402 74403 74404 74405 74406 74407 74408 74409 74410 74411 74412 74413 74414 74415 74416 74417 74418 74419 74420 74421 74422 74423 74424 74425 74426 74427 74428 74429 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemBroadWorksMobilityMobileNetworkModifyRequest
client = Client()
command = SystemBroadWorksMobilityMobileNetworkModifyRequest(
name=...,
new_name=...,
scf_signaling_net_address=...,
scf_signaling_port=...,
refresh_period_seconds=...,
max_consecutive_failures=...,
max_response_wait_time_milliseconds=...,
enable_announcement_suppression=...,
service_access_code_list_name=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("SystemBroadWorksMobilityMobileNetworkModifyRequest",
name=...,
new_name=...,
scf_signaling_net_address=...,
scf_signaling_port=...,
refresh_period_seconds=...,
max_consecutive_failures=...,
max_response_wait_time_milliseconds=...,
enable_announcement_suppression=...,
service_access_code_list_name=...,
)
print(response)