queries_service.proto 1.02 KB
Newer Older
piscione's avatar
piscione committed
/*
  ETSI GS MEC 030 V2X Information Service API
 
  ETSI GS MEC 030 V2X Information Service API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec030;

import "google/protobuf/empty.proto";
import public "models/problem_details.proto";
import public "models/uu_mbms_provisioning_info.proto";
import public "models/uu_unicast_provisioning_info.proto";

service QueriesService {
  rpc ProvInfoUuMbmsGET (ProvInfoUuMbmsGETRequest) returns (UuMbmsProvisioningInfo);

  rpc ProvInfoUuUnicastGET (ProvInfoUuUnicastGETRequest) returns (UuUnicastProvisioningInfo);

}

message ProvInfoUuMbmsGETRequest {
  // omma separated list of locations to identify a cell of a base station or a particular geographical area
  string locationInfo = 1;

}

message ProvInfoUuUnicastGETRequest {
  // Comma separated list of locations to identify a cell of a base station or a particular geographical area
  string locationInfo = 1;

}