Class: Google::Apis::HealthcareV1::TimePartitioning
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::TimePartitioning
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
Overview
Configuration for FHIR BigQuery time-partitioned tables.
Instance Attribute Summary collapse
-
#expiration_ms ⇒ Fixnum
Number of milliseconds for which to keep the storage for a partition.
-
#type ⇒ String
Type of partitioning.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TimePartitioning
constructor
A new instance of TimePartitioning.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TimePartitioning
Returns a new instance of TimePartitioning.
5064 5065 5066 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5064 def initialize(**args) update!(**args) end |
Instance Attribute Details
#expiration_ms ⇒ Fixnum
Number of milliseconds for which to keep the storage for a partition.
Corresponds to the JSON property expirationMs
5057 5058 5059 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5057 def expiration_ms @expiration_ms end |
#type ⇒ String
Type of partitioning.
Corresponds to the JSON property type
5062 5063 5064 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5062 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5069 5070 5071 5072 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 5069 def update!(**args) @expiration_ms = args[:expiration_ms] if args.key?(:expiration_ms) @type = args[:type] if args.key?(:type) end |