cell_change_subscription.proto 1.15 KB
Newer Older
Michel Roy's avatar
Michel Roy committed
1
2
3
4
5
/*
  ETSI GS MEC 012 - Radio Network Information API
 
  The ETSI MEC ISG MEC012 Radio Network Information API described using OpenAPI.
 
Hammad Zafar's avatar
Hammad Zafar committed
6
  The version of the OpenAPI document: 2.2.1
Michel Roy's avatar
Michel Roy committed
7
8
9
10
11
12
13
14
15
16
17
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec012;

import public "models/ca_reconf_subscription_links.proto";
import public "models/cell_change_subscription_filter_criteria_assoc_ho.proto";
import public "models/time_stamp.proto";
Hammad Zafar's avatar
Hammad Zafar committed
18
import public "models/websock_notif_config.proto";
Michel Roy's avatar
Michel Roy committed
19
20
21

message CellChangeSubscription {

Hammad Zafar's avatar
Hammad Zafar committed
22
  CaReconfSubscriptionLinks _links = 1;
Michel Roy's avatar
Michel Roy committed
23

Hammad Zafar's avatar
Hammad Zafar committed
24
  // URI exposed by the client on which to receive notifications via HTTP. See note.
Michel Roy's avatar
Michel Roy committed
25
26
27
28
29
30
31
32
33
  string callbackReference = 2;

  TimeStamp expiryDeadline = 3;

  CellChangeSubscriptionFilterCriteriaAssocHo filterCriteriaAssocHo = 4;

  // Shall be set to \"CellChangeSubscription\".
  string subscriptionType = 5;

Hammad Zafar's avatar
Hammad Zafar committed
34
35
36
37
38
  WebsockNotifConfig websockNotifConfig = 6;

  // Shall be set to TRUE by the service consumer to request a test notification via HTTP on the callbackReference URI, specified in ETSI GS MEC 009 [6], as described in clause 6.12a.
  bool requestTestNotification = 7;

Michel Roy's avatar
Michel Roy committed
39
}