Skip to content

Commit

Permalink
Promote Vertex AI FeatureStore resources (GA only) (#6565) (#12797)
Browse files Browse the repository at this point in the history
* feat: promote vertex ai feature store resources (ga only)

* feat: deprecate the field:       monitoring_interval

* Revert "feat: deprecate the field:       monitoring_interval"

This reverts commit 89d66724c71544ca544f2fb9f6d58471490aac0f.

* feat: update the example to use only the GA fields

* fix: diable monitoring_config.snapshot_analysis in the example

* feat: promote the featurestore entity feature resource to GA

* fix: add default_value to fix the unintentional diff

* feat: update the link to the api doc

* Revert "fix: add default_value to fix the unintentional diff"

This reverts commit d3b509033e2a8c3f5ed239867daa4623859dcf42.

* refactor: use deprecation_message to clarify the deprecated field

* feat: add a new example to test beta fields

* fix: use a different resource name to run tests in parallel

Signed-off-by: Modular Magician <magic-modules@google.com>

Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician committed Oct 14, 2022
1 parent 6527273 commit 10abd3e
Show file tree
Hide file tree
Showing 11 changed files with 1,851 additions and 18 deletions.
5 changes: 5 additions & 0 deletions .changelog/6565.txt
@@ -0,0 +1,5 @@
```release-note:new-resource
`google_vertex_ai_featurestore` (ga only)
`google_vertex_ai_featurestore_entitytype` (ga only)
`google_vertex_ai_featurestore_entitytype_feature` (ga only)
```
7 changes: 5 additions & 2 deletions google/provider.go
Expand Up @@ -900,9 +900,9 @@ func Provider() *schema.Provider {
return provider
}

// Generated resources: 237
// Generated resources: 240
// Generated IAM resources: 138
// Total generated resources: 375
// Total generated resources: 378
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -1275,6 +1275,9 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_tags_tag_binding": resourceTagsTagBinding(),
"google_tpu_node": resourceTPUNode(),
"google_vertex_ai_dataset": resourceVertexAIDataset(),
"google_vertex_ai_featurestore": resourceVertexAIFeaturestore(),
"google_vertex_ai_featurestore_entitytype": resourceVertexAIFeaturestoreEntitytype(),
"google_vertex_ai_featurestore_entitytype_feature": resourceVertexAIFeaturestoreEntitytypeFeature(),
"google_vpc_access_connector": resourceVPCAccessConnector(),
"google_workflows_workflow": resourceWorkflowsWorkflow(),
},
Expand Down

0 comments on commit 10abd3e

Please sign in to comment.