[][src]Struct google_iam1::Role

pub struct Role {
    pub etag: Option<String>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub deleted: Option<bool>,
    pub included_permissions: Option<Vec<String>>,
    pub stage: Option<String>,
    pub name: Option<String>,
}

A role in the Identity and Access Management API.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

etag: Option<String>

Used to perform a consistent read-modify-write.

description: Option<String>

Optional. A human-readable description for the role.

title: Option<String>

Optional. A human-readable title for the role. Typically this is limited to 100 UTF-8 bytes.

deleted: Option<bool>

The current deleted state of the role. This field is read only. It will be ignored in calls to CreateRole and UpdateRole.

included_permissions: Option<Vec<String>>

The names of the permissions this role grants when bound in an IAM policy.

stage: Option<String>

The current launch stage of the role. If the ALPHA launch stage has been selected for a role, the stage field will not be included in the returned definition for the role.

name: Option<String>

The name of the role.

When Role is used in CreateRole, the role name must not be set.

When Role is used in output and other input such as UpdateRole, the role name is the complete path, e.g., roles/logging.viewer for predefined roles and organizations/{ORGANIZATION_ID}/roles/logging.viewer for custom roles.

Trait Implementations

impl Clone for Role[src]

impl Debug for Role[src]

impl Default for Role[src]

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

impl RequestValue for Role[src]

impl Resource for Role[src]

impl ResponseResult for Role[src]

impl Serialize for Role[src]

Auto Trait Implementations

impl RefUnwindSafe for Role

impl Send for Role

impl Sync for Role

impl Unpin for Role

impl UnwindSafe for Role

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, 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.

impl<T> Typeable for T where
    T: Any