From 22549378c2828f3c4a84b878bd03357390975ed3 Mon Sep 17 00:00:00 2001 From: Shotaro Kohama Date: Thu, 2 Feb 2023 14:15:55 -0800 Subject: [PATCH] feat: add the description field to featurestore entity type (#6984) --- mmv1/products/vertexai/api.yaml | 3 +++ .../examples/vertex_ai_featurestore_entitytype.tf.erb | 1 + 2 files changed, 4 insertions(+) diff --git a/mmv1/products/vertexai/api.yaml b/mmv1/products/vertexai/api.yaml index 31f2ac61df9a..b8de3ad593a1 100644 --- a/mmv1/products/vertexai/api.yaml +++ b/mmv1/products/vertexai/api.yaml @@ -573,6 +573,9 @@ objects: input: true url_param_only: true pattern: '{featurestore}}/entityTypes/{{name}}' + - !ruby/object:Api::Type::String + name: 'description' + description: Optional. Description of the EntityType. - !ruby/object:Api::Type::String name: 'etag' description: Used to perform consistent read-modify-write updates. diff --git a/mmv1/templates/terraform/examples/vertex_ai_featurestore_entitytype.tf.erb b/mmv1/templates/terraform/examples/vertex_ai_featurestore_entitytype.tf.erb index dac5ab615f76..7518beee02ea 100644 --- a/mmv1/templates/terraform/examples/vertex_ai_featurestore_entitytype.tf.erb +++ b/mmv1/templates/terraform/examples/vertex_ai_featurestore_entitytype.tf.erb @@ -17,6 +17,7 @@ resource "google_vertex_ai_featurestore_entitytype" "entity" { labels = { foo = "bar" } + description = "test description" featurestore = google_vertex_ai_featurestore.featurestore.id monitoring_config { snapshot_analysis {