Show / Hide Table of Contents

Class DeidentifyFhirStoreRequest

Creates a new FHIR store with sensitive information de-identified.

Inheritance
System.Object
DeidentifyFhirStoreRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudHealthcare.v1.Data
Assembly: Google.Apis.CloudHealthcare.v1.dll
Syntax
public class DeidentifyFhirStoreRequest : IDirectResponseSchema

Properties

Config

Deidentify configuration.

Declaration
[JsonProperty("config")]
public virtual DeidentifyConfig Config { get; set; }
Property Value
Type Description
DeidentifyConfig

DestinationStore

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.
Declaration
[JsonProperty("destinationStore")]
public virtual string DestinationStore { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ResourceFilter

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

Declaration
[JsonProperty("resourceFilter")]
public virtual FhirFilter ResourceFilter { get; set; }
Property Value
Type Description
FhirFilter

Implements

IDirectResponseSchema
Back to top