From 8fece5ad832eeecc9d350d1b1dc7e163f161de4b Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Thu, 12 Mar 2026 23:48:20 +0000
Subject: [PATCH] NetworkDriverEntities: NetworkIpDataEntity.Gateway is optional

---
 docker_plugin_api/NetworkDriverEntities.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/docker_plugin_api/NetworkDriverEntities.py b/docker_plugin_api/NetworkDriverEntities.py
index d1e3e9c..5ac27c0 100644
--- a/docker_plugin_api/NetworkDriverEntities.py
+++ b/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 = {}
 

--
Gitblit v1.10.0