Struct fastly_api::apis::tls_subscriptions_api::ListTlsSubsParams
source · pub struct ListTlsSubsParams {
pub filter_state: Option<String>,
pub filter_tls_domains_id: Option<String>,
pub filter_has_active_order: Option<bool>,
pub include: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
pub sort: Option<String>,
}
Expand description
struct for passing parameters to the method list_tls_subs
Fields§
§filter_state: Option<String>
Limit the returned subscriptions by state. Valid values are pending
, processing
, issued
, renewing
, and failed
. Accepts parameters: not
(e.g., filter[state][not]=renewing
).
filter_tls_domains_id: Option<String>
Limit the returned subscriptions to those that include the specific domain.
filter_has_active_order: Option<bool>
Limit the returned subscriptions to those that have currently active orders. Permitted values: true
.
include: Option<String>
Include related objects. Optional, comma-separated values. Permitted values: tls_authorizations
and tls_authorizations.globalsign_email_challenge
.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
sort: Option<String>
The order in which to list the results by creation date.
Trait Implementations§
source§impl Clone for ListTlsSubsParams
impl Clone for ListTlsSubsParams
source§fn clone(&self) -> ListTlsSubsParams
fn clone(&self) -> ListTlsSubsParams
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 ListTlsSubsParams
impl Debug for ListTlsSubsParams
source§impl Default for ListTlsSubsParams
impl Default for ListTlsSubsParams
source§fn default() -> ListTlsSubsParams
fn default() -> ListTlsSubsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ListTlsSubsParams
impl Send for ListTlsSubsParams
impl Sync for ListTlsSubsParams
impl Unpin for ListTlsSubsParams
impl UnwindSafe for ListTlsSubsParams
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