pub struct ListTlsBulkCertsParams {
pub filter_tls_domain_id: Option<String>,
pub filter_not_before: Option<String>,
pub filter_not_after: 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_bulk_certs
Fields§
§filter_tls_domain_id: Option<String>
Filter certificates by their matching, fully-qualified domain name.
filter_not_before: Option<String>
Filter the returned certificates by not_before date in UTC. Accepts parameters: lt, lte, gt, gte (e.g., filter[not_before][gte]=2020-05-05).
filter_not_after: Option<String>
Filter the returned certificates by expiry date in UTC. Accepts parameters: lt, lte, gt, gte (e.g., filter[not_after][lte]=2020-05-05).
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 ListTlsBulkCertsParams
impl Clone for ListTlsBulkCertsParams
Source§fn clone(&self) -> ListTlsBulkCertsParams
fn clone(&self) -> ListTlsBulkCertsParams
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 ListTlsBulkCertsParams
impl Debug for ListTlsBulkCertsParams
Source§impl Default for ListTlsBulkCertsParams
impl Default for ListTlsBulkCertsParams
Source§fn default() -> ListTlsBulkCertsParams
fn default() -> ListTlsBulkCertsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTlsBulkCertsParams
impl RefUnwindSafe for ListTlsBulkCertsParams
impl Send for ListTlsBulkCertsParams
impl Sync for ListTlsBulkCertsParams
impl Unpin for ListTlsBulkCertsParams
impl UnwindSafe for ListTlsBulkCertsParams
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