mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Adds bigip_snmp_community module (#39212)
This module can be used to manage snmp communities on a bigip
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"kind": "tm:sys:smtp-server:smtp-serverstate",
|
||||
"name": "foo",
|
||||
"partition": "Common",
|
||||
"fullPath": "/Common/foo",
|
||||
"generation": 54,
|
||||
"selfLink": "https://localhost/mgmt/tm/sys/smtp-server/~Common~foo?ver=13.0.0",
|
||||
"authenticationEnabled": true,
|
||||
"encryptedConnection": "ssl",
|
||||
"fromAddress": "no-reply@foo.bar",
|
||||
"localHostName": "mail-host.foo.bar",
|
||||
"passwordEncrypted": "$M$Ch$this-is-encrypted==",
|
||||
"smtpServerHostName": "mail.foo.bar",
|
||||
"smtpServerPort": 465,
|
||||
"username": "admin"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"kind": "tm:sys:snmp:communities:communitiesstate",
|
||||
"name": "/Common/foo",
|
||||
"fullPath": "/Common/foo",
|
||||
"generation": 0,
|
||||
"selfLink": "https://localhost/mgmt/tm/sys/snmp/communities/~Common~foo?ver=13.0.0",
|
||||
"access": "ro",
|
||||
"communityName": "foo",
|
||||
"ipv6": "disabled"
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"kind": "tm:sys:snmp:communities:communitiesstate",
|
||||
"name": "/Common/foo",
|
||||
"fullPath": "/Common/foo",
|
||||
"generation": 0,
|
||||
"selfLink": "https://localhost/mgmt/tm/sys/snmp/communities/~Common~foo?ver=13.0.0",
|
||||
"access": "rw",
|
||||
"communityName": "foo",
|
||||
"ipv6": "disabled",
|
||||
"oidSubset": ".1",
|
||||
"source": "1.1.1.1"
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"kind": "tm:sys:snmp:communities:communitiesstate",
|
||||
"name": "/Common/foo",
|
||||
"fullPath": "/Common/foo",
|
||||
"generation": 0,
|
||||
"selfLink": "https://localhost/mgmt/tm/sys/snmp/communities/~Common~foo?ver=13.0.0",
|
||||
"access": "ro",
|
||||
"communityName": "foo",
|
||||
"ipv6": "enabled",
|
||||
"oidSubset": ".1",
|
||||
"source": "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"kind": "tm:sys:snmp:communities:communitiesstate",
|
||||
"name": "/Common/foo",
|
||||
"fullPath": "/Common/foo",
|
||||
"generation": 0,
|
||||
"selfLink": "https://localhost/mgmt/tm/sys/snmp/communities/~Common~foo?ver=13.0.0",
|
||||
"access": "ro",
|
||||
"communityName": "foo",
|
||||
"ipv6": "enabled"
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"kind": "tm:sys:snmp:users:usersstate",
|
||||
"name": "/Common/foo",
|
||||
"fullPath": "/Common/foo",
|
||||
"generation": 0,
|
||||
"selfLink": "https://localhost/mgmt/tm/sys/snmp/users/~Common~foo?ver=13.0.0",
|
||||
"access": "ro",
|
||||
"authPasswordEncrypted": "secret",
|
||||
"authProtocol": "sha",
|
||||
"oidSubset": ".1",
|
||||
"privacyPasswordEncrypted": "secret",
|
||||
"privacyProtocol": "aes",
|
||||
"securityLevel": "auth-privacy",
|
||||
"username": "foo"
|
||||
}
|
||||
Reference in New Issue
Block a user