import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class SystemAccprofile extends pulumi.CustomResource { /** * Get an existing SystemAccprofile resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SystemAccprofileState, opts?: pulumi.CustomResourceOptions): SystemAccprofile; /** * Returns true if the given object is an instance of SystemAccprofile. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is SystemAccprofile; readonly admintimeout: pulumi.Output; readonly admintimeoutOverride: pulumi.Output; readonly authgrp: pulumi.Output; readonly comments: pulumi.Output; readonly ftviewgrp: pulumi.Output; readonly fwgrp: pulumi.Output; readonly fwgrpPermission: pulumi.Output; readonly getAllTables: pulumi.Output; readonly loggrp: pulumi.Output; readonly loggrpPermission: pulumi.Output; readonly name: pulumi.Output; readonly netgrp: pulumi.Output; readonly netgrpPermission: pulumi.Output; readonly scope: pulumi.Output; readonly secfabgrp: pulumi.Output; readonly sysgrp: pulumi.Output; readonly sysgrpPermission: pulumi.Output; readonly systemDiagnostics: pulumi.Output; readonly systemExecuteSsh: pulumi.Output; readonly systemExecuteTelnet: pulumi.Output; readonly utmgrp: pulumi.Output; readonly utmgrpPermission: pulumi.Output; readonly vdomparam: pulumi.Output; readonly vpngrp: pulumi.Output; readonly wanoptgrp: pulumi.Output; readonly wifi: pulumi.Output; /** * Create a SystemAccprofile resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: SystemAccprofileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SystemAccprofile resources. */ export interface SystemAccprofileState { admintimeout?: pulumi.Input; admintimeoutOverride?: pulumi.Input; authgrp?: pulumi.Input; comments?: pulumi.Input; ftviewgrp?: pulumi.Input; fwgrp?: pulumi.Input; fwgrpPermission?: pulumi.Input; getAllTables?: pulumi.Input; loggrp?: pulumi.Input; loggrpPermission?: pulumi.Input; name?: pulumi.Input; netgrp?: pulumi.Input; netgrpPermission?: pulumi.Input; scope?: pulumi.Input; secfabgrp?: pulumi.Input; sysgrp?: pulumi.Input; sysgrpPermission?: pulumi.Input; systemDiagnostics?: pulumi.Input; systemExecuteSsh?: pulumi.Input; systemExecuteTelnet?: pulumi.Input; utmgrp?: pulumi.Input; utmgrpPermission?: pulumi.Input; vdomparam?: pulumi.Input; vpngrp?: pulumi.Input; wanoptgrp?: pulumi.Input; wifi?: pulumi.Input; } /** * The set of arguments for constructing a SystemAccprofile resource. */ export interface SystemAccprofileArgs { admintimeout?: pulumi.Input; admintimeoutOverride?: pulumi.Input; authgrp?: pulumi.Input; comments?: pulumi.Input; ftviewgrp?: pulumi.Input; fwgrp?: pulumi.Input; fwgrpPermission?: pulumi.Input; getAllTables?: pulumi.Input; loggrp?: pulumi.Input; loggrpPermission?: pulumi.Input; name?: pulumi.Input; netgrp?: pulumi.Input; netgrpPermission?: pulumi.Input; scope?: pulumi.Input; secfabgrp?: pulumi.Input; sysgrp?: pulumi.Input; sysgrpPermission?: pulumi.Input; systemDiagnostics?: pulumi.Input; systemExecuteSsh?: pulumi.Input; systemExecuteTelnet?: pulumi.Input; utmgrp?: pulumi.Input; utmgrpPermission?: pulumi.Input; vdomparam?: pulumi.Input; vpngrp?: pulumi.Input; wanoptgrp?: pulumi.Input; wifi?: pulumi.Input; }