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/16482.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
`google_vector_search_collection` (ga)
```
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func TestAccVectorSearchCollection_vectorsearchCollectionBasicExample(t *testing

acctest.VcrTest(t, resource.TestCase{
PreCheck: func() { acctest.AccTestPreCheck(t) },
ProtoV5ProviderFactories: acctest.ProtoV5ProviderBetaFactories(t),
ProtoV5ProviderFactories: acctest.ProtoV5ProviderFactories(t),
CheckDestroy: testAccCheckVectorSearchCollectionDestroyProducer(t),
Steps: []resource.TestStep{
{
Expand All @@ -78,8 +78,6 @@ func TestAccVectorSearchCollection_vectorsearchCollectionBasicExample(t *testing
func testAccVectorSearchCollection_vectorsearchCollectionBasicExample(context map[string]interface{}) string {
return acctest.Nprintf(`
resource "google_vector_search_collection" "example-collection" {
provider = google-beta

location = "us-central1"
collection_id = "tf-test-example-collection%{random_suffix}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//
// This code is generated by Magic Modules using the following:
//
// Source file: https://github.com/GoogleCloudPlatform/magic-modules/tree/main/mmv1/third_party/terraform/services/vectorsearch/resource_vector_search_collection_test.go.tmpl
// Source file: https://github.com/GoogleCloudPlatform/magic-modules/tree/main/mmv1/third_party/terraform/services/vectorsearch/resource_vector_search_collection_test.go
//
// DO NOT EDIT this file directly. Any changes made to this file will be
// overwritten during the next generation cycle.
Expand All @@ -32,7 +32,7 @@ func TestAccVectorSearchCollection_update(t *testing.T) {

acctest.VcrTest(t, resource.TestCase{
PreCheck: func() { acctest.AccTestPreCheck(t) },
ProtoV5ProviderFactories: acctest.ProtoV5ProviderBetaFactories(t),
ProtoV5ProviderFactories: acctest.ProtoV5ProviderFactories(t),
Steps: []resource.TestStep{
{
Config: testAccVectorSearchCollection_basic(context),
Expand Down Expand Up @@ -64,8 +64,6 @@ func TestAccVectorSearchCollection_update(t *testing.T) {
func testAccVectorSearchCollection_basic(context map[string]interface{}) string {
return acctest.Nprintf(`
resource "google_vector_search_collection" "example-collection" {
provider = google-beta

location = "us-central1"
collection_id = "tf-test-example-collection-id%{random_suffix}"

Expand Down Expand Up @@ -109,8 +107,6 @@ EOF
func testAccVectorSearchCollection_update(context map[string]interface{}) string {
return acctest.Nprintf(`
resource "google_vector_search_collection" "example-collection" {
provider = google-beta

location = "us-central1"
collection_id = "tf-test-example-collection-id%{random_suffix}"

Expand Down
4 changes: 0 additions & 4 deletions website/docs/r/vector_search_collection.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ description: |-

Description

~> **Warning:** This resource is in beta, and should be used with the terraform-provider-google-beta provider.
See [Provider Versions](../guides/provider_versions.html.markdown) for more details on beta resources.


<div class = "oics-button" style="float: right; margin: 0 0 -15px">
Expand All @@ -37,8 +35,6 @@ See [Provider Versions](../guides/provider_versions.html.markdown) for more deta

```hcl
resource "google_vector_search_collection" "example-collection" {
provider = google-beta

location = "us-central1"
collection_id = "example-collection"

Expand Down
Loading