Struct google_datamigration1::api::AlloyDbSettings
source · pub struct AlloyDbSettings {
pub initial_user: Option<UserPassword>,
pub labels: Option<HashMap<String, String>>,
pub primary_instance_settings: Option<PrimaryInstanceSettings>,
pub vpc_network: Option<String>,
}
Expand description
Settings for creating an AlloyDB cluster.
This type is not used in any activity, and only used as part of another schema.
Fields§
§initial_user: Option<UserPassword>
Required. Input only. Initial user to setup during cluster creation. Required.
labels: Option<HashMap<String, String>>
Labels for the AlloyDB cluster created by DMS. An object containing a list of ‘key’, ‘value’ pairs.
primary_instance_settings: Option<PrimaryInstanceSettings>
no description provided
vpc_network: Option<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_number}/global/networks/{network_id}”. This is required to create a cluster.
Trait Implementations§
source§impl Clone for AlloyDbSettings
impl Clone for AlloyDbSettings
source§fn clone(&self) -> AlloyDbSettings
fn clone(&self) -> AlloyDbSettings
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AlloyDbSettings
impl Debug for AlloyDbSettings
source§impl Default for AlloyDbSettings
impl Default for AlloyDbSettings
source§fn default() -> AlloyDbSettings
fn default() -> AlloyDbSettings
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AlloyDbSettings
impl<'de> Deserialize<'de> for AlloyDbSettings
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for AlloyDbSettings
impl Serialize for AlloyDbSettings
impl Part for AlloyDbSettings
Auto Trait Implementations§
impl RefUnwindSafe for AlloyDbSettings
impl Send for AlloyDbSettings
impl Sync for AlloyDbSettings
impl Unpin for AlloyDbSettings
impl UnwindSafe for AlloyDbSettings
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
Mutably borrows from an owned value. Read more