AllocateNetworkRequest requests allocation of new network by manager
| 55 | |
| 56 | // AllocateNetworkRequest requests allocation of new network by manager |
| 57 | type AllocateNetworkRequest struct { |
| 58 | // A network ID that remote plugins are expected to store for future |
| 59 | // reference. |
| 60 | NetworkID string |
| 61 | |
| 62 | // A free form map->object interface for communication of options. |
| 63 | Options map[string]string |
| 64 | |
| 65 | // IPAMData contains the address pool information for this network |
| 66 | IPv4Data, IPv6Data []IPAMData |
| 67 | } |
| 68 | |
| 69 | // AllocateNetworkResponse is the response to the AllocateNetworkRequest. |
| 70 | type AllocateNetworkResponse struct { |
nothing calls this directly
no outgoing calls
no test coverage detected