de.gesellix.docker.remote.api.SwarmSpecEncryptionConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-remote-api-model-1-45 Show documentation
Show all versions of docker-remote-api-model-1-45 Show documentation
API model for the Docker remote api v1.45
The 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
/**
* Parameters related to encryption-at-rest.
*
* @param autoLockManagers If set, generate a key and use it to lock data stored on the managers.
*/
@JsonClass(generateAdapter = true)
data class SwarmSpecEncryptionConfig(
// If set, generate a key and use it to lock data stored on the managers.
@Json(name = "AutoLockManagers")
var autoLockManagers: kotlin.Boolean? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy