mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-26 05:32:45 +00:00
Make all doc fragments, module utils, and plugin utils private (#11896)
* Make all doc fragments private. * Make all plugin utils private. * Make all module utils private. * Reformat. * Changelog fragment. * Update configs and ignores. * Adjust unit test names.
This commit is contained in:
parent
9ef1dbb6d5
commit
4fa82b9617
807 changed files with 2041 additions and 1702 deletions
|
|
@ -79,7 +79,7 @@ _value:
|
|||
|
||||
from ansible.errors import AnsibleFilterError
|
||||
|
||||
from ansible_collections.community.general.plugins.module_utils.csv import (
|
||||
from ansible_collections.community.general.plugins.module_utils._csv import (
|
||||
CSVError,
|
||||
CustomDialectFailureError,
|
||||
DialectNotAvailableError,
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ _value:
|
|||
elements: dictionary
|
||||
"""
|
||||
|
||||
from ansible_collections.community.general.plugins.plugin_utils.keys_filter import (
|
||||
from ansible_collections.community.general.plugins.plugin_utils._keys_filter import (
|
||||
_keys_filter_params,
|
||||
_keys_filter_target_str,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -99,7 +99,7 @@ _value:
|
|||
elements: dictionary
|
||||
"""
|
||||
|
||||
from ansible_collections.community.general.plugins.plugin_utils.keys_filter import (
|
||||
from ansible_collections.community.general.plugins.plugin_utils._keys_filter import (
|
||||
_keys_filter_params,
|
||||
_keys_filter_target_str,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ _value:
|
|||
elements: dictionary
|
||||
"""
|
||||
|
||||
from ansible_collections.community.general.plugins.plugin_utils.keys_filter import (
|
||||
from ansible_collections.community.general.plugins.plugin_utils._keys_filter import (
|
||||
_keys_filter_params,
|
||||
_keys_filter_target_dict,
|
||||
)
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ _value:
|
|||
type: str
|
||||
"""
|
||||
|
||||
from ansible_collections.community.general.plugins.plugin_utils.ansible_type import _ansible_type
|
||||
from ansible_collections.community.general.plugins.plugin_utils._ansible_type import _ansible_type
|
||||
|
||||
|
||||
def reveal_ansible_type(data, alias=None):
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ _value:
|
|||
elements: string
|
||||
"""
|
||||
|
||||
from ansible_collections.community.general.plugins.module_utils.version import LooseVersion
|
||||
from ansible_collections.community.general.plugins.module_utils._version import LooseVersion
|
||||
|
||||
|
||||
def version_sort(value, reverse=False):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue