PluginsInfo

@Serializable
data class PluginsInfo(val volume: List<String>? = null, val network: List<String>? = null, val authorization: List<String>? = null, val log: List<String>? = null)

Available plugins per type.


>Note: Only unmanaged (V1) plugins are included in this list. > V1 plugins are \"lazily\" loaded, and are not returned in this list > if there is no resource using the plugin.

Parameters

volume

Names of available volume-drivers, and network-driver plugins.

network

Names of available network-drivers, and network-driver plugins.

authorization

Names of available authorization plugins.

log

Names of available logging-drivers, and logging-driver plugins.

Constructors

Link copied to clipboard
constructor(volume: List<String>? = null, network: List<String>? = null, authorization: List<String>? = null, log: List<String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Authorization")
val authorization: List<String>?
Link copied to clipboard
@SerialName(value = "Log")
val log: List<String>?
Link copied to clipboard
@SerialName(value = "Network")
val network: List<String>?
Link copied to clipboard
@SerialName(value = "Volume")
val volume: List<String>?