#[non_exhaustive]pub struct DeleteFrameworkDeploymentRequest {
pub name: String,
pub etag: String,
/* private fields */
}Expand description
The request message for [DeleteFrameworkDeployment][].
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The name of the framework deployment that you want to delete,
in the format
organizations/{organization}/locations/{location}/frameworkDeployments/{framework_deployment}
or
projects/{project}/locations/{location}/frameworkDeployments/{framework_deployment}.
The only supported location is global.
etag: StringOptional. An opaque identifier for the current version of the resource.
If you provide this value, then it must match the existing value. If the
values don’t match, then the request fails with an
[ABORTED][google.rpc.Code.ABORTED] error.
If you omit this value, then the resource is deleted regardless of its
current etag value.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteFrameworkDeploymentRequest
impl Clone for DeleteFrameworkDeploymentRequest
Source§fn clone(&self) -> DeleteFrameworkDeploymentRequest
fn clone(&self) -> DeleteFrameworkDeploymentRequest
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 Default for DeleteFrameworkDeploymentRequest
impl Default for DeleteFrameworkDeploymentRequest
Source§fn default() -> DeleteFrameworkDeploymentRequest
fn default() -> DeleteFrameworkDeploymentRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteFrameworkDeploymentRequest
impl PartialEq for DeleteFrameworkDeploymentRequest
Source§fn eq(&self, other: &DeleteFrameworkDeploymentRequest) -> bool
fn eq(&self, other: &DeleteFrameworkDeploymentRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteFrameworkDeploymentRequest
Auto Trait Implementations§
impl Freeze for DeleteFrameworkDeploymentRequest
impl RefUnwindSafe for DeleteFrameworkDeploymentRequest
impl Send for DeleteFrameworkDeploymentRequest
impl Sync for DeleteFrameworkDeploymentRequest
impl Unpin for DeleteFrameworkDeploymentRequest
impl UnsafeUnpin for DeleteFrameworkDeploymentRequest
impl UnwindSafe for DeleteFrameworkDeploymentRequest
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