pub struct GoogleCloudRunV2Condition {
pub execution_reason: Option<String>,
pub last_transition_time: Option<DateTime<Utc>>,
pub message: Option<String>,
pub reason: Option<String>,
pub revision_reason: Option<String>,
pub severity: Option<String>,
pub state: Option<String>,
pub type_: Option<String>,
}
Expand description
Defines a status condition for a resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§execution_reason: Option<String>
Output only. A reason for the execution condition.
last_transition_time: Option<DateTime<Utc>>
Last time the condition transitioned from one status to another.
message: Option<String>
Human readable message indicating details about the current status.
reason: Option<String>
Output only. A common (service-level) reason for this condition.
revision_reason: Option<String>
Output only. A reason for the revision condition.
severity: Option<String>
How to interpret failures of this condition, one of Error, Warning, Info
state: Option<String>
State of the condition.
type_: Option<String>
type is used to communicate the status of the reconciliation process. See also: https://github.com/knative/serving/blob/main/docs/spec/errors.md#error-conditions-and-reporting Types common to all resources include: * “Ready”: True when the Resource is ready.
Trait Implementations§
Source§impl Clone for GoogleCloudRunV2Condition
impl Clone for GoogleCloudRunV2Condition
Source§fn clone(&self) -> GoogleCloudRunV2Condition
fn clone(&self) -> GoogleCloudRunV2Condition
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GoogleCloudRunV2Condition
impl Debug for GoogleCloudRunV2Condition
Source§impl Default for GoogleCloudRunV2Condition
impl Default for GoogleCloudRunV2Condition
Source§fn default() -> GoogleCloudRunV2Condition
fn default() -> GoogleCloudRunV2Condition
Source§impl<'de> Deserialize<'de> for GoogleCloudRunV2Condition
impl<'de> Deserialize<'de> for GoogleCloudRunV2Condition
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 Part for GoogleCloudRunV2Condition
Auto Trait Implementations§
impl Freeze for GoogleCloudRunV2Condition
impl RefUnwindSafe for GoogleCloudRunV2Condition
impl Send for GoogleCloudRunV2Condition
impl Sync for GoogleCloudRunV2Condition
impl Unpin for GoogleCloudRunV2Condition
impl UnwindSafe for GoogleCloudRunV2Condition
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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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