Class: Google::Apis::HealthcareV1::Hl7V2Store
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::Hl7V2Store
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1/classes.rb,
generated/google/apis/healthcare_v1/representations.rb,
generated/google/apis/healthcare_v1/representations.rb
Overview
Represents an HL7v2 store.
Instance Attribute Summary collapse
-
#labels ⇒ Hash<String,String>
User-supplied key-value pairs used to organize HL7v2 stores.
-
#name ⇒ String
Resource name of the HL7v2 store, of the form
projects/
project_id/datasets/
dataset_id/hl7V2Stores/
hl7v2_store_id``. -
#notification_configs ⇒ Array<Google::Apis::HealthcareV1::Hl7V2NotificationConfig>
A list of notification configs.
-
#parser_config ⇒ Google::Apis::HealthcareV1::ParserConfig
The configuration for the parser.
-
#reject_duplicate_message ⇒ Boolean
(also: #reject_duplicate_message?)
Determines whether to reject duplicate messages.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Hl7V2Store
constructor
A new instance of Hl7V2Store.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Hl7V2Store
Returns a new instance of Hl7V2Store.
1219 1220 1221 |
# File 'generated/google/apis/healthcare_v1/classes.rb', line 1219 def initialize(**args) update!(**args) end |
Instance Attribute Details
#labels ⇒ Hash<String,String>
User-supplied key-value pairs used to organize HL7v2 stores. Label keys must
be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128
bytes, and must conform to the following PCRE regular expression: \pLl
\pLo
0,62
Label values are optional, must be between 1 and 63 characters long,
have a UTF-8 encoding of maximum 128 bytes, and must conform to the following
PCRE regular expression: [\pLl
\pLo
\pN
_-]0,63
No more than 64 labels
can be associated with a given store.
Corresponds to the JSON property labels
1183 1184 1185 |
# File 'generated/google/apis/healthcare_v1/classes.rb', line 1183 def labels @labels end |
#name ⇒ String
Resource name of the HL7v2 store, of the form projects/
project_id/datasets/
dataset_id/hl7V2Stores/
hl7v2_store_id`.
Corresponds to the JSON property
name`
1189 1190 1191 |
# File 'generated/google/apis/healthcare_v1/classes.rb', line 1189 def name @name end |
#notification_configs ⇒ Array<Google::Apis::HealthcareV1::Hl7V2NotificationConfig>
A list of notification configs. Each configuration uses a filter to determine
whether to publish a message (both Ingest & Create) on the corresponding
notification destination. Only the message name is sent as part of the
notification. Supplied by the client.
Corresponds to the JSON property notificationConfigs
1197 1198 1199 |
# File 'generated/google/apis/healthcare_v1/classes.rb', line 1197 def notification_configs @notification_configs end |
#parser_config ⇒ Google::Apis::HealthcareV1::ParserConfig
The configuration for the parser. It determines how the server parses the
messages.
Corresponds to the JSON property parserConfig
1203 1204 1205 |
# File 'generated/google/apis/healthcare_v1/classes.rb', line 1203 def parser_config @parser_config end |
#reject_duplicate_message ⇒ Boolean Also known as: reject_duplicate_message?
Determines whether to reject duplicate messages. A duplicate message is a
message with the same raw bytes as a message that has already been ingested/
created in this HL7v2 store. The default value is false, meaning that the
store accepts the duplicate messages and it also returns the same ACK message
in the IngestMessageResponse as has been returned previously. Note that only
one resource is created in the store. When this field is set to true,
CreateMessage/IngestMessage requests with a duplicate message will be rejected
by the store, and IngestMessageErrorDetail returns a NACK message upon
rejection.
Corresponds to the JSON property rejectDuplicateMessage
1216 1217 1218 |
# File 'generated/google/apis/healthcare_v1/classes.rb', line 1216 def @reject_duplicate_message end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1224 1225 1226 1227 1228 1229 1230 |
# File 'generated/google/apis/healthcare_v1/classes.rb', line 1224 def update!(**args) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @notification_configs = args[:notification_configs] if args.key?(:notification_configs) @parser_config = args[:parser_config] if args.key?(:parser_config) @reject_duplicate_message = args[:reject_duplicate_message] if args.key?(:reject_duplicate_message) end |