import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSystemAccprofile(args: GetSystemAccprofileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemAccprofile. */ export interface GetSystemAccprofileArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetSystemAccprofile. */ export interface GetSystemAccprofileResult { readonly admintimeout: number; readonly admintimeoutOverride: string; readonly authgrp: string; readonly comments: string; readonly ftviewgrp: string; readonly fwgrp: string; readonly fwgrpPermissions: outputs.GetSystemAccprofileFwgrpPermission[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly loggrp: string; readonly loggrpPermissions: outputs.GetSystemAccprofileLoggrpPermission[]; readonly name: string; readonly netgrp: string; readonly netgrpPermissions: outputs.GetSystemAccprofileNetgrpPermission[]; readonly scope: string; readonly secfabgrp: string; readonly sysgrp: string; readonly sysgrpPermissions: outputs.GetSystemAccprofileSysgrpPermission[]; readonly systemDiagnostics: string; readonly systemExecuteSsh: string; readonly systemExecuteTelnet: string; readonly utmgrp: string; readonly utmgrpPermissions: outputs.GetSystemAccprofileUtmgrpPermission[]; readonly vdomparam?: string; readonly vpngrp: string; readonly wanoptgrp: string; readonly wifi: string; } export declare function getSystemAccprofileOutput(args: GetSystemAccprofileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemAccprofile. */ export interface GetSystemAccprofileOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }