#[non_exhaustive]pub struct SetNetworkPolicyRequest {
pub project_id: String,
pub zone: String,
pub cluster_id: String,
pub network_policy: Option<NetworkPolicy>,
pub name: String,
/* private fields */
}Expand description
SetNetworkPolicyRequest enables/disables network policy for a cluster.
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. This field has been deprecated and replaced by the name field.
network_policy: Option<NetworkPolicy>Required. Configuration options for the NetworkPolicy feature.
name: StringThe name (project, location, cluster name) of the cluster to set networking
policy. Specified in the format projects/*/locations/*/clusters/*.
Implementations§
Source§impl SetNetworkPolicyRequest
impl SetNetworkPolicyRequest
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_network_policy<T>(self, v: T) -> Selfwhere
T: Into<NetworkPolicy>,
pub fn set_network_policy<T>(self, v: T) -> Selfwhere
T: Into<NetworkPolicy>,
Sets the value of network_policy.
Sourcepub fn set_or_clear_network_policy<T>(self, v: Option<T>) -> Selfwhere
T: Into<NetworkPolicy>,
pub fn set_or_clear_network_policy<T>(self, v: Option<T>) -> Selfwhere
T: Into<NetworkPolicy>,
Sets or clears the value of network_policy.
Trait Implementations§
Source§impl Clone for SetNetworkPolicyRequest
impl Clone for SetNetworkPolicyRequest
Source§fn clone(&self) -> SetNetworkPolicyRequest
fn clone(&self) -> SetNetworkPolicyRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more