pub struct ListTlsSubsParams {
pub filter_state: Option<String>,
pub filter_tls_domains_id: Option<String>,
pub filter_has_active_order: Option<bool>,
pub filter_certificate_authority: Option<String>,
pub sort: Option<String>,
pub include: Option<String>,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}
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
.
Limit the returned subscriptions to a specific certification authority. Values may include certainly
, lets-encrypt
, or globalsign
.
sort: Option<String>
The order in which to list the results.
include: Option<String>
Include related objects. Optional, comma-separated values. Permitted values: tls_authorizations
, tls_authorizations.globalsign_email_challenge
, tls_authorizations.self_managed_http_challenge
, and tls_certificates
.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
Trait Implementations§
Source§impl Clone for ListTlsSubsParams
impl Clone for ListTlsSubsParams
Source§fn clone(&self) -> ListTlsSubsParams
fn clone(&self) -> ListTlsSubsParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more