pub struct ListSavedQueriesResponse {
pub next_page_token: Option<String>,
pub saved_queries: Option<Vec<SavedQuery>>,
pub unreachable: Option<Vec<String>>,
}Expand description
The response from ListSavedQueries.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations saved queries list billing accounts (response)
- locations saved queries list folders (response)
- locations saved queries list organizations (response)
- locations saved queries list projects (response)
Fields§
§next_page_token: Option<String>If there might be more results than appear in this response, then nextPageToken is included. To get the next set of results, call the same method again using the value of nextPageToken as pageToken.
saved_queries: Option<Vec<SavedQuery>>A list of saved queries.
unreachable: Option<Vec<String>>The unreachable resources. It can be either 1) a saved query if a specific query is unreachable or 2) a location if a specific location is unreachabe. “projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]” “projects/[PROJECT_ID]/locations/[LOCATION_ID]” For example: “projects/my-project/locations/global/savedQueries/12345678” “projects/my-project/locations/global” If there are unreachable resources, the response will first return pages that contain saved queries, and then return pages that contain the unreachable resources.
Trait Implementations§
Source§impl Clone for ListSavedQueriesResponse
impl Clone for ListSavedQueriesResponse
Source§fn clone(&self) -> ListSavedQueriesResponse
fn clone(&self) -> ListSavedQueriesResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more