pub struct ListTlsCertsParams {
pub filter_in_use: Option<String>,
pub filter_not_after: Option<String>,
pub filter_tls_domains_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_certs
Fields§
§filter_in_use: Option<String>
Optional. Limit the returned certificates to those currently using Fastly to terminate TLS (that is, certificates associated with an activation). Permitted values: true, false.
filter_not_after: Option<String>
Limit the returned certificates to those that expire prior to the specified date in UTC. Accepts parameters: lte (e.g., filter[not_after][lte]=2020-05-05).
filter_tls_domains_id: Option<String>
Limit the returned certificates to those that include the specific domain.
include: Option<String>
Include related objects. Optional, comma-separated values. Permitted values: tls_activations
.
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 ListTlsCertsParams
impl Clone for ListTlsCertsParams
Source§fn clone(&self) -> ListTlsCertsParams
fn clone(&self) -> ListTlsCertsParams
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 Debug for ListTlsCertsParams
impl Debug for ListTlsCertsParams
Source§impl Default for ListTlsCertsParams
impl Default for ListTlsCertsParams
Source§fn default() -> ListTlsCertsParams
fn default() -> ListTlsCertsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTlsCertsParams
impl RefUnwindSafe for ListTlsCertsParams
impl Send for ListTlsCertsParams
impl Sync for ListTlsCertsParams
impl Unpin for ListTlsCertsParams
impl UnwindSafe for ListTlsCertsParams
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