#[non_exhaustive]pub struct CreateClusterRequest {
pub parent: String,
pub cluster_id: String,
pub cluster: Option<Cluster>,
pub request_id: String,
/* private fields */
}
Expand description
Request for [CreateCluster][CloudRedis.CreateCluster].
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: String
Required. The resource name of the cluster location using the form:
projects/{project_id}/locations/{location_id}
where location_id
refers to a GCP region.
cluster_id: String
Required. The logical name of the Redis cluster in the customer project with the following restrictions:
- Must contain only lowercase letters, numbers, and hyphens.
- Must start with a letter.
- Must be between 1-63 characters.
- Must end with a number or a letter.
- Must be unique within the customer project / location
cluster: Option<Cluster>
Required. The cluster that is to be created.
request_id: String
Idempotent request UUID.
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