pub struct Endpoint {Show 14 fields
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub endpoint_forwarding_rule: Option<String>,
pub endpoint_ip: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub network: Option<String>,
pub satisfies_pzi: Option<bool>,
pub satisfies_pzs: Option<bool>,
pub severity: Option<String>,
pub state: Option<String>,
pub threat_exceptions: Option<Vec<String>>,
pub traffic_logs: Option<bool>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
Endpoint describes a single IDS endpoint. It defines a forwarding rule to which packets can be sent for IDS inspection.
§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).
- locations endpoints create projects (request)
- locations endpoints get projects (response)
- locations endpoints patch projects (request)
Fields§
§create_time: Option<DateTime<Utc>>
Output only. The create time timestamp.
description: Option<String>
User-provided description of the endpoint
endpoint_forwarding_rule: Option<String>
Output only. The fully qualified URL of the endpoint’s ILB Forwarding Rule.
endpoint_ip: Option<String>
Output only. The IP address of the IDS Endpoint’s ILB.
labels: Option<HashMap<String, String>>
The labels of the endpoint.
name: Option<String>
Output only. The name of the endpoint.
network: Option<String>
Required. The fully qualified URL of the network to which the IDS Endpoint is attached.
satisfies_pzi: Option<bool>
Output only. [Output Only] Reserved for future use.
satisfies_pzs: Option<bool>
Output only. [Output Only] Reserved for future use.
severity: Option<String>
Required. Lowest threat severity that this endpoint will alert on.
state: Option<String>
Output only. Current state of the endpoint.
threat_exceptions: Option<Vec<String>>
List of threat IDs to be excepted from generating alerts.
traffic_logs: Option<bool>
Whether the endpoint should report traffic logs in addition to threat logs.
update_time: Option<DateTime<Utc>>
Output only. The update time timestamp.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Endpoint
impl<'de> Deserialize<'de> for Endpoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for Endpoint
impl ResponseResult for Endpoint
Auto Trait Implementations§
impl Freeze for Endpoint
impl RefUnwindSafe for Endpoint
impl Send for Endpoint
impl Sync for Endpoint
impl Unpin for Endpoint
impl UnwindSafe for Endpoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more