[][src]Struct k8s_openapi::api::core::v1::PersistentVolumeClaim

pub struct PersistentVolumeClaim {
    pub metadata: Option<ObjectMeta>,
    pub spec: Option<PersistentVolumeClaimSpec>,
    pub status: Option<PersistentVolumeClaimStatus>,
}

PersistentVolumeClaim is a user's request for and claim to a persistent volume

Fields

metadata: Option<ObjectMeta>

Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

spec: Option<PersistentVolumeClaimSpec>

Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

status: Option<PersistentVolumeClaimStatus>

Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

Methods

impl PersistentVolumeClaim[src]

pub fn create_namespaced_persistent_volume_claim(
    namespace: &str,
    body: &PersistentVolumeClaim,
    optional: CreateNamespacedPersistentVolumeClaimOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateNamespacedPersistentVolumeClaimResponse>), RequestError>
[src]

create a PersistentVolumeClaim

Use the returned crate::ResponseBody<CreateNamespacedPersistentVolumeClaimResponse> constructor, or CreateNamespacedPersistentVolumeClaimResponse directly, to parse the HTTP response.

Arguments

  • namespace

    object name and auth scope, such as for teams and projects

  • body

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn delete_collection_namespaced_persistent_volume_claim(
    namespace: &str,
    optional: DeleteCollectionNamespacedPersistentVolumeClaimOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<DeleteCollectionNamespacedPersistentVolumeClaimResponse>), RequestError>
[src]

delete collection of PersistentVolumeClaim

Use the returned crate::ResponseBody<DeleteCollectionNamespacedPersistentVolumeClaimResponse> constructor, or DeleteCollectionNamespacedPersistentVolumeClaimResponse directly, to parse the HTTP response.

Arguments

  • namespace

    object name and auth scope, such as for teams and projects

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn delete_namespaced_persistent_volume_claim(
    name: &str,
    namespace: &str,
    optional: DeleteNamespacedPersistentVolumeClaimOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<DeleteNamespacedPersistentVolumeClaimResponse>), RequestError>
[src]

delete a PersistentVolumeClaim

Use the returned crate::ResponseBody<DeleteNamespacedPersistentVolumeClaimResponse> constructor, or DeleteNamespacedPersistentVolumeClaimResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the PersistentVolumeClaim

  • namespace

    object name and auth scope, such as for teams and projects

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn list_namespaced_persistent_volume_claim(
    namespace: &str,
    optional: ListNamespacedPersistentVolumeClaimOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ListNamespacedPersistentVolumeClaimResponse>), RequestError>
[src]

list or watch objects of kind PersistentVolumeClaim

This operation only supports listing all items of this type.

Use the returned crate::ResponseBody<ListNamespacedPersistentVolumeClaimResponse> constructor, or ListNamespacedPersistentVolumeClaimResponse directly, to parse the HTTP response.

Arguments

  • namespace

    object name and auth scope, such as for teams and projects

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn list_persistent_volume_claim_for_all_namespaces(
    optional: ListPersistentVolumeClaimForAllNamespacesOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ListPersistentVolumeClaimForAllNamespacesResponse>), RequestError>
[src]

list or watch objects of kind PersistentVolumeClaim

This operation only supports listing all items of this type.

Use the returned crate::ResponseBody<ListPersistentVolumeClaimForAllNamespacesResponse> constructor, or ListPersistentVolumeClaimForAllNamespacesResponse directly, to parse the HTTP response.

Arguments

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn patch_namespaced_persistent_volume_claim(
    name: &str,
    namespace: &str,
    body: &Patch,
    optional: PatchNamespacedPersistentVolumeClaimOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<PatchNamespacedPersistentVolumeClaimResponse>), RequestError>
[src]

partially update the specified PersistentVolumeClaim

Use the returned crate::ResponseBody<PatchNamespacedPersistentVolumeClaimResponse> constructor, or PatchNamespacedPersistentVolumeClaimResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the PersistentVolumeClaim

  • namespace

    object name and auth scope, such as for teams and projects

  • body

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn patch_namespaced_persistent_volume_claim_status(
    name: &str,
    namespace: &str,
    body: &Patch,
    optional: PatchNamespacedPersistentVolumeClaimStatusOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<PatchNamespacedPersistentVolumeClaimStatusResponse>), RequestError>
[src]

partially update status of the specified PersistentVolumeClaim

Use the returned crate::ResponseBody<PatchNamespacedPersistentVolumeClaimStatusResponse> constructor, or PatchNamespacedPersistentVolumeClaimStatusResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the PersistentVolumeClaim

  • namespace

    object name and auth scope, such as for teams and projects

  • body

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn read_namespaced_persistent_volume_claim(
    name: &str,
    namespace: &str,
    optional: ReadNamespacedPersistentVolumeClaimOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReadNamespacedPersistentVolumeClaimResponse>), RequestError>
[src]

read the specified PersistentVolumeClaim

Use the returned crate::ResponseBody<ReadNamespacedPersistentVolumeClaimResponse> constructor, or ReadNamespacedPersistentVolumeClaimResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the PersistentVolumeClaim

  • namespace

    object name and auth scope, such as for teams and projects

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn read_namespaced_persistent_volume_claim_status(
    name: &str,
    namespace: &str,
    optional: ReadNamespacedPersistentVolumeClaimStatusOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReadNamespacedPersistentVolumeClaimStatusResponse>), RequestError>
[src]

read status of the specified PersistentVolumeClaim

Use the returned crate::ResponseBody<ReadNamespacedPersistentVolumeClaimStatusResponse> constructor, or ReadNamespacedPersistentVolumeClaimStatusResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the PersistentVolumeClaim

  • namespace

    object name and auth scope, such as for teams and projects

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn replace_namespaced_persistent_volume_claim(
    name: &str,
    namespace: &str,
    body: &PersistentVolumeClaim,
    optional: ReplaceNamespacedPersistentVolumeClaimOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReplaceNamespacedPersistentVolumeClaimResponse>), RequestError>
[src]

replace the specified PersistentVolumeClaim

Use the returned crate::ResponseBody<ReplaceNamespacedPersistentVolumeClaimResponse> constructor, or ReplaceNamespacedPersistentVolumeClaimResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the PersistentVolumeClaim

  • namespace

    object name and auth scope, such as for teams and projects

  • body

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn replace_namespaced_persistent_volume_claim_status(
    name: &str,
    namespace: &str,
    body: &PersistentVolumeClaim,
    optional: ReplaceNamespacedPersistentVolumeClaimStatusOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReplaceNamespacedPersistentVolumeClaimStatusResponse>), RequestError>
[src]

replace status of the specified PersistentVolumeClaim

Use the returned crate::ResponseBody<ReplaceNamespacedPersistentVolumeClaimStatusResponse> constructor, or ReplaceNamespacedPersistentVolumeClaimStatusResponse directly, to parse the HTTP response.

Arguments

  • name

    name of the PersistentVolumeClaim

  • namespace

    object name and auth scope, such as for teams and projects

  • body

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn watch_namespaced_persistent_volume_claim(
    namespace: &str,
    optional: WatchNamespacedPersistentVolumeClaimOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<WatchNamespacedPersistentVolumeClaimResponse>), RequestError>
[src]

list or watch objects of kind PersistentVolumeClaim

This operation only supports watching one item, or a list of items, of this type for changes.

Use the returned crate::ResponseBody<WatchNamespacedPersistentVolumeClaimResponse> constructor, or WatchNamespacedPersistentVolumeClaimResponse directly, to parse the HTTP response.

Arguments

  • namespace

    object name and auth scope, such as for teams and projects

  • optional

    Optional parameters. Use Default::default() to not pass any.

impl PersistentVolumeClaim[src]

pub fn watch_persistent_volume_claim_for_all_namespaces(
    optional: WatchPersistentVolumeClaimForAllNamespacesOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<WatchPersistentVolumeClaimForAllNamespacesResponse>), RequestError>
[src]

list or watch objects of kind PersistentVolumeClaim

This operation only supports watching one item, or a list of items, of this type for changes.

Use the returned crate::ResponseBody<WatchPersistentVolumeClaimForAllNamespacesResponse> constructor, or WatchPersistentVolumeClaimForAllNamespacesResponse directly, to parse the HTTP response.

Arguments

  • optional

    Optional parameters. Use Default::default() to not pass any.

Trait Implementations

impl Resource for PersistentVolumeClaim[src]

impl Metadata for PersistentVolumeClaim[src]

type Ty = ObjectMeta

The type of the metadata object.

impl PartialEq<PersistentVolumeClaim> for PersistentVolumeClaim[src]

impl Default for PersistentVolumeClaim[src]

impl Clone for PersistentVolumeClaim[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PersistentVolumeClaim[src]

impl Serialize for PersistentVolumeClaim[src]

impl<'de> Deserialize<'de> for PersistentVolumeClaim[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]