[][src]Struct gcp_client::google::identity::accesscontextmanager::v1::AccessPolicy

pub struct AccessPolicy {
    pub name: String,
    pub parent: String,
    pub title: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub etag: String,
}

AccessPolicy is a container for AccessLevels (which define the necessary attributes to use Google Cloud services) and ServicePerimeters (which define regions of services able to freely pass data within a perimeter). An access policy is globally visible within an organization, and the restrictions it specifies apply to all projects within an organization.

Fields

name: String

Output only. Resource name of the AccessPolicy. Format: accessPolicies/{policy_id}

parent: String

Required. The parent of this AccessPolicy in the Cloud Resource Hierarchy. Currently immutable once created. Format: organizations/{organization_id}

title: String

Required. Human readable title. Does not affect behavior.

create_time: Option<Timestamp>

Output only. Time the AccessPolicy was created in UTC.

update_time: Option<Timestamp>

Output only. Time the AccessPolicy was updated in UTC.

etag: String

Output only. An opaque identifier for the current version of the AccessPolicy. This will always be a strongly validated etag, meaning that two Access Polices will be identical if and only if their etags are identical. Clients should not expect this to be in any specific format.

Trait Implementations

impl Clone for AccessPolicy[src]

impl Debug for AccessPolicy[src]

impl Default for AccessPolicy[src]

impl Message for AccessPolicy[src]

impl PartialEq<AccessPolicy> for AccessPolicy[src]

impl StructuralPartialEq for AccessPolicy[src]

Auto Trait Implementations

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

impl<T> WithSubscriber for T[src]