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

pub struct Node {
    pub metadata: Option<ObjectMeta>,
    pub spec: Option<NodeSpec>,
    pub status: Option<NodeStatus>,
}

Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

Fields

metadata: Option<ObjectMeta>

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

spec: Option<NodeSpec>

Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

status: Option<NodeStatus>

Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Methods

impl Node[src]

pub fn connect_delete_node_proxy(
    name: &str,
    optional: ConnectDeleteNodeProxyOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectDeleteNodeProxyResponse>), RequestError>
[src]

connect DELETE requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • optional

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

impl Node[src]

pub fn connect_delete_node_proxy_with_path(
    name: &str,
    path: &str,
    optional: ConnectDeleteNodeProxyWithPathOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectDeleteNodeProxyWithPathResponse>), RequestError>
[src]

connect DELETE requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • path

    path to the resource

  • optional

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

impl Node[src]

pub fn connect_get_node_proxy(
    name: &str,
    optional: ConnectGetNodeProxyOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectGetNodeProxyResponse>), RequestError>
[src]

connect GET requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • optional

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

impl Node[src]

pub fn connect_get_node_proxy_with_path(
    name: &str,
    path: &str,
    optional: ConnectGetNodeProxyWithPathOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectGetNodeProxyWithPathResponse>), RequestError>
[src]

connect GET requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • path

    path to the resource

  • optional

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

impl Node[src]

pub fn connect_patch_node_proxy(
    name: &str,
    optional: ConnectPatchNodeProxyOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectPatchNodeProxyResponse>), RequestError>
[src]

connect PATCH requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • optional

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

impl Node[src]

pub fn connect_patch_node_proxy_with_path(
    name: &str,
    path: &str,
    optional: ConnectPatchNodeProxyWithPathOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectPatchNodeProxyWithPathResponse>), RequestError>
[src]

connect PATCH requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • path

    path to the resource

  • optional

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

impl Node[src]

pub fn connect_post_node_proxy(
    name: &str,
    optional: ConnectPostNodeProxyOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectPostNodeProxyResponse>), RequestError>
[src]

connect POST requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • optional

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

impl Node[src]

pub fn connect_post_node_proxy_with_path(
    name: &str,
    path: &str,
    optional: ConnectPostNodeProxyWithPathOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectPostNodeProxyWithPathResponse>), RequestError>
[src]

connect POST requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • path

    path to the resource

  • optional

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

impl Node[src]

pub fn connect_put_node_proxy(
    name: &str,
    optional: ConnectPutNodeProxyOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectPutNodeProxyResponse>), RequestError>
[src]

connect PUT requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • optional

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

impl Node[src]

pub fn connect_put_node_proxy_with_path(
    name: &str,
    path: &str,
    optional: ConnectPutNodeProxyWithPathOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ConnectPutNodeProxyWithPathResponse>), RequestError>
[src]

connect PUT requests to proxy of Node

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

Arguments

  • name

    name of the NodeProxyOptions

  • path

    path to the resource

  • optional

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

impl Node[src]

pub fn create_node(
    body: &Node,
    optional: CreateNodeOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateNodeResponse>), RequestError>
[src]

create a Node

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

Arguments

  • body

  • optional

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

impl Node[src]

pub fn delete_collection_node(
    optional: DeleteCollectionNodeOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<DeleteCollectionNodeResponse>), RequestError>
[src]

delete collection of Node

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

Arguments

  • optional

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

impl Node[src]

pub fn delete_node(
    name: &str,
    optional: DeleteNodeOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<DeleteNodeResponse>), RequestError>
[src]

delete a Node

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

Arguments

  • name

    name of the Node

  • optional

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

impl Node[src]

pub fn list_node(
    optional: ListNodeOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ListNodeResponse>), RequestError>
[src]

list or watch objects of kind Node

This operation only supports listing all items of this type.

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

Arguments

  • optional

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

impl Node[src]

pub fn patch_node(
    name: &str,
    body: &Patch,
    optional: PatchNodeOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<PatchNodeResponse>), RequestError>
[src]

partially update the specified Node

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

Arguments

  • name

    name of the Node

  • body

  • optional

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

impl Node[src]

pub fn patch_node_status(
    name: &str,
    body: &Patch,
    optional: PatchNodeStatusOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<PatchNodeStatusResponse>), RequestError>
[src]

partially update status of the specified Node

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

Arguments

  • name

    name of the Node

  • body

  • optional

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

impl Node[src]

pub fn read_node(
    name: &str,
    optional: ReadNodeOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReadNodeResponse>), RequestError>
[src]

read the specified Node

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

Arguments

  • name

    name of the Node

  • optional

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

impl Node[src]

pub fn read_node_status(
    name: &str,
    optional: ReadNodeStatusOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReadNodeStatusResponse>), RequestError>
[src]

read status of the specified Node

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

Arguments

  • name

    name of the Node

  • optional

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

impl Node[src]

pub fn replace_node(
    name: &str,
    body: &Node,
    optional: ReplaceNodeOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReplaceNodeResponse>), RequestError>
[src]

replace the specified Node

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

Arguments

  • name

    name of the Node

  • body

  • optional

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

impl Node[src]

pub fn replace_node_status(
    name: &str,
    body: &Node,
    optional: ReplaceNodeStatusOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReplaceNodeStatusResponse>), RequestError>
[src]

replace status of the specified Node

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

Arguments

  • name

    name of the Node

  • body

  • optional

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

impl Node[src]

pub fn watch_node(
    optional: WatchNodeOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<WatchNodeResponse>), RequestError>
[src]

list or watch objects of kind Node

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

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

Arguments

  • optional

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

Trait Implementations

impl Resource for Node[src]

impl Metadata for Node[src]

type Ty = ObjectMeta

The type of the metadata object.

impl Clone for Node[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Node> for Node[src]

impl Default for Node[src]

impl Debug for Node[src]

impl Serialize for Node[src]

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

Auto Trait Implementations

impl Send for Node

impl Sync for Node

Blanket Implementations

impl<T> From for T[src]

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, 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> Any for T where
    T: 'static + ?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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]