Skip to main content

Asynchronous client for the Aruba Instant REST API

Project description

aioarubainstant

aioarubainstant is a typed asynchronous Python client for the monitoring API on Aruba Instant controllers. It is designed for Home Assistant integrations but has no Home Assistant dependency or entity logic.

Version 0.1.3 supports Python 3.14 and Aruba Instant 8.6 monitoring commands.

Features

  • HTTPS communication with aiohttp on port 4343 by default
  • Configurable TLS certificate verification
  • SID authentication, reuse, and one automatic reauthentication attempt
  • Serialized controller commands to avoid overlapping CLI requests
  • Caller-provided aiohttp.ClientSession support
  • Async context-manager and explicit cleanup APIs
  • Typed immutable cluster, access-point, client, and snapshot models
  • Header-derived table parsing tolerant of reordered and additional columns
  • Sanitized raw command output retained privately for diagnostics

The supported commands are show aps, show client debug, show summary, and show version. The library never issues a per-client show client status <mac> request.

Controller setup

The REST API is disabled by default and is available only through the master AP in a cluster. Enable it from the Aruba Instant CLI:

(Instant AP)(config)# allow-rest-api
(Instant AP)(config)# end
(Instant AP)# commit-apply

The transport and response behavior follow the Aruba Instant 8.6.0.x REST API Guide. Command output formats follow the official Instant AOS-8.x CLI Reference Guide, including its Instant AOS-8.6 command history and examples.

Installation

python -m pip install aioarubainstant==0.1.3

Usage

import asyncio

from aioarubainstant import ArubaInstantClient


async def main() -> None:
    async with ArubaInstantClient(
        "192.0.2.1",
        "admin",
        "controller-password",
        verify_ssl=True,
    ) as client:
        snapshot = await client.async_get_snapshot()

    print(snapshot.cluster.name, snapshot.cluster.version)
    for access_point in snapshot.access_points:
        print(access_point.name, access_point.connected_clients)
    for wireless_client in snapshot.clients:
        print(wireless_client.hostname, wireless_client.associated_ap)


asyncio.run(main())

Controllers commonly use a private certificate. Prefer an ssl.SSLContext that trusts the controller CA. Set verify_ssl=False only when certificate verification is intentionally disabled.

Some Aruba Instant firmware emits a malformed response header that aiohttp rejects when PYTHONASYNCIODEBUG enables strict response parsing. A client using its internally owned HTTP session scopes Aruba-compatible response parsing to that controller connection without disabling asyncio debug globally. This compatibility behavior is included in version 0.1.1 and later.

For a caller-owned HTTP session:

import aiohttp

from aioarubainstant import ArubaInstantClient

async with aiohttp.ClientSession() as session:
    client = ArubaInstantClient(
        "controller.example.com",
        "admin",
        "controller-password",
        session=session,
    )
    snapshot = await client.async_get_snapshot()
    await client.async_close()

async_close() logs out but never closes a caller-provided session. Caller-provided sessions also retain their own connector and response-parser behavior; they do not use the Aruba-specific compatibility connector.

Public contract

The package exports:

  • ArubaInstantClient
  • async_get_snapshot()
  • ArubaInstantSnapshot
  • ArubaCluster
  • ArubaAccessPoint
  • ArubaClient

See Package Usage for the complete model, exception, TLS, and integration contract.

Model fields are immutable. A field is None when the controller did not report it; the package does not invent placeholder values. A snapshot contains one ArubaCluster, tuples of access points and clients, and private sanitized raw output for diagnostics.

Client counts are never derived by counting parsed records. The cluster total comes from the controller-reported value in show summary, and each AP's count comes from the Clients field in show aps. Parsed show client debug rows provide client details only.

The exception hierarchy is rooted at ArubaInstantError:

  • ArubaInstantAuthenticationError: login credentials were rejected
  • ArubaInstantConnectionError: controller connection or HTTP failure
  • ArubaInstantTimeoutError: request timeout; also a connection error
  • ArubaInstantRestDisabledError: REST API is not enabled
  • ArubaInstantNotMasterError: REST request was sent to a non-master AP
  • ArubaInstantSessionError: invalid or expired SID after the allowed retry
  • ArubaInstantCommandError: controller rejected or failed a command
  • ArubaInstantParseError: malformed JSON or unsupported command output

Passwords and session IDs are never logged. Do not place controller, GitHub, PyPI, or Codex credentials in this repository.

Home Assistant

Use this exact manifest dependency for version 0.1.3:

"requirements": ["aioarubainstant==0.1.3"]

Home Assistant can rely on immutable snapshots, stable MAC-address client identity, AP/client association, master resolution, explicit zero-client collections, and the exception contract above. Version 0.1.3 allows Home Assistant environments pinned to aiohttp==3.13.5.

Development

Open the repository in VS Code and run Dev Containers: Rebuild and Reopen in Container. The container provides Python 3.14, uv, Ruff, mypy, pytest, build tools, PDF inspection utilities, and GitHub CLI.

The host ${HOME}/.codex directory is bind-mounted to /home/vscode/.codex. The uv cache is persisted separately in a named volume. No authentication data is copied into the image or repository.

Maintainers and coding agents should read Repository Guidance and Project Notes before changing command selection, parsing, count provenance, or release automation.

For the planned Home Assistant Core migration, use the reusable Home Assistant Codex goal prompt.

Run the complete local checks with:

uv sync --all-extras --dev
uv run ruff check src tests
uv run ruff format --check src tests
uv run mypy src tests
uv run pytest
uv build
uv run twine check dist/*

Real-controller smoke test

The real-controller test is a separate local developer tool. It is not run by CI or by the release workflow. Invoke it explicitly when an Aruba Instant AP is available:

uv run python scripts/check_real_ap.py controller.example.com admin

The script prompts for the controller password without placing it in shell history or process arguments. TLS certificate verification is enabled by default. Use --ca-file controller-ca.pem for a private controller CA, or --insecure only for an intentional local test. By default it validates each supported command independently, validates the combined snapshot, and prints a privacy-safe structural report without raw output, passwords, or session IDs.

To validate one command in isolation:

uv run python scripts/check_real_ap.py controller.example.com admin --insecure \
  --validate-command "show client debug"

Focused command validation prints that command's raw output before the validation result. The default all-command validation remains privacy-safe and does not print raw output.

To print only the controller's raw show summary output for manual inspection:

uv run python scripts/check_real_ap.py controller.example.com admin --insecure --show-summary

Use --show-command to inspect another supported command, for example:

uv run python scripts/check_real_ap.py controller.example.com admin --insecure \
  --show-command "show client debug"

Raw command output may contain controller names, network addresses, client MAC addresses, or other private data. Do not publish it without reviewing and redacting those values.

Release publishing

GitHub releases trigger .github/workflows/release.yml, which builds and validates the distributions before publishing through PyPI trusted publishing. The trusted publisher is configured for owner apaperclip, repository aioarubainstant, workflow release.yml, and environment pypi. No PyPI token is stored in GitHub or this repository.

Version 0.1.3 is available from PyPI and the GitHub release.

License

Apache License 2.0. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aioarubainstant-0.1.3.tar.gz (93.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aioarubainstant-0.1.3-py3-none-any.whl (20.3 kB view details)

Uploaded Python 3

File details

Details for the file aioarubainstant-0.1.3.tar.gz.

File metadata

  • Download URL: aioarubainstant-0.1.3.tar.gz
  • Upload date:
  • Size: 93.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aioarubainstant-0.1.3.tar.gz
Algorithm Hash digest
SHA256 f654e1dd1ff9cc4e2063cd4e6bee2be788806080ece4d9cd4202efb3cc22d7e6
MD5 bcbb00ee48e4d3f33f221800437caf1e
BLAKE2b-256 e3a4f53bb95ff65a284f56d82b6698c0d0b7b5d281b4115345bde1964bb317dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioarubainstant-0.1.3.tar.gz:

Publisher: release.yml on apaperclip/aioarubainstant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aioarubainstant-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: aioarubainstant-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aioarubainstant-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e856424a3e949b543bc15d93ffd0e2ebc996daa0e338375f0a4bb2a630a53455
MD5 0d26220b8ddd7d99890be468e3ccb53b
BLAKE2b-256 4ce54446d61b286dfb34eca21433a38c5f11e210502925265c07b91896454e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioarubainstant-0.1.3-py3-none-any.whl:

Publisher: release.yml on apaperclip/aioarubainstant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page