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: 1 addition & 1 deletion mmv1/products/networkservices/AgentGateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ properties:
type: Enum
enum_values:
- 'MCP'
required: true
deprecation_message: '`protocols` is deprecated and will be removed in a future major release.'
- name: 'googleManaged'
immutable: true
exactly_one_of:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ resource "google_network_services_agent_gateway" "{{$.PrimaryResourceId}}" {
name = "{{index $.Vars "name"}}"
location = "us-central1"

protocols = ["MCP"]

google_managed {
governed_access_path = "CLIENT_TO_AGENT"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ resource "google_network_services_agent_gateway" "{{$.PrimaryResourceId}}" {
name = "{{index $.Vars "name"}}"
location = "us-central1"

protocols = ["MCP"]

self_managed {
resource_uri = "projects/{{index $.TestEnvVars "project"}}/locations/us-central1/gateways/my-gateway"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ resource "google_network_services_agent_gateway" "default" {
tier = "silver"
}

protocols = []
protocols = ["MCP"]
google_managed {
governed_access_path = "AGENT_TO_ANYWHERE"
}
Expand Down
Loading