#[non_exhaustive]pub struct SetNodePoolManagementRequest {
pub project_id: String,
pub zone: String,
pub cluster_id: String,
pub node_pool_id: String,
pub management: Option<NodeManagement>,
pub name: String,
/* private fields */
}Expand description
SetNodePoolManagementRequest sets the node management properties of a node pool.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project_id: StringDeprecated. The Google Developers Console project ID or project number. This field has been deprecated and replaced by the name field.
zone: StringDeprecated. The name of the Google Compute Engine zone in which the cluster resides. This field has been deprecated and replaced by the name field.
cluster_id: StringDeprecated. The name of the cluster to update. This field has been deprecated and replaced by the name field.
node_pool_id: StringDeprecated. The name of the node pool to update. This field has been deprecated and replaced by the name field.
management: Option<NodeManagement>Required. NodeManagement configuration for the node pool.
name: StringThe name (project, location, cluster, node pool id) of the node pool to set
management properties. Specified in the format
projects/*/locations/*/clusters/*/nodePools/*.
Implementations§
Source§impl SetNodePoolManagementRequest
impl SetNodePoolManagementRequest
pub fn new() -> Self
Sourcepub fn set_project_id<T: Into<String>>(self, v: T) -> Self
👎Deprecated
pub fn set_project_id<T: Into<String>>(self, v: T) -> Self
Sets the value of project_id.
Sourcepub fn set_cluster_id<T: Into<String>>(self, v: T) -> Self
👎Deprecated
pub fn set_cluster_id<T: Into<String>>(self, v: T) -> Self
Sets the value of cluster_id.
Sourcepub fn set_node_pool_id<T: Into<String>>(self, v: T) -> Self
👎Deprecated
pub fn set_node_pool_id<T: Into<String>>(self, v: T) -> Self
Sets the value of node_pool_id.
Sourcepub fn set_management<T>(self, v: T) -> Selfwhere
T: Into<NodeManagement>,
pub fn set_management<T>(self, v: T) -> Selfwhere
T: Into<NodeManagement>,
Sets the value of management.
Sourcepub fn set_or_clear_management<T>(self, v: Option<T>) -> Selfwhere
T: Into<NodeManagement>,
pub fn set_or_clear_management<T>(self, v: Option<T>) -> Selfwhere
T: Into<NodeManagement>,
Sets or clears the value of management.
Trait Implementations§
Source§impl Clone for SetNodePoolManagementRequest
impl Clone for SetNodePoolManagementRequest
Source§fn clone(&self) -> SetNodePoolManagementRequest
fn clone(&self) -> SetNodePoolManagementRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SetNodePoolManagementRequest
impl Debug for SetNodePoolManagementRequest
Source§impl Default for SetNodePoolManagementRequest
impl Default for SetNodePoolManagementRequest
Source§fn default() -> SetNodePoolManagementRequest
fn default() -> SetNodePoolManagementRequest
Source§impl PartialEq for SetNodePoolManagementRequest
impl PartialEq for SetNodePoolManagementRequest
Source§fn eq(&self, other: &SetNodePoolManagementRequest) -> bool
fn eq(&self, other: &SetNodePoolManagementRequest) -> bool
self and other values to be equal, and is used by ==.