SystemAccessDeviceGetRequest24V3
Bases: OCIRequest
Requests the configuration of a specified system access device.
The following elements are only used in AS data mode and ignored in XS data mode:
deviceExternalId
The response is either SystemAccessDeviceGetResponse24V3 or ErrorResponse.
Attributes:
device_name (Optional[str]):
device_external_id (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceGetRequest24V3
The following elements are only used in AS data mode:
version
deviceName
deviceExternalId
The following elements are only used in AS data mode and not returned in XS data mode:
isWebexTeamsDevice
defaultPathHeader
deviceCode
deviceIPEI
deviceIndex
useDeviceCode
authBearerSubject
Attributes:
device_type (str):
protocol (str):
net_address (Optional[str]):
port (Optional[int]):
outbound_proxy_server_net_address (Optional[str]):
stun_server_net_address (Optional[str]):
mac_address (Optional[str]):
serial_number (Optional[str]):
description (Optional[str]):
number_of_ports (UnboundedPositiveInt):
number_of_assigned_ports (int):
status (str):
physical_location (Optional[str]):
transport_protocol (Optional[str]):
use_custom_user_name_password (Optional[bool]):
user_name (Optional[str]):
version (Optional[str]):
is_webex_teams_device (Optional[bool]):
default_path_header (Optional[str]):
device_name (str):
device_external_id (Optional[str]):
device_code (Optional[str]):
device_ipei (Optional[str]):
device_index (Optional[int]):
use_device_code (Optional[bool]):
auth_bearer_subject (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
136502 136503 136504 136505 136506 136507 136508 136509 136510 136511 136512 136513 136514 136515 136516 136517 136518 136519 136520 136521 136522 136523 136524 136525 136526 136527 136528 136529 136530 136531 136532 136533 136534 136535 136536 136537 136538 136539 136540 136541 136542 136543 136544 136545 136546 136547 136548 136549 136550 136551 136552 136553 136554 136555 136556 136557 136558 136559 136560 136561 136562 136563 136564 136565 136566 136567 136568 136569 136570 136571 136572 136573 136574 136575 136576 136577 136578 136579 136580 136581 136582 136583 136584 136585 136586 136587 136588 136589 136590 136591 136592 136593 136594 136595 136596 136597 136598 136599 136600 136601 136602 136603 136604 136605 136606 136607 136608 136609 136610 136611 136612 136613 136614 136615 136616 136617 136618 136619 136620 136621 136622 136623 136624 136625 136626 136627 136628 136629 136630 136631 136632 136633 136634 136635 136636 136637 136638 136639 136640 136641 136642 136643 136644 136645 136646 136647 136648 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemAccessDeviceGetRequest24V3
client = Client()
command = SystemAccessDeviceGetRequest24V3(
device_name=...,
device_external_id=...,
)
response = client.command(command)
print(response)