pub struct CertificateMap {
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub gclb_targets: Option<Vec<GclbTarget>>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
Defines a collection of certificate configurations.
§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 certificate maps create projects (request)
- locations certificate maps get projects (response)
- locations certificate maps patch projects (request)
Fields§
§create_time: Option<DateTime<Utc>>Output only. The creation timestamp of a Certificate Map.
description: Option<String>One or more paragraphs of text description of a certificate map.
gclb_targets: Option<Vec<GclbTarget>>Output only. A list of GCLB targets that use this Certificate Map. A Target Proxy is only present on this list if it’s attached to a Forwarding Rule.
labels: Option<HashMap<String, String>>Set of labels associated with a Certificate Map.
name: Option<String>A user-defined name of the Certificate Map. Certificate Map names must be unique globally and match pattern projects/*/locations/*/certificateMaps/*.
update_time: Option<DateTime<Utc>>Output only. The update timestamp of a Certificate Map.
Trait Implementations§
Source§impl Clone for CertificateMap
impl Clone for CertificateMap
Source§fn clone(&self) -> CertificateMap
fn clone(&self) -> CertificateMap
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CertificateMap
impl Debug for CertificateMap
Source§impl Default for CertificateMap
impl Default for CertificateMap
Source§fn default() -> CertificateMap
fn default() -> CertificateMap
Source§impl<'de> Deserialize<'de> for CertificateMap
impl<'de> Deserialize<'de> for CertificateMap
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 CertificateMap
impl Serialize for CertificateMap
impl RequestValue for CertificateMap
impl ResponseResult for CertificateMap
Auto Trait Implementations§
impl Freeze for CertificateMap
impl RefUnwindSafe for CertificateMap
impl Send for CertificateMap
impl Sync for CertificateMap
impl Unpin for CertificateMap
impl UnwindSafe for CertificateMap
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