Struct google_api_proto::google::cloud::compute::v1::SslCertificate
source · pub struct SslCertificate {Show 14 fields
pub certificate: Option<String>,
pub creation_timestamp: Option<String>,
pub description: Option<String>,
pub expire_time: Option<String>,
pub id: Option<u64>,
pub kind: Option<String>,
pub managed: Option<SslCertificateManagedSslCertificate>,
pub name: Option<String>,
pub private_key: Option<String>,
pub region: Option<String>,
pub self_link: Option<String>,
pub self_managed: Option<SslCertificateSelfManagedSslCertificate>,
pub subject_alternative_names: Vec<String>,
pub type: Option<String>,
}
Expand description
Represents an SSL certificate resource. Google Compute Engine has two SSL certificate resources: * Global * Regional The global SSL certificates (sslCertificates) are used by: - Global external Application Load Balancers - Classic Application Load Balancers - Proxy Network Load Balancers (with target SSL proxies) The regional SSL certificates (regionSslCertificates) are used by: - Regional external Application Load Balancers - Regional internal Application Load Balancers Optionally, certificate file contents that you upload can contain a set of up to five PEM-encoded certificates. The API call creates an object (sslCertificate) that holds this data. You can use SSL keys and certificates to secure connections to a load balancer. For more information, read Creating and using SSL certificates, SSL certificates quotas and limits, and Troubleshooting SSL certificates.
Fields§
§certificate: Option<String>
A value read into memory from a certificate file. The certificate file must be in PEM format. The certificate chain must be no greater than 5 certs long. The chain must include at least one intermediate cert.
creation_timestamp: Option<String>
[Output Only] Creation timestamp in RFC3339 text format.
description: Option<String>
An optional description of this resource. Provide this property when you create the resource.
expire_time: Option<String>
[Output Only] Expire time of the certificate. RFC3339
id: Option<u64>
[Output Only] The unique identifier for the resource. This identifier is defined by the server.
kind: Option<String>
[Output Only] Type of the resource. Always compute#sslCertificate for SSL certificates.
managed: Option<SslCertificateManagedSslCertificate>
Configuration and status of a managed SSL certificate.
name: Option<String>
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z](\[-a-z0-9\]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
private_key: Option<String>
A value read into memory from a write-only private key file. The private key file must be in PEM format. For security, only insert requests include this field.
region: Option<String>
[Output Only] URL of the region where the regional SSL Certificate resides. This field is not applicable to global SSL Certificate.
self_link: Option<String>
[Output only] Server-defined URL for the resource.
self_managed: Option<SslCertificateSelfManagedSslCertificate>
Configuration and status of a self-managed SSL certificate.
subject_alternative_names: Vec<String>
[Output Only] Domains associated with the certificate via Subject Alternative Name.
type: Option<String>
(Optional) Specifies the type of SSL certificate, either “SELF_MANAGED” or “MANAGED”. If not specified, the certificate is self-managed and the fields certificate and private_key are used. Check the Type enum for the list of possible values.
Implementations§
source§impl SslCertificate
impl SslCertificate
sourcepub fn creation_timestamp(&self) -> &str
pub fn creation_timestamp(&self) -> &str
Returns the value of creation_timestamp
, or the default value if creation_timestamp
is unset.
sourcepub fn region(&self) -> &str
pub fn region(&self) -> &str
Returns the value of region
, or the default value if region
is unset.
sourcepub fn certificate(&self) -> &str
pub fn certificate(&self) -> &str
Returns the value of certificate
, or the default value if certificate
is unset.
sourcepub fn private_key(&self) -> &str
pub fn private_key(&self) -> &str
Returns the value of private_key
, or the default value if private_key
is unset.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Returns the value of description
, or the default value if description
is unset.
sourcepub fn expire_time(&self) -> &str
pub fn expire_time(&self) -> &str
Returns the value of expire_time
, or the default value if expire_time
is unset.
Trait Implementations§
source§impl Clone for SslCertificate
impl Clone for SslCertificate
source§fn clone(&self) -> SslCertificate
fn clone(&self) -> SslCertificate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SslCertificate
impl Debug for SslCertificate
source§impl Default for SslCertificate
impl Default for SslCertificate
source§impl Message for SslCertificate
impl Message for SslCertificate
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for SslCertificate
impl PartialEq for SslCertificate
source§fn eq(&self, other: &SslCertificate) -> bool
fn eq(&self, other: &SslCertificate) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SslCertificate
Auto Trait Implementations§
impl Freeze for SslCertificate
impl RefUnwindSafe for SslCertificate
impl Send for SslCertificate
impl Sync for SslCertificate
impl Unpin for SslCertificate
impl UnwindSafe for SslCertificate
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request