OpaqueDeviceConfigurationPatchArgs

data class OpaqueDeviceConfigurationPatchArgs(val driver: Output<String>? = null, val parameters: Output<JsonElement>? = null) : ConvertibleToJava<OpaqueDeviceConfigurationPatchArgs>

OpaqueDeviceConfiguration contains configuration parameters for a driver in a format defined by the driver vendor.

Constructors

Link copied to clipboard
constructor(driver: Output<String>? = null, parameters: Output<JsonElement>? = null)

Properties

Link copied to clipboard
val driver: Output<String>? = null

Driver is used to determine which kubelet plugin needs to be passed these configuration parameters. An admission policy provided by the driver developer could use this to decide whether it needs to validate them. Must be a DNS subdomain and should end with a DNS domain owned by the vendor of the driver.

Link copied to clipboard
val parameters: Output<JsonElement>? = null

Parameters can contain arbitrary data. It is the responsibility of the driver developer to handle validation and versioning. Typically this includes self-identification and a version ("kind" + "apiVersion" for Kubernetes types), with conversion between different versions. The length of the raw data must be smaller or equal to 10 Ki.

Functions

Link copied to clipboard
open override fun toJava(): OpaqueDeviceConfigurationPatchArgs