import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSystemVdomException(args: GetSystemVdomExceptionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemVdomException. */ export interface GetSystemVdomExceptionArgs { fosid: number; vdomparam?: string; } /** * A collection of values returned by GetSystemVdomException. */ export interface GetSystemVdomExceptionResult { readonly fosid: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly object: string; readonly oid: number; readonly scope: string; readonly vdomparam?: string; readonly vdoms: outputs.GetSystemVdomExceptionVdom[]; } export declare function getSystemVdomExceptionOutput(args: GetSystemVdomExceptionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemVdomException. */ export interface GetSystemVdomExceptionOutputArgs { fosid: pulumi.Input; vdomparam?: pulumi.Input; }