Skip to content

Commit b4ba411

Browse files
Support V3 parser config for HL7 stores (#5888) (#11430)
Signed-off-by: Modular Magician <[email protected]>
1 parent cd89c7f commit b4ba411

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.changelog/5888.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
healthcare: added support V3 parser version for Healthcare HL7 stores.
3+
```

google/resource_healthcare_hl7_v2_store.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ A base64-encoded string.`,
172172
Type: schema.TypeString,
173173
Optional: true,
174174
ForceNew: true,
175-
ValidateFunc: validateEnum([]string{"V1", "V2", ""}),
176-
Description: `The version of the unschematized parser to be used when a custom 'schema' is not set. Default value: "V1" Possible values: ["V1", "V2"]`,
175+
ValidateFunc: validateEnum([]string{"V1", "V2", "V3", ""}),
176+
Description: `The version of the unschematized parser to be used when a custom 'schema' is not set. Default value: "V1" Possible values: ["V1", "V2", "V3"]`,
177177
Default: "V1",
178178
},
179179
},

website/docs/r/healthcare_hl7_v2_store.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ The following arguments are supported:
265265
(Optional)
266266
The version of the unschematized parser to be used when a custom `schema` is not set.
267267
Default value is `V1`.
268-
Possible values are `V1` and `V2`.
268+
Possible values are `V1`, `V2`, and `V3`.
269269

270270
<a name="nested_notification_configs"></a>The `notification_configs` block supports:
271271

0 commit comments

Comments
 (0)