#[non_exhaustive]pub struct CreateEnvironmentRequest {
pub parent: String,
pub environment_id: String,
pub environment: Option<Environment>,
pub validate_only: bool,
/* private fields */
}Expand description
Create environment request.
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 resource name of the parent lake:
projects/{project_id}/locations/{location_id}/lakes/{lake_id}.
environment_id: StringRequired. Environment identifier.
- 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 lake.
environment: Option<Environment>Required. Environment resource.
validate_only: boolOptional. Only validate the request, but do not perform mutations. The default is false.
Implementations§
Source§impl CreateEnvironmentRequest
impl CreateEnvironmentRequest
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_environment_id<T: Into<String>>(self, v: T) -> Self
pub fn set_environment_id<T: Into<String>>(self, v: T) -> Self
Sets the value of environment_id.
Sourcepub fn set_environment<T>(self, v: T) -> Selfwhere
T: Into<Environment>,
pub fn set_environment<T>(self, v: T) -> Selfwhere
T: Into<Environment>,
Sets the value of environment.
Sourcepub fn set_or_clear_environment<T>(self, v: Option<T>) -> Selfwhere
T: Into<Environment>,
pub fn set_or_clear_environment<T>(self, v: Option<T>) -> Selfwhere
T: Into<Environment>,
Sets or clears the value of environment.
Sourcepub fn set_validate_only<T: Into<bool>>(self, v: T) -> Self
pub fn set_validate_only<T: Into<bool>>(self, v: T) -> Self
Sets the value of validate_only.
Trait Implementations§
Source§impl Clone for CreateEnvironmentRequest
impl Clone for CreateEnvironmentRequest
Source§fn clone(&self) -> CreateEnvironmentRequest
fn clone(&self) -> CreateEnvironmentRequest
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 CreateEnvironmentRequest
impl Debug for CreateEnvironmentRequest
Source§impl Default for CreateEnvironmentRequest
impl Default for CreateEnvironmentRequest
Source§fn default() -> CreateEnvironmentRequest
fn default() -> CreateEnvironmentRequest
Returns the “default value” for a type. Read more
Source§impl Message for CreateEnvironmentRequest
impl Message for CreateEnvironmentRequest
Source§impl PartialEq for CreateEnvironmentRequest
impl PartialEq for CreateEnvironmentRequest
impl StructuralPartialEq for CreateEnvironmentRequest
Auto Trait Implementations§
impl Freeze for CreateEnvironmentRequest
impl RefUnwindSafe for CreateEnvironmentRequest
impl Send for CreateEnvironmentRequest
impl Sync for CreateEnvironmentRequest
impl Unpin for CreateEnvironmentRequest
impl UnwindSafe for CreateEnvironmentRequest
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