/* generated using openapi-typescript-codegen -- do no edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { IPAMConfig } from './IPAMConfig'; export type IPAM = { /** * Name of the IPAM driver to use. */ Driver?: string; /** * List of IPAM configuration options, specified as a map: * * ``` * {"Subnet": , "IPRange": , "Gateway": , "AuxAddress": } * ``` * */ Config?: Array; /** * Driver-specific options, specified as a map. */ Options?: Record; };