import * as pulumi from "@pulumi/pulumi";
import * as enums from "../types/enums";
/**
 * Fetches the managed proxy details
 *
 * Uses Azure REST API version 2024-12-01.
 *
 * Other available API versions: 2023-03-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridconnectivity [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare function listEndpointManagedProxyDetails(args: ListEndpointManagedProxyDetailsArgs, opts?: pulumi.InvokeOptions): Promise<ListEndpointManagedProxyDetailsResult>;
export interface ListEndpointManagedProxyDetailsArgs {
    /**
     * The endpoint name.
     */
    endpointName: string;
    /**
     * The target host name.
     */
    hostname?: string;
    /**
     * The fully qualified Azure Resource manager identifier of the resource.
     */
    resourceUri: string;
    /**
     * The name of the service.
     */
    service: string;
    /**
     * The name of the service. It is an optional property, if not provided, service configuration tokens issue code would be by passed.
     */
    serviceName?: string | enums.hybridconnectivity.ServiceName;
}
/**
 * Managed Proxy
 */
export interface ListEndpointManagedProxyDetailsResult {
    /**
     * The expiration time of short lived proxy name in unix epoch.
     */
    readonly expiresOn: number;
    /**
     * The short lived proxy name.
     */
    readonly proxy: string;
}
/**
 * Fetches the managed proxy details
 *
 * Uses Azure REST API version 2024-12-01.
 *
 * Other available API versions: 2023-03-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridconnectivity [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare function listEndpointManagedProxyDetailsOutput(args: ListEndpointManagedProxyDetailsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListEndpointManagedProxyDetailsResult>;
export interface ListEndpointManagedProxyDetailsOutputArgs {
    /**
     * The endpoint name.
     */
    endpointName: pulumi.Input<string>;
    /**
     * The target host name.
     */
    hostname?: pulumi.Input<string>;
    /**
     * The fully qualified Azure Resource manager identifier of the resource.
     */
    resourceUri: pulumi.Input<string>;
    /**
     * The name of the service.
     */
    service: pulumi.Input<string>;
    /**
     * The name of the service. It is an optional property, if not provided, service configuration tokens issue code would be by passed.
     */
    serviceName?: pulumi.Input<string | enums.hybridconnectivity.ServiceName>;
}
