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
2 changes: 0 additions & 2 deletions mmv1/products/vertexai/ReasoningEngine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,6 @@ properties:
Agent in the project will be used.
- name: 'identityType'
type: Enum
min_version: 'beta'
description: |-
Optional. The identity type to use for the Reasoning Engine.
If not specified, the `service_account` field will be used if set,
Expand All @@ -464,7 +463,6 @@ properties:
- 'AGENT_IDENTITY'
- name: 'effectiveIdentity'
type: String
min_version: 'beta'
description: |-
The identity to use for the Reasoning Engine.
output: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,6 @@ resource "google_vertex_ai_reasoning_engine" "reasoning_engine" {
`)
}

{{- if ne $.TargetVersionName "ga" }}
func TestAccVertexAIReasoningEngine_vertexAiReasoningEngineIdentityTypeUpdate(t *testing.T) {
t.Parallel()

Expand All @@ -570,7 +569,7 @@ func TestAccVertexAIReasoningEngine_vertexAiReasoningEngineIdentityTypeUpdate(t

acctest.VcrTest(t, resource.TestCase{
PreCheck: func() { acctest.AccTestPreCheck(t) },
ProtoV5ProviderFactories: acctest.ProtoV5ProviderBetaFactories(t),
ProtoV5ProviderFactories: acctest.ProtoV5ProviderFactories(t),
CheckDestroy: testAccCheckVertexAIEndpointDestroyProducer(t),
Steps: []resource.TestStep{
{
Expand Down Expand Up @@ -598,8 +597,6 @@ func TestAccVertexAIReasoningEngine_vertexAiReasoningEngineIdentityTypeUpdate(t
func testAccVertexAIReasoningEngine_identityTypeServiceAccount(context map[string]interface{}) string {
return acctest.Nprintf(`
resource "google_vertex_ai_reasoning_engine" "reasoning_engine" {
provider = google-beta

display_name = "tf-test-sample-reasoning-engine%{random_suffix}"
description = "A reasoning engine for identity type testing"
region = "us-central1"
Expand All @@ -614,8 +611,6 @@ resource "google_vertex_ai_reasoning_engine" "reasoning_engine" {
func testAccVertexAIReasoningEngine_identityTypeAgentIdentity(context map[string]interface{}) string {
return acctest.Nprintf(`
resource "google_vertex_ai_reasoning_engine" "reasoning_engine" {
provider = google-beta

display_name = "tf-test-sample-reasoning-engine%{random_suffix}"
description = "A reasoning engine for identity type testing"
region = "us-central1"
Expand All @@ -626,4 +621,3 @@ resource "google_vertex_ai_reasoning_engine" "reasoning_engine" {
}
`, context)
}
{{- end }}
Loading