Show / Hide Table of Contents

Class DeidentifyDatasetRequest

Redacts identifying information from the specified dataset.

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

Properties

Config

Deidentify configuration.

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

DestinationDataset

The name of the dataset resource to create and write the redacted data to.

  • The destination dataset must not exist. * The destination dataset must be in the same project and location as the source dataset. De-identifying data across multiple projects or locations is not supported.
Declaration
[JsonProperty("destinationDataset")]
public virtual string DestinationDataset { 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

Implements

IDirectResponseSchema
Back to top