Struct k8s_openapi_ext::corev1::Binding
source · [−]pub struct Binding {
pub metadata: ObjectMeta,
pub target: ObjectReference,
}
Expand description
Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.
Fields
metadata: ObjectMeta
Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
target: ObjectReference
The target object that you want to bind to the standard object.
Implementations
sourceimpl Binding
impl Binding
sourcepub fn create(
namespace: &str,
body: &Binding,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8, Global>>, fn(StatusCode) -> ResponseBody<CreateResponse<Binding>>), RequestError>
pub fn create(
namespace: &str,
body: &Binding,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8, Global>>, fn(StatusCode) -> ResponseBody<CreateResponse<Binding>>), RequestError>
create a Binding
Use the returned crate::ResponseBody
<
crate::CreateResponse
<Self>>
constructor, or crate::CreateResponse
<Self>
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.
sourceimpl Binding
impl Binding
sourcepub fn create_pod(
name: &str,
namespace: &str,
body: &Binding,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8, Global>>, fn(StatusCode) -> ResponseBody<CreateResponse<Binding>>), RequestError>
pub fn create_pod(
name: &str,
namespace: &str,
body: &Binding,
optional: CreateOptional<'_>
) -> Result<(Request<Vec<u8, Global>>, fn(StatusCode) -> ResponseBody<CreateResponse<Binding>>), RequestError>
create binding of a Pod
Use the returned crate::ResponseBody
<
crate::CreateResponse
<Self>>
constructor, or crate::CreateResponse
<Self>
directly, to parse the HTTP response.
Arguments
-
name
name of the Binding
-
namespace
object name and auth scope, such as for teams and projects
-
body
-
optional
Optional parameters. Use
Default::default()
to not pass any.
Trait Implementations
sourceimpl DeepMerge for Binding
impl DeepMerge for Binding
sourcefn merge_from(&mut self, other: Binding)
fn merge_from(&mut self, other: Binding)
other
into self
.sourceimpl<'de> Deserialize<'de> for Binding
impl<'de> Deserialize<'de> for Binding
sourcefn deserialize<D>(
deserializer: D
) -> Result<Binding, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<Binding, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
sourceimpl Resource for Binding
impl Resource for Binding
sourceconst API_VERSION: &'static str = "v1"
const API_VERSION: &'static str = "v1"
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read more