pub struct TlsSubscriptionDataAttributes {
pub certificate_authority: Option<CertificateAuthority>,
}
Fields§
The entity that issues and certifies the TLS certificates for your subscription, either certainly
, lets-encrypt
, or globalsign
. To migrate the subscription from one certificate authority to another, such as to migrate from ‘lets-encrypt’ to ‘certainly’, pass certificate_authority
to the PATCH endpoint. To migrate from ‘globalsign’ to ‘certainly’, contact Fastly Support.
Implementations§
Trait Implementations§
Source§impl Clone for TlsSubscriptionDataAttributes
impl Clone for TlsSubscriptionDataAttributes
Source§fn clone(&self) -> TlsSubscriptionDataAttributes
fn clone(&self) -> TlsSubscriptionDataAttributes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for TlsSubscriptionDataAttributes
impl Default for TlsSubscriptionDataAttributes
Source§fn default() -> TlsSubscriptionDataAttributes
fn default() -> TlsSubscriptionDataAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TlsSubscriptionDataAttributes
impl<'de> Deserialize<'de> for TlsSubscriptionDataAttributes
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TlsSubscriptionDataAttributes
impl PartialEq for TlsSubscriptionDataAttributes
Source§fn eq(&self, other: &TlsSubscriptionDataAttributes) -> bool
fn eq(&self, other: &TlsSubscriptionDataAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TlsSubscriptionDataAttributes
Auto Trait Implementations§
impl Freeze for TlsSubscriptionDataAttributes
impl RefUnwindSafe for TlsSubscriptionDataAttributes
impl Send for TlsSubscriptionDataAttributes
impl Sync for TlsSubscriptionDataAttributes
impl Unpin for TlsSubscriptionDataAttributes
impl UnwindSafe for TlsSubscriptionDataAttributes
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
Mutably borrows from an owned value. Read more