#[non_exhaustive]pub struct RollbackAwsNodePoolUpdateRequest {
pub name: String,
pub respect_pdb: bool,
/* private fields */
}๐Deprecated
Expand description
Request message for AwsClusters.RollbackAwsNodePoolUpdate method.
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: String๐Deprecated
Required. The name of the AwsNodePool resource to rollback.
AwsNodePool names are formatted as
projects/<project-id>/locations/<region>/awsClusters/<cluster-id>/awsNodePools/<node-pool-id>.
See Resource Names for more details on Google Cloud resource names.
respect_pdb: bool๐Deprecated
Optional. Option for rollback to ignore the PodDisruptionBudget when draining the node pool nodes. Default value is false.
Implementationsยง
Sourceยงimpl RollbackAwsNodePoolUpdateRequest
impl RollbackAwsNodePoolUpdateRequest
Trait Implementationsยง
Sourceยงimpl Clone for RollbackAwsNodePoolUpdateRequest
impl Clone for RollbackAwsNodePoolUpdateRequest
Sourceยงfn clone(&self) -> RollbackAwsNodePoolUpdateRequest
fn clone(&self) -> RollbackAwsNodePoolUpdateRequest
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 RollbackAwsNodePoolUpdateRequest
impl Default for RollbackAwsNodePoolUpdateRequest
Sourceยงfn default() -> RollbackAwsNodePoolUpdateRequest
fn default() -> RollbackAwsNodePoolUpdateRequest
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl PartialEq for RollbackAwsNodePoolUpdateRequest
impl PartialEq for RollbackAwsNodePoolUpdateRequest
Sourceยงfn eq(&self, other: &RollbackAwsNodePoolUpdateRequest) -> bool
fn eq(&self, other: &RollbackAwsNodePoolUpdateRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RollbackAwsNodePoolUpdateRequest
Auto Trait Implementationsยง
impl Freeze for RollbackAwsNodePoolUpdateRequest
impl RefUnwindSafe for RollbackAwsNodePoolUpdateRequest
impl Send for RollbackAwsNodePoolUpdateRequest
impl Sync for RollbackAwsNodePoolUpdateRequest
impl Unpin for RollbackAwsNodePoolUpdateRequest
impl UnsafeUnpin for RollbackAwsNodePoolUpdateRequest
impl UnwindSafe for RollbackAwsNodePoolUpdateRequest
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