pub struct ValidatingAdmissionPolicy {
pub metadata: ObjectMeta,
pub spec: Option<ValidatingAdmissionPolicySpec>,
pub status: Option<ValidatingAdmissionPolicyStatus>,
}
Expand description
ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.
Fields§
§metadata: ObjectMeta
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
spec: Option<ValidatingAdmissionPolicySpec>
Specification of the desired behavior of the ValidatingAdmissionPolicy.
status: Option<ValidatingAdmissionPolicyStatus>
The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way. Populated by the system. Read-only.
Trait Implementations§
source§impl Clone for ValidatingAdmissionPolicy
impl Clone for ValidatingAdmissionPolicy
source§fn clone(&self) -> ValidatingAdmissionPolicy
fn clone(&self) -> ValidatingAdmissionPolicy
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ValidatingAdmissionPolicy
impl Debug for ValidatingAdmissionPolicy
source§impl DeepMerge for ValidatingAdmissionPolicy
impl DeepMerge for ValidatingAdmissionPolicy
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for ValidatingAdmissionPolicy
impl Default for ValidatingAdmissionPolicy
source§fn default() -> ValidatingAdmissionPolicy
fn default() -> ValidatingAdmissionPolicy
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ValidatingAdmissionPolicy
impl<'de> Deserialize<'de> for ValidatingAdmissionPolicy
source§fn 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
source§impl Metadata for ValidatingAdmissionPolicy
impl Metadata for ValidatingAdmissionPolicy
source§impl Resource for ValidatingAdmissionPolicy
impl Resource for ValidatingAdmissionPolicy
source§const API_VERSION: &'static str = "admissionregistration.k8s.io/v1alpha1"
const API_VERSION: &'static str = "admissionregistration.k8s.io/v1alpha1"
The API version of the resource. This is a composite of
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read moresource§const GROUP: &'static str = "admissionregistration.k8s.io"
const GROUP: &'static str = "admissionregistration.k8s.io"
The group of the resource, or the empty string if the resource doesn’t have a group.
source§const URL_PATH_SEGMENT: &'static str = "validatingadmissionpolicies"
const URL_PATH_SEGMENT: &'static str = "validatingadmissionpolicies"
The URL path segment used to construct URLs related to this resource. Read more
source§type Scope = ClusterResourceScope
type Scope = ClusterResourceScope
Indicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
impl StructuralPartialEq for ValidatingAdmissionPolicy
Auto Trait Implementations§
impl Freeze for ValidatingAdmissionPolicy
impl RefUnwindSafe for ValidatingAdmissionPolicy
impl Send for ValidatingAdmissionPolicy
impl Sync for ValidatingAdmissionPolicy
impl Unpin for ValidatingAdmissionPolicy
impl UnwindSafe for ValidatingAdmissionPolicy
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)