pub struct GkeNodePoolTarget {
pub node_pool: Option<String>,
pub node_pool_config: Option<GkeNodePoolConfig>,
pub roles: Option<Vec<String>>,
}
Expand description
GKE node pools that Dataproc workloads run on.
This type is not used in any activity, and only used as part of another schema.
Fields§
§node_pool: Option<String>
Required. The target GKE node pool. Format: ‘projects/{project}/locations/{location}/clusters/{cluster}/nodePools/{node_pool}’
node_pool_config: Option<GkeNodePoolConfig>
Input only. The configuration for the GKE node pool.If specified, Dataproc attempts to create a node pool with the specified shape. If one with the same name already exists, it is verified against all specified fields. If a field differs, the virtual cluster creation will fail.If omitted, any node pool with the specified name is used. If a node pool with the specified name does not exist, Dataproc create a node pool with default values.This is an input only field. It will not be returned by the API.
roles: Option<Vec<String>>
Required. The roles associated with the GKE node pool.
Trait Implementations§
Source§impl Clone for GkeNodePoolTarget
impl Clone for GkeNodePoolTarget
Source§fn clone(&self) -> GkeNodePoolTarget
fn clone(&self) -> GkeNodePoolTarget
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GkeNodePoolTarget
impl Debug for GkeNodePoolTarget
Source§impl Default for GkeNodePoolTarget
impl Default for GkeNodePoolTarget
Source§fn default() -> GkeNodePoolTarget
fn default() -> GkeNodePoolTarget
Source§impl<'de> Deserialize<'de> for GkeNodePoolTarget
impl<'de> Deserialize<'de> for GkeNodePoolTarget
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 GkeNodePoolTarget
impl Serialize for GkeNodePoolTarget
impl Part for GkeNodePoolTarget
Auto Trait Implementations§
impl Freeze for GkeNodePoolTarget
impl RefUnwindSafe for GkeNodePoolTarget
impl Send for GkeNodePoolTarget
impl Sync for GkeNodePoolTarget
impl Unpin for GkeNodePoolTarget
impl UnwindSafe for GkeNodePoolTarget
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