All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gesellix.docker.remote.api.IPAM.kt Maven / Gradle / Ivy

There is a newer version: 2024-11-28T22-05-00
Show newest version
/**
 *
 * Please note:
 * This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * Do not edit this file manually.
 *
 */

@file:Suppress(
    "ArrayInDataClass",
    "EnumEntryName",
    "RemoveRedundantQualifierName",
    "UnusedImport",
)

package de.gesellix.docker.remote.api

import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass

/**
 *
 *
 * @param driver Name of the IPAM driver to use.
 * @param config List of IPAM configuration options, specified as a map:  ``` {\"Subnet\": , \"IPRange\": , \"Gateway\": , \"AuxAddress\": } ``` 
 * @param options Driver-specific options, specified as a map.
 */
@JsonClass(generateAdapter = true)
data class IPAM(
    // Name of the IPAM driver to use.
    @Json(name = "Driver")
    var driver: kotlin.String? = "default",
    // List of IPAM configuration options, specified as a map:  ``` {\"Subnet\": , \"IPRange\": , \"Gateway\": , \"AuxAddress\": } ```
    @Json(name = "Config")
    var config: kotlin.collections.MutableList? = null,
    // Driver-specific options, specified as a map.
    @Json(name = "Options")
    var options: kotlin.collections.MutableMap? = null,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy