Skip to content

Commit 9a47b61

Browse files
Added support for google_vertex_ai_tensorboard resource (#6759) (#13065)
* 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 <[email protected]> Signed-off-by: Modular Magician <[email protected]>
1 parent 3d36ec3 commit 9a47b61

6 files changed

+936
-2
lines changed

.changelog/6759.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
`google_vertex_ai_tensorboard`
3+
```

google/provider.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -925,9 +925,9 @@ func Provider() *schema.Provider {
925925
return provider
926926
}
927927

928-
// Generated resources: 246
928+
// Generated resources: 247
929929
// Generated IAM resources: 150
930-
// Total generated resources: 396
930+
// Total generated resources: 397
931931
func ResourceMap() map[string]*schema.Resource {
932932
resourceMap, _ := ResourceMapWithErrors()
933933
return resourceMap
@@ -1313,6 +1313,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
13131313
"google_tags_tag_value_iam_policy": ResourceIamPolicy(TagsTagValueIamSchema, TagsTagValueIamUpdaterProducer, TagsTagValueIdParseFunc),
13141314
"google_tags_tag_binding": resourceTagsTagBinding(),
13151315
"google_tpu_node": resourceTPUNode(),
1316+
"google_vertex_ai_tensorboard": resourceVertexAITensorboard(),
13161317
"google_vertex_ai_dataset": resourceVertexAIDataset(),
13171318
"google_vertex_ai_endpoint": resourceVertexAIEndpoint(),
13181319
"google_vertex_ai_featurestore": resourceVertexAIFeaturestore(),

0 commit comments

Comments
 (0)