/** * 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 { ApplicationConfig } from './applicationConfig'; import { FileShareService } from './fileShareService'; import { DatabaseResource } from './databaseResource'; import { SSHResource } from './sSHResource'; import { DesktopResource } from './desktopResource'; import { ApplicationService } from './applicationService'; export interface _AgentConnectorConnectionInfo { /** * The URI used to establish a connection to the connector. */ connection_uri?: string; /** * The location (e.g. fully qualified domain name) of the connection. While this matches the location in the `connection_uri`, it is provided separately for convenience. */ connection_location?: string; /** * The path of the connection. While this matches the path in the `connection_uri`, it is provided separately for convenience. */ connection_path?: string; /** * The identifier for the organisation hosting the server side of this connection. */ connection_org_id?: string; /** * The name of the Application (if any) hosting the server side of this connection. Note that not all servers will be hosted by an Application, in which case this will be empty. */ connection_app_name?: string; /** * Indicates that the connection is exposing an authentication service */ is_an_auth_service?: boolean; /** * Controls if the connection is end to end TLS. */ end_to_end_tls?: boolean; /** * The maximum number of connections to maintain to the cluster when stable. Note that this value may be exceeded during times of reconfiguration. A value of zero means that the connection is effectively unused by this Secure Agent. */ max_number_connections?: number; /** * The maximum number of connections to maintain to the cluster on a per-router basis when using dynamic routes. Note that this value may be exceeded during times of reconfiguration. A value of zero means that the connection is effectively unused by this Secure Agent. */ max_number_dynamic_route_connections?: number; /** * The list of ip services associated with this connection */ ip_services?: Array; /** * The list of fileshare services associated with this connection */ file_share_services?: Array; /** * The list of (vnc) Desktop services */ desktop_services?: Array; /** * The list of ssh services associated with this connection */ ssh_services?: Array; /** * The list of databases associated with this connection */ database_services?: Array; application_config?: ApplicationConfig; /** * A list of scopes to be requested on behalf of the user of the application and as well as configured based on the application launchers that launch this application/environment. This field is only populated on a GET request when the query parameter get_scopes=True is passed. */ readonly application_scopes?: Array; /** * Unique identifier */ connection_app_id?: string; /** * The name of the Environment utilized for this application instance. */ connection_env_name?: string; /** * Whether or not dynamic routes are enabled for this tunnel. Dynamic routes control whether routes can be added and removed from a tunnel without restarting it. */ dynamic_routes?: boolean; } export interface AgentConnectorConnectionInfo extends _AgentConnectorConnectionInfo { _builtin_original?: _AgentConnectorConnectionInfo; _remove_builtin_extensions?: () => void; } export declare class AgentConnectorConnectionInfoImpl implements _AgentConnectorConnectionInfo { _builtin_original?: _AgentConnectorConnectionInfo; connection_uri: string | undefined; connection_location: string | undefined; connection_path: string | undefined; connection_org_id: string | undefined; connection_app_name: string | undefined; is_an_auth_service: boolean | undefined; end_to_end_tls: boolean | undefined; max_number_connections: number | undefined; max_number_dynamic_route_connections: number | undefined; ip_services: Array | undefined; file_share_services: Array | undefined; desktop_services: Array | undefined; ssh_services: Array | undefined; database_services: Array | undefined; application_config: ApplicationConfig | undefined; readonly application_scopes: Array | undefined; connection_app_id: string | undefined; connection_env_name: string | undefined; dynamic_routes: boolean | undefined; constructor(base: _AgentConnectorConnectionInfo); _remove_builtin_extensions(): void; } export declare function newAgentConnectorConnectionInfoImpl(base: _AgentConnectorConnectionInfo): AgentConnectorConnectionInfoImpl;