Custom Resource Definition
data class CustomResourceDefinition(val apiVersion: String? = null, val kind: String? = null, val metadata: ObjectMeta? = null, val spec: CustomResourceDefinitionSpec, val status: CustomResourceDefinitionStatus? = null)
CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.
Constructors
Link copied to clipboard
fun CustomResourceDefinition(apiVersion: String? = null, kind: String? = null, metadata: ObjectMeta? = null, spec: CustomResourceDefinitionSpec, status: CustomResourceDefinitionStatus? = null)