pub struct Cluster {Show 28 fields
pub name: String,
pub display_name: String,
pub uid: String,
pub create_time: Option<Timestamp>,
pub update_time: Option<Timestamp>,
pub delete_time: Option<Timestamp>,
pub labels: BTreeMap<String, String>,
pub state: i32,
pub cluster_type: i32,
pub database_version: i32,
pub network_config: Option<NetworkConfig>,
pub network: String,
pub etag: String,
pub annotations: BTreeMap<String, String>,
pub reconciling: bool,
pub initial_user: Option<UserPassword>,
pub automated_backup_policy: Option<AutomatedBackupPolicy>,
pub ssl_config: Option<SslConfig>,
pub encryption_config: Option<EncryptionConfig>,
pub encryption_info: Option<EncryptionInfo>,
pub continuous_backup_config: Option<ContinuousBackupConfig>,
pub continuous_backup_info: Option<ContinuousBackupInfo>,
pub secondary_config: Option<SecondaryConfig>,
pub primary_config: Option<PrimaryConfig>,
pub satisfies_pzi: bool,
pub satisfies_pzs: bool,
pub psc_config: Option<PscConfig>,
pub source: Option<Source>,
}
Expand description
A cluster is a collection of regional AlloyDB resources. It can include a primary instance and one or more read pool instances. All cluster resources share a storage layer, which scales as needed.
Fields§
§name: String
Output only. The name of the cluster resource with the format:
- projects/{project}/locations/{region}/clusters/{cluster_id}
where the cluster ID segment should satisfy the regex expression
\[a-z0-9-\]+
. For more details see https://google.aip.dev/122. The prefix of the cluster resource name is the name of the parent resource: - projects/{project}/locations/{region}
display_name: String
User-settable and human-readable display name for the Cluster.
uid: String
Output only. The system-generated UID of the resource. The UID is assigned when the resource is created, and it is retained until it is deleted.
create_time: Option<Timestamp>
Output only. Create time stamp
update_time: Option<Timestamp>
Output only. Update time stamp
delete_time: Option<Timestamp>
Output only. Delete time stamp
labels: BTreeMap<String, String>
Labels as key value pairs
state: i32
Output only. The current serving state of the cluster.
cluster_type: i32
Output only. The type of the cluster. This is an output-only field and it’s
populated at the Cluster creation time or the Cluster promotion
time. The cluster type is determined by which RPC was used to create
the cluster (i.e. CreateCluster
vs. CreateSecondaryCluster
database_version: i32
Optional. The database engine major version. This is an optional field and it is populated at the Cluster creation time. If a database version is not supplied at cluster creation time, then a default database version will be used.
network_config: Option<NetworkConfig>
§network: String
Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: “projects/{project}/global/networks/{network_id}”. This is required to create a cluster. Deprecated, use network_config.network instead.
etag: String
For Resource freshness validation (https://google.aip.dev/154)
annotations: BTreeMap<String, String>
Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels. https://google.aip.dev/128
reconciling: bool
Output only. Reconciling (https://google.aip.dev/128#reconciliation). Set to true if the current state of Cluster does not match the user’s intended state, and the service is actively updating the resource to reconcile them. This can happen due to user-triggered updates or system actions like failover or maintenance.
initial_user: Option<UserPassword>
Input only. Initial user to setup during cluster creation. Required.
If used in RestoreCluster
this is ignored.
automated_backup_policy: Option<AutomatedBackupPolicy>
The automated backup policy for this cluster.
If no policy is provided then the default policy will be used. If backups are supported for the cluster, the default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days. For more information on the defaults, consult the documentation for the message type.
ssl_config: Option<SslConfig>
SSL configuration for this AlloyDB cluster.
encryption_config: Option<EncryptionConfig>
Optional. The encryption config can be specified to encrypt the data disks and other persistent data resources of a cluster with a customer-managed encryption key (CMEK). When this field is not specified, the cluster will then use default encryption scheme to protect the user data.
encryption_info: Option<EncryptionInfo>
Output only. The encryption information for the cluster.
continuous_backup_config: Option<ContinuousBackupConfig>
Optional. Continuous backup configuration for this cluster.
continuous_backup_info: Option<ContinuousBackupInfo>
Output only. Continuous backup properties for this cluster.
secondary_config: Option<SecondaryConfig>
Cross Region replication config specific to SECONDARY cluster.
primary_config: Option<PrimaryConfig>
Output only. Cross Region replication config specific to PRIMARY cluster.
satisfies_pzi: bool
Output only. Reserved for future use.
satisfies_pzs: bool
Output only. Reserved for future use.
psc_config: Option<PscConfig>
Optional. The configuration for Private Service Connect (PSC) for the cluster.
source: Option<Source>
In case of an imported cluster, this field contains information about the source this cluster was imported from.
Implementations§
source§impl Cluster
impl Cluster
sourcepub fn state(&self) -> State
pub fn state(&self) -> State
Returns the enum value of state
, or the default if the field is set to an invalid enum value.
sourcepub fn database_version(&self) -> DatabaseVersion
pub fn database_version(&self) -> DatabaseVersion
Returns the enum value of database_version
, or the default if the field is set to an invalid enum value.
sourcepub fn set_database_version(&mut self, value: DatabaseVersion)
pub fn set_database_version(&mut self, value: DatabaseVersion)
Sets database_version
to the provided enum value.
sourcepub fn cluster_type(&self) -> ClusterType
pub fn cluster_type(&self) -> ClusterType
Returns the enum value of cluster_type
, or the default if the field is set to an invalid enum value.
sourcepub fn set_cluster_type(&mut self, value: ClusterType)
pub fn set_cluster_type(&mut self, value: ClusterType)
Sets cluster_type
to the provided enum value.
Trait Implementations§
source§impl Message for Cluster
impl Message for Cluster
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 Cluster
impl PartialEq for Cluster
impl StructuralPartialEq for Cluster
Auto Trait Implementations§
impl Freeze for Cluster
impl RefUnwindSafe for Cluster
impl Send for Cluster
impl Sync for Cluster
impl Unpin for Cluster
impl UnwindSafe for Cluster
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