pub struct GoogleCloudApigeeV1NodeConfig {
pub current_aggregate_node_count: Option<i64>,
pub max_node_count: Option<i64>,
pub min_node_count: Option<i64>,
}Expand description
NodeConfig for setting the min/max number of nodes associated with the environment.
This type is not used in any activity, and only used as part of another schema.
Fields§
§current_aggregate_node_count: Option<i64>Output only. The current total number of gateway nodes that each environment currently has across all instances.
max_node_count: Option<i64>Optional. The maximum total number of gateway nodes that the is reserved for all instances that has the specified environment. If not specified, the default is determined by the recommended maximum number of nodes for that gateway.
min_node_count: Option<i64>Optional. The minimum total number of gateway nodes that the is reserved for all instances that has the specified environment. If not specified, the default is determined by the recommended minimum number of nodes for that gateway.
Trait Implementations§
Source§impl Clone for GoogleCloudApigeeV1NodeConfig
impl Clone for GoogleCloudApigeeV1NodeConfig
Source§fn clone(&self) -> GoogleCloudApigeeV1NodeConfig
fn clone(&self) -> GoogleCloudApigeeV1NodeConfig
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 GoogleCloudApigeeV1NodeConfig
impl Default for GoogleCloudApigeeV1NodeConfig
Source§fn default() -> GoogleCloudApigeeV1NodeConfig
fn default() -> GoogleCloudApigeeV1NodeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudApigeeV1NodeConfig
impl<'de> Deserialize<'de> for GoogleCloudApigeeV1NodeConfig
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for GoogleCloudApigeeV1NodeConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudApigeeV1NodeConfig
impl RefUnwindSafe for GoogleCloudApigeeV1NodeConfig
impl Send for GoogleCloudApigeeV1NodeConfig
impl Sync for GoogleCloudApigeeV1NodeConfig
impl Unpin for GoogleCloudApigeeV1NodeConfig
impl UnwindSafe for GoogleCloudApigeeV1NodeConfig
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