pub struct ApiResource {
pub group: String,
pub version: String,
pub api_version: String,
pub kind: String,
pub plural: String,
}
Expand description
Information about a Kubernetes API resource
Enough information to use it like a Resource
by passing it to the dynamic Api
constructors like Api::all_with
and Api::namespaced_with
.
Fields§
§group: String
Resource group, empty for core group.
version: String
group version
api_version: String
apiVersion of the resource (v1 for core group, groupName/groupVersions for other).
kind: String
Singular PascalCase name of the resource
plural: String
Plural name of the resource
Implementations§
Source§impl ApiResource
impl ApiResource
Sourcepub fn erase<K: Resource>(dt: &K::DynamicType) -> Self
pub fn erase<K: Resource>(dt: &K::DynamicType) -> Self
Creates an ApiResource by type-erasing a Resource
Sourcepub fn from_gvk_with_plural(gvk: &GroupVersionKind, plural: &str) -> Self
pub fn from_gvk_with_plural(gvk: &GroupVersionKind, plural: &str) -> Self
Creates an ApiResource from group, version, kind and plural name.
Sourcepub fn from_gvk(gvk: &GroupVersionKind) -> Self
pub fn from_gvk(gvk: &GroupVersionKind) -> Self
Creates an ApiResource from group, version and kind.
§Warning
This function will guess the resource plural name.
Usually, this is ok, but for CRDs with complex pluralisations it can fail.
If you are getting your values from kube_derive
use the generated method for giving you an ApiResource
.
Otherwise consider using ApiResource::from_gvk_with_plural
to explicitly set the plural, or run api discovery on it via kube::discovery
.
Trait Implementations§
Source§impl Clone for ApiResource
impl Clone for ApiResource
Source§fn clone(&self) -> ApiResource
fn clone(&self) -> ApiResource
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more