pub struct RepairNodeGroupRequest {
pub instance_names: Option<Vec<String>>,
pub repair_action: Option<String>,
pub request_id: Option<String>,
}
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).
Fields§
§instance_names: Option<Vec<String>>
Required. Name of instances to be repaired. These instances must belong to specified node pool.
repair_action: Option<String>
Required. Repair action to take on specified resources of the node pool.
request_id: Option<String>
Optional. A unique ID used to identify the request. If the server receives two RepairNodeGroupRequest with the same ID, the second request is ignored and the first google.longrunning.Operation created and stored in the backend is returned.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Trait Implementations§
Source§impl Clone for RepairNodeGroupRequest
impl Clone for RepairNodeGroupRequest
Source§fn clone(&self) -> RepairNodeGroupRequest
fn clone(&self) -> RepairNodeGroupRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RepairNodeGroupRequest
impl Debug for RepairNodeGroupRequest
Source§impl Default for RepairNodeGroupRequest
impl Default for RepairNodeGroupRequest
Source§fn default() -> RepairNodeGroupRequest
fn default() -> RepairNodeGroupRequest
Source§impl<'de> Deserialize<'de> for RepairNodeGroupRequest
impl<'de> Deserialize<'de> for RepairNodeGroupRequest
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>,
Source§impl Serialize for RepairNodeGroupRequest
impl Serialize for RepairNodeGroupRequest
impl RequestValue for RepairNodeGroupRequest
Auto Trait Implementations§
impl Freeze for RepairNodeGroupRequest
impl RefUnwindSafe for RepairNodeGroupRequest
impl Send for RepairNodeGroupRequest
impl Sync for RepairNodeGroupRequest
impl Unpin for RepairNodeGroupRequest
impl UnwindSafe for RepairNodeGroupRequest
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