UNPKG

@pulumi/f5bigip

Version:

A Pulumi package for creating and managing F5 BigIP resources.

88 lines (87 loc) 3.24 kB
import * as pulumi from "@pulumi/pulumi"; /** * `f5bigip.sys.Snmp` provides details bout how to enable "ilx", "asm" "apm" resource on BIG-IP * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as f5bigip from "@pulumi/f5bigip"; * * const snmp = new f5bigip.sys.Snmp("snmp", { * sysContact: " NetOPsAdmin s.shitole@f5.com", * sysLocation: "SeattleHQ", * allowedaddresses: ["202.10.10.2"], * }); * ``` */ export declare class Snmp extends pulumi.CustomResource { /** * Get an existing Snmp 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<pulumi.ID>, state?: SnmpState, opts?: pulumi.CustomResourceOptions): Snmp; /** * Returns true if the given object is an instance of Snmp. 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 Snmp; /** * Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow. */ readonly allowedaddresses: pulumi.Output<string[] | undefined>; /** * Specifies the contact information for the system administrator. */ readonly sysContact: pulumi.Output<string | undefined>; /** * Describes the system's physical location. */ readonly sysLocation: pulumi.Output<string | undefined>; /** * Create a Snmp 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?: SnmpArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Snmp resources. */ export interface SnmpState { /** * Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow. */ allowedaddresses?: pulumi.Input<pulumi.Input<string>[]>; /** * Specifies the contact information for the system administrator. */ sysContact?: pulumi.Input<string>; /** * Describes the system's physical location. */ sysLocation?: pulumi.Input<string>; } /** * The set of arguments for constructing a Snmp resource. */ export interface SnmpArgs { /** * Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow. */ allowedaddresses?: pulumi.Input<pulumi.Input<string>[]>; /** * Specifies the contact information for the system administrator. */ sysContact?: pulumi.Input<string>; /** * Describes the system's physical location. */ sysLocation?: pulumi.Input<string>; }