[][src]Struct google_accesscontextmanager1::ServicePerimeter

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

ServicePerimeter describes a set of GCP 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 GCP project can only belong to a single regular Service Perimeter. Service Perimeter Bridges can contain only GCP projects as members, a single GCP 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

status: Option<ServicePerimeterConfig>

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

update_time: Option<String>

Output only. Time the ServicePerimeter was updated in UTC.

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}

title: Option<String>

Human readable title. Must be unique within the Policy.

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, the restricted service list as well as access level lists must be empty.

create_time: Option<String>

Output only. Time the ServicePerimeter was created in UTC.

description: Option<String>

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

Trait Implementations

impl ResponseResult for ServicePerimeter[src]

impl RequestValue for ServicePerimeter[src]

impl Default for ServicePerimeter[src]

impl Clone for ServicePerimeter[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ServicePerimeter[src]

impl Serialize for ServicePerimeter[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]