pub struct PodCertificateRequest {
pub metadata: ObjectMeta,
pub spec: PodCertificateRequestSpec,
pub status: Option<PodCertificateRequestStatus>,
}
Expand description
PodCertificateRequest encodes a pod requesting a certificate from a given signer.
Kubelets use this API to implement podCertificate projected volumes
Fields§
§metadata: ObjectMeta
metadata contains the object metadata.
spec: PodCertificateRequestSpec
spec contains the details about the certificate being requested.
status: Option<PodCertificateRequestStatus>
status contains the issued certificate, and a standard set of conditions.
Trait Implementations§
Source§impl Clone for PodCertificateRequest
impl Clone for PodCertificateRequest
Source§fn clone(&self) -> PodCertificateRequest
fn clone(&self) -> PodCertificateRequest
Returns a duplicate 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 PodCertificateRequest
impl Debug for PodCertificateRequest
Source§impl DeepMerge for PodCertificateRequest
impl DeepMerge for PodCertificateRequest
Source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.Source§impl Default for PodCertificateRequest
impl Default for PodCertificateRequest
Source§fn default() -> PodCertificateRequest
fn default() -> PodCertificateRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PodCertificateRequest
impl<'de> Deserialize<'de> for PodCertificateRequest
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 PodCertificateRequest
impl Metadata for PodCertificateRequest
Source§impl PartialEq for PodCertificateRequest
impl PartialEq for PodCertificateRequest
Source§impl Resource for PodCertificateRequest
impl Resource for PodCertificateRequest
Source§const API_VERSION: &'static str = "certificates.k8s.io/v1alpha1"
const API_VERSION: &'static str = "certificates.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 = "certificates.k8s.io"
const GROUP: &'static str = "certificates.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 = "podcertificaterequests"
const URL_PATH_SEGMENT: &'static str = "podcertificaterequests"
The URL path segment used to construct URLs related to this resource. Read more
Source§type Scope = NamespaceResourceScope
type Scope = NamespaceResourceScope
Indicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
Source§impl Serialize for PodCertificateRequest
impl Serialize for PodCertificateRequest
impl StructuralPartialEq for PodCertificateRequest
Auto Trait Implementations§
impl Freeze for PodCertificateRequest
impl RefUnwindSafe for PodCertificateRequest
impl Send for PodCertificateRequest
impl Sync for PodCertificateRequest
impl Unpin for PodCertificateRequest
impl UnwindSafe for PodCertificateRequest
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