/* ETSI GS MEC 029 Fixed Access Information API ETSI GS MEC 029 Fixed Access Information 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 mec029; option java_multiple_files=true; import "google/protobuf/empty.proto"; import public "models/subscription.proto"; import public "models/problem_details.proto"; import public "models/subscription_link_list.proto"; service SubscriptionService { rpc IndividualSubscriptionDELETE (IndividualSubscriptionDELETERequest) returns (google.protobuf.Empty); rpc IndividualSubscriptionGET (IndividualSubscriptionGETRequest) returns (Subscription); rpc IndividualSubscriptionPUT (IndividualSubscriptionPUTRequest) returns (Subscription); rpc SubGET (SubGETRequest) returns (SubscriptionLinkList); rpc SubPOST (SubPOSTRequest) returns (Subscription); } message IndividualSubscriptionDELETERequest { // Refers to created subscription, where the FAI API allocates a unique resource name for this subscription string subscription_id = 1; } message IndividualSubscriptionGETRequest { // Refers to created subscription, where the FAI API allocates a unique resource name for this subscription string subscription_id = 1; } message IndividualSubscriptionPUTRequest { // Refers to created subscription, where the FAI API allocates a unique resource name for this subscription string subscription_id = 1; Subscription subscription = 2; } message SubGETRequest { // Query parameter to filter on a specific subscription type. Permitted values: ONU_ALARM. DEVICE_ABNORMAL_ALERT. CM_CONNECTIVITY_STATE. ANI_ALARM. string subscription_type = 1; } message SubPOSTRequest { Subscription subscription = 1; }