Show / Hide Table of Contents

Class GoogleCloudHealthcareV1beta1FhirBigQueryDestination

The configuration for exporting to BigQuery.

Inheritance
object
GoogleCloudHealthcareV1beta1FhirBigQueryDestination
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudHealthcare.v1beta1.Data
Assembly: Google.Apis.CloudHealthcare.v1beta1.dll
Syntax
public class GoogleCloudHealthcareV1beta1FhirBigQueryDestination : IDirectResponseSchema

Properties

ChangeDataCaptureConfig

Optional. Setting this field will enable BigQuery's Change Data Capture (CDC) on the destination tables. Use this field if you: - Want to only keep the latest version of each resource. Updates and deletes to an existing resource will overwrite the corresponding row. - Have a store with enabled history modifications and want to keep the entire history of resource versions but want the history to be mutable. Updates and deletes to a specific resource version will overwrite the corresponding row. See https://cloud.google.com/bigquery/docs/change-data-capture for details.

Declaration
[JsonProperty("changeDataCaptureConfig")]
public virtual GoogleCloudHealthcareV1beta1FhirChangeDataCaptureConfig ChangeDataCaptureConfig { get; set; }
Property Value
Type Description
GoogleCloudHealthcareV1beta1FhirChangeDataCaptureConfig

DatasetUri

BigQuery URI to an existing 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
string

ETag

The ETag of the item.

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

Force

Use write_disposition instead. If write_disposition is specified, this parameter is ignored. force=false is equivalent to write_disposition=WRITE_EMPTY and force=true is equivalent to write_disposition=WRITE_TRUNCATE.

Declaration
[JsonProperty("force")]
public virtual bool? Force { get; set; }
Property Value
Type Description
bool?

SchemaConfig

The configuration for the exported BigQuery schema.

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

WriteDisposition

Determines if existing data in the destination dataset is overwritten, appended to, or not written if the tables contain data. If a write_disposition is specified, the force parameter is ignored.

Declaration
[JsonProperty("writeDisposition")]
public virtual string WriteDisposition { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX