Struct fastly_api::apis::tls_certificates_api::ListTlsCertsParams
source · 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 page_number: Option<i32>,
pub page_size: Option<i32>,
pub sort: Option<String>,
}
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
.
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 ListTlsCertsParams
impl Clone for ListTlsCertsParams
source§fn clone(&self) -> ListTlsCertsParams
fn clone(&self) -> ListTlsCertsParams
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 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 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