pub struct TimedPromoteReleaseOperation {
pub phase: Option<String>,
pub release: Option<String>,
pub target_id: Option<String>,
}Expand description
Contains the information of an automated timed promote-release operation.
This type is not used in any activity, and only used as part of another schema.
Fields§
§phase: Option<String>Output only. The starting phase of the rollout created by this operation.
release: Option<String>Output only. The name of the release to be promoted.
target_id: Option<String>Output only. The ID of the target that represents the promotion stage to which the release will be promoted. The value of this field is the last segment of a target name.
Trait Implementations§
Source§impl Clone for TimedPromoteReleaseOperation
impl Clone for TimedPromoteReleaseOperation
Source§fn clone(&self) -> TimedPromoteReleaseOperation
fn clone(&self) -> TimedPromoteReleaseOperation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimedPromoteReleaseOperation
impl Debug for TimedPromoteReleaseOperation
Source§impl Default for TimedPromoteReleaseOperation
impl Default for TimedPromoteReleaseOperation
Source§fn default() -> TimedPromoteReleaseOperation
fn default() -> TimedPromoteReleaseOperation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimedPromoteReleaseOperation
impl<'de> Deserialize<'de> for TimedPromoteReleaseOperation
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 Part for TimedPromoteReleaseOperation
Auto Trait Implementations§
impl Freeze for TimedPromoteReleaseOperation
impl RefUnwindSafe for TimedPromoteReleaseOperation
impl Send for TimedPromoteReleaseOperation
impl Sync for TimedPromoteReleaseOperation
impl Unpin for TimedPromoteReleaseOperation
impl UnwindSafe for TimedPromoteReleaseOperation
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