Struct kube_core::discovery::ApiResource
source · [−]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
sourceimpl 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
sourceimpl Clone for ApiResource
impl Clone for ApiResource
sourcefn clone(&self) -> ApiResource
fn clone(&self) -> ApiResource
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for ApiResource
impl Debug for ApiResource
sourceimpl<'de> Deserialize<'de> for ApiResource
impl<'de> Deserialize<'de> for ApiResource
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
sourceimpl Hash for ApiResource
impl Hash for ApiResource
sourceimpl PartialEq<ApiResource> for ApiResource
impl PartialEq<ApiResource> for ApiResource
sourcefn eq(&self, other: &ApiResource) -> bool
fn eq(&self, other: &ApiResource) -> bool
sourceimpl Serialize for ApiResource
impl Serialize for ApiResource
impl Eq for ApiResource
impl StructuralEq for ApiResource
impl StructuralPartialEq for ApiResource
Auto Trait Implementations
impl RefUnwindSafe for ApiResource
impl Send for ApiResource
impl Sync for ApiResource
impl Unpin for ApiResource
impl UnwindSafe for ApiResource
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.