pub struct GkeNodePoolConfig {
pub autoscaling: Option<GkeNodePoolAutoscalingConfig>,
pub config: Option<GkeNodeConfig>,
pub locations: Option<Vec<String>>,
}Expand description
The configuration of a GKE node pool used by a Dataproc-on-GKE cluster (https://cloud.google.com/dataproc/docs/concepts/jobs/dataproc-gke#create-a-dataproc-on-gke-cluster).
This type is not used in any activity, and only used as part of another schema.
Fields§
§autoscaling: Option<GkeNodePoolAutoscalingConfig>Optional. The autoscaler configuration for this node pool. The autoscaler is enabled only when a valid configuration is present.
config: Option<GkeNodeConfig>Optional. The node pool configuration.
locations: Option<Vec<String>>Optional. The list of Compute Engine zones (https://cloud.google.com/compute/docs/zones#available) where node pool nodes associated with a Dataproc on GKE virtual cluster will be located.Note: All node pools associated with a virtual cluster must be located in the same region as the virtual cluster, and they must be located in the same zone within that region.If a location is not specified during node pool creation, Dataproc on GKE will choose the zone.
Trait Implementations§
Source§impl Clone for GkeNodePoolConfig
impl Clone for GkeNodePoolConfig
Source§fn clone(&self) -> GkeNodePoolConfig
fn clone(&self) -> GkeNodePoolConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more