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

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

/**
 *
 * 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 privileged
 * @param user
 * @param tty
 * @param entrypoint
 * @param arguments
 */
@JsonClass(generateAdapter = true)
data class ProcessConfig(
    @Json(name = "privileged")
    var privileged: kotlin.Boolean? = null,
    @Json(name = "user")
    var user: kotlin.String? = null,
    @Json(name = "tty")
    var tty: kotlin.Boolean? = null,
    @Json(name = "entrypoint")
    var entrypoint: kotlin.String? = null,
    @Json(name = "arguments")
    var arguments: kotlin.collections.MutableList? = null,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy