pub struct DeidentifyDicomStoreRequest {
pub config: Option<DeidentifyConfig>,
pub destination_store: Option<String>,
pub filter_config: Option<DicomFilterConfig>,
pub gcs_config_uri: Option<String>,
}
Expand description
Creates a new DICOM store with sensitive information de-identified.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§config: Option<DeidentifyConfig>
Deidentify configuration. Only one of config
and gcs_config_uri
can be specified.
destination_store: Option<String>
Required. The name of the DICOM store to create and write the redacted data to. For example, projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/dicomStores/{dicom_store_id}
. * The destination dataset must exist. * The source dataset and destination dataset must both reside in the same location. De-identifying data across multiple locations is not supported. * The destination DICOM store must not exist. * The caller must have the necessary permissions to create the destination DICOM store.
filter_config: Option<DicomFilterConfig>
Filter configuration.
gcs_config_uri: Option<String>
Cloud Storage location to read the JSON cloud.healthcare.deidentify.DeidentifyConfig from, overriding the default config. Must be of the form gs://{bucket_id}/path/to/object
. The Cloud Storage location must grant the Cloud IAM role roles/storage.objectViewer
to the project’s Cloud Healthcare Service Agent service account. Only one of config
and gcs_config_uri
can be specified.
Trait Implementations§
Source§impl Clone for DeidentifyDicomStoreRequest
impl Clone for DeidentifyDicomStoreRequest
Source§fn clone(&self) -> DeidentifyDicomStoreRequest
fn clone(&self) -> DeidentifyDicomStoreRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DeidentifyDicomStoreRequest
impl Debug for DeidentifyDicomStoreRequest
Source§impl Default for DeidentifyDicomStoreRequest
impl Default for DeidentifyDicomStoreRequest
Source§fn default() -> DeidentifyDicomStoreRequest
fn default() -> DeidentifyDicomStoreRequest
Source§impl<'de> Deserialize<'de> for DeidentifyDicomStoreRequest
impl<'de> Deserialize<'de> for DeidentifyDicomStoreRequest
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>,
impl RequestValue for DeidentifyDicomStoreRequest
Auto Trait Implementations§
impl Freeze for DeidentifyDicomStoreRequest
impl RefUnwindSafe for DeidentifyDicomStoreRequest
impl Send for DeidentifyDicomStoreRequest
impl Sync for DeidentifyDicomStoreRequest
impl Unpin for DeidentifyDicomStoreRequest
impl UnwindSafe for DeidentifyDicomStoreRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more