#[non_exhaustive]pub struct ListLogsRequest {
pub parent: String,
pub resource_names: Vec<String>,
pub page_size: i32,
pub page_token: String,
/* private fields */
}Expand description
The parameters to ListLogs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.parent: StringRequired. The resource name to list logs for:
projects/[PROJECT_ID]organizations/[ORGANIZATION_ID]billingAccounts/[BILLING_ACCOUNT_ID]folders/[FOLDER_ID]
resource_names: Vec<String>Optional. List of resource names to list logs for:
projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]billingAccounts/[BILLING_ACCOUNT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]folders/[FOLDER_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]
To support legacy queries, it could also be:
projects/[PROJECT_ID]organizations/[ORGANIZATION_ID]billingAccounts/[BILLING_ACCOUNT_ID]folders/[FOLDER_ID]
The resource name in the parent field is added to this list.
page_size: i32Optional. The maximum number of results to return from this request.
Non-positive values are ignored. The presence of nextPageToken in the
response indicates that more results might be available.
page_token: StringOptional. If present, then retrieve the next batch of results from the
preceding call to this method. pageToken must be the value of
nextPageToken from the previous response. The values of other method
parameters should be identical to those in the previous call.
Implementations§
Source§impl ListLogsRequest
impl ListLogsRequest
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_resource_names<T, V>(self, v: T) -> Self
pub fn set_resource_names<T, V>(self, v: T) -> Self
Sets the value of resource_names.
§Example
ⓘ
let x = ListLogsRequest::new().set_resource_names(["a", "b", "c"]);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
Trait Implementations§
Source§impl Clone for ListLogsRequest
impl Clone for ListLogsRequest
Source§fn clone(&self) -> ListLogsRequest
fn clone(&self) -> ListLogsRequest
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 ListLogsRequest
impl Debug for ListLogsRequest
Source§impl Default for ListLogsRequest
impl Default for ListLogsRequest
Source§fn default() -> ListLogsRequest
fn default() -> ListLogsRequest
Returns the “default value” for a type. Read more
Source§impl Message for ListLogsRequest
impl Message for ListLogsRequest
Source§impl PartialEq for ListLogsRequest
impl PartialEq for ListLogsRequest
impl StructuralPartialEq for ListLogsRequest
Auto Trait Implementations§
impl Freeze for ListLogsRequest
impl RefUnwindSafe for ListLogsRequest
impl Send for ListLogsRequest
impl Sync for ListLogsRequest
impl Unpin for ListLogsRequest
impl UnwindSafe for ListLogsRequest
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