Skip to content

Commit

Permalink
Added support for google_vertex_ai_tensorboard resource (#6759) (#13065)
Browse files Browse the repository at this point in the history
* Added support for  google_vertex_ai_tensorboard resource

* Added full test case for google_vertex_ai_tensorboard resource

* Added import support for google_vertex_ai_tensorboard

* Added Full and Update test cases for google_vertex_ai_tensorboard

* Updated the full test of google_vertex_ai_tensorboard

* Updated examples to include import test for vertex_ai_tensorboard

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

Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician committed Nov 17, 2022
1 parent 3d36ec3 commit 9a47b61
Show file tree
Hide file tree
Showing 6 changed files with 936 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/6759.txt
@@ -0,0 +1,3 @@
```release-note:new-resource
`google_vertex_ai_tensorboard`
```
5 changes: 3 additions & 2 deletions google/provider.go
Expand Up @@ -925,9 +925,9 @@ func Provider() *schema.Provider {
return provider
}

// Generated resources: 246
// Generated resources: 247
// Generated IAM resources: 150
// Total generated resources: 396
// Total generated resources: 397
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -1313,6 +1313,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_tags_tag_value_iam_policy": ResourceIamPolicy(TagsTagValueIamSchema, TagsTagValueIamUpdaterProducer, TagsTagValueIdParseFunc),
"google_tags_tag_binding": resourceTagsTagBinding(),
"google_tpu_node": resourceTPUNode(),
"google_vertex_ai_tensorboard": resourceVertexAITensorboard(),
"google_vertex_ai_dataset": resourceVertexAIDataset(),
"google_vertex_ai_endpoint": resourceVertexAIEndpoint(),
"google_vertex_ai_featurestore": resourceVertexAIFeaturestore(),
Expand Down

0 comments on commit 9a47b61

Please sign in to comment.