You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* List of IPAM configuration options, specified as a map: `{"Subnet": <CIDR>, "IPRange": <CIDR>, "Gateway": <IP address>, "AuxAddress": <device_name:IP address>}`.
*
* @var string[][]
*/
protected$config;
/**
* Driver-specific options, specified as a map.
*
* @var string[][]
*/
protected$options;
/**
* Name of the IPAM driver to use.
*
* @return string
*/
publicfunctiongetDriver(): ?string
{
return$this->driver;
}
/**
* Name of the IPAM driver to use.
*
* @param string $driver
*
* @return self
*/
publicfunctionsetDriver(?string$driver): self
{
$this->driver = $driver;
return$this;
}
/**
* List of IPAM configuration options, specified as a map: `{"Subnet": <CIDR>, "IPRange": <CIDR>, "Gateway": <IP address>, "AuxAddress": <device_name:IP address>}`.
*
* @return string[][]
*/
publicfunctiongetConfig(): ?array
{
return$this->config;
}
/**
* List of IPAM configuration options, specified as a map: `{"Subnet": <CIDR>, "IPRange": <CIDR>, "Gateway": <IP address>, "AuxAddress": <device_name:IP address>}`.