Skip to content

Commit

Permalink
feat: Add internal_endpoint to endpoint list
Browse files Browse the repository at this point in the history
Signed-off-by: lhhyung <[email protected]>
  • Loading branch information
lhhyung committed Jan 3, 2025
1 parent df84306 commit 8f2df3a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion proto/spaceone/api/identity/v2/endpoint.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

//{
Expand Down

0 comments on commit 8f2df3a

Please sign in to comment.