Struct google_accesscontextmanager1_beta::api::ServicePerimeter[][src]

pub struct ServicePerimeter {
    pub description: Option<String>,
    pub name: Option<String>,
    pub perimeter_type: Option<String>,
    pub status: Option<ServicePerimeterConfig>,
    pub title: Option<String>,
}

ServicePerimeter describes a set of Google Cloud resources which can freely import and export data amongst themselves, but not export outside of the ServicePerimeter. If a request with a source within this ServicePerimeter has a target outside of the ServicePerimeter, the request will be blocked. Otherwise the request is allowed. There are two types of Service Perimeter - Regular and Bridge. Regular Service Perimeters cannot overlap, a single Google Cloud project can only belong to a single regular Service Perimeter. Service Perimeter Bridges can contain only Google Cloud projects as members, a single Google Cloud project may belong to multiple Service Perimeter Bridges.

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

description: Option<String>

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

name: Option<String>

Required. Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}

perimeter_type: Option<String>

Perimeter type indicator. A single project is allowed to be a member of single regular perimeter, but multiple service perimeter bridges. A project cannot be a included in a perimeter bridge without being included in regular perimeter. For perimeter bridges, restricted/unrestricted service lists as well as access lists must be empty.

status: Option<ServicePerimeterConfig>

Current ServicePerimeter configuration. Specifies sets of resources, restricted/unrestricted services and access levels that determine perimeter content and boundaries.

title: Option<String>

Human readable title. Must be unique within the Policy.

Trait Implementations

impl Clone for ServicePerimeter[src]

impl Debug for ServicePerimeter[src]

impl Default for ServicePerimeter[src]

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

impl RequestValue for ServicePerimeter[src]

impl ResponseResult for ServicePerimeter[src]

impl Serialize for ServicePerimeter[src]

Auto Trait Implementations

impl RefUnwindSafe for ServicePerimeter[src]

impl Send for ServicePerimeter[src]

impl Sync for ServicePerimeter[src]

impl Unpin for ServicePerimeter[src]

impl UnwindSafe for ServicePerimeter[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.