pub struct Backup {
pub create_time: Option<DateTime<Utc>>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub state: Option<String>,
pub status_message: Option<String>,
pub type_: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
Represents a Managed Microsoft Identities backup.
§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).
Fields§
§create_time: Option<DateTime<Utc>>Output only. The time the backups was created.
labels: Option<HashMap<String, String>>Optional. Resource labels to represent user provided metadata.
name: Option<String>Output only. The unique name of the Backup in the form of projects/{project_id}/locations/global/domains/{domain_name}/backups/{name}
state: Option<String>Output only. The current state of the backup.
status_message: Option<String>Output only. Additional information about the current status of this backup, if available.
type_: Option<String>Output only. Indicates whether it’s an on-demand backup or scheduled.
update_time: Option<DateTime<Utc>>Output only. Last update time.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Backup
impl<'de> Deserialize<'de> for Backup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl RequestValue for Backup
impl ResponseResult for Backup
Auto Trait Implementations§
impl Freeze for Backup
impl RefUnwindSafe for Backup
impl Send for Backup
impl Sync for Backup
impl Unpin for Backup
impl UnwindSafe for Backup
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