Struct google_api_proto::google::appengine::v1::SslSettings
source · pub struct SslSettings {
pub certificate_id: String,
pub ssl_management_type: i32,
pub pending_managed_certificate_id: String,
}
Expand description
SSL configuration for a DomainMapping
resource.
Fields§
§certificate_id: String
ID of the AuthorizedCertificate
resource configuring SSL for the
application. Clearing this field will remove SSL support.
By default, a managed certificate is automatically created for every
domain mapping. To omit SSL support or to configure SSL manually, specify
SslManagementType.MANUAL
on a CREATE
or UPDATE
request. You must
be authorized to administer the AuthorizedCertificate
resource to
manually map it to a DomainMapping
resource.
Example: 12345
.
ssl_management_type: i32
SSL management type for this domain. If AUTOMATIC
, a managed certificate
is automatically provisioned. If MANUAL
, certificate_id
must be
manually specified in order to configure SSL for this domain.
pending_managed_certificate_id: String
ID of the managed AuthorizedCertificate
resource currently being
provisioned, if applicable. Until the new managed certificate has been
successfully provisioned, the previous SSL state will be preserved. Once
the provisioning process completes, the certificate_id
field will reflect
the new managed certificate and this field will be left empty. To remove
SSL support while there is still a pending managed certificate, clear the
certificate_id
field with an UpdateDomainMappingRequest
.
@OutputOnly
Implementations§
source§impl SslSettings
impl SslSettings
sourcepub fn ssl_management_type(&self) -> SslManagementType
pub fn ssl_management_type(&self) -> SslManagementType
Returns the enum value of ssl_management_type
, or the default if the field is set to an invalid enum value.
sourcepub fn set_ssl_management_type(&mut self, value: SslManagementType)
pub fn set_ssl_management_type(&mut self, value: SslManagementType)
Sets ssl_management_type
to the provided enum value.
Trait Implementations§
source§impl Clone for SslSettings
impl Clone for SslSettings
source§fn clone(&self) -> SslSettings
fn clone(&self) -> SslSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SslSettings
impl Debug for SslSettings
source§impl Default for SslSettings
impl Default for SslSettings
source§impl Message for SslSettings
impl Message for SslSettings
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 SslSettings
impl PartialEq for SslSettings
source§fn eq(&self, other: &SslSettings) -> bool
fn eq(&self, other: &SslSettings) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SslSettings
Auto Trait Implementations§
impl Freeze for SslSettings
impl RefUnwindSafe for SslSettings
impl Send for SslSettings
impl Sync for SslSettings
impl Unpin for SslSettings
impl UnwindSafe for SslSettings
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