[][src]Struct google_healthcare1_beta1::DeidentifyFhirStoreRequest

pub struct DeidentifyFhirStoreRequest {
    pub config: Option<DeidentifyConfig>,
    pub destination_store: Option<String>,
    pub resource_filter: Option<FhirFilter>,
}

Creates a new FHIR 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.

destination_store: Option<String>

The name of the FHIR store to create and write the redacted data to. For example, projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/fhirStores/{fhir_store_id}.

  • The destination dataset must exist.
  • The source dataset and destination dataset must both reside in the same project. De-identifying data across multiple projects is not supported.
  • The destination FHIR store must exist.
  • The caller must have the healthcare.fhirResources.update permission to write to the destination FHIR store.
resource_filter: Option<FhirFilter>

A filter specifying the resources to include in the output. If not specified, all resources are included in the output.

Trait Implementations

impl Clone for DeidentifyFhirStoreRequest[src]

impl Debug for DeidentifyFhirStoreRequest[src]

impl Default for DeidentifyFhirStoreRequest[src]

impl<'de> Deserialize<'de> for DeidentifyFhirStoreRequest[src]

impl RequestValue for DeidentifyFhirStoreRequest[src]

impl Serialize for DeidentifyFhirStoreRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any