import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSystemSnmpCommunity(args: GetSystemSnmpCommunityArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemSnmpCommunity. */ export interface GetSystemSnmpCommunityArgs { fosid: number; vdomparam?: string; } /** * A collection of values returned by GetSystemSnmpCommunity. */ export interface GetSystemSnmpCommunityResult { readonly events: string; readonly fosid: number; readonly hosts: outputs.GetSystemSnmpCommunityHost[]; readonly hosts6s: outputs.GetSystemSnmpCommunityHosts6[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly mibView: string; readonly name: string; readonly queryV1Port: number; readonly queryV1Status: string; readonly queryV2cPort: number; readonly queryV2cStatus: string; readonly status: string; readonly trapV1Lport: number; readonly trapV1Rport: number; readonly trapV1Status: string; readonly trapV2cLport: number; readonly trapV2cRport: number; readonly trapV2cStatus: string; readonly vdomparam?: string; readonly vdoms: outputs.GetSystemSnmpCommunityVdom[]; } export declare function getSystemSnmpCommunityOutput(args: GetSystemSnmpCommunityOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemSnmpCommunity. */ export interface GetSystemSnmpCommunityOutputArgs { fosid: pulumi.Input; vdomparam?: pulumi.Input; }