Struct google_container1::Operation
source · pub struct Operation {
pub status: Option<String>,
pub status_message: Option<String>,
pub start_time: Option<String>,
pub zone: Option<String>,
pub detail: Option<String>,
pub target_link: Option<String>,
pub operation_type: Option<String>,
pub end_time: Option<String>,
pub self_link: Option<String>,
pub name: Option<String>,
}Expand description
This operation resource represents operations that may have happened or are happening on the cluster. All fields are output only.
§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).
- zones clusters node pools rollback projects (response)
- zones clusters node pools create projects (response)
- zones clusters monitoring projects (response)
- zones clusters delete projects (response)
- zones clusters legacy abac projects (response)
- zones clusters set master auth projects (response)
- zones clusters start ip rotation projects (response)
- zones clusters create projects (response)
- zones clusters node pools set management projects (response)
- zones operations get projects (response)
- zones clusters logging projects (response)
- zones clusters update projects (response)
- zones clusters node pools autoscaling projects (response)
- zones clusters node pools set size projects (response)
- zones clusters set maintenance policy projects (response)
- zones clusters node pools delete projects (response)
- zones clusters locations projects (response)
- zones clusters master projects (response)
- zones clusters node pools update projects (response)
- zones clusters set network policy projects (response)
- zones clusters addons projects (response)
- zones clusters complete ip rotation projects (response)
- zones clusters resource labels projects (response)
Fields§
§status: Option<String>The current status of the operation.
status_message: Option<String>If an error has occurred, a textual description of the error.
start_time: Option<String>[Output only] The time the operation started, in RFC3339 text format.
zone: Option<String>The name of the Google Compute Engine zone in which the operation is taking place.
detail: Option<String>Detailed operation progress, if available.
target_link: Option<String>Server-defined URL for the target of the operation.
operation_type: Option<String>The operation type.
end_time: Option<String>[Output only] The time the operation completed, in RFC3339 text format.
self_link: Option<String>Server-defined URL for the resource.
name: Option<String>The server-assigned ID for the operation.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Operation
impl<'de> Deserialize<'de> for Operation
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>,
impl ResponseResult for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnwindSafe for Operation
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more