class Google::Apis::HealthcareV1::StreamConfig

Contains configuration for streaming FHIR export.

Attributes

bigquery_destination[RW]

The configuration for exporting to BigQuery. Corresponds to the JSON property `bigqueryDestination` @return [Google::Apis::HealthcareV1::GoogleCloudHealthcareV1FhirBigQueryDestination]

resource_types[RW]

Supply a FHIR resource type (such as “Patient” or “Observation”). See https:// www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource types. The server treats an empty list as an intent to stream all the supported resource types in this FHIR store. Corresponds to the JSON property `resourceTypes` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 3953
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/healthcare_v1/classes.rb, line 3958
def update!(**args)
  @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
  @resource_types = args[:resource_types] if args.key?(:resource_types)
end