import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSystemApiUser(args: GetSystemApiUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemApiUser. */ export interface GetSystemApiUserArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetSystemApiUser. */ export interface GetSystemApiUserResult { readonly accprofile: string; readonly apiKey: string; readonly comments: string; readonly corsAllowOrigin: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly peerAuth: string; readonly peerGroup: string; readonly schedule: string; readonly trusthosts: outputs.GetSystemApiUserTrusthost[]; readonly vdomparam?: string; readonly vdoms: outputs.GetSystemApiUserVdom[]; } export declare function getSystemApiUserOutput(args: GetSystemApiUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemApiUser. */ export interface GetSystemApiUserOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }