Show / Hide Table of Contents

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",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
Snmp
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.F5BigIP.Sys
Assembly: Pulumi.F5BigIP.dll
Syntax
public class Snmp : CustomResource

Constructors

View Source

Snmp(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 Source

Allowedaddresses

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>>
View Source

SysContact

Specifies the contact information for the system administrator.

Declaration
public Output<string> SysContact { get; }
Property Value
Type Description
Output<System.String>
View Source

SysLocation

Describes the system's physical location.

Declaration
public Output<string> SysLocation { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.