Show / Hide Table of Contents

Class ExportResourcesRequest

Request to export resources.

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

Properties

BigqueryDestination

The BigQuery output destination.

The BigQuery location requires two IAM roles: roles/bigquery.dataEditor and roles/bigquery.jobUser.

The output is one BigQuery table per resource type.

Declaration
[JsonProperty("bigqueryDestination")]
public virtual GoogleCloudHealthcareV1FhirBigQueryDestination BigqueryDestination { get; set; }
Property Value
Type Description
GoogleCloudHealthcareV1FhirBigQueryDestination

ETag

The ETag of the item.

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

GcsDestination

The Cloud Storage output destination.

The Cloud Storage location requires the roles/storage.objectAdmin Cloud IAM role.

The exported outputs are organized by FHIR resource types. The server creates one object per resource type. Each object contains newline delimited JSON, and each line is a FHIR resource.

Declaration
[JsonProperty("gcsDestination")]
public virtual GoogleCloudHealthcareV1FhirGcsDestination GcsDestination { get; set; }
Property Value
Type Description
GoogleCloudHealthcareV1FhirGcsDestination

Implements

IDirectResponseSchema
Back to top