diff --git a/proto/spaceone/api/inventory/v1/metric.proto b/proto/spaceone/api/inventory/v1/metric.proto index 5e612f616..9d26d44a4 100644 --- a/proto/spaceone/api/inventory/v1/metric.proto +++ b/proto/spaceone/api/inventory/v1/metric.proto @@ -31,6 +31,20 @@ service Metric { }; } + rpc run (MetricRequest) returns (google.protobuf.Empty) { + option (google.api.http) = { + post: "/inventory/v1/metric/run" + body: "*" + }; + } + + rpc test (MetricRequest) returns (google.protobuf.Struct) { + option (google.api.http) = { + post: "/inventory/v1/metric/test" + body: "*" + }; + } + rpc get (MetricRequest) returns (MetricInfo) { option (google.api.http) = { post: "/inventory/v1/metric/get"