From 45c4d090cc6dde10be64a44a9e8b8bf096b70e82 Mon Sep 17 00:00:00 2001 From: Manu Srivastava Date: Wed, 13 Mar 2024 10:49:36 -0400 Subject: [PATCH] rename service_name --> service --- temporal/api/cloud/cloudservice/v1/request_response.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/temporal/api/cloud/cloudservice/v1/request_response.proto b/temporal/api/cloud/cloudservice/v1/request_response.proto index a4fa039..39fb882 100644 --- a/temporal/api/cloud/cloudservice/v1/request_response.proto +++ b/temporal/api/cloud/cloudservice/v1/request_response.proto @@ -245,8 +245,8 @@ message GetIncomingServicesRequest { // Filter incoming services by the task queue they route to - optional. string task_queue = 4; - // Filter incoming services by their service name - optional. Specifying this will result in zero or one results. - string service_name = 5; + // Filter incoming services by their name - optional. Specifying this will result in zero or one results. + string name = 5; } message GetIncomingServicesResponse { @@ -332,7 +332,7 @@ message GetOutgoingServicesRequest { string namespace = 3; // The name of the outgoing service to filter on - optional. Specifying this will result in zero or one results. - string service_name = 4; + string name = 4; } message GetOutgoingServicesResponse {