Struct google_api_proto::google::cloud::dataproc::v1::GceClusterConfig
source · pub struct GceClusterConfig {Show 13 fields
pub zone_uri: String,
pub network_uri: String,
pub subnetwork_uri: String,
pub internal_ip_only: Option<bool>,
pub private_ipv6_google_access: i32,
pub service_account: String,
pub service_account_scopes: Vec<String>,
pub tags: Vec<String>,
pub metadata: BTreeMap<String, String>,
pub reservation_affinity: Option<ReservationAffinity>,
pub node_group_affinity: Option<NodeGroupAffinity>,
pub shielded_instance_config: Option<ShieldedInstanceConfig>,
pub confidential_instance_config: Option<ConfidentialInstanceConfig>,
}
Expand description
Common config settings for resources of Compute Engine cluster instances, applicable to all instances in the cluster.
Fields§
§zone_uri: String
Optional. The Compute Engine zone where the Dataproc cluster will be located. If omitted, the service will pick a zone in the cluster’s Compute Engine region. On a get request, zone will always be present.
A full URL, partial URI, or short name are valid. Examples:
<https://www.googleapis.com/compute/v1/projects/\[project_id\]/zones/\[zone\]
>projects/\[project_id\]/zones/\[zone\]
\[zone\]
network_uri: String
Optional. The Compute Engine network to be used for machine
communications. Cannot be specified with subnetwork_uri. If neither
network_uri
nor subnetwork_uri
is specified, the “default” network of
the project is used, if it exists. Cannot be a “Custom Subnet Network” (see
Using Subnetworks for
more information).
A full URL, partial URI, or short name are valid. Examples:
<https://www.googleapis.com/compute/v1/projects/\[project_id\]/global/networks/default
>projects/\[project_id\]/global/networks/default
default
subnetwork_uri: String
Optional. The Compute Engine subnetwork to be used for machine communications. Cannot be specified with network_uri.
A full URL, partial URI, or short name are valid. Examples:
<https://www.googleapis.com/compute/v1/projects/\[project_id\]/regions/\[region\]/subnetworks/sub0
>projects/\[project_id\]/regions/\[region\]/subnetworks/sub0
sub0
internal_ip_only: Option<bool>
Optional. If true, all instances in the cluster will only have internal IP
addresses. By default, clusters are not restricted to internal IP
addresses, and will have ephemeral external IP addresses assigned to each
instance. This internal_ip_only
restriction can only be enabled for
subnetwork enabled networks, and all off-cluster dependencies must be
configured to be accessible without external IP addresses.
private_ipv6_google_access: i32
Optional. The type of IPv6 access for a cluster.
service_account: String
Optional. The Dataproc service account (also see VM Data Plane identity) used by Dataproc cluster VM instances to access Google Cloud Platform services.
If not specified, the Compute Engine default service account is used.
service_account_scopes: Vec<String>
Optional. The URIs of service account scopes to be included in Compute Engine instances. The following base set of scopes is always included:
- https://www.googleapis.com/auth/cloud.useraccounts.readonly
- https://www.googleapis.com/auth/devstorage.read_write
- https://www.googleapis.com/auth/logging.write
If no scopes are specified, the following defaults are also provided:
The Compute Engine tags to add to all instances (see Tagging instances).
metadata: BTreeMap<String, String>
Optional. The Compute Engine metadata entries to add to all instances (see Project and instance metadata).
reservation_affinity: Option<ReservationAffinity>
Optional. Reservation Affinity for consuming Zonal reservation.
node_group_affinity: Option<NodeGroupAffinity>
Optional. Node Group Affinity for sole-tenant clusters.
shielded_instance_config: Option<ShieldedInstanceConfig>
Optional. Shielded Instance Config for clusters using Compute Engine Shielded VMs.
confidential_instance_config: Option<ConfidentialInstanceConfig>
Optional. Confidential Instance Config for clusters using Confidential VMs.
Implementations§
source§impl GceClusterConfig
impl GceClusterConfig
sourcepub fn internal_ip_only(&self) -> bool
pub fn internal_ip_only(&self) -> bool
Returns the value of internal_ip_only
, or the default value if internal_ip_only
is unset.
sourcepub fn private_ipv6_google_access(&self) -> PrivateIpv6GoogleAccess
pub fn private_ipv6_google_access(&self) -> PrivateIpv6GoogleAccess
Returns the enum value of private_ipv6_google_access
, or the default if the field is set to an invalid enum value.
sourcepub fn set_private_ipv6_google_access(&mut self, value: PrivateIpv6GoogleAccess)
pub fn set_private_ipv6_google_access(&mut self, value: PrivateIpv6GoogleAccess)
Sets private_ipv6_google_access
to the provided enum value.
Trait Implementations§
source§impl Clone for GceClusterConfig
impl Clone for GceClusterConfig
source§fn clone(&self) -> GceClusterConfig
fn clone(&self) -> GceClusterConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GceClusterConfig
impl Debug for GceClusterConfig
source§impl Default for GceClusterConfig
impl Default for GceClusterConfig
source§impl Message for GceClusterConfig
impl Message for GceClusterConfig
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for GceClusterConfig
impl PartialEq for GceClusterConfig
source§fn eq(&self, other: &GceClusterConfig) -> bool
fn eq(&self, other: &GceClusterConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GceClusterConfig
Auto Trait Implementations§
impl Freeze for GceClusterConfig
impl RefUnwindSafe for GceClusterConfig
impl Send for GceClusterConfig
impl Sync for GceClusterConfig
impl Unpin for GceClusterConfig
impl UnwindSafe for GceClusterConfig
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request