Dieser Commit ist enthalten in:
Sebastian Tobie 2025-03-16 11:57:09 +01:00
Ursprung 59400d158f
Commit 74ded41d30
8 geänderte Dateien mit 89 neuen und 43 gelöschten Zeilen

Datei anzeigen

@ -4,6 +4,16 @@ Sebastian.Base Release Notes
.. contents:: Topics .. contents:: Topics
v0.4.4
======
Minor Changes
-------------
- removed the empty options dict
v0.4.3
======
v0.4.2 v0.4.2
====== ======
@ -31,7 +41,6 @@ Release Summary
to prevent empty sections, the install and header methods return None if the method would just the scetion to prevent empty sections, the install and header methods return None if the method would just the scetion
header header
v0.3.1 v0.3.1
====== ======

Datei anzeigen

@ -4,44 +4,56 @@ releases:
changes: changes:
release_summary: change the module to an ansible module release_summary: change the module to an ansible module
fragments: fragments:
- base_release.yml - base_release.yml
release_date: '2024-02-11' release_date: "2024-02-11"
0.3.0: 0.3.0:
changes: changes:
release_summary: rewrote the Types helper release_summary: rewrote the Types helper
fragments: fragments:
- types.yml - types.yml
release_date: '2024-02-24' release_date: "2024-02-24"
0.3.1: 0.3.1:
changes: changes:
release_summary: removed forgotten print calls release_summary: removed forgotten print calls
fragments: fragments:
- print_calls.yml - print_calls.yml
release_date: '2024-02-24' release_date: "2024-02-24"
0.4.0: 0.4.0:
changes: changes:
release_summary: 'to prevent empty sections, the install and header methods release_summary: "to prevent empty sections, the install and header methods return None if the method would just
return None if the method would just the scetion the scetion
header header
' "
fragments: fragments:
- sectioning.yml - sectioning.yml
release_date: '2024-03-08' release_date: "2024-03-08"
0.4.1: 0.4.1:
changes: changes:
minor_changes: minor_changes:
- added an default Display to the module - added an default Display to the module
- fixed the docification of dictionaries - fixed the docification of dictionaries
fragments: fragments:
- display.yml - display.yml
- options_fix.yml - options_fix.yml
release_date: '2024-03-13' release_date: "2024-03-13"
0.4.2: 0.4.2:
changes: changes:
minor_changes: minor_changes:
- removed the empty options dict - removed the empty options dict
fragments: fragments:
- empty_options.yml - empty_options.yml
release_date: '2024-03-13' release_date: "2024-03-13"
0.4.3:
changes:
fragments:
- 0.4.3.yml
release_date: "2024-03-13"
0.4.4:
changes:
minor_changes:
- removed the empty options dict
fragments:
- 0.4.4.yml
release_date: "2025-03-16"

Datei anzeigen

@ -0,0 +1,3 @@
---
major_changes:
- the modules can now accept lists for help.

Datei anzeigen

@ -1,6 +1,6 @@
namespace: sebastian namespace: sebastian
name: base name: base
version: 0.4.3 version: 0.4.4
readme: README.md readme: README.md
authors: authors:
- Sebastian Tobie - Sebastian Tobie

Datei anzeigen

@ -1,6 +1,7 @@
import builtins
import pathlib import pathlib
import warnings import warnings
from typing import Any, Callable, Dict, Optional, Sequence, Tuple, Type, Union from typing import Any, Dict, Optional, Sequence, Tuple, Type, Union
__all__ = ( __all__ = (
"Types", "Types",
@ -46,7 +47,7 @@ GENERIC_DOC = """Returns an dictionary for the Ansible {type} type."""
def default(name: str): def default(name: str):
def wrapped( def wrapped(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
) -> AnsibleParameter: ) -> AnsibleParameter:
@ -55,8 +56,10 @@ def default(name: str):
option["choices"] = choices option["choices"] = choices
if default is not None: if default is not None:
option["default"] = default option["default"] = default
if help is not None: if help is not None and isinstance(help, str):
option["description"] = help.split("\n") option["description"] = help.split("\n")
elif help is not None:
option["description"] = help
return option return option
return wrapped return wrapped
@ -94,7 +97,8 @@ class Types(metaclass=meta):
def list( # type: ignore[misc] def list( # type: ignore[misc]
elements: Union[Type[object], str, AnsibleParameter], elements: Union[Type[object], str, AnsibleParameter],
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
default: list[Any] | None = None,
) -> AnsibleParameter: ) -> AnsibleParameter:
"""Wrapper for the Ansible list type """Wrapper for the Ansible list type
@ -102,7 +106,10 @@ class Types(metaclass=meta):
elements: The type of the elements elements: The type of the elements
required: if the item is absolutly required required: if the item is absolutly required
help: an helptext for the ansible-doc help: an helptext for the ansible-doc
default: an default value. The Value is not converted.
""" """
if required and default:
raise ValueError("required and default are not allowed")
option: AnsibleParameter = dict(type="list", required=required) option: AnsibleParameter = dict(type="list", required=required)
if not isinstance(elements, (str, dict)): if not isinstance(elements, (str, dict)):
option["elements"] = elements.__name__ option["elements"] = elements.__name__
@ -117,12 +124,19 @@ class Types(metaclass=meta):
f"helptext of option {name} is unset." f"helptext of option {name} is unset."
" Ansible requires suboptions to have an documentation" " Ansible requires suboptions to have an documentation"
) )
if help is not None: elif elements["type"] == "list":
if "choices" in elements:
option["choices"] = elements["choices"]
if default is not None:
option["default"] = default
if help is not None and isinstance(help, str):
option["description"] = help.split("\n") option["description"] = help.split("\n")
elif help is not None:
option["description"] = help
return option return option
@staticmethod @staticmethod
def dict(required: bool = False, help: Optional[str] = None, **options: AnsibleParameter) -> AnsibleParameter: # type: ignore[misc] def dict(required: bool = False, help: str | builtins.list[str] | None = None, **options: AnsibleParameter) -> AnsibleParameter: # type: ignore[misc]
"""Wrapper for the Ansible dict type """Wrapper for the Ansible dict type
Args: Args:
@ -132,8 +146,10 @@ class Types(metaclass=meta):
""" """
option: AnsibleParameter = dict(type="dict", required=required) option: AnsibleParameter = dict(type="dict", required=required)
option["options"] = options option["options"] = options
if help is not None: if help is not None and isinstance(help, str):
option["description"] = help.split("\n") option["description"] = help.split("\n")
elif help is not None:
option["description"] = help
return option return option

Datei anzeigen

@ -1,5 +1,5 @@
from typing import Any, Optional, Sequence, Dict, Tuple, Union
from pathlib import PosixPath from pathlib import PosixPath
from typing import Any, Dict, Optional, Sequence, Tuple, Union
__all__ = [ __all__ = [
'Types', 'Types',
@ -22,79 +22,84 @@ class Types(metaclass=meta):
@staticmethod @staticmethod
def str( def str(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def bool( def bool(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def int( def int(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def float( def float(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def path( def path(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def raw( def raw(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def jsonarg( def jsonarg(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def json( def json(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def bytes( def bytes(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def bits( def bits(
required: bool = False, required: bool = False,
help: Optional[str] = None, help: str | list[str] | None = None,
choices: Optional[Sequence] = None, choices: Optional[Sequence] = None,
default: Optional[Any] = None, default: Optional[Any] = None,
): ... ): ...
@staticmethod @staticmethod
def list( def list(
elements: type[object] | str | AnsibleParameter, required: bool = False, help: str | None = None elements: type[object] | str | AnsibleParameter,
required: bool = False,
help: str | list[str] | None = None,
default: list[Any] | None = None,
) -> AnsibleParameter: ... ) -> AnsibleParameter: ...
@staticmethod @staticmethod
def dict(required: bool = False, help: str | None = None, **options: AnsibleParameter) -> AnsibleParameter: ... def dict(
required: bool = False, help: str | list[str] | None = None, **options: AnsibleParameter
) -> AnsibleParameter: ...
def systemdbool(b: bool | str) -> str: ... def systemdbool(b: bool | str) -> str: ...
def joindict(*items: dict) -> dict: ... def joindict(*items: dict) -> dict: ...

Datei anzeigen

@ -1,6 +1,7 @@
import pathlib import pathlib
from copy import deepcopy from copy import deepcopy
from typing import Any, Callable, ClassVar, Dict, NoReturn, Optional, Type, TypeVar, Union, overload, TypedDict from typing import (Any, Callable, ClassVar, Dict, NoReturn, Optional, Type,
TypedDict, TypeVar, Union, overload)
import ansible.module_utils.basic as basic import ansible.module_utils.basic as basic

Datei anzeigen

@ -1 +1 @@
__version__ = "0.4.3" __version__ = "0.4.4"