-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added modules to retrieve policy group and security policy objects
- plugins/modules/nsxt_policy_group_info.py - plugins/modules/nsxt_policy_group_member_info.py - plugins/modules/nsxt_policy_group_member_types.py - plugins/modules/nsxt_policy_security_policy_facts.py - plugins/modules/nsxt_policy_security_policy_rule_stats.py - plugins/modules/nsxt_policy_security_policy_rules_facts.py plugins/modules/common_utils.py modified. Functions used for building query strings in URIs and for handling retrieval of paged data were added. The collection as it is now does not implement modules for the retrieval of objects and focuses on CrUD ( no read ) functionality. I want to work to flesh out the "R" functionality. Signed-off-by: Ed McGuigan <ed.mcguigan@palmbeachschools.org>
- Loading branch information
1 parent
6e3fde4
commit b88099a
Showing
5 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -174,4 +174,4 @@ def main(): | |
|
||
module.exit_json(changed=changed, **resp) | ||
if __name__ == '__main__': | ||
main() | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -175,4 +175,4 @@ def main(): | |
|
||
module.exit_json(changed=changed, **resp) | ||
if __name__ == '__main__': | ||
main() | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,4 +121,4 @@ def main(): | |
module.exit_json(changed=changed, **resp) | ||
|
||
if __name__ == '__main__': | ||
main() | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,4 +178,4 @@ def main(): | |
|
||
module.exit_json(changed=changed, **resp) | ||
if __name__ == '__main__': | ||
main() | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters