Skip to content

Commit 677946b

Browse files
add the healthcare_fhir enum value to the industry vertical property in the discovery engine search engine (#12425) (#8778)
[upstream:4ee50d59df3595aa00e0a930f24ac34560aec9b2] Signed-off-by: Modular Magician <[email protected]>
1 parent a530c04 commit 677946b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Diff for: .changelog/12425.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
discoveryengine: added `HEALTHCARE_FHIR` to `industry_vertical` field in `google_discovery_engine_search_engine`
3+
```

Diff for: google-beta/services/discoveryengine/resource_discovery_engine_search_engine.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ func ResourceDiscoveryEngineSearchEngine() *schema.Resource {
134134
Type: schema.TypeString,
135135
Optional: true,
136136
ForceNew: true,
137-
ValidateFunc: verify.ValidateEnum([]string{"GENERIC", "MEDIA", ""}),
138-
Description: `The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: If unspecified, default to GENERIC. Vertical on Engine has to match vertical of the DataStore liniked to the engine. Default value: "GENERIC" Possible values: ["GENERIC", "MEDIA"]`,
137+
ValidateFunc: verify.ValidateEnum([]string{"GENERIC", "MEDIA", "HEALTHCARE_FHIR", ""}),
138+
Description: `The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: If unspecified, default to GENERIC. Vertical on Engine has to match vertical of the DataStore liniked to the engine. Default value: "GENERIC" Possible values: ["GENERIC", "MEDIA", "HEALTHCARE_FHIR"]`,
139139
Default: "GENERIC",
140140
},
141141
"create_time": {

Diff for: website/docs/r/discovery_engine_search_engine.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The following arguments are supported:
108108
(Optional)
109109
The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: If unspecified, default to GENERIC. Vertical on Engine has to match vertical of the DataStore liniked to the engine.
110110
Default value is `GENERIC`.
111-
Possible values are: `GENERIC`, `MEDIA`.
111+
Possible values are: `GENERIC`, `MEDIA`, `HEALTHCARE_FHIR`.
112112

113113
* `common_config` -
114114
(Optional)

0 commit comments

Comments
 (0)