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

pub struct ConfigMap {
    pub binary_data: Option<BTreeMap<String, ByteString>>,
    pub data: Option<BTreeMap<String, String>>,
    pub metadata: Option<ObjectMeta>,
}

ConfigMap holds configuration data for pods to consume.

Fields

binary_data: Option<BTreeMap<String, ByteString>>

BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.

data: Option<BTreeMap<String, String>>

Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.

metadata: Option<ObjectMeta>

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

Methods

impl ConfigMap[src]

pub fn create_namespaced_config_map(
    namespace: &str,
    body: &ConfigMap,
    optional: CreateNamespacedConfigMapOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateNamespacedConfigMapResponse>), RequestError>
[src]

create a ConfigMap

Use the returned crate::ResponseBody<CreateNamespacedConfigMapResponse> constructor, or CreateNamespacedConfigMapResponse 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 ConfigMap[src]

pub fn delete_collection_namespaced_config_map(
    namespace: &str,
    delete_optional: DeleteOptional,
    list_optional: ListOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<DeleteCollectionNamespacedConfigMapResponse>), RequestError>
[src]

delete collection of ConfigMap

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

Arguments

  • namespace

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

  • delete_optional

    Delete options. Use Default::default() to not pass any.

  • list_optional

    List options. Use Default::default() to not pass any.

impl ConfigMap[src]

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

delete a ConfigMap

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

Arguments

  • name

    name of the ConfigMap

  • namespace

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

  • optional

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

impl ConfigMap[src]

pub fn list_config_map_for_all_namespaces(
    optional: ListOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ListConfigMapForAllNamespacesResponse>), RequestError>
[src]

list or watch objects of kind ConfigMap

This operation only supports listing all items of this type.

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

Arguments

  • optional

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

impl ConfigMap[src]

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

list or watch objects of kind ConfigMap

This operation only supports listing all items of this type.

Use the returned crate::ResponseBody<ListNamespacedConfigMapResponse> constructor, or ListNamespacedConfigMapResponse 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 ConfigMap[src]

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

partially update the specified ConfigMap

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

Arguments

  • name

    name of the ConfigMap

  • namespace

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

  • body

  • optional

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

impl ConfigMap[src]

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

read the specified ConfigMap

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

Arguments

  • name

    name of the ConfigMap

  • namespace

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

  • optional

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

impl ConfigMap[src]

pub fn replace_namespaced_config_map(
    name: &str,
    namespace: &str,
    body: &ConfigMap,
    optional: ReplaceNamespacedConfigMapOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReplaceNamespacedConfigMapResponse>), RequestError>
[src]

replace the specified ConfigMap

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

Arguments

  • name

    name of the ConfigMap

  • namespace

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

  • body

  • optional

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

impl ConfigMap[src]

pub fn watch_config_map_for_all_namespaces(
    optional: WatchOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<WatchConfigMapForAllNamespacesResponse>), RequestError>
[src]

list or watch objects of kind ConfigMap

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

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

Arguments

  • optional

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

impl ConfigMap[src]

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

list or watch objects of kind ConfigMap

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

Use the returned crate::ResponseBody<WatchNamespacedConfigMapResponse> constructor, or WatchNamespacedConfigMapResponse 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.

Trait Implementations

impl Resource for ConfigMap[src]

impl Metadata for ConfigMap[src]

type Ty = ObjectMeta

The type of the metadata object.

impl Clone for ConfigMap[src]

impl Default for ConfigMap[src]

impl PartialEq<ConfigMap> for ConfigMap[src]

impl Debug for ConfigMap[src]

impl Serialize for ConfigMap[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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