Skip to content

Commit 4564974

Browse files
Add Support for Vertex Search and Conversation Chat Engine (#9834) (#6918)
* merge change * add chat_engine * update chat engine to allow creating new agent only * fix asyc, update field updatability * update file name * sync product.yaml changes * sync changes * discard product.yaml change * update filename case * add acc test * fix indentation * fix indentation * format * update API to ga and support location parameter * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/products/discoveryengine/ChatEngine.yaml * minor changes * updating fields * add name output only field, add custom encoder to hardcode solutionType * update documentation * update doc * Update mmv1/products/discoveryengine/ChatEngine.yaml * update industryVertical to enum * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/templates/terraform/examples/discoveryengine_chat_engine_basic.tf.erb * Update mmv1/templates/terraform/examples/discoveryengine_chat_engine_basic.tf.erb * remove agent creation location field, set default industryVertical * update test * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/products/discoveryengine/ChatEngine.yaml * update test * update example and test * remove empty line in test * Apply suggestions from code review * add vars for TF examples * Update mmv1/products/discoveryengine/ChatEngine.yaml * Update mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_chat_engine_test.go remove duplicate test * Update mmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_chat_engine_test.go * update test names * format code * remove redundant test * Apply suggestions from code review --------- [upstream:a0178b8b4818ac1ab08774fdb81c5ad8bed80b48] Signed-off-by: Modular Magician <[email protected]>
1 parent 26b2116 commit 4564974

File tree

7 files changed

+1317
-2
lines changed

7 files changed

+1317
-2
lines changed

.changelog/9834.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
`google_discovery_engine_chat_engine`
3+
```

google-beta/provider/provider_mmv1_resources.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,9 +427,9 @@ var handwrittenIAMDatasources = map[string]*schema.Resource{
427427
}
428428

429429
// Resources
430-
// Generated resources: 429
430+
// Generated resources: 430
431431
// Generated IAM resources: 255
432-
// Total generated resources: 684
432+
// Total generated resources: 685
433433
var generatedResources = map[string]*schema.Resource{
434434
"google_folder_access_approval_settings": accessapproval.ResourceAccessApprovalFolderSettings(),
435435
"google_organization_access_approval_settings": accessapproval.ResourceAccessApprovalOrganizationSettings(),
@@ -784,6 +784,7 @@ var generatedResources = map[string]*schema.Resource{
784784
"google_dialogflow_cx_test_case": dialogflowcx.ResourceDialogflowCXTestCase(),
785785
"google_dialogflow_cx_version": dialogflowcx.ResourceDialogflowCXVersion(),
786786
"google_dialogflow_cx_webhook": dialogflowcx.ResourceDialogflowCXWebhook(),
787+
"google_discovery_engine_chat_engine": discoveryengine.ResourceDiscoveryEngineChatEngine(),
787788
"google_discovery_engine_data_store": discoveryengine.ResourceDiscoveryEngineDataStore(),
788789
"google_dns_managed_zone": dns.ResourceDNSManagedZone(),
789790
"google_dns_managed_zone_iam_binding": tpgiamresource.ResourceIamBinding(dns.DNSManagedZoneIamSchema, dns.DNSManagedZoneIamUpdaterProducer, dns.DNSManagedZoneIdParseFunc),

0 commit comments

Comments
 (0)