#[non_exhaustive]pub struct ListServiceAccountApplicationKeysOptionalParams {
pub page_size: Option<i64>,
pub page_number: Option<i64>,
pub sort: Option<ApplicationKeysSort>,
pub filter: Option<String>,
pub filter_created_at_start: Option<String>,
pub filter_created_at_end: Option<String>,
}
Expand description
ListServiceAccountApplicationKeysOptionalParams is a struct for passing parameters to the method ServiceAccountsAPI::list_service_account_application_keys
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.page_size: Option<i64>
Size for a given page. The maximum allowed value is 100.
page_number: Option<i64>
Specific page number to return.
sort: Option<ApplicationKeysSort>
Application key attribute used to sort results. Sort order is ascending by default. In order to specify a descending sort, prefix the attribute with a minus sign.
filter: Option<String>
Filter application keys by the specified string.
filter_created_at_start: Option<String>
Only include application keys created on or after the specified date.
filter_created_at_end: Option<String>
Only include application keys created on or before the specified date.
Implementations§
Source§impl ListServiceAccountApplicationKeysOptionalParams
impl ListServiceAccountApplicationKeysOptionalParams
Sourcepub fn page_size(self, value: i64) -> Self
pub fn page_size(self, value: i64) -> Self
Size for a given page. The maximum allowed value is 100.
Sourcepub fn page_number(self, value: i64) -> Self
pub fn page_number(self, value: i64) -> Self
Specific page number to return.
Sourcepub fn sort(self, value: ApplicationKeysSort) -> Self
pub fn sort(self, value: ApplicationKeysSort) -> Self
Application key attribute used to sort results. Sort order is ascending by default. In order to specify a descending sort, prefix the attribute with a minus sign.
Sourcepub fn filter_created_at_start(self, value: String) -> Self
pub fn filter_created_at_start(self, value: String) -> Self
Only include application keys created on or after the specified date.
Sourcepub fn filter_created_at_end(self, value: String) -> Self
pub fn filter_created_at_end(self, value: String) -> Self
Only include application keys created on or before the specified date.
Trait Implementations§
Source§impl Clone for ListServiceAccountApplicationKeysOptionalParams
impl Clone for ListServiceAccountApplicationKeysOptionalParams
Source§fn clone(&self) -> ListServiceAccountApplicationKeysOptionalParams
fn clone(&self) -> ListServiceAccountApplicationKeysOptionalParams
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read more