From 8bf55f9595f2d552c7ee40c44e34b0787b0c8566 Mon Sep 17 00:00:00 2001 From: Manu Srivastava Date: Thu, 4 Apr 2024 12:31:30 -0400 Subject: [PATCH] more changes --- .../api/cloud/cloudservice/v1/request_response.proto | 10 ++++------ temporal/api/cloud/cloudservice/v1/service.proto | 6 +++--- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/temporal/api/cloud/cloudservice/v1/request_response.proto b/temporal/api/cloud/cloudservice/v1/request_response.proto index a9cdf30..be38567 100644 --- a/temporal/api/cloud/cloudservice/v1/request_response.proto +++ b/temporal/api/cloud/cloudservice/v1/request_response.proto @@ -232,7 +232,6 @@ message GetRegionResponse { temporal.api.cloud.region.v1.Region region = 1; } -<<<<<<< HEAD message GetIncomingServicesRequest { // The requested size of the page to retrieve - optional. // Cannot exceed 1000. Defaults to 100. @@ -370,7 +369,10 @@ message CreateOutgoingServiceRequest { } message CreateOutgoingServiceResponse { -======= + // The async operation. + temporal.api.cloud.operation.v1.AsyncOperation async_operation = 1; +} + message GetAccountRequest { } @@ -391,12 +393,10 @@ message UpdateAccountRequest { } message UpdateAccountResponse { ->>>>>>> origin/abhinav/accountManagement // The async operation. temporal.api.cloud.operation.v1.AsyncOperation async_operation = 1; } -<<<<<<< HEAD message UpdateOutgoingServiceRequest { // The name of the namespace the outgoing service is registered on. string namespace = 1; @@ -439,5 +439,3 @@ message DeleteOutgoingServiceResponse { // The async operation. temporal.api.cloud.operation.v1.AsyncOperation async_operation = 1; } -======= ->>>>>>> origin/abhinav/accountManagement diff --git a/temporal/api/cloud/cloudservice/v1/service.proto b/temporal/api/cloud/cloudservice/v1/service.proto index d31ba42..d42c33e 100644 --- a/temporal/api/cloud/cloudservice/v1/service.proto +++ b/temporal/api/cloud/cloudservice/v1/service.proto @@ -119,7 +119,6 @@ service CloudService { }; } -<<<<<<< HEAD // Gets all known incoming services rpc GetIncomingServices(GetIncomingServicesRequest) returns (GetIncomingServicesResponse) { option (google.api.http) = { @@ -191,7 +190,9 @@ service CloudService { rpc DeleteOutgoingService(DeleteOutgoingServiceRequest) returns (DeleteOutgoingServiceResponse) { option (google.api.http) = { delete: "/api/v1/namespaces/{namespace}/nexus/outgoingservices/{name}", -======= + }; + } + // Get account information rpc GetAccount (GetAccountRequest) returns (GetAccountResponse) { option (google.api.http) = { @@ -204,7 +205,6 @@ service CloudService { option (google.api.http) = { post: "/api/v1/account", body: "*" ->>>>>>> origin/abhinav/accountManagement }; } }