s1_bearer_subscription.proto 1.22 KB
Newer Older
Michel Roy's avatar
Michel Roy committed
/*
  ETSI GS MEC 012 - Radio Network Information API
 
  The ETSI MEC ISG MEC012 Radio Network Information API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec012;

import public "models/ca_reconf_subscription_links.proto";
import public "models/s1_bearer_subscription_s1_bearer_subscription_criteria.proto";
import public "models/time_stamp.proto";

message S1BearerSubscription {

  S1BearerSubscriptionS1BearerSubscriptionCriteria S1BearerSubscriptionCriteria = 1;

  CaReconfSubscriptionLinks Underscorelinks = 2;

  // URI selected by the service consumer, to receive notifications on the subscribed RNIS information. This shall be included in the request and response.
  string callbackReference = 3;

Michel Roy's avatar
Michel Roy committed
  // Description of the subscribed event. The event is included both in the request and in the response. \\nFor the eventType, the following values are currently defined: <p>0 = RESERVED. <p>1 = S1_BEARER_ESTABLISH. <p>2 = S1_BEARER_MODIFY. <p>3 = S1_BEARER_RELEASE.
Michel Roy's avatar
Michel Roy committed
  repeated int32 eventType = 4;

  TimeStamp expiryDeadline = 5;

  // Shall be set to \"S1BearerSubscription\".
  string subscriptionType = 6;

}