Struct google_compute1::api::Binding[][src]

pub struct Binding {
    pub binding_id: Option<String>,
    pub condition: Option<Expr>,
    pub members: Option<Vec<String>>,
    pub role: Option<String>,
}

Associates members with a role.

This type is not used in any activity, and only used as part of another schema.

Fields

binding_id: Option<String>
condition: Option<Expr>

The condition that is associated with this binding.

If the condition evaluates to true, then this binding applies to the current request.

If the condition evaluates to false, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the members in this binding.

To learn which resources support conditions in their IAM policies, see the IAM documentation.

members: Option<Vec<String>>

Specifies the identities requesting access for a Cloud Platform resource. members can have the following values:

role: Option<String>

Role that is assigned to members. For example, roles/viewer, roles/editor, or roles/owner.

Trait Implementations

impl Clone for Binding[src]

impl Debug for Binding[src]

impl Default for Binding[src]

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

impl Part for Binding[src]

impl Serialize for Binding[src]

Auto Trait Implementations

impl RefUnwindSafe for Binding[src]

impl Send for Binding[src]

impl Sync for Binding[src]

impl Unpin for Binding[src]

impl UnwindSafe for Binding[src]

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.