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

de.gesellix.docker.remote.api.TaskSpecContainerSpecSecretsInnerFile.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

/**
 * File represents a specific target that is backed by a file.
 *
 * @param name Name represents the final filename in the filesystem.
 * @param UID UID represents the file UID.
 * @param GID GID represents the file GID.
 * @param mode Mode represents the FileMode of the file.
 */
@JsonClass(generateAdapter = true)

data class TaskSpecContainerSpecSecretsInnerFile(

  /* Name represents the final filename in the filesystem.  */
  @Json(name = "Name")
  var name: kotlin.String? = null,

  /* UID represents the file UID. */
  @Json(name = "UID")
  var UID: kotlin.String? = null,

  /* GID represents the file GID. */
  @Json(name = "GID")
  var GID: kotlin.String? = null,

  /* Mode represents the FileMode of the file. */
  @Json(name = "Mode")
  var mode: kotlin.Int? = null

)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy