From 81a4fc2448a6a612d118af9561d43f0a2b0200d3 Mon Sep 17 00:00:00 2001 From: Google APIs Date: Fri, 23 Jun 2023 00:11:29 -0700 Subject: [PATCH] feat: add forwarding_rule field to Connectivity Test Endpoint proto PiperOrigin-RevId: 542778862 --- google/cloud/networkmanagement/v1/connectivity_test.proto | 8 ++++++++ .../networkmanagement/v1beta1/connectivity_test.proto | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/google/cloud/networkmanagement/v1/connectivity_test.proto b/google/cloud/networkmanagement/v1/connectivity_test.proto index 30fdfc0b9ef94..fc4a7d32b7891 100644 --- a/google/cloud/networkmanagement/v1/connectivity_test.proto +++ b/google/cloud/networkmanagement/v1/connectivity_test.proto @@ -148,6 +148,14 @@ message Endpoint { // A Compute Engine instance URI. string instance = 3; + // A forwarding rule and its corresponding IP address represent the frontend + // configuration of a Google Cloud load balancer. Forwarding rules are also + // used for protocol forwarding, Private Service Connect and other network + // services to provide forwarding information in the control plane. Format: + // projects/{project}/global/forwardingRules/{id} or + // projects/{project}/regions/{region}/forwardingRules/{id} + string forwarding_rule = 13; + // A cluster URI for [Google Kubernetes Engine // master](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture). string gke_master_cluster = 7; diff --git a/google/cloud/networkmanagement/v1beta1/connectivity_test.proto b/google/cloud/networkmanagement/v1beta1/connectivity_test.proto index c4fa6ca14acd8..fa33a07764be1 100644 --- a/google/cloud/networkmanagement/v1beta1/connectivity_test.proto +++ b/google/cloud/networkmanagement/v1beta1/connectivity_test.proto @@ -162,6 +162,14 @@ message Endpoint { // A Compute Engine instance URI. string instance = 3; + // A forwarding rule and its corresponding IP address represent the frontend + // configuration of a Google Cloud load balancer. Forwarding rules are also + // used for protocol forwarding, Private Service Connect and other network + // services to provide forwarding information in the control plane. Format: + // projects/{project}/global/forwardingRules/{id} or + // projects/{project}/regions/{region}/forwardingRules/{id} + string forwarding_rule = 13; + // A cluster URI for [Google Kubernetes Engine // master](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture). string gke_master_cluster = 7;