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: ObjectMetaStandard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
target: ObjectReferenceThe target object that you want to bind to the standard object.
Implementations§
source§impl 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
-
namespaceobject name and auth scope, such as for teams and projects
-
body -
optionalOptional parameters. Use
Default::default()to not pass any.
source§impl 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
-
namename of the Binding
-
namespaceobject name and auth scope, such as for teams and projects
-
body -
optionalOptional parameters. Use
Default::default()to not pass any.
Trait Implementations§
source§impl DeepMerge for Binding
impl DeepMerge for Binding
source§fn merge_from(&mut self, other: Binding)
fn merge_from(&mut self, other: Binding)
other into self.source§impl<'de> Deserialize<'de> for Binding
impl<'de> Deserialize<'de> for Binding
source§fn 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>,
source§impl PartialEq<Binding> for Binding
impl PartialEq<Binding> for Binding
source§impl Resource for Binding
impl Resource for Binding
source§const 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