NamespacedResource#
- pydantic model phalanx.models.kubernetes.NamespacedResource#
Properties common to a namespaced Kubernetes resource.
- Parameters:
data (
Any)
Show JSON schema
{ "title": "NamespacedResource", "description": "Properties common to a namespaced Kubernetes resource.", "type": "object", "properties": { "kind": { "title": "Kind", "type": "string" }, "namespace": { "title": "Namespace", "type": "string" }, "name": { "title": "Name", "type": "string" } }, "required": [ "kind", "namespace", "name" ] }
- Config:
validate_by_name: bool = True
- Fields: