#[non_exhaustive]pub struct CreateDataScanRequest {
pub parent: String,
pub data_scan: Option<DataScan>,
pub data_scan_id: String,
pub validate_only: bool,
/* private fields */
}Expand description
Create dataScan 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 location:
projects/{project}/locations/{location_id}
where project refers to a project_id or project_number and
location_id refers to a Google Cloud region.
data_scan: Option<DataScan>Required. DataScan resource.
data_scan_id: StringRequired. DataScan identifier.
- Must contain only lowercase letters, numbers and hyphens.
- Must start with a letter.
- Must end with a number or a letter.
- Must be between 1-63 characters.
- Must be unique within the customer project / location.
validate_only: boolOptional. Only validate the request, but do not perform mutations.
The default is false.
Implementations§
Source§impl CreateDataScanRequest
impl CreateDataScanRequest
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_data_scan<T>(self, v: T) -> Self
pub fn set_data_scan<T>(self, v: T) -> Self
Sets the value of data_scan.
Sourcepub fn set_or_clear_data_scan<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_data_scan<T>(self, v: Option<T>) -> Self
Sets or clears the value of data_scan.
Sourcepub fn set_data_scan_id<T: Into<String>>(self, v: T) -> Self
pub fn set_data_scan_id<T: Into<String>>(self, v: T) -> Self
Sets the value of data_scan_id.
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 CreateDataScanRequest
impl Clone for CreateDataScanRequest
Source§fn clone(&self) -> CreateDataScanRequest
fn clone(&self) -> CreateDataScanRequest
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 CreateDataScanRequest
impl Debug for CreateDataScanRequest
Source§impl Default for CreateDataScanRequest
impl Default for CreateDataScanRequest
Source§fn default() -> CreateDataScanRequest
fn default() -> CreateDataScanRequest
Returns the “default value” for a type. Read more
Source§impl Message for CreateDataScanRequest
impl Message for CreateDataScanRequest
Source§impl PartialEq for CreateDataScanRequest
impl PartialEq for CreateDataScanRequest
impl StructuralPartialEq for CreateDataScanRequest
Auto Trait Implementations§
impl Freeze for CreateDataScanRequest
impl RefUnwindSafe for CreateDataScanRequest
impl Send for CreateDataScanRequest
impl Sync for CreateDataScanRequest
impl Unpin for CreateDataScanRequest
impl UnwindSafe for CreateDataScanRequest
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