pub struct Cluster {
Show 34 fields pub name: String, pub description: String, pub initial_node_count: i32, pub node_config: Option<NodeConfig>, pub master_auth: Option<MasterAuth>, pub logging_service: String, pub monitoring_service: String, pub network: String, pub cluster_ipv4_cidr: String, pub addons_config: Option<AddonsConfig>, pub subnetwork: String, pub node_pools: Vec<NodePool>, pub locations: Vec<String>, pub enable_kubernetes_alpha: bool, pub network_policy: Option<NetworkPolicy>, pub ip_allocation_policy: Option<IpAllocationPolicy>, pub master_authorized_networks_config: Option<MasterAuthorizedNetworksConfig>, pub maintenance_policy: Option<MaintenancePolicy>, pub pod_security_policy_config: Option<PodSecurityPolicyConfig>, pub self_link: String, pub zone: String, pub endpoint: String, pub initial_cluster_version: String, pub current_master_version: String, pub current_node_version: String, pub create_time: String, pub status: i32, pub status_message: String, pub node_ipv4_cidr_size: i32, pub services_ipv4_cidr: String, pub instance_group_urls: Vec<String>, pub current_node_count: i32, pub expire_time: String, pub location: String,
}
Expand description

A Google Container Engine cluster.

Fields§

§name: String

The name of this cluster. The name must be unique within this project and zone, and can be up to 40 characters with the following restrictions:

  • Lowercase letters, numbers, and hyphens only.
  • Must start with a letter.
  • Must end with a number or a letter.
§description: String

An optional description of this cluster.

§initial_node_count: i32

The number of nodes to create in this cluster. You must ensure that your Compute Engine resource quota is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a “node_pool” object, since this configuration (along with the “node_config”) will be used to create a “NodePool” object with an auto-generated name. Do not use this and a node_pool at the same time.

§node_config: Option<NodeConfig>

Parameters used in creating the cluster’s nodes. See nodeConfig for the description of its properties. For requests, this field should only be used in lieu of a “node_pool” object, since this configuration (along with the “initial_node_count”) will be used to create a “NodePool” object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool.

If unspecified, the defaults are used.

§master_auth: Option<MasterAuth>

The authentication information for accessing the master endpoint.

§logging_service: String

The logging service the cluster should use to write logs. Currently available options:

  • logging.googleapis.com - the Google Cloud Logging service.
  • none - no logs will be exported from the cluster.
  • if left as an empty string,logging.googleapis.com will be used.
§monitoring_service: String

The monitoring service the cluster should use to write metrics. Currently available options:

  • monitoring.googleapis.com - the Google Cloud Monitoring service.
  • none - no metrics will be exported from the cluster.
  • if left as an empty string, monitoring.googleapis.com will be used.
§network: String

The name of the Google Compute Engine network to which the cluster is connected. If left unspecified, the default network will be used.

§cluster_ipv4_cidr: String

The IP address range of the container pods in this cluster, in CIDR notation (e.g. 10.96.0.0/14). Leave blank to have one automatically chosen or specify a /14 block in 10.0.0.0/8.

§addons_config: Option<AddonsConfig>

Configurations for the various addons available to run in the cluster.

§subnetwork: String

The name of the Google Compute Engine subnetwork to which the cluster is connected.

§node_pools: Vec<NodePool>

The node pools associated with this cluster. This field should not be set if “node_config” or “initial_node_count” are specified.

§locations: Vec<String>

The list of Google Compute Engine locations in which the cluster’s nodes should be located.

§enable_kubernetes_alpha: bool

Kubernetes alpha features are enabled on this cluster. This includes alpha API groups (e.g. v1alpha1) and features that may not be production ready in the kubernetes version of the master and nodes. The cluster has no SLA for uptime and master/node upgrades are disabled. Alpha enabled clusters are automatically deleted thirty days after creation.

§network_policy: Option<NetworkPolicy>

Configuration options for the NetworkPolicy feature.

§ip_allocation_policy: Option<IpAllocationPolicy>

Configuration for cluster IP allocation.

§master_authorized_networks_config: Option<MasterAuthorizedNetworksConfig>

The configuration options for master authorized networks feature.

§maintenance_policy: Option<MaintenancePolicy>

Configure the maintenance policy for this cluster.

§pod_security_policy_config: Option<PodSecurityPolicyConfig>

Configuration for the PodSecurityPolicy feature.

§self_link: String

[Output only] Server-defined URL for the resource.

§zone: String

[Output only] The name of the Google Compute Engine zone in which the cluster resides. This field is deprecated, use location instead.

§endpoint: String

[Output only] The IP address of this cluster’s master endpoint. The endpoint can be accessed from the internet at <https://username:password@endpoint/.>

See the masterAuth property of this resource for username and password information.

§initial_cluster_version: String

The initial Kubernetes version for this cluster. Valid versions are those found in validMasterVersions returned by getServerConfig. The version can be upgraded over time; such upgrades are reflected in currentMasterVersion and currentNodeVersion.

§current_master_version: String

[Output only] The current software version of the master endpoint.

§current_node_version: String

[Output only] The current version of the node software components. If they are currently at multiple versions because they’re in the process of being upgraded, this reflects the minimum version of all nodes.

§create_time: String

[Output only] The time the cluster was created, in RFC3339 text format.

§status: i32

[Output only] The current status of this cluster.

§status_message: String

[Output only] Additional information about the current status of this cluster, if available.

§node_ipv4_cidr_size: i32

[Output only] The size of the address space on each node for hosting containers. This is provisioned from within the container_ipv4_cidr range.

§services_ipv4_cidr: String

[Output only] The IP address range of the Kubernetes services in this cluster, in CIDR notation (e.g. 1.2.3.4/29). Service addresses are typically put in the last /16 from the container CIDR.

§instance_group_urls: Vec<String>

[Output only] The resource URLs of instance groups associated with this cluster.

§current_node_count: i32

[Output only] The number of nodes currently in the cluster.

§expire_time: String

[Output only] The time the cluster will be automatically deleted in RFC3339 text format.

§location: String

[Output only] The name of the Google Compute Engine zone or region in which the cluster resides.

Implementations§

source§

impl Cluster

source

pub fn status(&self) -> Status

Returns the enum value of status, or the default if the field is set to an invalid enum value.

source

pub fn set_status(&mut self, value: Status)

Sets status to the provided enum value.

Trait Implementations§

source§

impl Clone for Cluster

source§

fn clone(&self) -> Cluster

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Cluster

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Cluster

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Message for Cluster

source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
source§

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message to a buffer. Read more
source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
source§

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
source§

fn decode<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes an instance of the message from a buffer. Read more
source§

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes a length-delimited instance of the message from the buffer.
source§

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
source§

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
source§

impl PartialEq for Cluster

source§

fn eq(&self, other: &Cluster) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Cluster

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more