Show / Hide Table of Contents

Class DeidentifyDicomStoreRequest

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

Inheritance
System.Object
DeidentifyDicomStoreRequest
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 DeidentifyDicomStoreRequest : IDirectResponseSchema

Properties

Config

De-identify configuration.

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

DestinationStore

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 project. De-identifying data across multiple projects is not supported. * The destination DICOM store must not exist. * The caller must have the necessary permissions to create the destination DICOM 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

FilterConfig

Filter configuration.

Declaration
[JsonProperty("filterConfig")]
public virtual DicomFilterConfig FilterConfig { get; set; }
Property Value
Type Description
DicomFilterConfig

Implements

IDirectResponseSchema
Back to top