/* ETSI GS MEC 021 Application Mobility Service API ETSI GS MEC 021 Application Mobility 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 mec021; import public "models/adjacent_app_instance_info.proto"; import public "models/problem_details.proto"; service AdjAppInstService { rpc AdjAppInstGET (AdjAppInstGETRequest) returns (AdjAppInstGETResponse); } message AdjAppInstGETRequest { // Attribute-based filtering parameters according to ETSI GS MEC 011 string filter = 1; // Include all complex attributes in the response. string allFields = 2; // Complex attributes to be included into the response. See clause 6.18 in ETSI GS MEC 011 string fields = 3; // Complex attributes to be excluded from the response.See clause 6.18 in ETSI GS MEC 011 string excludeFields = 4; // Indicates to exclude the following complex attributes from the response See clause 6.18 in ETSI GS MEC 011 for details. string excludeDefault = 5; } message AdjAppInstGETResponse { repeated AdjacentAppInstanceInfo data = 1; }