Custom Resource Definition Version
data class CustomResourceDefinitionVersion(val additionalPrinterColumns: List<CustomResourceColumnDefinition>? = null, val deprecated: Boolean? = null, val deprecationWarning: String? = null, val name: String, val schema: CustomResourceValidation? = null, val served: Boolean, val storage: Boolean, val subresources: CustomResourceSubresources? = null)
CustomResourceDefinitionVersion describes a version for CRD.
Constructors
Link copied to clipboard
fun CustomResourceDefinitionVersion(additionalPrinterColumns: List<CustomResourceColumnDefinition>? = null, deprecated: Boolean? = null, deprecationWarning: String? = null, name: String, schema: CustomResourceValidation? = null, served: Boolean, storage: Boolean, subresources: CustomResourceSubresources? = null)
Types
Properties
Link copied to clipboard
additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.