Struct fastly_api::apis::tls_subscriptions_api::PatchTlsSubParams
source · pub struct PatchTlsSubParams {
pub tls_subscription_id: String,
pub force: Option<bool>,
pub tls_subscription: Option<TlsSubscription>,
}
Expand description
struct for passing parameters to the method patch_tls_sub
Fields§
§tls_subscription_id: String
Alphanumeric string identifying a TLS subscription.
force: Option<bool>
A flag that allows you to edit and delete a subscription with active domains. Valid to use on PATCH and DELETE actions. As a warning, removing an active domain from a subscription or forcing the deletion of a subscription may result in breaking TLS termination to that domain.
tls_subscription: Option<TlsSubscription>
Trait Implementations§
source§impl Clone for PatchTlsSubParams
impl Clone for PatchTlsSubParams
source§fn clone(&self) -> PatchTlsSubParams
fn clone(&self) -> PatchTlsSubParams
Returns a copy 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 Debug for PatchTlsSubParams
impl Debug for PatchTlsSubParams
source§impl Default for PatchTlsSubParams
impl Default for PatchTlsSubParams
source§fn default() -> PatchTlsSubParams
fn default() -> PatchTlsSubParams
Returns the “default value” for a type. Read more