[][src]Enum gcp_client::google::identity::accesscontextmanager::v1::service_perimeter::PerimeterType

#[repr(i32)]pub enum PerimeterType {
    Regular,
    Bridge,
}

Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter.

In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in.

Perimeter Bridges are typically useful when building more complex toplogies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves.

Variants

Regular

Regular Perimeter.

Bridge

Perimeter Bridge.

Implementations

impl PerimeterType[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of PerimeterType.

pub fn from_i32(value: i32) -> Option<PerimeterType>[src]

Converts an i32 to a PerimeterType, or None if value is not a valid variant.

Trait Implementations

impl Clone for PerimeterType[src]

impl Copy for PerimeterType[src]

impl Debug for PerimeterType[src]

impl Default for PerimeterType[src]

impl Eq for PerimeterType[src]

impl From<PerimeterType> for i32[src]

impl Hash for PerimeterType[src]

impl Ord for PerimeterType[src]

impl PartialEq<PerimeterType> for PerimeterType[src]

impl PartialOrd<PerimeterType> for PerimeterType[src]

impl StructuralEq for PerimeterType[src]

impl StructuralPartialEq for PerimeterType[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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]