#[non_exhaustive]pub struct CreateClusterRequest {
pub parent: String,
pub cluster_id: String,
pub cluster: Option<Cluster>,
pub request_id: String,
/* private fields */
}Expand description
Creates a cluster.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.parent: StringRequired. The parent location where this cluster will be created.
cluster_id: StringRequired. A client-specified unique identifier for the cluster.
cluster: Option<Cluster>Required. The cluster to create.
request_id: StringA unique identifier for this request. Restricted to 36 ASCII characters. A
random UUID is recommended. This request is only idempotent if
request_id is provided.
Implementations§
Source§impl CreateClusterRequest
impl CreateClusterRequest
pub fn new() -> Self
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sets the value of parent.
Sourcepub fn set_cluster_id<T: Into<String>>(self, v: T) -> Self
pub fn set_cluster_id<T: Into<String>>(self, v: T) -> Self
Sets the value of cluster_id.
Sourcepub fn set_cluster<T>(self, v: T) -> Self
pub fn set_cluster<T>(self, v: T) -> Self
Sets the value of cluster.
Sourcepub fn set_or_clear_cluster<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_cluster<T>(self, v: Option<T>) -> Self
Sets or clears the value of cluster.
Sourcepub fn set_request_id<T: Into<String>>(self, v: T) -> Self
pub fn set_request_id<T: Into<String>>(self, v: T) -> Self
Sets the value of request_id.
Trait Implementations§
Source§impl Clone for CreateClusterRequest
impl Clone for CreateClusterRequest
Source§fn clone(&self) -> CreateClusterRequest
fn clone(&self) -> CreateClusterRequest
Returns a duplicate 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 CreateClusterRequest
impl Debug for CreateClusterRequest
Source§impl Default for CreateClusterRequest
impl Default for CreateClusterRequest
Source§fn default() -> CreateClusterRequest
fn default() -> CreateClusterRequest
Returns the “default value” for a type. Read more
Source§impl Message for CreateClusterRequest
impl Message for CreateClusterRequest
Source§impl PartialEq for CreateClusterRequest
impl PartialEq for CreateClusterRequest
impl StructuralPartialEq for CreateClusterRequest
Auto Trait Implementations§
impl Freeze for CreateClusterRequest
impl RefUnwindSafe for CreateClusterRequest
impl Send for CreateClusterRequest
impl Sync for CreateClusterRequest
impl Unpin for CreateClusterRequest
impl UnwindSafe for CreateClusterRequest
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