Skip to content

Commit 3d743d6

Browse files
feat(vertexai): Support google_vertex_ai_feature_online_store (#9519) (#6779)
* feat(vertexai): Support google_vertex_ai_feature_online_store * test: add an acc test to check updatable fields of feature online store * fix: fix the format to pass yamllint * feat: update code based on feedback * feat: update code based on feedback (take 2) * feat: update code based on feedback (take 3) [upstream:999fed44c560abe5824117bbe84bccb5c877b92f] Signed-off-by: Modular Magician <[email protected]>
1 parent 4f592fc commit 3d743d6

7 files changed

+1212
-2
lines changed

.changelog/9519.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
`google_vertex_ai_feature_online_store`
3+
```

google-beta/provider/provider_mmv1_resources.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,9 +417,9 @@ var handwrittenIAMDatasources = map[string]*schema.Resource{
417417
}
418418

419419
// Resources
420-
// Generated resources: 409
420+
// Generated resources: 410
421421
// Generated IAM resources: 252
422-
// Total generated resources: 661
422+
// Total generated resources: 662
423423
var generatedResources = map[string]*schema.Resource{
424424
"google_folder_access_approval_settings": accessapproval.ResourceAccessApprovalFolderSettings(),
425425
"google_organization_access_approval_settings": accessapproval.ResourceAccessApprovalOrganizationSettings(),
@@ -1047,6 +1047,7 @@ var generatedResources = map[string]*schema.Resource{
10471047
"google_vertex_ai_endpoint_iam_binding": tpgiamresource.ResourceIamBinding(vertexai.VertexAIEndpointIamSchema, vertexai.VertexAIEndpointIamUpdaterProducer, vertexai.VertexAIEndpointIdParseFunc),
10481048
"google_vertex_ai_endpoint_iam_member": tpgiamresource.ResourceIamMember(vertexai.VertexAIEndpointIamSchema, vertexai.VertexAIEndpointIamUpdaterProducer, vertexai.VertexAIEndpointIdParseFunc),
10491049
"google_vertex_ai_endpoint_iam_policy": tpgiamresource.ResourceIamPolicy(vertexai.VertexAIEndpointIamSchema, vertexai.VertexAIEndpointIamUpdaterProducer, vertexai.VertexAIEndpointIdParseFunc),
1050+
"google_vertex_ai_feature_online_store": vertexai.ResourceVertexAIFeatureOnlineStore(),
10501051
"google_vertex_ai_featurestore": vertexai.ResourceVertexAIFeaturestore(),
10511052
"google_vertex_ai_featurestore_iam_binding": tpgiamresource.ResourceIamBinding(vertexai.VertexAIFeaturestoreIamSchema, vertexai.VertexAIFeaturestoreIamUpdaterProducer, vertexai.VertexAIFeaturestoreIdParseFunc),
10521053
"google_vertex_ai_featurestore_iam_member": tpgiamresource.ResourceIamMember(vertexai.VertexAIFeaturestoreIamSchema, vertexai.VertexAIFeaturestoreIamUpdaterProducer, vertexai.VertexAIFeaturestoreIdParseFunc),

0 commit comments

Comments
 (0)