pub struct NodeConfigurationOptionsFilter {
pub name: Option<String>,
pub operator: Option<String>,
pub values: Option<Vec<String>>,
}
Expand description
A set of elements to filter the returned node configurations.
Fields§
§name: Option<String>
The name of the element to filter.
operator: Option<String>
The filter operator. If filter Name is NodeType only the 'in' operator is supported. Provide one value to evaluate for 'eq', 'lt', 'le', 'gt', and 'ge'. Provide two values to evaluate for 'between'. Provide a list of values for 'in'.
values: Option<Vec<String>>
List of values. Compare Name using Operator to Values. If filter Name is NumberOfNodes, then values can range from 0 to 200. If filter Name is EstimatedDiskUtilizationPercent, then values can range from 0 to 100. For example, filter NumberOfNodes (name) GT (operator) 3 (values).
Trait Implementations§
Source§impl Clone for NodeConfigurationOptionsFilter
impl Clone for NodeConfigurationOptionsFilter
Source§fn clone(&self) -> NodeConfigurationOptionsFilter
fn clone(&self) -> NodeConfigurationOptionsFilter
Returns a copy 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 NodeConfigurationOptionsFilter
impl Default for NodeConfigurationOptionsFilter
Source§fn default() -> NodeConfigurationOptionsFilter
fn default() -> NodeConfigurationOptionsFilter
Returns the “default value” for a type. Read more
Source§impl PartialEq for NodeConfigurationOptionsFilter
impl PartialEq for NodeConfigurationOptionsFilter
Source§fn eq(&self, other: &NodeConfigurationOptionsFilter) -> bool
fn eq(&self, other: &NodeConfigurationOptionsFilter) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NodeConfigurationOptionsFilter
Auto Trait Implementations§
impl Freeze for NodeConfigurationOptionsFilter
impl RefUnwindSafe for NodeConfigurationOptionsFilter
impl Send for NodeConfigurationOptionsFilter
impl Sync for NodeConfigurationOptionsFilter
impl Unpin for NodeConfigurationOptionsFilter
impl UnwindSafe for NodeConfigurationOptionsFilter
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