pub struct DeploymentsCancelPreviewRequest {
pub fingerprint: Option<Vec<u8>>,
}
Expand description
There is no detailed description.
§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).
- cancel preview deployments (request)
Fields§
§fingerprint: Option<Vec<u8>>
Specifies a fingerprint for cancelPreview()
requests. A fingerprint is a randomly generated value that must be provided in cancelPreview()
requests to perform optimistic locking. This ensures optimistic concurrency so that the deployment does not have conflicting requests (e.g. if someone attempts to make a new update request while another user attempts to cancel a preview, this would prevent one of the requests). The fingerprint is initially generated by Deployment Manager and changes after every request to modify a deployment. To get the latest fingerprint value, perform a get()
request on the deployment.
Trait Implementations§
Source§impl Clone for DeploymentsCancelPreviewRequest
impl Clone for DeploymentsCancelPreviewRequest
Source§fn clone(&self) -> DeploymentsCancelPreviewRequest
fn clone(&self) -> DeploymentsCancelPreviewRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DeploymentsCancelPreviewRequest
impl Default for DeploymentsCancelPreviewRequest
Source§fn default() -> DeploymentsCancelPreviewRequest
fn default() -> DeploymentsCancelPreviewRequest
Source§impl<'de> Deserialize<'de> for DeploymentsCancelPreviewRequest
impl<'de> Deserialize<'de> for DeploymentsCancelPreviewRequest
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 RequestValue for DeploymentsCancelPreviewRequest
Auto Trait Implementations§
impl Freeze for DeploymentsCancelPreviewRequest
impl RefUnwindSafe for DeploymentsCancelPreviewRequest
impl Send for DeploymentsCancelPreviewRequest
impl Sync for DeploymentsCancelPreviewRequest
impl Unpin for DeploymentsCancelPreviewRequest
impl UnwindSafe for DeploymentsCancelPreviewRequest
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