import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the SNMP Server Group configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getSnmpServerGroup({ * name: "GROUP1", * }); * ``` */ export declare function getSnmpServerGroup(args: GetSnmpServerGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSnmpServerGroup. */ export interface GetSnmpServerGroupArgs { /** * A device name from the provider configuration. */ device?: string; name: string; } /** * A collection of values returned by getSnmpServerGroup. */ export interface GetSnmpServerGroupResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; readonly name: string; /** * group using security Level */ readonly v3Securities: outputs.GetSnmpServerGroupV3Security[]; } /** * This data source can read the SNMP Server Group configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getSnmpServerGroup({ * name: "GROUP1", * }); * ``` */ export declare function getSnmpServerGroupOutput(args: GetSnmpServerGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getSnmpServerGroup. */ export interface GetSnmpServerGroupOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; }