Adding vserver/SVM NFS info to na_ontap_gather_facts (#58826)
This commit is contained in:
parent
7a0a21ea7a
commit
7cbd06f3a3
1 changed files with 12 additions and 1 deletions
|
@ -37,7 +37,7 @@ options:
|
|||
"nvme_namespace_info", "nvme_subsystem_info", "ontap_version",
|
||||
"qos_adaptive_policy_info", "qos_policy_info", "security_key_manager_key_info",
|
||||
"security_login_account_info", "storage_failover_info", "volume_info",
|
||||
"vserver_info", "vserver_login_banner_info", "vserver_motd_info"
|
||||
"vserver_info", "vserver_login_banner_info", "vserver_motd_info", "vserver_nfs_info"
|
||||
Can specify a list of values to include a larger subset. Values can also be used
|
||||
with an initial C(M(!)) to specify that a specific subset should
|
||||
not be collected.
|
||||
|
@ -103,6 +103,7 @@ ontap_facts:
|
|||
"vserver_login_banner_info": {...},
|
||||
"vserver_motd_info": {...},
|
||||
"vserver_info": {...},
|
||||
"vserver_nfs_info": {...},
|
||||
"ontap_version": {...},
|
||||
"igroup_info": {...},
|
||||
"qos_policy_info": {...},
|
||||
|
@ -262,6 +263,16 @@ class NetAppONTAPGatherFacts(object):
|
|||
},
|
||||
'min_version': '0',
|
||||
},
|
||||
'vserver_nfs_info': {
|
||||
'method': self.get_generic_get_iter,
|
||||
'kwargs': {
|
||||
'call': 'nfs-service-get-iter',
|
||||
'attribute': 'nfs-info',
|
||||
'field': 'vserver',
|
||||
'query': {'max-records': '1024'},
|
||||
},
|
||||
'min_version': '0',
|
||||
},
|
||||
'net_ifgrp_info': {
|
||||
'method': self.get_ifgrp_info,
|
||||
'kwargs': {},
|
||||
|
|
Loading…
Reference in a new issue