pub struct ListTlsDomainsParams {
pub filter_in_use: Option<String>,
pub filter_tls_certificates_id: Option<String>,
pub filter_tls_subscriptions_id: Option<String>,
pub include: Option<String>,
pub sort: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}
Expand description
struct for passing parameters to the method list_tls_domains
Fields§
§filter_in_use: Option<String>
Optional. Limit the returned domains to those currently using Fastly to terminate TLS with SNI (that is, domains considered "in use") Permitted values: true, false.
filter_tls_certificates_id: Option<String>
Optional. Limit the returned domains to those listed in the given TLS certificate’s SAN list.
filter_tls_subscriptions_id: Option<String>
Optional. Limit the returned domains to those for a given TLS subscription.
include: Option<String>
Include related objects. Optional, comma-separated values. Permitted values: tls_activations
, tls_certificates
, tls_subscriptions
, tls_subscriptions.tls_authorizations
, tls_authorizations.globalsign_email_challenge
, and tls_authorizations.self_managed_http_challenge
.
sort: Option<String>
The order in which to list the results.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
Trait Implementations§
Source§impl Clone for ListTlsDomainsParams
impl Clone for ListTlsDomainsParams
Source§fn clone(&self) -> ListTlsDomainsParams
fn clone(&self) -> ListTlsDomainsParams
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 ListTlsDomainsParams
impl Debug for ListTlsDomainsParams
Source§impl Default for ListTlsDomainsParams
impl Default for ListTlsDomainsParams
Source§fn default() -> ListTlsDomainsParams
fn default() -> ListTlsDomainsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTlsDomainsParams
impl RefUnwindSafe for ListTlsDomainsParams
impl Send for ListTlsDomainsParams
impl Sync for ListTlsDomainsParams
impl Unpin for ListTlsDomainsParams
impl UnwindSafe for ListTlsDomainsParams
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