Class: Google::Apis::HealthcareV1alpha2::SchemaConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/healthcare_v1alpha2/classes.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb

Overview

Configuration for the FHIR BigQuery and Cloud Storage schema. Determines how the server generates the schema.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SchemaConfig

Returns a new instance of SchemaConfig



2494
2495
2496
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2494

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#recursive_structure_depthFixnum

The depth for all recursive structures in the output analytics schema. For example, concept in the CodeSystem resource is a recursive structure; when the depth is 2, the CodeSystem table will have a column called concept.concept but not concept.concept.concept. If not specified or set to 0, the server will use the default value 2. Corresponds to the JSON property recursiveStructureDepth

Returns:

  • (Fixnum)


2486
2487
2488
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2486

def recursive_structure_depth
  @recursive_structure_depth
end

#schema_typeString

Specifies the output schema type. If unspecified, the default is LOSSLESS. Corresponds to the JSON property schemaType

Returns:

  • (String)


2492
2493
2494
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2492

def schema_type
  @schema_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2499
2500
2501
2502
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 2499

def update!(**args)
  @recursive_structure_depth = args[:recursive_structure_depth] if args.key?(:recursive_structure_depth)
  @schema_type = args[:schema_type] if args.key?(:schema_type)
end