Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(vertexai): add google_vertex_ai_index for Vertex AI Matching Engine #13132

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/6728.txt
@@ -0,0 +1,3 @@
```release-note:new-resource
google_vertex_ai_index
```
5 changes: 3 additions & 2 deletions google/provider.go
Expand Up @@ -926,9 +926,9 @@ func Provider() *schema.Provider {
return provider
}

// Generated resources: 247
// Generated resources: 248
// Generated IAM resources: 153
// Total generated resources: 400
// Total generated resources: 401
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -1320,6 +1320,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_vertex_ai_featurestore": resourceVertexAIFeaturestore(),
"google_vertex_ai_featurestore_entitytype": resourceVertexAIFeaturestoreEntitytype(),
"google_vertex_ai_featurestore_entitytype_feature": resourceVertexAIFeaturestoreEntitytypeFeature(),
"google_vertex_ai_index": resourceVertexAIIndex(),
"google_vpc_access_connector": resourceVPCAccessConnector(),
"google_workflows_workflow": resourceWorkflowsWorkflow(),
},
Expand Down