Class Snmp
f5bigip.sys.Snmp provides details bout how to enable "ilx", "asm" "apm" resource on BIG-IP
Example Usage
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
class MyStack : Stack
{
public MyStack()
{
var snmp = new F5BigIP.Sys.Snmp("snmp", new F5BigIP.Sys.SnmpArgs
{
Allowedaddresses =
{
"202.10.10.2",
},
SysContact = " NetOPsAdmin s.shitole@f5.com",
SysLocation = "SeattleHQ",
});
}
}
Inherited Members
Namespace: Pulumi.F5BigIP.Sys
Assembly: Pulumi.F5BigIP.dll
Syntax
public class Snmp : CustomResource
Constructors
View SourceSnmp(String, SnmpArgs, CustomResourceOptions)
Create a Snmp resource with the given unique name, arguments, and options.
Declaration
public Snmp(string name, SnmpArgs args = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| SnmpArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceAllowedaddresses
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
Declaration
public Output<ImmutableArray<string>> Allowedaddresses { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableArray<System.String>> |
SysContact
Specifies the contact information for the system administrator.
Declaration
public Output<string> SysContact { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
SysLocation
Describes the system's physical location.
Declaration
public Output<string> SysLocation { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(String, Input<String>, SnmpState, CustomResourceOptions)
Get an existing Snmp resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static Snmp Get(string name, Input<string> id, SnmpState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| SnmpState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| Snmp |