Struct google_api_proto::google::cloud::gkemulticloud::v1::AwsControlPlane
source · pub struct AwsControlPlane {Show 14 fields
pub version: String,
pub instance_type: String,
pub ssh_config: Option<AwsSshConfig>,
pub subnet_ids: Vec<String>,
pub security_group_ids: Vec<String>,
pub iam_instance_profile: String,
pub root_volume: Option<AwsVolumeTemplate>,
pub main_volume: Option<AwsVolumeTemplate>,
pub database_encryption: Option<AwsDatabaseEncryption>,
pub tags: BTreeMap<String, String>,
pub aws_services_authentication: Option<AwsServicesAuthentication>,
pub proxy_config: Option<AwsProxyConfig>,
pub config_encryption: Option<AwsConfigEncryption>,
pub instance_placement: Option<AwsInstancePlacement>,
}
Expand description
ControlPlane defines common parameters between control plane nodes.
Fields§
§version: String
Required. The Kubernetes version to run on control plane replicas
(e.g. 1.19.10-gke.1000
).
You can list all supported versions on a given Google Cloud region by calling [GetAwsServerConfig][google.cloud.gkemulticloud.v1.AwsClusters.GetAwsServerConfig].
instance_type: String
Optional. The AWS instance type.
When unspecified, it uses a default based on the cluster’s version.
ssh_config: Option<AwsSshConfig>
Optional. SSH configuration for how to access the underlying control plane machines.
subnet_ids: Vec<String>
Required. The list of subnets where control plane replicas will run. A replica will be provisioned on each subnet and up to three values can be provided. Each subnet must be in a different AWS Availability Zone (AZ).
security_group_ids: Vec<String>
Optional. The IDs of additional security groups to add to control plane replicas. The Anthos Multi-Cloud API will automatically create and manage security groups with the minimum rules needed for a functioning cluster.
iam_instance_profile: String
Required. The name or ARN of the AWS IAM instance profile to assign to each control plane replica.
root_volume: Option<AwsVolumeTemplate>
Optional. Configuration related to the root volume provisioned for each control plane replica.
Volumes will be provisioned in the availability zone associated with the corresponding subnet.
When unspecified, it defaults to 32 GiB with the GP2 volume type.
main_volume: Option<AwsVolumeTemplate>
Optional. Configuration related to the main volume provisioned for each control plane replica. The main volume is in charge of storing all of the cluster’s etcd state.
Volumes will be provisioned in the availability zone associated with the corresponding subnet.
When unspecified, it defaults to 8 GiB with the GP2 volume type.
database_encryption: Option<AwsDatabaseEncryption>
Required. The ARN of the AWS KMS key used to encrypt cluster secrets.
Optional. A set of AWS resource tags to propagate to all underlying managed AWS resources.
Specify at most 50 pairs containing alphanumerics, spaces, and symbols (.+-=_:@/). Keys can be up to 127 Unicode characters. Values can be up to 255 Unicode characters.
aws_services_authentication: Option<AwsServicesAuthentication>
Required. Authentication configuration for management of AWS resources.
proxy_config: Option<AwsProxyConfig>
Optional. Proxy configuration for outbound HTTP(S) traffic.
config_encryption: Option<AwsConfigEncryption>
Required. Config encryption for user data.
instance_placement: Option<AwsInstancePlacement>
Optional. The placement to use on control plane instances. When unspecified, the VPC’s default tenancy will be used.
Trait Implementations§
source§impl Clone for AwsControlPlane
impl Clone for AwsControlPlane
source§fn clone(&self) -> AwsControlPlane
fn clone(&self) -> AwsControlPlane
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsControlPlane
impl Debug for AwsControlPlane
source§impl Default for AwsControlPlane
impl Default for AwsControlPlane
source§impl Message for AwsControlPlane
impl Message for AwsControlPlane
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 AwsControlPlane
impl PartialEq for AwsControlPlane
source§fn eq(&self, other: &AwsControlPlane) -> bool
fn eq(&self, other: &AwsControlPlane) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsControlPlane
Auto Trait Implementations§
impl Freeze for AwsControlPlane
impl RefUnwindSafe for AwsControlPlane
impl Send for AwsControlPlane
impl Sync for AwsControlPlane
impl Unpin for AwsControlPlane
impl UnwindSafe for AwsControlPlane
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