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",
});
}
}
Coming soon!
import pulumi
import pulumi_f5bigip as f5bigip
snmp = f5bigip.sys.Snmp("snmp",
allowedaddresses=["202.10.10.2"],
sys_contact=" NetOPsAdmin s.shitole@f5.com",
sys_location="SeattleHQ")import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
const snmp = new f5bigip.sys.Snmp("snmp", {
allowedaddresses: ["202.10.10.2"],
sysContact: " NetOPsAdmin s.shitole@f5.com",
sysLocation: "SeattleHQ",
});Create a Snmp Resource
new Snmp(name: string, args?: SnmpArgs, opts?: CustomResourceOptions);def Snmp(resource_name, opts=None, allowedaddresses=None, sys_contact=None, sys_location=None, __props__=None);public Snmp(string name, SnmpArgs? args = null, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args SnmpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SnmpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SnmpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Snmp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Snmp resource accepts the following input properties:
- Allowedaddresses List<string>
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
- Sys
Contact string Specifies the contact information for the system administrator.
- Sys
Location string Describes the system’s physical location.
- Allowedaddresses []string
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
- Sys
Contact string Specifies the contact information for the system administrator.
- Sys
Location string Describes the system’s physical location.
- allowedaddresses string[]
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
- sys
Contact string Specifies the contact information for the system administrator.
- sys
Location string Describes the system’s physical location.
- allowedaddresses List[str]
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
- sys_
contact str Specifies the contact information for the system administrator.
- sys_
location str Describes the system’s physical location.
Outputs
All input properties are implicitly available as output properties. Additionally, the Snmp resource produces the following output properties:
Look up an Existing Snmp Resource
Get an existing Snmp resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SnmpState, opts?: CustomResourceOptions): Snmpstatic get(resource_name, id, opts=None, allowedaddresses=None, sys_contact=None, sys_location=None, __props__=None);public static Snmp Get(string name, Input<string> id, SnmpState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
- Allowedaddresses List<string>
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
- Sys
Contact string Specifies the contact information for the system administrator.
- Sys
Location string Describes the system’s physical location.
- Allowedaddresses []string
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
- Sys
Contact string Specifies the contact information for the system administrator.
- Sys
Location string Describes the system’s physical location.
- allowedaddresses string[]
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
- sys
Contact string Specifies the contact information for the system administrator.
- sys
Location string Describes the system’s physical location.
- allowedaddresses List[str]
Configures hosts or networks from which snmpd can accept traffic. Entries go directly into hosts.allow.
- sys_
contact str Specifies the contact information for the system administrator.
- sys_
location str Describes the system’s physical location.
Package Details
- Repository
- https://github.com/pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigipTerraform Provider.