Jacek Kowalski
2026-03-12 8fece5ad832eeecc9d350d1b1dc7e163f161de4b
NetworkDriverEntities: NetworkIpDataEntity.Gateway is optional
1 files modified
2 ■■■ changed files
docker_plugin_api/NetworkDriverEntities.py 2 ●●● patch | view | raw | blame | history
docker_plugin_api/NetworkDriverEntities.py
@@ -1,5 +1,5 @@
class NetworkIpDataEntity:
    def __init__(self, AddressSpace: str, Pool: str, Gateway: str, AuxAddresses: dict = None):
    def __init__(self, AddressSpace: str, Pool: str, Gateway: str = None, AuxAddresses: dict = None):
        if AuxAddresses is None:
            AuxAddresses = {}