#[non_exhaustive]pub struct ListCertificateRevocationListsRequest {
pub parent: String,
pub page_size: i32,
pub page_token: String,
pub filter: String,
pub order_by: String,
/* private fields */
}Expand description
Request message for CertificateAuthorityService.ListCertificateRevocationLists.
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.parent: StringRequired. The resource name of the location associated with the
CertificateRevocationLists,
in the format projects/*/locations/*/caPools/*/certificateAuthorities/*.
page_size: i32Optional. Limit on the number of CertificateRevocationLists to include in the response. Further CertificateRevocationLists can subsequently be obtained by including the ListCertificateRevocationListsResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.
page_token: StringOptional. Pagination token, returned earlier via ListCertificateRevocationListsResponse.next_page_token.
filter: StringOptional. Only include resources that match the filter in the response.
order_by: StringOptional. Specify how the results should be sorted.
Implementations§
Source§impl ListCertificateRevocationListsRequest
impl ListCertificateRevocationListsRequest
pub fn new() -> Self
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
pub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
Sourcepub fn set_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of page_token.
§Example
let x = ListCertificateRevocationListsRequest::new().set_page_token("example");Sourcepub fn set_filter<T: Into<String>>(self, v: T) -> Self
pub fn set_filter<T: Into<String>>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for ListCertificateRevocationListsRequest
impl Clone for ListCertificateRevocationListsRequest
Source§fn clone(&self) -> ListCertificateRevocationListsRequest
fn clone(&self) -> ListCertificateRevocationListsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ListCertificateRevocationListsRequest
impl Default for ListCertificateRevocationListsRequest
Source§fn default() -> ListCertificateRevocationListsRequest
fn default() -> ListCertificateRevocationListsRequest
Source§impl PartialEq for ListCertificateRevocationListsRequest
impl PartialEq for ListCertificateRevocationListsRequest
Source§fn eq(&self, other: &ListCertificateRevocationListsRequest) -> bool
fn eq(&self, other: &ListCertificateRevocationListsRequest) -> bool
self and other values to be equal, and is used by ==.