pub struct ListBackupCollectionsResponse {
pub backup_collections: Option<Vec<BackupCollection>>,
pub next_page_token: Option<String>,
pub unreachable: Option<Vec<String>>,
}Expand description
Response for [ListBackupCollections].
§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 backup collections list projects (response)
Fields§
§backup_collections: Option<Vec<BackupCollection>>A list of backupCollections in the project. If the location_id in the parent field of the request is “-”, all regions available to the project are queried, and the results aggregated. If in such an aggregated query a location is unavailable, a placeholder backupCollection entry is included in the response with the name field set to a value of the form projects/{project_id}/locations/{location_id}/backupCollections/- and the status field set to ERROR and status_message field set to “location not available for ListBackupCollections”.
next_page_token: Option<String>Token to retrieve the next page of results, or empty if there are no more results in the list.
unreachable: Option<Vec<String>>Locations that could not be reached.
Trait Implementations§
Source§impl Clone for ListBackupCollectionsResponse
impl Clone for ListBackupCollectionsResponse
Source§fn clone(&self) -> ListBackupCollectionsResponse
fn clone(&self) -> ListBackupCollectionsResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more