From 8f2df3a187281d2173be747f9c9966de4020f438 Mon Sep 17 00:00:00 2001 From: lhhyung Date: Fri, 3 Jan 2025 14:47:46 +0900 Subject: [PATCH] feat: Add internal_endpoint to endpoint list Signed-off-by: lhhyung --- proto/spaceone/api/identity/v2/endpoint.proto | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/proto/spaceone/api/identity/v2/endpoint.proto b/proto/spaceone/api/identity/v2/endpoint.proto index 5412a82de..1feb313ae 100644 --- a/proto/spaceone/api/identity/v2/endpoint.proto +++ b/proto/spaceone/api/identity/v2/endpoint.proto @@ -36,14 +36,21 @@ message EndpointInfo { //{ // "service": "inventory", +// "endpoint_type": "PUBLIC", // "query": {} //} message EndpointSearchQuery { + enum EndpointType { + NONE = 0; + PUBLIC = 1; + INTERNAL = 2; + } // +optional spaceone.api.core.v2.Query query = 1; // +optional string service = 2; - string endpoint_type = 3; + // +optional + EndpointType endpoint_type = 3; } //{