Struct gapi_grpc::google::identity::accesscontextmanager::v1::AccessLevel[][src]

pub struct AccessLevel {
    pub name: String,
    pub title: String,
    pub description: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub level: Option<Level>,
}

An AccessLevel is a label that can be applied to requests to Google Cloud services, along with a list of requirements necessary for the label to be applied.

Fields

name: String

Required. Resource name for the Access Level. The short_name component must begin with a letter and only include alphanumeric and ‘_’. Format: accessPolicies/{policy_id}/accessLevels/{short_name}. The maximum length of the short_name component is 50 characters.

title: String

Human readable title. Must be unique within the Policy.

description: String

Description of the AccessLevel and its use. Does not affect behavior.

create_time: Option<Timestamp>

Output only. Time the AccessLevel was created in UTC.

update_time: Option<Timestamp>

Output only. Time the AccessLevel was updated in UTC.

level: Option<Level>

Required. Describes the necessary conditions for the level to apply.

Trait Implementations

impl Clone for AccessLevel[src]

impl Debug for AccessLevel[src]

impl Default for AccessLevel[src]

impl Message for AccessLevel[src]

impl PartialEq<AccessLevel> for AccessLevel[src]

impl StructuralPartialEq for AccessLevel[src]

Auto Trait Implementations

impl RefUnwindSafe for AccessLevel

impl Send for AccessLevel

impl Sync for AccessLevel

impl Unpin for AccessLevel

impl UnwindSafe for AccessLevel

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]