Show / Hide Table of Contents

Class GoogleCloudHealthcareV1FhirBigQueryDestination

The configuration for exporting to BigQuery.

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

Properties

DatasetUri

BigQuery URI to a dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId

Declaration
[JsonProperty("datasetUri")]
public virtual string DatasetUri { 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

Force

If this flag is TRUE, all tables are deleted from the dataset before the new exported tables are written. If the flag is not set and the destination dataset contains tables, the export call returns an error.

Declaration
[JsonProperty("force")]
public virtual bool? Force { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

SchemaConfig

The configuration for the exported BigQuery schema.

Declaration
[JsonProperty("schemaConfig")]
public virtual SchemaConfig SchemaConfig { get; set; }
Property Value
Type Description
SchemaConfig

Implements

IDirectResponseSchema
Back to top