Struct kube_core::admission::AdmissionRequest
source · [−]pub struct AdmissionRequest<T: Resource> {Show 15 fields
pub uid: String,
pub kind: GroupVersionKind,
pub resource: GroupVersionResource,
pub sub_resource: Option<String>,
pub request_kind: Option<GroupVersionKind>,
pub request_resource: Option<GroupVersionResource>,
pub request_sub_resource: Option<String>,
pub name: String,
pub namespace: Option<String>,
pub operation: Operation,
pub user_info: UserInfo,
pub object: Option<T>,
pub old_object: Option<T>,
pub dry_run: bool,
pub options: Option<RawExtension>,
/* private fields */
}
admission
only.Expand description
An incoming AdmissionReview
request.
use kube::api::{admission::{AdmissionRequest, AdmissionReview}, DynamicObject};
// The incoming AdmissionReview received by the controller.
let body: AdmissionReview<DynamicObject>;
let req: AdmissionRequest<_> = body.try_into().unwrap();
Fields
uid: String
An identifier for the individual request/response. It allows us to distinguish instances of requests which are otherwise identical (parallel requests, requests when earlier requests did not modify, etc). The UID is meant to track the round trip (request/response) between the KAS and the webhook, not the user request. It is suitable for correlating log entries between the webhook and apiserver, for either auditing or debugging.
kind: GroupVersionKind
The fully-qualified type of object being submitted (for example, v1.Pod or autoscaling.v1.Scale).
resource: GroupVersionResource
The fully-qualified resource being requested (for example, v1.pods).
sub_resource: Option<String>
The subresource being requested, if any (for example, “status” or “scale”).
request_kind: Option<GroupVersionKind>
The fully-qualified type of the original API request (for example, v1.Pod or autoscaling.v1.Scale). If this is specified and differs from the value in “kind”, an equivalent match and conversion was performed.
For example, if deployments can be modified via apps/v1 and apps/v1beta1,
and a webhook registered a rule of apiGroups:["apps"], apiVersions:["v1"], resources:["deployments"]
and
matchPolicy:Equivalent
, an API request to apps/v1beta1 deployments
would be converted and sent to the webhook with kind: {group:"apps", version:"v1", kind:"Deployment"}
(matching the rule the webhook
registered for), and requestKind: {group:"apps", version:"v1beta1", kind:"Deployment"}
(indicating the kind of the original API request).
See documentation for the “matchPolicy” field in the webhook
configuration type for more details.
request_resource: Option<GroupVersionResource>
The fully-qualified resource of the original API request (for example, v1.pods). If this is specified and differs from the value in “resource”, an equivalent match and conversion was performed.
For example, if deployments can be modified via apps/v1 and apps/v1beta1,
and a webhook registered a rule of apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]
and matchPolicy: Equivalent
, an API request to apps/v1beta1 deployments would be
converted and sent to the webhook with resource: {group:"apps", version:"v1", resource:"deployments"}
(matching the resource the webhook
registered for), and requestResource: {group:"apps", version:"v1beta1", resource:"deployments"}
(indicating the resource of the original API
request).
See documentation for the “matchPolicy” field in the webhook configuration type.
request_sub_resource: Option<String>
The name of the subresource of the original API request, if any (for example, “status” or “scale”). If this is specified and differs from the value in “subResource”, an equivalent match and conversion was performed. See documentation for the “matchPolicy” field in the webhook configuration type.
name: String
The name of the object as presented in the request. On a CREATE operation, the client may omit name and rely on the server to generate the name. If that is the case, this field will contain an empty string.
namespace: Option<String>
The namespace associated with the request (if any).
operation: Operation
The operation being performed. This may be different than the operation requested. e.g. a patch can result in either a CREATE or UPDATE Operation.
user_info: UserInfo
Information about the requesting user.
object: Option<T>
The object from the incoming request. It’s None
for DELETE
operations.
old_object: Option<T>
The existing object. Only populated for DELETE and UPDATE requests.
dry_run: bool
Specifies that modifications will definitely not be persisted for this request.
options: Option<RawExtension>
The operation option structure of the operation being performed. e.g.
meta.k8s.io/v1.DeleteOptions
or meta.k8s.io/v1.CreateOptions
. This
may be different than the options the caller provided. e.g. for a patch
request the performed Operation
might be a CREATE
, in
which case the Options will a meta.k8s.io/v1.CreateOptions
even though
the caller provided meta.k8s.io/v1.PatchOptions
.
Trait Implementations
sourceimpl<T: Clone + Resource> Clone for AdmissionRequest<T>
impl<T: Clone + Resource> Clone for AdmissionRequest<T>
sourcefn clone(&self) -> AdmissionRequest<T>
fn clone(&self) -> AdmissionRequest<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug + Resource> Debug for AdmissionRequest<T>
impl<T: Debug + Resource> Debug for AdmissionRequest<T>
sourceimpl<'de, T: Resource> Deserialize<'de> for AdmissionRequest<T> where
T: Deserialize<'de>,
impl<'de, T: Resource> Deserialize<'de> for AdmissionRequest<T> where
T: Deserialize<'de>,
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>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T: Resource> From<&'_ AdmissionRequest<T>> for AdmissionResponse
impl<T: Resource> From<&'_ AdmissionRequest<T>> for AdmissionResponse
sourcefn from(req: &AdmissionRequest<T>) -> Self
fn from(req: &AdmissionRequest<T>) -> Self
Converts to this type from the input type.
sourceimpl<T: Resource> Serialize for AdmissionRequest<T> where
T: Serialize,
impl<T: Resource> Serialize for AdmissionRequest<T> where
T: Serialize,
sourceimpl<T: Resource> TryInto<AdmissionRequest<T>> for AdmissionReview<T>
impl<T: Resource> TryInto<AdmissionRequest<T>> for AdmissionReview<T>
type Error = ConvertAdmissionReviewError
type Error = ConvertAdmissionReviewError
The type returned in the event of a conversion error.
sourcefn try_into(self) -> Result<AdmissionRequest<T>, Self::Error>
fn try_into(self) -> Result<AdmissionRequest<T>, Self::Error>
Performs the conversion.
Auto Trait Implementations
impl<T> RefUnwindSafe for AdmissionRequest<T> where
T: RefUnwindSafe,
impl<T> Send for AdmissionRequest<T> where
T: Send,
impl<T> Sync for AdmissionRequest<T> where
T: Sync,
impl<T> Unpin for AdmissionRequest<T> where
T: Unpin,
impl<T> UnwindSafe for AdmissionRequest<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more