/** * Agilicus API * Agilicus is API-first. Modern software is controlled by other software, is open, is available for you to use the way you want, securely, simply. The OpenAPI Specification in YAML format is available on [www](https://www.agilicus.com/www/api/agilicus-openapi.yaml) for importing to other tools. A rendered, online viewable and usable version of this specification is available at [api](https://www.agilicus.com/api). You may try the API inline directly in the web page. To do so, first obtain an Authentication Token (the simplest way is to install the Python SDK, and then run `agilicus-cli --issuer https://MYISSUER get-token`). You will need an org-id for most calls (and can obtain from `agilicus-cli --issuer https://MYISSUER list-orgs`). The `MYISSUER` will typically be `auth.MYDOMAIN`, and you will see it as you sign-in to the administrative UI. This API releases on Bearer-Token authentication. To obtain a valid bearer token you will need to Authenticate to an Issuer with OpenID Connect (a superset of OAUTH2). Your \"issuer\" will look like https://auth.MYDOMAIN. For example, when you signed-up, if you said \"use my own domain name\" and assigned a CNAME of cloud.example.com, then your issuer would be https://auth.cloud.example.com. If you selected \"use an Agilicus supplied domain name\", your issuer would look like https://auth.myorg.agilicus.cloud. For test purposes you can use our [Python SDK](https://pypi.org/project/agilicus/) and run `agilicus-cli --issuer https://auth.MYDOMAIN get-token`. This API may be used in any language runtime that supports OpenAPI 3.0, or, you may use our [Python SDK](https://pypi.org/project/agilicus/), our [Typescript SDK](https://www.npmjs.com/package/@agilicus/angular), or our [Golang SDK](https://git.agilicus.com/pub/sdk-go). 100% of the activities in our system our API-driven, from our web-admin, through our progressive web applications, to all internals: there is nothing that is not accessible. For more information, see [developer resources](https://www.agilicus.com/developer). * * The version of the OpenAPI document: 2025.12.16 * Contact: dev@agilicus.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AgentConnectorLocalBindError } from './agentConnectorLocalBindError'; export interface _AgentConnectorLocalBindStats { /** * The status of the bind. The possible values mean: - `good`: the agent is listening on the the `running_address` for connections. - `warn`: the agent is listening on the `running_address` for connections but something is not quite right. Check `recent_errors` for a hint. - `down`: the agent is not listening to an address corresponding to `bind_address`. Check `recent_errors` for the cause. */ bind_status: AgentConnectorLocalBindStats.BindStatusEnum; /** * The address and port on which the agent is listening for connections. This takes the form of `ip:port`. Note that this may not correspond to a concrete address if the bind address was not set. */ running_address: string | null; /** * The address and port configured for this bind. Use this to find the item corresponding to a given AgentConnectorLocalBind. */ bind_address: string; /** * The most recently encountered errors when binding to `bind_address`. Note that this list not being empty does not imply that the agent successfully bound: errors prior to the successful bind will still be present in the list. Use the `bind_status` instead. */ recent_errors: Array; } export interface AgentConnectorLocalBindStats extends _AgentConnectorLocalBindStats { _builtin_original?: _AgentConnectorLocalBindStats; _remove_builtin_extensions?: () => void; } export declare class AgentConnectorLocalBindStatsImpl implements _AgentConnectorLocalBindStats { _builtin_original?: _AgentConnectorLocalBindStats; bind_status: AgentConnectorLocalBindStats.BindStatusEnum; running_address: string | null; bind_address: string; recent_errors: Array; constructor(base: _AgentConnectorLocalBindStats); _remove_builtin_extensions(): void; } export declare namespace AgentConnectorLocalBindStats { type BindStatusEnum = 'good' | 'warn' | 'down'; const BindStatusEnum: { good: BindStatusEnum; warn: BindStatusEnum; down: BindStatusEnum; }; } export declare function newAgentConnectorLocalBindStatsImpl(base: _AgentConnectorLocalBindStats): AgentConnectorLocalBindStatsImpl;