pub struct SecurityProfileGroup {
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub etag: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub threat_prevention_profile: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
SecurityProfileGroup is a resource that defines the behavior for various ProfileTypes. Next ID: 9
§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§
§create_time: Option<DateTime<Utc>>
Output only. Resource creation timestamp.
description: Option<String>
Optional. An optional description of the profile group. Max length 2048 characters.
etag: Option<String>
Output only. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
labels: Option<HashMap<String, String>>
Optional. Labels as key value pairs.
name: Option<String>
Immutable. Identifier. Name of the SecurityProfileGroup resource. It matches pattern projects|organizations/*/locations/{location}/securityProfileGroups/{security_profile_group}
.
threat_prevention_profile: Option<String>
Optional. Reference to a SecurityProfile with the threat prevention configuration for the SecurityProfileGroup.
update_time: Option<DateTime<Utc>>
Output only. Last resource update timestamp.
Trait Implementations§
Source§impl Clone for SecurityProfileGroup
impl Clone for SecurityProfileGroup
Source§fn clone(&self) -> SecurityProfileGroup
fn clone(&self) -> SecurityProfileGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SecurityProfileGroup
impl Debug for SecurityProfileGroup
Source§impl Default for SecurityProfileGroup
impl Default for SecurityProfileGroup
Source§fn default() -> SecurityProfileGroup
fn default() -> SecurityProfileGroup
Source§impl<'de> Deserialize<'de> for SecurityProfileGroup
impl<'de> Deserialize<'de> for SecurityProfileGroup
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>,
Source§impl Serialize for SecurityProfileGroup
impl Serialize for SecurityProfileGroup
impl RequestValue for SecurityProfileGroup
impl ResponseResult for SecurityProfileGroup
Auto Trait Implementations§
impl Freeze for SecurityProfileGroup
impl RefUnwindSafe for SecurityProfileGroup
impl Send for SecurityProfileGroup
impl Sync for SecurityProfileGroup
impl Unpin for SecurityProfileGroup
impl UnwindSafe for SecurityProfileGroup
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