Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/16546.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
reverted `google_vector_search_collection` (ga)
```
1 change: 0 additions & 1 deletion google/fwmodels/provider_model.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ type ProviderModel struct {
StorageTransferCustomEndpoint types.String `tfsdk:"storage_transfer_custom_endpoint"`
TagsCustomEndpoint types.String `tfsdk:"tags_custom_endpoint"`
TranscoderCustomEndpoint types.String `tfsdk:"transcoder_custom_endpoint"`
VectorSearchCustomEndpoint types.String `tfsdk:"vector_search_custom_endpoint"`
VertexAICustomEndpoint types.String `tfsdk:"vertex_ai_custom_endpoint"`
VmwareengineCustomEndpoint types.String `tfsdk:"vmwareengine_custom_endpoint"`
VPCAccessCustomEndpoint types.String `tfsdk:"vpc_access_custom_endpoint"`
Expand Down
6 changes: 0 additions & 6 deletions google/fwprovider/framework_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1078,12 +1078,6 @@ func (p *FrameworkProvider) Schema(_ context.Context, _ provider.SchemaRequest,
transport_tpg.CustomEndpointValidator(),
},
},
"vector_search_custom_endpoint": &schema.StringAttribute{
Optional: true,
Validators: []validator.String{
transport_tpg.CustomEndpointValidator(),
},
},
"vertex_ai_custom_endpoint": &schema.StringAttribute{
Optional: true,
Validators: []validator.String{
Expand Down
6 changes: 0 additions & 6 deletions google/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -938,11 +938,6 @@ func Provider() *schema.Provider {
Optional: true,
ValidateFunc: transport_tpg.ValidateCustomEndpoint,
},
"vector_search_custom_endpoint": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: transport_tpg.ValidateCustomEndpoint,
},
"vertex_ai_custom_endpoint": {
Type: schema.TypeString,
Optional: true,
Expand Down Expand Up @@ -1322,7 +1317,6 @@ func ProviderConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
config.StorageTransferBasePath = d.Get("storage_transfer_custom_endpoint").(string)
config.TagsBasePath = d.Get("tags_custom_endpoint").(string)
config.TranscoderBasePath = d.Get("transcoder_custom_endpoint").(string)
config.VectorSearchBasePath = d.Get("vector_search_custom_endpoint").(string)
config.VertexAIBasePath = d.Get("vertex_ai_custom_endpoint").(string)
config.VmwareengineBasePath = d.Get("vmwareengine_custom_endpoint").(string)
config.VPCAccessBasePath = d.Get("vpc_access_custom_endpoint").(string)
Expand Down
7 changes: 2 additions & 5 deletions google/provider/provider_mmv1_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ import (
"github.com/hashicorp/terraform-provider-google/google/services/storagetransfer"
"github.com/hashicorp/terraform-provider-google/google/services/tags"
"github.com/hashicorp/terraform-provider-google/google/services/transcoder"
"github.com/hashicorp/terraform-provider-google/google/services/vectorsearch"
"github.com/hashicorp/terraform-provider-google/google/services/vertexai"
"github.com/hashicorp/terraform-provider-google/google/services/vmwareengine"
"github.com/hashicorp/terraform-provider-google/google/services/vpcaccess"
Expand Down Expand Up @@ -603,9 +602,9 @@ var handwrittenIAMDatasources = map[string]*schema.Resource{
}

// Resources
// Generated resources: 718
// Generated resources: 717
// Generated IAM resources: 333
// Total generated resources: 1051
// Total generated resources: 1050
var generatedResources = map[string]*schema.Resource{
"google_folder_access_approval_settings": registry.Resource("google_folder_access_approval_settings"),
"google_organization_access_approval_settings": registry.Resource("google_organization_access_approval_settings"),
Expand Down Expand Up @@ -1591,7 +1590,6 @@ var generatedResources = map[string]*schema.Resource{
"google_tags_tag_value_iam_policy": registry.Resource("google_tags_tag_value_iam_policy"),
"google_transcoder_job": registry.Resource("google_transcoder_job"),
"google_transcoder_job_template": registry.Resource("google_transcoder_job_template"),
"google_vector_search_collection": registry.Resource("google_vector_search_collection"),
"google_vertex_ai_cache_config": registry.Resource("google_vertex_ai_cache_config"),
"google_vertex_ai_dataset": registry.Resource("google_vertex_ai_dataset"),
"google_vertex_ai_deployment_resource_pool": registry.Resource("google_vertex_ai_deployment_resource_pool"),
Expand Down Expand Up @@ -1938,7 +1936,6 @@ func UseGeneratedProducts() {
var _ = storagetransfer.ProductName
var _ = tags.ProductName
var _ = transcoder.ProductName
var _ = vectorsearch.ProductName
var _ = vertexai.ProductName
var _ = vmwareengine.ProductName
var _ = vpcaccess.ProductName
Expand Down
32 changes: 0 additions & 32 deletions google/services/vectorsearch/product.go

This file was deleted.

Loading
Loading