[][src]Struct k8s_openapi::api::rbac::v1alpha1::ClusterRoleBinding

pub struct ClusterRoleBinding {
    pub metadata: Option<ObjectMeta>,
    pub role_ref: RoleRef,
    pub subjects: Option<Vec<Subject>>,
}

ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.

Fields

metadata: Option<ObjectMeta>

Standard object's metadata.

role_ref: RoleRef

RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.

subjects: Option<Vec<Subject>>

Subjects holds references to the objects the role applies to.

Methods

impl ClusterRoleBinding[src]

pub fn create_cluster_role_binding(
    body: &ClusterRoleBinding,
    optional: CreateClusterRoleBindingOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<CreateClusterRoleBindingResponse>), RequestError>
[src]

create a ClusterRoleBinding

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

Arguments

  • body

  • optional

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

impl ClusterRoleBinding[src]

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

delete a ClusterRoleBinding

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

Arguments

  • name

    name of the ClusterRoleBinding

  • optional

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

impl ClusterRoleBinding[src]

pub fn delete_collection_cluster_role_binding(
    optional: DeleteCollectionClusterRoleBindingOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<DeleteCollectionClusterRoleBindingResponse>), RequestError>
[src]

delete collection of ClusterRoleBinding

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

Arguments

  • optional

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

impl ClusterRoleBinding[src]

pub fn list_cluster_role_binding(
    optional: ListClusterRoleBindingOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ListClusterRoleBindingResponse>), RequestError>
[src]

list or watch objects of kind ClusterRoleBinding

This operation only supports listing all items of this type.

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

Arguments

  • optional

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

impl ClusterRoleBinding[src]

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

partially update the specified ClusterRoleBinding

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

Arguments

  • name

    name of the ClusterRoleBinding

  • body

  • optional

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

impl ClusterRoleBinding[src]

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

read the specified ClusterRoleBinding

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

Arguments

  • name

    name of the ClusterRoleBinding

  • optional

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

impl ClusterRoleBinding[src]

pub fn replace_cluster_role_binding(
    name: &str,
    body: &ClusterRoleBinding,
    optional: ReplaceClusterRoleBindingOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<ReplaceClusterRoleBindingResponse>), RequestError>
[src]

replace the specified ClusterRoleBinding

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

Arguments

  • name

    name of the ClusterRoleBinding

  • body

  • optional

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

impl ClusterRoleBinding[src]

pub fn watch_cluster_role_binding(
    optional: WatchClusterRoleBindingOptional
) -> Result<(Request<Vec<u8>>, fn(_: StatusCode) -> ResponseBody<WatchClusterRoleBindingResponse>), RequestError>
[src]

list or watch objects of kind ClusterRoleBinding

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

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

Arguments

  • optional

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

Trait Implementations

impl Resource for ClusterRoleBinding[src]

impl Metadata for ClusterRoleBinding[src]

type Ty = ObjectMeta

The type of the metadata object.

impl Clone for ClusterRoleBinding[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<ClusterRoleBinding> for ClusterRoleBinding[src]

impl Default for ClusterRoleBinding[src]

impl Debug for ClusterRoleBinding[src]

impl Serialize for ClusterRoleBinding[src]

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

Auto Trait Implementations

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]