[][src]Struct google_bigtableadmin2::Cluster

pub struct Cluster {
    pub default_storage_type: Option<String>,
    pub serve_nodes: Option<i32>,
    pub location: Option<String>,
    pub name: Option<String>,
    pub state: Option<String>,
}

A resizable group of nodes in a particular cloud location, capable of serving all Tables in the parent Instance.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

default_storage_type: Option<String>

(CreationOnly) The type of storage used by this cluster to serve its parent instance's tables, unless explicitly overridden.

serve_nodes: Option<i32>

The number of nodes allocated to this cluster. More nodes enable higher throughput and more consistent performance.

location: Option<String>

(CreationOnly) The location where this cluster's nodes and storage reside. For best performance, clients should be located as close as possible to this cluster. Currently only zones are supported, so values should be of the form projects/<project>/locations/<zone>.

name: Option<String>

(OutputOnly) The unique name of the cluster. Values are of the form projects/<project>/instances/<instance>/clusters/a-z*.

state: Option<String>

(OutputOnly) The current state of the cluster.

Trait Implementations

impl ResponseResult for Cluster[src]

impl RequestValue for Cluster[src]

impl Default for Cluster[src]

impl Clone for Cluster[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Cluster[src]

impl Serialize for Cluster[src]

impl<'de> Deserialize<'de> for Cluster[src]

Auto Trait Implementations

impl Send for Cluster

impl Unpin for Cluster

impl Sync for Cluster

impl UnwindSafe for Cluster

impl RefUnwindSafe for Cluster

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]