Custom Resource Definition Names Patch Args
data class CustomResourceDefinitionNamesPatchArgs(val categories: Output<List<String>>? = null, val kind: Output<String>? = null, val listKind: Output<String>? = null, val plural: Output<String>? = null, val shortNames: Output<List<String>>? = null, val singular: Output<String>? = null) : ConvertibleToJava<CustomResourceDefinitionNamesPatchArgs>
CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition
Constructors
Properties
Link copied to clipboard
categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all
.
Link copied to clipboard
Link copied to clipboard
shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get <shortname>
. It must be all lowercase.