import * as pulumi from "@pulumi/pulumi"; export declare function getSystemExternalResource(args: GetSystemExternalResourceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemExternalResource. */ export interface GetSystemExternalResourceArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetSystemExternalResource. */ export interface GetSystemExternalResourceResult { readonly category: number; readonly comments: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly interface: string; readonly interfaceSelectMethod: string; readonly name: string; readonly password: string; readonly refreshRate: number; readonly resource: string; readonly serverIdentityCheck: string; readonly sourceIp: string; readonly status: string; readonly type: string; readonly updateMethod: string; readonly userAgent: string; readonly username: string; readonly uuid: string; readonly vdomparam?: string; } export declare function getSystemExternalResourceOutput(args: GetSystemExternalResourceOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemExternalResource. */ export interface GetSystemExternalResourceOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }