ResourceType
The type of the resource - can be a string (for CRDs) or a constant from K8S
Example
import { K8S } from '@shell/apis';
// Using constants (recommended)
resources.cluster.findAll(K8S.POD);
// Using strings (for CRDs or dynamic resources)
resources.cluster.findAll('mycompany.io.customresource');