/* 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 Contact: cti_support@etsi.org Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec030; import public "models/pc5_provisioning_info.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 ProvInfoGET (ProvInfoGETRequest) returns (Pc5ProvisioningInfo); rpc ProvInfoUuMbmsGET (ProvInfoUuMbmsGETRequest) returns (UuMbmsProvisioningInfo); rpc ProvInfoUuUnicastGET (ProvInfoUuUnicastGETRequest) returns (UuUnicastProvisioningInfo); } message ProvInfoGETRequest { // Comma separated list of locations to identify a cell of a base station or a particular geographical area string location_info = 1; } message ProvInfoUuMbmsGETRequest { // omma separated list of locations to identify a cell of a base station or a particular geographical area string location_info = 1; } message ProvInfoUuUnicastGETRequest { // Comma separated list of locations to identify a cell of a base station or a particular geographical area string location_info = 1; }